diff --git a/spec/System/TestAttacks_spec.lua b/spec/System/TestAttacks_spec.lua index e1c83c1adf..df7df2d7b9 100644 --- a/spec/System/TestAttacks_spec.lua +++ b/spec/System/TestAttacks_spec.lua @@ -72,9 +72,9 @@ describe("TestAttacks", function() runCallback("OnFrame") -- Add 2 skills with 1 red, 1 blue, 1 green support each -- Test against Quarterstaff Strike (skill slot 1) - build.skillsTab:PasteSocketGroup("Quarterstaff Strike 1/0 1\nSplinter 1/0 1\nConduction 1/0 1\nBiting Frost 1/0 1") + build.skillsTab:PasteSocketGroup("Quarterstaff Strike 1/0 1\nArmour Break I 1/0 1\nShock 1/0 1\nBiting Frost 1/0 1") runCallback("OnFrame") - build.skillsTab:PasteSocketGroup("Falling Thunder 1/0 1\nIgnition 1/0 1\nDiscombobulate 1/0 1\nCoursing Current 1/0 1") + build.skillsTab:PasteSocketGroup("Falling Thunder 1/0 1\nIgnite I 1/0 1\nDaze 1/0 1\nShock Conduction 1/0 1") runCallback("OnFrame") build.configTab:BuildModList() diff --git a/src/Classes/GemSelectControl.lua b/src/Classes/GemSelectControl.lua index 009521cd62..c2e7cd3097 100644 --- a/src/Classes/GemSelectControl.lua +++ b/src/Classes/GemSelectControl.lua @@ -542,6 +542,9 @@ function GemSelectClass:AddGemTooltip(gemInstance) if gemInstance.gemData.tagString ~= "" then self.tooltip:AddLine(16, "^x7F7F7F" .. gemInstance.gemData.tagString) end + if gemInstance.gemData.gemFamily then + self.tooltip:AddLine(16, "^x7F7F7FCategory: ^7" .. gemInstance.gemData.gemFamily) + end -- Will need rework if a gem can have 2+ additional supports self:AddGrantedEffectInfo(gemInstance, grantedEffect, true) for _, statSet in ipairs(grantedEffect.statSets) do @@ -566,7 +569,7 @@ end function GemSelectClass:AddGrantedEffectInfo(gemInstance, grantedEffect, addReq) local displayInstance = gemInstance.displayEffect or gemInstance local grantedEffectLevel = grantedEffect.levels[displayInstance.level] or { } - if gemInstance.gemData.Tier then + if gemInstance.gemData.Tier and not grantedEffect.isLineage then self.tooltip:AddLine(16, string.format("^x7F7F7FTier: ^7%d", gemInstance.gemData.Tier)) end if addReq and not grantedEffect.support then diff --git a/src/Classes/ModStore.lua b/src/Classes/ModStore.lua index 03b670aaa2..3523140724 100644 --- a/src/Classes/ModStore.lua +++ b/src/Classes/ModStore.lua @@ -407,6 +407,9 @@ function ModStoreClass:EvalMod(mod, cfg, globalLimits) else base = target:GetStat(tag.stat, cfg) end + if tag.divVar then + tag.div = self:GetMultiplier(tag.divVar, cfg) + end local mult = m_floor(base / (tag.div or 1) + 0.0001) local limitTotal if tag.limit or tag.limitVar then diff --git a/src/Classes/SkillsTab.lua b/src/Classes/SkillsTab.lua index 4d2bad6ff3..80cdfc92db 100644 --- a/src/Classes/SkillsTab.lua +++ b/src/Classes/SkillsTab.lua @@ -287,16 +287,14 @@ function SkillsTabClass:LoadSkill(node, skillSetId) local possibleVariants = self.build.data.gemsByGameId[child.attrib.gemId] if possibleVariants then -- If it is a known gem, try to determine which variant is used - if child.attrib.variantId then + if child.attrib.variantId and possibleVariants[child.attrib.variantId] then -- New save format from 3.23 that stores the specific variation (transfiguration) gemData = possibleVariants[child.attrib.variantId] - elseif child.attrib.skillId then - -- Old format relying on the uniqueness of the granted effects id + else + -- If a gem has changed names between updates, assumed it's the first gem in the list for _, variant in pairs(possibleVariants) do - if variant.grantedEffectId == child.attrib.skillId then - gemData = variant - break - end + gemData = variant + break end end end @@ -1324,6 +1322,7 @@ function SkillsTabClass:UpdateGlobalGemCountAssignments() GlobalGemAssignments[gemInstance.gemData.name] = { count = 1, support = gemInstance.gemData.grantedEffect and gemInstance.gemData.grantedEffect.support or false, + lineage = gemInstance.gemData.grantedEffect and gemInstance.gemData.grantedEffect.isLineage or false, groups = { } } if socketGroup.displayLabel then diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua index 65a3899a4e..f63f200ddf 100644 --- a/src/Data/Gems.lua +++ b/src/Data/Gems.lua @@ -9,17 +9,18 @@ return { variantId = "IceNova", grantedEffectId = "IceNovaPlayer", additionalStatSet1 = "IceNovaPlayerOnFrostbolt", + additionalStatSet2 = "IceNovaColdInfusedPlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, cold = true, + duration = true, nova = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Cold, Nova", + gemType = "Spell", + tagString = "AoE, Cold, Duration, Nova", reqStr = 0, reqDex = 0, reqInt = 100, @@ -86,15 +87,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, physical = true, fire = true, detonator = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Physical, Fire, Detonator", + gemType = "Spell", + tagString = "AoE, Physical, Fire, Detonator", reqStr = 0, reqDex = 0, reqInt = 100, @@ -107,16 +107,16 @@ return { gameId = "Metadata/Items/Gems/SkillGemVolatileDead", variantId = "VolatileDead", grantedEffectId = "VolatileDeadPlayer", + additionalStatSet1 = "VolatileDeadIgniteAuraPlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, fire = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Fire", + gemType = "Spell", + tagString = "AoE, Fire", reqStr = 0, reqDex = 0, reqInt = 100, @@ -124,7 +124,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemAddedFireDamageSupport"] = { - name = "Fire Infusion", + name = "Fire Attunement", gameId = "Metadata/Items/Gems/SupportGemFireInfusion", variantId = "AddedFireDamageSupport", grantedEffectId = "SupportAddedFireDamagePlayer", @@ -134,6 +134,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Fire Attunement", tagString = "Attack, Fire", reqStr = 100, reqDex = 0, @@ -141,16 +142,17 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemFasterAttackSupport"] = { - name = "Martial Tempo", + ["Metadata/Items/Gems/SkillGemRapidAttacksSupport"] = { + name = "Rapid Attacks I", gameId = "Metadata/Items/Gems/SupportGemMartialTempo", - variantId = "FasterAttackSupport", - grantedEffectId = "SupportFasterAttackPlayer", + variantId = "RapidAttacksSupport", + grantedEffectId = "SupportRapidAttacksPlayer", tags = { support = true, attack = true, }, gemType = "Support", + gemFamily = "Rapid Attacks", tagString = "Attack", reqStr = 0, reqDex = 100, @@ -158,16 +160,53 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemMultipleProjectilesSupport"] = { - name = "Scattershot", + ["Metadata/Items/Gems/SkillGemRapidAttacksSupportTwo"] = { + name = "Rapid Attacks II", + gameId = "Metadata/Items/Gems/SupportGemMartialTempoTwo", + variantId = "RapidAttacksSupportTwo", + grantedEffectId = "SupportRapidAttacksPlayerTwo", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Rapid Attacks", + tagString = "Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRapidAttacksSupportThree"] = { + name = "Rapid Attacks III", + gameId = "Metadata/Items/Gems/SupportGemMartialTempoThree", + variantId = "RapidAttacksSupportThree", + grantedEffectId = "SupportRapidAttacksPlayerThree", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Rapid Attacks", + tagString = "Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemMultishotSupport"] = { + name = "Multishot I", gameId = "Metadata/Items/Gems/SupportGemScattershot", - variantId = "MultipleProjectilesSupport", - grantedEffectId = "SupportMultipleProjectilesPlayer", + variantId = "MultishotSupport", + grantedEffectId = "SupportMultishotPlayer", tags = { support = true, projectile = true, }, gemType = "Support", + gemFamily = "Additional Projectiles", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -175,16 +214,53 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemFasterProjectilesSupport"] = { - name = "Acceleration", + ["Metadata/Items/Gems/SkillGemMultishotSupportTwo"] = { + name = "Multishot II", + gameId = "Metadata/Items/Gems/SupportGemScattershotTwo", + variantId = "MultishotSupportTwo", + grantedEffectId = "SupportMultishotPlayerTwo", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Additional Projectiles", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemNovaProjectilesSupport"] = { + name = "Nova Projectiles", + gameId = "Metadata/Items/Gems/SupportGemNovaProjectiles", + variantId = "NovaProjectilesSupport", + grantedEffectId = "SupportNovaProjectilesPlayer", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Additional Projectiles", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemProjectileAccelerationSupport"] = { + name = "Projectile Acceleration I", gameId = "Metadata/Items/Gems/SupportGemAcceleration", - variantId = "FasterProjectilesSupport", - grantedEffectId = "SupportFasterProjectilesPlayer", + variantId = "ProjectileAccelerationSupport", + grantedEffectId = "SupportProjectileAccelerationPlayer", tags = { support = true, projectile = true, }, gemType = "Support", + gemFamily = "Projectile Speed", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -192,8 +268,44 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemProjectileAccelerationSupportTwo"] = { + name = "Projectile Acceleration II", + gameId = "Metadata/Items/Gems/SupportGemAccelerationTwo", + variantId = "ProjectileAccelerationSupportTwo", + grantedEffectId = "SupportProjectileAccelerationPlayerTwo", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Projectile Speed", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemProjectileAccelerationSupportThree"] = { + name = "Projectile Acceleration III", + gameId = "Metadata/Items/Gems/SupportGemAccelerationThree", + variantId = "ProjectileAccelerationSupportThree", + grantedEffectId = "SupportProjectileAccelerationPlayerThree", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Projectile Speed", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemAddedColdDamageSupport"] = { - name = "Cold Infusion", + name = "Cold Attunement", gameId = "Metadata/Items/Gems/SupportGemColdInfusion", variantId = "AddedColdDamageSupport", grantedEffectId = "SupportAddedColdDamagePlayer", @@ -203,6 +315,7 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Cold Attunement", tagString = "Attack, Cold", reqStr = 0, reqDex = 0, @@ -210,33 +323,53 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemAdditionalAccuracySupport"] = { - name = "Bullseye", + ["Metadata/Items/Gems/SkillGemHeightenedAccuracySupport"] = { + name = "Heightened Accuracy I", gameId = "Metadata/Items/Gems/SupportGemBullseye", - variantId = "AdditionalAccuracySupport", - grantedEffectId = "SupportAdditionalAccuracyPlayer", + variantId = "HeightenedAccuracySupport", + grantedEffectId = "SupportHeightenedAccuracyPlayer", tags = { support = true, attack = true, }, gemType = "Support", + gemFamily = "Heightened Accuracy", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemHeightenedAccuracySupportTwo"] = { + name = "Heightened Accuracy II", + gameId = "Metadata/Items/Gems/SupportGemBullseyeTwo", + variantId = "HeightenedAccuracySupportTwo", + grantedEffectId = "SupportHeightenedAccuracyPlayerTwo", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Heightened Accuracy", + tagString = "Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemIncreasedAreaOfEffectSupport"] = { - name = "Magnified Effect", + ["Metadata/Items/Gems/SkillGemMagnifiedAreaSupport"] = { + name = "Magnified Area I", gameId = "Metadata/Items/Gems/SupportGemMagnifiedEffect", - variantId = "IncreasedAreaOfEffectSupport", - grantedEffectId = "SupportIncreasedAreaOfEffectPlayer", + variantId = "MagnifiedAreaSupport", + grantedEffectId = "SupportMagnifiedAreaPlayer", tags = { support = true, area = true, }, gemType = "Support", + gemFamily = "Increased Area of Effect", tagString = "AoE", reqStr = 0, reqDex = 0, @@ -244,8 +377,26 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemMagnifiedAreaSupportTwo"] = { + name = "Magnified Area II", + gameId = "Metadata/Items/Gems/SupportGemMagnifiedEffectTwo", + variantId = "MagnifiedAreaSupportTwo", + grantedEffectId = "SupportMagnifiedAreaPlayerTwo", + tags = { + support = true, + area = true, + }, + gemType = "Support", + gemFamily = "Increased Area of Effect", + tagString = "AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 3, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemAddedLightningDamageSupport"] = { - name = "Lightning Infusion", + name = "Lightning Attunement", gameId = "Metadata/Items/Gems/SupportGemLightningInfusion", variantId = "AddedLightningDamageSupport", grantedEffectId = "SupportAddedLightningDamagePlayer", @@ -255,6 +406,7 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Lightning Attunement", tagString = "Attack, Lightning", reqStr = 0, reqDex = 100, @@ -283,15 +435,16 @@ return { Tier = 5, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemInspirationSupport"] = { - name = "Inspiration", + ["Metadata/Items/Gems/SkillGemEfficiencySupport"] = { + name = "Efficiency I", gameId = "Metadata/Items/Gems/SupportGemInspiration", - variantId = "InspirationSupport", - grantedEffectId = "SupportInspirationPlayer", + variantId = "EfficiencySupport", + grantedEffectId = "SupportEfficiencyPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Efficiency", tagString = "", reqStr = 100, reqDex = 0, @@ -299,6 +452,23 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemEfficiencySupportTwo"] = { + name = "Efficiency II", + gameId = "Metadata/Items/Gems/SupportGemInspirationTwo", + variantId = "EfficiencySupportTwo", + grantedEffectId = "SupportEfficiencyPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Efficiency", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemIncreasedCriticalDamageSupport"] = { name = "Supercritical", gameId = "Metadata/Items/Gems/SupportGemSupercritical", @@ -306,10 +476,10 @@ return { grantedEffectId = "SupportIncreasedCriticalDamagePlayer", tags = { support = true, - critical = true, }, gemType = "Support", - tagString = "Critical", + gemFamily = "Supercritical", + tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, @@ -317,7 +487,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemKnockbackSupport"] = { - name = "Bludgeon", + name = "Knockback", gameId = "Metadata/Items/Gems/SupportGemBludgeon", variantId = "KnockbackSupport", grantedEffectId = "SupportKnockbackPlayer", @@ -325,15 +495,16 @@ return { support = true, }, gemType = "Support", + gemFamily = "Knockback", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLifeLeechSupport"] = { - name = "Life Thief", + name = "Life Leech I", gameId = "Metadata/Items/Gems/SupportGemLifeThief", variantId = "LifeLeechSupport", grantedEffectId = "SupportLifeLeechPlayer", @@ -343,6 +514,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Life Leech", tagString = "Attack, Physical", reqStr = 100, reqDex = 0, @@ -350,8 +522,46 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemLifeLeechSupportTwo"] = { + name = "Life Leech II", + gameId = "Metadata/Items/Gems/SupportGemLifeThiefTwo", + variantId = "LifeLeechSupportTwo", + grantedEffectId = "SupportLifeLeechPlayerTwo", + tags = { + support = true, + attack = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Life Leech", + tagString = "Attack, Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemLifeLeechSupportThree"] = { + name = "Life Leech III", + gameId = "Metadata/Items/Gems/SupportGemLifeThiefThree", + variantId = "LifeLeechSupportThree", + grantedEffectId = "SupportLifeLeechPlayerThree", + tags = { + support = true, + attack = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Life Leech", + tagString = "Attack, Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemManaLeechSupport"] = { - name = "Soul Thief", + name = "Mana Leech", gameId = "Metadata/Items/Gems/SupportGemSoulThief", variantId = "ManaLeechSupport", grantedEffectId = "SupportManaLeechPlayer", @@ -361,6 +571,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Mana Leech", tagString = "Attack, Physical", reqStr = 0, reqDex = 0, @@ -369,7 +580,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemAddedChaosDamageSupport"] = { - name = "Chaos Infusion", + name = "Chaos Attunement", gameId = "Metadata/Items/Gems/SupportGemChaosInfusion", variantId = "AddedChaosDamageSupport", grantedEffectId = "SupportAddedChaosDamagePlayer", @@ -379,6 +590,7 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Chaos Attunement", tagString = "Attack, Chaos", reqStr = 0, reqDex = 0, @@ -416,17 +628,17 @@ return { gameId = "Metadata/Items/Gems/SkillGemSpark", variantId = "Spark", grantedEffectId = "SparkPlayer", + additionalStatSet1 = "SparkColdInfusedPlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, projectile = true, lightning = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, Projectile, Lightning, Duration", + gemType = "Spell", + tagString = "Projectile, Lightning, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -434,7 +646,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemPierceSupport"] = { - name = "Pierce", + name = "Pierce I", gameId = "Metadata/Items/Gems/SupportGemPierce", variantId = "PierceSupport", grantedEffectId = "SupportPiercePlayer", @@ -443,6 +655,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Pierce", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -450,6 +663,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemPierceSupportTwo"] = { + name = "Pierce II", + gameId = "Metadata/Items/Gems/SupportGemPierceTwo", + variantId = "PierceSupportTwo", + grantedEffectId = "SupportPiercePlayerTwo", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Pierce", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPierceSupportThree"] = { + name = "Pierce III", + gameId = "Metadata/Items/Gems/SupportGemPierceThree", + variantId = "PierceSupportThree", + grantedEffectId = "SupportPiercePlayerThree", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Pierce", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemSummonSpectre"] = { name = "Spectre: {0}", baseTypeName = "Spectre: {0} ", @@ -459,12 +708,11 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, minion = true, persistent = true, }, - gemType = "Barrageable", - tagString = "Minion, Persistent", + gemType = "Minion", + tagString = "Persistent", reqStr = 0, reqDex = 0, reqInt = 100, @@ -477,6 +725,7 @@ return { gameId = "Metadata/Items/Gems/SkillGemFrostWall", variantId = "FrostWall", grantedEffectId = "FrostWallPlayer", + additionalStatSet1 = "FrostWallInfusedPlayer", tags = { intelligence = true, grants_active_skill = true, @@ -493,29 +742,6 @@ return { Tier = 9, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemShockNova"] = { - name = "Shock Nova", - baseTypeName = "Shock Nova", - gameId = "Metadata/Items/Gems/SkillGemShockNova", - variantId = "ShockNova", - grantedEffectId = "ShockNovaPlayer", - tags = { - intelligence = true, - grants_active_skill = true, - barrageable = true, - spell = true, - area = true, - lightning = true, - nova = true, - }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning, Nova", - reqStr = 0, - reqDex = 0, - reqInt = 100, - Tier = 0, - naturalMaxLevel = 20, - }, ["Metadata/Items/Gems/SkillGemMeleePhysicalDamageSupport"] = { name = "Heavy Swing", gameId = "Metadata/Items/Gems/SupportGemHeavySwing", @@ -528,23 +754,25 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Heavy Swing", tagString = "Attack, Melee, Physical", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 4, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemFasterCastSupport"] = { - name = "Arcane Tempo", + ["Metadata/Items/Gems/SkillGemRapidCastingSupport"] = { + name = "Rapid Casting I", gameId = "Metadata/Items/Gems/SupportGemArcaneTempo", - variantId = "FasterCastSupport", - grantedEffectId = "SupportFasterCastPlayer", + variantId = "RapidCastingSupport", + grantedEffectId = "SupportRapidCastingPlayer", tags = { support = true, spell = true, }, gemType = "Support", + gemFamily = "Rapid Casting", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -552,6 +780,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemRapidCastingSupportTwo"] = { + name = "Rapid Casting II", + gameId = "Metadata/Items/Gems/SupportGemArcaneTempoTwo", + variantId = "RapidCastingSupportTwo", + grantedEffectId = "SupportRapidCastingPlayerTwo", + tags = { + support = true, + spell = true, + }, + gemType = "Support", + gemFamily = "Rapid Casting", + tagString = "Spell", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRapidCastingSupportThree"] = { + name = "Rapid Casting III", + gameId = "Metadata/Items/Gems/SupportGemArcaneTempoThree", + variantId = "RapidCastingSupportThree", + grantedEffectId = "SupportRapidCastingPlayerThree", + tags = { + support = true, + spell = true, + }, + gemType = "Support", + gemFamily = "Rapid Casting", + tagString = "Spell", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemTemporalChains"] = { name = "Temporal Chains", baseTypeName = "Temporal Chains", @@ -561,18 +825,17 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 13, + Tier = 7, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemEnfeeble"] = { @@ -584,14 +847,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, @@ -607,13 +869,11 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, - spell = true, mark = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, Mark, Duration", + gemType = "Mark", + tagString = "Duration", reqStr = 0, reqDex = 100, reqInt = 0, @@ -629,15 +889,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, chaos = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Chaos, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Chaos, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, @@ -653,14 +912,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, lightning = true, duration = true, + remnant = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning, Duration", + gemType = "Spell", + tagString = "AoE, Lightning, Duration, Remnant", reqStr = 0, reqDex = 0, reqInt = 100, @@ -714,16 +973,17 @@ return { Tier = 9, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemConcentratedEffectSupport"] = { - name = "Concentrated Effect", + ["Metadata/Items/Gems/SkillGemConcentratedAreaSupport"] = { + name = "Concentrated Area", gameId = "Metadata/Items/Gems/SupportGemConcentratedEffect", - variantId = "ConcentratedEffectSupport", - grantedEffectId = "SupportConcentratedEffectPlayer", + variantId = "ConcentratedAreaSupport", + grantedEffectId = "SupportConcentratedAreaPlayer", tags = { support = true, area = true, }, gemType = "Support", + gemFamily = "Concentrated Area", tagString = "AoE", reqStr = 0, reqDex = 0, @@ -743,11 +1003,12 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Bloodlust", tagString = "Attack, Melee, Physical", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemFirestorm"] = { @@ -756,20 +1017,19 @@ return { gameId = "Metadata/Items/Gems/SkillGemFirestorm", variantId = "Firestorm", grantedEffectId = "FirestormPlayer", - additionalStatSet1 = "FirestormEmpoweredPlayer", + additionalStatSet1 = "FirestormColdInfusionPlayer", + additionalStatSet2 = "FirestormLightningInfusionPlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, sustained = true, fire = true, duration = true, - payoff = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Sustained, Fire, Duration, Payoff", + gemType = "Spell", + tagString = "AoE, Sustained, Fire, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -833,15 +1093,15 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, lightning = true, chaining = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Lightning, Chaining", + gemType = "Attack", + tagString = "AoE, Projectile, Lightning, Chaining, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -886,12 +1146,11 @@ return { area = true, melee = true, slam = true, - physical = true, duration = true, nova = true, }, gemType = "Attack", - tagString = "Totem, AoE, Melee, Slam, Physical, Duration, Nova", + tagString = "Totem, AoE, Melee, Slam, Duration, Nova", weaponRequirements = "Any Martial Weapon", reqStr = 100, reqDex = 0, @@ -900,7 +1159,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemBlindSupport"] = { - name = "Blind", + name = "Blind I", gameId = "Metadata/Items/Gems/SupportGemBlind", variantId = "BlindSupport", grantedEffectId = "SupportBlindPlayer", @@ -908,6 +1167,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Blind", tagString = "", reqStr = 0, reqDex = 100, @@ -915,25 +1175,64 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemArc"] = { - name = "Arc", - baseTypeName = "Arc", - gameId = "Metadata/Items/Gems/SkillGemArc", - variantId = "Arc", - grantedEffectId = "ArcPlayer", - additionalStatSet1 = "ArcExplosionPlayer", + ["Metadata/Items/Gems/SkillGemBlindSupportTwo"] = { + name = "Blind II", + gameId = "Metadata/Items/Gems/SupportGemBlindTwo", + variantId = "BlindSupportTwo", + grantedEffectId = "SupportBlindPlayerTwo", tags = { - intelligence = true, - grants_active_skill = true, - barrageable = true, - spell = true, - area = true, - lightning = true, - chaining = true, - payoff = true, + support = true, + }, + gemType = "Support", + gemFamily = "Blind", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemValakosCharge"] = { + name = "Valako's Charge", + baseTypeName = "Valako's Charge", + gameId = "Metadata/Items/Gems/SkillGemValakosCharge", + variantId = "ValakosCharge", + grantedEffectId = "ValakosChargePlayer", + additionalStatSet1 = "ValakosChargeArcPlayer", + tags = { + strength = true, + dexterity = true, + grants_active_skill = true, + spell = true, + area = true, + trigger = true, + lightning = true, + chaining = true, + }, + gemType = "Spell", + tagString = "AoE, Trigger, Lightning, Chaining", + reqStr = 50, + reqDex = 50, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemArc"] = { + name = "Arc", + baseTypeName = "Arc", + gameId = "Metadata/Items/Gems/SkillGemArc", + variantId = "Arc", + grantedEffectId = "ArcPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + spell = true, + projectile = true, + lightning = true, + chaining = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning, Chaining, Payoff", + gemType = "Spell", + tagString = "Projectile, Lightning, Chaining", reqStr = 0, reqDex = 0, reqInt = 100, @@ -965,7 +1264,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemFirePenetrationSupport"] = { - name = "Fire Penetration", + name = "Fire Penetration I", gameId = "Metadata/Items/Gems/SupportGemFirePenetration", variantId = "FirePenetrationSupport", grantedEffectId = "SupportFirePenetrationPlayer", @@ -974,6 +1273,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Fire Penetration", tagString = "Fire", reqStr = 100, reqDex = 0, @@ -981,6 +1281,24 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemFirePenetrationSupportTwo"] = { + name = "Fire Penetration II", + gameId = "Metadata/Items/Gems/SupportGemFirePenetrationTwo", + variantId = "FirePenetrationSupportTwo", + grantedEffectId = "SupportFirePenetrationPlayerTwo", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Fire Penetration", + tagString = "Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemColdPenetrationSupport"] = { name = "Cold Penetration", gameId = "Metadata/Items/Gems/SupportGemColdPenetration", @@ -991,6 +1309,7 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Cold Penetration", tagString = "Cold", reqStr = 0, reqDex = 0, @@ -1008,6 +1327,7 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Lightning Penetration", tagString = "Lightning", reqStr = 0, reqDex = 100, @@ -1016,7 +1336,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemChainSupport"] = { - name = "Chain", + name = "Chain I", gameId = "Metadata/Items/Gems/SupportGemChain", variantId = "ChainSupport", grantedEffectId = "SupportChainPlayer", @@ -1026,6 +1346,7 @@ return { chaining = true, }, gemType = "Support", + gemFamily = "Chain", tagString = "Projectile, Chaining", reqStr = 0, reqDex = 100, @@ -1033,6 +1354,44 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemChainSupportTwo"] = { + name = "Chain II", + gameId = "Metadata/Items/Gems/SupportGemChainTwo", + variantId = "ChainSupportTwo", + grantedEffectId = "SupportChainPlayerTwo", + tags = { + support = true, + projectile = true, + chaining = true, + }, + gemType = "Support", + gemFamily = "Chain", + tagString = "Projectile, Chaining", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemChainSupportThree"] = { + name = "Chain III", + gameId = "Metadata/Items/Gems/SupportGemChainThree", + variantId = "ChainSupportThree", + grantedEffectId = "SupportChainPlayerThree", + tags = { + support = true, + projectile = true, + chaining = true, + }, + gemType = "Support", + gemFamily = "Chain", + tagString = "Projectile, Chaining", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemForkSupport"] = { name = "Fork", gameId = "Metadata/Items/Gems/SupportGemFork", @@ -1043,6 +1402,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Fork", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -1059,19 +1419,18 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, fire = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Fire, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Fire, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 7, + Tier = 0, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemHypothermia"] = { @@ -1083,19 +1442,18 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, cold = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Cold, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Cold, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 7, + Tier = 0, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemConductivity"] = { @@ -1107,15 +1465,39 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, lightning = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Lightning, Duration, Curse", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemElementalWeakness"] = { + name = "Elemental Weakness", + baseTypeName = "Elemental Weakness", + gameId = "Metadata/Items/Gem/SkillGemElementalWeakness", + variantId = "ElementalWeakness", + grantedEffectId = "ElementalWeaknessPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + spell = true, + area = true, + lightning = true, + cold = true, + fire = true, + duration = true, + curse = true, + }, + gemType = "Spell", + tagString = "AoE, Lightning, Cold, Fire, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1145,7 +1527,7 @@ return { reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 5, + Tier = 9, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemSpellEchoSupport"] = { @@ -1159,6 +1541,7 @@ return { area = true, }, gemType = "Support", + gemFamily = "Spell Echo", tagString = "Spell, AoE", reqStr = 0, reqDex = 0, @@ -1176,6 +1559,7 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Elemental Army", tagString = "Minion", reqStr = 0, reqDex = 0, @@ -1183,16 +1567,17 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemSlowerProjectilesSupport"] = { - name = "Deceleration", + ["Metadata/Items/Gems/SkillGemProjectileDecelerationSupport"] = { + name = "Projectile Deceleration I", gameId = "Metadata/Items/Gems/SupportGemDeceleration", - variantId = "SlowerProjectilesSupport", - grantedEffectId = "SupportSlowerProjectilesPlayer", + variantId = "ProjectileDecelerationSupport", + grantedEffectId = "SupportProjectileDecelerationPlayer", tags = { support = true, projectile = true, }, gemType = "Support", + gemFamily = "Projectile Speed", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -1200,6 +1585,44 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemProjectileDecelerationSupportTwo"] = { + name = "Projectile Deceleration II", + gameId = "Metadata/Items/Gems/SupportGemDecelerationTwo", + variantId = "ProjectileDecelerationSupportTwo", + grantedEffectId = "SupportProjectileDecelerationPlayerTwo", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Projectile Speed", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVilentasPropulsionSupport"] = { + name = "Vilenta's Propulsion", + gameId = "Metadata/Items/Gems/SupportGemVilentasPropulsion", + variantId = "VilentasPropulsionSupport", + grantedEffectId = "SupportVilentasPropulsionPlayer", + tags = { + support = true, + lineage = true, + spell = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Projectile Speed", + tagString = "Lineage, Spell, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemPurityOfFire"] = { name = "Purity of Fire", baseTypeName = "Purity of Fire", @@ -1344,19 +1767,21 @@ return { gameId = "Metadata/Items/Gems/SkillGemBallLightning", variantId = "BallLightning", grantedEffectId = "BallLightningPlayer", + additionalStatSet1 = "BallLightningInfusedExplosionPlayer", + additionalStatSet2 = "BallLightningIgnitedGround", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, projectile = true, sustained = true, lightning = true, + duration = true, chaining = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Projectile, Sustained, Lightning, Chaining", + gemType = "Spell", + tagString = "AoE, Projectile, Sustained, Lightning, Duration, Chaining", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1372,15 +1797,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, minion = true, buff = true, area = true, physical = true, duration = true, }, - gemType = "Barrageable", - tagString = "Minion, Buff, AoE, Physical, Duration", + gemType = "Minion", + tagString = "Buff, AoE, Physical, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1507,9 +1931,10 @@ return { trigger = true, fire = true, duration = true, + nova = true, }, gemType = "Warcry", - tagString = "AoE, Trigger, Fire, Duration", + tagString = "AoE, Trigger, Fire, Duration, Nova", reqStr = 100, reqDex = 0, reqInt = 0, @@ -1528,6 +1953,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Ice Bite", tagString = "Attack, Cold, Duration", reqStr = 0, reqDex = 0, @@ -1535,33 +1961,35 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemGlaciationSupport"] = { - name = "Glaciation", + ["Metadata/Items/Gems/SkillGemFreezeSupport"] = { + name = "Freeze", gameId = "Metadata/Items/Gems/SupportGemGlaciation", - variantId = "GlaciationSupport", - grantedEffectId = "SupportGlaciationPlayer", + variantId = "FreezeSupport", + grantedEffectId = "SupportFreezePlayer", tags = { support = true, cold = true, }, gemType = "Support", + gemFamily = "Freeze", tagString = "Cold", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemChanceToShockSupport"] = { - name = "Conduction", + ["Metadata/Items/Gems/SkillGemShockSupport"] = { + name = "Shock", gameId = "Metadata/Items/Gems/SupportGemConduction", - variantId = "ChanceToShockSupport", - grantedEffectId = "SupportChanceToShockPlayer", + variantId = "ShockSupport", + grantedEffectId = "SupportShockPlayer", tags = { support = true, lightning = true, }, gemType = "Support", + gemFamily = "Shock", tagString = "Lightning", reqStr = 0, reqDex = 100, @@ -1583,9 +2011,10 @@ return { cold = true, duration = true, orb = true, + remnant = true, }, gemType = "Spell", - tagString = "AoE, Cold, Duration, Orb", + tagString = "AoE, Cold, Duration, Orb, Remnant", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1608,9 +2037,10 @@ return { duration = true, chaining = true, orb = true, + remnant = true, }, gemType = "Spell", - tagString = "AoE, Sustained, Lightning, Duration, Chaining, Orb", + tagString = "AoE, Sustained, Lightning, Duration, Chaining, Orb, Remnant", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1651,14 +2081,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, chaos = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Chaos, Duration", + gemType = "Spell", + tagString = "AoE, Chaos, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1698,14 +2127,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, projectile = true, chaos = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, Projectile, Chaos, Duration", + gemType = "Spell", + tagString = "Projectile, Chaos, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1720,10 +2148,10 @@ return { tags = { support = true, spell = true, - critical = true, }, gemType = "Support", - tagString = "Spell, Critical", + gemFamily = "Controlled Destruction", + tagString = "Spell", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1744,10 +2172,11 @@ return { area = true, melee = true, slam = true, + duration = true, payoff = true, }, gemType = "Attack", - tagString = "AoE, Melee, Slam, Payoff", + tagString = "AoE, Melee, Slam, Duration, Payoff", weaponRequirements = "One Hand Mace, Two Hand Mace", reqStr = 100, reqDex = 0, @@ -1765,19 +2194,17 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, projectile = true, cold = true, - duration = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Projectile, Cold, Duration", + gemType = "Spell", + tagString = "AoE, Projectile, Cold", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemElementalFocusSupport"] = { @@ -1789,6 +2216,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Elemental Focus", tagString = "", reqStr = 0, reqDex = 0, @@ -1848,15 +2276,17 @@ return { gameId = "Metadata/Items/Gems/SkillGemSkeletalBrute", variantId = "SkeletalBrute", grantedEffectId = "SummonSkeletalBrutesPlayer", + additionalGrantedEffectId1 = "CommandSkeletalBrutesPlayer", tags = { intelligence = true, grants_active_skill = true, minion = true, persistent = true, physical = true, + payoff = true, }, gemType = "Minion", - tagString = "Persistent, Physical", + tagString = "Persistent, Physical, Payoff", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1985,6 +2415,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Wildfire", tagString = "AoE, Fire", reqStr = 0, reqDex = 0, @@ -1992,16 +2423,17 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemChanceToBleedSupport"] = { - name = "Lacerate", + ["Metadata/Items/Gems/SkillGemBleedSupport"] = { + name = "Bleed I", gameId = "Metadata/Items/Gems/SupportGemLacerate", - variantId = "ChanceToBleedSupport", - grantedEffectId = "SupportChanceToBleedPlayer", + variantId = "BleedSupport", + grantedEffectId = "SupportBleedPlayer", tags = { support = true, physical = true, }, gemType = "Support", + gemFamily = "Bleed", tagString = "Physical", reqStr = 100, reqDex = 0, @@ -2009,16 +2441,71 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemChanceToPoisonSupport"] = { - name = "Envenom", + ["Metadata/Items/Gems/SkillGemBleedSupportTwo"] = { + name = "Bleed II", + gameId = "Metadata/Items/Gems/SupportGemLacerateTwo", + variantId = "BleedSupportTwo", + grantedEffectId = "SupportBleedPlayerTwo", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Bleed", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBleedSupportThree"] = { + name = "Bleed III", + gameId = "Metadata/Items/Gems/SupportGemLacerateThree", + variantId = "BleedSupportThree", + grantedEffectId = "SupportBleedPlayerThree", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Bleed", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBleedSupportFour"] = { + name = "Bleed IV", + gameId = "Metadata/Items/Gems/SupportGemLacerateFour", + variantId = "BleedSupportFour", + grantedEffectId = "SupportBleedPlayerFour", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Bleed", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPoisonSupport"] = { + name = "Poison I", gameId = "Metadata/Items/Gems/SupportGemEnvenom", - variantId = "ChanceToPoisonSupport", - grantedEffectId = "SupportChanceToPoisonPlayer", + variantId = "PoisonSupport", + grantedEffectId = "SupportPoisonPlayer", tags = { support = true, chaos = true, }, gemType = "Support", + gemFamily = "Poison", tagString = "Chaos", reqStr = 0, reqDex = 100, @@ -2026,6 +2513,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemPoisonSupportTwo"] = { + name = "Poison II", + gameId = "Metadata/Items/Gems/SupportGemEnvenomTwo", + variantId = "PoisonSupportTwo", + grantedEffectId = "SupportPoisonPlayerTwo", + tags = { + support = true, + chaos = true, + }, + gemType = "Support", + gemFamily = "Poison", + tagString = "Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPoisonSupportThree"] = { + name = "Poison III", + gameId = "Metadata/Items/Gems/SupportGemEnvenomThree", + variantId = "PoisonSupportThree", + grantedEffectId = "SupportPoisonPlayerThree", + tags = { + support = true, + chaos = true, + }, + gemType = "Support", + gemFamily = "Poison", + tagString = "Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemMaimSupport"] = { name = "Maim", gameId = "Metadata/Items/Gems/SupportGemMaim", @@ -2036,6 +2559,7 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Maim", tagString = "Attack", reqStr = 0, reqDex = 100, @@ -2054,6 +2578,7 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Immolate", tagString = "Fire, Payoff", reqStr = 100, reqDex = 0, @@ -2071,15 +2596,16 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Lasting Shock", tagString = "Lightning", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 2, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBrutalitySupport"] = { - name = "Brutality", + name = "Brutality I", gameId = "Metadata/Items/Gems/SupportGemBrutality", variantId = "BrutalitySupport", grantedEffectId = "SupportBrutalityPlayer", @@ -2088,6 +2614,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Brutality", tagString = "Physical", reqStr = 100, reqDex = 0, @@ -2095,6 +2622,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemBrutalitySupportTwo"] = { + name = "Brutality II", + gameId = "Metadata/Items/Gems/SupportGemBrutalityTwo", + variantId = "BrutalitySupportTwo", + grantedEffectId = "SupportBrutalityPlayerTwo", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Brutality", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBrutalitySupportThree"] = { + name = "Brutality III", + gameId = "Metadata/Items/Gems/SupportGemBrutalityThree", + variantId = "BrutalitySupportThree", + grantedEffectId = "SupportBrutalityPlayerThree", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Brutality", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemMomentumSupport"] = { name = "Momentum", gameId = "Metadata/Items/Gems/SupportGemMomentum", @@ -2104,6 +2667,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Momentum", tagString = "", reqStr = 0, reqDex = 100, @@ -2122,6 +2686,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Arcane Surge", tagString = "Spell, Duration", reqStr = 0, reqDex = 0, @@ -2138,15 +2703,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, physical = true, duration = true, curse = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Physical, Duration, Curse", + gemType = "Spell", + tagString = "AoE, Physical, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2164,6 +2728,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Withering Touch", tagString = "Chaos, Duration", reqStr = 0, reqDex = 0, @@ -2171,16 +2736,40 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemUnleashSupport"] = { - name = "Unleash", - gameId = "Metadata/Items/Gems/SupportGemUnleash", - variantId = "UnleashSupport", - grantedEffectId = "SupportUnleashPlayer", + ["Metadata/Items/Gems/SkillGemSoulrend"] = { + name = "Soulrend", + baseTypeName = "Soulrend", + gameId = "Metadata/Items/Gems/SkillGemSoulrend", + variantId = "Soulrend", + grantedEffectId = "SoulrendPlayer", + additionalStatSet1 = "SoulrendDotPlayer", tags = { - support = true, + intelligence = true, + grants_active_skill = true, spell = true, - }, - gemType = "Support", + projectile = true, + chaos = true, + duration = true, + }, + gemType = "Spell", + tagString = "Projectile, Chaos, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemUnleashSupport"] = { + name = "Unleash", + gameId = "Metadata/Items/Gems/SupportGemUnleash", + variantId = "UnleashSupport", + grantedEffectId = "SupportUnleashPlayer", + tags = { + support = true, + spell = true, + }, + gemType = "Support", + gemFamily = "Unleash", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -2189,7 +2778,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCloseCombatSupport"] = { - name = "Close Combat", + name = "Close Combat I", gameId = "Metadata/Items/Gems/SupportGemCloseCombat", variantId = "CloseCombatSupport", grantedEffectId = "SupportCloseCombatPlayer", @@ -2198,15 +2787,34 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Close Combat", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCloseCombatSupportTwo"] = { + name = "Close Combat II", + gameId = "Metadata/Items/Gems/SupportGemCloseCombatTwo", + variantId = "CloseCombatSupportTwo", + grantedEffectId = "SupportCloseCombatPlayerTwo", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Close Combat", + tagString = "Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRageSupport"] = { - name = "Rage", + name = "Rage I", gameId = "Metadata/Items/Gems/SupportGemRage", variantId = "RageSupport", grantedEffectId = "SupportRagePlayer", @@ -2216,6 +2824,7 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Rage", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, @@ -2223,6 +2832,44 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemRageSupportTwo"] = { + name = "Rage II", + gameId = "Metadata/Items/Gems/SupportGemRageTwo", + variantId = "RageSupportTwo", + grantedEffectId = "SupportRagePlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Rage", + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRageSupportThree"] = { + name = "Rage III", + gameId = "Metadata/Items/Gems/SupportGemRageThree", + variantId = "RageSupportThree", + grantedEffectId = "SupportRagePlayerThree", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Rage", + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemPlagueBearer"] = { name = "Plague Bearer", baseTypeName = "Plague Bearer", @@ -2249,7 +2896,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemFeedingFrenzySupport"] = { - name = "Feeding Frenzy", + name = "Feeding Frenzy I", gameId = "Metadata/Items/Gems/SupportGemFeedingFrenzy", variantId = "FeedingFrenzySupport", grantedEffectId = "SupportFeedingFrenzyPlayer", @@ -2258,15 +2905,34 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Feeding Frenzy", tagString = "Minion", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFeedingFrenzySupportTwo"] = { + name = "Feeding Frenzy II", + gameId = "Metadata/Items/Gems/SupportGemFeedingFrenzyTwo", + variantId = "FeedingFrenzySupportTwo", + grantedEffectId = "SupportFeedingFrenzyPlayerTwo", + tags = { + support = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Feeding Frenzy", + tagString = "Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemMeatShieldSupport"] = { - name = "Meat Shield", + name = "Meat Shield I", gameId = "Metadata/Items/Gems/SupportGemMeatShield", variantId = "MeatShieldSupport", grantedEffectId = "SupportMeatShieldPlayer", @@ -2275,6 +2941,7 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Meat Shield", tagString = "Minion", reqStr = 100, reqDex = 0, @@ -2282,8 +2949,45 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemMeatShieldSupportTwo"] = { + name = "Meat Shield II", + gameId = "Metadata/Items/Gems/SupportGemMeatShieldTwo", + variantId = "MeatShieldSupportTwo", + grantedEffectId = "SupportMeatShieldPlayerTwo", + tags = { + support = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Meat Shield", + tagString = "Minion", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBrutusBrainSupport"] = { + name = "Brutus' Brain", + gameId = "Metadata/Items/Gems/SupportGemBrutusBrain", + variantId = "BrutusBrainSupport", + grantedEffectId = "SupportBrutusBrainPlayer", + tags = { + support = true, + lineage = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Meat Shield", + tagString = "Lineage, Minion", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemInfernalLegionSupport"] = { - name = "Infernal Legion", + name = "Infernal Legion I", gameId = "Metadata/Items/Gems/SupportGemInfernalLegion", variantId = "InfernalLegionSupport", grantedEffectId = "SupportInfernalLegionPlayer", @@ -2294,6 +2998,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Infernal Legion", tagString = "Minion, AoE, Fire", reqStr = 100, reqDex = 0, @@ -2301,27 +3006,67 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemArtilleryBallista"] = { - name = "Artillery Ballista", - baseTypeName = "Artillery Ballista", + ["Metadata/Items/Gems/SkillGemInfernalLegionSupportTwo"] = { + name = "Infernal Legion II", + gameId = "Metadata/Items/Gems/SupportGemInfernalLegionTwo", + variantId = "InfernalLegionSupportTwo", + grantedEffectId = "SupportInfernalLegionPlayerTwo", + tags = { + support = true, + minion = true, + area = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Infernal Legion", + tagString = "Minion, AoE, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemInfernalLegionSupportThree"] = { + name = "Infernal Legion III", + gameId = "Metadata/Items/Gems/SupportGemInfernalLegionThree", + variantId = "InfernalLegionSupportThree", + grantedEffectId = "SupportInfernalLegionPlayerThree", + tags = { + support = true, + minion = true, + area = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Infernal Legion", + tagString = "Minion, AoE, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSiegeBallista"] = { + name = "Siege Ballista", + baseTypeName = "Siege Ballista", gameId = "Metadata/Items/Gems/SkillGemArtilleryBallista", - variantId = "ArtilleryBallista", - grantedEffectId = "ArtilleryBallistaPlayer", - additionalGrantedEffectId1 = "ArtilleryBallistaProjectilePlayer", + variantId = "SiegeBallista", + grantedEffectId = "SiegeBallistaPlayer", + additionalGrantedEffectId1 = "SiegeBallistaProjectilePlayer", tags = { strength = true, dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, totem = true, area = true, projectile = true, fire = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, Totem, AoE, Projectile, Fire, Duration", + gemType = "Attack", + tagString = "Totem, AoE, Projectile, Fire, Duration, Barrageable", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -2330,7 +3075,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemSecondWindSupport"] = { - name = "Second Wind", + name = "Second Wind I", gameId = "Metadata/Items/Gems/SupportGemSecondWind", variantId = "SecondWindSupport", grantedEffectId = "SupportSecondWindPlayer", @@ -2338,11 +3083,46 @@ return { support = true, }, gemType = "Support", + gemFamily = "Second Wind", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSecondWindSupportTwo"] = { + name = "Second Wind II", + gameId = "Metadata/Items/Gems/SupportGemSecondWindTwo", + variantId = "SecondWindSupportTwo", + grantedEffectId = "SupportSecondWindPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Second Wind", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSecondWindSupportThree"] = { + name = "Second Wind III", + gameId = "Metadata/Items/Gems/SupportGemSecondWindThree", + variantId = "SecondWindSupportThree", + grantedEffectId = "SupportSecondWindPlayerThree", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Second Wind", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSeismicCry"] = { @@ -2357,10 +3137,10 @@ return { warcry = true, area = true, physical = true, - duration = true, + nova = true, }, gemType = "Warcry", - tagString = "AoE, Physical, Duration", + tagString = "AoE, Physical, Nova", reqStr = 100, reqDex = 0, reqInt = 0, @@ -2425,14 +3205,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, fire = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Fire, Duration", + gemType = "Spell", + tagString = "AoE, Fire, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2454,6 +3233,7 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Impending Doom", tagString = "Spell, AoE, Trigger, Chaos", reqStr = 0, reqDex = 0, @@ -2470,14 +3250,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, chaos = true, payoff = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Chaos, Payoff", + gemType = "Spell", + tagString = "AoE, Chaos, Payoff", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2492,20 +3271,18 @@ return { grantedEffectId = "ExsanguinatePlayer", additionalStatSet1 = "ExsanguinateDotPlayer", tags = { - strength = true, intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, physical = true, duration = true, chaining = true, }, - gemType = "Barrageable", - tagString = "Spell, Physical, Duration, Chaining", - reqStr = 50, + gemType = "Spell", + tagString = "Physical, Duration, Chaining", + reqStr = 0, reqDex = 0, - reqInt = 50, + reqInt = 100, Tier = 0, naturalMaxLevel = 20, }, @@ -2516,21 +3293,18 @@ return { variantId = "Reap", grantedEffectId = "ReapPlayer", tags = { - strength = true, intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, physical = true, duration = true, - critical = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Physical, Duration, Critical", - reqStr = 50, + gemType = "Spell", + tagString = "AoE, Physical, Duration", + reqStr = 0, reqDex = 0, - reqInt = 50, + reqInt = 100, Tier = 0, naturalMaxLevel = 20, }, @@ -2543,15 +3317,35 @@ return { support = true, }, gemType = "Support", + gemFamily = "Lifetap", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAtaluiBloodlettingSupport"] = { + name = "Atalui's Bloodletting", + gameId = "Metadata/Items/Gems/SupportGemAtaluiBloodletting", + variantId = "AtaluiBloodlettingSupport", + grantedEffectId = "SupportAtaluiBloodlettingPlayer", + tags = { + support = true, + lineage = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Lifetap", + tagString = "Lineage, Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBeheadSupport"] = { - name = "Behead", + name = "Behead I", gameId = "Metadata/Items/Gems/SupportGemBehead", variantId = "BeheadSupport", grantedEffectId = "SupportBeheadPlayer", @@ -2562,6 +3356,27 @@ return { strike = true, }, gemType = "Support", + gemFamily = "Behead", + tagString = "Attack, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBeheadSupportTwo"] = { + name = "Behead II", + gameId = "Metadata/Items/Gems/SupportGemBeheadTwo", + variantId = "BeheadSupportTwo", + grantedEffectId = "SupportBeheadPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Behead", tagString = "Attack, Melee, Strike", reqStr = 100, reqDex = 0, @@ -2569,8 +3384,29 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemEinharsBeastriteSupport"] = { + name = "Einhar's Beastrite", + gameId = "Metadata/Items/Gems/SupportGemEinharsBeastrite", + variantId = "EinharsBeastriteSupport", + grantedEffectId = "SupportEinharsBeastritePlayer", + tags = { + support = true, + lineage = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Behead", + tagString = "Lineage, Attack, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemExecuteSupport"] = { - name = "Execute", + name = "Execute I", gameId = "Metadata/Items/Gems/SupportGemExecute", variantId = "ExecuteSupport", grantedEffectId = "SupportExecutePlayer", @@ -2578,6 +3414,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Execute", tagString = "", reqStr = 100, reqDex = 0, @@ -2585,6 +3422,40 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemExecuteSupportTwo"] = { + name = "Execute II", + gameId = "Metadata/Items/Gems/SupportGemExecuteTwo", + variantId = "ExecuteSupportTwo", + grantedEffectId = "SupportExecutePlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Execute", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemExecuteSupportThree"] = { + name = "Execute III", + gameId = "Metadata/Items/Gems/SupportGemExecuteThree", + variantId = "ExecuteSupportThree", + grantedEffectId = "SupportExecutePlayerThree", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Execute", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemBoneshatter"] = { name = "Boneshatter", baseTypeName = "Boneshatter", @@ -2618,13 +3489,12 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, projectile = true, cold = true, }, - gemType = "Barrageable", - tagString = "Spell, Projectile, Cold", + gemType = "Spell", + tagString = "Projectile, Cold", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2641,11 +3511,12 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Overcharge", tagString = "Lightning", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLightningConduit"] = { @@ -2657,14 +3528,12 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, lightning = true, - payoff = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning, Payoff", + gemType = "Spell", + tagString = "AoE, Lightning", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2676,20 +3545,22 @@ return { baseTypeName = "Galvanic Field", gameId = "Metadata/Items/Gems/SkillGemGalvanicField", variantId = "GalvanicField", - grantedEffectId = "GalvanicFieldPlayer", + grantedEffectId = "GalvanicFieldBuffPlayer", + additionalStatSet1 = "GalvanicFieldOrbPlayer", tags = { intelligence = true, grants_active_skill = true, spell = true, buff = true, area = true, + sustained = true, lightning = true, duration = true, chaining = true, orb = true, }, gemType = "Spell", - tagString = "Buff, AoE, Lightning, Duration, Chaining, Orb", + tagString = "Buff, AoE, Sustained, Lightning, Duration, Chaining, Orb", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2719,7 +3590,7 @@ return { reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 9, + Tier = 7, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemRapidAssault"] = { @@ -2861,14 +3732,14 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, lightning = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Lightning", + gemType = "Attack", + tagString = "AoE, Projectile, Lightning, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -2886,15 +3757,15 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, cold = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Cold, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Cold, Duration, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -2957,6 +3828,7 @@ return { gameId = "Metadata/Items/Gems/SkillGemEscapeShot", variantId = "EscapeShot", grantedEffectId = "EscapeShotPlayer", + additionalGrantedEffectId1 = "EscapeShotIceFragmentPlayer", tags = { dexterity = true, grants_active_skill = true, @@ -3074,7 +3946,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemJaggedGroundSupport"] = { - name = "Jagged Ground", + name = "Jagged Ground I", gameId = "Metadata/Items/Gems/SupportGemJaggedGround", variantId = "JaggedGroundSupport", grantedEffectId = "SupportJaggedGroundPlayer", @@ -3087,11 +3959,34 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Jagged Ground", tagString = "Attack, AoE, Melee, Slam, Duration", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemJaggedGroundSupportTwo"] = { + name = "Jagged Ground II", + gameId = "Metadata/Items/Gems/SupportGemJaggedGroundTwo", + variantId = "JaggedGroundSupportTwo", + grantedEffectId = "SupportJaggedGroundPlayerTwo", + tags = { + support = true, + attack = true, + area = true, + melee = true, + slam = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Jagged Ground", + tagString = "Attack, AoE, Melee, Slam, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemInevitableCriticalsSupport"] = { @@ -3101,14 +3996,14 @@ return { grantedEffectId = "SupportInevitableCriticalsPlayer", tags = { support = true, - critical = true, }, gemType = "Support", - tagString = "Critical", + gemFamily = "Inevitable Critical", + tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRuthlessSupport"] = { @@ -3120,23 +4015,25 @@ return { support = true, }, gemType = "Support", + gemFamily = "Ruthless", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemLessDurationSupport"] = { - name = "Fast Forward", + ["Metadata/Items/Gems/SkillGemCompressedDurationSupport"] = { + name = "Compressed Duration I", gameId = "Metadata/Items/Gems/SupportGemFastForward", - variantId = "LessDurationSupport", - grantedEffectId = "LessDurationSupportPlayer", + variantId = "CompressedDurationSupport", + grantedEffectId = "CompressedDurationSupportPlayer", tags = { support = true, duration = true, }, gemType = "Support", + gemFamily = "Compressed Duration", tagString = "Duration", reqStr = 100, reqDex = 0, @@ -3144,8 +4041,26 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemCompressedDurationSupportTwo"] = { + name = "Compressed Duration II", + gameId = "Metadata/Items/Gems/SupportGemFastForwardTwo", + variantId = "CompressedDurationSupportTwo", + grantedEffectId = "CompressedDurationSupportPlayerTwo", + tags = { + support = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Compressed Duration", + tagString = "Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemFistOfWarSupport"] = { - name = "Fist of War", + name = "Fist of War I", gameId = "Metadata/Items/Gems/SupportGemFistOfWar", variantId = "FistOfWarSupport", grantedEffectId = "FistOfWarSupportPlayer", @@ -3156,6 +4071,7 @@ return { slam = true, }, gemType = "Support", + gemFamily = "Fist of War", tagString = "Attack, Melee, Slam", reqStr = 100, reqDex = 0, @@ -3163,6 +4079,46 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemFistOfWarSupportTwo"] = { + name = "Fist of War II", + gameId = "Metadata/Items/Gems/SupportGemFistOfWarTwo", + variantId = "FistOfWarSupportTwo", + grantedEffectId = "FistOfWarSupportPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + slam = true, + }, + gemType = "Support", + gemFamily = "Fist of War", + tagString = "Attack, Melee, Slam", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFistOfWarSupportThree"] = { + name = "Fist of War III", + gameId = "Metadata/Items/Gems/SupportGemFistOfWarThree", + variantId = "FistOfWarSupportThree", + grantedEffectId = "FistOfWarSupportPlayerThree", + tags = { + support = true, + attack = true, + melee = true, + slam = true, + }, + gemType = "Support", + gemFamily = "Fist of War", + tagString = "Attack, Melee, Slam", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemUnbreakableSupport"] = { name = "Unbreakable", gameId = "Metadata/Items/Gems/SupportGemUnbreakable", @@ -3172,23 +4128,25 @@ return { support = true, }, gemType = "Support", + gemFamily = "Unbreakable", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemMoreDurationSupport"] = { - name = "Persistence", + ["Metadata/Items/Gems/SkillGemProlongedDurationSupport"] = { + name = "Prolonged Duration I", gameId = "Metadata/Items/Gems/SupportGemPersistence", - variantId = "MoreDurationSupport", - grantedEffectId = "MoreDurationSupportPlayer", + variantId = "ProlongedDurationSupport", + grantedEffectId = "ProlongedDurationSupportPlayer", tags = { support = true, duration = true, }, gemType = "Support", + gemFamily = "Prolonged Duration", tagString = "Duration", reqStr = 100, reqDex = 0, @@ -3196,6 +4154,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemProlongedDurationSupportTwo"] = { + name = "Prolonged Duration II", + gameId = "Metadata/Items/Gems/SupportGemPersistenceTwo", + variantId = "ProlongedDurationSupportTwo", + grantedEffectId = "ProlongedDurationSupportPlayerTwo", + tags = { + support = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Prolonged Duration", + tagString = "Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemProlongedDurationSupportThree"] = { + name = "Prolonged Duration III", + gameId = "Metadata/Items/Gems/SupportGemPersistenceThree", + variantId = "ProlongedDurationSupportThree", + grantedEffectId = "ProlongedDurationSupportPlayerThree", + tags = { + support = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Prolonged Duration", + tagString = "Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemImpactShockwaveSupport"] = { name = "Impact Shockwave", gameId = "Metadata/Items/Gems/SupportGemImpactShockwave", @@ -3209,6 +4203,7 @@ return { strike = true, }, gemType = "Support", + gemFamily = "Impact Shockwave", tagString = "Attack, AoE, Melee, Strike", reqStr = 100, reqDex = 0, @@ -3227,6 +4222,7 @@ return { curse = true, }, gemType = "Support", + gemFamily = "Hex Bloom", tagString = "AoE, Curse", reqStr = 0, reqDex = 0, @@ -3266,16 +4262,16 @@ return { gameId = "Metadata/Items/Gems/SkillGemComet", variantId = "Comet", grantedEffectId = "CometPlayer", + additionalStatSet1 = "CometFireInfusionPlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, cold = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Cold", + gemType = "Spell", + tagString = "AoE, Cold", reqStr = 0, reqDex = 0, reqInt = 100, @@ -3305,25 +4301,26 @@ return { Tier = 0, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemRipwireBallista"] = { - name = "Ripwire Ballista", - baseTypeName = "Ripwire Ballista", + ["Metadata/Items/Gems/SkillGemArtilleryBallista"] = { + name = "Artillery Ballista", + baseTypeName = "Artillery Ballista", gameId = "Metadata/Items/Gems/SkillGemRipwireBallista", - variantId = "RipwireBallista", - grantedEffectId = "RipwireBallistaPlayer", - additionalGrantedEffectId1 = "RipwireBallistaProjectilePlayer", + variantId = "ArtilleryBallista", + grantedEffectId = "ArtilleryBallistaPlayer", + additionalGrantedEffectId1 = "ArtilleryBallistaProjectilePlayer", tags = { strength = true, dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, totem = true, + area = true, projectile = true, + sustained = true, duration = true, }, - gemType = "Barrageable", - tagString = "Attack, Totem, Projectile, Duration", + gemType = "Attack", + tagString = "Totem, AoE, Projectile, Sustained, Duration", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -3349,7 +4346,7 @@ return { reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 9, + Tier = 7, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemKillingPalm"] = { @@ -3370,7 +4367,7 @@ return { }, gemType = "Attack", tagString = "AoE, Melee, Strike, Physical", - weaponRequirements = "Quarterstaff, Unarmed", + weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, reqInt = 50, @@ -3393,11 +4390,10 @@ return { melee = true, strike = true, cold = true, - nova = true, }, gemType = "Attack", - tagString = "AoE, Melee, Strike, Cold, Nova", - weaponRequirements = "Quarterstaff, Unarmed", + tagString = "AoE, Melee, Strike, Cold", + weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, reqInt = 50, @@ -3415,11 +4411,12 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Frost Nexus", tagString = "AoE, Cold", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 2, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSpiralVolley"] = { @@ -3453,13 +4450,12 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, lightning = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning", + gemType = "Spell", + tagString = "AoE, Lightning", reqStr = 0, reqDex = 0, reqInt = 100, @@ -3476,6 +4472,7 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Shock Siphon", tagString = "Lightning", reqStr = 0, reqDex = 0, @@ -3502,19 +4499,20 @@ return { reqDex = 0, reqInt = 100, Tier = 0, - naturalMaxLevel = 1, + naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemCoursingCurrentSupport"] = { - name = "Coursing Current", + ["Metadata/Items/Gems/SkillGemShockConductionSupport"] = { + name = "Shock Conduction", gameId = "Metadata/Items/Gems/SupportGemCoursingCurrent", - variantId = "CoursingCurrentSupport", - grantedEffectId = "SupportCoursingCurrentPlayer", + variantId = "ShockConductionSupport", + grantedEffectId = "SupportShockConductionPlayer", tags = { support = true, area = true, lightning = true, }, gemType = "Support", + gemFamily = "Shock Conduction", tagString = "AoE, Lightning", reqStr = 0, reqDex = 0, @@ -3532,6 +4530,7 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Deep Freeze", tagString = "Cold", reqStr = 0, reqDex = 0, @@ -3539,16 +4538,17 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemChanceToIgniteSupport"] = { - name = "Ignition", + ["Metadata/Items/Gems/SkillGemIgniteSupport"] = { + name = "Ignite I", gameId = "Metadata/Items/Gems/SupportGemIgnition", - variantId = "ChanceToIgniteSupport", - grantedEffectId = "SupportChanceToIgnitePlayer", + variantId = "IgniteSupport", + grantedEffectId = "SupportIgnitePlayer", tags = { support = true, fire = true, }, gemType = "Support", + gemFamily = "Ignite", tagString = "Fire", reqStr = 100, reqDex = 0, @@ -3556,8 +4556,44 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemIgniteSupportTwo"] = { + name = "Ignite II", + gameId = "Metadata/Items/Gems/SupportGemIgnitionTwo", + variantId = "IgniteSupportTwo", + grantedEffectId = "SupportIgnitePlayerTwo", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Ignite", + tagString = "Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemIgniteSupportThree"] = { + name = "Ignite III", + gameId = "Metadata/Items/Gems/SupportGemIgnitionThree", + variantId = "IgniteSupportThree", + grantedEffectId = "SupportIgnitePlayerThree", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Ignite", + tagString = "Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemDeadlyIgnitesSupport"] = { - name = "Searing Flame", + name = "Searing Flame I", gameId = "Metadata/Items/Gems/SupportGemSearingFlame", variantId = "DeadlyIgnitesSupport", grantedEffectId = "SupportDeadlyIgnitesPlayer", @@ -3566,6 +4602,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Searing Flame", tagString = "Fire", reqStr = 100, reqDex = 0, @@ -3573,8 +4610,26 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemDeadlyIgnitesSupportTwo"] = { + name = "Searing Flame II", + gameId = "Metadata/Items/Gems/SupportGemSearingFlameTwo", + variantId = "DeadlyIgnitesSupportTwo", + grantedEffectId = "SupportDeadlyIgnitesPlayerTwo", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Searing Flame", + tagString = "Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemIgniteDurationSupport"] = { - name = "Eternal Flame", + name = "Eternal Flame I", gameId = "Metadata/Items/Gems/SupportGemEternalFlame", variantId = "IgniteDurationSupport", grantedEffectId = "SupportIgniteDurationPlayer", @@ -3583,6 +4638,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Eternal Flame", tagString = "Fire", reqStr = 100, reqDex = 0, @@ -3590,6 +4646,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemIgniteDurationSupportTwo"] = { + name = "Eternal Flame II", + gameId = "Metadata/Items/Gems/SupportGemEternalFlameTwo", + variantId = "IgniteDurationSupportTwo", + grantedEffectId = "SupportIgniteDurationPlayerTwo", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Eternal Flame", + tagString = "Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemIgniteDurationSupportThree"] = { + name = "Eternal Flame III", + gameId = "Metadata/Items/Gems/SupportGemEternalFlameThree", + variantId = "IgniteDurationSupportThree", + grantedEffectId = "SupportIgniteDurationPlayerThree", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Eternal Flame", + tagString = "Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemEssenceHarvestSupport"] = { name = "Essence Harvest", gameId = "Metadata/Items/Gems/SupportGemEssenceHarvest", @@ -3601,20 +4693,21 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Essence Harvest", tagString = "Minion, Persistent", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemCastOnShock"] = { - name = "Cast on Shock", - baseTypeName = "Cast on Shock", - gameId = "Metadata/Items/Gems/SkillGemCastOnShock", - variantId = "CastOnShock", - grantedEffectId = "MetaCastOnShockPlayer", - additionalGrantedEffectId1 = "SupportMetaCastOnShockPlayer", + ["Metadata/Items/Gems/SkillGemCastOnElementalAilment"] = { + name = "Cast on Elemental Ailment", + baseTypeName = "Cast on Elemental Ailment", + gameId = "Metadata/Items/Gems/SkillGemCastOnElementalAilment", + variantId = "CastOnElementalAilment", + grantedEffectId = "MetaCastOnElementalAilmentPlayer", + additionalGrantedEffectId1 = "SupportMetaCastOnElementalAilmentPlayer", tags = { intelligence = true, grants_active_skill = true, @@ -3622,62 +4715,16 @@ return { persistent = true, trigger = true, lightning = true, - meta = true, - }, - gemType = "Buff", - tagString = "Persistent, Trigger, Lightning, Meta", - reqStr = 0, - reqDex = 0, - reqInt = 100, - Tier = 8, - naturalMaxLevel = 20, - }, - ["Metadata/Items/Gems/SkillGemCastOnFreeze"] = { - name = "Cast on Freeze", - baseTypeName = "Cast on Freeze", - gameId = "Metadata/Items/Gems/SkillGemCastOnFreeze", - variantId = "CastOnFreeze", - grantedEffectId = "MetaCastOnFreezePlayer", - additionalGrantedEffectId1 = "SupportMetaCastOnFreezePlayer", - tags = { - intelligence = true, - grants_active_skill = true, - buff = true, - persistent = true, - trigger = true, cold = true, - meta = true, - }, - gemType = "Buff", - tagString = "Persistent, Trigger, Cold, Meta", - reqStr = 0, - reqDex = 0, - reqInt = 100, - Tier = 8, - naturalMaxLevel = 20, - }, - ["Metadata/Items/Gems/SkillGemCastOnIgnite"] = { - name = "Cast on Ignite", - baseTypeName = "Cast on Ignite", - gameId = "Metadata/Items/Gems/SkillGemCastOnIgnite", - variantId = "CastOnIgnite", - grantedEffectId = "MetaCastOnIgnitePlayer", - additionalGrantedEffectId1 = "SupportMetaCastOnIgnitePlayer", - tags = { - intelligence = true, - grants_active_skill = true, - buff = true, - persistent = true, - trigger = true, fire = true, meta = true, }, gemType = "Buff", - tagString = "Persistent, Trigger, Fire, Meta", + tagString = "Persistent, Trigger, Lightning, Cold, Fire, Meta", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 8, + Tier = 14, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemCastOnMeleeKill"] = { @@ -3737,6 +4784,7 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Exploit Weakness", tagString = "Payoff", reqStr = 100, reqDex = 0, @@ -3753,11 +4801,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Devastate", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBarrierInvocation"] = { @@ -3774,10 +4823,11 @@ return { buff = true, persistent = true, trigger = true, + invocation = true, meta = true, }, gemType = "Buff", - tagString = "Persistent, Trigger, Meta", + tagString = "Persistent, Trigger, Invocation, Meta", reqStr = 0, reqDex = 50, reqInt = 50, @@ -3832,21 +4882,39 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemEnragedWarcrySupport"] = { - name = "Enraged Warcry", + name = "Enraged Warcry I", gameId = "Metadata/Items/Gems/SupportGemEnragedWarcry", variantId = "EnragedWarcrySupport", grantedEffectId = "SupportEnragedWarcryPlayer", tags = { support = true, - attack = true, warcry = true, }, gemType = "Support", - tagString = "Attack, Warcry", + gemFamily = "Enraged Warcry", + tagString = "Warcry", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemEnragedWarcrySupportTwo"] = { + name = "Enraged Warcry II", + gameId = "Metadata/Items/Gems/SupportGemEnragedWarcryTwo", + variantId = "EnragedWarcrySupportTwo", + grantedEffectId = "SupportEnragedWarcryPlayerTwo", + tags = { + support = true, + warcry = true, + }, + gemType = "Support", + gemFamily = "Enraged Warcry", + tagString = "Warcry", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLingeringIllusion"] = { @@ -3908,12 +4976,12 @@ return { totem = true, area = true, melee = true, - physical = true, duration = true, + conditional = true, meta = true, }, gemType = "Attack", - tagString = "Totem, AoE, Melee, Physical, Duration, Meta", + tagString = "Totem, AoE, Melee, Duration, Conditional, Meta", weaponRequirements = "One Hand Mace, Two Hand Mace", reqStr = 100, reqDex = 0, @@ -4041,9 +5109,10 @@ return { projectile = true, grenade = true, lightning = true, + duration = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Grenade, Lightning", + tagString = "AoE, Projectile, Grenade, Lightning, Duration", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -4060,14 +5129,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, minion = true, buff = true, area = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Minion, Buff, AoE, Duration", + gemType = "Minion", + tagString = "Buff, AoE, Duration, Barrageable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4108,7 +5177,6 @@ return { variantId = "StaggeringPalm", grantedEffectId = "StaggeringPalmPlayer", additionalGrantedEffectId1 = "StaggeringPalmProjectilePlayer", - additionalGrantedEffectId2 = "StaggeringPalmUnarmedProjectilePlayer", tags = { dexterity = true, intelligence = true, @@ -4124,7 +5192,7 @@ return { }, gemType = "Attack", tagString = "Buff, AoE, Melee, Strike, Projectile, Physical, Duration", - weaponRequirements = "Quarterstaff, Unarmed", + weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, reqInt = 50, @@ -4202,11 +5270,10 @@ return { melee = true, sustained = true, duration = true, - nova = true, conditional = true, }, gemType = "Attack", - tagString = "AoE, Melee, Sustained, Duration, Nova, Conditional", + tagString = "AoE, Melee, Sustained, Duration, Conditional", weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, @@ -4223,13 +5290,12 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, projectile = true, chaos = true, }, - gemType = "Barrageable", - tagString = "Spell, Projectile, Chaos", + gemType = "Spell", + tagString = "Projectile, Chaos", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4243,7 +5309,7 @@ return { variantId = "FrozenLocus", grantedEffectId = "FrozenLocusPlayer", additionalStatSet1 = "FrozenLocusGroundPlayer", - additionalGrantedEffectId1 = "FrozenLocusExplodePlayer", + additionalStatSet2 = "FrozenLocusExplodePlayer", tags = { dexterity = true, intelligence = true, @@ -4253,10 +5319,9 @@ return { melee = true, cold = true, duration = true, - nova = true, }, gemType = "Attack", - tagString = "AoE, Melee, Cold, Duration, Nova", + tagString = "AoE, Melee, Cold, Duration", weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, @@ -4298,15 +5363,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, physical = true, duration = true, nova = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Physical, Duration, Nova", + gemType = "Spell", + tagString = "AoE, Physical, Duration, Nova", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4323,6 +5387,7 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Electrocute", tagString = "Lightning", reqStr = 0, reqDex = 100, @@ -4337,10 +5402,10 @@ return { grantedEffectId = "SupportPinpointCriticalPlayer", tags = { support = true, - critical = true, }, gemType = "Support", - tagString = "Critical", + gemFamily = "Pinpoint Critical", + tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4356,6 +5421,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Perpetual Charge", tagString = "", reqStr = 0, reqDex = 100, @@ -4374,6 +5440,7 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Corrosion", tagString = "Physical, Chaos", reqStr = 0, reqDex = 100, @@ -4390,15 +5457,14 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, minion = true, area = true, physical = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, Minion, AoE, Physical, Duration", + gemType = "Spell", + tagString = "Minion, AoE, Physical, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4415,7 +5481,6 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, @@ -4423,9 +5488,10 @@ return { channelling = true, detonator = true, stages = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Fire, Channelling, Detonator, Staged", + gemType = "Attack", + tagString = "AoE, Projectile, Fire, Channelling, Detonator, Staged, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4443,15 +5509,15 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, chaos = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Chaos, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Chaos, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4469,14 +5535,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, projectile = true, fire = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Projectile, Fire", + gemType = "Spell", + tagString = "AoE, Projectile, Fire", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4497,9 +5562,10 @@ return { area = true, projectile = true, chaos = true, + barrageable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Chaos", + tagString = "AoE, Projectile, Chaos, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4517,15 +5583,15 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, lightning = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Lightning, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Lightning, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4533,6 +5599,32 @@ return { Tier = 3, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemPhantasmalArrowPlayer"] = { + name = "Phantasmal Arrow", + baseTypeName = "Phantasmal Arrow", + gameId = "Metadata/Items/Gem/SkillGemPhantasmalArrow", + variantId = "PhantasmalArrowPlayer", + grantedEffectId = "PhantasmalArrowPlayer", + additionalStatSet1 = "PhantasmalArrowExplosionPlayer", + tags = { + dexterity = true, + grants_active_skill = true, + attack = true, + area = true, + projectile = true, + fire = true, + duration = true, + barrageable = true, + }, + gemType = "Attack", + tagString = "AoE, Projectile, Fire, Duration, Barrageable", + weaponRequirements = "Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemLightningRod"] = { name = "Lightning Rod", baseTypeName = "Lightning Rod", @@ -4542,16 +5634,16 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, sustained = true, lightning = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Sustained, Lightning, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Sustained, Lightning, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4566,17 +5658,21 @@ return { variantId = "Snipe", grantedEffectId = "SnipePlayer", additionalStatSet1 = "SnipeExplosionPlayer", + additionalStatSet2 = "SnipeHeavyExplosionPlayer", + additionalStatSet3 = "SnipeFrozenExplosionPlayer", tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, + cold = true, channelling = true, + payoff = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Channelling", + gemType = "Attack", + tagString = "AoE, Projectile, Cold, Channelling, Payoff, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4595,16 +5691,16 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, fire = true, chaos = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Fire, Chaos, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Fire, Chaos, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4634,7 +5730,7 @@ return { reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 5, + Tier = 0, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemFireball"] = { @@ -4648,18 +5744,17 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, projectile = true, fire = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Projectile, Fire", + gemType = "Spell", + tagString = "AoE, Projectile, Fire", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 9, + Tier = 3, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemElectrocutingArrow"] = { @@ -4672,12 +5767,14 @@ return { dexterity = true, grants_active_skill = true, attack = true, + area = true, projectile = true, lightning = true, duration = true, + barrageable = true, }, gemType = "Attack", - tagString = "Projectile, Lightning, Duration", + tagString = "AoE, Projectile, Lightning, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4685,23 +5782,27 @@ return { Tier = 5, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemColdSnap"] = { - name = "Cold Snap", - baseTypeName = "Cold Snap", + ["Metadata/Items/Gems/SkillGemSnap"] = { + name = "Snap", + baseTypeName = "Snap", gameId = "Metadata/Items/Gem/SkillGemColdSnap", - variantId = "ColdSnap", - grantedEffectId = "ColdSnapPlayer", + variantId = "Snap", + grantedEffectId = "SnapPlayer", + additionalStatSet1 = "SnapLightningPlayer", + additionalStatSet2 = "SnapFirePlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, + lightning = true, cold = true, + fire = true, payoff = true, + remnant = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Cold, Payoff", + gemType = "Spell", + tagString = "AoE, Lightning, Cold, Fire, Payoff, Remnant", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4723,11 +5824,10 @@ return { melee = true, strike = true, fire = true, - duration = true, channelling = true, }, gemType = "Attack", - tagString = "AoE, Melee, Strike, Fire, Duration, Channelling", + tagString = "AoE, Melee, Strike, Fire, Channelling", weaponRequirements = "One Hand Mace, Two Hand Mace", reqStr = 100, reqDex = 0, @@ -4840,13 +5940,12 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, projectile = true, cold = true, }, - gemType = "Barrageable", - tagString = "Spell, Projectile, Cold", + gemType = "Spell", + tagString = "Projectile, Cold", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4863,15 +5962,15 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, chaos = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Chaos, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Chaos, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -4916,11 +6015,12 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Bursting Plague", tagString = "AoE, Trigger, Physical, Chaos", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 2, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCorpseCloud"] = { @@ -4948,7 +6048,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemWallFortress"] = { - name = "Fortress", + name = "Fortress I", gameId = "Metadata/Items/Gems/SupportGemFortress", variantId = "WallFortress", grantedEffectId = "SupportWallFortressPlayer", @@ -4956,6 +6056,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Fortress", tagString = "", reqStr = 0, reqDex = 0, @@ -4963,6 +6064,41 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemWallFortressTwo"] = { + name = "Fortress II", + gameId = "Metadata/Items/Gems/SupportGemFortressTwo", + variantId = "WallFortressTwo", + grantedEffectId = "SupportWallFortressPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Fortress", + tagString = "", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAhnsCitadelSupport"] = { + name = "Ahn's Citadel", + gameId = "Metadata/Items/Gems/SupportGemAhnsCitadel", + variantId = "AhnsCitadelSupport", + grantedEffectId = "SupportAhnsCitadelPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Fortress", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemFrostfireSupport"] = { name = "Frostfire", gameId = "Metadata/Items/Gems/SupportGemFrostfire", @@ -4975,6 +6111,7 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Frostfire", tagString = "Cold, Fire, Payoff", reqStr = 0, reqDex = 0, @@ -4993,6 +6130,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Stormfire", tagString = "Lightning, Fire", reqStr = 0, reqDex = 0, @@ -5001,7 +6139,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemIncreaseLimitSupport"] = { - name = "Overabundance", + name = "Overabundance I", gameId = "Metadata/Items/Gems/SupportGemOverabundance", variantId = "IncreaseLimitSupport", grantedEffectId = "SupportIncreaseLimitPlayer", @@ -5009,6 +6147,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Overabundance", tagString = "", reqStr = 0, reqDex = 100, @@ -5016,6 +6155,41 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemIncreaseLimitSupportTwo"] = { + name = "Overabundance II", + gameId = "Metadata/Items/Gems/SupportGemOverabundanceTwo", + variantId = "IncreaseLimitSupportTwo", + grantedEffectId = "SupportIncreaseLimitPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Overabundance", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemIncreaseLimitSupportThree"] = { + name = "Overabundance III", + gameId = "Metadata/Items/Gems/SupportGemOverabundanceThree", + variantId = "IncreaseLimitSupportThree", + grantedEffectId = "SupportIncreaseLimitPlayerThree", + tags = { + support = true, + curse = true, + }, + gemType = "Support", + gemFamily = "Overabundance", + tagString = "Curse", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemElectrocuteSupport"] = { name = "Electrocute", gameId = "Metadata/Items/Gems/SupportGemElectrocute", @@ -5026,6 +6200,7 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Electrocute", tagString = "Lightning", reqStr = 0, reqDex = 100, @@ -5065,11 +6240,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Energy Barrier", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemKnockbackWaveSupport"] = { @@ -5085,11 +6261,12 @@ return { trigger = true, }, gemType = "Support", + gemFamily = "Wind Wave", tagString = "AoE, Trigger", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBitingFrostSupport"] = { @@ -5103,6 +6280,7 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Biting Frost", tagString = "Cold, Payoff", reqStr = 0, reqDex = 0, @@ -5128,6 +6306,7 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Elemental Discharge", tagString = "Spell, AoE, Trigger, Lightning, Cold, Fire, Payoff", reqStr = 0, reqDex = 0, @@ -5144,6 +6323,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Grants Cooldown", tagString = "", reqStr = 0, reqDex = 0, @@ -5165,6 +6345,7 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Fiery Death", tagString = "Spell, AoE, Fire", reqStr = 0, reqDex = 0, @@ -5181,14 +6362,14 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Duration, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -5205,11 +6386,11 @@ return { tags = { dexterity = true, grants_active_skill = true, - spell = true, + attack = true, area = true, fire = true, }, - gemType = "Spell", + gemType = "Attack", tagString = "AoE, Fire", reqStr = 0, reqDex = 100, @@ -5228,16 +6409,16 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, fire = true, duration = true, detonator = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Fire, Duration, Detonator", + gemType = "Attack", + tagString = "AoE, Projectile, Fire, Duration, Detonator, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -5336,6 +6517,7 @@ return { herald = true, }, gemType = "Support", + gemFamily = "Deadly Heralds", tagString = "Herald", reqStr = 0, reqDex = 100, @@ -5356,10 +6538,10 @@ return { area = true, trigger = true, fire = true, - critical = true, }, gemType = "Support", - tagString = "Spell, AoE, Trigger, Fire, Critical", + gemFamily = "Mana Flare", + tagString = "Spell, AoE, Trigger, Fire", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5375,27 +6557,63 @@ return { support = true, }, gemType = "Support", + gemFamily = "Lockdown", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemOverpowerSupport"] = { - name = "Overpower", + ["Metadata/Items/Gems/SkillGemStunSupport"] = { + name = "Stun I", gameId = "Metadata/Items/Gems/SupportGemOverpower", - variantId = "OverpowerSupport", - grantedEffectId = "SupportOverpowerPlayer", + variantId = "StunSupport", + grantedEffectId = "SupportStunPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Stun", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemStunSupportTwo"] = { + name = "Stun II", + gameId = "Metadata/Items/Gems/SupportGemOverpowerTwo", + variantId = "StunSupportTwo", + grantedEffectId = "SupportStunPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Stun", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemStunSupportThree"] = { + name = "Stun III", + gameId = "Metadata/Items/Gems/SupportGemOverpowerThree", + variantId = "StunSupportThree", + grantedEffectId = "SupportStunPlayerThree", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Stun", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemMobilitySupport"] = { @@ -5407,6 +6625,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Mobility", tagString = "", reqStr = 0, reqDex = 100, @@ -5415,7 +6634,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPinSupport"] = { - name = "Pin", + name = "Pin I", gameId = "Metadata/Items/Gems/SupportGemPin", variantId = "PinSupport", grantedEffectId = "SupportPinPlayer", @@ -5424,6 +6643,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Pin", tagString = "Physical", reqStr = 0, reqDex = 100, @@ -5431,6 +6651,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemPinSupportTwo"] = { + name = "Pin II", + gameId = "Metadata/Items/Gems/SupportGemPinTwo", + variantId = "PinSupportTwo", + grantedEffectId = "SupportPinPlayerTwo", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Pin", + tagString = "Physical", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPinSupportThree"] = { + name = "Pin III", + gameId = "Metadata/Items/Gems/SupportGemPinThree", + variantId = "PinSupportThree", + grantedEffectId = "SupportPinPlayerThree", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Pin", + tagString = "Physical", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemAmbushSupport"] = { name = "Ambush", gameId = "Metadata/Items/Gems/SupportGemAmbush", @@ -5438,10 +6694,10 @@ return { grantedEffectId = "SupportAmbushPlayer", tags = { support = true, - critical = true, }, gemType = "Support", - tagString = "Critical", + gemFamily = "Ambush", + tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5457,14 +6713,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, chaos = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Chaos, Duration", + gemType = "Spell", + tagString = "AoE, Chaos, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5517,6 +6772,40 @@ return { Tier = 9, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemBountySupport"] = { + name = "Bounty I", + gameId = "Metadata/Items/Gems/SupportGemBounty", + variantId = "BountySupport", + grantedEffectId = "SupportBountyPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Bounty", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBountySupportTwo"] = { + name = "Bounty II", + gameId = "Metadata/Items/Gems/SupportGemBountyTwo", + variantId = "BountySupportTwo", + grantedEffectId = "SupportBountyPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Bounty", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemManaFlaskSupport"] = { name = "Mana Bounty", gameId = "Metadata/Items/Gems/SupportGemManaBounty", @@ -5526,11 +6815,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Bounty", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLifeFlaskSupport"] = { @@ -5542,11 +6832,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Bounty", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSkeletalWarrior"] = { @@ -5581,11 +6872,12 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Minion Instability", tagString = "Minion, Fire", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 2, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemEnduranceChargeOnArmourBreakSupport"] = { @@ -5597,11 +6889,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Break Endurance", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCurseEffectSupport"] = { @@ -5614,6 +6907,7 @@ return { curse = true, }, gemType = "Support", + gemFamily = "Heightened Curse", tagString = "Curse", reqStr = 0, reqDex = 0, @@ -5630,11 +6924,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Corpse Conservation", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDecayingHexSupport"] = { @@ -5648,11 +6943,12 @@ return { curse = true, }, gemType = "Support", + gemFamily = "Decaying Hex", tagString = "Chaos, Curse", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemFocusedCurseSupport"] = { @@ -5665,6 +6961,7 @@ return { curse = true, }, gemType = "Support", + gemFamily = "Focussed Curse", tagString = "Curse", reqStr = 0, reqDex = 0, @@ -5682,15 +6979,16 @@ return { curse = true, }, gemType = "Support", + gemFamily = "Ritualistic Curse", tagString = "Curse", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemMinionPactSupport"] = { - name = "Minion Pact", + name = "Minion Pact I", gameId = "Metadata/Items/Gem/SupportGemMinionPact", variantId = "MinionPactSupport", grantedEffectId = "SupportMinionPactPlayer", @@ -5699,6 +6997,7 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Minion Pact", tagString = "Minion", reqStr = 0, reqDex = 0, @@ -5706,6 +7005,24 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemMinionPactSupportTwo"] = { + name = "Minion Pact II", + gameId = "Metadata/Items/Gem/SupportGemMinionPactTwo", + variantId = "MinionPactSupportTwo", + grantedEffectId = "SupportMinionPactPlayerTwo", + tags = { + support = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Minion Pact", + tagString = "Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemLastGaspSupport"] = { name = "Last Gasp", gameId = "Metadata/Items/Gem/SupportGemLastGasp", @@ -5718,6 +7035,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Last Gasp", tagString = "Minion, Persistent, Duration", reqStr = 0, reqDex = 0, @@ -5725,6 +7043,27 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemTecrodsRevengeSupport"] = { + name = "Tecrod's Revenge", + gameId = "Metadata/Items/Gem/SupportGemTecrodsRevenge", + variantId = "TecrodsRevengeSupport", + grantedEffectId = "SupportTecrodsRevengePlayer", + tags = { + support = true, + lineage = true, + minion = true, + persistent = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Last Gasp", + tagString = "Lineage, Minion, Persistent, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemLifeOnCullSupport"] = { name = "Life Drain", gameId = "Metadata/Items/Gems/SupportGemLifeDrain", @@ -5734,6 +7073,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Life Drain", tagString = "", reqStr = 0, reqDex = 100, @@ -5750,6 +7090,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Soul Drain", tagString = "", reqStr = 0, reqDex = 100, @@ -5763,20 +7104,22 @@ return { gameId = "Metadata/Items/Gem/SkillGemGrimFeast", variantId = "GrimFeast", grantedEffectId = "GrimFeastPlayer", + additionalGrantedEffectId1 = "GrimFeastResummonPlayer", tags = { buff = true, intelligence = true, grants_active_skill = true, + spell = true, minion = true, persistent = true, remnant = true, }, gemType = "Buff", - tagString = "Minion, Persistent, Remnant", + tagString = "Spell, Minion, Persistent, Remnant", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 0, + Tier = 4, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemInnervateSupport"] = { @@ -5791,6 +7134,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Innervate", tagString = "Attack, Lightning, Duration", reqStr = 0, reqDex = 100, @@ -5822,16 +7166,17 @@ return { Tier = 8, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemMultiplePoisonSupport"] = { - name = "Comorbidity", + ["Metadata/Items/Gems/SkillGemEscalatingPoisonSupport"] = { + name = "Escalating Poison", gameId = "Metadata/Items/Gems/SupportGemComorbidity", - variantId = "MultiplePoisonSupport", - grantedEffectId = "SupportMultiplePoisonPlayer", + variantId = "EscalatingPoisonSupport", + grantedEffectId = "SupportEscalatingPoisonPlayer", tags = { support = true, chaos = true, }, gemType = "Support", + gemFamily = "Escalating Poison", tagString = "Chaos", reqStr = 0, reqDex = 100, @@ -5839,15 +7184,16 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemMultipleChargesSupport"] = { - name = "Profusion", + ["Metadata/Items/Gems/SkillGemChargeProfusionSupport"] = { + name = "Charge Profusion I", gameId = "Metadata/Items/Gems/SupportGemProfusion", - variantId = "MultipleChargesSupport", - grantedEffectId = "SupportMultipleChargesPlayer", + variantId = "ChargeProfusionSupport", + grantedEffectId = "SupportChargeProfusionPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Charge Profusion", tagString = "", reqStr = 0, reqDex = 100, @@ -5855,6 +7201,23 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemChargeProfusionSupportTwo"] = { + name = "Charge Profusion II", + gameId = "Metadata/Items/Gems/SupportGemProfusionTwo", + variantId = "ChargeProfusionSupportTwo", + grantedEffectId = "SupportChargeProfusionPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Charge Profusion", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemEmpoweredDamageSupport"] = { name = "Premeditation", gameId = "Metadata/Items/Gems/SupportGemPremeditation", @@ -5864,11 +7227,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Premeditation", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemEmpoweredCullSupport"] = { @@ -5880,11 +7244,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Murderous Intent", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemScavengedPlating"] = { @@ -5937,14 +7302,13 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, physical = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Physical, Duration", + gemType = "Spell", + tagString = "AoE, Physical, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5971,7 +7335,34 @@ return { reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 14, + Tier = 8, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemBlackPowderBlitzReservation"] = { + name = "Black Powder Blitz", + baseTypeName = "Black Powder Blitz", + gameId = "Metadata/Items/Gem/SkillGemBlackPowderBlitz", + variantId = "BlackPowderBlitzReservation", + grantedEffectId = "BlackPowderBlitzReservationPlayer", + additionalGrantedEffectId1 = "BlackPowderBlitzPlayer", + tags = { + buff = true, + strength = true, + dexterity = true, + grants_active_skill = true, + persistent = true, + area = true, + physical = true, + fire = true, + detonator = true, + travel = true, + }, + gemType = "Buff", + tagString = "Persistent, AoE, Physical, Fire, Detonator, Travel", + reqStr = 50, + reqDex = 50, + reqInt = 0, + Tier = 0, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemMoltenBlast"] = { @@ -6012,10 +7403,9 @@ return { persistent = true, aura = true, duration = true, - critical = true, }, gemType = "Buff", - tagString = "Persistent, Aura, Duration, Critical", + tagString = "Persistent, Aura, Duration", reqStr = 25, reqDex = 0, reqInt = 75, @@ -6060,13 +7450,14 @@ return { area = true, fire = true, duration = true, + remnant = true, }, gemType = "Spell", - tagString = "AoE, Fire, Duration", + tagString = "AoE, Fire, Duration, Remnant", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 0, + Tier = 3, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemStampede"] = { @@ -6120,29 +7511,57 @@ return { Tier = 7, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemBlazingCluster"] = { + ["Metadata/Items/Gems/SkillGemFortifyingCry"] = { + name = "Fortifying Cry", + baseTypeName = "Fortifying Cry", + gameId = "Metadata/Items/Gem/SkillGemFortifyingCry", + variantId = "FortifyingCry", + grantedEffectId = "FortifyingCryPlayer", + additionalGrantedEffectId1 = "FortifyingCryShockwavePlayer", + tags = { + warcry = true, + strength = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + trigger = true, + physical = true, + duration = true, + nova = true, + }, + gemType = "Warcry", + tagString = "Attack, AoE, Melee, Trigger, Physical, Duration, Nova", + weaponRequirements = "Armoured Shield", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 9, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemEmberFusillade"] = { name = "Ember Fusillade", baseTypeName = "Ember Fusillade", gameId = "Metadata/Items/Gems/SkillGemEmberFusillade", - variantId = "BlazingCluster", - grantedEffectId = "BlazingClusterPlayer", - additionalStatSet1 = "BlazingClusterExplosionPlayer", + variantId = "EmberFusillade", + grantedEffectId = "EmberFusilladePlayer", + additionalStatSet1 = "EmberFusilladeExplosionPlayer", + additionalStatSet2 = "EmberFusilladeBeamPlayer", tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, projectile = true, fire = true, duration = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Projectile, Fire, Duration", + gemType = "Spell", + tagString = "AoE, Projectile, Fire, Duration", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemHighVelocityRounds"] = { @@ -6160,10 +7579,11 @@ return { ammunition = true, projectile = true, physical = true, + duration = true, payoff = true, }, gemType = "Attack", - tagString = "Ammunition, Projectile, Physical, Payoff", + tagString = "Ammunition, Projectile, Physical, Duration, Payoff", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -6183,12 +7603,14 @@ return { dexterity = true, grants_active_skill = true, attack = true, + area = true, ammunition = true, projectile = true, payoff = true, + merging = true, }, gemType = "Attack", - tagString = "Ammunition, Projectile, Payoff", + tagString = "AoE, Ammunition, Projectile, Payoff, Merging", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -6212,11 +7634,9 @@ return { ammunition = true, projectile = true, sustained = true, - fire = true, - payoff = true, }, gemType = "Attack", - tagString = "AoE, Ammunition, Projectile, Sustained, Fire, Payoff", + tagString = "AoE, Ammunition, Projectile, Sustained", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -6292,9 +7712,10 @@ return { ammunition = true, projectile = true, fire = true, + merging = true, }, gemType = "Attack", - tagString = "AoE, Ammunition, Projectile, Fire", + tagString = "AoE, Ammunition, Projectile, Fire, Merging", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -6370,9 +7791,10 @@ return { ammunition = true, projectile = true, cold = true, + merging = true, }, gemType = "Attack", - tagString = "AoE, Ammunition, Projectile, Cold", + tagString = "AoE, Ammunition, Projectile, Cold, Merging", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -6478,9 +7900,10 @@ return { projectile = true, lightning = true, chaining = true, + merging = true, }, gemType = "Attack", - tagString = "Ammunition, Projectile, Lightning, Chaining", + tagString = "Ammunition, Projectile, Lightning, Chaining, Merging", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -6552,6 +7975,7 @@ return { warcry = true, }, gemType = "Support", + gemFamily = "Raging Cry", tagString = "Warcry", reqStr = 100, reqDex = 0, @@ -6559,25 +7983,63 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemIncreasedArmourBreakSupport"] = { - name = "Demolisher", + ["Metadata/Items/Gems/SkillGemArmourDemolisherSupport"] = { + name = "Armour Demolisher I", gameId = "Metadata/Items/Gems/SupportGemDemolisher", - variantId = "IncreasedArmourBreakSupport", - grantedEffectId = "SupportIncreasedArmourBreakPlayer", + variantId = "ArmourDemolisherSupport", + grantedEffectId = "SupportArmourDemolisherPlayer", tags = { support = true, spell = true, }, gemType = "Support", + gemFamily = "Armour Demolisher", tagString = "Spell", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemArmourDemolisherSupportTwo"] = { + name = "Armour Demolisher II", + gameId = "Metadata/Items/Gems/SupportGemDemolisherTwo", + variantId = "ArmourDemolisherSupportTwo", + grantedEffectId = "SupportArmourDemolisherPlayerTwo", + tags = { + support = true, + spell = true, + }, + gemType = "Support", + gemFamily = "Armour Demolisher", + tagString = "Spell", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUruksSmeltingSupport"] = { + name = "Uruk's Smelting", + gameId = "Metadata/Items/Gems/SupportGemUruksSmelting", + variantId = "UruksSmeltingSupport", + grantedEffectId = "SupportUruksSmeltingPlayer", + tags = { + support = true, + lineage = true, + spell = true, + }, + gemType = "Support", + gemFamily = "Armour Demolisher", + tagString = "Lineage, Spell", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRageforgedSupport"] = { - name = "Rageforged", + name = "Rageforged I", gameId = "Metadata/Items/Gem/SupportGemRageforged", variantId = "RageforgedSupport", grantedEffectId = "SupportRageforgedPlayer", @@ -6585,11 +8047,29 @@ return { support = true, }, gemType = "Support", + gemFamily = "Rageforged", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRageforgedSupportTwo"] = { + name = "Rageforged II", + gameId = "Metadata/Items/Gem/SupportGemRageforgedTwo", + variantId = "RageforgedSupportTwo", + grantedEffectId = "SupportRageforgedPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Rageforged", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPlayerDefaultQuarterstaff"] = { @@ -6733,13 +8213,13 @@ return { additionalStatSet1 = "SpearThrowFrenzyChargePlayer", tags = { grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile", + gemType = "Attack", + tagString = "AoE, Projectile, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 0, @@ -6755,12 +8235,12 @@ return { grantedEffectId = "MeleeBowPlayer", tags = { grants_active_skill = true, - barrageable = true, attack = true, projectile = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, Projectile", + gemType = "Attack", + tagString = "Projectile, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 0, @@ -6817,16 +8297,16 @@ return { gameId = "Metadata/Items/Gem/SkillGemAscendancyExplosiveConcoction", variantId = "AscendancyExplosiveConcoction", grantedEffectId = "ExplosiveConcoctionPlayer", + additionalStatSet1 = "ExplosiveConcoctionSecondPlayer", tags = { grants_active_skill = true, attack = true, area = true, projectile = true, fire = true, - duration = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Fire, Duration", + tagString = "AoE, Projectile, Fire", weaponRequirements = "Unarmed", reqStr = 0, reqDex = 0, @@ -6846,10 +8326,9 @@ return { area = true, projectile = true, lightning = true, - duration = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Lightning, Duration", + tagString = "AoE, Projectile, Lightning", weaponRequirements = "Unarmed", reqStr = 0, reqDex = 0, @@ -6869,10 +8348,9 @@ return { area = true, projectile = true, cold = true, - duration = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Cold, Duration", + tagString = "AoE, Projectile, Cold", weaponRequirements = "Unarmed", reqStr = 0, reqDex = 0, @@ -6881,21 +8359,21 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemAscendancyPoisonousConcoction"] = { - name = "Poisonous Concoction", - baseTypeName = "Poisonous Concoction", + name = "Acidic Concoction", + baseTypeName = "Acidic Concoction", gameId = "Metadata/Items/Gem/SkillGemAscendancyPoisonousConcoction", variantId = "AscendancyPoisonousConcoction", - grantedEffectId = "PoisonousConcoctionPlayer", + grantedEffectId = "AcidicConcoctionPlayer", + additionalStatSet1 = "AcidicConcoctionPoisonBurstPlayer", tags = { grants_active_skill = true, attack = true, area = true, projectile = true, physical = true, - chaos = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Physical, Chaos", + tagString = "AoE, Projectile, Physical", weaponRequirements = "Unarmed", reqStr = 0, reqDex = 0, @@ -7105,10 +8583,9 @@ return { grants_active_skill = true, shapeshift = true, buff = true, - persistent = true, }, gemType = "Shapeshift", - tagString = "Buff, Persistent", + tagString = "Buff", reqStr = 0, reqDex = 0, reqInt = 0, @@ -7219,6 +8696,49 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemInevitableAgony"] = { + name = "Inevitable Agony", + baseTypeName = "Inevitable Agony", + gameId = "Metadata/Items/Gem/SkillGemAscendancyInevitableAgony", + variantId = "InevitableAgony", + grantedEffectId = "InevitableAgonyPlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + duration = true, + curse = true, + }, + gemType = "Spell", + tagString = "AoE, Duration, Curse", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMetaDeadeyeMarks"] = { + name = "Called Shots", + baseTypeName = "Called Shots", + gameId = "Metadata/Items/Gem/SkillGemAscendanyMetaDeadeyeMarks", + variantId = "MetaDeadeyeMarks", + grantedEffectId = "MetaDeadeyeMarksPlayer", + additionalGrantedEffectId1 = "SupportMetaDeadeyeMarksPlayer", + tags = { + grants_active_skill = true, + buff = true, + persistent = true, + area = true, + meta = true, + }, + gemType = "Buff", + tagString = "Persistent, AoE, Meta", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemCastFireSpellOnHit"] = { name = "Fire Spell on Hit", baseTypeName = "Fire Spell on Melee Hit", @@ -7309,6 +8829,30 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemVoidIllusion"] = { + name = "Void Illusion", + baseTypeName = "Void Illusion", + gameId = "Metadata/Items/Gem/SkillGemAscendancyVoidIllusion", + variantId = "VoidIllusion", + grantedEffectId = "VoidIllusionPlayer", + additionalGrantedEffectId1 = "VoidIllusionSpawnPlayer", + tags = { + grants_active_skill = true, + attack = true, + buff = true, + persistent = true, + area = true, + duration = true, + }, + gemType = "Attack", + tagString = "Buff, Persistent, AoE, Duration", + weaponRequirements = "Any Martial Weapon, Unarmed", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemArmourExplosionSupport"] = { name = "Armour Explosion", gameId = "Metadata/Items/Gem/SupportGemArmourExplosion", @@ -7325,11 +8869,12 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Armour Explosion", tagString = "Attack, AoE, Trigger, Fire, Payoff", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 1, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemStompingGroundSupport"] = { @@ -7344,10 +8889,10 @@ return { attack = true, area = true, trigger = true, - physical = true, }, gemType = "Support", - tagString = "Attack, AoE, Trigger, Physical", + gemFamily = "Stomping Ground", + tagString = "Attack, AoE, Trigger", reqStr = 100, reqDex = 0, reqInt = 0, @@ -7355,7 +8900,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCrescendoSupport"] = { - name = "Crescendo", + name = "Crescendo I", gameId = "Metadata/Items/Gems/SupportGemCrescendo", variantId = "CrescendoSupport", grantedEffectId = "SupportCrescendoPlayer", @@ -7366,6 +8911,7 @@ return { strike = true, }, gemType = "Support", + gemFamily = "Crescendo", tagString = "Attack, Melee, Strike", reqStr = 0, reqDex = 100, @@ -7373,6 +8919,46 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemCrescendoSupportTwo"] = { + name = "Crescendo II", + gameId = "Metadata/Items/Gems/SupportGemCrescendoTwo", + variantId = "CrescendoSupportTwo", + grantedEffectId = "SupportCrescendoPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Crescendo", + tagString = "Attack, Melee, Strike", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCrescendoSupportThree"] = { + name = "Crescendo III", + gameId = "Metadata/Items/Gems/SupportGemCrescendoThree", + variantId = "CrescendoSupportThree", + grantedEffectId = "SupportCrescendoPlayerThree", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Crescendo", + tagString = "Attack, Melee, Strike", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemFireExposureSupport"] = { name = "Fire Exposure", gameId = "Metadata/Items/Gems/SupportGemFireExposure", @@ -7384,11 +8970,12 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Fire Exposure", tagString = "Fire, Duration", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLightningExposureSupport"] = { @@ -7402,11 +8989,12 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Lightning Exposure", tagString = "Lightning, Duration", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemColdExposureSupport"] = { @@ -7418,18 +9006,18 @@ return { support = true, cold = true, duration = true, - critical = true, }, gemType = "Support", - tagString = "Cold, Duration, Critical", + gemFamily = "Cold Exposure", + tagString = "Cold, Duration", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDeadlyPoisonSupport"] = { - name = "Deadly Poison", + name = "Deadly Poison I", gameId = "Metadata/Items/Gems/SupportGemDeadlyPoison", variantId = "DeadlyPoisonSupport", grantedEffectId = "SupportDeadlyPoisonPlayer", @@ -7438,15 +9026,34 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Deadly Poison", tagString = "Chaos", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDeadlyPoisonSupportTwo"] = { + name = "Deadly Poison II", + gameId = "Metadata/Items/Gems/SupportGemDeadlyPoisonTwo", + variantId = "DeadlyPoisonSupportTwo", + grantedEffectId = "SupportDeadlyPoisonPlayerTwo", + tags = { + support = true, + chaos = true, + }, + gemType = "Support", + gemFamily = "Deadly Poison", + tagString = "Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDeepCutsSupport"] = { - name = "Deep Cuts", + name = "Deep Cuts I", gameId = "Metadata/Items/Gems/SupportGemDeepCuts", variantId = "DeepCutsSupport", grantedEffectId = "SupportDeepCutsPlayer", @@ -7455,6 +9062,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Deep Cuts", tagString = "Physical", reqStr = 100, reqDex = 0, @@ -7462,8 +9070,26 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemDeepCutsSupportTwo"] = { + name = "Deep Cuts II", + gameId = "Metadata/Items/Gems/SupportGemDeepCutsTwo", + variantId = "DeepCutsSupportTwo", + grantedEffectId = "SupportDeepCutsPlayerTwo", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Deep Cuts", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemCorruptingCrySupport"] = { - name = "Corrupting Cry", + name = "Corrupting Cry I", gameId = "Metadata/Items/Gems/SupportGemCorruptingCry", variantId = "CorruptingCrySupport", grantedEffectId = "SupportCorruptingCryPlayer", @@ -7474,15 +9100,57 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Corrupting Cry", tagString = "Warcry, Physical, Duration", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCorruptingCrySupportTwo"] = { + name = "Corrupting Cry II", + gameId = "Metadata/Items/Gems/SupportGemCorruptingCryTwo", + variantId = "CorruptingCrySupportTwo", + grantedEffectId = "SupportCorruptingCryPlayerTwo", + tags = { + support = true, + warcry = true, + physical = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Corrupting Cry", + tagString = "Warcry, Physical, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCorruptingCrySupportThree"] = { + name = "Paquate's Pact", + gameId = "Metadata/Items/Gems/SupportGemCorruptingCryThree", + variantId = "CorruptingCrySupportThree", + grantedEffectId = "SupportCorruptingCryPlayerThree", + tags = { + support = true, + lineage = true, + warcry = true, + physical = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Corrupting Cry", + tagString = "Lineage, Warcry, Physical, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemWindowOfOpportunitySupport"] = { - name = "Window of Opportunity", + name = "Window of Opportunity I", gameId = "Metadata/Items/Gems/SupportGemWindowOfOpportunity", variantId = "WindowOfOpportunitySupport", grantedEffectId = "SupportWindowOfOpportunityPlayer", @@ -7491,6 +9159,7 @@ return { channelling = true, }, gemType = "Support", + gemFamily = "Window of Opportunity", tagString = "Channelling", reqStr = 0, reqDex = 100, @@ -7498,21 +9167,40 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemFireMasterySupport"] = { - name = "Fire Mastery", - gameId = "Metadata/Items/Gems/SupportGemFireMastery", - variantId = "FireMasterySupport", - grantedEffectId = "SupportFireMasteryPlayer", + ["Metadata/Items/Gems/SkillGemWindowOfOpportunitySupportTwo"] = { + name = "Window of Opportunity II", + gameId = "Metadata/Items/Gems/SupportGemWindowOfOpportunityTwo", + variantId = "WindowOfOpportunitySupportTwo", + grantedEffectId = "SupportWindowOfOpportunityPlayerTwo", tags = { support = true, - fire = true, + channelling = true, }, gemType = "Support", - tagString = "Fire", + gemFamily = "Window of Opportunity", + tagString = "Channelling", reqStr = 0, - reqDex = 0, - reqInt = 100, - Tier = 3, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFireMasterySupport"] = { + name = "Fire Mastery", + gameId = "Metadata/Items/Gems/SupportGemFireMastery", + variantId = "FireMasterySupport", + grantedEffectId = "SupportFireMasteryPlayer", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Mastery", + tagString = "Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemColdMasterySupport"] = { @@ -7525,11 +9213,12 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Mastery", tagString = "Cold", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLightningMasterySupport"] = { @@ -7542,11 +9231,12 @@ return { lightning = true, }, gemType = "Support", + gemFamily = "Mastery", tagString = "Lightning", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemChaosMasterySupport"] = { @@ -7559,11 +9249,12 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Mastery", tagString = "Chaos", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPhysicalMasterySupport"] = { @@ -7576,11 +9267,12 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Mastery", tagString = "Physical", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemMinionMasterySupport"] = { @@ -7593,11 +9285,12 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Mastery", tagString = "Minion", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemShockchainArrow"] = { @@ -7611,16 +9304,16 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, lightning = true, chaining = true, payoff = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Lightning, Chaining, Payoff", + gemType = "Attack", + tagString = "AoE, Projectile, Lightning, Chaining, Payoff, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -7634,6 +9327,7 @@ return { gameId = "Metadata/Items/Gem/SkillGemVaultingImpact", variantId = "VaultingImpact", grantedEffectId = "VaultingImpactPlayer", + additionalStatSet1 = "VaultingImpactDazedPlayer", tags = { dexterity = true, intelligence = true, @@ -7642,10 +9336,13 @@ return { area = true, melee = true, slam = true, + physical = true, + duration = true, travel = true, + payoff = true, }, gemType = "Attack", - tagString = "AoE, Melee, Slam, Travel", + tagString = "AoE, Melee, Slam, Physical, Duration, Travel, Payoff", weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, @@ -7702,7 +9399,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemSwiftAfflictionSupport"] = { - name = "Swift Affliction", + name = "Swift Affliction I", gameId = "Metadata/Items/Gem/SupportGemSwiftAffliction", variantId = "SwiftAfflictionSupport", grantedEffectId = "SupportSwiftAfflictionPlayer", @@ -7711,6 +9408,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Swift Affliction", tagString = "Duration", reqStr = 0, reqDex = 100, @@ -7718,6 +9416,42 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemSwiftAfflictionSupportTwo"] = { + name = "Swift Affliction II", + gameId = "Metadata/Items/Gem/SupportGemSwiftAfflictionTwo", + variantId = "SwiftAfflictionSupportTwo", + grantedEffectId = "SupportSwiftAfflictionPlayerTwo", + tags = { + support = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Swift Affliction", + tagString = "Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSwiftAfflictionSupportThree"] = { + name = "Swift Affliction III", + gameId = "Metadata/Items/Gem/SupportGemSwiftAfflictionThree", + variantId = "SwiftAfflictionSupportThree", + grantedEffectId = "SupportSwiftAfflictionPlayerThree", + tags = { + support = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Swift Affliction", + tagString = "Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemIntenseAgonySupport"] = { name = "Intense Agony", gameId = "Metadata/Items/Gem/SupportGemIntenseAgony", @@ -7729,6 +9463,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Intense Agony", tagString = "Spell, Duration", reqStr = 0, reqDex = 0, @@ -7746,6 +9481,7 @@ return { spell = true, }, gemType = "Support", + gemFamily = "Drain Ailments", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -7764,6 +9500,7 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Chaotic Freeze", tagString = "Spell, Chaos", reqStr = 0, reqDex = 0, @@ -7782,15 +9519,16 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Hinder", tagString = "Spell, Chaos", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemComboFinisherSupport"] = { - name = "Combo Finisher", + name = "Combo Finisher I", gameId = "Metadata/Items/Gems/SupportGemComboFinisher", variantId = "ComboFinisherSupport", grantedEffectId = "SupportComboFinisherPlayer", @@ -7802,6 +9540,7 @@ return { conditional = true, }, gemType = "Support", + gemFamily = "Combo Finisher", tagString = "Attack, Melee, Strike, Conditional", reqStr = 0, reqDex = 100, @@ -7809,16 +9548,56 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemEncumberanceSupport"] = { - name = "Encumbrance", + ["Metadata/Items/Gems/SkillGemComboFinisherSupportTwo"] = { + name = "Combo Finisher II", + gameId = "Metadata/Items/Gems/SupportGemComboFinisherTwo", + variantId = "ComboFinisherSupportTwo", + grantedEffectId = "SupportComboFinisherPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + conditional = true, + }, + gemType = "Support", + gemFamily = "Combo Finisher", + tagString = "Attack, Melee, Strike, Conditional", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAilithLineageSupport"] = { + name = "Ailith's Chimes", + gameId = "Metadata/Items/Gems/SupportGemAilithLineage", + variantId = "AilithLineageSupport", + grantedEffectId = "SupportAilithLineagePlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Ailith's Chimes", + tagString = "Lineage", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSlowPotencySupport"] = { + name = "Slow Potency", gameId = "Metadata/Items/Gems/SupportGemEncumbrance", - variantId = "EncumberanceSupport", - grantedEffectId = "SupportEncumberancePlayer", + variantId = "SlowPotencySupport", + grantedEffectId = "SupportSlowPotencyPlayer", tags = { support = true, spell = true, }, gemType = "Support", + gemFamily = "Encumbrance", tagString = "Spell", reqStr = 0, reqDex = 100, @@ -7827,7 +9606,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPrecisionSupport"] = { - name = "Precision", + name = "Precision I", gameId = "Metadata/Items/Gems/SupportGemPrecision", variantId = "PrecisionSupport", grantedEffectId = "SupportPrecisionPlayer", @@ -7837,6 +9616,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Precision", tagString = "Buff, Persistent", reqStr = 0, reqDex = 100, @@ -7844,8 +9624,27 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemPrecisionSupportTwo"] = { + name = "Precision II", + gameId = "Metadata/Items/Gems/SupportGemPrecisionTwo", + variantId = "PrecisionSupportTwo", + grantedEffectId = "SupportPrecisionPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Precision", + tagString = "Buff, Persistent", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemClaritySupport"] = { - name = "Clarity", + name = "Clarity I", gameId = "Metadata/Items/Gems/SupportGemClarity", variantId = "ClaritySupport", grantedEffectId = "SupportClarityPlayer", @@ -7855,6 +9654,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Clarity", tagString = "Buff, Persistent", reqStr = 0, reqDex = 0, @@ -7862,8 +9662,27 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemClaritySupportTwo"] = { + name = "Clarity II", + gameId = "Metadata/Items/Gems/SupportGemClarityTwo", + variantId = "ClaritySupportTwo", + grantedEffectId = "SupportClarityPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Clarity", + tagString = "Buff, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemVitalitySupport"] = { - name = "Vitality", + name = "Vitality I", gameId = "Metadata/Items/Gems/SupportGemVitality", variantId = "VitalitySupport", grantedEffectId = "SupportVitalityPlayer", @@ -7873,6 +9692,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Vitality", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -7880,8 +9700,27 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemVitalitySupportTwo"] = { + name = "Vitality II", + gameId = "Metadata/Items/Gems/SupportGemVitalityTwo", + variantId = "VitalitySupportTwo", + grantedEffectId = "SupportVitalityPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Vitality", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemHerbalismSupport"] = { - name = "Herbalism", + name = "Herbalism I", gameId = "Metadata/Items/Gems/SupportGemHerbalism", variantId = "HerbalismSupport", grantedEffectId = "SupportHerbalismPlayer", @@ -7891,6 +9730,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Herbalism", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -7898,8 +9738,27 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemHerbalismSupportTwo"] = { + name = "Herbalism II", + gameId = "Metadata/Items/Gems/SupportGemHerbalismTwo", + variantId = "HerbalismSupportTwo", + grantedEffectId = "SupportHerbalismPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Herbalism", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemCannibalismSupport"] = { - name = "Cannibalism", + name = "Cannibalism I", gameId = "Metadata/Items/Gems/SupportGemCannibalism", variantId = "CannibalismSupport", grantedEffectId = "SupportCannibalismPlayer", @@ -7909,6 +9768,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Cannibalism", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -7916,6 +9776,25 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemCannibalismSupportTwo"] = { + name = "Cannibalism II", + gameId = "Metadata/Items/Gems/SupportGemCannibalismTwo", + variantId = "CannibalismSupportTwo", + grantedEffectId = "SupportCannibalismPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Cannibalism", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemRuptureSupport"] = { name = "Rupture", gameId = "Metadata/Items/Gem/SupportGemRupture", @@ -7926,6 +9805,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Rupture", tagString = "Physical", reqStr = 100, reqDex = 0, @@ -7934,7 +9814,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCullingStrikeSupport"] = { - name = "Culling Strike", + name = "Culling Strike I", gameId = "Metadata/Items/Gem/SupportGemCullingStrike", variantId = "CullingStrikeSupport", grantedEffectId = "SupportCullingStrikePlayer", @@ -7943,11 +9823,30 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Culling Strike", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCullingStrikeSupportTwo"] = { + name = "Culling Strike II", + gameId = "Metadata/Items/Gem/SupportGemCullingStrikeTwo", + variantId = "CullingStrikeSupportTwo", + grantedEffectId = "SupportCullingStrikePlayerTwo", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Culling Strike", + tagString = "Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSpellCascadeSupport"] = { @@ -7959,6 +9858,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Spell Cascade", tagString = "", reqStr = 0, reqDex = 0, @@ -7967,7 +9867,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemArmourBreakSupport"] = { - name = "Splinter", + name = "Armour Break I", gameId = "Metadata/Items/Gems/SupportGemSplinter", variantId = "ArmourBreakSupport", grantedEffectId = "SupportArmourBreakPlayer", @@ -7976,6 +9876,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Armour Break", tagString = "Physical", reqStr = 100, reqDex = 0, @@ -7983,8 +9884,44 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemArmourBreakSupportTwo"] = { + name = "Armour Break II", + gameId = "Metadata/Items/Gems/SupportGemSplinterTwo", + variantId = "ArmourBreakSupportTwo", + grantedEffectId = "SupportArmourBreakPlayerTwo", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Armour Break", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemArmourBreakSupportThree"] = { + name = "Armour Break III", + gameId = "Metadata/Items/Gems/SupportGemSplinterThree", + variantId = "ArmourBreakSupportThree", + grantedEffectId = "SupportArmourBreakPlayerThree", + tags = { + support = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Armour Break", + tagString = "Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemFarCombatSupport"] = { - name = "Longshot", + name = "Longshot I", gameId = "Metadata/Items/Gems/SupportGemLongshot", variantId = "FarCombatSupport", grantedEffectId = "SupportFarCombatPlayer", @@ -7993,6 +9930,7 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Longshot", tagString = "Attack", reqStr = 0, reqDex = 100, @@ -8000,22 +9938,41 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemDazingSupport"] = { - name = "Discombobulate", + ["Metadata/Items/Gems/SkillGemFarCombatSupportTwo"] = { + name = "Longshot II", + gameId = "Metadata/Items/Gems/SupportGemLongshotTwo", + variantId = "FarCombatSupportTwo", + grantedEffectId = "SupportFarCombatPlayerTwo", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Longshot", + tagString = "Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDazeSupport"] = { + name = "Daze", gameId = "Metadata/Items/Gems/SupportGemDiscombobulate", - variantId = "DazingSupport", - grantedEffectId = "SupportDazingPlayer", + variantId = "DazeSupport", + grantedEffectId = "SupportDazePlayer", tags = { support = true, attack = true, physical = true, }, gemType = "Support", + gemFamily = "Discombobulate", tagString = "Attack, Physical", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDazedBreakSupport"] = { @@ -8028,11 +9985,12 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Break Posture", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDazingCrySupport"] = { @@ -8045,11 +10003,12 @@ return { warcry = true, }, gemType = "Support", + gemFamily = "Dazing Cry", tagString = "Warcry", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCursedGroundSupport"] = { @@ -8059,25 +10018,70 @@ return { grantedEffectId = "SupportCursedGroundPlayer", tags = { support = true, + curse = true, }, gemType = "Support", - tagString = "", + gemFamily = "Cursed Ground", + tagString = "Curse", reqStr = 0, reqDex = 0, reqInt = 100, Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemWeaponElementalDamageSupport"] = { - name = "Primal Armament", + ["Metadata/Items/Gems/SkillGemDoedresUndoingSupport"] = { + name = "Doedre's Undoing", + gameId = "Metadata/Items/Gem/SupportGemDoedresUndoing", + variantId = "DoedresUndoingSupport", + grantedEffectId = "SupportDoedresUndoingPlayer", + additionalGrantedEffectId1 = "TriggeredCurseZoneHazardExplosionPlayer", + tags = { + support = true, + grants_active_skill = true, + lineage = true, + area = true, + chaos = true, + curse = true, + hazard = true, + }, + gemType = "Support", + gemFamily = "Cursed Ground", + tagString = "Lineage, AoE, Chaos, Curse, Hazard", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemElementalArmamentSupport"] = { + name = "Elemental Armament I", gameId = "Metadata/Items/Gems/SupportGemPrimalArmament", - variantId = "WeaponElementalDamageSupport", - grantedEffectId = "SupportWeaponElementalDamagePlayer", + variantId = "ElementalArmamentSupport", + grantedEffectId = "SupportElementalArmamentPlayer", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Elemental Armament", + tagString = "Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemElementalArmamentSupportTwo"] = { + name = "Elemental Armament II", + gameId = "Metadata/Items/Gems/SupportGemPrimalArmamentTwo", + variantId = "ElementalArmamentSupportTwo", + grantedEffectId = "SupportElementalArmamentPlayerTwo", tags = { support = true, attack = true, }, gemType = "Support", + gemFamily = "Elemental Armament", tagString = "Attack", reqStr = 100, reqDex = 0, @@ -8085,25 +10089,61 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemCooldownReductionSupport"] = { - name = "Ingenuity", + ["Metadata/Items/Gems/SkillGemElementalArmamentSupportThree"] = { + name = "Elemental Armament III", + gameId = "Metadata/Items/Gems/SupportGemPrimalArmamentThree", + variantId = "ElementalArmamentSupportThree", + grantedEffectId = "SupportElementalArmamentPlayerThree", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Elemental Armament", + tagString = "Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCooldownRecoverySupport"] = { + name = "Cooldown Recovery I", gameId = "Metadata/Items/Gems/SupportGemIngenuity", - variantId = "CooldownReductionSupport", - grantedEffectId = "SupportCooldownReductionPlayer", + variantId = "CooldownRecoverySupport", + grantedEffectId = "SupportCooldownRecoveryPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Cooldown Recovery", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemAscendancyElementalExpression"] = { - name = "Elemental Expression", - baseTypeName = "Elemental Expression", + ["Metadata/Items/Gems/SkillGemCooldownRecoverySupportTwo"] = { + name = "Cooldown Recovery II", + gameId = "Metadata/Items/Gems/SupportGemIngenuityTwo", + variantId = "CooldownRecoverySupportTwo", + grantedEffectId = "SupportCooldownRecoveryPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Cooldown Recovery", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAscendancyElementalExpression"] = { + name = "Elemental Expression", + baseTypeName = "Elemental Expression", gameId = "Metadata/Items/Gem/SkillGemAscendancyElementalExpression", variantId = "AscendancyElementalExpression", grantedEffectId = "ElementalExpressionTriggeredPlayer", @@ -8139,13 +10179,13 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, projectile = true, cold = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, Projectile, Cold", + gemType = "Attack", + tagString = "Projectile, Cold, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -8170,9 +10210,10 @@ return { area = true, aura = true, duration = true, + conditional = true, }, gemType = "Banner", - tagString = "Buff, Persistent, AoE, Aura, Duration", + tagString = "Buff, Persistent, AoE, Aura, Duration, Conditional", reqStr = 50, reqDex = 50, reqInt = 0, @@ -8196,9 +10237,10 @@ return { area = true, aura = true, duration = true, + conditional = true, }, gemType = "Banner", - tagString = "Buff, Persistent, AoE, Aura, Duration", + tagString = "Buff, Persistent, AoE, Aura, Duration, Conditional", reqStr = 50, reqDex = 50, reqInt = 0, @@ -8222,9 +10264,10 @@ return { area = true, aura = true, duration = true, + conditional = true, }, gemType = "Banner", - tagString = "Buff, Persistent, AoE, Aura, Duration", + tagString = "Buff, Persistent, AoE, Aura, Duration, Conditional", reqStr = 50, reqDex = 50, reqInt = 0, @@ -8239,20 +10282,17 @@ return { grantedEffectId = "FreezingMarkPlayer", additionalGrantedEffectId1 = "TriggeredFreezingMarkNovaPlayer", tags = { + mark = true, dexterity = true, intelligence = true, grants_active_skill = true, - barrageable = true, - spell = true, attack = true, area = true, - mark = true, cold = true, duration = true, - nova = true, }, - gemType = "Barrageable", - tagString = "Spell, Attack, AoE, Mark, Cold, Duration, Nova", + gemType = "Mark", + tagString = "Attack, AoE, Cold, Duration", reqStr = 0, reqDex = 50, reqInt = 50, @@ -8267,19 +10307,16 @@ return { grantedEffectId = "VoltaicMarkPlayer", additionalGrantedEffectId1 = "TriggeredVoltaicMarkNovaPlayer", tags = { + mark = true, dexterity = true, grants_active_skill = true, - barrageable = true, - spell = true, attack = true, area = true, - mark = true, lightning = true, duration = true, - nova = true, }, - gemType = "Barrageable", - tagString = "Spell, Attack, AoE, Mark, Lightning, Duration, Nova", + gemType = "Mark", + tagString = "Attack, AoE, Lightning, Duration", reqStr = 0, reqDex = 100, reqInt = 0, @@ -8306,7 +10343,7 @@ return { }, gemType = "Attack", tagString = "AoE, Melee, Strike, Chaos, Meta", - weaponRequirements = "Quarterstaff, Unarmed", + weaponRequirements = "Quarterstaff", reqStr = 0, reqDex = 50, reqInt = 50, @@ -8321,6 +10358,7 @@ return { grantedEffectId = "TimeOfNeedPlayer", tags = { strength = true, + intelligence = true, grants_active_skill = true, buff = true, persistent = true, @@ -8328,9 +10366,9 @@ return { }, gemType = "Buff", tagString = "Persistent, Duration", - reqStr = 100, + reqStr = 75, reqDex = 0, - reqInt = 0, + reqInt = 25, Tier = 8, naturalMaxLevel = 20, }, @@ -8351,10 +10389,11 @@ return { lightning = true, cold = true, fire = true, + invocation = true, meta = true, }, gemType = "Buff", - tagString = "Persistent, Trigger, Lightning, Cold, Fire, Meta", + tagString = "Persistent, Trigger, Lightning, Cold, Fire, Invocation, Meta", reqStr = 0, reqDex = 50, reqInt = 50, @@ -8438,6 +10477,7 @@ return { totem = true, }, gemType = "Support", + gemFamily = "Font", tagString = "Totem", reqStr = 100, reqDex = 0, @@ -8455,6 +10495,7 @@ return { totem = true, }, gemType = "Support", + gemFamily = "Font", tagString = "Totem", reqStr = 0, reqDex = 0, @@ -8472,6 +10513,7 @@ return { totem = true, }, gemType = "Support", + gemFamily = "Font", tagString = "Totem", reqStr = 100, reqDex = 0, @@ -8480,7 +10522,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemAftershockChanceSupport"] = { - name = "Aftershock", + name = "Aftershock I", gameId = "Metadata/Items/Gems/SupportGemAftershock", variantId = "AftershockChanceSupport", grantedEffectId = "SupportAftershockChancePlayer", @@ -8491,6 +10533,7 @@ return { slam = true, }, gemType = "Support", + gemFamily = "Aftershock", tagString = "Attack, Melee, Slam", reqStr = 100, reqDex = 0, @@ -8498,13 +10541,53 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemAftershockChanceSupportTwo"] = { + name = "Aftershock II", + gameId = "Metadata/Items/Gems/SupportGemAftershockTwo", + variantId = "AftershockChanceSupportTwo", + grantedEffectId = "SupportAftershockChancePlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + slam = true, + }, + gemType = "Support", + gemFamily = "Aftershock", + tagString = "Attack, Melee, Slam", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAftershockChanceSupportThree"] = { + name = "Aftershock III", + gameId = "Metadata/Items/Gems/SupportGemAftershockThree", + variantId = "AftershockChanceSupportThree", + grantedEffectId = "SupportAftershockChancePlayerThree", + tags = { + support = true, + attack = true, + melee = true, + slam = true, + }, + gemType = "Support", + gemFamily = "Aftershock", + tagString = "Attack, Melee, Slam", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemClusterGrenade"] = { name = "Cluster Grenade", baseTypeName = "Cluster Grenade", gameId = "Metadata/Items/Gem/SkillGemClusterGrenade", variantId = "ClusterGrenade", grantedEffectId = "ClusterGrenadePlayer", - additionalGrantedEffectId1 = "ClusterGrenadeMiniPlayer", + additionalStatSet1 = "ClusterGrenadeMiniPlayer", tags = { strength = true, dexterity = true, @@ -8534,15 +10617,15 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, physical = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Physical, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Physical, Duration, Barrageable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -8550,12 +10633,12 @@ return { Tier = 11, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemChargeInfusion"] = { - name = "Charge Infusion", + ["Metadata/Items/Gems/SkillGemChargeRegulation"] = { + name = "Charge Regulation", baseTypeName = "Charge Infusion", gameId = "Metadata/Items/Gem/SkillGemChargeInfusion", - variantId = "ChargeInfusion", - grantedEffectId = "ChargeInfusionPlayer", + variantId = "ChargeRegulation", + grantedEffectId = "ChargeRegulationPlayer", tags = { dexterity = true, intelligence = true, @@ -8582,11 +10665,12 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Holy Descent", tagString = "AoE, Duration", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBurningRunesSupport"] = { @@ -8604,11 +10688,12 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Burning Inscription", tagString = "AoE, Trigger, Fire", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemShardScavenger"] = { @@ -8639,21 +10724,82 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemDoubleBarrelSupport"] = { - name = "Double Barrel", + name = "Double Barrel I", gameId = "Metadata/Items/Gem/SupportGemDoubleBarrel", variantId = "DoubleBarrelSupport", grantedEffectId = "SupportDoubleBarrelPlayer", tags = { support = true, + ammunition = true, + projectile = true, }, gemType = "Support", - tagString = "", + gemFamily = "Double Barrel", + tagString = "Ammunition, Projectile", reqStr = 100, reqDex = 0, reqInt = 0, Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemDoubleBarrelSupportTwo"] = { + name = "Double Barrel II", + gameId = "Metadata/Items/Gem/SupportGemDoubleBarrelTwo", + variantId = "DoubleBarrelSupportTwo", + grantedEffectId = "SupportDoubleBarrelPlayerTwo", + tags = { + support = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Double Barrel", + tagString = "Ammunition, Projectile", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDoubleBarrelSupportThree"] = { + name = "Double Barrel III", + gameId = "Metadata/Items/Gem/SupportGemDoubleBarrelThree", + variantId = "DoubleBarrelSupportThree", + grantedEffectId = "SupportDoubleBarrelPlayerThree", + tags = { + support = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Double Barrel", + tagString = "Ammunition, Projectile", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCombatReloadSupport"] = { + name = "Ratha's Assault", + gameId = "Metadata/Items/Gem/SupportGemCombatReload", + variantId = "CombatReloadSupport", + grantedEffectId = "SupportCombatReloadPlayer", + tags = { + support = true, + lineage = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Double Barrel", + tagString = "Lineage, Ammunition, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemAutoReloadSupport"] = { name = "Auto Reload", gameId = "Metadata/Items/Gem/SupportGemAutoReload", @@ -8661,29 +10807,93 @@ return { grantedEffectId = "SupportAutoReloadPlayer", tags = { support = true, + ammunition = true, + projectile = true, }, gemType = "Support", - tagString = "", + gemFamily = "Auto Reload", + tagString = "Ammunition, Projectile", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemAmmoConservationSupport"] = { - name = "Ammo Conservation", + name = "Ammo Conservation I", gameId = "Metadata/Items/Gem/SupportGemAmmoConservation", variantId = "AmmoConservationSupport", grantedEffectId = "SupportAmmoConservationPlayer", tags = { support = true, + ammunition = true, + projectile = true, }, gemType = "Support", - tagString = "", + gemFamily = "Ammo Conservation", + tagString = "Ammunition, Projectile", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAmmoConservationSupportTwo"] = { + name = "Ammo Conservation II", + gameId = "Metadata/Items/Gem/SupportGemAmmoConservationTwo", + variantId = "AmmoConservationSupportTwo", + grantedEffectId = "SupportAmmoConservationPlayerTwo", + tags = { + support = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Ammo Conservation", + tagString = "Ammunition, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAmmoConservationSupportThree"] = { + name = "Ammo Conservation III", + gameId = "Metadata/Items/Gem/SupportGemAmmoConservationThree", + variantId = "AmmoConservationSupportThree", + grantedEffectId = "SupportAmmoConservationPlayerThree", + tags = { + support = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Ammo Conservation", + tagString = "Ammunition, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAmmoConservationSupportFour"] = { + name = "Arjun's Medal", + gameId = "Metadata/Items/Gem/SupportGemAmmoConservationFour", + variantId = "AmmoConservationSupportFour", + grantedEffectId = "SupportAmmoConservationPlayerFour", + tags = { + support = true, + lineage = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Ammo Conservation", + tagString = "Lineage, Ammunition, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemNimbleReloadSupport"] = { @@ -8693,17 +10903,20 @@ return { grantedEffectId = "SupportNimbleReloadPlayer", tags = { support = true, + ammunition = true, + projectile = true, }, gemType = "Support", - tagString = "", + gemFamily = "Nimble Reload", + tagString = "Ammunition, Projectile", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemFreshClipSupport"] = { - name = "Fresh Clip", + name = "Fresh Clip I", gameId = "Metadata/Items/Gem/SupportGemFreshClip", variantId = "FreshClipSupport", grantedEffectId = "SupportFreshClipPlayer", @@ -8711,6 +10924,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Fresh Clip", tagString = "", reqStr = 100, reqDex = 0, @@ -8718,6 +10932,59 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemFreshClipSupportTwo"] = { + name = "Fresh Clip II", + gameId = "Metadata/Items/Gem/SupportGemFreshClipTwo", + variantId = "FreshClipSupportTwo", + grantedEffectId = "SupportFreshClipPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Fresh Clip", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSacrificialLambSupport"] = { + name = "Sacrificial Lamb I", + gameId = "Metadata/Items/Gem/SupportGemSacrificialLamb", + variantId = "SacrificialLambSupport", + grantedEffectId = "SupportSacrificialLambPlayer", + tags = { + support = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Sacrificial Lamb", + tagString = "Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSacrificialLambSupportTwo"] = { + name = "Sacrificial Lamb II", + gameId = "Metadata/Items/Gem/SupportGemSacrificialLambTwo", + variantId = "SacrificialLambSupportTwo", + grantedEffectId = "SupportSacrificialLambPlayerTwo", + tags = { + support = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Sacrificial Lamb", + tagString = "Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 3, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemOverwhelmingPresence"] = { name = "Overwhelming Presence", baseTypeName = "Overwhelming Presence", @@ -8774,10 +11041,11 @@ return { buff = true, persistent = true, trigger = true, + invocation = true, meta = true, }, gemType = "Buff", - tagString = "Persistent, Trigger, Meta", + tagString = "Persistent, Trigger, Invocation, Meta", reqStr = 0, reqDex = 50, reqInt = 50, @@ -8863,10 +11131,9 @@ return { area = true, projectile = true, cold = true, - stages = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Cold, Staged", + tagString = "AoE, Projectile, Cold", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -8968,6 +11235,56 @@ return { Tier = 4, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemRavenousSwarm"] = { + name = "Ravenous Swarm", + baseTypeName = "Ravenous Swarm", + gameId = "Metadata/Items/Gem/SkillGemRavenousSwarm", + variantId = "RavenousSwarm", + grantedEffectId = "RavenousSwarmPlayer", + tags = { + buff = true, + intelligence = true, + grants_active_skill = true, + minion = true, + persistent = true, + physical = true, + chaos = true, + duration = true, + }, + gemType = "Buff", + tagString = "Minion, Persistent, Physical, Chaos, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMirageArcher"] = { + name = "Mirage Archer", + baseTypeName = "Mirage Archer", + gameId = "Metadata/Items/Gem/SkillGemMirageArcher", + variantId = "MirageArcher", + grantedEffectId = "MetaMirageArcherPlayer", + additionalGrantedEffectId1 = "SupportMirageArcherPlayer", + additionalGrantedEffectId2 = "MirageArcherSpawnPlayer", + tags = { + buff = true, + dexterity = true, + grants_active_skill = true, + persistent = true, + trigger = true, + duration = true, + meta = true, + }, + gemType = "Buff", + tagString = "Persistent, Trigger, Duration, Meta", + weaponRequirements = "Spear, Bow, Crossbow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 8, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemCombatFrenzy"] = { name = "Combat Frenzy", baseTypeName = "Combat Frenzy", @@ -9012,6 +11329,30 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemCastCurseOnBlock"] = { + name = "Curse on Block", + baseTypeName = "Curse on Block", + gameId = "Metadata/Items/Gems/SkillGemCastCurseOnBlock", + variantId = "CastCurseOnBlock", + grantedEffectId = "MetaCastCurseOnBlockPlayer", + additionalGrantedEffectId1 = "SupportMetaCastCurseOnBlockPlayer", + tags = { + buff = true, + dexterity = true, + intelligence = true, + grants_active_skill = true, + persistent = true, + trigger = true, + meta = true, + }, + gemType = "Buff", + tagString = "Persistent, Trigger, Meta", + reqStr = 0, + reqDex = 50, + reqInt = 50, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemGatheringStorm"] = { name = "Gathering Storm", baseTypeName = "Gathering Storm", @@ -9041,17 +11382,18 @@ return { Tier = 13, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemUpheavalSupport"] = { - name = "Upheaval", - gameId = "Metadata/Items/Gem/SupportGemUpheaval", - variantId = "UpheavalSupport", - grantedEffectId = "SupportUpheavalPlayer", + ["Metadata/Items/Gems/SkillGemBranchingFissuresSupport"] = { + name = "Branching Fissures I", + gameId = "Metadata/Items/Gem/SupportGemBranchingFissures", + variantId = "BranchingFissuresSupport", + grantedEffectId = "SupportBranchingFissuresPlayer", tags = { support = true, attack = true, melee = true, }, gemType = "Support", + gemFamily = "Fissures", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, @@ -9059,25 +11401,102 @@ return { Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemGroundEffectDurationSupport"] = { - name = "Despoiler", - gameId = "Metadata/Items/Gems/SupportGemDespoiler", - variantId = "GroundEffectDurationSupport", - grantedEffectId = "SupportGroundEffectDurationPlayer", + ["Metadata/Items/Gems/SkillGemBranchingFissuresSupportTwo"] = { + name = "Branching Fissures II", + gameId = "Metadata/Items/Gem/SupportGemBranchingFissuresTwo", + variantId = "BranchingFissuresSupportTwo", + grantedEffectId = "SupportBranchingFissuresPlayerTwo", tags = { support = true, - duration = true, + attack = true, + melee = true, }, gemType = "Support", - tagString = "Duration", + gemFamily = "Fissures", + tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUpheavalSupport"] = { + name = "Upheaval I", + gameId = "Metadata/Items/Gem/SupportGemUpheaval", + variantId = "UpheavalSupport", + grantedEffectId = "SupportUpheavalPlayer", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Fissures", + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUpheavalSupportTwo"] = { + name = "Upheaval II", + gameId = "Metadata/Items/Gem/SupportGemUpheavalTwo", + variantId = "UpheavalSupportTwo", + grantedEffectId = "SupportUpheavalPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Fissures", + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemKaomsMadnessSupport"] = { + name = "Kaom's Madness", + gameId = "Metadata/Items/Gem/SupportGemKaomsMadness", + variantId = "KaomsMadnessSupport", + grantedEffectId = "SupportKaomsMadnessPlayer", + tags = { + support = true, + lineage = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Fissures", + tagString = "Lineage, Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemLastingGroundSupport"] = { + name = "Lasting Ground", + gameId = "Metadata/Items/Gems/SupportGemDespoiler", + variantId = "LastingGroundSupport", + grantedEffectId = "SupportLastingGroundPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Lasting Ground", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemTerrainChainSupport"] = { - name = "Ricochet", + name = "Ricochet I", gameId = "Metadata/Items/Gem/SupportGemRicochet", variantId = "TerrainChainSupport", grantedEffectId = "SupportRicochetPlayer", @@ -9086,6 +11505,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Ricochet", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -9093,16 +11513,53 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemTotemPlacementSpeedSupport"] = { - name = "Ancestral Urgency", + ["Metadata/Items/Gems/SkillGemTerrainChainSupportTwo"] = { + name = "Ricochet II", + gameId = "Metadata/Items/Gem/SupportGemRicochetTwo", + variantId = "TerrainChainSupportTwo", + grantedEffectId = "SupportRicochetPlayerTwo", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Ricochet", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTerrainChainSupportThree"] = { + name = "Ricochet III", + gameId = "Metadata/Items/Gem/SupportGemRicochetThree", + variantId = "TerrainChainSupportThree", + grantedEffectId = "SupportRicochetPlayerThree", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Ricochet", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUrgentTotemsSupport"] = { + name = "Urgent Totems I", gameId = "Metadata/Items/Gem/SupportGemAncestralUrgency", - variantId = "TotemPlacementSpeedSupport", - grantedEffectId = "SupportAncestralUrgencyPlayer", + variantId = "UrgentTotemsSupport", + grantedEffectId = "SupportUrgentTotemsPlayer", tags = { support = true, totem = true, }, gemType = "Support", + gemFamily = "Urgent Totems", tagString = "Totem", reqStr = 100, reqDex = 0, @@ -9110,21 +11567,74 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemUrgentTotemsSupportTwo"] = { + name = "Urgent Totems II", + gameId = "Metadata/Items/Gem/SupportGemAncestralUrgencyTwo", + variantId = "UrgentTotemsSupportTwo", + grantedEffectId = "SupportUrgentTotemsPlayerTwo", + tags = { + support = true, + totem = true, + }, + gemType = "Support", + gemFamily = "Urgent Totems", + tagString = "Totem", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUrgentTotemsSupportThree"] = { + name = "Urgent Totems III", + gameId = "Metadata/Items/Gem/SupportGemAncestralUrgencyThree", + variantId = "UrgentTotemsSupportThree", + grantedEffectId = "SupportUrgentTotemsPlayerThree", + tags = { + support = true, + totem = true, + }, + gemType = "Support", + gemFamily = "Urgent Totems", + tagString = "Totem", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemLongFuseSupport"] = { - name = "Long Fuse", + name = "Long Fuse I", gameId = "Metadata/Items/Gem/SupportGemLongFuse", variantId = "LongFuseSupport", grantedEffectId = "SupportLongFusePlayer", tags = { support = true, - grenade = true, }, gemType = "Support", - tagString = "Grenade", + gemFamily = "Long Fuse", + tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemLongFuseSupportTwo"] = { + name = "Long Fuse II", + gameId = "Metadata/Items/Gem/SupportGemLongFuseTwo", + variantId = "LongFuseSupportTwo", + grantedEffectId = "SupportLongFusePlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Long Fuse", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPayloadSupport"] = { @@ -9137,23 +11647,25 @@ return { grenade = true, }, gemType = "Support", + gemFamily = "Payload", tagString = "Grenade", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemStripAwaySupport"] = { - name = "Strip Away", + ["Metadata/Items/Gems/SkillGemPotentExposureSupport"] = { + name = "Potent Exposure", gameId = "Metadata/Items/Gem/SupportGemStripAway", - variantId = "StripAwaySupport", - grantedEffectId = "SupportStripAwayPlayer", + variantId = "PotentExposureSupport", + grantedEffectId = "SupportPotentExposurePlayer", tags = { support = true, spell = true, }, gemType = "Support", + gemFamily = "Potent Exposure", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -9161,21 +11673,40 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemIronwoodSupport"] = { - name = "Ironwood", + ["Metadata/Items/Gems/SkillGemReinforcedTotemsSupport"] = { + name = "Reinforced Totems I", gameId = "Metadata/Items/Gem/SupportGemIronwood", - variantId = "IronwoodSupport", - grantedEffectId = "SupportIronwoodPlayer", + variantId = "ReinforcedTotemsSupport", + grantedEffectId = "SupportReinforcedTotemsPlayer", tags = { support = true, totem = true, }, gemType = "Support", + gemFamily = "Reinforced Totems", tagString = "Totem", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemReinforcedTotemsSupportTwo"] = { + name = "Reinforced Totems II", + gameId = "Metadata/Items/Gem/SupportGemIronwoodTwo", + variantId = "ReinforcedTotemsSupportTwo", + grantedEffectId = "SupportReinforcedTotemsPlayerTwo", + tags = { + support = true, + totem = true, + }, + gemType = "Support", + gemFamily = "Reinforced Totems", + tagString = "Totem", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemConsideredCastingSupport"] = { @@ -9188,6 +11719,7 @@ return { spell = true, }, gemType = "Support", + gemFamily = "Considered Casting", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -9196,7 +11728,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemWildshardsSupport"] = { - name = "Wildshards", + name = "Wildshards I", gameId = "Metadata/Items/Gem/SupportGemWildshards", variantId = "WildshardsSupport", grantedEffectId = "SupportWildshardsPlayer", @@ -9206,6 +11738,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Additional Projectiles", tagString = "Spell, Projectile", reqStr = 0, reqDex = 0, @@ -9213,6 +11746,45 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemWildshardsSupportTwo"] = { + name = "Wildshards II", + gameId = "Metadata/Items/Gem/SupportGemWildshardsTwo", + variantId = "WildshardsSupportTwo", + grantedEffectId = "SupportWildshardsPlayerTwo", + tags = { + support = true, + spell = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Additional Projectiles", + tagString = "Spell, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemWildshardsSupportThree"] = { + name = "Sione's Temper", + gameId = "Metadata/Items/Gem/SupportGemWildshardsThree", + variantId = "WildshardsSupportThree", + grantedEffectId = "SupportWildshardsPlayerThree", + tags = { + support = true, + lineage = true, + spell = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Additional Projectiles", + tagString = "Lineage, Spell, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemIcicleSupport"] = { name = "Icicle", gameId = "Metadata/Items/Gem/SupportGemIcicle", @@ -9222,6 +11794,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Icicle", tagString = "", reqStr = 0, reqDex = 0, @@ -9238,6 +11811,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Glacier", tagString = "", reqStr = 0, reqDex = 0, @@ -9255,11 +11829,12 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Heft", tagString = "Physical", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemTempestuousTempoSupport"] = { @@ -9271,6 +11846,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Rising Tempest", tagString = "", reqStr = 0, reqDex = 0, @@ -9288,6 +11864,7 @@ return { spell = true, }, gemType = "Support", + gemFamily = "Extraction", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -9304,6 +11881,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Astral Projection", tagString = "", reqStr = 0, reqDex = 0, @@ -9323,11 +11901,12 @@ return { strike = true, }, gemType = "Support", + gemFamily = "Practiced Combo", tagString = "Attack, Melee, Strike", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLeverageSupport"] = { @@ -9339,15 +11918,16 @@ return { support = true, }, gemType = "Support", + gemFamily = "Leverage", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCulminationSupport"] = { - name = "Culmination", + name = "Culmination I", gameId = "Metadata/Items/Gem/SupportGemCulmination", variantId = "CulminationSupport", grantedEffectId = "SupportCulminationPlayer", @@ -9358,6 +11938,7 @@ return { conditional = true, }, gemType = "Support", + gemFamily = "Culmination", tagString = "Attack, Melee, Conditional", reqStr = 0, reqDex = 100, @@ -9365,6 +11946,26 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemCulminationSupportTwo"] = { + name = "Culmination II", + gameId = "Metadata/Items/Gem/SupportGemCulminationTwo", + variantId = "CulminationSupportTwo", + grantedEffectId = "SupportCulminationPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + conditional = true, + }, + gemType = "Support", + gemFamily = "Culmination", + tagString = "Attack, Melee, Conditional", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemPotentialSupport"] = { name = "Potential", gameId = "Metadata/Items/Gem/SupportGemPotential", @@ -9374,11 +11975,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Potential", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemExpanseSupport"] = { @@ -9391,6 +11993,7 @@ return { area = true, }, gemType = "Support", + gemFamily = "Grants Cooldown", tagString = "AoE", reqStr = 0, reqDex = 0, @@ -9407,6 +12010,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Grants Cooldown", tagString = "", reqStr = 0, reqDex = 0, @@ -9423,6 +12027,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Grants Cooldown", tagString = "", reqStr = 0, reqDex = 0, @@ -9440,6 +12045,7 @@ return { trigger = true, }, gemType = "Support", + gemFamily = "Energy Retention", tagString = "Trigger", reqStr = 0, reqDex = 0, @@ -9456,22 +12062,24 @@ return { support = true, }, gemType = "Support", + gemFamily = "Ferocity", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemAblationSupport"] = { - name = "Ablation", + ["Metadata/Items/Gems/SkillGemSacrificialOfferingSupport"] = { + name = "Sacrificial Offering", gameId = "Metadata/Items/Gem/SupportGemAblation", - variantId = "AblationSupport", - grantedEffectId = "SupportAblationPlayer", + variantId = "SacrificialOfferingSupport", + grantedEffectId = "SupportSacrificalOfferingPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Sacrificial Offering", tagString = "", reqStr = 0, reqDex = 0, @@ -9488,22 +12096,24 @@ return { support = true, }, gemType = "Support", + gemFamily = "Danse Macabre", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemCapacitorSupport"] = { - name = "Capacitor", + ["Metadata/Items/Gems/SkillGemEnergyCapacitorSupport"] = { + name = "Energy Capacitor", gameId = "Metadata/Items/Gem/SupportGemCapacitor", - variantId = "CapacitorSupport", - grantedEffectId = "SupportCapacitorPlayer", + variantId = "EnergyCapacitorSupport", + grantedEffectId = "SupportEnergyCapacitorPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Energy Capacitor", tagString = "", reqStr = 0, reqDex = 0, @@ -9511,15 +12121,16 @@ return { Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemImpetusSupport"] = { - name = "Impetus", + ["Metadata/Items/Gems/SkillGemBoundlessEnergySupport"] = { + name = "Boundless Energy I", gameId = "Metadata/Items/Gem/SupportGemImpetus", - variantId = "ImpetusSupport", - grantedEffectId = "SupportImpetusPlayer", + variantId = "BoundlessEnergySupport", + grantedEffectId = "SupportBoundlessEnergyPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Boundless Energy", tagString = "", reqStr = 0, reqDex = 0, @@ -9527,16 +12138,34 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemDissipateSupport"] = { - name = "Dissipate", + ["Metadata/Items/Gems/SkillGemBoundlessEnergySupportTwo"] = { + name = "Boundless Energy II", + gameId = "Metadata/Items/Gem/SupportGemImpetusTwo", + variantId = "BoundlessEnergySupportTwo", + grantedEffectId = "SupportBoundlessEnergyPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Boundless Energy", + tagString = "", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFleetingRemnantsSupport"] = { + name = "Harmonic Remnants I", gameId = "Metadata/Items/Gem/SupportGemDissipate", - variantId = "DissipateSupport", - grantedEffectId = "SupportDissipatePlayer", + variantId = "FleetingRemnantsSupport", + grantedEffectId = "SupportFleetingRemnantsPlayer", tags = { support = true, remnant = true, }, gemType = "Support", + gemFamily = "Harmonic Remnants", tagString = "Remnant", reqStr = 0, reqDex = 0, @@ -9544,6 +12173,24 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemFleetingRemnantsSupportTwo"] = { + name = "Harmonic Remnants II", + gameId = "Metadata/Items/Gem/SupportGemDissipateTwo", + variantId = "FleetingRemnantsSupportTwo", + grantedEffectId = "SupportFleetingRemnantsPlayerTwo", + tags = { + support = true, + remnant = true, + }, + gemType = "Support", + gemFamily = "Harmonic Remnants", + tagString = "Remnant", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 3, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemFlukeSupport"] = { name = "Fluke", gameId = "Metadata/Items/Gem/SupportGemFluke", @@ -9554,6 +12201,7 @@ return { trigger = true, }, gemType = "Support", + gemFamily = "Fluke", tagString = "Trigger", reqStr = 0, reqDex = 0, @@ -9561,8 +12209,27 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemFlukeSupportTwo"] = { + name = "Ixchel's Torment", + gameId = "Metadata/Items/Gem/SupportGemFlukeTwo", + variantId = "FlukeSupportTwo", + grantedEffectId = "SupportFlukePlayerTwo", + tags = { + support = true, + lineage = true, + trigger = true, + }, + gemType = "Support", + gemFamily = "Fluke", + tagString = "Lineage, Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemZenithSupport"] = { - name = "Zenith", + name = "Zenith I", gameId = "Metadata/Items/Gem/SupportGemZenith", variantId = "ZenithSupport", grantedEffectId = "SupportZenithPlayer", @@ -9571,6 +12238,7 @@ return { spell = true, }, gemType = "Support", + gemFamily = "Zenith", tagString = "Spell", reqStr = 0, reqDex = 0, @@ -9578,8 +12246,26 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemZenithSupportTwo"] = { + name = "Zenith II", + gameId = "Metadata/Items/Gem/SupportGemZenithTwo", + variantId = "ZenithSupportTwo", + grantedEffectId = "SupportZenithPlayerTwo", + tags = { + support = true, + spell = true, + }, + gemType = "Support", + gemFamily = "Zenith", + tagString = "Spell", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 3, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemBiddingSupport"] = { - name = "Bidding", + name = "Bidding I", gameId = "Metadata/Items/Gem/SupportGemBidding", variantId = "BiddingSupport", grantedEffectId = "SupportBiddingPlayer", @@ -9589,6 +12275,7 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Bidding", tagString = "Command, Minion", reqStr = 0, reqDex = 0, @@ -9596,59 +12283,136 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemCommandmentSupport"] = { - name = "Commandment", - gameId = "Metadata/Items/Gem/SupportGemCommandment", - variantId = "CommandmentSupport", - grantedEffectId = "SupportCommandment", + ["Metadata/Items/Gems/SkillGemBiddingSupportTwo"] = { + name = "Bidding II", + gameId = "Metadata/Items/Gem/SupportGemBiddingTwo", + variantId = "BiddingSupportTwo", + grantedEffectId = "SupportBiddingPlayerTwo", tags = { support = true, command = true, minion = true, }, gemType = "Support", + gemFamily = "Bidding", tagString = "Command, Minion", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 4, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemFlowSupport"] = { - name = "Flow", - gameId = "Metadata/Items/Gem/SupportGemFlow", - variantId = "FlowSupport", - grantedEffectId = "SupportFlowPlayer", + ["Metadata/Items/Gems/SkillGemBiddingSupportThree"] = { + name = "Bidding III", + gameId = "Metadata/Items/Gem/SupportGemBiddingThree", + variantId = "BiddingSupportThree", + grantedEffectId = "SupportBiddingPlayerThree", tags = { support = true, + command = true, + minion = true, }, gemType = "Support", - tagString = "", + gemFamily = "Bidding", + tagString = "Command, Minion", reqStr = 0, - reqDex = 100, - reqInt = 0, - Tier = 2, - naturalMaxLevel = 1, - }, - ["Metadata/Items/Gems/SkillGemAdhereSupport"] = { - name = "Adhere", + reqDex = 0, + reqInt = 100, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCommandmentSupport"] = { + name = "Commandment", + gameId = "Metadata/Items/Gem/SupportGemCommandment", + variantId = "CommandmentSupport", + grantedEffectId = "SupportCommandment", + tags = { + support = true, + command = true, + minion = true, + }, + gemType = "Support", + gemFamily = "Commandment", + tagString = "Command, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFlowSupport"] = { + name = "Flow", + gameId = "Metadata/Items/Gem/SupportGemFlow", + variantId = "FlowSupport", + grantedEffectId = "SupportFlowPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Flow", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAdhesiveGrenadesSupport"] = { + name = "Adhesive Grenades I", gameId = "Metadata/Items/Gem/SupportGemAdhere", - variantId = "AdhereSupport", - grantedEffectId = "SupportAdherePlayer", + variantId = "AdhesiveGrenadesSupport", + grantedEffectId = "SupportAdhesiveGrenadesPlayer", tags = { support = true, grenade = true, }, gemType = "Support", + gemFamily = "Adhesive Grenades", tagString = "Grenade", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAdhesiveGrenadesSupportTwo"] = { + name = "Adhesive Grenades II", + gameId = "Metadata/Items/Gem/SupportGemAdhereTwo", + variantId = "AdhesiveGrenadesSupportTwo", + grantedEffectId = "SupportAdhesiveGrenadesPlayerTwo", + tags = { + support = true, + grenade = true, + }, + gemType = "Support", + gemFamily = "Adhesive Grenades", + tagString = "Grenade", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAdhesiveGrenadesSupportThree"] = { + name = "Adhesive Grenades III", + gameId = "Metadata/Items/Gem/SupportGemAdhereThree", + variantId = "AdhesiveGrenadesSupportThree", + grantedEffectId = "SupportAdhesiveGrenadesPlayerThree", + tags = { + support = true, + grenade = true, + }, + gemType = "Support", + gemFamily = "Adhesive Grenades", + tagString = "Grenade", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRetaliateSupport"] = { - name = "Retaliate", + name = "Retaliate I", gameId = "Metadata/Items/Gem/SupportGemRetaliate", variantId = "RetaliateSupport", grantedEffectId = "SupportRetaliatePlayer", @@ -9658,11 +12422,31 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Retaliate", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRetaliateSupportTwo"] = { + name = "Retaliate II", + gameId = "Metadata/Items/Gem/SupportGemRetaliateTwo", + variantId = "RetaliateSupportTwo", + grantedEffectId = "SupportRetaliatePlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Retaliate", + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemTremorsSupport"] = { @@ -9677,11 +12461,12 @@ return { slam = true, }, gemType = "Support", + gemFamily = "Tremors", tagString = "Attack, Melee, Slam", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSalvoSupport"] = { @@ -9695,6 +12480,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Additional Projectiles", tagString = "Attack, Projectile", reqStr = 0, reqDex = 100, @@ -9712,6 +12498,7 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Cadence", tagString = "Attack", reqStr = 0, reqDex = 100, @@ -9732,6 +12519,7 @@ return { chaining = true, }, gemType = "Support", + gemFamily = "Volt", tagString = "Attack, Projectile, Lightning, Chaining", reqStr = 0, reqDex = 100, @@ -9754,6 +12542,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Bone Shrapnel", tagString = "AoE, Trigger, Physical", reqStr = 0, reqDex = 0, @@ -9762,7 +12551,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemAlignmentSupport"] = { - name = "Alignment", + name = "Alignment I", gameId = "Metadata/Items/Gem/SupportGemAlignment", variantId = "AlignmentSupport", grantedEffectId = "SupportAlignmentPlayer", @@ -9772,6 +12561,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Alignment", tagString = "Attack, Projectile", reqStr = 0, reqDex = 100, @@ -9779,6 +12569,44 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemAlignmentSupportTwo"] = { + name = "Alignment II", + gameId = "Metadata/Items/Gem/SupportGemAlignmentTwo", + variantId = "AlignmentSupportTwo", + grantedEffectId = "SupportAlignmentPlayerTwo", + tags = { + support = true, + attack = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Alignment", + tagString = "Attack, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAlignmentSupportThree"] = { + name = "Alignment III", + gameId = "Metadata/Items/Gem/SupportGemAlignmentThree", + variantId = "AlignmentSupportThree", + grantedEffectId = "SupportAlignmentPlayerThree", + tags = { + support = true, + attack = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Alignment, Additional Projectiles", + tagString = "Attack, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemDerangeSupport"] = { name = "Derange", gameId = "Metadata/Items/Gem/SupportGemDerange", @@ -9788,15 +12616,16 @@ return { support = true, }, gemType = "Support", + gemFamily = "Derange", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemChargedShotsSupport"] = { - name = "Charged Shots", + name = "Charged Shots I", gameId = "Metadata/Items/Gem/SupportGemChargedShots", variantId = "ChargedShotsSupport", grantedEffectId = "SupportChargedShotsPlayer", @@ -9806,6 +12635,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Charged Shots", tagString = "Attack, Projectile", reqStr = 0, reqDex = 100, @@ -9813,8 +12643,27 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemChargedShotsSupportTwo"] = { + name = "Charged Shots II", + gameId = "Metadata/Items/Gem/SupportGemChargedShotsTwo", + variantId = "ChargedShotsSupportTwo", + grantedEffectId = "SupportChargedShotsPlayerTwo", + tags = { + support = true, + attack = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Charged Shots", + tagString = "Attack, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemProfanitySupport"] = { - name = "Profanity", + name = "Profanity I", gameId = "Metadata/Items/Gem/SupportGemProfanity", variantId = "ProfanitySupport", grantedEffectId = "SupportProfanityPlayer", @@ -9823,6 +12672,7 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Profanity", tagString = "Chaos", reqStr = 0, reqDex = 0, @@ -9830,8 +12680,26 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemProfanitySupportTwo"] = { + name = "Profanity II", + gameId = "Metadata/Items/Gem/SupportGemProfanityTwo", + variantId = "ProfanitySupportTwo", + grantedEffectId = "SupportProfanityPlayerTwo", + tags = { + support = true, + chaos = true, + }, + gemType = "Support", + gemFamily = "Profanity", + tagString = "Chaos", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemBurgeonSupport"] = { - name = "Burgeon", + name = "Burgeon I", gameId = "Metadata/Items/Gem/SupportGemBurgeon", variantId = "BurgeonSupport", grantedEffectId = "SupportBurgeonPlayer", @@ -9840,6 +12708,7 @@ return { channelling = true, }, gemType = "Support", + gemFamily = "Burgeon", tagString = "Channelling", reqStr = 0, reqDex = 0, @@ -9847,8 +12716,26 @@ return { Tier = 1, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemBurgeonSupportTwo"] = { + name = "Burgeon II", + gameId = "Metadata/Items/Gem/SupportGemBurgeonTwo", + variantId = "BurgeonSupportTwo", + grantedEffectId = "SupportBurgeonPlayerTwo", + tags = { + support = true, + channelling = true, + }, + gemType = "Support", + gemFamily = "Burgeon", + tagString = "Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemSteadfastSupport"] = { - name = "Steadfast", + name = "Steadfast I", gameId = "Metadata/Items/Gem/SupportGemSteadfast", variantId = "SteadfastSupport", grantedEffectId = "SupportSteadfastPlayer", @@ -9857,11 +12744,30 @@ return { channelling = true, }, gemType = "Support", + gemFamily = "Steadfast", tagString = "Channelling", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSteadfastSupportTwo"] = { + name = "Steadfast II", + gameId = "Metadata/Items/Gem/SupportGemSteadfastTwo", + variantId = "SteadfastSupportTwo", + grantedEffectId = "SupportSteadfastPlayerTwo", + tags = { + support = true, + channelling = true, + }, + gemType = "Support", + gemFamily = "Steadfast", + tagString = "Channelling", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemFlamepierceSupport"] = { @@ -9875,11 +12781,12 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Flamepierce", tagString = "Projectile, Fire", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemFreezeForkSupport"] = { @@ -9893,11 +12800,12 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Freezefork", tagString = "Projectile, Cold", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemStormchainSupport"] = { @@ -9912,11 +12820,12 @@ return { chaining = true, }, gemType = "Support", + gemFamily = "Stormchain", tagString = "Projectile, Lightning, Chaining", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemVerglasSupport"] = { @@ -9929,6 +12838,7 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Verglas", tagString = "Cold", reqStr = 0, reqDex = 0, @@ -9946,6 +12856,7 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Embitter", tagString = "Cold", reqStr = 0, reqDex = 0, @@ -9969,11 +12880,12 @@ return { payoff = true, }, gemType = "Support", + gemFamily = "Battershout", tagString = "Warcry, AoE, Trigger, Physical, Payoff", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 1, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemNadirSupport"] = { @@ -9986,6 +12898,7 @@ return { stages = true, }, gemType = "Support", + gemFamily = "Nadir", tagString = "Staged", reqStr = 0, reqDex = 0, @@ -10003,6 +12916,7 @@ return { curse = true, }, gemType = "Support", + gemFamily = "Abiding Hex", tagString = "Curse", reqStr = 0, reqDex = 0, @@ -10019,11 +12933,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Rusted Spikes", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCrazedMinionsSupport"] = { @@ -10037,11 +12952,12 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Crazed Minions", tagString = "Minion, Persistent", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSpectralVolleySupport"] = { @@ -10055,11 +12971,12 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Spectral Volley", tagString = "Attack, Projectile", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRallySupport"] = { @@ -10073,11 +12990,12 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Rally", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDeathmarchSupport"] = { @@ -10091,6 +13009,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Deathmarch", tagString = "Minion, Persistent", reqStr = 0, reqDex = 0, @@ -10107,6 +13026,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Acrimony", tagString = "", reqStr = 0, reqDex = 0, @@ -10115,7 +13035,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemConcoctSupport"] = { - name = "Concoct", + name = "Concoct I", gameId = "Metadata/Items/Gem/SupportGemConcoct", variantId = "ConcoctSupport", grantedEffectId = "SupportConcoctPlayer", @@ -10123,6 +13043,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Concoct", tagString = "", reqStr = 100, reqDex = 0, @@ -10130,6 +13051,23 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemConcoctSupportTwo"] = { + name = "Concoct II", + gameId = "Metadata/Items/Gem/SupportGemConcoctTwo", + variantId = "ConcoctSupportTwo", + grantedEffectId = "SupportConcoctPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Concoct", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemAmbrosiaSupport"] = { name = "Ambrosia", gameId = "Metadata/Items/Gem/SupportGemAmbrosia", @@ -10139,22 +13077,24 @@ return { support = true, }, gemType = "Support", + gemFamily = "Ambrosia", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemDomainSupport"] = { - name = "Domain", + ["Metadata/Items/Gems/SkillGemPersistentGroundSupport"] = { + name = "Persistent Ground I", gameId = "Metadata/Items/Gem/SupportGemDomain", - variantId = "DomainSupport", - grantedEffectId = "SupportDomainPlayer", + variantId = "PersistentGroundSupport", + grantedEffectId = "SupportPersistentGroundPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Persistent Ground", tagString = "", reqStr = 100, reqDex = 0, @@ -10162,16 +13102,51 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemFigureheadSupport"] = { - name = "Figurehead", + ["Metadata/Items/Gems/SkillGemPersistentGroundSupportTwo"] = { + name = "Persistent Ground II", + gameId = "Metadata/Items/Gem/SupportGemDomainTwo", + variantId = "PersistentGroundSupportTwo", + grantedEffectId = "SupportPersistentGroundPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Persistent Ground", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPersistentGroundSupportThree"] = { + name = "Persistent Ground III", + gameId = "Metadata/Items/Gem/SupportGemDomainThree", + variantId = "PersistentGroundSupportThree", + grantedEffectId = "SupportPersistentGroundPlayerThree", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Persistent Ground", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSelflessRemnantsSupport"] = { + name = "Selfless Remnants", gameId = "Metadata/Items/Gem/SupportGemFigurehead", - variantId = "FigureheadSupport", - grantedEffectId = "SupportFigureheadPlayer", + variantId = "SelflessRemnantsSupport", + grantedEffectId = "SupportSelflessRemnantsPlayer", tags = { support = true, remnant = true, }, gemType = "Support", + gemFamily = "Selfless Remnants", tagString = "Remnant", reqStr = 100, reqDex = 0, @@ -10179,16 +13154,35 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemInterludeSupport"] = { - name = "Interlude", + ["Metadata/Items/Gems/SkillGemRemnantPotencySupport"] = { + name = "Remnant Potency I", gameId = "Metadata/Items/Gem/SupportGemInterlude", - variantId = "InterludeSupport", + variantId = "RemnantPotencySupport", grantedEffectId = "SupportInterludePlayer", tags = { support = true, remnant = true, }, gemType = "Support", + gemFamily = "Remnant Potency", + tagString = "Remnant", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRemnantPotencySupportTwo"] = { + name = "Remnant Potency II", + gameId = "Metadata/Items/Gem/SupportGemInterludeTwo", + variantId = "RemnantPotencySupportTwo", + grantedEffectId = "SupportInterludePlayerTwo", + tags = { + support = true, + remnant = true, + }, + gemType = "Support", + gemFamily = "Remnant Potency", tagString = "Remnant", reqStr = 100, reqDex = 0, @@ -10196,6 +13190,24 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemRemnantPotencySupportThree"] = { + name = "Remnant Potency III", + gameId = "Metadata/Items/Gem/SupportGemInterludeThree", + variantId = "RemnantPotencySupportThree", + grantedEffectId = "SupportInterludePlayerThree", + tags = { + support = true, + remnant = true, + }, + gemType = "Support", + gemFamily = "Remnant Potency", + tagString = "Remnant", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemReverberateSupport"] = { name = "Reverberate", gameId = "Metadata/Items/Gem/SupportGemReverberate", @@ -10208,11 +13220,12 @@ return { slam = true, }, gemType = "Support", + gemFamily = "Reverberate", tagString = "Attack, Melee, Slam", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemClashSupport"] = { @@ -10226,6 +13239,7 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Clash", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, @@ -10242,11 +13256,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Malady", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDazzleSupport"] = { @@ -10259,11 +13274,12 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Dazzle", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSyzygySupport"] = { @@ -10279,11 +13295,12 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Syzygy", tagString = "Attack, Melee, Slam, Fire", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemUnyieldingSupport"] = { @@ -10297,11 +13314,12 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Unyielding", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDesperationSupport"] = { @@ -10315,11 +13333,12 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Desperation", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemOverextendSupport"] = { @@ -10330,10 +13349,10 @@ return { tags = { support = true, attack = true, - critical = true, }, gemType = "Support", - tagString = "Attack, Critical", + gemFamily = "Overextend", + tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, @@ -10351,11 +13370,12 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Excoriate", tagString = "Attack, Melee", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemUnbendingSupport"] = { @@ -10368,15 +13388,16 @@ return { spell = true, }, gemType = "Support", + gemFamily = "Unbending", tagString = "Spell", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRetreatSupport"] = { - name = "Retreat", + name = "Retreat I", gameId = "Metadata/Items/Gem/SupportGemRetreat", variantId = "RetreatSupport", grantedEffectId = "SupportRetreatPlayer", @@ -10385,6 +13406,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Retreat", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -10392,10 +13414,46 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemPursuitSupport"] = { - name = "Pursuit", - gameId = "Metadata/Items/Gem/SupportGemPursuit", - variantId = "PursuitSupport", + ["Metadata/Items/Gems/SkillGemRetreatSupportTwo"] = { + name = "Retreat II", + gameId = "Metadata/Items/Gem/SupportGemRetreatTwo", + variantId = "RetreatSupportTwo", + grantedEffectId = "SupportRetreatPlayerTwo", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Retreat", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRetreatSupportThree"] = { + name = "Retreat III", + gameId = "Metadata/Items/Gem/SupportGemRetreatThree", + variantId = "RetreatSupportThree", + grantedEffectId = "SupportRetreatPlayerThree", + tags = { + support = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Retreat", + tagString = "Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPursuitSupport"] = { + name = "Pursuit I", + gameId = "Metadata/Items/Gem/SupportGemPursuit", + variantId = "PursuitSupport", grantedEffectId = "SupportPursuitPlayer", tags = { support = true, @@ -10403,6 +13461,7 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Pursuit", tagString = "Attack, Melee", reqStr = 0, reqDex = 100, @@ -10410,17 +13469,56 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemReachSupport"] = { - name = "Reach", + ["Metadata/Items/Gems/SkillGemPursuitSupportTwo"] = { + name = "Pursuit II", + gameId = "Metadata/Items/Gem/SupportGemPursuitTwo", + variantId = "PursuitSupportTwo", + grantedEffectId = "SupportPursuitPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Pursuit", + tagString = "Attack, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPursuitSupportThree"] = { + name = "Pursuit III", + gameId = "Metadata/Items/Gem/SupportGemPursuitThree", + variantId = "PursuitSupportThree", + grantedEffectId = "SupportPursuitPlayerThree", + tags = { + support = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Pursuit", + tagString = "Attack, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemOverreachSupport"] = { + name = "Overreach", gameId = "Metadata/Items/Gem/SupportGemReach", - variantId = "ReachSupport", - grantedEffectId = "SupportReachPlayer", + variantId = "OverreachSupport", + grantedEffectId = "SupportOverreachPlayer", tags = { support = true, attack = true, area = true, }, gemType = "Support", + gemFamily = "Increased Area of Effect", tagString = "Attack, AoE", reqStr = 0, reqDex = 100, @@ -10437,6 +13535,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Commiserate", tagString = "", reqStr = 0, reqDex = 100, @@ -10451,10 +13550,10 @@ return { grantedEffectId = "SupportBlindsidePlayer", tags = { support = true, - critical = true, }, gemType = "Support", - tagString = "Critical", + gemFamily = "Blindside", + tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, @@ -10472,11 +13571,12 @@ return { conditional = true, }, gemType = "Support", + gemFamily = "Hit and Run", tagString = "Attack, Conditional", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCracklingBarrierSupport"] = { @@ -10490,6 +13590,7 @@ return { channelling = true, }, gemType = "Support", + gemFamily = "Crackling Barrier", tagString = "Lightning, Channelling", reqStr = 0, reqDex = 0, @@ -10498,7 +13599,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDefySupport"] = { - name = "Defy", + name = "Defy I", gameId = "Metadata/Items/Gem/SupportGemDefy", variantId = "DefySupport", grantedEffectId = "SupportDefyPlayer", @@ -10507,11 +13608,30 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Defy", tagString = "Attack", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDefySupportTwo"] = { + name = "Defy II", + gameId = "Metadata/Items/Gem/SupportGemDefyTwo", + variantId = "DefySupportTwo", + grantedEffectId = "SupportDefyPlayerTwo", + tags = { + support = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Defy", + tagString = "Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemVolatilitySupport"] = { @@ -10523,10 +13643,10 @@ return { support = true, physical = true, chaos = true, - critical = true, }, gemType = "Support", - tagString = "Physical, Chaos, Critical", + gemFamily = "Volatility", + tagString = "Physical, Chaos", reqStr = 0, reqDex = 0, reqInt = 100, @@ -10543,29 +13663,31 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Muster", tagString = "Minion", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemEnormitySupport"] = { - name = "Enormity", + ["Metadata/Items/Gems/SkillGemHulkingMinionsSupport"] = { + name = "Hulking Minions", gameId = "Metadata/Items/Gem/SupportGemEnormity", - variantId = "EnormitySupport", - grantedEffectId = "SupportEnormityPlayer", + variantId = "HulkingMinionsSupport", + grantedEffectId = "SupportHulkingMinionsPlayer", tags = { support = true, minion = true, persistent = true, }, gemType = "Support", + gemFamily = "Hulking Minions", tagString = "Minion, Persistent", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCaltropsSupport"] = { @@ -10581,12 +13703,12 @@ return { area = true, projectile = true, trigger = true, - physical = true, duration = true, hazard = true, }, gemType = "Support", - tagString = "Attack, AoE, Projectile, Trigger, Physical, Duration, Hazard", + gemFamily = "Caltrops", + tagString = "Attack, AoE, Projectile, Trigger, Duration, Hazard", reqStr = 0, reqDex = 100, reqInt = 0, @@ -10607,6 +13729,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Haemocrystals", tagString = "Attack, AoE, Physical", reqStr = 100, reqDex = 0, @@ -10625,11 +13748,12 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Spar", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDauntlessSupport"] = { @@ -10642,31 +13766,33 @@ return { conditional = true, }, gemType = "Support", + gemFamily = "Dauntless", tagString = "Conditional", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemMagnetismSupport"] = { - name = "Magnetism", + ["Metadata/Items/Gems/SkillGemMagneticRemnantsSupport"] = { + name = "Magnetic Remnants", gameId = "Metadata/Items/Gem/SupportGemMagnetism", - variantId = "MagnetismSupport", - grantedEffectId = "SupportMagnetismPlayer", + variantId = "MagneticRemnantsSupport", + grantedEffectId = "SupportMagneticRemnantsPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Magnetism", tagString = "", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemAncestralCallSupport"] = { - name = "Ancestral Call", + name = "Ancestral Call I", gameId = "Metadata/Items/Gem/SupportGemAncestralCall", variantId = "AncestralCallSupport", grantedEffectId = "SupportAncestralCallPlayer", @@ -10677,11 +13803,52 @@ return { strike = true, }, gemType = "Support", + gemFamily = "Ancestral Call", tagString = "Attack, Melee, Strike", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAncestralCallSupportTwo"] = { + name = "Ancestral Call II", + gameId = "Metadata/Items/Gem/SupportGemAncestralCallTwo", + variantId = "AncestralCallSupportTwo", + grantedEffectId = "SupportAncestralCallPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Ancestral Call", + tagString = "Attack, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAncestralCallSupportThree"] = { + name = "Ancestral Call III", + gameId = "Metadata/Items/Gem/SupportGemAncestralCallThree", + variantId = "AncestralCallSupportThree", + grantedEffectId = "SupportAncestralCallPlayerThree", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Ancestral Call", + tagString = "Attack, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemQuillburstSupport"] = { @@ -10700,6 +13867,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Quill Burst", tagString = "Attack, AoE, Melee, Trigger, Physical", reqStr = 100, reqDex = 0, @@ -10716,14 +13884,14 @@ return { support = true, attack = true, melee = true, - critical = true, }, gemType = "Support", - tagString = "Attack, Melee, Critical", + gemFamily = "Unsteady Tempo", + tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemAncestralAidSupport"] = { @@ -10739,11 +13907,12 @@ return { conditional = true, }, gemType = "Support", + gemFamily = "Ancestral Call", tagString = "Attack, Melee, Strike, Conditional", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemShockingLeapSupport"] = { @@ -10757,6 +13926,7 @@ return { duration = true, }, gemType = "Support", + gemFamily = "Shocking Leap", tagString = "AoE, Duration", reqStr = 0, reqDex = 100, @@ -10765,7 +13935,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBarbsSupport"] = { - name = "Barbs", + name = "Barbs I", gameId = "Metadata/Items/Gem/SupportGemBarbs", variantId = "BarbsSupport", grantedEffectId = "SupportBarbsPlayer", @@ -10776,6 +13946,7 @@ return { strike = true, }, gemType = "Support", + gemFamily = "Barbs", tagString = "Attack, Melee, Strike", reqStr = 100, reqDex = 0, @@ -10783,6 +13954,46 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemBarbsSupportTwo"] = { + name = "Barbs II", + gameId = "Metadata/Items/Gem/SupportGemBarbsTwo", + variantId = "BarbsSupportTwo", + grantedEffectId = "SupportBarbsPlayerTwo", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Barbs", + tagString = "Attack, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBarbsSupportThree"] = { + name = "Barbs III", + gameId = "Metadata/Items/Gem/SupportGemBarbsThree", + variantId = "BarbsSupportThree", + grantedEffectId = "SupportBarbsPlayerThree", + tags = { + support = true, + attack = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Barbs", + tagString = "Attack, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemRimeSupport"] = { name = "Rime", gameId = "Metadata/Items/Gem/SupportGemRime", @@ -10793,11 +14004,12 @@ return { cold = true, }, gemType = "Support", + gemFamily = "Rime", tagString = "Cold", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemArmsLengthSupport"] = { @@ -10809,11 +14021,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Arms' Length", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCharmBountySupport"] = { @@ -10825,15 +14038,16 @@ return { support = true, }, gemType = "Support", + gemFamily = "Bounty", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemThornskinSupport"] = { - name = "Thornskin", + name = "Thornskin I", gameId = "Metadata/Items/Gem/SupportGemThornskin", variantId = "ThornskinSupport", grantedEffectId = "SupportThornskinPlayer", @@ -10843,6 +14057,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Thornskin", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -10850,8 +14065,27 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemThornskinSupportTwo"] = { + name = "Thornskin II", + gameId = "Metadata/Items/Gem/SupportGemThornskinTwo", + variantId = "ThornskinSupportTwo", + grantedEffectId = "SupportThornskinPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Thornskin", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemMysticismSupport"] = { - name = "Mysticism", + name = "Mysticism I", gameId = "Metadata/Items/Gem/SupportGemMysticism", variantId = "MysticismSupport", grantedEffectId = "SupportMysticismPlayer", @@ -10861,6 +14095,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Mysticism", tagString = "Buff, Persistent", reqStr = 0, reqDex = 0, @@ -10868,8 +14103,27 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemMysticismSupportTwo"] = { + name = "Mysticism II", + gameId = "Metadata/Items/Gem/SupportGemMysticismTwo", + variantId = "MysticismSupportTwo", + grantedEffectId = "SupportMysticismPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Mysticism", + tagString = "Buff, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemDirestrikeSupport"] = { - name = "Direstrike", + name = "Direstrike I", gameId = "Metadata/Items/Gem/SupportGemDireStrike", variantId = "DirestrikeSupport", grantedEffectId = "SupportDirestrikePlayer", @@ -10879,6 +14133,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Direstrike", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -10886,8 +14141,27 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemDirestrikeSupportTwo"] = { + name = "Direstrike II", + gameId = "Metadata/Items/Gem/SupportGemDireStrikeTwo", + variantId = "DirestrikeSupportTwo", + grantedEffectId = "SupportDirestrikePlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Direstrike", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemUpwellingSupport"] = { - name = "Upwelling", + name = "Upwelling I", gameId = "Metadata/Items/Gem/SupportGemUpwelling", variantId = "UpwellingSupport", grantedEffectId = "SupportUpwellingPlayer", @@ -10897,6 +14171,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Upwellling", tagString = "Buff, Persistent", reqStr = 0, reqDex = 0, @@ -10904,6 +14179,25 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemUpwellingSupportTwo"] = { + name = "Upwelling II", + gameId = "Metadata/Items/Gem/SupportGemUpwellingTwo", + variantId = "UpwellingSupportTwo", + grantedEffectId = "SupportUpwellingPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Upwellling", + tagString = "Buff, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemWarmBloodedSupport"] = { name = "Warm Blooded", gameId = "Metadata/Items/Gem/SupportGemWarmBlooded", @@ -10915,6 +14209,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Warm Blooded", tagString = "Buff, Persistent", reqStr = 0, reqDex = 100, @@ -10933,6 +14228,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Cool Headed", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -10951,6 +14247,7 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Strong Hearted", tagString = "Buff, Persistent", reqStr = 0, reqDex = 0, @@ -10968,15 +14265,16 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Untouchable", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRefractionSupport"] = { - name = "Refraction", + name = "Refraction I", gameId = "Metadata/Items/Gem/SupportGemRefraction", variantId = "RefractionSupport", grantedEffectId = "SupportRefractionPlayer", @@ -10986,6 +14284,26 @@ return { persistent = true, }, gemType = "Support", + gemFamily = "Refraction", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRefractionSupportTwo"] = { + name = "Refraction II", + gameId = "Metadata/Items/Gem/SupportGemRefractionTwo", + variantId = "RefractionSupportTwo", + grantedEffectId = "SupportRefractionPlayerTwo", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Refraction", tagString = "Buff, Persistent", reqStr = 100, reqDex = 0, @@ -10993,8 +14311,27 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemRefractionSupportThree"] = { + name = "Refraction III", + gameId = "Metadata/Items/Gem/SupportGemRefractionThree", + variantId = "RefractionSupportThree", + grantedEffectId = "SupportRefractionPlayerThree", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Refraction", + tagString = "Buff, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemGreatwoodSupport"] = { - name = "Greatwood", + name = "Greatwood I", gameId = "Metadata/Items/Gem/SupportGemGreatwood", variantId = "GreatwoodSupport", grantedEffectId = "SupportGreatwoodPlayer", @@ -11003,6 +14340,7 @@ return { totem = true, }, gemType = "Support", + gemFamily = "Greatwood", tagString = "Totem", reqStr = 100, reqDex = 0, @@ -11010,6 +14348,24 @@ return { Tier = 3, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemGreatwoodSupportTwo"] = { + name = "Greatwood II", + gameId = "Metadata/Items/Gem/SupportGemGreatwoodTwo", + variantId = "GreatwoodSupportTwo", + grantedEffectId = "SupportGreatwoodPlayerTwo", + tags = { + support = true, + totem = true, + }, + gemType = "Support", + gemFamily = "Greatwood", + tagString = "Totem", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemUnabatingSupport"] = { name = "Unabating", gameId = "Metadata/Items/Gem/SupportGemUnabating", @@ -11020,11 +14376,12 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Unabating", tagString = "Attack", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPunchThroughSupport"] = { @@ -11038,6 +14395,7 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Punch Through", tagString = "Attack, Melee", reqStr = 0, reqDex = 100, @@ -11059,6 +14417,7 @@ return { remnant = true, }, gemType = "Support", + gemFamily = "Rip", tagString = "Attack, Melee, Physical, Duration, Remnant", reqStr = 100, reqDex = 0, @@ -11078,6 +14437,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Tear", tagString = "Attack, Melee, Physical", reqStr = 100, reqDex = 0, @@ -11086,7 +14446,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBrinkSupport"] = { - name = "Brink", + name = "Brink I", gameId = "Metadata/Items/Gem/SupportGemBrink", variantId = "BrinkSupport", grantedEffectId = "SupportBrinkPlayer", @@ -11096,6 +14456,7 @@ return { melee = true, }, gemType = "Support", + gemFamily = "Brink", tagString = "Attack, Melee", reqStr = 100, reqDex = 0, @@ -11103,21 +14464,41 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemTirelessSupport"] = { - name = "Tireless", - gameId = "Metadata/Items/Gem/SupportGemTireless", - variantId = "TirelessSupport", - grantedEffectId = "SupportTirelessPlayer", + ["Metadata/Items/Gems/SkillGemBrinkSupportTwo"] = { + name = "Brink II", + gameId = "Metadata/Items/Gem/SupportGemBrinkTwo", + variantId = "BrinkSupportTwo", + grantedEffectId = "SupportBrinkPlayerTwo", tags = { support = true, - warcry = true, + attack = true, + melee = true, }, gemType = "Support", - tagString = "Warcry", + gemFamily = "Brink", + tagString = "Attack, Melee", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTirelessSupport"] = { + name = "Tireless", + gameId = "Metadata/Items/Gem/SupportGemTireless", + variantId = "TirelessSupport", + grantedEffectId = "SupportTirelessPlayer", + tags = { + support = true, + warcry = true, + }, + gemType = "Support", + gemFamily = "Tireless", + tagString = "Warcry", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 1, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemVolcanicEruptionSupport"] = { @@ -11138,11 +14519,12 @@ return { fire = true, }, gemType = "Support", + gemFamily = "Volcanic Eruption", tagString = "Attack, AoE, Melee, Strike, Projectile, Trigger, Fire", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 2, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemFirstBloodSupport"] = { @@ -11156,23 +14538,25 @@ return { physical = true, }, gemType = "Support", + gemFamily = "First Blood", tagString = "Attack, Physical", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemRetortSupport"] = { - name = "Retort", + ["Metadata/Items/Gems/SkillGemFrenziedRiposteSupport"] = { + name = "Frenzied Riposte", gameId = "Metadata/Items/Gem/SupportGemRetort", - variantId = "RetortSupport", - grantedEffectId = "SupportRetortPlayer", + variantId = "FrenziedRiposteSupport", + grantedEffectId = "SupportFrenziedRipostePlayer", tags = { support = true, attack = true, }, gemType = "Support", + gemFamily = "Retort", tagString = "Attack", reqStr = 0, reqDex = 100, @@ -11180,32 +14564,34 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemBloodInTheEyesSupport"] = { - name = "Blood in the Eyes", + ["Metadata/Items/Gems/SkillGemHobbleSupport"] = { + name = "Hobble", gameId = "Metadata/Items/Gem/SupportGemBloodintheEyes", - variantId = "BloodInTheEyesSupport", - grantedEffectId = "SupportBloodInTheEyesPlayer", + variantId = "HobbleSupport", + grantedEffectId = "SupportHobblePlayer", tags = { support = true, physical = true, }, gemType = "Support", + gemFamily = "Hobble", tagString = "Physical", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemTwofoldSupport"] = { - name = "Twofold", + ["Metadata/Items/Gems/SkillGemHeightenedChargesSupport"] = { + name = "Heightened Charges", gameId = "Metadata/Items/Gem/SupportGemTwofold", - variantId = "TwofoldSupport", - grantedEffectId = "SupportTwofoldPlayer", + variantId = "HeightenedChargesSupport", + grantedEffectId = "SupportHeightenedChargesPlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Twofold", tagString = "", reqStr = 0, reqDex = 100, @@ -11224,11 +14610,12 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Incision", tagString = "Attack, Physical", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemCatharsisSupport"] = { @@ -11243,6 +14630,7 @@ return { conditional = true, }, gemType = "Support", + gemFamily = "Catharsis", tagString = "Physical, Chaos, Conditional", reqStr = 0, reqDex = 0, @@ -11259,6 +14647,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Delayed Gratification", tagString = "", reqStr = 0, reqDex = 100, @@ -11276,6 +14665,7 @@ return { minion = true, }, gemType = "Support", + gemFamily = "Loyalty", tagString = "Minion", reqStr = 0, reqDex = 0, @@ -11284,7 +14674,7 @@ return { naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRearmSupport"] = { - name = "Rearm", + name = "Rearm I", gameId = "Metadata/Items/Gem/SupportGemRearm", variantId = "RearmSupport", grantedEffectId = "SupportRearmPlayer", @@ -11293,11 +14683,30 @@ return { hazard = true, }, gemType = "Support", + gemFamily = "Rearm", tagString = "Hazard", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRearmSupportTwo"] = { + name = "Rearm II", + gameId = "Metadata/Items/Gem/SupportGemRearmTwo", + variantId = "RearmSupportTwo", + grantedEffectId = "SupportRearmPlayerTwo", + tags = { + support = true, + hazard = true, + }, + gemType = "Support", + gemFamily = "Rearm", + tagString = "Hazard", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDelayedReactionSupport"] = { @@ -11310,11 +14719,12 @@ return { hazard = true, }, gemType = "Support", + gemFamily = "Delayed Reaction", tagString = "Hazard", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemVolatilePowerSupport"] = { @@ -11328,11 +14738,12 @@ return { chaos = true, }, gemType = "Support", + gemFamily = "Volatile Power", tagString = "Physical, Chaos", reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemGambleshotSupport"] = { @@ -11345,6 +14756,7 @@ return { projectile = true, }, gemType = "Support", + gemFamily = "Gambleshot", tagString = "Projectile", reqStr = 0, reqDex = 100, @@ -11362,11 +14774,12 @@ return { attack = true, }, gemType = "Support", + gemFamily = "Unerring Power", tagString = "Attack", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemImpaleSupport"] = { @@ -11380,11 +14793,12 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Impale", tagString = "Attack, Physical", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPerfectionSupport"] = { @@ -11396,11 +14810,12 @@ return { support = true, }, gemType = "Support", + gemFamily = "Perfection", tagString = "", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 3, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemDeliberationSupport"] = { @@ -11412,6 +14827,7 @@ return { support = true, }, gemType = "Support", + gemFamily = "Deliberation", tagString = "", reqStr = 0, reqDex = 100, @@ -11430,27 +14846,46 @@ return { physical = true, }, gemType = "Support", + gemFamily = "See Red", tagString = "Attack, Physical", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 3, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemExpediteSupport"] = { - name = "Expedite", + ["Metadata/Items/Gems/SkillGemShortFuseSupport"] = { + name = "Short Fuse I", gameId = "Metadata/Items/Gem/SupportGemExpedite", - variantId = "ExpediteSupport", - grantedEffectId = "SupportExpeditePlayer", + variantId = "ShortFuseSupport", + grantedEffectId = "SupportShortFusePlayer", tags = { support = true, }, gemType = "Support", + gemFamily = "Short Fuse", tagString = "", reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 1, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemShortFuseSupportTwo"] = { + name = "Short Fuse II", + gameId = "Metadata/Items/Gem/SupportGemExpediteTwo", + variantId = "ShortFuseSupportTwo", + grantedEffectId = "SupportShortFusePlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Short Fuse", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemUndermineSupport"] = { @@ -11463,6 +14898,7 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Undermine", tagString = "Physical", reqStr = 100, reqDex = 0, @@ -11480,24 +14916,26 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Outmaneuver", tagString = "Physical", reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 1, + Tier = 0, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemSingleOutSupport"] = { - name = "Single Out", + ["Metadata/Items/Gems/SkillGemMarkForDeathSupport"] = { + name = "Mark for Death", gameId = "Metadata/Items/Gem/SupportGemSingleOut", - variantId = "SingleOutSupport", - grantedEffectId = "SupportSingleOutPlayer", + variantId = "MarkForDeathSupport", + grantedEffectId = "SupportMarkForDeathPlayer", tags = { support = true, mark = true, physical = true, }, gemType = "Support", + gemFamily = "Single Out", tagString = "Mark, Physical", reqStr = 0, reqDex = 100, @@ -11515,23 +14953,120 @@ return { physical = true, }, gemType = "Support", + gemFamily = "Tumult", tagString = "Physical", reqStr = 0, reqDex = 100, reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAdmixtureSupport"] = { + name = "Admixture", + gameId = "Metadata/Items/Gem/SupportGemAdmixture", + variantId = "AdmixtureSupport", + grantedEffectId = "SupportAdmixturePlayer", + tags = { + support = true, + physical = true, + chaos = true, + }, + gemType = "Support", + gemFamily = "Admixture", + tagString = "Physical, Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemStoicismSupport"] = { + name = "Stoicism I", + gameId = "Metadata/Items/Gem/SupportGemStoicism", + variantId = "StoicismSupport", + grantedEffectId = "SupportStoicismPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Stoicism", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemInhibitorSupport"] = { + ["Metadata/Items/Gems/SkillGemStoicismSupportTwo"] = { + name = "Stoicism II", + gameId = "Metadata/Items/Gem/SupportGemStoicismTwo", + variantId = "StoicismSupportTwo", + grantedEffectId = "SupportStoicismPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Stoicism", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRelentlessRageSupport"] = { + name = "Relentless Rage", + gameId = "Metadata/Items/Gem/SupportGemGrudge", + variantId = "RelentlessRageSupport", + grantedEffectId = "SupportRelentlessRagePlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Grudge", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBrambleslamSupport"] = { + name = "Brambleslam", + gameId = "Metadata/Items/Gem/SupportGemBrambleslam", + variantId = "BrambleslamSupport", + grantedEffectId = "SupportBrambleslamPlayer", + additionalGrantedEffectId1 = "TriggeredBrambleslamPlayer", + tags = { + support = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + physical = true, + hazard = true, + }, + gemType = "Support", + gemFamily = "Brambleslam", + tagString = "Attack, AoE, Melee, Slam, Physical, Hazard", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemChargeInhibitionSupport"] = { name = "Inhibitor", gameId = "Metadata/Items/Gem/SupportGemInhibitor", - variantId = "InhibitorSupport", - grantedEffectId = "SupportInhibitorPlayer", + variantId = "ChargeInhibitionSupport", + grantedEffectId = "SupportChargeInhibitionPlayer", tags = { support = true, spell = true, }, gemType = "Support", + gemFamily = "Inhibitor", tagString = "Spell", reqStr = 0, reqDex = 100, @@ -11539,16 +15074,76 @@ return { Tier = 2, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemSuffuseSupport"] = { - name = "Suffuse", + ["Metadata/Items/Gems/SkillGemHardyTotemsSupport"] = { + name = "Hardy Totems I", + gameId = "Metadata/Items/Gem/SupportGemHardyTotems", + variantId = "HardyTotemsSupport", + grantedEffectId = "SupportHardyTotemsPlayer", + tags = { + support = true, + totem = true, + }, + gemType = "Support", + gemFamily = "Hardy Totems", + tagString = "Totem", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemHardyTotemsSupportTwo"] = { + name = "Hardy Totems II", + gameId = "Metadata/Items/Gem/SupportGemHardyTotemsTwo", + variantId = "HardyTotemsSupportTwo", + grantedEffectId = "SupportHardyTotemsPlayerTwo", + tags = { + support = true, + totem = true, + }, + gemType = "Support", + gemFamily = "Hardy Totems", + tagString = "Totem", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemHardyTotemsSupportThree"] = { + name = "Tawhoa's Tending", + gameId = "Metadata/Items/Gem/SupportGemHardyTotemsThree", + variantId = "HardyTotemsSupportThree", + grantedEffectId = "SupportHardyTotemsPlayerThree", + additionalGrantedEffectId1 = "TriggeredSplinterExplosionHardyTotems", + tags = { + support = true, + grants_active_skill = true, + lineage = true, + totem = true, + area = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Hardy Totems", + tagString = "Lineage, Totem, AoE, Physical", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemEncroachingGroundSupport"] = { + name = "Encroaching Ground", gameId = "Metadata/Items/Gem/SupportGemSuffuse", - variantId = "SuffuseSupport", - grantedEffectId = "SupportSuffusePlayer", + variantId = "EncroachingGroundSupport", + grantedEffectId = "SupportEncroachingGroundPlayer", tags = { support = true, area = true, }, gemType = "Support", + gemFamily = "Encroaching Ground", tagString = "AoE", reqStr = 0, reqDex = 0, @@ -11565,13 +15160,12 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, lightning = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Lightning", + gemType = "Spell", + tagString = "AoE, Lightning", reqStr = 0, reqDex = 0, reqInt = 100, @@ -11588,14 +15182,14 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Duration, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -11686,7 +15280,6 @@ return { variantId = "WindSerpentsFury", grantedEffectId = "WindSerpentsFuryPlayer", additionalStatSet1 = "WindSerpentsFurySnakePlayer", - additionalStatSet2 = "WindSerpentsFuryKnockbackExplosionPlayer", tags = { dexterity = true, grants_active_skill = true, @@ -11719,10 +15312,9 @@ return { melee = true, strike = true, physical = true, - travel = true, }, gemType = "Attack", - tagString = "AoE, Melee, Strike, Physical, Travel", + tagString = "AoE, Melee, Strike, Physical", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -11738,20 +15330,17 @@ return { grantedEffectId = "BloodhoundsMarkPlayer", additionalGrantedEffectId1 = "BloodhoundsMarkExplosionPlayer", tags = { + mark = true, dexterity = true, grants_active_skill = true, - barrageable = true, - spell = true, attack = true, area = true, - mark = true, physical = true, duration = true, - nova = true, payoff = true, }, - gemType = "Barrageable", - tagString = "Spell, Attack, AoE, Mark, Physical, Duration, Nova, Payoff", + gemType = "Mark", + tagString = "Attack, AoE, Physical, Duration, Payoff", reqStr = 0, reqDex = 100, reqInt = 0, @@ -11819,16 +15408,16 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, attack = true, area = true, projectile = true, sustained = true, lightning = true, duration = true, + barrageable = true, }, - gemType = "Barrageable", - tagString = "Attack, AoE, Projectile, Sustained, Lightning, Duration", + gemType = "Attack", + tagString = "AoE, Projectile, Sustained, Lightning, Duration, Barrageable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -11897,13 +15486,12 @@ return { tags = { dexterity = true, grants_active_skill = true, - barrageable = true, minion = true, companion = true, persistent = true, }, - gemType = "Barrageable", - tagString = "Minion, Companion, Persistent", + gemType = "Minion", + tagString = "Companion, Persistent", reqStr = 0, reqDex = 100, reqInt = 0, @@ -11940,6 +15528,7 @@ return { grantedEffectId = "TrinityPlayer", tags = { dexterity = true, + intelligence = true, grants_active_skill = true, buff = true, persistent = true, @@ -11950,8 +15539,8 @@ return { gemType = "Buff", tagString = "Persistent, Lightning, Cold, Fire", reqStr = 0, - reqDex = 100, - reqInt = 0, + reqDex = 50, + reqInt = 50, Tier = 14, naturalMaxLevel = 20, }, @@ -11982,14 +15571,14 @@ return { Tier = 8, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemAscendancyTriggerElementalInfusion"] = { - name = "Infuse Weapon", - baseTypeName = "Infuse Weapon", + ["Metadata/Items/Gems/SkillGemAscendancyTriggerElementalSurge"] = { + name = "Elemental Surge", + baseTypeName = "Elemental Surge", gameId = "Metadata/Items/Gem/SkillGemAscendancyInfuseWeapon", - variantId = "AscendancyTriggerElementalInfusion", - grantedEffectId = "AmazonTriggerElementalInfusionPlayer", - additionalStatSet1 = "AmazonTriggerFireInfusionPlayer", - additionalStatSet2 = "AmazonTriggerLightningInfusionPlayer", + variantId = "AscendancyTriggerElementalSurge", + grantedEffectId = "AmazonTriggerElementalSurgePlayer", + additionalStatSet1 = "AmazonTriggerFireSurgePlayer", + additionalStatSet2 = "AmazonTriggerLightningSurgePlayer", tags = { grants_active_skill = true, attack = true, @@ -12006,26 +15595,6 @@ return { Tier = 0, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemChaosSpearTriggerChaosInfusion"] = { - name = "Chaotic Infusion", - baseTypeName = "Chaotic Infusion", - gameId = "Metadata/Items/Gem/SkillGemChaoticInfusion", - variantId = "ChaosSpearTriggerChaosInfusion", - grantedEffectId = "ChaosSpearTriggerChaosInfusionPlayer", - tags = { - grants_active_skill = true, - attack = true, - area = true, - chaos = true, - }, - gemType = "Attack", - tagString = "AoE, Chaos", - reqStr = 0, - reqDex = 0, - reqInt = 0, - Tier = 0, - naturalMaxLevel = 20, - }, ["Metadata/Items/Gems/SkillGemCastLightningSpellOnHit"] = { name = "Thundergod's Wrath", baseTypeName = "Thundergod's Wrath", @@ -12074,6 +15643,30 @@ return { Tier = 4, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemGeminiSurge"] = { + name = "Gemini Surge", + baseTypeName = "Gemini Surge", + gameId = "Metadata/Items/Gem/SkillGemGeminiSurge", + variantId = "GeminiSurge", + grantedEffectId = "GeminiSurgePlayer", + additionalStatSet1 = "GeminiSurgeFirePlayer", + tags = { + strength = true, + dexterity = true, + grants_active_skill = true, + attack = true, + area = true, + cold = true, + fire = true, + }, + gemType = "Attack", + tagString = "AoE, Cold, Fire", + reqStr = 50, + reqDex = 50, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemExplodingPoisonToad"] = { name = "Bursting Fen Toad", baseTypeName = "Bursting Fen Toad", @@ -12095,6 +15688,30 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemIronWard"] = { + name = "Iron Ward", + baseTypeName = "Iron Ward", + gameId = "Metadata/Items/Gem/SkillGemIronWard", + variantId = "IronWard", + grantedEffectId = "IronWardPlayer", + additionalGrantedEffectId1 = "IronWardNovaPlayer", + tags = { + strength = true, + grants_active_skill = true, + buff = true, + persistent = true, + area = true, + physical = true, + nova = true, + }, + gemType = "Buff", + tagString = "Persistent, AoE, Physical, Nova", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemIcestorm"] = { name = "Icestorm", baseTypeName = "Icestorm", @@ -12105,7 +15722,6 @@ return { tags = { intelligence = true, grants_active_skill = true, - barrageable = true, spell = true, area = true, sustained = true, @@ -12113,8 +15729,8 @@ return { duration = true, payoff = true, }, - gemType = "Barrageable", - tagString = "Spell, AoE, Sustained, Cold, Duration, Payoff", + gemType = "Spell", + tagString = "AoE, Sustained, Cold, Duration, Payoff", reqStr = 0, reqDex = 0, reqInt = 100, @@ -12195,4 +15811,1001 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemLivingLightningSupport"] = { + name = "Living Lightning", + gameId = "Metadata/Items/Gem/SupportGemLivingLightning", + variantId = "LivingLightningSupport", + grantedEffectId = "SupportLivingLightningPlayer", + additionalGrantedEffectId1 = "TriggeredLivingLightningPlayer", + tags = { + support = true, + grants_active_skill = true, + minion = true, + lightning = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Living Lightning", + tagString = "Minion, Lightning, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemLivingLightningSupportTwo"] = { + name = "Living Lightning II", + gameId = "Metadata/Items/Gem/SupportGemLivingLightningTwo", + variantId = "LivingLightningSupportTwo", + grantedEffectId = "SupportLivingLightningPlayerTwo", + additionalGrantedEffectId1 = "TriggeredLivingLightningPlayerTwo", + tags = { + support = true, + grants_active_skill = true, + minion = true, + lightning = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Living Lightning", + tagString = "Minion, Lightning, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFrozenSpiteSupport"] = { + name = "Frozen Spite", + gameId = "Metadata/Items/Gem/SupportGemFrozenSpite", + variantId = "FrozenSpiteSupport", + grantedEffectId = "SupportFrozenSpitePlayer", + additionalGrantedEffectId1 = "TriggeredSupportFrozenSpiteIceFragmentPlayer", + tags = { + support = true, + grants_active_skill = true, + area = true, + projectile = true, + cold = true, + }, + gemType = "Support", + gemFamily = "Frozen Spite", + tagString = "AoE, Projectile, Cold", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPietysMercySupport"] = { + name = "Piety's Mercy", + gameId = "Metadata/Items/Gem/SupportGemPietysMercy", + variantId = "PietysMercySupport", + grantedEffectId = "SupportPietysMercyPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Piety's Mercy", + tagString = "Lineage", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFlamePillarSupport"] = { + name = "Flame Pillar", + gameId = "Metadata/Items/Gem/SupportGemFlamePillar", + variantId = "FlamePillarSupport", + grantedEffectId = "SupportFlamePillarPlayer", + additionalGrantedEffectId1 = "TriggeredFlamePillarPlayer", + tags = { + support = true, + grants_active_skill = true, + area = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Flame Pillar", + tagString = "AoE, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemStreamlinedRoundsSupport"] = { + name = "Streamlined Rounds", + gameId = "Metadata/Items/Gem/SupportGemStreamlinedRounds", + variantId = "StreamlinedRoundsSupport", + grantedEffectId = "SupportStreamlinedRoundsPlayer", + tags = { + support = true, + ammunition = true, + projectile = true, + }, + gemType = "Support", + gemFamily = "Streamlined Rounds", + tagString = "Ammunition, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPerfectEnduranceSupport"] = { + name = "Perfected Endurance", + gameId = "Metadata/Items/Gem/SupportGemPerfectedEndurance", + variantId = "PerfectEnduranceSupport", + grantedEffectId = "SupportPerfectEndurancePlayer", + tags = { + support = true, + channelling = true, + }, + gemType = "Support", + gemFamily = "Perfected Endurance", + tagString = "Channelling", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemHeavyStunEnduranceSupportOne"] = { + name = "Enduring Impact I", + gameId = "Metadata/Items/Gem/SupportGemEnduringImpact", + variantId = "HeavyStunEnduranceSupportOne", + grantedEffectId = "SupportHeavyStunEndurancePlayerOne", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Enduring Impact", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemHeavyStunEnduranceSupportTwo"] = { + name = "Enduring Impact II", + gameId = "Metadata/Items/Gem/SupportGemEnduringImpactTwo", + variantId = "HeavyStunEnduranceSupportTwo", + grantedEffectId = "SupportHeavyStunEndurancePlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Enduring Impact", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCraterSupport"] = { + name = "Crater", + gameId = "Metadata/Items/Gem/SupportGemCrater", + variantId = "CraterSupport", + grantedEffectId = "SupportCraterPlayer", + additionalGrantedEffectId1 = "TriggeredCraterPlayer", + tags = { + support = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + fire = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Crater", + tagString = "Attack, AoE, Melee, Fire, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVanguardSupport"] = { + name = "Vanguard I", + gameId = "Metadata/Items/Gem/SupportGemVanguard", + variantId = "VanguardSupport", + grantedEffectId = "SupportVanguardPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Vanguard", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVanguardSupportTwo"] = { + name = "Vanguard II", + gameId = "Metadata/Items/Gem/SupportGemVanguardTwo", + variantId = "VanguardSupportTwo", + grantedEffectId = "SupportVanguardPlayerTwo", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Vanguard", + tagString = "", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCrystallineShardsSupport"] = { + name = "Crystalline Shards", + gameId = "Metadata/Items/Gem/SupportGemCrystallineShards", + variantId = "CrystallineShardsSupport", + grantedEffectId = "SupportCrystallineShardsPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Crystalline Shards", + tagString = "", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 1, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSkitteringStoneSupport"] = { + name = "Skittering Stone I", + gameId = "Metadata/Items/Gem/SupportGemSkitteringStone", + variantId = "SkitteringStoneSupport", + grantedEffectId = "SupportSkitteringStonePlayer", + additionalGrantedEffectId1 = "TriggeredSkitteringStonePlayer", + tags = { + support = true, + grants_active_skill = true, + minion = true, + physical = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Skittering Stone", + tagString = "Minion, Physical, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSkitteringStoneSupportTwo"] = { + name = "Skittering Stone II", + gameId = "Metadata/Items/Gem/SupportGemSkitteringStoneTwo", + variantId = "SkitteringStoneSupportTwo", + grantedEffectId = "SupportSkitteringStonePlayerTwo", + additionalGrantedEffectId1 = "TriggeredSkitteringStonePlayerTwo", + tags = { + support = true, + grants_active_skill = true, + minion = true, + physical = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Skittering Stone", + tagString = "Minion, Physical, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 4, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDiallasDesireSupport"] = { + name = "Dialla's Desire", + gameId = "Metadata/Items/Gem/SupportGemDiallasDesire", + variantId = "DiallasDesireSupport", + grantedEffectId = "SupportDiallasDesirePlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Dialla's Desire", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemKalisasCrescendoSupport"] = { + name = "Kalisa's Crescendo", + gameId = "Metadata/Items/Gem/SupportGemKalisasCrescendo", + variantId = "KalisasCrescendoSupport", + grantedEffectId = "SupportKalisasCrescendoPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Kalisa's Crescendo", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDurabilitySupport"] = { + name = "Durability", + gameId = "Metadata/Items/Gem/SupportGemDurability", + variantId = "DurabilitySupport", + grantedEffectId = "SupportDurabilityPlayer", + tags = { + support = true, + }, + gemType = "Support", + gemFamily = "Durability", + tagString = "", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemXophsPyreSupport"] = { + name = "Xoph's Pyre", + gameId = "Metadata/Items/Gem/SupportGemXophsPyre", + variantId = "XophsPyreSupport", + grantedEffectId = "SupportXophsPyrePlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Breachlord", + tagString = "Lineage", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemEshsRadianceSupport"] = { + name = "Esh's Radiance", + gameId = "Metadata/Items/Gem/SupportGemEshsRadiance", + variantId = "EshsRadianceSupport", + grantedEffectId = "SupportEshsRadiancePlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Breachlord", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTulsStillnessSupport"] = { + name = "Tul's Stillness", + gameId = "Metadata/Items/Gem/SupportGemTulsStillness", + variantId = "TulsStillnessSupport", + grantedEffectId = "SupportTulsStillnessPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Breachlord", + tagString = "Lineage", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUulNetolsEmbraceSupport"] = { + name = "Uul-Netol's Embrace", + gameId = "Metadata/Items/Gem/SupportGemUulNetolsEmbrace", + variantId = "UulNetolsEmbraceSupport", + grantedEffectId = "SupportUulNetolsEmbracePlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Breachlord", + tagString = "Lineage", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRakiatasFlowSupport"] = { + name = "Rakiata's Flow", + gameId = "Metadata/Items/Gem/SupportGemRakiatasFlow", + variantId = "RakiatasFlowSupport", + grantedEffectId = "SupportRakiatasFlowPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Rakiata's Flow", + tagString = "Lineage", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRigwaldsFerocitySupport"] = { + name = "Rigwald's Ferocity", + gameId = "Metadata/Items/Gem/SupportGemRigwaldsFerocity", + variantId = "RigwaldsFerocitySupport", + grantedEffectId = "SupportRigwaldsFerocityPlayer", + tags = { + support = true, + lineage = true, + attack = true, + }, + gemType = "Support", + gemFamily = "Rigwald's Ferocity", + tagString = "Lineage, Attack", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUhtredExodusSupport"] = { + name = "Uhtred's Exodus", + gameId = "Metadata/Items/Gem/SupportGemUhtredsExodus", + variantId = "UhtredExodusSupport", + grantedEffectId = "SupportUhtredExodusPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Uhtred of Kalguur", + tagString = "Lineage", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUhtredOmenSupport"] = { + name = "Uhtred's Omen", + gameId = "Metadata/Items/Gem/SupportGemUhtredsOmen", + variantId = "UhtredOmenSupport", + grantedEffectId = "SupportUhtredOmenPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Uhtred of Kalguur", + tagString = "Lineage", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUhtredAugurySupport"] = { + name = "Uhtred's Augury", + gameId = "Metadata/Items/Gem/SupportGemUhtredsAugury", + variantId = "UhtredAugurySupport", + grantedEffectId = "SupportUhtredAuguryPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Uhtred of Kalguur", + tagString = "Lineage", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemDaressosPassionSupport"] = { + name = "Daresso's Passion", + gameId = "Metadata/Items/Gem/SupportGemDaressosPassion", + variantId = "DaressosPassionSupport", + grantedEffectId = "SupportDaressosPassionPlayer", + tags = { + support = true, + banner = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Daresso's Passion", + tagString = "Banner, Lineage", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAtzirisAllureSupport"] = { + name = "Atziri's Allure", + gameId = "Metadata/Items/Gem/SupportGemAtzirisAllure", + variantId = "AtzirisAllureSupport", + grantedEffectId = "SupportAtzirisAllurePlayer", + tags = { + support = true, + lineage = true, + curse = true, + }, + gemType = "Support", + gemFamily = "Atziri's Allure", + tagString = "Lineage, Curse", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTacatisIreSupport"] = { + name = "Tacati's Ire", + gameId = "Metadata/Items/Gem/SupportGemTacatisIre", + variantId = "TacatisIreSupport", + grantedEffectId = "SupportTacatisIrePlayer", + tags = { + support = true, + lineage = true, + chaos = true, + }, + gemType = "Support", + gemFamily = "Tacati's Ire", + tagString = "Lineage, Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemZarokhsRefrainSupport"] = { + name = "Zarokh's Refrain", + gameId = "Metadata/Items/Gem/SupportGemZarokhsRefrain", + variantId = "ZarokhsRefrainSupport", + grantedEffectId = "SupportZarokhsRefrainPlayer", + tags = { + support = true, + lineage = true, + spell = true, + area = true, + }, + gemType = "Support", + gemFamily = "Spell Echo", + tagString = "Lineage, Spell, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemGarukhansResolveSupport"] = { + name = "Garukhan's Resolve", + gameId = "Metadata/Items/Gem/SupportGemGarukhansResolve", + variantId = "GarukhansResolveSupport", + grantedEffectId = "SupportGarukhansResolvePlayer", + tags = { + support = true, + lineage = true, + attack = true, + conditional = true, + }, + gemType = "Support", + gemFamily = "Hit and Run", + tagString = "Lineage, Attack, Conditional", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemKurgalsLeashSupport"] = { + name = "Kurgal's Leash", + gameId = "Metadata/Items/Gem/SupportGemKurgalsLeash", + variantId = "KurgalsLeashSupport", + grantedEffectId = "SupportKurgalsLeashPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Blackblood", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemKulemaksDominionSupport"] = { + name = "Kulemak's Dominion", + gameId = "Metadata/Items/Gem/SupportGemKulemaksDominion", + variantId = "KulemaksDominionSupport", + grantedEffectId = "SupportKulemaksDominionPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Kulemak's Dominion", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemAmanamusTitheSupport"] = { + name = "Amanamu's Tithe", + gameId = "Metadata/Items/Gem/SupportGemAmanamusTithe", + variantId = "AmanamusTitheSupport", + grantedEffectId = "SupportAmanamusTithePlayer", + tags = { + support = true, + lineage = true, + minion = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Amanamu's Tithe", + tagString = "Lineage, Minion, Persistent", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVarashtasBlessingSupport"] = { + name = "Varashta's Blessing", + gameId = "Metadata/Items/Gem/SupportGemVarashtasBlessing", + variantId = "VarashtasBlessingSupport", + grantedEffectId = "SupportVarashtasBlessingPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Varashta's Blessing", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemArbitersIngitionSupport"] = { + name = "Arbiter's Ignition", + gameId = "Metadata/Items/Gem/SupportGemArbitersIgnition", + variantId = "ArbitersIngitionSupport", + grantedEffectId = "SupportArbitersIgnitionPlayer", + tags = { + support = true, + lineage = true, + spell = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Arbiter's Ignition", + tagString = "Lineage, Spell, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemArakaalisLustSupport"] = { + name = "Arakaali's Lust", + gameId = "Metadata/Items/Gem/SupportGemArakaalisLust", + variantId = "ArakaalisLustSupport", + grantedEffectId = "SupportArakaalisLustPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Arakaali's Lust", + tagString = "Lineage", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemForgeHammer"] = { + name = "Forge Hammer", + baseTypeName = "Forge Hammer", + gameId = "Metadata/Items/Gem/SkillGemForgeHammer", + variantId = "ForgeHammer", + grantedEffectId = "ForgeHammerPlayer", + additionalStatSet1 = "ForgeHammerFissurePlayer", + additionalStatSet2 = "ForgeHammerRecallPlayer", + tags = { + strength = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + sustained = true, + fire = true, + duration = true, + }, + gemType = "Attack", + tagString = "AoE, Melee, Slam, Sustained, Fire, Duration", + weaponRequirements = "One Hand Mace, Two Hand Mace", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 9, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemFulmination"] = { + name = "Fulmination", + baseTypeName = "Fulmination", + gameId = "Metadata/Items/Gem/SkillGemFulmination", + variantId = "Fulmination", + grantedEffectId = "FulminationPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + buff = true, + persistent = true, + aura = true, + lightning = true, + }, + gemType = "Buff", + tagString = "Persistent, Aura, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMortarCannon"] = { + name = "Mortar Cannon", + baseTypeName = "Mortar Cannon", + gameId = "Metadata/Items/Gem/SkillGemMortarCannon", + variantId = "MortarCannon", + grantedEffectId = "MetaMortarCannonPlayer", + additionalGrantedEffectId1 = "SupportMortarCannonPlayer", + tags = { + strength = true, + dexterity = true, + grants_active_skill = true, + totem = true, + grenade = true, + duration = true, + meta = true, + }, + gemType = "Totem", + tagString = "Grenade, Duration, Meta", + weaponRequirements = "Crossbow", + reqStr = 50, + reqDex = 50, + reqInt = 0, + Tier = 11, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemAncestralCry"] = { + name = "Ancestral Cry", + baseTypeName = "Ancestral Cry", + gameId = "Metadata/Items/Gem/SkillGemAncestralCry", + variantId = "AncestralCry", + grantedEffectId = "AncestralCryPlayer", + additionalGrantedEffectId1 = "AncestralCryShockwavePlayer", + additionalGrantedEffectId2 = "AncestralCryProjectilePlayer", + tags = { + warcry = true, + strength = true, + grants_active_skill = true, + attack = true, + buff = true, + area = true, + melee = true, + slam = true, + projectile = true, + trigger = true, + fire = true, + duration = true, + nova = true, + conditional = true, + }, + gemType = "Warcry", + tagString = "Attack, Buff, AoE, Melee, Slam, Projectile, Trigger, Fire, Duration, Nova, Conditional", + weaponRequirements = "Any Melee Martial Weapon or Unarmed", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 13, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemFeastOfFlesh"] = { + name = "Feast of Flesh", + baseTypeName = "Feast of Flesh", + gameId = "Metadata/Items/Gem/SkillGemFeastOfFlesh", + variantId = "FeastOfFlesh", + grantedEffectId = "FeastOfFleshPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + spell = true, + buff = true, + area = true, + nova = true, + }, + gemType = "Spell", + tagString = "Buff, AoE, Nova", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemToxicDomain"] = { + name = "Toxic Domain", + baseTypeName = "Toxic Domain", + gameId = "Metadata/Items/Gem/SkillGemToxicDomain", + variantId = "ToxicDomain", + grantedEffectId = "ToxicDomainPlayer", + additionalStatSet1 = "ToxicDomainPustuleExplosion", + tags = { + buff = true, + dexterity = true, + grants_active_skill = true, + attack = true, + area = true, + physical = true, + chaos = true, + duration = true, + }, + gemType = "Buff", + tagString = "Attack, AoE, Physical, Chaos, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 13, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemIceTippedArrows"] = { + name = "Ice-Tipped Arrows", + baseTypeName = "Ice-Tipped Arrows", + gameId = "Metadata/Items/Gem/SkillGemIceTippedArrows", + variantId = "IceTippedArrows", + grantedEffectId = "IceTippedArrowsPlayer", + additionalGrantedEffectId1 = "IceTippedArrowsIceFragmentPlayer", + tags = { + dexterity = true, + grants_active_skill = true, + spell = true, + attack = true, + buff = true, + area = true, + projectile = true, + cold = true, + duration = true, + }, + gemType = "Spell", + tagString = "Attack, Buff, AoE, Projectile, Cold, Duration", + weaponRequirements = "Spear, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 3, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemCracklingPalm"] = { + name = "Crackling Palm", + baseTypeName = "Crackling Palm", + gameId = "Metadata/Items/Gems/SkillGemCracklingPalm", + variantId = "CracklingPalm", + grantedEffectId = "CracklingPalmPlayer", + additionalStatSet1 = "CracklingPalmBoltPlayer", + tags = { + buff = true, + dexterity = true, + intelligence = true, + grants_active_skill = true, + attack = true, + persistent = true, + area = true, + lightning = true, + }, + gemType = "Buff", + tagString = "Attack, Persistent, AoE, Lightning", + weaponRequirements = "Unarmed", + reqStr = 0, + reqDex = 50, + reqInt = 50, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemFuturePast"] = { + name = "Future-Past", + baseTypeName = "Future-Past", + gameId = "Metadata/Items/Gems/SkillGemFuturePast", + variantId = "FuturePast", + grantedEffectId = "FuturePastPlayer", + tags = { + buff = true, + grants_active_skill = true, + persistent = true, + duration = true, + }, + gemType = "Buff", + tagString = "Persistent, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSiphonElements"] = { + name = "Siphon Elements", + baseTypeName = "Siphon Elements", + gameId = "Metadata/Items/Gem/SkillGemSiphonElements", + variantId = "SiphonElements", + grantedEffectId = "SiphonElementsPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + buff = true, + persistent = true, + lightning = true, + cold = true, + fire = true, + remnant = true, + }, + gemType = "Buff", + tagString = "Persistent, Lightning, Cold, Fire, Remnant", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 8, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemFrostDarts"] = { + name = "Frost Darts", + baseTypeName = "Frost Darts", + gameId = "Metadata/Items/Gem/SkillGemFrostDarts", + variantId = "FrostDarts", + grantedEffectId = "FrostDartsPlayer", + additionalStatSet1 = "FrostDartsExplodePlayer", + additionalStatSet2 = "FrostDartsIceMortarPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + spell = true, + area = true, + projectile = true, + cold = true, + payoff = true, + }, + gemType = "Spell", + tagString = "AoE, Projectile, Cold, Payoff", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 3, + naturalMaxLevel = 20, + }, } \ No newline at end of file diff --git a/src/Data/Global.lua b/src/Data/Global.lua index 87f01b52d7..3f38587f27 100644 --- a/src/Data/Global.lua +++ b/src/Data/Global.lua @@ -376,7 +376,7 @@ SkillType = { NonHitChill = 67, ChillingArea = 68, AppliesCurse = 69, - CanRapidFire = 70, + Barrageable = 70, AuraDuration = 71, AreaSpell = 72, OR = 73, diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua index a7acf17d0d..f6ff38108e 100644 --- a/src/Data/Minions.lua +++ b/src/Data/Minions.lua @@ -572,3 +572,55 @@ minions["ManifestWeapon"] = { modList = { }, } + +minions["RavenousSwarm"] = { + name = "Ravenous Swarm", + monsterTags = { "slow_movement", "Unarmed_onhit_audio", }, + life = 0.7, + baseDamageIgnoresAttackSpeed = true, + fireResist = 0, + coldResist = 0, + lightningResist = 0, + chaosResist = 0, + damage = 0.84, + damageSpread = 0.3, + attackTime = 1, + attackRange = 1, + baseMovementSpeed = 24, + spectreReservation = 50, + companionReservation = 30, + spawnLocation = { + }, + skillList = { + "RavenousSwarmAttack", + }, + modList = { + }, +} + +minions["LivingLightning"] = { + name = "Living Lightning", + monsterTags = { "construct", "extra_small_height", "ghost_armour", "is_unarmed", "melee", "physical_affinity", "very_fast_movement", }, + life = 1, + baseDamageIgnoresAttackSpeed = true, + fireResist = 0, + coldResist = 0, + lightningResist = 0, + chaosResist = 0, + damage = 0.35, + damageSpread = 0.8, + attackTime = 1, + attackRange = 20, + baseMovementSpeed = 97, + spectreReservation = 50, + companionReservation = 30, + monsterCategory = "Construct", + spawnLocation = { + }, + skillList = { + "LivingLightningZap", + }, + modList = { + -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1] + }, +} diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua index a95b82cfd2..ecba94d9c8 100644 --- a/src/Data/SkillStatMap.lua +++ b/src/Data/SkillStatMap.lua @@ -157,9 +157,18 @@ return { ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"] = { skill("mineDurationAppliesToSkill", true), }, +["perfectly_timed"] = { + flag("Condition:PerfectTiming"), +}, ["additive_arrow_speed_modifiers_apply_to_area_of_effect"] = { skill("arrowSpeedAppliesToAreaOfEffect", true), }, +["modifiers_to_warcry_damage_also_apply_to_this"] = { + flag("WarcryDamageAppliesToSkill"), +}, +["skill_triggered_manually_by_other_skill"] = { + flag("Condition:Empowered"), +}, ["skill_buff_effect_+%"] = { mod("BuffEffect", "INC", nil) }, @@ -534,6 +543,12 @@ return { ["display_this_skill_cooldown_does_not_recover_during_buff"] = { flag("NoCooldownRecoveryInDuration"), }, +["totem_skill_cast_speed_+%"] = { + mod("Speed", "INC", nil, ModFlag.Cast, KeywordFlag.Totem), +}, +["totem_skill_attack_speed_+%"] = { + mod("Speed", "INC", nil, ModFlag.Attack, KeywordFlag.Totem) +}, -- AoE ["active_skill_base_area_of_effect_radius"] = { skill("radius", nil), @@ -726,6 +741,9 @@ return { ["damage_over_time_+%"] = { mod("Damage", "INC", nil, ModFlag.Dot), }, +["support_rapid_decay_damage_over_time_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Dot), +}, ["burn_damage_+%"] = { mod("FireDamage", "INC", nil, 0, KeywordFlag.FireDot), }, @@ -759,6 +777,9 @@ return { ["active_skill_projectile_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Projectile), }, +["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"] = { + flag("ProjectileSpeedAppliesToProjectileDamage"), +}, ["active_skill_area_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Area), }, @@ -939,9 +960,15 @@ return { ["physical_damage_%_to_add_as_chaos"] = { mod("PhysicalDamageGainAsChaos", "BASE", nil), }, +["non_skill_base_physical_damage_%_to_gain_as_chaos"] = { + mod("PhysicalDamageGainAsChaos", "BASE", nil), +}, ["cold_damage_%_to_add_as_fire"] = { mod("ColdDamageGainAsFire", "BASE", nil), }, +["non_skill_base_cold_damage_%_to_gain_as_chaos"] = { + mod("ColdDamageGainAsChaos", "BASE", nil), +}, ["fire_damage_%_to_add_as_chaos"] = { mod("FireDamageGainAsChaos", "BASE", nil), }, @@ -951,6 +978,12 @@ return { ["non_skill_base_all_damage_%_to_gain_as_chaos"] = { mod("DamageGainAsChaos", "BASE", nil), }, +["non_skill_base_fire_damage_%_to_gain_as_chaos"] = { + mod("FireDamageGainAsChaos", "BASE", nil), +}, +["non_skill_base_lightning_damage_%_to_gain_as_chaos"] = { + mod("LightningDamageGainAsChaos", "BASE", nil), +}, ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"] = { mod("DamageGainAsLightning", "BASE", nil, ModFlag.Attack), }, @@ -1338,12 +1371,19 @@ return { ["never_freeze"] = { flag("CannotFreeze"), }, +["never_freeze_or_chill"] = { + flag("CannotFreeze"), + flag("CannotChill"), +}, ["never_chill"] = { flag("CannotChill"), }, ["cannot_cause_bleeding"] = { flag("CannotBleed"), }, +["cannot_poison"] = { + flag("CannotPoison"), +}, ["cannot_break_armour"] = { flag("CannotArmourBreak"), }, @@ -1373,6 +1413,9 @@ return { flag("FireCanShock"), flag("ChaosCanShock"), }, +["chaos_damage_can_shock"] = { + flag("ChaosCanShock"), +}, ["all_damage_can_ignite_freeze_shock"] = { flag("PhysicalCanIgnite"), flag("LightningCanIgnite"), @@ -1387,6 +1430,9 @@ return { flag("FireCanShock"), flag("ChaosCanShock"), }, +["base_chaos_damage_can_ignite"] = { + flag("ChaosCanIgnite"), +}, ["base_lightning_damage_can_electrocute"] = { flag("LightningCanElectrocute"), }, @@ -1481,6 +1527,10 @@ return { ["active_skill_projectile_speed_+%_final"] = { mod("ProjectileSpeed", "MORE", nil), }, +["cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value"] = { + flag("CastSpeedAppliesToProjectileSpeed"), + mod("ImprovedCastSpeedAppliesToProjectileSpeed", "MAX", nil) +}, ["projectile_base_number_of_targets_to_pierce"] = { mod("PierceCount", "BASE", nil), }, @@ -1839,6 +1889,10 @@ return { ["off_hand_weapon_minimum_physical_damage"] = { skill("setOffHandPhysicalMin", nil), }, +["active_skill_has_%_standard_scaling_attack_damage"] = { + skill("baseMultiplier", nil), -- FIX: Should be getting value from default attack on weapon if it exists + div = 100, +}, ["off_hand_weapon_maximum_physical_damage"] = { skill("setOffHandPhysicalMax", nil), }, @@ -1927,6 +1981,10 @@ return { mod("TotalCastTime", "BASE", nil), div = 1000, }, +["base_spell_cast_time_ms"] = { + mod("TotalCastTime", "BASE", nil), + div = 1000, +}, ["active_skill_cast_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Cast), }, @@ -2089,6 +2147,9 @@ return { ["totem_elemental_resistance_%"] = { mod("TotemElementalResist", "BASE", nil) }, +["totem_maximum_all_elemental_resistances_%"] = { + mod("TotemElementalResistMax", "BASE", nil) +}, ["totem_chaos_resistance_%"] = { mod("TotemChaosResist", "BASE", nil) }, @@ -2166,14 +2227,6 @@ return { ["minion_block_%"] = { mod("MinionModifier", "LIST", { mod = mod("BlockChance", "BASE", nil) }), }, -["minion_1%_damage_+%_per_X_player_strength"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent", div = 3 }) }), - div = 3, -}, -["minion_1%_accuracy_rating_+%_per_X_player_dexterity"] = { - mod("MinionModifier", "LIST", { mod = mod("Accuracy", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), - div = 3, -}, ["base_number_of_zombies_allowed"] = { mod("ActiveZombieLimit", "BASE", nil), }, @@ -2483,7 +2536,7 @@ return { mod("Condition:CannotBeDamaged", "FLAG", nil) }, -- --- Gem Levels +-- Gem Levels / quality -- --Fire ["supported_fire_skill_gem_level_+"] = { @@ -2509,6 +2562,9 @@ return { ["supported_active_skill_gem_level_+"] = { mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "level", value = nil }), }, +["supported_active_skill_gem_quality_%"] = { + mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "quality", value = nil }), +}, --Aura ["supported_aura_skill_gem_level_+"] = { mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "level", value = nil }, 0, 0, { type = "SkillType", skillType = SkillType.Aura }), diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index e2db3a7042..e2ef66046e 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -136,7 +136,7 @@ skills["BarragePlayer"] = { baseTypeName = "Barrage", color = 2, description = "Ready a volley of arrows or spears, Empowering your next Barrageable Bow or Projectile Spear Attack to Repeat multiple times. Consumes your Frenzy Charges on use to add additional repeats.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, ["Bow"] = true, @@ -146,46 +146,46 @@ skills["BarragePlayer"] = { { "empower_barrage_damage_-%_final_with_repeated_projectiles", -0.25 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 2, cost = { Mana = 12, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 2, cost = { Mana = 11, }, }, [2] = { storedUses = 1, levelRequirement = 3, cooldown = 2, cost = { Mana = 13, }, }, [3] = { storedUses = 1, levelRequirement = 6, cooldown = 2, cost = { Mana = 14, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 2, cost = { Mana = 15, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 2, cost = { Mana = 16, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 2, cost = { Mana = 17, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 2, cost = { Mana = 18, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 2, cost = { Mana = 19, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 2, cost = { Mana = 21, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 2, cost = { Mana = 22, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 2, cost = { Mana = 24, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 2, cost = { Mana = 26, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 2, cost = { Mana = 28, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 2, cost = { Mana = 30, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 2, cost = { Mana = 32, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 2, cost = { Mana = 34, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 2, cost = { Mana = 37, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 2, cost = { Mana = 39, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 2, cost = { Mana = 42, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 45, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 49, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 52, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 56, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 60, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 65, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 2, cost = { Mana = 16, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 2, cost = { Mana = 18, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 2, cost = { Mana = 20, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 2, cost = { Mana = 21, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 2, cost = { Mana = 23, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 2, cost = { Mana = 25, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 2, cost = { Mana = 27, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 2, cost = { Mana = 29, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 2, cost = { Mana = 31, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 2, cost = { Mana = 34, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 2, cost = { Mana = 36, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 2, cost = { Mana = 38, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 2, cost = { Mana = 41, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 2, cost = { Mana = 43, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 2, cost = { Mana = 46, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 2, cost = { Mana = 48, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 51, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 54, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 57, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 59, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 62, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 66, }, }, [26] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 69, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 74, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 80, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 85, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 92, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 98, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 105, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 113, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 121, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 130, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 140, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 150, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 161, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 172, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 185, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 72, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 76, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 79, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 83, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 86, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 90, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 94, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 98, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 102, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 107, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 111, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 116, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 120, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 125, }, }, }, statSets = { [1] = { @@ -229,7 +229,7 @@ skills["BarragePlayer"] = { { "empower_barrage_number_of_barrage_repeats_per_frenzy_charge", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "empower_barrage_damage_-%_final_with_repeated_projectiles", 50 }, }, stats = { @@ -300,44 +300,44 @@ skills["BloodHuntPlayer"] = { levels = { [1] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 5, }, }, [2] = { baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, }, - [3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 6, }, }, - [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, }, - [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 8, }, }, - [6] = { baseMultiplier = 0.79, levelRequirement = 18, cost = { Mana = 9, }, }, - [7] = { baseMultiplier = 0.85, levelRequirement = 22, cost = { Mana = 10, }, }, - [8] = { baseMultiplier = 0.92, levelRequirement = 26, cost = { Mana = 11, }, }, - [9] = { baseMultiplier = 0.98, levelRequirement = 31, cost = { Mana = 12, }, }, - [10] = { baseMultiplier = 1.05, levelRequirement = 36, cost = { Mana = 14, }, }, - [11] = { baseMultiplier = 1.13, levelRequirement = 41, cost = { Mana = 15, }, }, - [12] = { baseMultiplier = 1.22, levelRequirement = 46, cost = { Mana = 17, }, }, - [13] = { baseMultiplier = 1.32, levelRequirement = 52, cost = { Mana = 19, }, }, - [14] = { baseMultiplier = 1.43, levelRequirement = 58, cost = { Mana = 21, }, }, - [15] = { baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 23, }, }, - [16] = { baseMultiplier = 1.69, levelRequirement = 66, cost = { Mana = 25, }, }, + [3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 7, }, }, + [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 8, }, }, + [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { baseMultiplier = 0.79, levelRequirement = 18, cost = { Mana = 10, }, }, + [7] = { baseMultiplier = 0.85, levelRequirement = 22, cost = { Mana = 11, }, }, + [8] = { baseMultiplier = 0.92, levelRequirement = 26, cost = { Mana = 12, }, }, + [9] = { baseMultiplier = 0.98, levelRequirement = 31, cost = { Mana = 14, }, }, + [10] = { baseMultiplier = 1.05, levelRequirement = 36, cost = { Mana = 15, }, }, + [11] = { baseMultiplier = 1.13, levelRequirement = 41, cost = { Mana = 17, }, }, + [12] = { baseMultiplier = 1.22, levelRequirement = 46, cost = { Mana = 18, }, }, + [13] = { baseMultiplier = 1.32, levelRequirement = 52, cost = { Mana = 20, }, }, + [14] = { baseMultiplier = 1.43, levelRequirement = 58, cost = { Mana = 22, }, }, + [15] = { baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 24, }, }, + [16] = { baseMultiplier = 1.69, levelRequirement = 66, cost = { Mana = 26, }, }, [17] = { baseMultiplier = 1.84, levelRequirement = 72, cost = { Mana = 28, }, }, [18] = { baseMultiplier = 2.02, levelRequirement = 78, cost = { Mana = 31, }, }, - [19] = { baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 35, }, }, - [20] = { baseMultiplier = 2.43, levelRequirement = 90, cost = { Mana = 39, }, }, - [21] = { baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 43, }, }, - [22] = { baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 48, }, }, - [23] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 53, }, }, - [24] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 59, }, }, - [25] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 65, }, }, - [26] = { baseMultiplier = 4.31, levelRequirement = 90, cost = { Mana = 72, }, }, - [27] = { baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 80, }, }, - [28] = { baseMultiplier = 5.22, levelRequirement = 90, cost = { Mana = 89, }, }, - [29] = { baseMultiplier = 5.74, levelRequirement = 90, cost = { Mana = 98, }, }, - [30] = { baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 109, }, }, - [31] = { baseMultiplier = 6.95, levelRequirement = 90, cost = { Mana = 121, }, }, - [32] = { baseMultiplier = 7.64, levelRequirement = 90, cost = { Mana = 134, }, }, - [33] = { baseMultiplier = 8.4, levelRequirement = 90, cost = { Mana = 148, }, }, - [34] = { baseMultiplier = 9.24, levelRequirement = 90, cost = { Mana = 164, }, }, - [35] = { baseMultiplier = 10.17, levelRequirement = 90, cost = { Mana = 182, }, }, - [36] = { baseMultiplier = 11.19, levelRequirement = 90, cost = { Mana = 202, }, }, - [37] = { baseMultiplier = 12.3, levelRequirement = 90, cost = { Mana = 224, }, }, - [38] = { baseMultiplier = 13.54, levelRequirement = 90, cost = { Mana = 248, }, }, - [39] = { baseMultiplier = 14.89, levelRequirement = 90, cost = { Mana = 275, }, }, - [40] = { baseMultiplier = 16.38, levelRequirement = 90, cost = { Mana = 305, }, }, + [19] = { baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 33, }, }, + [20] = { baseMultiplier = 2.43, levelRequirement = 90, cost = { Mana = 36, }, }, + [21] = { baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 39, }, }, + [22] = { baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 42, }, }, + [23] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 45, }, }, + [24] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 49, }, }, + [25] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 52, }, }, + [26] = { baseMultiplier = 4.31, levelRequirement = 90, cost = { Mana = 56, }, }, + [27] = { baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 60, }, }, + [28] = { baseMultiplier = 5.22, levelRequirement = 90, cost = { Mana = 65, }, }, + [29] = { baseMultiplier = 5.74, levelRequirement = 90, cost = { Mana = 69, }, }, + [30] = { baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 74, }, }, + [31] = { baseMultiplier = 6.95, levelRequirement = 90, cost = { Mana = 79, }, }, + [32] = { baseMultiplier = 7.64, levelRequirement = 90, cost = { Mana = 85, }, }, + [33] = { baseMultiplier = 8.4, levelRequirement = 90, cost = { Mana = 91, }, }, + [34] = { baseMultiplier = 9.24, levelRequirement = 90, cost = { Mana = 97, }, }, + [35] = { baseMultiplier = 10.17, levelRequirement = 90, cost = { Mana = 103, }, }, + [36] = { baseMultiplier = 11.19, levelRequirement = 90, cost = { Mana = 110, }, }, + [37] = { baseMultiplier = 12.3, levelRequirement = 90, cost = { Mana = 117, }, }, + [38] = { baseMultiplier = 13.54, levelRequirement = 90, cost = { Mana = 125, }, }, + [39] = { baseMultiplier = 14.89, levelRequirement = 90, cost = { Mana = 133, }, }, + [40] = { baseMultiplier = 16.38, levelRequirement = 90, cost = { Mana = 142, }, }, }, statSets = { [1] = { @@ -360,6 +360,7 @@ skills["BloodHuntPlayer"] = { "is_area_damage", "cannot_cause_bleeding", "skill_track_enemy_blood_loss", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -416,7 +417,7 @@ skills["BloodHuntPlayer"] = { constantStats = { { "active_skill_base_area_of_effect_radius", 13 }, { "blood_hunt_skill_area_of_effect_+%_final_per_X_blood_loss_consumed_up_to_500%", 10 }, - { "blood_hunt_explosion_%_blood_loss_to_deal_unscalable", 25 }, + { "blood_hunt_explosion_%_blood_loss_to_deal_as_life_loss", 25 }, }, stats = { "blood_hunt_X_blood_loss_consumed_for_skill_area_of_effect_+%_final", @@ -424,6 +425,7 @@ skills["BloodHuntPlayer"] = { "is_area_damage", "cannot_cause_bleeding", "skill_track_enemy_blood_loss", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "quality_display_active_skill_base_area_of_effect_radius_is_gem", }, @@ -476,53 +478,53 @@ skills["BloodhoundsMarkPlayer"] = { name = "Bloodhound's Mark", baseTypeName = "Bloodhound's Mark", color = 2, - description = "Mark a target, making them suffer Heavy Stun build up from Blood Loss. If they suffer enough Blood Loss while Marked, the Mark is consumed and they will release an explosion of blood when killed or Heavy Stunned. The Mark duration doesn't tick while the Marked target is suffering Blood Loss.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Limit] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMounted] = true, }, + description = "Mark a target, making them suffer Heavy Stun build up from Blood Loss. If they suffer enough Blood Loss while Marked, the Mark is Consumed and they will release an explosion of blood when killed or Heavy Stunned. The Mark duration doesn't tick while the Marked target is suffering Blood Loss.", + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Limit] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.5, qualityStats = { { "hunters_mark_%_of_phys_damage_over_time_as_build_up", 2.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 23, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 25, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 27, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 29, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 31, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 33, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 35, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 41, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 44, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 47, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 50, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 54, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 58, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 67, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 77, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 88, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 117, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 135, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 166, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 191, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 205, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 235, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 252, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 271, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 290, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 311, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 334, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 23, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 25, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 28, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 31, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 33, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 36, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 39, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 49, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 52, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 56, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 59, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 63, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 67, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 71, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 79, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 83, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 97, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 102, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 107, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 117, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 128, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 146, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 159, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 166, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 172, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 179, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 194, }, }, }, statSets = { [1] = { @@ -535,7 +537,7 @@ skills["BloodhoundsMarkPlayer"] = { { "base_skill_effect_duration", 8000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "number_of_marks_allowed_per_type", 1 }, { "hunters_mark_%_of_max_threshold_to_trigger_explosion_on_death", 5 }, { "hunters_mark_%_of_phys_damage_over_time_as_build_up", 300 }, @@ -593,7 +595,7 @@ skills["BloodhoundsMarkExplosionPlayer"] = { name = "Bloodhound's Mark Explosion", hidden = true, description = "A violent explosion of blood that deals Attack damage but does not use your weapon's damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, }, castTime = 1, qualityStats = { }, @@ -661,6 +663,7 @@ skills["BloodhoundsMarkExplosionPlayer"] = { "replace_main_hand_unarmed_attack_stats_with_nothing_type", "base_skill_show_average_damage_instead_of_dps", "cannot_cause_bleeding", + "triggerable_in_any_set", }, notMinionStat = { "main_hand_weapon_minimum_physical_damage", @@ -719,7 +722,7 @@ skills["CombatFrenzyPlayer"] = { skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.GeneratesCharges] = true, }, castTime = 1, qualityStats = { - { "chance_to_gain_1_more_charge_%", 1 }, + { "chance_to_gain_1_more_charge_%", 0.5 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -782,46 +785,46 @@ skills["CombatFrenzyPlayer"] = { "base_deal_no_damage", }, levels = { - [1] = { 6000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 5900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 5800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 5700, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 5600, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 5500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 5400, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 5300, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 5200, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 5100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 5000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 4900, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 4800, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 4700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 4600, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 4500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 4400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 4300, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 4200, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 4100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 4000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 3900, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 3800, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 3700, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 3600, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 3500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 3400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 3300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 3200, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 3100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 3050, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 3000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 2950, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 2900, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 2850, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 2800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 2750, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 2700, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 2650, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 2600, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 7900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7700, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 7600, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 7500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 7400, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 7300, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 7200, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 7100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 7000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 6900, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 6700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 6600, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 6500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 6400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 6300, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 6200, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 6100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 6000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 5900, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 5800, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 5700, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5600, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5200, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5050, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 4950, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 4900, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 4850, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 4800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 4750, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 4700, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 4650, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 4600, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -833,11 +836,11 @@ skills["SummonBeastPlayer"] = { }, color = 2, description = "Summon a Reviving Beast Companion to aid you in combat.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, [SkillType.Barrageable] = true, [SkillType.Cascadable] = true, }, castTime = 1, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -951,8 +954,8 @@ skills["CullTheWeakPlayer"] = { name = "Cull the Weak", baseTypeName = "Cull the Weak", color = 2, - description = "Dash to an enemy and run them through, Culling enemies if their life is low enough. If this Attack kills at least one enemy, it grants you a Frenzy Charge. Enemies around you that can be Culled will be highlighted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.GeneratesCharges] = true, }, + description = "Dash to an enemy and run them through, Culling enemies if their life is low enough. If this Attack kills at least one enemy, it grants you a Frenzy Charge, with higher Rarity monsters granting additional Charges. Enemies around you that can be Culled will be highlighted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.GeneratesCharges] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -961,46 +964,46 @@ skills["CullTheWeakPlayer"] = { { "chance_to_gain_1_more_charge_%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 7, }, }, + [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -40, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 17, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 19, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 21, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 26, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 29, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 32, }, }, + [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 28, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 33, }, }, [17] = { attackSpeedMultiplier = -40, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 36, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 40, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 44, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 49, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 54, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 60, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 67, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 74, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 82, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 91, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 101, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 112, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 124, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 137, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 152, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 169, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 187, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 207, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 230, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 255, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 283, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 313, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 347, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 385, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 39, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 42, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 46, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 49, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 53, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 57, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 62, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 66, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 71, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 76, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 82, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 88, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 94, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 100, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 107, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 114, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 122, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 130, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 139, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 148, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 158, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 168, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 179, }, }, }, statSets = { [1] = { @@ -1016,11 +1019,15 @@ skills["CullTheWeakPlayer"] = { { "melee_conditional_step_distance", 15 }, { "base_melee_dash_range", 65 }, { "active_skill_generic_grace_period_time_ms", 100 }, + { "skill_grant_X_frenzy_charges_against_normal_and_magic_monsters", 1 }, + { "skill_grant_X_frenzy_charges_against_rare_monsters", 2 }, + { "skill_grant_X_frenzy_charges_against_unique_monsters", 3 }, }, stats = { "kill_enemy_on_hit_if_under_10%_life", "active_skill_show_cull_range", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -1071,56 +1078,56 @@ skills["DetonatingArrowPlayer"] = { name = "Detonating Arrow", baseTypeName = "Detonating Arrow", color = 2, - description = "Channel to build up power before firing off a burning arrow. At maximum charge, the arrow will detonate at the end of its flight, causing an explosion in an area around it.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Fire] = true, [SkillType.Triggerable] = true, [SkillType.Channel] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, }, + description = "Channel to charge up before firing off a burning arrow. At maximum stages, the arrow will create a Detonating explosion at the end of its flight.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Barrageable] = true, [SkillType.Area] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "detonating_arrow_max_number_of_stages", 0.1 }, + { "detonating_arrow_max_number_of_stages", 0.05 }, }, levels = { - [1] = { attackSpeedMultiplier = -55, baseMultiplier = 0.44, levelRequirement = 0, cost = { ManaPerMinute = 422, }, }, - [2] = { attackSpeedMultiplier = -55, baseMultiplier = 0.48, levelRequirement = 3, cost = { ManaPerMinute = 467, }, }, - [3] = { attackSpeedMultiplier = -55, baseMultiplier = 0.53, levelRequirement = 6, cost = { ManaPerMinute = 518, }, }, - [4] = { attackSpeedMultiplier = -55, baseMultiplier = 0.58, levelRequirement = 10, cost = { ManaPerMinute = 574, }, }, - [5] = { attackSpeedMultiplier = -55, baseMultiplier = 0.63, levelRequirement = 14, cost = { ManaPerMinute = 636, }, }, - [6] = { attackSpeedMultiplier = -55, baseMultiplier = 0.68, levelRequirement = 18, cost = { ManaPerMinute = 705, }, }, - [7] = { attackSpeedMultiplier = -55, baseMultiplier = 0.73, levelRequirement = 22, cost = { ManaPerMinute = 781, }, }, - [8] = { attackSpeedMultiplier = -55, baseMultiplier = 0.78, levelRequirement = 26, cost = { ManaPerMinute = 865, }, }, - [9] = { attackSpeedMultiplier = -55, baseMultiplier = 0.82, levelRequirement = 31, cost = { ManaPerMinute = 959, }, }, - [10] = { attackSpeedMultiplier = -55, baseMultiplier = 0.87, levelRequirement = 36, cost = { ManaPerMinute = 1062, }, }, - [11] = { attackSpeedMultiplier = -55, baseMultiplier = 0.92, levelRequirement = 41, cost = { ManaPerMinute = 1177, }, }, - [12] = { attackSpeedMultiplier = -55, baseMultiplier = 0.97, levelRequirement = 46, cost = { ManaPerMinute = 1305, }, }, - [13] = { attackSpeedMultiplier = -55, baseMultiplier = 1.03, levelRequirement = 52, cost = { ManaPerMinute = 1446, }, }, - [14] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 58, cost = { ManaPerMinute = 1602, }, }, - [15] = { attackSpeedMultiplier = -55, baseMultiplier = 1.16, levelRequirement = 64, cost = { ManaPerMinute = 1775, }, }, - [16] = { attackSpeedMultiplier = -55, baseMultiplier = 1.24, levelRequirement = 66, cost = { ManaPerMinute = 1967, }, }, - [17] = { attackSpeedMultiplier = -55, baseMultiplier = 1.32, levelRequirement = 72, cost = { ManaPerMinute = 2180, }, }, - [18] = { attackSpeedMultiplier = -55, baseMultiplier = 1.4, levelRequirement = 78, cost = { ManaPerMinute = 2416, }, }, - [19] = { attackSpeedMultiplier = -55, baseMultiplier = 1.49, levelRequirement = 84, cost = { ManaPerMinute = 2677, }, }, - [20] = { attackSpeedMultiplier = -55, baseMultiplier = 1.59, levelRequirement = 90, cost = { ManaPerMinute = 2966, }, }, - [21] = { attackSpeedMultiplier = -55, baseMultiplier = 1.7, levelRequirement = 90, cost = { ManaPerMinute = 3287, }, }, - [22] = { attackSpeedMultiplier = -55, baseMultiplier = 1.81, levelRequirement = 90, cost = { ManaPerMinute = 3643, }, }, - [23] = { attackSpeedMultiplier = -55, baseMultiplier = 1.93, levelRequirement = 90, cost = { ManaPerMinute = 4036, }, }, - [24] = { attackSpeedMultiplier = -55, baseMultiplier = 2.06, levelRequirement = 90, cost = { ManaPerMinute = 4473, }, }, - [25] = { attackSpeedMultiplier = -55, baseMultiplier = 2.2, levelRequirement = 90, cost = { ManaPerMinute = 4956, }, }, - [26] = { attackSpeedMultiplier = -55, baseMultiplier = 2.35, levelRequirement = 90, cost = { ManaPerMinute = 5492, }, }, - [27] = { attackSpeedMultiplier = -55, baseMultiplier = 2.5, levelRequirement = 90, cost = { ManaPerMinute = 6086, }, }, - [28] = { attackSpeedMultiplier = -55, baseMultiplier = 2.67, levelRequirement = 90, cost = { ManaPerMinute = 6744, }, }, - [29] = { attackSpeedMultiplier = -55, baseMultiplier = 2.85, levelRequirement = 90, cost = { ManaPerMinute = 7473, }, }, - [30] = { attackSpeedMultiplier = -55, baseMultiplier = 3.04, levelRequirement = 90, cost = { ManaPerMinute = 8281, }, }, - [31] = { attackSpeedMultiplier = -55, baseMultiplier = 3.24, levelRequirement = 90, cost = { ManaPerMinute = 9176, }, }, - [32] = { attackSpeedMultiplier = -55, baseMultiplier = 3.46, levelRequirement = 90, cost = { ManaPerMinute = 10168, }, }, - [33] = { attackSpeedMultiplier = -55, baseMultiplier = 3.69, levelRequirement = 90, cost = { ManaPerMinute = 11267, }, }, - [34] = { attackSpeedMultiplier = -55, baseMultiplier = 3.93, levelRequirement = 90, cost = { ManaPerMinute = 12485, }, }, - [35] = { attackSpeedMultiplier = -55, baseMultiplier = 4.19, levelRequirement = 90, cost = { ManaPerMinute = 13835, }, }, - [36] = { attackSpeedMultiplier = -55, baseMultiplier = 4.47, levelRequirement = 90, cost = { ManaPerMinute = 15331, }, }, - [37] = { attackSpeedMultiplier = -55, baseMultiplier = 4.77, levelRequirement = 90, cost = { ManaPerMinute = 16988, }, }, - [38] = { attackSpeedMultiplier = -55, baseMultiplier = 5.09, levelRequirement = 90, cost = { ManaPerMinute = 18824, }, }, - [39] = { attackSpeedMultiplier = -55, baseMultiplier = 5.43, levelRequirement = 90, cost = { ManaPerMinute = 20859, }, }, - [40] = { attackSpeedMultiplier = -55, baseMultiplier = 5.79, levelRequirement = 90, cost = { ManaPerMinute = 23114, }, }, + [1] = { attackSpeedMultiplier = -55, baseMultiplier = 0.44, levelRequirement = 0, cost = { ManaPerMinute = 409, }, }, + [2] = { attackSpeedMultiplier = -55, baseMultiplier = 0.48, levelRequirement = 3, cost = { ManaPerMinute = 473, }, }, + [3] = { attackSpeedMultiplier = -55, baseMultiplier = 0.53, levelRequirement = 6, cost = { ManaPerMinute = 542, }, }, + [4] = { attackSpeedMultiplier = -55, baseMultiplier = 0.58, levelRequirement = 10, cost = { ManaPerMinute = 616, }, }, + [5] = { attackSpeedMultiplier = -55, baseMultiplier = 0.63, levelRequirement = 14, cost = { ManaPerMinute = 695, }, }, + [6] = { attackSpeedMultiplier = -55, baseMultiplier = 0.68, levelRequirement = 18, cost = { ManaPerMinute = 779, }, }, + [7] = { attackSpeedMultiplier = -55, baseMultiplier = 0.73, levelRequirement = 22, cost = { ManaPerMinute = 869, }, }, + [8] = { attackSpeedMultiplier = -55, baseMultiplier = 0.78, levelRequirement = 26, cost = { ManaPerMinute = 966, }, }, + [9] = { attackSpeedMultiplier = -55, baseMultiplier = 0.82, levelRequirement = 31, cost = { ManaPerMinute = 1069, }, }, + [10] = { attackSpeedMultiplier = -55, baseMultiplier = 0.87, levelRequirement = 36, cost = { ManaPerMinute = 1179, }, }, + [11] = { attackSpeedMultiplier = -55, baseMultiplier = 0.92, levelRequirement = 41, cost = { ManaPerMinute = 1297, }, }, + [12] = { attackSpeedMultiplier = -55, baseMultiplier = 0.97, levelRequirement = 46, cost = { ManaPerMinute = 1422, }, }, + [13] = { attackSpeedMultiplier = -55, baseMultiplier = 1.03, levelRequirement = 52, cost = { ManaPerMinute = 1556, }, }, + [14] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 58, cost = { ManaPerMinute = 1698, }, }, + [15] = { attackSpeedMultiplier = -55, baseMultiplier = 1.16, levelRequirement = 64, cost = { ManaPerMinute = 1849, }, }, + [16] = { attackSpeedMultiplier = -55, baseMultiplier = 1.24, levelRequirement = 66, cost = { ManaPerMinute = 2011, }, }, + [17] = { attackSpeedMultiplier = -55, baseMultiplier = 1.32, levelRequirement = 72, cost = { ManaPerMinute = 2182, }, }, + [18] = { attackSpeedMultiplier = -55, baseMultiplier = 1.4, levelRequirement = 78, cost = { ManaPerMinute = 2364, }, }, + [19] = { attackSpeedMultiplier = -55, baseMultiplier = 1.49, levelRequirement = 84, cost = { ManaPerMinute = 2558, }, }, + [20] = { attackSpeedMultiplier = -55, baseMultiplier = 1.59, levelRequirement = 90, cost = { ManaPerMinute = 2764, }, }, + [21] = { attackSpeedMultiplier = -55, baseMultiplier = 1.7, levelRequirement = 90, cost = { ManaPerMinute = 2983, }, }, + [22] = { attackSpeedMultiplier = -55, baseMultiplier = 1.81, levelRequirement = 90, cost = { ManaPerMinute = 3215, }, }, + [23] = { attackSpeedMultiplier = -55, baseMultiplier = 1.93, levelRequirement = 90, cost = { ManaPerMinute = 3461, }, }, + [24] = { attackSpeedMultiplier = -55, baseMultiplier = 2.06, levelRequirement = 90, cost = { ManaPerMinute = 3723, }, }, + [25] = { attackSpeedMultiplier = -55, baseMultiplier = 2.2, levelRequirement = 90, cost = { ManaPerMinute = 4000, }, }, + [26] = { attackSpeedMultiplier = -55, baseMultiplier = 2.35, levelRequirement = 90, cost = { ManaPerMinute = 4294, }, }, + [27] = { attackSpeedMultiplier = -55, baseMultiplier = 2.5, levelRequirement = 90, cost = { ManaPerMinute = 4605, }, }, + [28] = { attackSpeedMultiplier = -55, baseMultiplier = 2.67, levelRequirement = 90, cost = { ManaPerMinute = 4936, }, }, + [29] = { attackSpeedMultiplier = -55, baseMultiplier = 2.85, levelRequirement = 90, cost = { ManaPerMinute = 5285, }, }, + [30] = { attackSpeedMultiplier = -55, baseMultiplier = 3.04, levelRequirement = 90, cost = { ManaPerMinute = 5656, }, }, + [31] = { attackSpeedMultiplier = -55, baseMultiplier = 3.24, levelRequirement = 90, cost = { ManaPerMinute = 6048, }, }, + [32] = { attackSpeedMultiplier = -55, baseMultiplier = 3.46, levelRequirement = 90, cost = { ManaPerMinute = 6464, }, }, + [33] = { attackSpeedMultiplier = -55, baseMultiplier = 3.69, levelRequirement = 90, cost = { ManaPerMinute = 6903, }, }, + [34] = { attackSpeedMultiplier = -55, baseMultiplier = 3.93, levelRequirement = 90, cost = { ManaPerMinute = 7368, }, }, + [35] = { attackSpeedMultiplier = -55, baseMultiplier = 4.19, levelRequirement = 90, cost = { ManaPerMinute = 7860, }, }, + [36] = { attackSpeedMultiplier = -55, baseMultiplier = 4.47, levelRequirement = 90, cost = { ManaPerMinute = 8380, }, }, + [37] = { attackSpeedMultiplier = -55, baseMultiplier = 4.77, levelRequirement = 90, cost = { ManaPerMinute = 8930, }, }, + [38] = { attackSpeedMultiplier = -55, baseMultiplier = 5.09, levelRequirement = 90, cost = { ManaPerMinute = 9512, }, }, + [39] = { attackSpeedMultiplier = -55, baseMultiplier = 5.43, levelRequirement = 90, cost = { ManaPerMinute = 10126, }, }, + [40] = { attackSpeedMultiplier = -55, baseMultiplier = 5.79, levelRequirement = 90, cost = { ManaPerMinute = 10776, }, }, }, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeMultiplier = activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:DetonatingArrowStage") @@ -1158,6 +1165,7 @@ skills["DetonatingArrowPlayer"] = { "skill_can_fire_arrows", "has_modular_projectiles_enabled", "attack_speed_modifiers_apply_to_over_time_cost", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -1231,6 +1239,7 @@ skills["DetonatingArrowPlayer"] = { "skill_can_fire_arrows", "has_modular_projectiles_enabled", "attack_speed_modifiers_apply_to_over_time_cost", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", }, levels = { @@ -1244,55 +1253,55 @@ skills["DisengagePlayer"] = { baseTypeName = "Disengage", color = 2, description = "Jump back as you rupture the earth in front of you with spearpoints, damaging enemies. Consumes the Parried Debuff on Hitting enemies to release a shockwave and grant you a Frenzy Charge. This skill can be used while using other skills, and causes Strikes and Projectiles to miss you while jumping. This skill cannot be Ancestrally Boosted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Jumping] = true, [SkillType.Spear] = true, [SkillType.CanCancelActions] = true, [SkillType.Cooldown] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.GeneratesCharges] = true, [SkillType.SkillConsumesParried] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Jumping] = true, [SkillType.Spear] = true, [SkillType.CanCancelActions] = true, [SkillType.Cooldown] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.GeneratesCharges] = true, [SkillType.SkillConsumesParried] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 1 }, + { "disengage_%_chance_for_additional_shockwave", 1 }, }, levels = { [1] = { baseMultiplier = 0.85, storedUses = 1, levelRequirement = 0, cooldown = 1.5, cost = { Mana = 5, }, }, [2] = { baseMultiplier = 0.93, storedUses = 1, levelRequirement = 3, cooldown = 1.5, cost = { Mana = 6, }, }, - [3] = { baseMultiplier = 1.03, storedUses = 1, levelRequirement = 6, cooldown = 1.5, cost = { Mana = 6, }, }, - [4] = { baseMultiplier = 1.12, storedUses = 1, levelRequirement = 10, cooldown = 1.5, cost = { Mana = 7, }, }, - [5] = { baseMultiplier = 1.22, storedUses = 1, levelRequirement = 14, cooldown = 1.5, cost = { Mana = 8, }, }, - [6] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 18, cooldown = 1.5, cost = { Mana = 9, }, }, - [7] = { baseMultiplier = 1.41, storedUses = 1, levelRequirement = 22, cooldown = 1.5, cost = { Mana = 10, }, }, - [8] = { baseMultiplier = 1.5, storedUses = 1, levelRequirement = 26, cooldown = 1.5, cost = { Mana = 11, }, }, - [9] = { baseMultiplier = 1.59, storedUses = 1, levelRequirement = 31, cooldown = 1.5, cost = { Mana = 12, }, }, - [10] = { baseMultiplier = 1.68, storedUses = 1, levelRequirement = 36, cooldown = 1.5, cost = { Mana = 14, }, }, - [11] = { baseMultiplier = 1.78, storedUses = 1, levelRequirement = 41, cooldown = 1.5, cost = { Mana = 15, }, }, - [12] = { baseMultiplier = 1.88, storedUses = 1, levelRequirement = 46, cooldown = 1.5, cost = { Mana = 17, }, }, - [13] = { baseMultiplier = 2, storedUses = 1, levelRequirement = 52, cooldown = 1.5, cost = { Mana = 19, }, }, - [14] = { baseMultiplier = 2.12, storedUses = 1, levelRequirement = 58, cooldown = 1.5, cost = { Mana = 21, }, }, - [15] = { baseMultiplier = 2.25, storedUses = 1, levelRequirement = 64, cooldown = 1.5, cost = { Mana = 23, }, }, - [16] = { baseMultiplier = 2.39, storedUses = 1, levelRequirement = 66, cooldown = 1.5, cost = { Mana = 25, }, }, + [3] = { baseMultiplier = 1.03, storedUses = 1, levelRequirement = 6, cooldown = 1.5, cost = { Mana = 7, }, }, + [4] = { baseMultiplier = 1.12, storedUses = 1, levelRequirement = 10, cooldown = 1.5, cost = { Mana = 8, }, }, + [5] = { baseMultiplier = 1.22, storedUses = 1, levelRequirement = 14, cooldown = 1.5, cost = { Mana = 9, }, }, + [6] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 18, cooldown = 1.5, cost = { Mana = 10, }, }, + [7] = { baseMultiplier = 1.41, storedUses = 1, levelRequirement = 22, cooldown = 1.5, cost = { Mana = 11, }, }, + [8] = { baseMultiplier = 1.5, storedUses = 1, levelRequirement = 26, cooldown = 1.5, cost = { Mana = 12, }, }, + [9] = { baseMultiplier = 1.59, storedUses = 1, levelRequirement = 31, cooldown = 1.5, cost = { Mana = 14, }, }, + [10] = { baseMultiplier = 1.68, storedUses = 1, levelRequirement = 36, cooldown = 1.5, cost = { Mana = 15, }, }, + [11] = { baseMultiplier = 1.78, storedUses = 1, levelRequirement = 41, cooldown = 1.5, cost = { Mana = 17, }, }, + [12] = { baseMultiplier = 1.88, storedUses = 1, levelRequirement = 46, cooldown = 1.5, cost = { Mana = 18, }, }, + [13] = { baseMultiplier = 2, storedUses = 1, levelRequirement = 52, cooldown = 1.5, cost = { Mana = 20, }, }, + [14] = { baseMultiplier = 2.12, storedUses = 1, levelRequirement = 58, cooldown = 1.5, cost = { Mana = 22, }, }, + [15] = { baseMultiplier = 2.25, storedUses = 1, levelRequirement = 64, cooldown = 1.5, cost = { Mana = 24, }, }, + [16] = { baseMultiplier = 2.39, storedUses = 1, levelRequirement = 66, cooldown = 1.5, cost = { Mana = 26, }, }, [17] = { baseMultiplier = 2.54, storedUses = 1, levelRequirement = 72, cooldown = 1.5, cost = { Mana = 28, }, }, [18] = { baseMultiplier = 2.71, storedUses = 1, levelRequirement = 78, cooldown = 1.5, cost = { Mana = 31, }, }, - [19] = { baseMultiplier = 2.89, storedUses = 1, levelRequirement = 84, cooldown = 1.5, cost = { Mana = 35, }, }, - [20] = { baseMultiplier = 3.08, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 39, }, }, - [21] = { baseMultiplier = 3.28, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 43, }, }, - [22] = { baseMultiplier = 3.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 48, }, }, - [23] = { baseMultiplier = 3.74, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 53, }, }, - [24] = { baseMultiplier = 3.98, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 59, }, }, - [25] = { baseMultiplier = 4.25, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 65, }, }, - [26] = { baseMultiplier = 4.53, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 72, }, }, - [27] = { baseMultiplier = 4.84, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 80, }, }, - [28] = { baseMultiplier = 5.16, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 89, }, }, - [29] = { baseMultiplier = 5.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 98, }, }, - [30] = { baseMultiplier = 5.87, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 109, }, }, - [31] = { baseMultiplier = 6.26, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 121, }, }, - [32] = { baseMultiplier = 6.68, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 134, }, }, - [33] = { baseMultiplier = 7.12, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 148, }, }, - [34] = { baseMultiplier = 7.59, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 164, }, }, - [35] = { baseMultiplier = 8.1, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 182, }, }, - [36] = { baseMultiplier = 8.64, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 202, }, }, - [37] = { baseMultiplier = 9.22, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 224, }, }, - [38] = { baseMultiplier = 9.83, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 248, }, }, - [39] = { baseMultiplier = 10.48, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 275, }, }, - [40] = { baseMultiplier = 11.18, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 305, }, }, + [19] = { baseMultiplier = 2.89, storedUses = 1, levelRequirement = 84, cooldown = 1.5, cost = { Mana = 33, }, }, + [20] = { baseMultiplier = 3.08, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 36, }, }, + [21] = { baseMultiplier = 3.28, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 39, }, }, + [22] = { baseMultiplier = 3.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 42, }, }, + [23] = { baseMultiplier = 3.74, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 45, }, }, + [24] = { baseMultiplier = 3.98, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 49, }, }, + [25] = { baseMultiplier = 4.25, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 52, }, }, + [26] = { baseMultiplier = 4.53, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 56, }, }, + [27] = { baseMultiplier = 4.84, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 60, }, }, + [28] = { baseMultiplier = 5.16, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 65, }, }, + [29] = { baseMultiplier = 5.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 69, }, }, + [30] = { baseMultiplier = 5.87, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 74, }, }, + [31] = { baseMultiplier = 6.26, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 79, }, }, + [32] = { baseMultiplier = 6.68, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 85, }, }, + [33] = { baseMultiplier = 7.12, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 91, }, }, + [34] = { baseMultiplier = 7.59, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 97, }, }, + [35] = { baseMultiplier = 8.1, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 103, }, }, + [36] = { baseMultiplier = 8.64, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 110, }, }, + [37] = { baseMultiplier = 9.22, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 117, }, }, + [38] = { baseMultiplier = 9.83, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 125, }, }, + [39] = { baseMultiplier = 10.48, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 133, }, }, + [40] = { baseMultiplier = 11.18, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 142, }, }, }, statSets = { [1] = { @@ -1318,6 +1327,7 @@ skills["DisengagePlayer"] = { stats = { "is_area_damage", "base_skill_enabled_while_mounted", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -1383,7 +1393,9 @@ skills["DisengagePlayer"] = { stats = { "is_area_damage", "base_skill_enabled_while_mounted", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", + "quality_hide_display_character_panel", }, levels = { [1] = { baseMultiplier = 1.2, actorLevel = 1, }, @@ -1434,56 +1446,56 @@ skills["ElectrocutingArrowPlayer"] = { name = "Electrocuting Arrow", baseTypeName = "Electrocuting Arrow", color = 2, - description = "Leap forward into the air and fire downward. Hitting an enemy will attach an Electrocuting Rod to them, causing all incoming Lightning damage to build up Electrocution. This rod is removed when the enemy is next Electrocuted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.Jumping] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + description = "Fire an electrifying arrow that explodes in an Area on Hit. Hitting an enemy will attach an Electrocuting Rod to them, causing all incoming Lightning damage to build up Electrocution. This rod is removed when the enemy is next Electrocuted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.CanBecomeArrowRain] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "base_skill_effect_duration", 300 }, + { "electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target", 0.5 }, }, levels = { - [1] = { baseMultiplier = 1.4, levelRequirement = 0, cost = { Mana = 12, }, }, - [2] = { baseMultiplier = 1.54, levelRequirement = 3, cost = { Mana = 13, }, }, - [3] = { baseMultiplier = 1.71, levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { baseMultiplier = 1.87, levelRequirement = 10, cost = { Mana = 16, }, }, - [5] = { baseMultiplier = 2.03, levelRequirement = 14, cost = { Mana = 18, }, }, - [6] = { baseMultiplier = 2.2, levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { baseMultiplier = 2.38, levelRequirement = 22, cost = { Mana = 22, }, }, - [8] = { baseMultiplier = 2.54, levelRequirement = 26, cost = { Mana = 25, }, }, - [9] = { baseMultiplier = 2.7, levelRequirement = 31, cost = { Mana = 28, }, }, - [10] = { baseMultiplier = 2.87, levelRequirement = 36, cost = { Mana = 31, }, }, - [11] = { baseMultiplier = 3.06, levelRequirement = 41, cost = { Mana = 34, }, }, - [12] = { baseMultiplier = 3.26, levelRequirement = 46, cost = { Mana = 38, }, }, - [13] = { baseMultiplier = 3.49, levelRequirement = 52, cost = { Mana = 42, }, }, - [14] = { baseMultiplier = 3.73, levelRequirement = 58, cost = { Mana = 46, }, }, - [15] = { baseMultiplier = 3.99, levelRequirement = 64, cost = { Mana = 51, }, }, - [16] = { baseMultiplier = 4.28, levelRequirement = 66, cost = { Mana = 57, }, }, - [17] = { baseMultiplier = 4.59, levelRequirement = 72, cost = { Mana = 63, }, }, - [18] = { baseMultiplier = 4.93, levelRequirement = 78, cost = { Mana = 70, }, }, - [19] = { baseMultiplier = 5.31, levelRequirement = 84, cost = { Mana = 78, }, }, - [20] = { baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 86, }, }, - [21] = { baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 96, }, }, - [22] = { baseMultiplier = 6.63, levelRequirement = 90, cost = { Mana = 106, }, }, - [23] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 118, }, }, - [24] = { baseMultiplier = 7.7, levelRequirement = 90, cost = { Mana = 130, }, }, - [25] = { baseMultiplier = 8.29, levelRequirement = 90, cost = { Mana = 145, }, }, - [26] = { baseMultiplier = 8.93, levelRequirement = 90, cost = { Mana = 160, }, }, - [27] = { baseMultiplier = 9.63, levelRequirement = 90, cost = { Mana = 178, }, }, - [28] = { baseMultiplier = 10.37, levelRequirement = 90, cost = { Mana = 197, }, }, - [29] = { baseMultiplier = 11.17, levelRequirement = 90, cost = { Mana = 218, }, }, - [30] = { baseMultiplier = 12.03, levelRequirement = 90, cost = { Mana = 242, }, }, - [31] = { baseMultiplier = 12.96, levelRequirement = 90, cost = { Mana = 268, }, }, - [32] = { baseMultiplier = 13.97, levelRequirement = 90, cost = { Mana = 297, }, }, - [33] = { baseMultiplier = 15.05, levelRequirement = 90, cost = { Mana = 329, }, }, - [34] = { baseMultiplier = 16.21, levelRequirement = 90, cost = { Mana = 365, }, }, - [35] = { baseMultiplier = 17.46, levelRequirement = 90, cost = { Mana = 404, }, }, - [36] = { baseMultiplier = 18.81, levelRequirement = 90, cost = { Mana = 448, }, }, - [37] = { baseMultiplier = 20.27, levelRequirement = 90, cost = { Mana = 497, }, }, - [38] = { baseMultiplier = 21.83, levelRequirement = 90, cost = { Mana = 550, }, }, - [39] = { baseMultiplier = 23.52, levelRequirement = 90, cost = { Mana = 610, }, }, - [40] = { baseMultiplier = 25.34, levelRequirement = 90, cost = { Mana = 676, }, }, + [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { attackSpeedMultiplier = -20, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 28, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 33, }, }, + [17] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 36, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 39, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 42, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 46, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 49, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 53, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 57, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 62, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 66, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 71, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 76, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 82, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 88, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 94, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 100, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 107, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 114, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 122, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 130, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 139, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 148, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 158, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 168, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 179, }, }, }, statSets = { [1] = { @@ -1501,10 +1513,12 @@ skills["ElectrocutingArrowPlayer"] = { duration = true, }, constantStats = { - { "attack_maximum_action_distance_+", -95 }, { "base_skill_effect_duration", 25000 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 50 }, - { "total_attack_time_+_ms", 1200 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_is_projectile", @@ -1513,10 +1527,12 @@ skills["ElectrocutingArrowPlayer"] = { "check_for_targets_between_initiator_and_projectile_source", "skill_can_fire_arrows", "has_modular_projectiles_enabled", - "projectiles_fire_at_ground", "cannot_pierce", "base_projectiles_cannot_chain", "quality_display_base_skill_effect_duration_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "should_use_additive_aiming_animation", + "can_perform_skill_while_moving", }, levels = { [1] = { actorLevel = 1, }, @@ -1567,8 +1583,8 @@ skills["ElementalSiphonPlayer"] = { name = "Elemental Siphon", baseTypeName = "Elemental Siphon", color = 2, - description = "Dash to an enemy and nullify their Resistance. Hitting an enemy with positive Elemental Resistance will reduce their highest Elemental Resistance to 0 for a duration and triggers Infuse Weapon, granting your Spear the maximum possible Elemental Infusion corresponding to the removed Resistance. If this skill doesn't remove any Resistances, its cooldown is reset. This skill cannot be Ancestrally Boosted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Spear] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, }, + description = "Dash to an enemy and nullify their Resistance. Hitting an enemy with positive Elemental Resistance will reduce their highest Elemental Resistance to 0 for a duration and triggers Infuse Weapon, granting your Spear the maximum possible Surges corresponding to the removed Resistance. If this skill doesn't remove any Resistances, its cooldown is reset. This skill cannot be Ancestrally Boosted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Spear] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -1578,44 +1594,44 @@ skills["ElementalSiphonPlayer"] = { levels = { [1] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.3, cooldown = 8, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.43, cooldown = 8, levelRequirement = 3, cost = { Mana = 10, }, }, - [3] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.58, cooldown = 8, levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.73, cooldown = 8, levelRequirement = 10, cost = { Mana = 12, }, }, - [5] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.89, cooldown = 8, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.04, cooldown = 8, levelRequirement = 18, cost = { Mana = 15, }, }, - [7] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.21, cooldown = 8, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.36, cooldown = 8, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.51, cooldown = 8, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.67, cooldown = 8, levelRequirement = 36, cost = { Mana = 23, }, }, - [11] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.84, cooldown = 8, levelRequirement = 41, cost = { Mana = 26, }, }, - [12] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.03, cooldown = 8, levelRequirement = 46, cost = { Mana = 29, }, }, - [13] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.24, cooldown = 8, levelRequirement = 52, cost = { Mana = 32, }, }, - [14] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.46, cooldown = 8, levelRequirement = 58, cost = { Mana = 35, }, }, - [15] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.7, cooldown = 8, levelRequirement = 64, cost = { Mana = 39, }, }, - [16] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.97, cooldown = 8, levelRequirement = 66, cost = { Mana = 43, }, }, + [3] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.58, cooldown = 8, levelRequirement = 6, cost = { Mana = 12, }, }, + [4] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.73, cooldown = 8, levelRequirement = 10, cost = { Mana = 13, }, }, + [5] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.89, cooldown = 8, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.04, cooldown = 8, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.21, cooldown = 8, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.36, cooldown = 8, levelRequirement = 26, cost = { Mana = 21, }, }, + [9] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.51, cooldown = 8, levelRequirement = 31, cost = { Mana = 23, }, }, + [10] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.67, cooldown = 8, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.84, cooldown = 8, levelRequirement = 41, cost = { Mana = 28, }, }, + [12] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.03, cooldown = 8, levelRequirement = 46, cost = { Mana = 31, }, }, + [13] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.24, cooldown = 8, levelRequirement = 52, cost = { Mana = 34, }, }, + [14] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.46, cooldown = 8, levelRequirement = 58, cost = { Mana = 37, }, }, + [15] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.7, cooldown = 8, levelRequirement = 64, cost = { Mana = 41, }, }, + [16] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.97, cooldown = 8, levelRequirement = 66, cost = { Mana = 44, }, }, [17] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.26, cooldown = 8, levelRequirement = 72, cost = { Mana = 48, }, }, - [18] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.58, cooldown = 8, levelRequirement = 78, cost = { Mana = 53, }, }, - [19] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.93, cooldown = 8, levelRequirement = 84, cost = { Mana = 59, }, }, - [20] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.31, cooldown = 8, levelRequirement = 90, cost = { Mana = 65, }, }, - [21] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.72, cooldown = 8, levelRequirement = 90, cost = { Mana = 73, }, }, - [22] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.16, cooldown = 8, levelRequirement = 90, cost = { Mana = 80, }, }, - [23] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.64, cooldown = 8, levelRequirement = 90, cost = { Mana = 89, }, }, - [24] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.15, cooldown = 8, levelRequirement = 90, cost = { Mana = 99, }, }, - [25] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.7, cooldown = 8, levelRequirement = 90, cost = { Mana = 110, }, }, - [26] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.3, cooldown = 8, levelRequirement = 90, cost = { Mana = 122, }, }, - [27] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.94, cooldown = 8, levelRequirement = 90, cost = { Mana = 135, }, }, - [28] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 9.63, cooldown = 8, levelRequirement = 90, cost = { Mana = 149, }, }, - [29] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 10.37, cooldown = 8, levelRequirement = 90, cost = { Mana = 166, }, }, - [30] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 11.17, cooldown = 8, levelRequirement = 90, cost = { Mana = 184, }, }, - [31] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.04, cooldown = 8, levelRequirement = 90, cost = { Mana = 203, }, }, - [32] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 226, }, }, - [33] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 13.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 250, }, }, - [34] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 15.05, cooldown = 8, levelRequirement = 90, cost = { Mana = 277, }, }, - [35] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 16.21, cooldown = 8, levelRequirement = 90, cost = { Mana = 307, }, }, - [36] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 17.47, cooldown = 8, levelRequirement = 90, cost = { Mana = 340, }, }, - [37] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 18.82, cooldown = 8, levelRequirement = 90, cost = { Mana = 377, }, }, - [38] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 20.27, cooldown = 8, levelRequirement = 90, cost = { Mana = 418, }, }, - [39] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 21.84, cooldown = 8, levelRequirement = 90, cost = { Mana = 463, }, }, - [40] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 23.53, cooldown = 8, levelRequirement = 90, cost = { Mana = 513, }, }, + [18] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.58, cooldown = 8, levelRequirement = 78, cost = { Mana = 52, }, }, + [19] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.93, cooldown = 8, levelRequirement = 84, cost = { Mana = 56, }, }, + [20] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.31, cooldown = 8, levelRequirement = 90, cost = { Mana = 61, }, }, + [21] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.72, cooldown = 8, levelRequirement = 90, cost = { Mana = 66, }, }, + [22] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.16, cooldown = 8, levelRequirement = 90, cost = { Mana = 71, }, }, + [23] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.64, cooldown = 8, levelRequirement = 90, cost = { Mana = 76, }, }, + [24] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.15, cooldown = 8, levelRequirement = 90, cost = { Mana = 82, }, }, + [25] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.7, cooldown = 8, levelRequirement = 90, cost = { Mana = 88, }, }, + [26] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.3, cooldown = 8, levelRequirement = 90, cost = { Mana = 95, }, }, + [27] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.94, cooldown = 8, levelRequirement = 90, cost = { Mana = 102, }, }, + [28] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 9.63, cooldown = 8, levelRequirement = 90, cost = { Mana = 109, }, }, + [29] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 10.37, cooldown = 8, levelRequirement = 90, cost = { Mana = 117, }, }, + [30] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 11.17, cooldown = 8, levelRequirement = 90, cost = { Mana = 125, }, }, + [31] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.04, cooldown = 8, levelRequirement = 90, cost = { Mana = 134, }, }, + [32] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 143, }, }, + [33] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 13.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 153, }, }, + [34] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 15.05, cooldown = 8, levelRequirement = 90, cost = { Mana = 163, }, }, + [35] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 16.21, cooldown = 8, levelRequirement = 90, cost = { Mana = 174, }, }, + [36] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 17.47, cooldown = 8, levelRequirement = 90, cost = { Mana = 186, }, }, + [37] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 18.82, cooldown = 8, levelRequirement = 90, cost = { Mana = 198, }, }, + [38] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 20.27, cooldown = 8, levelRequirement = 90, cost = { Mana = 211, }, }, + [39] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 21.84, cooldown = 8, levelRequirement = 90, cost = { Mana = 225, }, }, + [40] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 23.53, cooldown = 8, levelRequirement = 90, cost = { Mana = 239, }, }, }, statSets = { [1] = { @@ -1875,7 +1891,7 @@ skills["ElementalSunderingPlayer"] = { baseTypeName = "Elemental Sundering", color = 2, description = "Plunge your Spear into the ground to emit a pulse that Consumes Freeze, Shock and Ignite on a number of nearby enemies, Allies and Corpses. The pulse itself deals no damage, but each Ailment Consumed causes an explosion of the corresponding elemental damage type.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.Melee] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Nova] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.SkillConsumesIgnite] = true, [SkillType.SkillConsumesShock] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.Melee] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Nova] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.SkillConsumesIgnite] = true, [SkillType.SkillConsumesShock] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -1887,43 +1903,43 @@ skills["ElementalSunderingPlayer"] = { [1] = { attackSpeedMultiplier = -45, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { attackSpeedMultiplier = -45, levelRequirement = 3, cost = { Mana = 8, }, }, [3] = { attackSpeedMultiplier = -45, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { attackSpeedMultiplier = -45, levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { attackSpeedMultiplier = -45, levelRequirement = 14, cost = { Mana = 11, }, }, - [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { attackSpeedMultiplier = -45, levelRequirement = 22, cost = { Mana = 14, }, }, - [8] = { attackSpeedMultiplier = -45, levelRequirement = 26, cost = { Mana = 15, }, }, - [9] = { attackSpeedMultiplier = -45, levelRequirement = 31, cost = { Mana = 17, }, }, - [10] = { attackSpeedMultiplier = -45, levelRequirement = 36, cost = { Mana = 19, }, }, - [11] = { attackSpeedMultiplier = -45, levelRequirement = 41, cost = { Mana = 21, }, }, - [12] = { attackSpeedMultiplier = -45, levelRequirement = 46, cost = { Mana = 23, }, }, - [13] = { attackSpeedMultiplier = -45, levelRequirement = 52, cost = { Mana = 26, }, }, - [14] = { attackSpeedMultiplier = -45, levelRequirement = 58, cost = { Mana = 29, }, }, - [15] = { attackSpeedMultiplier = -45, levelRequirement = 64, cost = { Mana = 32, }, }, - [16] = { attackSpeedMultiplier = -45, levelRequirement = 66, cost = { Mana = 35, }, }, + [4] = { attackSpeedMultiplier = -45, levelRequirement = 10, cost = { Mana = 11, }, }, + [5] = { attackSpeedMultiplier = -45, levelRequirement = 14, cost = { Mana = 12, }, }, + [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 14, }, }, + [7] = { attackSpeedMultiplier = -45, levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { attackSpeedMultiplier = -45, levelRequirement = 26, cost = { Mana = 17, }, }, + [9] = { attackSpeedMultiplier = -45, levelRequirement = 31, cost = { Mana = 19, }, }, + [10] = { attackSpeedMultiplier = -45, levelRequirement = 36, cost = { Mana = 21, }, }, + [11] = { attackSpeedMultiplier = -45, levelRequirement = 41, cost = { Mana = 23, }, }, + [12] = { attackSpeedMultiplier = -45, levelRequirement = 46, cost = { Mana = 25, }, }, + [13] = { attackSpeedMultiplier = -45, levelRequirement = 52, cost = { Mana = 28, }, }, + [14] = { attackSpeedMultiplier = -45, levelRequirement = 58, cost = { Mana = 30, }, }, + [15] = { attackSpeedMultiplier = -45, levelRequirement = 64, cost = { Mana = 33, }, }, + [16] = { attackSpeedMultiplier = -45, levelRequirement = 66, cost = { Mana = 36, }, }, [17] = { attackSpeedMultiplier = -45, levelRequirement = 72, cost = { Mana = 39, }, }, - [18] = { attackSpeedMultiplier = -45, levelRequirement = 78, cost = { Mana = 43, }, }, - [19] = { attackSpeedMultiplier = -45, levelRequirement = 84, cost = { Mana = 48, }, }, - [20] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 53, }, }, - [21] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 59, }, }, - [22] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 66, }, }, - [23] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 73, }, }, - [24] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 81, }, }, - [25] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 90, }, }, - [26] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 99, }, }, - [27] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 110, }, }, - [28] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 122, }, }, - [29] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 135, }, }, - [30] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 150, }, }, - [31] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 166, }, }, - [32] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 184, }, }, - [33] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 204, }, }, - [34] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 226, }, }, - [35] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 251, }, }, - [36] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 278, }, }, - [37] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 308, }, }, - [38] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 342, }, }, - [39] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 379, }, }, - [40] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 420, }, }, + [18] = { attackSpeedMultiplier = -45, levelRequirement = 78, cost = { Mana = 42, }, }, + [19] = { attackSpeedMultiplier = -45, levelRequirement = 84, cost = { Mana = 46, }, }, + [20] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 50, }, }, + [21] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 54, }, }, + [22] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 58, }, }, + [23] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 62, }, }, + [24] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 67, }, }, + [25] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 72, }, }, + [26] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 78, }, }, + [27] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 83, }, }, + [28] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 89, }, }, + [29] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 96, }, }, + [30] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 102, }, }, + [31] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 109, }, }, + [32] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 117, }, }, + [33] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 125, }, }, + [34] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 133, }, }, + [35] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 142, }, }, + [36] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 152, }, }, + [37] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 162, }, }, + [38] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 172, }, }, + [39] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 184, }, }, + [40] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 195, }, }, }, statSets = { [1] = { @@ -1934,7 +1950,7 @@ skills["ElementalSunderingPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 50 }, - { "elemental_sundering_number_of_explosion_allowed", 9 }, + { "elemental_sundering_number_of_explosion_allowed", 20 }, }, stats = { "base_deal_no_damage", @@ -1993,9 +2009,10 @@ skills["ElementalSunderingPlayer"] = { area = true, }, constantStats = { - { "elemental_sundering_number_of_explosion_allowed", 9 }, + { "elemental_sundering_number_of_explosion_allowed", 20 }, { "active_skill_base_area_of_effect_radius", 16 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "elemental_sundering_damage_+%_final_if_created_from_unique", 50 }, }, stats = { "base_skill_show_average_damage_instead_of_dps", @@ -2004,46 +2021,46 @@ skills["ElementalSunderingPlayer"] = { "active_skill_never_freeze_shock_ignite", }, levels = { - [1] = { baseMultiplier = 2.5, actorLevel = 1, }, - [2] = { baseMultiplier = 2.76, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 3.04, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 3.34, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 3.63, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 3.93, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 4.24, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 4.54, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 4.83, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 5.13, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 5.47, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 5.83, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 6.23, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 6.66, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 7.12, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 7.64, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 8.19, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 8.81, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 9.47, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 10.21, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 11, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 11.85, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 12.76, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 13.75, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 14.81, actorLevel = 136.875, }, - [26] = { baseMultiplier = 15.96, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 17.19, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 18.52, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 19.95, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 21.49, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 23.15, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 24.94, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 26.87, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 28.95, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 31.18, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 33.59, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 36.19, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 38.99, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 42, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 45.25, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 3.5, actorLevel = 1, }, + [2] = { baseMultiplier = 3.86, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 4.26, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 4.67, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 5.08, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 5.5, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 5.94, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 6.36, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 6.76, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 7.19, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 7.65, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 8.16, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 8.72, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 9.32, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 9.97, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 10.69, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 11.47, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 12.33, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 13.26, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 14.29, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 15.39, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 16.58, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 17.87, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 19.25, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 20.73, actorLevel = 136.875, }, + [26] = { baseMultiplier = 22.34, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 24.06, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 25.92, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 27.93, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 30.09, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 32.41, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 34.92, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 37.62, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 40.52, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 43.66, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 47.03, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 50.66, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 54.58, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 58.8, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 63.34, actorLevel = 288.29998779297, }, }, }, [3] = { @@ -2055,7 +2072,7 @@ skills["ElementalSunderingPlayer"] = { area = true, }, constantStats = { - { "elemental_sundering_number_of_explosion_allowed", 9 }, + { "elemental_sundering_number_of_explosion_allowed", 20 }, { "active_skill_base_area_of_effect_radius", 16 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, }, @@ -2117,7 +2134,7 @@ skills["ElementalSunderingPlayer"] = { area = true, }, constantStats = { - { "elemental_sundering_number_of_explosion_allowed", 9 }, + { "elemental_sundering_number_of_explosion_allowed", 20 }, { "active_skill_base_area_of_effect_radius", 16 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, }, @@ -2176,8 +2193,8 @@ skills["EscapeShotPlayer"] = { name = "Escape Shot", baseTypeName = "Escape Shot", color = 2, - description = "Leap backwards and fire an arrow which can Chill or Freeze enemies around the location you escaped from.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Cooldown] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CanCancelActions] = true, }, + description = "Leap backwards, firing an icy arrow which can Chill or Freeze enemies around the location from which you escaped. This arrow will create Ice Fragments on impact.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CanCancelActions] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -2188,49 +2205,49 @@ skills["EscapeShotPlayer"] = { levels = { [1] = { baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 11, }, }, [2] = { baseMultiplier = 0.72, levelRequirement = 3, cost = { Mana = 12, }, }, - [3] = { baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 13, }, }, - [4] = { baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 17, }, }, - [6] = { baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 19, }, }, - [7] = { baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 21, }, }, - [8] = { baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 23, }, }, - [9] = { baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 25, }, }, - [10] = { baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 28, }, }, - [11] = { baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 31, }, }, - [12] = { baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 35, }, }, - [13] = { baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 39, }, }, - [14] = { baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 43, }, }, - [15] = { baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 47, }, }, - [16] = { baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 53, }, }, + [3] = { baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 14, }, }, + [4] = { baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 16, }, }, + [5] = { baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 18, }, }, + [6] = { baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 21, }, }, + [7] = { baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 23, }, }, + [8] = { baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 26, }, }, + [9] = { baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 28, }, }, + [10] = { baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 31, }, }, + [11] = { baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 35, }, }, + [12] = { baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 38, }, }, + [13] = { baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 42, }, }, + [14] = { baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 45, }, }, + [15] = { baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 49, }, }, + [16] = { baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 54, }, }, [17] = { baseMultiplier = 2.13, levelRequirement = 72, cost = { Mana = 58, }, }, - [18] = { baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 65, }, }, - [19] = { baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 72, }, }, - [20] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 80, }, }, - [21] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 88, }, }, - [22] = { baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 98, }, }, - [23] = { baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 108, }, }, - [24] = { baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 120, }, }, - [25] = { baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 133, }, }, - [26] = { baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 148, }, }, - [27] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 164, }, }, - [28] = { baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 182, }, }, - [29] = { baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 201, }, }, - [30] = { baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 223, }, }, - [31] = { baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 247, }, }, - [32] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 274, }, }, - [33] = { baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 304, }, }, - [34] = { baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 336, }, }, - [35] = { baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 373, }, }, - [36] = { baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 413, }, }, - [37] = { baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 458, }, }, - [38] = { baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 508, }, }, - [39] = { baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 563, }, }, - [40] = { baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 623, }, }, + [18] = { baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 63, }, }, + [19] = { baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 69, }, }, + [20] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 74, }, }, + [21] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 80, }, }, + [22] = { baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 86, }, }, + [23] = { baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 93, }, }, + [24] = { baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 100, }, }, + [25] = { baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 107, }, }, + [26] = { baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 115, }, }, + [27] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 124, }, }, + [28] = { baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 133, }, }, + [29] = { baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 142, }, }, + [30] = { baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 152, }, }, + [31] = { baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 163, }, }, + [32] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 174, }, }, + [33] = { baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 186, }, }, + [34] = { baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 198, }, }, + [35] = { baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 212, }, }, + [36] = { baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 226, }, }, + [37] = { baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 241, }, }, + [38] = { baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 256, }, }, + [39] = { baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 273, }, }, + [40] = { baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 290, }, }, }, statSets = { [1] = { label = "Escape Shot", - incrementalEffectiveness = 0.092720001935959, + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "escape_shot", baseFlags = { attack = true, @@ -2239,7 +2256,7 @@ skills["EscapeShotPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 24 }, - { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 }, { "total_attack_time_+_ms", 700 }, { "projectile_distance_override", 20 }, }, @@ -2301,12 +2318,132 @@ skills["EscapeShotPlayer"] = { }, } } +skills["EscapeShotIceFragmentPlayer"] = { + name = "Ice Fragments", + hidden = true, + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 0.55, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.6, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.67, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.73, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.78, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.84, levelRequirement = 0, }, + [7] = { baseMultiplier = 0.9, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.96, levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { baseMultiplier = 1.05, levelRequirement = 0, }, + [11] = { baseMultiplier = 1.11, levelRequirement = 0, }, + [12] = { baseMultiplier = 1.16, levelRequirement = 0, }, + [13] = { baseMultiplier = 1.22, levelRequirement = 0, }, + [14] = { baseMultiplier = 1.28, levelRequirement = 0, }, + [15] = { baseMultiplier = 1.34, levelRequirement = 0, }, + [16] = { baseMultiplier = 1.41, levelRequirement = 0, }, + [17] = { baseMultiplier = 1.48, levelRequirement = 0, }, + [18] = { baseMultiplier = 1.56, levelRequirement = 0, }, + [19] = { baseMultiplier = 1.63, levelRequirement = 0, }, + [20] = { baseMultiplier = 1.72, levelRequirement = 0, }, + [21] = { baseMultiplier = 1.8, levelRequirement = 0, }, + [22] = { baseMultiplier = 1.89, levelRequirement = 0, }, + [23] = { baseMultiplier = 1.99, levelRequirement = 0, }, + [24] = { baseMultiplier = 2.09, levelRequirement = 0, }, + [25] = { baseMultiplier = 2.19, levelRequirement = 0, }, + [26] = { baseMultiplier = 2.3, levelRequirement = 0, }, + [27] = { baseMultiplier = 2.41, levelRequirement = 0, }, + [28] = { baseMultiplier = 2.53, levelRequirement = 0, }, + [29] = { baseMultiplier = 2.66, levelRequirement = 0, }, + [30] = { baseMultiplier = 2.79, levelRequirement = 0, }, + [31] = { baseMultiplier = 2.93, levelRequirement = 0, }, + [32] = { baseMultiplier = 3.08, levelRequirement = 0, }, + [33] = { baseMultiplier = 3.23, levelRequirement = 0, }, + [34] = { baseMultiplier = 3.4, levelRequirement = 0, }, + [35] = { baseMultiplier = 3.57, levelRequirement = 0, }, + [36] = { baseMultiplier = 3.74, levelRequirement = 0, }, + [37] = { baseMultiplier = 3.93, levelRequirement = 0, }, + [38] = { baseMultiplier = 4.13, levelRequirement = 0, }, + [39] = { baseMultiplier = 4.33, levelRequirement = 0, }, + [40] = { baseMultiplier = 4.55, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ice Fragments", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ballistic_ice_projectile", + baseFlags = { + attack = true, + projectile = true, + area = true, + }, + constantStats = { + { "trigger_ballistic_ice_chunk_on_hit_frozen_target", 100 }, + { "active_skill_base_area_of_effect_radius", 13 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "ballistic_ice_chunk_cone_angle", 360 }, + { "base_skill_detonation_time", 2500 }, + { "base_number_of_projectiles", 4 }, + { "triggered_by_escape_shot_%", 100 }, + }, + stats = { + "base_is_projectile", + "ballistic_projectiles_always_bounce", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "is_area_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} skills["ExplosiveSpearPlayer"] = { name = "Explosive Spear", baseTypeName = "Explosive Spear", color = 2, description = "Hurl a single payload Spear that pierces through enemies and lodges in terrain where it lands. The Spear will explode at the end of its Detonation Time or if Detonated. Consumes a Frenzy Charge if you have one to explode immediately, dealing more damage in a cross-shaped area and creating Ignited Ground.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.CanRapidFire] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.CannotChain] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.CannotChain] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -2319,42 +2456,42 @@ skills["ExplosiveSpearPlayer"] = { [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 5, }, }, [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 6, }, }, [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 7, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 8, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 9, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 10, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 11, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 13, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 14, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 16, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 18, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 20, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 22, }, }, - [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 24, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 8, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 9, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 10, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 12, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 13, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 14, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 16, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 17, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 19, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 21, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 23, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 25, }, }, [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 27, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 30, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 33, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 37, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 41, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 45, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 50, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 55, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 61, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 68, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 76, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 84, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 93, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 103, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 114, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 126, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 140, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 155, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 172, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 191, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 212, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 235, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 260, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 288, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 29, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 31, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 34, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 37, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 40, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 43, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 46, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 49, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 53, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 57, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 61, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 65, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 70, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 75, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 80, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 86, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 91, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 98, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 104, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 111, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 118, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 126, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 134, }, }, }, statSets = { [1] = { @@ -2368,7 +2505,7 @@ skills["ExplosiveSpearPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_remote_spear_mines_allowed", 1 }, { "base_skill_detonation_time", 2500 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, @@ -2443,7 +2580,7 @@ skills["ExplosiveSpearPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_remote_spear_mines_allowed", 1 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, { "remote_spear_mine_minimum_target_distance", 10 }, @@ -2519,14 +2656,14 @@ skills["ExplosiveSpearPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_remote_spear_mines_allowed", 1 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, { "remote_spear_mine_minimum_target_distance", 10 }, { "active_skill_base_secondary_area_of_effect_radius", 15 }, { "active_skill_base_tertiary_area_of_effect_radius", 20 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, - { "base_skill_effect_duration", 4000 }, + { "base_skill_effect_duration", 8000 }, }, stats = { "base_is_projectile", @@ -2592,56 +2729,56 @@ skills["FangsOfFrostPlayer"] = { name = "Fangs of Frost", baseTypeName = "Fangs of Frost", color = 2, - description = "Perform an icy stab that exploits enemies who are already off balance. Hitting a Parried target Consumes the Debuff to cause a nova of frost and leave Chilled Ground.", + description = "Perform an icy stab that exploits enemies who are already off balance. Hitting a Parried target Consumes the Debuff to cause an explosion of frost and leave Chilled Ground.", skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.Cold] = true, [SkillType.SkillConsumesParried] = true, [SkillType.CreatesGroundEffect] = true, }, weaponTypes = { ["Spear"] = true, }, castTime = 1, qualityStats = { - { "melee_range_+", 0.2 }, + { "chance_to_not_consume_parried_%", 0.75 }, }, levels = { [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 4, }, }, [2] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, levelRequirement = 3, cost = { Mana = 5, }, }, [3] = { attackSpeedMultiplier = -15, baseMultiplier = 1.15, levelRequirement = 6, cost = { Mana = 6, }, }, - [4] = { attackSpeedMultiplier = -15, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 6, }, }, - [5] = { attackSpeedMultiplier = -15, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 7, }, }, - [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 8, }, }, - [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 9, }, }, - [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 10, }, }, - [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 11, }, }, - [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 12, }, }, - [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 13, }, }, - [12] = { attackSpeedMultiplier = -15, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 15, }, }, - [13] = { attackSpeedMultiplier = -15, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 16, }, }, - [14] = { attackSpeedMultiplier = -15, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 18, }, }, - [15] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 20, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 7, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 8, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 9, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 10, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 11, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 12, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 13, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 15, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 16, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 18, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 19, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 21, }, }, [16] = { attackSpeedMultiplier = -15, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 23, }, }, [17] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, levelRequirement = 72, cost = { Mana = 25, }, }, - [18] = { attackSpeedMultiplier = -15, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 28, }, }, - [19] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 31, }, }, - [20] = { attackSpeedMultiplier = -15, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 34, }, }, - [21] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 38, }, }, - [22] = { attackSpeedMultiplier = -15, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 42, }, }, - [23] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 47, }, }, - [24] = { attackSpeedMultiplier = -15, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 52, }, }, - [25] = { attackSpeedMultiplier = -15, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 58, }, }, - [26] = { attackSpeedMultiplier = -15, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 64, }, }, - [27] = { attackSpeedMultiplier = -15, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 71, }, }, - [28] = { attackSpeedMultiplier = -15, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 79, }, }, - [29] = { attackSpeedMultiplier = -15, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 87, }, }, - [30] = { attackSpeedMultiplier = -15, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 97, }, }, - [31] = { attackSpeedMultiplier = -15, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 107, }, }, - [32] = { attackSpeedMultiplier = -15, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 119, }, }, - [33] = { attackSpeedMultiplier = -15, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 132, }, }, - [34] = { attackSpeedMultiplier = -15, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 146, }, }, - [35] = { attackSpeedMultiplier = -15, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 162, }, }, - [36] = { attackSpeedMultiplier = -15, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 180, }, }, - [37] = { attackSpeedMultiplier = -15, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 199, }, }, - [38] = { attackSpeedMultiplier = -15, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 221, }, }, - [39] = { attackSpeedMultiplier = -15, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 245, }, }, - [40] = { attackSpeedMultiplier = -15, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 271, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 27, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 30, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 32, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 35, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 37, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 40, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 43, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 46, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 50, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 54, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 57, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 62, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 66, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 71, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 75, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 81, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 86, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 92, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 98, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 104, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 111, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 118, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 126, }, }, }, statSets = { [1] = { @@ -2664,6 +2801,7 @@ skills["FangsOfFrostPlayer"] = { "cannot_cancel_skill_before_contact_point", "is_area_damage", "consume_parried_on_hit", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 50, statInterpolation = { 1, }, actorLevel = 1, }, @@ -2709,7 +2847,7 @@ skills["FangsOfFrostPlayer"] = { }, }, [2] = { - label = "Nova", + label = "Explosion", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "frostwhirl", baseFlags = { @@ -2732,50 +2870,52 @@ skills["FangsOfFrostPlayer"] = { "cannot_cancel_skill_before_contact_point", "is_area_damage", "consume_parried_on_hit", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "base_skill_show_average_damage_instead_of_dps", + "quality_hide_display_character_panel", }, levels = { - [1] = { 50, 100, baseMultiplier = 1.1, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 53, 106, baseMultiplier = 1.21, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 56, 112, baseMultiplier = 1.34, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 59, 118, baseMultiplier = 1.47, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 62, 124, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 65, 130, baseMultiplier = 1.73, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 68, 136, baseMultiplier = 1.87, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 71, 142, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 74, 148, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 77, 154, baseMultiplier = 2.26, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 80, 160, baseMultiplier = 2.41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 83, 166, baseMultiplier = 2.57, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 86, 172, baseMultiplier = 2.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 89, 178, baseMultiplier = 2.93, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 92, 184, baseMultiplier = 3.13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 95, 190, baseMultiplier = 3.36, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 98, 196, baseMultiplier = 3.61, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 101, 202, baseMultiplier = 3.87, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 104, 208, baseMultiplier = 4.17, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 107, 214, baseMultiplier = 4.49, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 110, 220, baseMultiplier = 4.84, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 113, 226, baseMultiplier = 5.21, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 116, 232, baseMultiplier = 5.62, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 119, 238, baseMultiplier = 6.05, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 122, 244, baseMultiplier = 6.52, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 125, 250, baseMultiplier = 7.02, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 128, 256, baseMultiplier = 7.56, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 131, 262, baseMultiplier = 8.15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 134, 268, baseMultiplier = 8.78, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 137, 274, baseMultiplier = 9.46, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 138, 277, baseMultiplier = 10.19, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 140, 280, baseMultiplier = 10.97, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 141, 283, baseMultiplier = 11.82, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 143, 286, baseMultiplier = 12.74, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 144, 289, baseMultiplier = 13.72, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 146, 292, baseMultiplier = 14.78, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 147, 295, baseMultiplier = 15.92, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 149, 298, baseMultiplier = 17.15, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 150, 301, baseMultiplier = 18.48, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 152, 304, baseMultiplier = 19.91, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 50, 150, baseMultiplier = 1.1, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 53, 159, baseMultiplier = 1.21, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 56, 168, baseMultiplier = 1.34, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 59, 177, baseMultiplier = 1.47, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 62, 186, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 65, 195, baseMultiplier = 1.73, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 68, 204, baseMultiplier = 1.87, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 71, 213, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 74, 222, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 77, 231, baseMultiplier = 2.26, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 80, 240, baseMultiplier = 2.41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 83, 249, baseMultiplier = 2.57, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 86, 258, baseMultiplier = 2.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 89, 267, baseMultiplier = 2.93, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 92, 276, baseMultiplier = 3.13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 95, 285, baseMultiplier = 3.36, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 98, 294, baseMultiplier = 3.61, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 101, 303, baseMultiplier = 3.87, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 104, 312, baseMultiplier = 4.17, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 107, 321, baseMultiplier = 4.49, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 110, 330, baseMultiplier = 4.84, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 113, 339, baseMultiplier = 5.21, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 116, 348, baseMultiplier = 5.62, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 119, 357, baseMultiplier = 6.05, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 122, 366, baseMultiplier = 6.52, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 125, 375, baseMultiplier = 7.02, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 128, 384, baseMultiplier = 7.56, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 131, 393, baseMultiplier = 8.15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 134, 402, baseMultiplier = 8.78, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 137, 411, baseMultiplier = 9.46, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 138, 420, baseMultiplier = 10.19, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 140, 429, baseMultiplier = 10.97, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 141, 438, baseMultiplier = 11.82, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 143, 447, baseMultiplier = 12.74, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 144, 456, baseMultiplier = 13.72, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 146, 465, baseMultiplier = 14.78, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 147, 474, baseMultiplier = 15.92, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 149, 483, baseMultiplier = 17.15, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 150, 492, baseMultiplier = 18.48, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 152, 501, baseMultiplier = 19.91, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2784,56 +2924,56 @@ skills["FreezingSalvoPlayer"] = { name = "Freezing Salvo", baseTypeName = "Freezing Salvo", color = 2, - description = "Passively coalesces icy missiles from the air over time. Using the skill fires a missile, firing an additional missile for each that has been accumulated.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, [SkillType.HasSeals] = true, [SkillType.GroundTargetedProjectile] = true, }, + description = "Passively coalesces icy missiles from the air over time. Using the skill fires a missile, firing an additional missile for each that has been accumulated. Fires an additional missile, up to its current missile count, targeting each Ice Fragment in its Area of effect, causing the Fragments to Detonate immediately.", + skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.HasSeals] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "freezing_salvo_seals_gain_base_interval_ms", -10 }, + { "active_skill_hit_damage_freeze_multiplier_+%_final", 2 }, }, levels = { - [1] = { baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 16, }, }, - [2] = { baseMultiplier = 0.6, levelRequirement = 3, cost = { Mana = 17, }, }, - [3] = { baseMultiplier = 0.67, levelRequirement = 6, cost = { Mana = 19, }, }, - [4] = { baseMultiplier = 0.73, levelRequirement = 10, cost = { Mana = 21, }, }, - [5] = { baseMultiplier = 0.78, levelRequirement = 14, cost = { Mana = 24, }, }, - [6] = { baseMultiplier = 0.84, levelRequirement = 18, cost = { Mana = 26, }, }, - [7] = { baseMultiplier = 0.9, levelRequirement = 22, cost = { Mana = 29, }, }, - [8] = { baseMultiplier = 0.96, levelRequirement = 26, cost = { Mana = 33, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 36, }, }, - [10] = { baseMultiplier = 1.05, levelRequirement = 36, cost = { Mana = 40, }, }, - [11] = { baseMultiplier = 1.11, levelRequirement = 41, cost = { Mana = 44, }, }, - [12] = { baseMultiplier = 1.16, levelRequirement = 46, cost = { Mana = 49, }, }, - [13] = { baseMultiplier = 1.22, levelRequirement = 52, cost = { Mana = 55, }, }, - [14] = { baseMultiplier = 1.28, levelRequirement = 58, cost = { Mana = 61, }, }, - [15] = { baseMultiplier = 1.34, levelRequirement = 64, cost = { Mana = 67, }, }, - [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 75, }, }, - [17] = { baseMultiplier = 1.48, levelRequirement = 72, cost = { Mana = 83, }, }, - [18] = { baseMultiplier = 1.56, levelRequirement = 78, cost = { Mana = 92, }, }, - [19] = { baseMultiplier = 1.63, levelRequirement = 84, cost = { Mana = 102, }, }, - [20] = { baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 113, }, }, - [21] = { baseMultiplier = 1.8, levelRequirement = 90, cost = { Mana = 125, }, }, - [22] = { baseMultiplier = 1.89, levelRequirement = 90, cost = { Mana = 138, }, }, - [23] = { baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 153, }, }, - [24] = { baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 170, }, }, - [25] = { baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 188, }, }, - [26] = { baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 209, }, }, - [27] = { baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 232, }, }, - [28] = { baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 257, }, }, - [29] = { baseMultiplier = 2.66, levelRequirement = 90, cost = { Mana = 284, }, }, - [30] = { baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 315, }, }, - [31] = { baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 349, }, }, - [32] = { baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 387, }, }, - [33] = { baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 429, }, }, - [34] = { baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 476, }, }, - [35] = { baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 527, }, }, - [36] = { baseMultiplier = 3.74, levelRequirement = 90, cost = { Mana = 584, }, }, - [37] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 647, }, }, - [38] = { baseMultiplier = 4.13, levelRequirement = 90, cost = { Mana = 717, }, }, - [39] = { baseMultiplier = 4.33, levelRequirement = 90, cost = { Mana = 795, }, }, - [40] = { baseMultiplier = 4.55, levelRequirement = 90, cost = { Mana = 881, }, }, + [1] = { baseMultiplier = 0.48, levelRequirement = 0, cost = { Mana = 15, }, }, + [2] = { baseMultiplier = 0.53, levelRequirement = 3, cost = { Mana = 18, }, }, + [3] = { baseMultiplier = 0.58, levelRequirement = 6, cost = { Mana = 20, }, }, + [4] = { baseMultiplier = 0.63, levelRequirement = 10, cost = { Mana = 23, }, }, + [5] = { baseMultiplier = 0.68, levelRequirement = 14, cost = { Mana = 26, }, }, + [6] = { baseMultiplier = 0.73, levelRequirement = 18, cost = { Mana = 29, }, }, + [7] = { baseMultiplier = 0.79, levelRequirement = 22, cost = { Mana = 33, }, }, + [8] = { baseMultiplier = 0.83, levelRequirement = 26, cost = { Mana = 36, }, }, + [9] = { baseMultiplier = 0.88, levelRequirement = 31, cost = { Mana = 40, }, }, + [10] = { baseMultiplier = 0.92, levelRequirement = 36, cost = { Mana = 44, }, }, + [11] = { baseMultiplier = 0.97, levelRequirement = 41, cost = { Mana = 49, }, }, + [12] = { baseMultiplier = 1.01, levelRequirement = 46, cost = { Mana = 54, }, }, + [13] = { baseMultiplier = 1.06, levelRequirement = 52, cost = { Mana = 59, }, }, + [14] = { baseMultiplier = 1.12, levelRequirement = 58, cost = { Mana = 64, }, }, + [15] = { baseMultiplier = 1.17, levelRequirement = 64, cost = { Mana = 70, }, }, + [16] = { baseMultiplier = 1.23, levelRequirement = 66, cost = { Mana = 76, }, }, + [17] = { baseMultiplier = 1.29, levelRequirement = 72, cost = { Mana = 83, }, }, + [18] = { baseMultiplier = 1.36, levelRequirement = 78, cost = { Mana = 90, }, }, + [19] = { baseMultiplier = 1.43, levelRequirement = 84, cost = { Mana = 97, }, }, + [20] = { baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 105, }, }, + [21] = { baseMultiplier = 1.57, levelRequirement = 90, cost = { Mana = 113, }, }, + [22] = { baseMultiplier = 1.65, levelRequirement = 90, cost = { Mana = 122, }, }, + [23] = { baseMultiplier = 1.73, levelRequirement = 90, cost = { Mana = 131, }, }, + [24] = { baseMultiplier = 1.82, levelRequirement = 90, cost = { Mana = 141, }, }, + [25] = { baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 152, }, }, + [26] = { baseMultiplier = 2.01, levelRequirement = 90, cost = { Mana = 163, }, }, + [27] = { baseMultiplier = 2.11, levelRequirement = 90, cost = { Mana = 175, }, }, + [28] = { baseMultiplier = 2.21, levelRequirement = 90, cost = { Mana = 188, }, }, + [29] = { baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 201, }, }, + [30] = { baseMultiplier = 2.44, levelRequirement = 90, cost = { Mana = 215, }, }, + [31] = { baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 230, }, }, + [32] = { baseMultiplier = 2.69, levelRequirement = 90, cost = { Mana = 246, }, }, + [33] = { baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 263, }, }, + [34] = { baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 280, }, }, + [35] = { baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 299, }, }, + [36] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 319, }, }, + [37] = { baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 340, }, }, + [38] = { baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 362, }, }, + [39] = { baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 386, }, }, + [40] = { baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 410, }, }, }, statSets = { [1] = { @@ -2848,12 +2988,12 @@ skills["FreezingSalvoPlayer"] = { constantStats = { { "base_number_of_projectiles", 1 }, { "active_skill_base_area_of_effect_radius", 12 }, - { "active_skill_base_secondary_area_of_effect_radius", 20 }, + { "active_skill_base_secondary_area_of_effect_radius", 30 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "freezing_salvo_maximum_number_of_seals", 12 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "freezing_salvo_maximum_number_of_seals", 10 }, }, stats = { "freezing_salvo_seals_gain_base_interval_ms", @@ -2866,46 +3006,46 @@ skills["FreezingSalvoPlayer"] = { "quality_display_freezing_salvo_is_gem", }, levels = { - [1] = { 1050, 50, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1030, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1020, 56, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1010, 59, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1000, 62, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 980, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 970, 68, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 960, 71, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 940, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 930, 77, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 920, 80, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 900, 83, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 890, 86, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 880, 89, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 870, 92, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 850, 95, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 840, 98, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 830, 101, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 810, 104, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 800, 107, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 790, 110, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 770, 113, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 760, 116, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [1] = { 750, 50, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 750, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 750, 56, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 750, 59, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 750, 62, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 750, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 750, 68, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 750, 71, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 750, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 750, 77, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 750, 80, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 750, 83, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 750, 86, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 750, 89, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 750, 92, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 750, 95, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 750, 98, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 750, 101, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 750, 104, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 750, 107, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 750, 110, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 750, 113, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 750, 116, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, [24] = { 750, 119, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 740, 122, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 720, 125, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 710, 128, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 700, 131, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 680, 134, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 670, 137, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 660, 138, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 640, 140, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 630, 141, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 620, 143, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 610, 144, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 590, 146, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 580, 147, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 570, 149, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 550, 150, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 540, 152, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [25] = { 750, 122, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 750, 125, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 750, 128, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 750, 131, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 750, 134, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 750, 137, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 750, 138, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 750, 140, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 750, 141, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 750, 143, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 750, 144, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 750, 146, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 750, 147, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 750, 149, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 750, 150, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 750, 152, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2915,7 +3055,7 @@ skills["GasArrowPlayer"] = { baseTypeName = "Gas Arrow", color = 2, description = "Fire a noxious arrow at the ground, creating a cloud of flammable poisonous gas at the end of its flight. The cloud will detonate if hit by a Detonator skill or if an Ignited enemy touches it, creating a fiery explosion.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -2926,44 +3066,44 @@ skills["GasArrowPlayer"] = { levels = { [1] = { baseMultiplier = 0.3, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { baseMultiplier = 0.33, levelRequirement = 3, cost = { Mana = 10, }, }, - [3] = { baseMultiplier = 0.36, levelRequirement = 6, cost = { Mana = 11, }, }, + [3] = { baseMultiplier = 0.36, levelRequirement = 6, cost = { Mana = 12, }, }, [4] = { baseMultiplier = 0.4, levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { baseMultiplier = 0.43, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { baseMultiplier = 0.46, levelRequirement = 18, cost = { Mana = 15, }, }, - [7] = { baseMultiplier = 0.49, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { baseMultiplier = 0.52, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { baseMultiplier = 0.55, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { baseMultiplier = 0.57, levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { baseMultiplier = 0.6, levelRequirement = 41, cost = { Mana = 26, }, }, - [12] = { baseMultiplier = 0.63, levelRequirement = 46, cost = { Mana = 29, }, }, - [13] = { baseMultiplier = 0.66, levelRequirement = 52, cost = { Mana = 32, }, }, - [14] = { baseMultiplier = 0.7, levelRequirement = 58, cost = { Mana = 36, }, }, - [15] = { baseMultiplier = 0.73, levelRequirement = 64, cost = { Mana = 40, }, }, - [16] = { baseMultiplier = 0.77, levelRequirement = 66, cost = { Mana = 44, }, }, + [5] = { baseMultiplier = 0.43, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { baseMultiplier = 0.46, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { baseMultiplier = 0.49, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { baseMultiplier = 0.52, levelRequirement = 26, cost = { Mana = 21, }, }, + [9] = { baseMultiplier = 0.55, levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { baseMultiplier = 0.57, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { baseMultiplier = 0.6, levelRequirement = 41, cost = { Mana = 29, }, }, + [12] = { baseMultiplier = 0.63, levelRequirement = 46, cost = { Mana = 32, }, }, + [13] = { baseMultiplier = 0.66, levelRequirement = 52, cost = { Mana = 35, }, }, + [14] = { baseMultiplier = 0.7, levelRequirement = 58, cost = { Mana = 38, }, }, + [15] = { baseMultiplier = 0.73, levelRequirement = 64, cost = { Mana = 41, }, }, + [16] = { baseMultiplier = 0.77, levelRequirement = 66, cost = { Mana = 45, }, }, [17] = { baseMultiplier = 0.81, levelRequirement = 72, cost = { Mana = 49, }, }, - [18] = { baseMultiplier = 0.85, levelRequirement = 78, cost = { Mana = 54, }, }, - [19] = { baseMultiplier = 0.89, levelRequirement = 84, cost = { Mana = 60, }, }, - [20] = { baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 67, }, }, - [21] = { baseMultiplier = 0.98, levelRequirement = 90, cost = { Mana = 74, }, }, - [22] = { baseMultiplier = 1.03, levelRequirement = 90, cost = { Mana = 82, }, }, - [23] = { baseMultiplier = 1.08, levelRequirement = 90, cost = { Mana = 91, }, }, - [24] = { baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 101, }, }, - [25] = { baseMultiplier = 1.19, levelRequirement = 90, cost = { Mana = 112, }, }, - [26] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 124, }, }, - [27] = { baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 137, }, }, - [28] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 152, }, }, - [29] = { baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 169, }, }, - [30] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 187, }, }, - [31] = { baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 207, }, }, - [32] = { baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 230, }, }, - [33] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 255, }, }, - [34] = { baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 282, }, }, - [35] = { baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 313, }, }, - [36] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 347, }, }, - [37] = { baseMultiplier = 2.14, levelRequirement = 90, cost = { Mana = 384, }, }, - [38] = { baseMultiplier = 2.25, levelRequirement = 90, cost = { Mana = 426, }, }, - [39] = { baseMultiplier = 2.36, levelRequirement = 90, cost = { Mana = 472, }, }, - [40] = { baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 523, }, }, + [18] = { baseMultiplier = 0.85, levelRequirement = 78, cost = { Mana = 53, }, }, + [19] = { baseMultiplier = 0.89, levelRequirement = 84, cost = { Mana = 57, }, }, + [20] = { baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 62, }, }, + [21] = { baseMultiplier = 0.98, levelRequirement = 90, cost = { Mana = 67, }, }, + [22] = { baseMultiplier = 1.03, levelRequirement = 90, cost = { Mana = 72, }, }, + [23] = { baseMultiplier = 1.08, levelRequirement = 90, cost = { Mana = 78, }, }, + [24] = { baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 84, }, }, + [25] = { baseMultiplier = 1.19, levelRequirement = 90, cost = { Mana = 90, }, }, + [26] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 97, }, }, + [27] = { baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 104, }, }, + [28] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 111, }, }, + [29] = { baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 119, }, }, + [30] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 128, }, }, + [31] = { baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 136, }, }, + [32] = { baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 146, }, }, + [33] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 156, }, }, + [34] = { baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 166, }, }, + [35] = { baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 177, }, }, + [36] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 189, }, }, + [37] = { baseMultiplier = 2.14, levelRequirement = 90, cost = { Mana = 202, }, }, + [38] = { baseMultiplier = 2.25, levelRequirement = 90, cost = { Mana = 215, }, }, + [39] = { baseMultiplier = 2.36, levelRequirement = 90, cost = { Mana = 229, }, }, + [40] = { baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 243, }, }, }, statSets = { [1] = { @@ -3196,8 +3336,8 @@ skills["GlacialLancePlayer"] = { name = "Glacial Lance", baseTypeName = "Glacial Lance", color = 2, - description = "Throw a single Piercing lance that leaves icy fragments in its wake. The fragments Chill nearby enemies. Consumes a Frenzy Charge if possible to cause the ice fragments created by the first Projectile to explode outwards after a short duration, peppering enemies with shrapnel.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Spear] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, }, + description = "Throw a single Piercing lance that leaves icy fragments in its wake. The fragments Chill nearby enemies. Consumes a Frenzy Charge if possible to cause the glacial fragments created by the first Projectile to explode outwards after a short duration, peppering enemies with shrapnel.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Spear] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -3209,43 +3349,43 @@ skills["GlacialLancePlayer"] = { [1] = { attackSpeedMultiplier = -50, baseMultiplier = 1.3, levelRequirement = 0, cost = { Mana = 8, }, }, [2] = { attackSpeedMultiplier = -50, baseMultiplier = 1.43, levelRequirement = 3, cost = { Mana = 9, }, }, [3] = { attackSpeedMultiplier = -50, baseMultiplier = 1.57, levelRequirement = 6, cost = { Mana = 10, }, }, - [4] = { attackSpeedMultiplier = -50, baseMultiplier = 1.71, levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { attackSpeedMultiplier = -50, baseMultiplier = 1.85, levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { attackSpeedMultiplier = -50, baseMultiplier = 2.13, levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { attackSpeedMultiplier = -50, baseMultiplier = 2.26, levelRequirement = 26, cost = { Mana = 17, }, }, - [9] = { attackSpeedMultiplier = -50, baseMultiplier = 2.37, levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { attackSpeedMultiplier = -50, baseMultiplier = 2.49, levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { attackSpeedMultiplier = -50, baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 23, }, }, - [12] = { attackSpeedMultiplier = -50, baseMultiplier = 2.74, levelRequirement = 46, cost = { Mana = 26, }, }, - [13] = { attackSpeedMultiplier = -50, baseMultiplier = 2.88, levelRequirement = 52, cost = { Mana = 28, }, }, - [14] = { attackSpeedMultiplier = -50, baseMultiplier = 3.03, levelRequirement = 58, cost = { Mana = 32, }, }, - [15] = { attackSpeedMultiplier = -50, baseMultiplier = 3.18, levelRequirement = 64, cost = { Mana = 35, }, }, - [16] = { attackSpeedMultiplier = -50, baseMultiplier = 3.34, levelRequirement = 66, cost = { Mana = 39, }, }, + [4] = { attackSpeedMultiplier = -50, baseMultiplier = 1.71, levelRequirement = 10, cost = { Mana = 12, }, }, + [5] = { attackSpeedMultiplier = -50, baseMultiplier = 1.85, levelRequirement = 14, cost = { Mana = 13, }, }, + [6] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 18, cost = { Mana = 15, }, }, + [7] = { attackSpeedMultiplier = -50, baseMultiplier = 2.13, levelRequirement = 22, cost = { Mana = 17, }, }, + [8] = { attackSpeedMultiplier = -50, baseMultiplier = 2.26, levelRequirement = 26, cost = { Mana = 19, }, }, + [9] = { attackSpeedMultiplier = -50, baseMultiplier = 2.37, levelRequirement = 31, cost = { Mana = 21, }, }, + [10] = { attackSpeedMultiplier = -50, baseMultiplier = 2.49, levelRequirement = 36, cost = { Mana = 23, }, }, + [11] = { attackSpeedMultiplier = -50, baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { attackSpeedMultiplier = -50, baseMultiplier = 2.74, levelRequirement = 46, cost = { Mana = 28, }, }, + [13] = { attackSpeedMultiplier = -50, baseMultiplier = 2.88, levelRequirement = 52, cost = { Mana = 31, }, }, + [14] = { attackSpeedMultiplier = -50, baseMultiplier = 3.03, levelRequirement = 58, cost = { Mana = 33, }, }, + [15] = { attackSpeedMultiplier = -50, baseMultiplier = 3.18, levelRequirement = 64, cost = { Mana = 37, }, }, + [16] = { attackSpeedMultiplier = -50, baseMultiplier = 3.34, levelRequirement = 66, cost = { Mana = 40, }, }, [17] = { attackSpeedMultiplier = -50, baseMultiplier = 3.5, levelRequirement = 72, cost = { Mana = 43, }, }, - [18] = { attackSpeedMultiplier = -50, baseMultiplier = 3.68, levelRequirement = 78, cost = { Mana = 48, }, }, - [19] = { attackSpeedMultiplier = -50, baseMultiplier = 3.86, levelRequirement = 84, cost = { Mana = 53, }, }, - [20] = { attackSpeedMultiplier = -50, baseMultiplier = 4.05, levelRequirement = 90, cost = { Mana = 59, }, }, - [21] = { attackSpeedMultiplier = -50, baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 65, }, }, - [22] = { attackSpeedMultiplier = -50, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 72, }, }, - [23] = { attackSpeedMultiplier = -50, baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 80, }, }, - [24] = { attackSpeedMultiplier = -50, baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 89, }, }, - [25] = { attackSpeedMultiplier = -50, baseMultiplier = 5.17, levelRequirement = 90, cost = { Mana = 99, }, }, - [26] = { attackSpeedMultiplier = -50, baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 109, }, }, - [27] = { attackSpeedMultiplier = -50, baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 121, }, }, - [28] = { attackSpeedMultiplier = -50, baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 134, }, }, - [29] = { attackSpeedMultiplier = -50, baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 149, }, }, - [30] = { attackSpeedMultiplier = -50, baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 165, }, }, - [31] = { attackSpeedMultiplier = -50, baseMultiplier = 6.93, levelRequirement = 90, cost = { Mana = 183, }, }, - [32] = { attackSpeedMultiplier = -50, baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 203, }, }, - [33] = { attackSpeedMultiplier = -50, baseMultiplier = 7.65, levelRequirement = 90, cost = { Mana = 225, }, }, - [34] = { attackSpeedMultiplier = -50, baseMultiplier = 8.03, levelRequirement = 90, cost = { Mana = 249, }, }, - [35] = { attackSpeedMultiplier = -50, baseMultiplier = 8.43, levelRequirement = 90, cost = { Mana = 276, }, }, - [36] = { attackSpeedMultiplier = -50, baseMultiplier = 8.85, levelRequirement = 90, cost = { Mana = 306, }, }, - [37] = { attackSpeedMultiplier = -50, baseMultiplier = 9.29, levelRequirement = 90, cost = { Mana = 339, }, }, - [38] = { attackSpeedMultiplier = -50, baseMultiplier = 9.76, levelRequirement = 90, cost = { Mana = 376, }, }, - [39] = { attackSpeedMultiplier = -50, baseMultiplier = 10.25, levelRequirement = 90, cost = { Mana = 417, }, }, - [40] = { attackSpeedMultiplier = -50, baseMultiplier = 10.76, levelRequirement = 90, cost = { Mana = 462, }, }, + [18] = { attackSpeedMultiplier = -50, baseMultiplier = 3.68, levelRequirement = 78, cost = { Mana = 47, }, }, + [19] = { attackSpeedMultiplier = -50, baseMultiplier = 3.86, levelRequirement = 84, cost = { Mana = 51, }, }, + [20] = { attackSpeedMultiplier = -50, baseMultiplier = 4.05, levelRequirement = 90, cost = { Mana = 55, }, }, + [21] = { attackSpeedMultiplier = -50, baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 59, }, }, + [22] = { attackSpeedMultiplier = -50, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 64, }, }, + [23] = { attackSpeedMultiplier = -50, baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 69, }, }, + [24] = { attackSpeedMultiplier = -50, baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 74, }, }, + [25] = { attackSpeedMultiplier = -50, baseMultiplier = 5.17, levelRequirement = 90, cost = { Mana = 80, }, }, + [26] = { attackSpeedMultiplier = -50, baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 85, }, }, + [27] = { attackSpeedMultiplier = -50, baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 92, }, }, + [28] = { attackSpeedMultiplier = -50, baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 98, }, }, + [29] = { attackSpeedMultiplier = -50, baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 105, }, }, + [30] = { attackSpeedMultiplier = -50, baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 113, }, }, + [31] = { attackSpeedMultiplier = -50, baseMultiplier = 6.93, levelRequirement = 90, cost = { Mana = 120, }, }, + [32] = { attackSpeedMultiplier = -50, baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 129, }, }, + [33] = { attackSpeedMultiplier = -50, baseMultiplier = 7.65, levelRequirement = 90, cost = { Mana = 138, }, }, + [34] = { attackSpeedMultiplier = -50, baseMultiplier = 8.03, levelRequirement = 90, cost = { Mana = 147, }, }, + [35] = { attackSpeedMultiplier = -50, baseMultiplier = 8.43, levelRequirement = 90, cost = { Mana = 157, }, }, + [36] = { attackSpeedMultiplier = -50, baseMultiplier = 8.85, levelRequirement = 90, cost = { Mana = 167, }, }, + [37] = { attackSpeedMultiplier = -50, baseMultiplier = 9.29, levelRequirement = 90, cost = { Mana = 178, }, }, + [38] = { attackSpeedMultiplier = -50, baseMultiplier = 9.76, levelRequirement = 90, cost = { Mana = 190, }, }, + [39] = { attackSpeedMultiplier = -50, baseMultiplier = 10.25, levelRequirement = 90, cost = { Mana = 202, }, }, + [40] = { attackSpeedMultiplier = -50, baseMultiplier = 10.76, levelRequirement = 90, cost = { Mana = 215, }, }, }, statSets = { [1] = { @@ -3264,7 +3404,7 @@ skills["GlacialLancePlayer"] = { { "base_secondary_skill_effect_duration", 1000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "minimum_per_projectile_spread_angle_degrees", 30 }, { "main_hand_weapon_range_+", 105 }, }, @@ -3284,6 +3424,7 @@ skills["GlacialLancePlayer"] = { "projectiles_cannot_fork", "projectiles_cannot_return", "modifiers_to_projectile_count_do_not_apply", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 50, statInterpolation = { 1, }, actorLevel = 1, }, @@ -3344,7 +3485,7 @@ skills["GlacialLancePlayer"] = { { "base_secondary_skill_effect_duration", 1000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "minimum_per_projectile_spread_angle_degrees", 30 }, { "main_hand_weapon_range_+", 105 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 40 }, @@ -3363,6 +3504,7 @@ skills["GlacialLancePlayer"] = { "quality_display_active_skill_base_secondary_area_of_effect_radius_is_gem", "quality_display_active_skill_base_area_of_effect_radius_is_gem", "modifiers_to_projectile_count_do_not_apply", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "is_area_damage", }, @@ -3675,7 +3817,7 @@ skills["HeraldOfThunderPlayer"] = { }, constantStats = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, - { "active_skill_base_area_of_effect_radius", 14 }, + { "active_skill_base_area_of_effect_radius", 10 }, }, stats = { "herald_of_thunder_storm_max_hits", @@ -3734,7 +3876,7 @@ skills["IceShotPlayer"] = { baseTypeName = "Ice Shot", color = 2, description = "Fire an icy arrow that sprays a cone of ice shards when it hits a target.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.Bow] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -3746,43 +3888,43 @@ skills["IceShotPlayer"] = { [1] = { attackSpeedMultiplier = -10, baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -10, baseMultiplier = 1.05, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { attackSpeedMultiplier = -10, baseMultiplier = 1.15, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { attackSpeedMultiplier = -10, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { attackSpeedMultiplier = -10, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 21, }, }, - [14] = { attackSpeedMultiplier = -10, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 23, }, }, - [15] = { attackSpeedMultiplier = -10, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 26, }, }, - [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 28, }, }, + [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -10, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { attackSpeedMultiplier = -10, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 22, }, }, + [14] = { attackSpeedMultiplier = -10, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 24, }, }, + [15] = { attackSpeedMultiplier = -10, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 27, }, }, + [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 29, }, }, [17] = { attackSpeedMultiplier = -10, baseMultiplier = 2.56, levelRequirement = 72, cost = { Mana = 31, }, }, - [18] = { attackSpeedMultiplier = -10, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 35, }, }, - [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 39, }, }, - [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 43, }, }, - [21] = { attackSpeedMultiplier = -10, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 48, }, }, - [22] = { attackSpeedMultiplier = -10, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 53, }, }, - [23] = { attackSpeedMultiplier = -10, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 59, }, }, - [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 65, }, }, - [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 72, }, }, - [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 80, }, }, - [27] = { attackSpeedMultiplier = -10, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 89, }, }, - [28] = { attackSpeedMultiplier = -10, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 98, }, }, - [29] = { attackSpeedMultiplier = -10, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 109, }, }, - [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 121, }, }, - [31] = { attackSpeedMultiplier = -10, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 134, }, }, - [32] = { attackSpeedMultiplier = -10, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 149, }, }, - [33] = { attackSpeedMultiplier = -10, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 165, }, }, - [34] = { attackSpeedMultiplier = -10, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 183, }, }, - [35] = { attackSpeedMultiplier = -10, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 202, }, }, - [36] = { attackSpeedMultiplier = -10, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 224, }, }, - [37] = { attackSpeedMultiplier = -10, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 249, }, }, - [38] = { attackSpeedMultiplier = -10, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 276, }, }, - [39] = { attackSpeedMultiplier = -10, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 305, }, }, - [40] = { attackSpeedMultiplier = -10, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 339, }, }, + [18] = { attackSpeedMultiplier = -10, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 34, }, }, + [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 37, }, }, + [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 40, }, }, + [21] = { attackSpeedMultiplier = -10, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 43, }, }, + [22] = { attackSpeedMultiplier = -10, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 47, }, }, + [23] = { attackSpeedMultiplier = -10, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 50, }, }, + [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 54, }, }, + [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 58, }, }, + [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 62, }, }, + [27] = { attackSpeedMultiplier = -10, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 67, }, }, + [28] = { attackSpeedMultiplier = -10, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 72, }, }, + [29] = { attackSpeedMultiplier = -10, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 77, }, }, + [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 82, }, }, + [31] = { attackSpeedMultiplier = -10, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 88, }, }, + [32] = { attackSpeedMultiplier = -10, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 94, }, }, + [33] = { attackSpeedMultiplier = -10, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 101, }, }, + [34] = { attackSpeedMultiplier = -10, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 107, }, }, + [35] = { attackSpeedMultiplier = -10, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 115, }, }, + [36] = { attackSpeedMultiplier = -10, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 122, }, }, + [37] = { attackSpeedMultiplier = -10, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 130, }, }, + [38] = { attackSpeedMultiplier = -10, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 139, }, }, + [39] = { attackSpeedMultiplier = -10, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 148, }, }, + [40] = { attackSpeedMultiplier = -10, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 157, }, }, }, statSets = { [1] = { @@ -3797,7 +3939,7 @@ skills["IceShotPlayer"] = { { "active_skill_chill_effect_+%_final", 50 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 70 }, }, stats = { @@ -3810,6 +3952,7 @@ skills["IceShotPlayer"] = { "can_perform_skill_while_moving", "should_use_additive_aiming_animation", "disable_visual_hit_effect", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -3865,7 +4008,7 @@ skills["IceShotPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 70 }, { "projectile_spread_radius", 45 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 30 }, @@ -3877,6 +4020,7 @@ skills["IceShotPlayer"] = { "check_for_targets_between_initiator_and_projectile_source", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { @@ -3924,12 +4068,251 @@ skills["IceShotPlayer"] = { }, } } +skills["IceTippedArrowsPlayer"] = { + name = "Ice-Tipped Arrows", + baseTypeName = "Ice-Tipped Arrows", + color = 2, + description = "Ready your active Bow or Spear, Empowering your next Barrageable Bow or Projectile Spear Attacks to create Ice Fragments on Hit. This Skill's cooldown can be bypassed by expending a Frenzy Charge. Cannot Empower Sustained Skills.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.CannotTerrainChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, }, + weaponTypes = { + ["Spear"] = true, + ["Bow"] = true, + }, + castTime = 0.7, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 12, cost = { Mana = 14, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 12, cost = { Mana = 16, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 12, cost = { Mana = 18, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 12, cost = { Mana = 20, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 12, cost = { Mana = 22, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 12, cost = { Mana = 24, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 12, cost = { Mana = 26, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 12, cost = { Mana = 29, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 12, cost = { Mana = 31, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 12, cost = { Mana = 34, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 12, cost = { Mana = 36, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 12, cost = { Mana = 39, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 12, cost = { Mana = 41, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 12, cost = { Mana = 44, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 12, cost = { Mana = 47, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 12, cost = { Mana = 50, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 12, cost = { Mana = 53, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 12, cost = { Mana = 56, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 12, cost = { Mana = 59, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 63, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 66, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 70, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 73, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 77, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 81, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 85, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 89, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 93, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 97, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 102, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 106, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 111, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 116, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 121, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 126, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 131, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 137, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 142, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 148, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 154, }, }, + }, + statSets = { + [1] = { + label = "Ice-Tipped Arrows", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "shearing_bolts", + baseFlags = { + duration = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 8000 }, + { "shearing_bolts_number_of_empowered_attacks", 4 }, + }, + stats = { + "can_perform_skill_while_moving", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["IceTippedArrowsIceFragmentPlayer"] = { + name = "Ice Fragments", + hidden = true, + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 0.45, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [2] = { baseMultiplier = 0.49, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [3] = { baseMultiplier = 0.54, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [4] = { baseMultiplier = 0.59, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [5] = { baseMultiplier = 0.64, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [6] = { baseMultiplier = 0.69, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [7] = { baseMultiplier = 0.73, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [8] = { baseMultiplier = 0.77, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [9] = { baseMultiplier = 0.81, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [10] = { baseMultiplier = 0.85, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [11] = { baseMultiplier = 0.89, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [12] = { baseMultiplier = 0.93, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [13] = { baseMultiplier = 0.97, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [14] = { baseMultiplier = 1.01, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [15] = { baseMultiplier = 1.06, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [16] = { baseMultiplier = 1.1, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [17] = { baseMultiplier = 1.15, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [18] = { baseMultiplier = 1.2, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [19] = { baseMultiplier = 1.25, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [20] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [21] = { baseMultiplier = 1.36, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [22] = { baseMultiplier = 1.42, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [23] = { baseMultiplier = 1.48, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [24] = { baseMultiplier = 1.54, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [25] = { baseMultiplier = 1.6, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [26] = { baseMultiplier = 1.67, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [27] = { baseMultiplier = 1.74, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [28] = { baseMultiplier = 1.81, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [29] = { baseMultiplier = 1.89, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [30] = { baseMultiplier = 1.97, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [31] = { baseMultiplier = 2.05, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [32] = { baseMultiplier = 2.14, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [33] = { baseMultiplier = 2.23, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [34] = { baseMultiplier = 2.32, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [35] = { baseMultiplier = 2.42, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [36] = { baseMultiplier = 2.52, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [37] = { baseMultiplier = 2.63, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [38] = { baseMultiplier = 2.74, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [39] = { baseMultiplier = 2.85, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + [40] = { baseMultiplier = 2.97, storedUses = 1, levelRequirement = 0, cooldown = 0.3, }, + }, + statSets = { + [1] = { + label = "Ice Fragments", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ballistic_ice_projectile", + baseFlags = { + attack = true, + projectile = true, + area = true, + }, + constantStats = { + { "trigger_ballistic_ice_chunk_on_hit_frozen_target", 100 }, + { "active_skill_base_area_of_effect_radius", 13 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "ballistic_ice_chunk_cone_angle", 360 }, + { "base_skill_detonation_time", 2500 }, + { "base_number_of_projectiles", 3 }, + { "active_skill_projectile_speed_+%_final", 50 }, + }, + stats = { + "base_is_projectile", + "ballistic_projectiles_always_bounce", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "is_area_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} skills["LightningArrowPlayer"] = { name = "Lightning Arrow", baseTypeName = "Lightning Arrow", color = 2, description = "Fire a charged arrow at the target. On hitting an enemy or wall, the arrow will fire Chaining Lightning beams at nearby enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.Bow] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -3939,45 +4322,45 @@ skills["LightningArrowPlayer"] = { }, levels = { [1] = { attackSpeedMultiplier = -10, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { attackSpeedMultiplier = -10, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 6, }, }, - [3] = { attackSpeedMultiplier = -10, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { attackSpeedMultiplier = -10, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { attackSpeedMultiplier = -10, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 21, }, }, - [14] = { attackSpeedMultiplier = -10, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 23, }, }, - [15] = { attackSpeedMultiplier = -10, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 26, }, }, + [2] = { attackSpeedMultiplier = -10, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { attackSpeedMultiplier = -10, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -10, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 21, }, }, + [13] = { attackSpeedMultiplier = -10, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 23, }, }, + [14] = { attackSpeedMultiplier = -10, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -10, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 27, }, }, [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 29, }, }, [17] = { attackSpeedMultiplier = -10, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 32, }, }, [18] = { attackSpeedMultiplier = -10, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 35, }, }, - [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 39, }, }, - [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 43, }, }, - [21] = { attackSpeedMultiplier = -10, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 48, }, }, - [22] = { attackSpeedMultiplier = -10, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 53, }, }, - [23] = { attackSpeedMultiplier = -10, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 59, }, }, - [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 66, }, }, - [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 73, }, }, - [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 81, }, }, - [27] = { attackSpeedMultiplier = -10, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 90, }, }, - [28] = { attackSpeedMultiplier = -10, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 99, }, }, - [29] = { attackSpeedMultiplier = -10, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 110, }, }, - [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 122, }, }, - [31] = { attackSpeedMultiplier = -10, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 135, }, }, - [32] = { attackSpeedMultiplier = -10, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 150, }, }, - [33] = { attackSpeedMultiplier = -10, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 166, }, }, - [34] = { attackSpeedMultiplier = -10, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 184, }, }, - [35] = { attackSpeedMultiplier = -10, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 204, }, }, - [36] = { attackSpeedMultiplier = -10, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 227, }, }, - [37] = { attackSpeedMultiplier = -10, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 251, }, }, - [38] = { attackSpeedMultiplier = -10, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 278, }, }, - [39] = { attackSpeedMultiplier = -10, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 308, }, }, - [40] = { attackSpeedMultiplier = -10, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 342, }, }, + [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 37, }, }, + [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 40, }, }, + [21] = { attackSpeedMultiplier = -10, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 44, }, }, + [22] = { attackSpeedMultiplier = -10, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 47, }, }, + [23] = { attackSpeedMultiplier = -10, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 51, }, }, + [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 55, }, }, + [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 59, }, }, + [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 63, }, }, + [27] = { attackSpeedMultiplier = -10, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 68, }, }, + [28] = { attackSpeedMultiplier = -10, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 73, }, }, + [29] = { attackSpeedMultiplier = -10, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 78, }, }, + [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 83, }, }, + [31] = { attackSpeedMultiplier = -10, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 89, }, }, + [32] = { attackSpeedMultiplier = -10, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 95, }, }, + [33] = { attackSpeedMultiplier = -10, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 102, }, }, + [34] = { attackSpeedMultiplier = -10, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 109, }, }, + [35] = { attackSpeedMultiplier = -10, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 116, }, }, + [36] = { attackSpeedMultiplier = -10, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 124, }, }, + [37] = { attackSpeedMultiplier = -10, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 132, }, }, + [38] = { attackSpeedMultiplier = -10, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 141, }, }, + [39] = { attackSpeedMultiplier = -10, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 150, }, }, + [40] = { attackSpeedMultiplier = -10, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 159, }, }, }, statSets = { [1] = { @@ -3994,7 +4377,7 @@ skills["LightningArrowPlayer"] = { { "active_skill_base_area_of_effect_radius", 32 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "lightning_arrow_maximum_number_of_extra_targets", @@ -4009,6 +4392,7 @@ skills["LightningArrowPlayer"] = { "should_use_additive_aiming_animation", "quality_display_lightning_arrow_is_gem", "beams_chained_to_lightning_rods_have_no_delay", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 2, statInterpolation = { 1, }, actorLevel = 1, }, @@ -4066,7 +4450,7 @@ skills["LightningArrowPlayer"] = { { "active_skill_base_area_of_effect_radius", 32 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, { "number_of_chains", 2 }, }, @@ -4082,6 +4466,7 @@ skills["LightningArrowPlayer"] = { "should_use_additive_aiming_animation", "quality_display_lightning_arrow_is_gem", "beams_chained_to_lightning_rods_have_no_delay", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, @@ -4133,55 +4518,55 @@ skills["LightningRodPlayer"] = { baseTypeName = "Lightning Rod", color = 2, description = "Fire an arrow that drops from above, creating a Lightning burst. The arrow remains in the ground, and any Chaining Lightning beams can Chain to it. When Chained to, the arrows charge up for a brief period before releasing another Lightning burst. The Lightning Arrow Skill skips this delay, causing bursts immediately.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.CanRapidFire] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.Sustained] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.Sustained] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ObjectDurability] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.2 }, + { "lightning_rod_%_chance_for_additional_burst_on_landing", 1 }, }, levels = { [1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 4, }, }, [2] = { attackSpeedMultiplier = 20, baseMultiplier = 0.29, levelRequirement = 3, cost = { Mana = 5, }, }, - [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.31, levelRequirement = 6, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.31, levelRequirement = 6, cost = { Mana = 6, }, }, [4] = { attackSpeedMultiplier = 20, baseMultiplier = 0.34, levelRequirement = 10, cost = { Mana = 6, }, }, [5] = { attackSpeedMultiplier = 20, baseMultiplier = 0.37, levelRequirement = 14, cost = { Mana = 7, }, }, - [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.4, levelRequirement = 18, cost = { Mana = 7, }, }, - [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.43, levelRequirement = 22, cost = { Mana = 8, }, }, - [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.46, levelRequirement = 26, cost = { Mana = 9, }, }, - [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.49, levelRequirement = 31, cost = { Mana = 10, }, }, - [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.51, levelRequirement = 36, cost = { Mana = 11, }, }, - [11] = { attackSpeedMultiplier = 20, baseMultiplier = 0.54, levelRequirement = 41, cost = { Mana = 13, }, }, - [12] = { attackSpeedMultiplier = 20, baseMultiplier = 0.58, levelRequirement = 46, cost = { Mana = 14, }, }, - [13] = { attackSpeedMultiplier = 20, baseMultiplier = 0.61, levelRequirement = 52, cost = { Mana = 16, }, }, - [14] = { attackSpeedMultiplier = 20, baseMultiplier = 0.65, levelRequirement = 58, cost = { Mana = 17, }, }, - [15] = { attackSpeedMultiplier = 20, baseMultiplier = 0.69, levelRequirement = 64, cost = { Mana = 19, }, }, - [16] = { attackSpeedMultiplier = 20, baseMultiplier = 0.73, levelRequirement = 66, cost = { Mana = 21, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.4, levelRequirement = 18, cost = { Mana = 8, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.43, levelRequirement = 22, cost = { Mana = 9, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.46, levelRequirement = 26, cost = { Mana = 10, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.49, levelRequirement = 31, cost = { Mana = 11, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.51, levelRequirement = 36, cost = { Mana = 13, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 0.54, levelRequirement = 41, cost = { Mana = 14, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 0.58, levelRequirement = 46, cost = { Mana = 15, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 0.61, levelRequirement = 52, cost = { Mana = 17, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 0.65, levelRequirement = 58, cost = { Mana = 18, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 0.69, levelRequirement = 64, cost = { Mana = 20, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 0.73, levelRequirement = 66, cost = { Mana = 22, }, }, [17] = { attackSpeedMultiplier = 20, baseMultiplier = 0.78, levelRequirement = 72, cost = { Mana = 24, }, }, [18] = { attackSpeedMultiplier = 20, baseMultiplier = 0.83, levelRequirement = 78, cost = { Mana = 26, }, }, - [19] = { attackSpeedMultiplier = 20, baseMultiplier = 0.88, levelRequirement = 84, cost = { Mana = 29, }, }, - [20] = { attackSpeedMultiplier = 20, baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 32, }, }, - [21] = { attackSpeedMultiplier = 20, levelRequirement = 90, cost = { Mana = 36, }, }, - [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 40, }, }, - [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 44, }, }, - [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 90, cost = { Mana = 49, }, }, - [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 55, }, }, - [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 61, }, }, - [27] = { attackSpeedMultiplier = 20, baseMultiplier = 1.48, levelRequirement = 90, cost = { Mana = 67, }, }, - [28] = { attackSpeedMultiplier = 20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 74, }, }, - [29] = { attackSpeedMultiplier = 20, baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 83, }, }, - [30] = { attackSpeedMultiplier = 20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 92, }, }, - [31] = { attackSpeedMultiplier = 20, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 101, }, }, - [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 113, }, }, - [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 125, }, }, - [34] = { attackSpeedMultiplier = 20, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 138, }, }, - [35] = { attackSpeedMultiplier = 20, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 153, }, }, - [36] = { attackSpeedMultiplier = 20, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 170, }, }, - [37] = { attackSpeedMultiplier = 20, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 188, }, }, - [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 209, }, }, - [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 231, }, }, - [40] = { attackSpeedMultiplier = 20, baseMultiplier = 3.42, levelRequirement = 90, cost = { Mana = 256, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 0.88, levelRequirement = 84, cost = { Mana = 28, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 30, }, }, + [21] = { attackSpeedMultiplier = 20, levelRequirement = 90, cost = { Mana = 33, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 35, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 38, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 90, cost = { Mana = 41, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 44, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 47, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 1.48, levelRequirement = 90, cost = { Mana = 51, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 54, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 58, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 62, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 67, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 71, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 76, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 81, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 87, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 93, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 99, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 105, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 112, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 3.42, levelRequirement = 90, cost = { Mana = 119, }, }, }, statSets = { [1] = { @@ -4201,7 +4586,7 @@ skills["LightningRodPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "number_of_lightning_rods_allowed", 20 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "lightning_rod_number_of_chains_allowed", 8 }, }, stats = { @@ -4262,7 +4647,7 @@ skills["LightningSpearPlayer"] = { baseTypeName = "Lightning Spear", color = 2, description = "Throw a single copy of your spear. When it hits an enemy it bursts, firing secondary lightning bolt Projectiles at multiple other enemies within a large area around it. Consumes a Frenzy Charge if possible to cause the main spear to split into multiple copies on impact, each of which then bursts.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -4271,46 +4656,46 @@ skills["LightningSpearPlayer"] = { { "base_number_of_projectiles", 0.1 }, }, levels = { - [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 7, }, }, + [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 17, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 19, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 21, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 26, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 29, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 32, }, }, + [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 28, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 33, }, }, [17] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 36, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 40, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 44, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 49, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 54, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 60, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 67, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 74, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 82, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 91, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 101, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 112, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 124, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 137, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 152, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 169, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 187, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 207, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 230, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 255, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 283, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 313, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 347, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 385, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 39, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 42, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 46, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 49, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 53, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 57, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 62, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 66, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 71, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 76, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 82, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 88, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 94, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 100, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 107, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 114, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 122, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 130, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 139, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 148, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 158, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 168, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 179, }, }, }, statSets = { [1] = { @@ -4339,8 +4724,7 @@ skills["LightningSpearPlayer"] = { { "active_skill_shock_chance_+%_final", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "lightning_spear_damage_+%_final_when_charged", 50 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "lightning_spear_additional_number_to_split_when_charged", 3 }, { "main_hand_weapon_range_+", 105 }, }, @@ -4358,6 +4742,7 @@ skills["LightningSpearPlayer"] = { "projectiles_cannot_fork", "projectiles_cannot_return", "projectiles_can_split_from_terrain", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -4417,14 +4802,14 @@ skills["LightningSpearPlayer"] = { { "active_skill_shock_chance_+%_final", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "lightning_spear_additional_number_to_split_when_charged", 3 }, { "main_hand_weapon_range_+", 105 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "active_skill_shock_chance_+%_final", 100 }, + { "base_number_of_projectiles", 5 }, }, stats = { - "base_number_of_projectiles", "base_is_projectile", "projectile_uses_contact_position", "projectile_uses_contact_direction", @@ -4432,49 +4817,50 @@ skills["LightningSpearPlayer"] = { "skill_display_projectile_total_is_limit", "can_perform_skill_while_moving", "quality_display_base_number_of_projectiles_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", "projectiles_cannot_split", }, levels = { - [1] = { 3, baseMultiplier = 0.75, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, baseMultiplier = 0.82, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4, baseMultiplier = 0.91, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4, baseMultiplier = 0.99, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 4, baseMultiplier = 1.07, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 4, baseMultiplier = 1.15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 5, baseMultiplier = 1.23, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 5, baseMultiplier = 1.3, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 5, baseMultiplier = 1.37, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 5, baseMultiplier = 1.44, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 6, baseMultiplier = 1.51, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 6, baseMultiplier = 1.58, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 6, baseMultiplier = 1.66, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 6, baseMultiplier = 1.75, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 6, baseMultiplier = 1.83, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 7, baseMultiplier = 1.92, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 7, baseMultiplier = 2.02, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 7, baseMultiplier = 2.12, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 7, baseMultiplier = 2.23, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 8, baseMultiplier = 2.34, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 8, baseMultiplier = 2.46, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 8, baseMultiplier = 2.58, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 8, baseMultiplier = 2.71, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 9, baseMultiplier = 2.84, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 9, baseMultiplier = 2.99, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 9, baseMultiplier = 3.13, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 9, baseMultiplier = 3.29, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 9, baseMultiplier = 3.46, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 10, baseMultiplier = 3.63, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 10, baseMultiplier = 3.81, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 10, baseMultiplier = 4, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 10, baseMultiplier = 4.2, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 10, baseMultiplier = 4.41, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 10, baseMultiplier = 4.63, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 10, baseMultiplier = 4.86, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 11, baseMultiplier = 5.11, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 11, baseMultiplier = 5.36, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 11, baseMultiplier = 5.63, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 11, baseMultiplier = 5.91, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 11, baseMultiplier = 6.21, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.75, actorLevel = 1, }, + [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.15, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.23, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.3, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.37, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.44, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.51, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.58, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.66, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.75, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.83, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.92, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.02, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.12, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.23, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 2.34, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 2.46, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.58, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.71, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.84, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.99, actorLevel = 136.875, }, + [26] = { baseMultiplier = 3.13, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 3.29, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.46, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.63, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.81, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 4, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 4.2, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 4.41, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 4.63, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 4.86, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 5.11, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 5.36, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 5.63, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 5.91, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 6.21, actorLevel = 288.29998779297, }, }, }, } @@ -4484,7 +4870,7 @@ skills["MagneticSalvoPlayer"] = { baseTypeName = "Magnetic Salvo", color = 2, description = "Aim skyward and fires energy missiles at lingering bolts or arrows created by other Lightning Attacks in front of you. The missiles explode if they land close to a lingering bolt or arrow, dealing more damage in a larger area but destroying that bolt or arrow in the process.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Lightning] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Lightning] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4495,44 +4881,44 @@ skills["MagneticSalvoPlayer"] = { levels = { [1] = { attackSpeedMultiplier = -50, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 24, }, }, [2] = { attackSpeedMultiplier = -50, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 27, }, }, - [3] = { attackSpeedMultiplier = -50, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 30, }, }, - [4] = { attackSpeedMultiplier = -50, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 33, }, }, - [5] = { attackSpeedMultiplier = -50, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 37, }, }, - [6] = { attackSpeedMultiplier = -50, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 41, }, }, - [7] = { attackSpeedMultiplier = -50, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 45, }, }, - [8] = { attackSpeedMultiplier = -50, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 50, }, }, - [9] = { attackSpeedMultiplier = -50, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 56, }, }, - [10] = { attackSpeedMultiplier = -50, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 62, }, }, - [11] = { attackSpeedMultiplier = -50, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 69, }, }, - [12] = { attackSpeedMultiplier = -50, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 76, }, }, - [13] = { attackSpeedMultiplier = -50, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 84, }, }, - [14] = { attackSpeedMultiplier = -50, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 93, }, }, - [15] = { attackSpeedMultiplier = -50, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 104, }, }, - [16] = { attackSpeedMultiplier = -50, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 115, }, }, - [17] = { attackSpeedMultiplier = -50, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 127, }, }, - [18] = { attackSpeedMultiplier = -50, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 141, }, }, - [19] = { attackSpeedMultiplier = -50, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 157, }, }, - [20] = { attackSpeedMultiplier = -50, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 174, }, }, - [21] = { attackSpeedMultiplier = -50, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 192, }, }, - [22] = { attackSpeedMultiplier = -50, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 213, }, }, - [23] = { attackSpeedMultiplier = -50, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 236, }, }, - [24] = { attackSpeedMultiplier = -50, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 262, }, }, - [25] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 290, }, }, - [26] = { attackSpeedMultiplier = -50, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 322, }, }, - [27] = { attackSpeedMultiplier = -50, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 356, }, }, - [28] = { attackSpeedMultiplier = -50, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 395, }, }, - [29] = { attackSpeedMultiplier = -50, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 438, }, }, - [30] = { attackSpeedMultiplier = -50, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 485, }, }, - [31] = { attackSpeedMultiplier = -50, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 538, }, }, - [32] = { attackSpeedMultiplier = -50, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 596, }, }, - [33] = { attackSpeedMultiplier = -50, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 660, }, }, - [34] = { attackSpeedMultiplier = -50, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 732, }, }, - [35] = { attackSpeedMultiplier = -50, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 811, }, }, - [36] = { attackSpeedMultiplier = -50, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 899, }, }, - [37] = { attackSpeedMultiplier = -50, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 996, }, }, - [38] = { attackSpeedMultiplier = -50, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 1104, }, }, - [39] = { attackSpeedMultiplier = -50, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 1223, }, }, - [40] = { attackSpeedMultiplier = -50, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 1355, }, }, + [3] = { attackSpeedMultiplier = -50, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 31, }, }, + [4] = { attackSpeedMultiplier = -50, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 36, }, }, + [5] = { attackSpeedMultiplier = -50, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 40, }, }, + [6] = { attackSpeedMultiplier = -50, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 45, }, }, + [7] = { attackSpeedMultiplier = -50, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 51, }, }, + [8] = { attackSpeedMultiplier = -50, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 56, }, }, + [9] = { attackSpeedMultiplier = -50, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 62, }, }, + [10] = { attackSpeedMultiplier = -50, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 69, }, }, + [11] = { attackSpeedMultiplier = -50, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 76, }, }, + [12] = { attackSpeedMultiplier = -50, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 83, }, }, + [13] = { attackSpeedMultiplier = -50, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 91, }, }, + [14] = { attackSpeedMultiplier = -50, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 99, }, }, + [15] = { attackSpeedMultiplier = -50, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 108, }, }, + [16] = { attackSpeedMultiplier = -50, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 117, }, }, + [17] = { attackSpeedMultiplier = -50, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 128, }, }, + [18] = { attackSpeedMultiplier = -50, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 138, }, }, + [19] = { attackSpeedMultiplier = -50, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 150, }, }, + [20] = { attackSpeedMultiplier = -50, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 162, }, }, + [21] = { attackSpeedMultiplier = -50, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 175, }, }, + [22] = { attackSpeedMultiplier = -50, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 188, }, }, + [23] = { attackSpeedMultiplier = -50, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 203, }, }, + [24] = { attackSpeedMultiplier = -50, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 218, }, }, + [25] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 234, }, }, + [26] = { attackSpeedMultiplier = -50, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 251, }, }, + [27] = { attackSpeedMultiplier = -50, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 270, }, }, + [28] = { attackSpeedMultiplier = -50, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 289, }, }, + [29] = { attackSpeedMultiplier = -50, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 310, }, }, + [30] = { attackSpeedMultiplier = -50, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 331, }, }, + [31] = { attackSpeedMultiplier = -50, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 354, }, }, + [32] = { attackSpeedMultiplier = -50, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 379, }, }, + [33] = { attackSpeedMultiplier = -50, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 405, }, }, + [34] = { attackSpeedMultiplier = -50, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 432, }, }, + [35] = { attackSpeedMultiplier = -50, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 461, }, }, + [36] = { attackSpeedMultiplier = -50, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 491, }, }, + [37] = { attackSpeedMultiplier = -50, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 523, }, }, + [38] = { attackSpeedMultiplier = -50, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 558, }, }, + [39] = { attackSpeedMultiplier = -50, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 594, }, }, + [40] = { attackSpeedMultiplier = -50, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 632, }, }, }, statSets = { [1] = { @@ -4662,11 +5048,554 @@ skills["MagneticSalvoPlayer"] = { }, } } +skills["MetaMirageArcherPlayer"] = { + name = "Mirage Archer", + baseTypeName = "Mirage Archer", + color = 2, + description = "While active, dodge rolling will create a Mirage that uses socketed ranged Attacks for a short duration, then vanish. You cannot create another Mirage while one exists, or for a short time after one vanishes. Dodge rolling while you are unable to create a new Mirage will restart this timer.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Meta] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, }, + weaponTypes = { + ["Spear"] = true, + ["Crossbow"] = true, + ["Bow"] = true, + }, + castTime = 0, + qualityStats = { + }, + levels = { + [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 60, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 60, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 60, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 60, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 60, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 60, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 60, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 60, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 60, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 60, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 60, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 60, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 60, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 60, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 60, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 60, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 60, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 60, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 60, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Mirage Archer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "lingering_mirage", + baseFlags = { + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportMirageArcherPlayer"] = { + name = "SupportMirageArcherPlayer", + hidden = true, + support = true, + requireSkillTypes = { SkillType.RangedAttack, SkillType.CrossbowAmmoSkill, SkillType.OR, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.HasUsageCondition, }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMirageArcherPlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_lingering_mirage_damage_+%_final", -30 }, + { "skill_disabled_unless_cloned", 1 }, + }, + stats = { + "cannot_consume_power_frenzy_endurance_charges", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MirageArcherSpawnPlayer"] = { + name = "", + hidden = true, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, }, + weaponTypes = { + ["Spear"] = true, + ["Crossbow"] = true, + ["Bow"] = true, + }, + castTime = 0, + qualityStats = { + { "base_skill_effect_duration", 50 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Mirage", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "create_mirage", + baseFlags = { + }, + constantStats = { + { "base_lingering_mirage_cooldown_ms", 6000 }, + }, + stats = { + "base_skill_effect_duration", + "triggered_by_lingering_mirage", + "hide_minion_frame", + "quality_display_lingering_mirage_is_gem", + "base_deal_no_damage_over_time", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 4050, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4150, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4200, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 4250, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4300, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4350, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 4400, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 4450, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4500, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4550, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 4600, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 4650, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 4700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 4750, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 4800, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 4850, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 4900, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4950, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 5000, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 5050, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 5100, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 5150, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 5200, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5250, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5300, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5350, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5400, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5450, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5500, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5550, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5600, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 5650, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 5700, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 5750, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 5800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 5850, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 5900, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 5950, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 6000, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["PhantasmalArrowPlayer"] = { + name = "Phantasmal Arrow", + baseTypeName = "Phantasmal Arrow", + color = 2, + description = "Fires an arrow that embeds where it lands for a short duration. At the end of the duration, the arrow explodes in spectral flame, turning it to ashes and damaging enemies, with a high chance to Ignite. Igniting any enemy with the Explosion also applies Ignite to enemies within range.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Bow"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_ignite_chance_+%_final", 5 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -30, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -30, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -30, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -30, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -30, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -30, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -30, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -30, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 21, }, }, + [13] = { attackSpeedMultiplier = -30, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 23, }, }, + [14] = { attackSpeedMultiplier = -30, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -30, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 27, }, }, + [16] = { attackSpeedMultiplier = -30, baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 29, }, }, + [17] = { attackSpeedMultiplier = -30, baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 32, }, }, + [18] = { attackSpeedMultiplier = -30, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 35, }, }, + [19] = { attackSpeedMultiplier = -30, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 37, }, }, + [20] = { attackSpeedMultiplier = -30, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 40, }, }, + [21] = { attackSpeedMultiplier = -30, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 44, }, }, + [22] = { attackSpeedMultiplier = -30, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 47, }, }, + [23] = { attackSpeedMultiplier = -30, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 51, }, }, + [24] = { attackSpeedMultiplier = -30, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 55, }, }, + [25] = { attackSpeedMultiplier = -30, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 59, }, }, + [26] = { attackSpeedMultiplier = -30, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 63, }, }, + [27] = { attackSpeedMultiplier = -30, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 68, }, }, + [28] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 73, }, }, + [29] = { attackSpeedMultiplier = -30, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 78, }, }, + [30] = { attackSpeedMultiplier = -30, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 83, }, }, + [31] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 89, }, }, + [32] = { attackSpeedMultiplier = -30, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 95, }, }, + [33] = { attackSpeedMultiplier = -30, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 102, }, }, + [34] = { attackSpeedMultiplier = -30, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 109, }, }, + [35] = { attackSpeedMultiplier = -30, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 116, }, }, + [36] = { attackSpeedMultiplier = -30, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 124, }, }, + [37] = { attackSpeedMultiplier = -30, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 132, }, }, + [38] = { attackSpeedMultiplier = -30, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 141, }, }, + [39] = { attackSpeedMultiplier = -30, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 150, }, }, + [40] = { attackSpeedMultiplier = -30, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 159, }, }, + }, + statSets = { + [1] = { + label = "Arrow", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ghostfuse_arrow", + baseFlags = { + attack = true, + projectile = true, + duration = true, + }, + constantStats = { + { "active_skill_base_physical_damage_%_to_convert_to_fire", 20 }, + { "base_skill_effect_duration", 1500 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "skill_can_fire_arrows", + "has_modular_projectiles_enabled", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "projectiles_fire_at_ground", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Explosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ghostfuse_arrow", + baseFlags = { + attack = true, + projectile = true, + area = true, + duration = true, + }, + constantStats = { + { "active_skill_base_physical_damage_%_to_convert_to_fire", 20 }, + { "base_skill_effect_duration", 1500 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, + { "active_skill_ignite_chance_+%_final", 200 }, + { "active_skill_ignite_proliferation_radius", 18 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "skill_can_fire_arrows", + "has_modular_projectiles_enabled", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "projectiles_fire_at_ground", + "is_area_damage", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { 15, baseMultiplier = 1.2, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 15, baseMultiplier = 1.32, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, baseMultiplier = 1.45, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, baseMultiplier = 1.58, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, baseMultiplier = 1.71, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 17, baseMultiplier = 1.84, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, baseMultiplier = 1.97, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 18, baseMultiplier = 2.08, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 19, baseMultiplier = 2.19, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 19, baseMultiplier = 2.3, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 20, baseMultiplier = 2.41, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 20, baseMultiplier = 2.53, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 21, baseMultiplier = 2.66, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 21, baseMultiplier = 2.79, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 22, baseMultiplier = 2.93, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 22, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 23, baseMultiplier = 3.23, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 23, baseMultiplier = 3.39, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 24, baseMultiplier = 3.56, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 24, baseMultiplier = 3.74, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 25, baseMultiplier = 3.93, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 25, baseMultiplier = 4.13, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 26, baseMultiplier = 4.33, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 26, baseMultiplier = 4.55, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 27, baseMultiplier = 4.78, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 27, baseMultiplier = 5.02, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 28, baseMultiplier = 5.27, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 28, baseMultiplier = 5.53, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 29, baseMultiplier = 5.81, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 29, baseMultiplier = 6.1, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 30, baseMultiplier = 6.4, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 30, baseMultiplier = 6.72, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 31, baseMultiplier = 7.06, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 31, baseMultiplier = 7.41, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 32, baseMultiplier = 7.78, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 32, baseMultiplier = 8.17, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 33, baseMultiplier = 8.58, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 33, baseMultiplier = 9.01, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 34, baseMultiplier = 9.46, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 34, baseMultiplier = 9.93, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["PlagueBearerPlayer"] = { name = "Plague Bearer", baseTypeName = "Plague Bearer", color = 2, - description = "While active, stores all Poison Damage you deal. Using the Plague Nova skill unleashes the stored Poison.", + description = "While active, stores a portion of the Poison Damage you deal. Using this Skill unleashes the stored Poison to damage and Poison enemies around you.", skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, }, castTime = 0, qualityStats = { @@ -4779,10 +5708,9 @@ skills["PlagueBearerPlayer"] = { } } skills["PlagueBearerNovaPlayer"] = { - name = "Plague Nova", + name = "Plague Bearer", hidden = true, - description = "Release all Poison stored by Plague Bearer, dealing an equal amount of Physical Damage to enemies around you.", - skillTypes = { [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Damage] = true, }, castTime = 1, qualityStats = { }, @@ -4830,19 +5758,18 @@ skills["PlagueBearerNovaPlayer"] = { }, statSets = { [1] = { - label = "Plague Nova", + label = "Plague Bearer", baseEffectiveness = 40, incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "plague_bearer_nova", baseFlags = { area = true, }, constantStats = { { "active_skill_base_area_of_effect_radius", 18 }, - { "base_skill_effect_duration", 0 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "plague_bearer_nova_area_+%_final_per_incubation_%", 6 }, { "active_skill_hit_damage_stun_multiplier_+%_final", -80 }, { "base_chance_to_poison_on_hit_%", 100 }, @@ -4905,55 +5832,55 @@ skills["PoisonBurstArrowPlayer"] = { baseTypeName = "Poisonburst Arrow", color = 2, description = "Fire a virulent arrow that creates a burst of Poison on hit, affecting all enemies in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Bow] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "base_poison_effect_+%", 1 }, + { "active_skill_poison_effect_+%_final", 1 }, }, levels = { [1] = { baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 5, }, }, [2] = { baseMultiplier = 0.97, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { baseMultiplier = 1.06, levelRequirement = 6, cost = { Mana = 7, }, }, [4] = { baseMultiplier = 1.16, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { baseMultiplier = 1.25, levelRequirement = 14, cost = { Mana = 8, }, }, - [6] = { baseMultiplier = 1.35, levelRequirement = 18, cost = { Mana = 9, }, }, - [7] = { baseMultiplier = 1.44, levelRequirement = 22, cost = { Mana = 10, }, }, - [8] = { baseMultiplier = 1.53, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { baseMultiplier = 1.6, levelRequirement = 31, cost = { Mana = 13, }, }, - [10] = { baseMultiplier = 1.69, levelRequirement = 36, cost = { Mana = 14, }, }, - [11] = { baseMultiplier = 1.77, levelRequirement = 41, cost = { Mana = 16, }, }, - [12] = { baseMultiplier = 1.86, levelRequirement = 46, cost = { Mana = 18, }, }, - [13] = { baseMultiplier = 1.95, levelRequirement = 52, cost = { Mana = 20, }, }, - [14] = { baseMultiplier = 2.05, levelRequirement = 58, cost = { Mana = 22, }, }, - [15] = { baseMultiplier = 2.15, levelRequirement = 64, cost = { Mana = 24, }, }, - [16] = { baseMultiplier = 2.26, levelRequirement = 66, cost = { Mana = 27, }, }, + [5] = { baseMultiplier = 1.25, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { baseMultiplier = 1.35, levelRequirement = 18, cost = { Mana = 10, }, }, + [7] = { baseMultiplier = 1.44, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { baseMultiplier = 1.53, levelRequirement = 26, cost = { Mana = 13, }, }, + [9] = { baseMultiplier = 1.6, levelRequirement = 31, cost = { Mana = 14, }, }, + [10] = { baseMultiplier = 1.69, levelRequirement = 36, cost = { Mana = 16, }, }, + [11] = { baseMultiplier = 1.77, levelRequirement = 41, cost = { Mana = 18, }, }, + [12] = { baseMultiplier = 1.86, levelRequirement = 46, cost = { Mana = 19, }, }, + [13] = { baseMultiplier = 1.95, levelRequirement = 52, cost = { Mana = 21, }, }, + [14] = { baseMultiplier = 2.05, levelRequirement = 58, cost = { Mana = 23, }, }, + [15] = { baseMultiplier = 2.15, levelRequirement = 64, cost = { Mana = 25, }, }, + [16] = { baseMultiplier = 2.26, levelRequirement = 66, cost = { Mana = 28, }, }, [17] = { baseMultiplier = 2.37, levelRequirement = 72, cost = { Mana = 30, }, }, [18] = { baseMultiplier = 2.49, levelRequirement = 78, cost = { Mana = 33, }, }, - [19] = { baseMultiplier = 2.61, levelRequirement = 84, cost = { Mana = 37, }, }, - [20] = { baseMultiplier = 2.74, levelRequirement = 90, cost = { Mana = 41, }, }, - [21] = { baseMultiplier = 2.88, levelRequirement = 90, cost = { Mana = 46, }, }, - [22] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 51, }, }, - [23] = { baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 56, }, }, - [24] = { baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 62, }, }, - [25] = { baseMultiplier = 3.5, levelRequirement = 90, cost = { Mana = 69, }, }, - [26] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 76, }, }, - [27] = { baseMultiplier = 3.86, levelRequirement = 90, cost = { Mana = 85, }, }, - [28] = { baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 94, }, }, - [29] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 104, }, }, - [30] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 115, }, }, - [31] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 128, }, }, - [32] = { baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 142, }, }, - [33] = { baseMultiplier = 5.18, levelRequirement = 90, cost = { Mana = 157, }, }, - [34] = { baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 174, }, }, - [35] = { baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 193, }, }, - [36] = { baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 214, }, }, - [37] = { baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 237, }, }, - [38] = { baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 263, }, }, - [39] = { baseMultiplier = 6.94, levelRequirement = 90, cost = { Mana = 292, }, }, - [40] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 323, }, }, + [19] = { baseMultiplier = 2.61, levelRequirement = 84, cost = { Mana = 35, }, }, + [20] = { baseMultiplier = 2.74, levelRequirement = 90, cost = { Mana = 38, }, }, + [21] = { baseMultiplier = 2.88, levelRequirement = 90, cost = { Mana = 41, }, }, + [22] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 44, }, }, + [23] = { baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 48, }, }, + [24] = { baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 52, }, }, + [25] = { baseMultiplier = 3.5, levelRequirement = 90, cost = { Mana = 55, }, }, + [26] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 60, }, }, + [27] = { baseMultiplier = 3.86, levelRequirement = 90, cost = { Mana = 64, }, }, + [28] = { baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 69, }, }, + [29] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 73, }, }, + [30] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 79, }, }, + [31] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 84, }, }, + [32] = { baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 90, }, }, + [33] = { baseMultiplier = 5.18, levelRequirement = 90, cost = { Mana = 96, }, }, + [34] = { baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 103, }, }, + [35] = { baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 110, }, }, + [36] = { baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 117, }, }, + [37] = { baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 124, }, }, + [38] = { baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 133, }, }, + [39] = { baseMultiplier = 6.94, levelRequirement = 90, cost = { Mana = 141, }, }, + [40] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 150, }, }, }, statSets = { [1] = { @@ -4967,7 +5894,7 @@ skills["PoisonBurstArrowPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_is_projectile", @@ -4979,6 +5906,7 @@ skills["PoisonBurstArrowPlayer"] = { "can_perform_skill_while_moving", "should_use_additive_aiming_animation", "disable_visual_hit_effect", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -5036,7 +5964,7 @@ skills["PoisonBurstArrowPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "active_skill_base_area_of_effect_radius", @@ -5050,6 +5978,7 @@ skills["PoisonBurstArrowPlayer"] = { "can_perform_skill_while_moving", "should_use_additive_aiming_animation", "disable_visual_hit_effect", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_no_hit_damage", "display_statset_hide_usage_stats", @@ -5109,7 +6038,7 @@ skills["PrimalStrikesPlayer"] = { name = "Primal Strikes", baseTypeName = "Primal Strikes", color = 2, - description = "Perform a Lightning-charged stab that can be chained into a combination of up to three attacks. The first two attacks conjure a charging Wildwood spirit if they Hit a Shocked enemy and refresh Shock duration. The third attack is a large swipe that inflicts Lightning Exposure, and can Consume Shock to conjure a stampede of spirits.", + description = "Perform a Lightning-charged stab that can be chained into a combination of up to three attacks. The first two attacks conjure a charging Wildwood spirit if they Hit a Shocked enemy and refresh Shock duration. The third attack is a large swipe that inflicts Elemental Exposure, and can Consume Shock to conjure a stampede of spirits.", skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.SkillConsumesShock] = true, }, weaponTypes = { ["Spear"] = true, @@ -5123,42 +6052,42 @@ skills["PrimalStrikesPlayer"] = { [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 7, }, }, [4] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 8, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 9, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 10, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 13, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 14, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 16, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 18, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 20, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 22, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 24, }, }, - [16] = { attackSpeedMultiplier = -20, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 27, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 10, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 13, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 16, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 18, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 21, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 23, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 26, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 28, }, }, [17] = { attackSpeedMultiplier = -20, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 30, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 34, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 37, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 41, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 46, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 51, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 56, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 62, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 69, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 77, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 85, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 94, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 105, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 116, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 129, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 143, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 158, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 175, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 194, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 215, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 239, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 264, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 293, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 325, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 33, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 36, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 38, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 42, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 45, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 48, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 52, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 56, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 60, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 64, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 69, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 74, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 79, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 85, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 91, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 97, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 103, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 110, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 118, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 125, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 134, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 142, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 151, }, }, }, statSets = { [1] = { @@ -5172,7 +6101,6 @@ skills["PrimalStrikesPlayer"] = { }, constantStats = { { "statset_index_for_final_animation_combo_index", 2 }, - { "attack_maximum_action_distance_+", 5 }, { "melee_range_+", 5 }, { "perfect_strike_timing_window_base_ms", 200 }, { "melee_conditional_step_distance", 15 }, @@ -5187,6 +6115,7 @@ skills["PrimalStrikesPlayer"] = { "is_area_damage", "primal_strikes_stag_is_scaled_with_area_of_effect", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -5242,7 +6171,6 @@ skills["PrimalStrikesPlayer"] = { }, constantStats = { { "statset_index_for_final_animation_combo_index", 2 }, - { "attack_maximum_action_distance_+", 5 }, { "perfect_strike_timing_window_base_ms", 200 }, { "melee_conditional_step_distance", 15 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, @@ -5259,6 +6187,7 @@ skills["PrimalStrikesPlayer"] = { "is_area_damage", "primal_strikes_stag_is_scaled_with_area_of_effect", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { @@ -5315,7 +6244,6 @@ skills["PrimalStrikesPlayer"] = { }, constantStats = { { "statset_index_for_final_animation_combo_index", 2 }, - { "attack_maximum_action_distance_+", 5 }, { "melee_range_+", 5 }, { "perfect_strike_timing_window_base_ms", 200 }, { "melee_conditional_step_distance", 15 }, @@ -5328,12 +6256,13 @@ skills["PrimalStrikesPlayer"] = { { "supplementary_stat_container_attack_speed_+%_final", -35 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "primal_strikes_number_of_stags", 6 }, - { "base_inflict_lightning_exposure_on_hit_%_chance", 100 }, + { "inflict_exposure_on_hit_%_chance", 100 }, }, stats = { "is_area_damage", "primal_strikes_stag_is_scaled_with_area_of_effect", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "base_consume_enemy_shock_on_hit", }, @@ -5387,55 +6316,55 @@ skills["RainOfArrowsPlayer"] = { baseTypeName = "Rain of Arrows", color = 2, description = "Fire a hail of arrows into the air, causing them to rain from above. Consumes your Frenzy Charges to fire more arrows.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "base_number_of_projectiles", 0.5 }, + { "rain_of_arrows_arrow_speed_+%", 1 }, }, levels = { [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 15, }, }, [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 17, }, }, - [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 19, }, }, - [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 10, cost = { Mana = 21, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.7, levelRequirement = 14, cost = { Mana = 23, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.75, levelRequirement = 18, cost = { Mana = 26, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 22, cost = { Mana = 29, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 26, cost = { Mana = 32, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 31, cost = { Mana = 35, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 36, cost = { Mana = 39, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 41, cost = { Mana = 44, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.99, levelRequirement = 46, cost = { Mana = 48, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.03, levelRequirement = 52, cost = { Mana = 54, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 58, cost = { Mana = 60, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 64, cost = { Mana = 66, }, }, - [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 73, }, }, + [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 20, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 10, cost = { Mana = 23, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.7, levelRequirement = 14, cost = { Mana = 26, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.75, levelRequirement = 18, cost = { Mana = 29, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 22, cost = { Mana = 32, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 26, cost = { Mana = 36, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 31, cost = { Mana = 40, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 36, cost = { Mana = 44, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 41, cost = { Mana = 48, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.99, levelRequirement = 46, cost = { Mana = 53, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.03, levelRequirement = 52, cost = { Mana = 58, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 58, cost = { Mana = 63, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 64, cost = { Mana = 69, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 75, }, }, [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.19, levelRequirement = 72, cost = { Mana = 81, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.23, levelRequirement = 78, cost = { Mana = 90, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 84, cost = { Mana = 100, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 111, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 123, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 90, cost = { Mana = 136, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 151, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 167, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 185, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 205, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 228, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 252, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 90, cost = { Mana = 280, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.83, levelRequirement = 90, cost = { Mana = 310, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.89, levelRequirement = 90, cost = { Mana = 344, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 381, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.02, levelRequirement = 90, cost = { Mana = 422, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.08, levelRequirement = 90, cost = { Mana = 468, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.15, levelRequirement = 90, cost = { Mana = 518, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 2.22, levelRequirement = 90, cost = { Mana = 574, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 636, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 705, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 2.45, levelRequirement = 90, cost = { Mana = 782, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 866, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.23, levelRequirement = 78, cost = { Mana = 88, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 84, cost = { Mana = 95, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 103, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 111, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 90, cost = { Mana = 120, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 129, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 139, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 149, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 161, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 172, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 185, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 90, cost = { Mana = 198, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.83, levelRequirement = 90, cost = { Mana = 212, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.89, levelRequirement = 90, cost = { Mana = 226, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 242, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.02, levelRequirement = 90, cost = { Mana = 258, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.08, levelRequirement = 90, cost = { Mana = 276, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.15, levelRequirement = 90, cost = { Mana = 294, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 2.22, levelRequirement = 90, cost = { Mana = 314, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 334, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 356, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 2.45, levelRequirement = 90, cost = { Mana = 379, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 404, }, }, }, statSets = { [1] = { @@ -5463,7 +6392,7 @@ skills["RainOfArrowsPlayer"] = { { "rain_of_arrows_projectile_count_multiplier_per_frenzy_charge", 50 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_arrow_rains_allowed", 1 }, { "rain_of_arrows_delay_per_arrow", 80 }, { "rain_hit_delay_ms", 120 }, @@ -5528,55 +6457,55 @@ skills["RakePlayer"] = { baseTypeName = "Rake", color = 2, description = "Dash towards an enemy and perform a lacerating slash, inflicting Bleeding on all enemies struck.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spear] = true, [SkillType.Physical] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spear] = true, [SkillType.Physical] = true, [SkillType.Movement] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, castTime = 1, qualityStats = { - { "base_dash_additional_damage_from_distance_+%_final", 1.5 }, + { "base_additional_damage_from_distance_+%_final", 1.5 }, }, levels = { [1] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { baseMultiplier = 0.83, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { baseMultiplier = 0.88, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { baseMultiplier = 0.93, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { baseMultiplier = 0.99, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { baseMultiplier = 1.11, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { baseMultiplier = 1.17, levelRequirement = 52, cost = { Mana = 21, }, }, - [14] = { baseMultiplier = 1.25, levelRequirement = 58, cost = { Mana = 23, }, }, - [15] = { baseMultiplier = 1.32, levelRequirement = 64, cost = { Mana = 26, }, }, - [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 28, }, }, + [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { baseMultiplier = 0.83, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { baseMultiplier = 0.88, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { baseMultiplier = 0.93, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { baseMultiplier = 0.99, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { baseMultiplier = 1.11, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { baseMultiplier = 1.17, levelRequirement = 52, cost = { Mana = 22, }, }, + [14] = { baseMultiplier = 1.25, levelRequirement = 58, cost = { Mana = 24, }, }, + [15] = { baseMultiplier = 1.32, levelRequirement = 64, cost = { Mana = 27, }, }, + [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 29, }, }, [17] = { baseMultiplier = 1.5, levelRequirement = 72, cost = { Mana = 32, }, }, - [18] = { baseMultiplier = 1.59, levelRequirement = 78, cost = { Mana = 35, }, }, - [19] = { baseMultiplier = 1.7, levelRequirement = 84, cost = { Mana = 39, }, }, - [20] = { baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 43, }, }, - [21] = { baseMultiplier = 1.93, levelRequirement = 90, cost = { Mana = 48, }, }, - [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 53, }, }, - [23] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 59, }, }, - [24] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 65, }, }, - [25] = { baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 72, }, }, - [26] = { baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 80, }, }, - [27] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 89, }, }, - [28] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 99, }, }, - [29] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 109, }, }, - [30] = { baseMultiplier = 3.45, levelRequirement = 90, cost = { Mana = 121, }, }, - [31] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 134, }, }, - [32] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 149, }, }, - [33] = { baseMultiplier = 4.19, levelRequirement = 90, cost = { Mana = 165, }, }, - [34] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 183, }, }, - [35] = { baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 203, }, }, - [36] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 225, }, }, - [37] = { baseMultiplier = 5.42, levelRequirement = 90, cost = { Mana = 249, }, }, - [38] = { baseMultiplier = 5.78, levelRequirement = 90, cost = { Mana = 276, }, }, - [39] = { baseMultiplier = 6.17, levelRequirement = 90, cost = { Mana = 306, }, }, - [40] = { baseMultiplier = 6.58, levelRequirement = 90, cost = { Mana = 339, }, }, + [18] = { baseMultiplier = 1.59, levelRequirement = 78, cost = { Mana = 34, }, }, + [19] = { baseMultiplier = 1.7, levelRequirement = 84, cost = { Mana = 37, }, }, + [20] = { baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 40, }, }, + [21] = { baseMultiplier = 1.93, levelRequirement = 90, cost = { Mana = 43, }, }, + [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 47, }, }, + [23] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 50, }, }, + [24] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 54, }, }, + [25] = { baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 58, }, }, + [26] = { baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 63, }, }, + [27] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 67, }, }, + [28] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 72, }, }, + [29] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 77, }, }, + [30] = { baseMultiplier = 3.45, levelRequirement = 90, cost = { Mana = 83, }, }, + [31] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 88, }, }, + [32] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 95, }, }, + [33] = { baseMultiplier = 4.19, levelRequirement = 90, cost = { Mana = 101, }, }, + [34] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 108, }, }, + [35] = { baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 115, }, }, + [36] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 123, }, }, + [37] = { baseMultiplier = 5.42, levelRequirement = 90, cost = { Mana = 131, }, }, + [38] = { baseMultiplier = 5.78, levelRequirement = 90, cost = { Mana = 139, }, }, + [39] = { baseMultiplier = 6.17, levelRequirement = 90, cost = { Mana = 148, }, }, + [40] = { baseMultiplier = 6.58, levelRequirement = 90, cost = { Mana = 158, }, }, }, statSets = { [1] = { @@ -5598,7 +6527,7 @@ skills["RakePlayer"] = { }, constantStats = { { "base_melee_dash_range", 50 }, - { "base_dash_additional_damage_from_distance_+%_final", 100 }, + { "base_additional_damage_from_distance_+%_final", 100 }, { "melee_conditional_step_distance", 8 }, { "total_attack_time_+_ms", 400 }, { "active_skill_bleeding_effect_+%_final", 100 }, @@ -5611,6 +6540,7 @@ skills["RakePlayer"] = { "is_area_damage", "quality_display_spear_puncture_is_gem", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -5673,44 +6603,44 @@ skills["RapidAssaultPlayer"] = { levels = { [1] = { attackSpeedMultiplier = -60, baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 10, }, }, [2] = { attackSpeedMultiplier = -60, baseMultiplier = 0.27, levelRequirement = 3, cost = { Mana = 11, }, }, - [3] = { attackSpeedMultiplier = -60, baseMultiplier = 0.3, levelRequirement = 6, cost = { Mana = 12, }, }, - [4] = { attackSpeedMultiplier = -60, baseMultiplier = 0.33, levelRequirement = 10, cost = { Mana = 14, }, }, - [5] = { attackSpeedMultiplier = -60, baseMultiplier = 0.36, levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { attackSpeedMultiplier = -60, baseMultiplier = 0.38, levelRequirement = 18, cost = { Mana = 17, }, }, - [7] = { attackSpeedMultiplier = -60, baseMultiplier = 0.41, levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { attackSpeedMultiplier = -60, baseMultiplier = 0.43, levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { attackSpeedMultiplier = -60, baseMultiplier = 0.46, levelRequirement = 31, cost = { Mana = 23, }, }, - [10] = { attackSpeedMultiplier = -60, baseMultiplier = 0.48, levelRequirement = 36, cost = { Mana = 26, }, }, - [11] = { attackSpeedMultiplier = -60, baseMultiplier = 0.5, levelRequirement = 41, cost = { Mana = 29, }, }, - [12] = { attackSpeedMultiplier = -60, baseMultiplier = 0.53, levelRequirement = 46, cost = { Mana = 32, }, }, - [13] = { attackSpeedMultiplier = -60, baseMultiplier = 0.55, levelRequirement = 52, cost = { Mana = 36, }, }, - [14] = { attackSpeedMultiplier = -60, baseMultiplier = 0.58, levelRequirement = 58, cost = { Mana = 40, }, }, - [15] = { attackSpeedMultiplier = -60, baseMultiplier = 0.61, levelRequirement = 64, cost = { Mana = 44, }, }, - [16] = { attackSpeedMultiplier = -60, baseMultiplier = 0.64, levelRequirement = 66, cost = { Mana = 49, }, }, + [3] = { attackSpeedMultiplier = -60, baseMultiplier = 0.3, levelRequirement = 6, cost = { Mana = 13, }, }, + [4] = { attackSpeedMultiplier = -60, baseMultiplier = 0.33, levelRequirement = 10, cost = { Mana = 15, }, }, + [5] = { attackSpeedMultiplier = -60, baseMultiplier = 0.36, levelRequirement = 14, cost = { Mana = 17, }, }, + [6] = { attackSpeedMultiplier = -60, baseMultiplier = 0.38, levelRequirement = 18, cost = { Mana = 19, }, }, + [7] = { attackSpeedMultiplier = -60, baseMultiplier = 0.41, levelRequirement = 22, cost = { Mana = 21, }, }, + [8] = { attackSpeedMultiplier = -60, baseMultiplier = 0.43, levelRequirement = 26, cost = { Mana = 24, }, }, + [9] = { attackSpeedMultiplier = -60, baseMultiplier = 0.46, levelRequirement = 31, cost = { Mana = 26, }, }, + [10] = { attackSpeedMultiplier = -60, baseMultiplier = 0.48, levelRequirement = 36, cost = { Mana = 29, }, }, + [11] = { attackSpeedMultiplier = -60, baseMultiplier = 0.5, levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { attackSpeedMultiplier = -60, baseMultiplier = 0.53, levelRequirement = 46, cost = { Mana = 35, }, }, + [13] = { attackSpeedMultiplier = -60, baseMultiplier = 0.55, levelRequirement = 52, cost = { Mana = 38, }, }, + [14] = { attackSpeedMultiplier = -60, baseMultiplier = 0.58, levelRequirement = 58, cost = { Mana = 42, }, }, + [15] = { attackSpeedMultiplier = -60, baseMultiplier = 0.61, levelRequirement = 64, cost = { Mana = 46, }, }, + [16] = { attackSpeedMultiplier = -60, baseMultiplier = 0.64, levelRequirement = 66, cost = { Mana = 50, }, }, [17] = { attackSpeedMultiplier = -60, baseMultiplier = 0.67, levelRequirement = 72, cost = { Mana = 54, }, }, - [18] = { attackSpeedMultiplier = -60, baseMultiplier = 0.71, levelRequirement = 78, cost = { Mana = 60, }, }, - [19] = { attackSpeedMultiplier = -60, baseMultiplier = 0.74, levelRequirement = 84, cost = { Mana = 66, }, }, - [20] = { attackSpeedMultiplier = -60, baseMultiplier = 0.78, levelRequirement = 90, cost = { Mana = 74, }, }, - [21] = { attackSpeedMultiplier = -60, baseMultiplier = 0.82, levelRequirement = 90, cost = { Mana = 82, }, }, - [22] = { attackSpeedMultiplier = -60, baseMultiplier = 0.86, levelRequirement = 90, cost = { Mana = 90, }, }, - [23] = { attackSpeedMultiplier = -60, baseMultiplier = 0.9, levelRequirement = 90, cost = { Mana = 100, }, }, - [24] = { attackSpeedMultiplier = -60, baseMultiplier = 0.95, levelRequirement = 90, cost = { Mana = 111, }, }, - [25] = { attackSpeedMultiplier = -60, levelRequirement = 90, cost = { Mana = 123, }, }, - [26] = { attackSpeedMultiplier = -60, baseMultiplier = 1.04, levelRequirement = 90, cost = { Mana = 137, }, }, - [27] = { attackSpeedMultiplier = -60, baseMultiplier = 1.1, levelRequirement = 90, cost = { Mana = 152, }, }, - [28] = { attackSpeedMultiplier = -60, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 168, }, }, - [29] = { attackSpeedMultiplier = -60, baseMultiplier = 1.21, levelRequirement = 90, cost = { Mana = 186, }, }, - [30] = { attackSpeedMultiplier = -60, baseMultiplier = 1.27, levelRequirement = 90, cost = { Mana = 206, }, }, - [31] = { attackSpeedMultiplier = -60, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 229, }, }, - [32] = { attackSpeedMultiplier = -60, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 253, }, }, - [33] = { attackSpeedMultiplier = -60, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 281, }, }, - [34] = { attackSpeedMultiplier = -60, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 311, }, }, - [35] = { attackSpeedMultiplier = -60, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 345, }, }, - [36] = { attackSpeedMultiplier = -60, baseMultiplier = 1.7, levelRequirement = 90, cost = { Mana = 382, }, }, - [37] = { attackSpeedMultiplier = -60, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 424, }, }, - [38] = { attackSpeedMultiplier = -60, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 470, }, }, - [39] = { attackSpeedMultiplier = -60, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 521, }, }, - [40] = { attackSpeedMultiplier = -60, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 577, }, }, + [18] = { attackSpeedMultiplier = -60, baseMultiplier = 0.71, levelRequirement = 78, cost = { Mana = 59, }, }, + [19] = { attackSpeedMultiplier = -60, baseMultiplier = 0.74, levelRequirement = 84, cost = { Mana = 63, }, }, + [20] = { attackSpeedMultiplier = -60, baseMultiplier = 0.78, levelRequirement = 90, cost = { Mana = 69, }, }, + [21] = { attackSpeedMultiplier = -60, baseMultiplier = 0.82, levelRequirement = 90, cost = { Mana = 74, }, }, + [22] = { attackSpeedMultiplier = -60, baseMultiplier = 0.86, levelRequirement = 90, cost = { Mana = 80, }, }, + [23] = { attackSpeedMultiplier = -60, baseMultiplier = 0.9, levelRequirement = 90, cost = { Mana = 86, }, }, + [24] = { attackSpeedMultiplier = -60, baseMultiplier = 0.95, levelRequirement = 90, cost = { Mana = 93, }, }, + [25] = { attackSpeedMultiplier = -60, levelRequirement = 90, cost = { Mana = 99, }, }, + [26] = { attackSpeedMultiplier = -60, baseMultiplier = 1.04, levelRequirement = 90, cost = { Mana = 107, }, }, + [27] = { attackSpeedMultiplier = -60, baseMultiplier = 1.1, levelRequirement = 90, cost = { Mana = 115, }, }, + [28] = { attackSpeedMultiplier = -60, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 123, }, }, + [29] = { attackSpeedMultiplier = -60, baseMultiplier = 1.21, levelRequirement = 90, cost = { Mana = 132, }, }, + [30] = { attackSpeedMultiplier = -60, baseMultiplier = 1.27, levelRequirement = 90, cost = { Mana = 141, }, }, + [31] = { attackSpeedMultiplier = -60, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 151, }, }, + [32] = { attackSpeedMultiplier = -60, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 161, }, }, + [33] = { attackSpeedMultiplier = -60, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 172, }, }, + [34] = { attackSpeedMultiplier = -60, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 184, }, }, + [35] = { attackSpeedMultiplier = -60, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 196, }, }, + [36] = { attackSpeedMultiplier = -60, baseMultiplier = 1.7, levelRequirement = 90, cost = { Mana = 209, }, }, + [37] = { attackSpeedMultiplier = -60, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 223, }, }, + [38] = { attackSpeedMultiplier = -60, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 237, }, }, + [39] = { attackSpeedMultiplier = -60, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 253, }, }, + [40] = { attackSpeedMultiplier = -60, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 269, }, }, }, statSets = { [1] = { @@ -5730,6 +6660,7 @@ skills["RapidAssaultPlayer"] = { stats = { "melee_defer_damage_prediction", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -5789,12 +6720,13 @@ skills["RapidAssaultPlayer"] = { { "melee_conditional_step_distance", 13 }, { "melee_range_+", 6 }, { "rapid_assault_attached_spear_limit", 5 }, - { "base_skill_effect_duration", 10000 }, + { "base_skill_effect_duration", 30000 }, { "base_chance_to_inflict_bleeding_%", 100 }, }, stats = { "melee_defer_damage_prediction", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "global_knockback", }, @@ -5858,6 +6790,7 @@ skills["RapidAssaultPlayer"] = { stats = { "melee_defer_damage_prediction", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { @@ -5912,7 +6845,7 @@ skills["RhoaMountPlayer"] = { "SummonedRhoa", }, color = 2, - description = "Harnesses a Companion Rhoa that you can ride. While you're mounted on the Rhoa, you can only use Bow, thrown Spear and Mark Skills, you run at full speed when attacking, and Hits against you cause Heavy Stun buildup. While you aren't mounted, the Rhoa attacks your enemies alongside you with its beak, but can be damaged.", + description = "Harnesses a Companion Rhoa you can mount while you're wielding a Bow or Spear. While mounted you can use Bow, thrown Spear and Mark Skills, run faster and barely slow to use Skills, but being Hit will cause Heavy Stun buildup. While you aren't mounted, the Rhoa will attack your enemies alongside you with its beak, but can be damaged.", skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 1, @@ -5972,6 +6905,8 @@ skills["RhoaMountPlayer"] = { constantStats = { { "minion_base_resummon_time_ms", 12000 }, { "minion_accuracy_rating_+%", 100 }, + { "rhoa_movement_speed_+%", 15 }, + { "rhoa_movement_speed_penalty_+%_final_while_performing_action", -80 }, }, stats = { "is_resummoning_minion", @@ -6026,8 +6961,8 @@ skills["ShockchainArrowPlayer"] = { name = "Shockchain Arrow", baseTypeName = "Shockchain Arrow", color = 2, - description = "Fire a Lightning-infused arrow that homes in on enemies afflicted by Lightning Ailments. Hitting such an enemy will charge the arrow, causing it to release a damaging shockwave and split beams towards up to two nearby targets. Those beams will repeat this process if they hit an enemy afflicted by a Lightning Ailment. Consumes Shock from enemies it Hits, but not Electrocution.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.SkillConsumesShock] = true, [SkillType.Bow] = true, }, + description = "Fire a Lightning-charged arrow that homes in on enemies afflicted by Lightning Ailments. Hitting such an enemy will charge the arrow, causing it to release a damaging shockwave and split beams towards up to two nearby targets. Those beams will repeat this process if they hit an enemy afflicted by a Lightning Ailment. Consumes Shock from enemies it Hits, but not Electrocution.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.SkillConsumesShock] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -6038,44 +6973,44 @@ skills["ShockchainArrowPlayer"] = { levels = { [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 10, }, }, [2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 11, }, }, - [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 12, }, }, - [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 14, }, }, - [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 17, }, }, - [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 23, }, }, - [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 26, }, }, - [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 29, }, }, - [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 32, }, }, - [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 35, }, }, - [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 39, }, }, - [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 43, }, }, - [16] = { attackSpeedMultiplier = -30, baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 48, }, }, - [17] = { attackSpeedMultiplier = -30, baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 53, }, }, - [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 59, }, }, - [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 66, }, }, - [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 73, }, }, - [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 81, }, }, - [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 90, }, }, - [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 99, }, }, - [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 110, }, }, - [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 122, }, }, - [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 136, }, }, - [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 150, }, }, - [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 167, }, }, - [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 185, }, }, - [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 205, }, }, - [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 227, }, }, - [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 251, }, }, - [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 279, }, }, - [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 309, }, }, - [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 342, }, }, - [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 379, }, }, - [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 420, }, }, - [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 466, }, }, - [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 516, }, }, - [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 572, }, }, + [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 13, }, }, + [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 15, }, }, + [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 17, }, }, + [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 19, }, }, + [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 21, }, }, + [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 23, }, }, + [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 26, }, }, + [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 29, }, }, + [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 35, }, }, + [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 38, }, }, + [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 42, }, }, + [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 45, }, }, + [16] = { attackSpeedMultiplier = -30, baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 49, }, }, + [17] = { attackSpeedMultiplier = -30, baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 54, }, }, + [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 58, }, }, + [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 63, }, }, + [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 68, }, }, + [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 73, }, }, + [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 79, }, }, + [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 85, }, }, + [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 92, }, }, + [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 99, }, }, + [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 106, }, }, + [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 114, }, }, + [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 122, }, }, + [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 130, }, }, + [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 140, }, }, + [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 149, }, }, + [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 160, }, }, + [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 170, }, }, + [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 182, }, }, + [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 194, }, }, + [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 207, }, }, + [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 221, }, }, + [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 235, }, }, + [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 250, }, }, + [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 266, }, }, }, statSets = { [1] = { @@ -6090,7 +7025,7 @@ skills["ShockchainArrowPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_is_projectile", @@ -6105,6 +7040,7 @@ skills["ShockchainArrowPlayer"] = { "base_consume_enemy_shock_on_hit", "always_pierce_non_shocked_enemies_if_targeting_shocked_enemy", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -6161,7 +7097,7 @@ skills["ShockchainArrowPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, { "number_of_chains", 10 }, }, @@ -6176,6 +7112,7 @@ skills["ShockchainArrowPlayer"] = { "should_use_additive_aiming_animation", "base_consume_enemy_shock_on_hit", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { @@ -6233,7 +7170,7 @@ skills["ShockchainArrowPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_area_of_effect_radius", 25 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, }, @@ -6247,6 +7184,7 @@ skills["ShockchainArrowPlayer"] = { "can_perform_skill_while_moving", "should_use_additive_aiming_animation", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { @@ -6298,56 +7236,56 @@ skills["SnipePlayer"] = { name = "Snipe", baseTypeName = "Snipe", color = 2, - description = "Channel to charge up your bow before releasing a powerful shot. Releasing the moment you fully charge causes the arrow to explode on impact for a guaranteed Critical Hit.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Channel] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.PerfectTiming] = true, [SkillType.Bow] = true, }, + description = "Channel to charge up your bow before releasing a powerful shot. Releasing with Perfect Timing causes the arrow to explode on impact and Consume Freeze on directly Hitting. Consuming Freeze or Hitting a Heavy Stunned enemy enhances the explosion.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Channel] = true, [SkillType.Barrageable] = true, [SkillType.Area] = true, [SkillType.PerfectTiming] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cold] = true, [SkillType.SkillConsumesFreeze] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "base_critical_strike_multiplier_+", 2.5 }, + { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 0, cost = { ManaPerMinute = 1086, }, }, - [2] = { attackSpeedMultiplier = -55, baseMultiplier = 1.21, levelRequirement = 3, cost = { ManaPerMinute = 1203, }, }, - [3] = { attackSpeedMultiplier = -55, baseMultiplier = 1.33, levelRequirement = 6, cost = { ManaPerMinute = 1333, }, }, - [4] = { attackSpeedMultiplier = -55, baseMultiplier = 1.45, levelRequirement = 10, cost = { ManaPerMinute = 1477, }, }, - [5] = { attackSpeedMultiplier = -55, baseMultiplier = 1.57, levelRequirement = 14, cost = { ManaPerMinute = 1637, }, }, - [6] = { attackSpeedMultiplier = -55, baseMultiplier = 1.68, levelRequirement = 18, cost = { ManaPerMinute = 1814, }, }, - [7] = { attackSpeedMultiplier = -55, baseMultiplier = 1.8, levelRequirement = 22, cost = { ManaPerMinute = 2010, }, }, - [8] = { attackSpeedMultiplier = -55, baseMultiplier = 1.91, levelRequirement = 26, cost = { ManaPerMinute = 2227, }, }, - [9] = { attackSpeedMultiplier = -55, baseMultiplier = 2.01, levelRequirement = 31, cost = { ManaPerMinute = 2468, }, }, - [10] = { attackSpeedMultiplier = -55, baseMultiplier = 2.11, levelRequirement = 36, cost = { ManaPerMinute = 2735, }, }, - [11] = { attackSpeedMultiplier = -55, baseMultiplier = 2.21, levelRequirement = 41, cost = { ManaPerMinute = 3031, }, }, - [12] = { attackSpeedMultiplier = -55, baseMultiplier = 2.32, levelRequirement = 46, cost = { ManaPerMinute = 3358, }, }, - [13] = { attackSpeedMultiplier = -55, baseMultiplier = 2.44, levelRequirement = 52, cost = { ManaPerMinute = 3722, }, }, - [14] = { attackSpeedMultiplier = -55, baseMultiplier = 2.56, levelRequirement = 58, cost = { ManaPerMinute = 4124, }, }, - [15] = { attackSpeedMultiplier = -55, baseMultiplier = 2.69, levelRequirement = 64, cost = { ManaPerMinute = 4570, }, }, - [16] = { attackSpeedMultiplier = -55, baseMultiplier = 2.82, levelRequirement = 66, cost = { ManaPerMinute = 5064, }, }, - [17] = { attackSpeedMultiplier = -55, baseMultiplier = 2.96, levelRequirement = 72, cost = { ManaPerMinute = 5611, }, }, - [18] = { attackSpeedMultiplier = -55, baseMultiplier = 3.11, levelRequirement = 78, cost = { ManaPerMinute = 6218, }, }, - [19] = { attackSpeedMultiplier = -55, baseMultiplier = 3.27, levelRequirement = 84, cost = { ManaPerMinute = 6890, }, }, - [20] = { attackSpeedMultiplier = -55, baseMultiplier = 3.43, levelRequirement = 90, cost = { ManaPerMinute = 7635, }, }, - [21] = { attackSpeedMultiplier = -55, baseMultiplier = 3.6, levelRequirement = 90, cost = { ManaPerMinute = 8460, }, }, - [22] = { attackSpeedMultiplier = -55, baseMultiplier = 3.78, levelRequirement = 90, cost = { ManaPerMinute = 9375, }, }, - [23] = { attackSpeedMultiplier = -55, baseMultiplier = 3.97, levelRequirement = 90, cost = { ManaPerMinute = 10388, }, }, - [24] = { attackSpeedMultiplier = -55, baseMultiplier = 4.17, levelRequirement = 90, cost = { ManaPerMinute = 11511, }, }, - [25] = { attackSpeedMultiplier = -55, baseMultiplier = 4.38, levelRequirement = 90, cost = { ManaPerMinute = 12756, }, }, - [26] = { attackSpeedMultiplier = -55, baseMultiplier = 4.6, levelRequirement = 90, cost = { ManaPerMinute = 14135, }, }, - [27] = { attackSpeedMultiplier = -55, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 15663, }, }, - [28] = { attackSpeedMultiplier = -55, baseMultiplier = 5.07, levelRequirement = 90, cost = { ManaPerMinute = 17356, }, }, - [29] = { attackSpeedMultiplier = -55, baseMultiplier = 5.32, levelRequirement = 90, cost = { ManaPerMinute = 19232, }, }, - [30] = { attackSpeedMultiplier = -55, baseMultiplier = 5.59, levelRequirement = 90, cost = { ManaPerMinute = 21311, }, }, - [31] = { attackSpeedMultiplier = -55, baseMultiplier = 5.87, levelRequirement = 90, cost = { ManaPerMinute = 23615, }, }, - [32] = { attackSpeedMultiplier = -55, baseMultiplier = 6.16, levelRequirement = 90, cost = { ManaPerMinute = 26168, }, }, - [33] = { attackSpeedMultiplier = -55, baseMultiplier = 6.47, levelRequirement = 90, cost = { ManaPerMinute = 28997, }, }, - [34] = { attackSpeedMultiplier = -55, baseMultiplier = 6.79, levelRequirement = 90, cost = { ManaPerMinute = 32131, }, }, - [35] = { attackSpeedMultiplier = -55, baseMultiplier = 7.13, levelRequirement = 90, cost = { ManaPerMinute = 35605, }, }, - [36] = { attackSpeedMultiplier = -55, baseMultiplier = 7.49, levelRequirement = 90, cost = { ManaPerMinute = 39454, }, }, - [37] = { attackSpeedMultiplier = -55, baseMultiplier = 7.86, levelRequirement = 90, cost = { ManaPerMinute = 43719, }, }, - [38] = { attackSpeedMultiplier = -55, baseMultiplier = 8.26, levelRequirement = 90, cost = { ManaPerMinute = 48445, }, }, - [39] = { attackSpeedMultiplier = -55, baseMultiplier = 8.67, levelRequirement = 90, cost = { ManaPerMinute = 53682, }, }, - [40] = { attackSpeedMultiplier = -55, baseMultiplier = 9.1, levelRequirement = 90, cost = { ManaPerMinute = 59485, }, }, + [1] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 0, cost = { ManaPerMinute = 1053, }, }, + [2] = { attackSpeedMultiplier = -55, baseMultiplier = 1.21, levelRequirement = 3, cost = { ManaPerMinute = 1218, }, }, + [3] = { attackSpeedMultiplier = -55, baseMultiplier = 1.33, levelRequirement = 6, cost = { ManaPerMinute = 1395, }, }, + [4] = { attackSpeedMultiplier = -55, baseMultiplier = 1.45, levelRequirement = 10, cost = { ManaPerMinute = 1585, }, }, + [5] = { attackSpeedMultiplier = -55, baseMultiplier = 1.57, levelRequirement = 14, cost = { ManaPerMinute = 1788, }, }, + [6] = { attackSpeedMultiplier = -55, baseMultiplier = 1.68, levelRequirement = 18, cost = { ManaPerMinute = 2006, }, }, + [7] = { attackSpeedMultiplier = -55, baseMultiplier = 1.8, levelRequirement = 22, cost = { ManaPerMinute = 2238, }, }, + [8] = { attackSpeedMultiplier = -55, baseMultiplier = 1.91, levelRequirement = 26, cost = { ManaPerMinute = 2487, }, }, + [9] = { attackSpeedMultiplier = -55, baseMultiplier = 2.01, levelRequirement = 31, cost = { ManaPerMinute = 2752, }, }, + [10] = { attackSpeedMultiplier = -55, baseMultiplier = 2.11, levelRequirement = 36, cost = { ManaPerMinute = 3036, }, }, + [11] = { attackSpeedMultiplier = -55, baseMultiplier = 2.21, levelRequirement = 41, cost = { ManaPerMinute = 3338, }, }, + [12] = { attackSpeedMultiplier = -55, baseMultiplier = 2.32, levelRequirement = 46, cost = { ManaPerMinute = 3661, }, }, + [13] = { attackSpeedMultiplier = -55, baseMultiplier = 2.44, levelRequirement = 52, cost = { ManaPerMinute = 4004, }, }, + [14] = { attackSpeedMultiplier = -55, baseMultiplier = 2.56, levelRequirement = 58, cost = { ManaPerMinute = 4370, }, }, + [15] = { attackSpeedMultiplier = -55, baseMultiplier = 2.69, levelRequirement = 64, cost = { ManaPerMinute = 4760, }, }, + [16] = { attackSpeedMultiplier = -55, baseMultiplier = 2.82, levelRequirement = 66, cost = { ManaPerMinute = 5175, }, }, + [17] = { attackSpeedMultiplier = -55, baseMultiplier = 2.96, levelRequirement = 72, cost = { ManaPerMinute = 5616, }, }, + [18] = { attackSpeedMultiplier = -55, baseMultiplier = 3.11, levelRequirement = 78, cost = { ManaPerMinute = 6085, }, }, + [19] = { attackSpeedMultiplier = -55, baseMultiplier = 3.27, levelRequirement = 84, cost = { ManaPerMinute = 6584, }, }, + [20] = { attackSpeedMultiplier = -55, baseMultiplier = 3.43, levelRequirement = 90, cost = { ManaPerMinute = 7114, }, }, + [21] = { attackSpeedMultiplier = -55, baseMultiplier = 3.6, levelRequirement = 90, cost = { ManaPerMinute = 7677, }, }, + [22] = { attackSpeedMultiplier = -55, baseMultiplier = 3.78, levelRequirement = 90, cost = { ManaPerMinute = 8274, }, }, + [23] = { attackSpeedMultiplier = -55, baseMultiplier = 3.97, levelRequirement = 90, cost = { ManaPerMinute = 8908, }, }, + [24] = { attackSpeedMultiplier = -55, baseMultiplier = 4.17, levelRequirement = 90, cost = { ManaPerMinute = 9581, }, }, + [25] = { attackSpeedMultiplier = -55, baseMultiplier = 4.38, levelRequirement = 90, cost = { ManaPerMinute = 10294, }, }, + [26] = { attackSpeedMultiplier = -55, baseMultiplier = 4.6, levelRequirement = 90, cost = { ManaPerMinute = 11051, }, }, + [27] = { attackSpeedMultiplier = -55, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 11853, }, }, + [28] = { attackSpeedMultiplier = -55, baseMultiplier = 5.07, levelRequirement = 90, cost = { ManaPerMinute = 12703, }, }, + [29] = { attackSpeedMultiplier = -55, baseMultiplier = 5.32, levelRequirement = 90, cost = { ManaPerMinute = 13603, }, }, + [30] = { attackSpeedMultiplier = -55, baseMultiplier = 5.59, levelRequirement = 90, cost = { ManaPerMinute = 14556, }, }, + [31] = { attackSpeedMultiplier = -55, baseMultiplier = 5.87, levelRequirement = 90, cost = { ManaPerMinute = 15566, }, }, + [32] = { attackSpeedMultiplier = -55, baseMultiplier = 6.16, levelRequirement = 90, cost = { ManaPerMinute = 16635, }, }, + [33] = { attackSpeedMultiplier = -55, baseMultiplier = 6.47, levelRequirement = 90, cost = { ManaPerMinute = 17766, }, }, + [34] = { attackSpeedMultiplier = -55, baseMultiplier = 6.79, levelRequirement = 90, cost = { ManaPerMinute = 18963, }, }, + [35] = { attackSpeedMultiplier = -55, baseMultiplier = 7.13, levelRequirement = 90, cost = { ManaPerMinute = 20228, }, }, + [36] = { attackSpeedMultiplier = -55, baseMultiplier = 7.49, levelRequirement = 90, cost = { ManaPerMinute = 21567, }, }, + [37] = { attackSpeedMultiplier = -55, baseMultiplier = 7.86, levelRequirement = 90, cost = { ManaPerMinute = 22983, }, }, + [38] = { attackSpeedMultiplier = -55, baseMultiplier = 8.26, levelRequirement = 90, cost = { ManaPerMinute = 24479, }, }, + [39] = { attackSpeedMultiplier = -55, baseMultiplier = 8.67, levelRequirement = 90, cost = { ManaPerMinute = 26061, }, }, + [40] = { attackSpeedMultiplier = -55, baseMultiplier = 9.1, levelRequirement = 90, cost = { ManaPerMinute = 27732, }, }, }, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime @@ -6356,7 +7294,7 @@ skills["SnipePlayer"] = { [1] = { label = "Arrow", incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "channelled_snipe", + statDescriptionScope = "channelled_snipe_statset_0", baseFlags = { attack = true, projectile = true, @@ -6368,7 +7306,6 @@ skills["SnipePlayer"] = { { "perfect_strike_timing_window_base_ms", 300 }, { "channel_start_lock_cancelling_of_attack_time_%", 16 }, { "base_minimum_channel_time_ms", 300 }, - { "base_critical_strike_multiplier_+", 200 }, { "channel_skill_end_animation_duration_multiplier_permyriad", 2500 }, { "channel_end_duration_as_%_of_attack_time", 133 }, }, @@ -6382,6 +7319,10 @@ skills["SnipePlayer"] = { "attack_speed_modifiers_apply_to_over_time_cost", "channel_start_lock_cancelling_scales_with_attack_speed", "skill_moving_start_slowdown", + "never_freeze", + "precise_cursor_targeting_uses_contact_point_height_offset", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "cannot_stun", }, levels = { [1] = { actorLevel = 1, }, @@ -6429,23 +7370,99 @@ skills["SnipePlayer"] = { [2] = { label = "Explosion", incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "channelled_snipe", + statDescriptionScope = "channelled_snipe_statset_1", baseFlags = { attack = true, projectile = true, area = true, }, - baseMods = { - mod("Condition:PerfectTiming", "FLAG", true), + constantStats = { + { "active_skill_override_turn_duration_ms", 120 }, + { "skill_animation_duration_multiplier_override", 2 }, + { "perfect_strike_timing_window_base_ms", 300 }, + { "channel_skill_end_animation_duration_multiplier_permyriad", 2500 }, + { "channel_end_duration_as_%_of_attack_time", 133 }, + { "active_skill_base_area_of_effect_radius", 25 }, + }, + stats = { + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "skill_can_fire_arrows", + "has_modular_projectiles_enabled", + "attack_speed_modifiers_apply_to_over_time_cost", + "channel_start_lock_cancelling_scales_with_attack_speed", + "skill_moving_start_slowdown", + "never_freeze", + "precise_cursor_targeting_uses_contact_point_height_offset", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "cannot_stun", + "is_area_damage", + "display_statset_hide_usage_stats", + "perfectly_timed", + }, + levels = { + [1] = { baseMultiplier = 3, actorLevel = 1, }, + [2] = { baseMultiplier = 3.3, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 3.63, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 3.96, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 4.27, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 4.59, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 4.92, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 5.21, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 5.47, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 5.74, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 6.03, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 6.33, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 6.65, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 6.98, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 7.33, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 7.7, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 8.08, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 8.49, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 8.91, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 9.36, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 9.82, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 10.32, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 10.83, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 11.37, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 11.94, actorLevel = 136.875, }, + [26] = { baseMultiplier = 12.54, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 13.17, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 13.82, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 14.52, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 15.24, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 16, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 16.8, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 17.64, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 18.53, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 19.45, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 20.42, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 21.45, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 22.52, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 23.64, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 24.83, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Icy Blast", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "channelled_snipe_statset_2", + baseFlags = { + attack = true, + projectile = true, + area = true, }, constantStats = { { "active_skill_override_turn_duration_ms", 120 }, { "skill_animation_duration_multiplier_override", 2 }, { "perfect_strike_timing_window_base_ms", 300 }, - { "base_critical_strike_multiplier_+", 200 }, { "channel_skill_end_animation_duration_multiplier_permyriad", 2500 }, { "channel_end_duration_as_%_of_attack_time", 133 }, - { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_area_of_effect_radius", 32 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "snipe_damage_+%_final_if_created_from_unique", 50 }, }, stats = { "base_is_projectile", @@ -6457,12 +7474,55 @@ skills["SnipePlayer"] = { "attack_speed_modifiers_apply_to_over_time_cost", "channel_start_lock_cancelling_scales_with_attack_speed", "skill_moving_start_slowdown", + "never_freeze", + "precise_cursor_targeting_uses_contact_point_height_offset", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "cannot_stun", "is_area_damage", - "always_crit", "display_statset_hide_usage_stats", + "perfectly_timed", }, levels = { - [1] = { actorLevel = 1, }, + [1] = { baseMultiplier = 4.6, actorLevel = 1, }, + [2] = { baseMultiplier = 5.07, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 5.6, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 6.14, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 6.67, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 7.23, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 7.8, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 8.36, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 8.88, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 9.45, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 10.06, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 10.73, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 11.45, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 12.25, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 13.11, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 14.05, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 15.08, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 16.2, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 17.43, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 18.78, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 20.23, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 21.8, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 23.48, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 25.3, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 27.25, actorLevel = 136.875, }, + [26] = { baseMultiplier = 29.36, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 31.63, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 34.07, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 36.7, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 39.54, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 42.6, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 45.89, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 49.44, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 53.26, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 57.38, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 61.81, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 66.59, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 71.73, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 77.28, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 83.25, actorLevel = 288.29998779297, }, }, }, } @@ -6471,53 +7531,53 @@ skills["SnipersMarkPlayer"] = { name = "Sniper's Mark", baseTypeName = "Sniper's Mark", color = 2, - description = "Mark a target. The next Critical Hit the target receives consumes the Mark to deal extra damage and grant you a Frenzy Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GeneratesCharges] = true, [SkillType.Mark] = true, [SkillType.Cooldown] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, }, + description = "Mark a target. The next Critical Hit the target receives Consumes the Mark to deal extra damage and grant you a Frenzy Charge.", + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GeneratesCharges] = true, [SkillType.Mark] = true, [SkillType.Cooldown] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, [SkillType.UsableWhileMounted] = true, }, castTime = 0.5, qualityStats = { { "enemy_additional_critical_strike_multiplier_against_self", 0.75 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 2, cost = { Mana = 23, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 2, cost = { Mana = 25, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 2, cost = { Mana = 27, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 2, cost = { Mana = 29, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 2, cost = { Mana = 31, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 2, cost = { Mana = 33, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 2, cost = { Mana = 35, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 2, cost = { Mana = 38, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 2, cost = { Mana = 41, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 2, cost = { Mana = 44, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 2, cost = { Mana = 47, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 2, cost = { Mana = 50, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 2, cost = { Mana = 54, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 2, cost = { Mana = 58, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 2, cost = { Mana = 62, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 2, cost = { Mana = 67, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 2, cost = { Mana = 72, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 2, cost = { Mana = 77, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 2, cost = { Mana = 82, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 88, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 95, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 102, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 109, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 117, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 125, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 135, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 144, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 155, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 166, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 178, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 191, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 205, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 219, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 235, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 252, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 271, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 290, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 311, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 334, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 358, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 6, cost = { Mana = 18, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 6, cost = { Mana = 20, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 6, cost = { Mana = 23, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 6, cost = { Mana = 25, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 6, cost = { Mana = 28, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 6, cost = { Mana = 31, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 6, cost = { Mana = 33, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 6, cost = { Mana = 36, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 6, cost = { Mana = 39, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 6, cost = { Mana = 42, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 6, cost = { Mana = 46, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 6, cost = { Mana = 49, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 6, cost = { Mana = 52, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 6, cost = { Mana = 56, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 6, cost = { Mana = 59, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 6, cost = { Mana = 63, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 6, cost = { Mana = 67, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 6, cost = { Mana = 71, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 6, cost = { Mana = 75, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 79, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 83, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 88, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 92, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 97, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 102, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 107, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 112, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 117, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 123, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 128, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 134, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 140, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 146, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 152, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 159, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 166, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 172, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 179, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 187, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 194, }, }, }, statSets = { [1] = { @@ -6540,7 +7600,7 @@ skills["SnipersMarkPlayer"] = { { "base_skill_effect_duration", 8000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "number_of_marks_allowed_per_type", 1 }, }, stats = { @@ -6598,55 +7658,55 @@ skills["SpearOfSolarisPlayer"] = { baseTypeName = "Spear of Solaris", color = 2, description = "Build Glory by Heavy Stunning enemies. When you have maximum Glory you may call forth the Azmeri goddess Solaris, jumping backwards and throwing your Spear in the air. On landing the spear deals heavy damage in an area, then calls a divine skybeam that pulses periodically and creates expanding Ignited Ground. Modifiers to number of Projectiles fired do not apply to this skill.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.RangedAttack] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CannotChain] = true, [SkillType.Rain] = true, [SkillType.HasUsageCondition] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.RangedAttack] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CannotChain] = true, [SkillType.Rain] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, castTime = 1, qualityStats = { - { "active_skill_ignite_effect_+%_final", 2 }, + { "chance_to_retain_40%_of_glory_on_use_%", 1.25 }, }, levels = { - [1] = { baseMultiplier = 2.1, levelRequirement = 0, cost = { Mana = 13, }, }, - [2] = { baseMultiplier = 2.32, levelRequirement = 3, cost = { Mana = 15, }, }, - [3] = { baseMultiplier = 2.56, levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { baseMultiplier = 2.8, levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { baseMultiplier = 3.05, levelRequirement = 14, cost = { Mana = 21, }, }, - [6] = { baseMultiplier = 3.3, levelRequirement = 18, cost = { Mana = 23, }, }, - [7] = { baseMultiplier = 3.56, levelRequirement = 22, cost = { Mana = 25, }, }, - [8] = { baseMultiplier = 3.82, levelRequirement = 26, cost = { Mana = 28, }, }, - [9] = { baseMultiplier = 4.05, levelRequirement = 31, cost = { Mana = 31, }, }, - [10] = { baseMultiplier = 4.31, levelRequirement = 36, cost = { Mana = 35, }, }, - [11] = { baseMultiplier = 4.59, levelRequirement = 41, cost = { Mana = 38, }, }, - [12] = { baseMultiplier = 4.9, levelRequirement = 46, cost = { Mana = 43, }, }, - [13] = { baseMultiplier = 5.23, levelRequirement = 52, cost = { Mana = 47, }, }, - [14] = { baseMultiplier = 5.59, levelRequirement = 58, cost = { Mana = 53, }, }, - [15] = { baseMultiplier = 5.98, levelRequirement = 64, cost = { Mana = 58, }, }, - [16] = { baseMultiplier = 6.41, levelRequirement = 66, cost = { Mana = 65, }, }, - [17] = { baseMultiplier = 6.88, levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { baseMultiplier = 7.4, levelRequirement = 78, cost = { Mana = 79, }, }, - [19] = { baseMultiplier = 7.96, levelRequirement = 84, cost = { Mana = 88, }, }, - [20] = { baseMultiplier = 8.57, levelRequirement = 90, cost = { Mana = 98, }, }, - [21] = { baseMultiplier = 9.24, levelRequirement = 90, cost = { Mana = 108, }, }, - [22] = { baseMultiplier = 9.95, levelRequirement = 90, cost = { Mana = 120, }, }, - [23] = { baseMultiplier = 10.72, levelRequirement = 90, cost = { Mana = 133, }, }, - [24] = { baseMultiplier = 11.55, levelRequirement = 90, cost = { Mana = 148, }, }, - [25] = { baseMultiplier = 12.44, levelRequirement = 90, cost = { Mana = 164, }, }, - [26] = { baseMultiplier = 13.4, levelRequirement = 90, cost = { Mana = 181, }, }, - [27] = { baseMultiplier = 14.44, levelRequirement = 90, cost = { Mana = 201, }, }, - [28] = { baseMultiplier = 15.55, levelRequirement = 90, cost = { Mana = 223, }, }, - [29] = { baseMultiplier = 16.76, levelRequirement = 90, cost = { Mana = 247, }, }, - [30] = { baseMultiplier = 18.05, levelRequirement = 90, cost = { Mana = 274, }, }, - [31] = { baseMultiplier = 19.45, levelRequirement = 90, cost = { Mana = 303, }, }, - [32] = { baseMultiplier = 20.95, levelRequirement = 90, cost = { Mana = 336, }, }, - [33] = { baseMultiplier = 22.57, levelRequirement = 90, cost = { Mana = 373, }, }, - [34] = { baseMultiplier = 24.31, levelRequirement = 90, cost = { Mana = 413, }, }, - [35] = { baseMultiplier = 26.19, levelRequirement = 90, cost = { Mana = 458, }, }, - [36] = { baseMultiplier = 28.22, levelRequirement = 90, cost = { Mana = 507, }, }, - [37] = { baseMultiplier = 30.4, levelRequirement = 90, cost = { Mana = 562, }, }, - [38] = { baseMultiplier = 32.75, levelRequirement = 90, cost = { Mana = 623, }, }, - [39] = { baseMultiplier = 35.28, levelRequirement = 90, cost = { Mana = 690, }, }, - [40] = { baseMultiplier = 38.01, levelRequirement = 90, cost = { Mana = 765, }, }, + [1] = { baseMultiplier = 1.5, levelRequirement = 0, cost = { Mana = 13, }, }, + [2] = { baseMultiplier = 1.65, levelRequirement = 3, cost = { Mana = 15, }, }, + [3] = { baseMultiplier = 1.83, levelRequirement = 6, cost = { Mana = 17, }, }, + [4] = { baseMultiplier = 2, levelRequirement = 10, cost = { Mana = 20, }, }, + [5] = { baseMultiplier = 2.18, levelRequirement = 14, cost = { Mana = 23, }, }, + [6] = { baseMultiplier = 2.36, levelRequirement = 18, cost = { Mana = 25, }, }, + [7] = { baseMultiplier = 2.55, levelRequirement = 22, cost = { Mana = 28, }, }, + [8] = { baseMultiplier = 2.73, levelRequirement = 26, cost = { Mana = 31, }, }, + [9] = { baseMultiplier = 2.9, levelRequirement = 31, cost = { Mana = 35, }, }, + [10] = { baseMultiplier = 3.08, levelRequirement = 36, cost = { Mana = 39, }, }, + [11] = { baseMultiplier = 3.28, levelRequirement = 41, cost = { Mana = 42, }, }, + [12] = { baseMultiplier = 3.5, levelRequirement = 46, cost = { Mana = 47, }, }, + [13] = { baseMultiplier = 3.74, levelRequirement = 52, cost = { Mana = 51, }, }, + [14] = { baseMultiplier = 3.99, levelRequirement = 58, cost = { Mana = 56, }, }, + [15] = { baseMultiplier = 4.27, levelRequirement = 64, cost = { Mana = 61, }, }, + [16] = { baseMultiplier = 4.58, levelRequirement = 66, cost = { Mana = 66, }, }, + [17] = { baseMultiplier = 4.92, levelRequirement = 72, cost = { Mana = 72, }, }, + [18] = { baseMultiplier = 5.28, levelRequirement = 78, cost = { Mana = 78, }, }, + [19] = { baseMultiplier = 5.68, levelRequirement = 84, cost = { Mana = 84, }, }, + [20] = { baseMultiplier = 6.12, levelRequirement = 90, cost = { Mana = 91, }, }, + [21] = { baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 98, }, }, + [22] = { baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 106, }, }, + [23] = { baseMultiplier = 7.66, levelRequirement = 90, cost = { Mana = 114, }, }, + [24] = { baseMultiplier = 8.25, levelRequirement = 90, cost = { Mana = 123, }, }, + [25] = { baseMultiplier = 8.89, levelRequirement = 90, cost = { Mana = 132, }, }, + [26] = { baseMultiplier = 9.57, levelRequirement = 90, cost = { Mana = 142, }, }, + [27] = { baseMultiplier = 10.31, levelRequirement = 90, cost = { Mana = 152, }, }, + [28] = { baseMultiplier = 11.11, levelRequirement = 90, cost = { Mana = 163, }, }, + [29] = { baseMultiplier = 11.97, levelRequirement = 90, cost = { Mana = 174, }, }, + [30] = { baseMultiplier = 12.89, levelRequirement = 90, cost = { Mana = 187, }, }, + [31] = { baseMultiplier = 13.89, levelRequirement = 90, cost = { Mana = 200, }, }, + [32] = { baseMultiplier = 14.96, levelRequirement = 90, cost = { Mana = 213, }, }, + [33] = { baseMultiplier = 16.12, levelRequirement = 90, cost = { Mana = 228, }, }, + [34] = { baseMultiplier = 17.37, levelRequirement = 90, cost = { Mana = 243, }, }, + [35] = { baseMultiplier = 18.71, levelRequirement = 90, cost = { Mana = 260, }, }, + [36] = { baseMultiplier = 20.16, levelRequirement = 90, cost = { Mana = 277, }, }, + [37] = { baseMultiplier = 21.71, levelRequirement = 90, cost = { Mana = 295, }, }, + [38] = { baseMultiplier = 23.39, levelRequirement = 90, cost = { Mana = 314, }, }, + [39] = { baseMultiplier = 25.2, levelRequirement = 90, cost = { Mana = 335, }, }, + [40] = { baseMultiplier = 27.15, levelRequirement = 90, cost = { Mana = 356, }, }, }, statSets = { [1] = { @@ -6663,7 +7723,8 @@ skills["SpearOfSolarisPlayer"] = { { "attack_maximum_action_distance_+", 60 }, { "total_attack_time_+_ms", 1400 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 75 }, - { "skill_requires_X_ultimate_charge", 20 }, + { "active_skill_requires_X_glory", 20 }, + { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 }, }, stats = { "is_area_damage", @@ -6736,6 +7797,7 @@ skills["SpearOfSolarisPlayer"] = { constantStats = { { "attack_maximum_action_distance_+", 60 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 75 }, + { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 }, { "active_skill_base_area_of_effect_radius", 20 }, { "solaris_spear_number_of_pulses", 20 }, { "solaris_spear_pulse_delay_ms", 200 }, @@ -6746,48 +7808,49 @@ skills["SpearOfSolarisPlayer"] = { "base_is_projectile", "base_skill_enabled_while_mounted", "display_statset_hide_usage_stats", + "quality_hide_display_character_panel", }, levels = { - [1] = { baseMultiplier = 0.18, actorLevel = 1, }, - [2] = { baseMultiplier = 0.2, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.22, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.24, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.26, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.28, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.31, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.33, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.35, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.37, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 0.39, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 0.42, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 0.45, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 0.48, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 0.51, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 0.55, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 0.59, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 0.63, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 0.68, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 0.73, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 0.79, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 0.85, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 0.92, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 0.99, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 1.07, actorLevel = 136.875, }, - [26] = { baseMultiplier = 1.15, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 1.24, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 1.33, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 1.44, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 1.55, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 1.67, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 1.8, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 1.93, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 2.08, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 2.25, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 2.42, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 2.61, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 2.81, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 3.02, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 3.26, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.27, actorLevel = 1, }, + [2] = { baseMultiplier = 0.3, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.33, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.36, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.39, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.42, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.46, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.49, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.52, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.55, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 0.59, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 0.63, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 0.67, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 0.72, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 0.77, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 0.82, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 0.89, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 0.95, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.02, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.1, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.19, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 1.28, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 1.38, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 1.48, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 1.6, actorLevel = 136.875, }, + [26] = { baseMultiplier = 1.72, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 1.86, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 2, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 2.15, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 2.32, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 2.5, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 2.69, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 2.9, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 3.13, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 3.37, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 3.63, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 3.91, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 4.21, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 4.54, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 4.89, actorLevel = 288.29998779297, }, }, }, [3] = { @@ -6806,8 +7869,9 @@ skills["SpearOfSolarisPlayer"] = { { "active_skill_base_area_of_effect_radius", 20 }, { "attack_maximum_action_distance_+", 60 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 75 }, + { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 25 }, - { "solaris_spear_ground_expands_to_+%_final_by_skill_end", 30 }, + { "solaris_spear_ground_expands_to_+%_final_by_skill_end", 100 }, }, stats = { "is_area_damage", @@ -6815,48 +7879,49 @@ skills["SpearOfSolarisPlayer"] = { "base_is_projectile", "base_skill_enabled_while_mounted", "display_statset_hide_usage_stats", + "quality_hide_display_character_panel", }, levels = { - [1] = { baseMultiplier = 2.1, actorLevel = 1, }, - [2] = { baseMultiplier = 2.32, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 2.56, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 2.8, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 3.05, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 3.3, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 3.56, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 3.82, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 4.05, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 4.31, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 4.59, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 4.9, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 5.23, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 5.59, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 5.98, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 6.41, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 6.88, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 7.4, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 7.96, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 8.57, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 9.24, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 9.95, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 10.72, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 11.55, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 12.44, actorLevel = 136.875, }, - [26] = { baseMultiplier = 13.4, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 14.44, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 15.55, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 16.76, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 18.05, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 19.45, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 20.95, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 22.57, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 24.31, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 26.19, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 28.22, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 30.4, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 32.75, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 35.28, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 38.01, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 3.5, actorLevel = 1, }, + [2] = { baseMultiplier = 3.86, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 4.26, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 4.67, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 5.08, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 5.5, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 5.94, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 6.36, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 6.76, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 7.19, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 7.65, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 8.16, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 8.72, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 9.32, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 9.97, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 10.69, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 11.47, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 12.33, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 13.26, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 14.29, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 15.39, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 16.58, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 17.87, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 19.25, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 20.73, actorLevel = 136.875, }, + [26] = { baseMultiplier = 22.34, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 24.06, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 25.92, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 27.93, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 30.09, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 32.41, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 34.92, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 37.62, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 40.52, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 43.66, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 47.03, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 50.66, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 54.58, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 58.8, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 63.34, actorLevel = 288.29998779297, }, }, }, } @@ -6875,46 +7940,46 @@ skills["SpearfieldPlayer"] = { { "hazard_rearm_%_chance", 0.5 }, }, levels = { - [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.12, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.13, levelRequirement = 3, cost = { Mana = 6, }, }, - [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.15, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.16, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -30, baseMultiplier = 0.17, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -30, baseMultiplier = 0.19, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -30, baseMultiplier = 0.2, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -30, baseMultiplier = 0.22, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -30, baseMultiplier = 0.23, levelRequirement = 31, cost = { Mana = 13, }, }, - [10] = { attackSpeedMultiplier = -30, baseMultiplier = 0.25, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { attackSpeedMultiplier = -30, baseMultiplier = 0.26, levelRequirement = 41, cost = { Mana = 16, }, }, - [12] = { attackSpeedMultiplier = -30, baseMultiplier = 0.28, levelRequirement = 46, cost = { Mana = 18, }, }, - [13] = { attackSpeedMultiplier = -30, baseMultiplier = 0.3, levelRequirement = 52, cost = { Mana = 20, }, }, - [14] = { attackSpeedMultiplier = -30, baseMultiplier = 0.32, levelRequirement = 58, cost = { Mana = 22, }, }, - [15] = { attackSpeedMultiplier = -30, baseMultiplier = 0.34, levelRequirement = 64, cost = { Mana = 25, }, }, - [16] = { attackSpeedMultiplier = -30, baseMultiplier = 0.37, levelRequirement = 66, cost = { Mana = 28, }, }, - [17] = { attackSpeedMultiplier = -30, baseMultiplier = 0.39, levelRequirement = 72, cost = { Mana = 31, }, }, - [18] = { attackSpeedMultiplier = -30, baseMultiplier = 0.42, levelRequirement = 78, cost = { Mana = 34, }, }, - [19] = { attackSpeedMultiplier = -30, baseMultiplier = 0.45, levelRequirement = 84, cost = { Mana = 38, }, }, - [20] = { attackSpeedMultiplier = -30, baseMultiplier = 0.49, levelRequirement = 90, cost = { Mana = 42, }, }, - [21] = { attackSpeedMultiplier = -30, baseMultiplier = 0.53, levelRequirement = 90, cost = { Mana = 46, }, }, - [22] = { attackSpeedMultiplier = -30, baseMultiplier = 0.57, levelRequirement = 90, cost = { Mana = 52, }, }, - [23] = { attackSpeedMultiplier = -30, baseMultiplier = 0.61, levelRequirement = 90, cost = { Mana = 57, }, }, - [24] = { attackSpeedMultiplier = -30, baseMultiplier = 0.66, levelRequirement = 90, cost = { Mana = 63, }, }, - [25] = { attackSpeedMultiplier = -30, baseMultiplier = 0.71, levelRequirement = 90, cost = { Mana = 70, }, }, - [26] = { attackSpeedMultiplier = -30, baseMultiplier = 0.77, levelRequirement = 90, cost = { Mana = 78, }, }, - [27] = { attackSpeedMultiplier = -30, baseMultiplier = 0.83, levelRequirement = 90, cost = { Mana = 86, }, }, - [28] = { attackSpeedMultiplier = -30, baseMultiplier = 0.89, levelRequirement = 90, cost = { Mana = 96, }, }, - [29] = { attackSpeedMultiplier = -30, baseMultiplier = 0.96, levelRequirement = 90, cost = { Mana = 106, }, }, - [30] = { attackSpeedMultiplier = -30, baseMultiplier = 1.03, levelRequirement = 90, cost = { Mana = 118, }, }, - [31] = { attackSpeedMultiplier = -30, baseMultiplier = 1.11, levelRequirement = 90, cost = { Mana = 131, }, }, - [32] = { attackSpeedMultiplier = -30, baseMultiplier = 1.2, levelRequirement = 90, cost = { Mana = 145, }, }, - [33] = { attackSpeedMultiplier = -30, baseMultiplier = 1.29, levelRequirement = 90, cost = { Mana = 161, }, }, - [34] = { attackSpeedMultiplier = -30, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 178, }, }, - [35] = { attackSpeedMultiplier = -30, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 197, }, }, - [36] = { attackSpeedMultiplier = -30, baseMultiplier = 1.61, levelRequirement = 90, cost = { Mana = 219, }, }, - [37] = { attackSpeedMultiplier = -30, baseMultiplier = 1.74, levelRequirement = 90, cost = { Mana = 242, }, }, - [38] = { attackSpeedMultiplier = -30, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 268, }, }, - [39] = { attackSpeedMultiplier = -30, baseMultiplier = 2.02, levelRequirement = 90, cost = { Mana = 298, }, }, - [40] = { attackSpeedMultiplier = -30, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 330, }, }, + [1] = { attackSpeedMultiplier = -30, levelRequirement = 0, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = -30, levelRequirement = 3, cost = { Mana = 6, }, }, + [3] = { attackSpeedMultiplier = -30, levelRequirement = 6, cost = { Mana = 7, }, }, + [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, cost = { Mana = 8, }, }, + [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, cost = { Mana = 13, }, }, + [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, cost = { Mana = 16, }, }, + [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, cost = { Mana = 18, }, }, + [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, cost = { Mana = 22, }, }, + [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, cost = { Mana = 24, }, }, + [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, cost = { Mana = 26, }, }, + [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, cost = { Mana = 28, }, }, + [17] = { attackSpeedMultiplier = -30, levelRequirement = 72, cost = { Mana = 31, }, }, + [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, cost = { Mana = 33, }, }, + [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, cost = { Mana = 36, }, }, + [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 39, }, }, + [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 42, }, }, + [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 45, }, }, + [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 49, }, }, + [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 53, }, }, + [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 57, }, }, + [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 61, }, }, + [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 65, }, }, + [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 70, }, }, + [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 75, }, }, + [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 80, }, }, + [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 86, }, }, + [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 92, }, }, + [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 98, }, }, + [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 105, }, }, + [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 112, }, }, + [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 119, }, }, + [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 127, }, }, + [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 135, }, }, + [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 144, }, }, + [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 153, }, }, }, statSets = { [1] = { @@ -6934,7 +7999,7 @@ skills["SpearfieldPlayer"] = { { "spear_wall_cm_per_spear", 20 }, { "active_skill_base_secondary_area_of_effect_radius", 6 }, { "spearfield_maim_slows_an_additional_%", 10 }, - { "spearfield_spear_damage_+%_final_after_half_seconds", 300 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, }, stats = { "active_skill_base_area_of_effect_radius", @@ -7006,7 +8071,7 @@ skills["SpearfieldPlayer"] = { { "attack_maximum_action_distance_+", 40 }, { "active_skill_base_secondary_area_of_effect_radius", 6 }, { "spearfield_maim_slows_an_additional_%", 10 }, - { "spearfield_spear_damage_+%_final_after_half_seconds", 300 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, }, stats = { "active_skill_base_area_of_effect_radius", @@ -7016,46 +8081,46 @@ skills["SpearfieldPlayer"] = { "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 40, baseMultiplier = 0.12, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 42, baseMultiplier = 0.13, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 43, baseMultiplier = 0.15, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 45, baseMultiplier = 0.16, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 46, baseMultiplier = 0.17, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 48, baseMultiplier = 0.19, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 49, baseMultiplier = 0.2, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 51, baseMultiplier = 0.22, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 52, baseMultiplier = 0.23, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 54, baseMultiplier = 0.25, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 55, baseMultiplier = 0.26, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 57, baseMultiplier = 0.28, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 58, baseMultiplier = 0.3, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 60, baseMultiplier = 0.32, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 61, baseMultiplier = 0.34, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 63, baseMultiplier = 0.37, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 64, baseMultiplier = 0.39, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 66, baseMultiplier = 0.42, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 67, baseMultiplier = 0.45, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 69, baseMultiplier = 0.49, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 70, baseMultiplier = 0.53, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 72, baseMultiplier = 0.57, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 73, baseMultiplier = 0.61, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 75, baseMultiplier = 0.66, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 76, baseMultiplier = 0.71, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 78, baseMultiplier = 0.77, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 79, baseMultiplier = 0.83, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, baseMultiplier = 0.89, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 82, baseMultiplier = 0.96, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 84, baseMultiplier = 1.03, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 85, baseMultiplier = 1.11, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 87, baseMultiplier = 1.2, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 88, baseMultiplier = 1.29, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 90, baseMultiplier = 1.39, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 91, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 93, baseMultiplier = 1.61, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 94, baseMultiplier = 1.74, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 96, baseMultiplier = 1.87, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 97, baseMultiplier = 2.02, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 99, baseMultiplier = 2.17, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 40, baseMultiplier = 0.5, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 42, baseMultiplier = 0.55, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 43, baseMultiplier = 0.61, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 45, baseMultiplier = 0.67, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 46, baseMultiplier = 0.73, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 48, baseMultiplier = 0.79, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 49, baseMultiplier = 0.85, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 51, baseMultiplier = 0.91, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 52, baseMultiplier = 0.97, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 54, baseMultiplier = 1.03, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 55, baseMultiplier = 1.09, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 57, baseMultiplier = 1.17, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 58, baseMultiplier = 1.25, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 60, baseMultiplier = 1.33, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 61, baseMultiplier = 1.42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 63, baseMultiplier = 1.53, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 64, baseMultiplier = 1.64, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 66, baseMultiplier = 1.76, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 67, baseMultiplier = 1.89, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 69, baseMultiplier = 2.04, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 70, baseMultiplier = 2.2, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 72, baseMultiplier = 2.37, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 73, baseMultiplier = 2.55, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, baseMultiplier = 2.75, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 76, baseMultiplier = 2.96, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 78, baseMultiplier = 3.19, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 79, baseMultiplier = 3.44, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 81, baseMultiplier = 3.7, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 82, baseMultiplier = 3.99, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 84, baseMultiplier = 4.3, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 85, baseMultiplier = 4.63, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 87, baseMultiplier = 4.99, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 88, baseMultiplier = 5.37, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 90, baseMultiplier = 5.79, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 91, baseMultiplier = 6.24, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 93, baseMultiplier = 6.72, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 94, baseMultiplier = 7.24, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 96, baseMultiplier = 7.8, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 97, baseMultiplier = 8.4, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 99, baseMultiplier = 9.05, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7065,7 +8130,7 @@ skills["SpiralVolleyPlayer"] = { baseTypeName = "Spiral Volley", color = 2, description = "Load your Bow with a volley of enchanted arrows and fire them in a circle as you spin forward, firing directly at targets if possible. Consumes Frenzy Charges to cause the arrows to deal more damage and Chain to other targets. Each target can only be Hit once.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.Bow] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -7074,46 +8139,46 @@ skills["SpiralVolleyPlayer"] = { { "base_number_of_projectiles", 0.2 }, }, levels = { - [1] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 9, }, }, + [1] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 8, }, }, [4] = { baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 12, }, }, + [5] = { baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 11, }, }, [6] = { baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 13, }, }, - [7] = { baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 16, }, }, - [8] = { baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 18, }, }, - [9] = { baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 27, }, }, - [12] = { baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 31, }, }, - [13] = { baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 36, }, }, - [14] = { baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 42, }, }, - [15] = { baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 48, }, }, - [16] = { baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 55, }, }, - [17] = { baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 63, }, }, - [18] = { baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 73, }, }, - [19] = { baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 83, }, }, - [20] = { baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 96, }, }, - [21] = { baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 110, }, }, - [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 127, }, }, - [23] = { baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 145, }, }, - [24] = { baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 167, }, }, - [25] = { baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 192, }, }, - [26] = { baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 220, }, }, - [27] = { baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 253, }, }, - [28] = { baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 290, }, }, - [29] = { baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 333, }, }, - [30] = { baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 383, }, }, - [31] = { baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 439, }, }, - [32] = { baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 505, }, }, - [33] = { baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 579, }, }, - [34] = { baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 665, }, }, - [35] = { baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 764, }, }, - [36] = { baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 877, }, }, - [37] = { baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 1006, }, }, - [38] = { baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 1155, }, }, - [39] = { baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 1327, }, }, - [40] = { baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 1523, }, }, + [7] = { baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 17, }, }, + [9] = { baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 19, }, }, + [10] = { baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 22, }, }, + [11] = { baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 24, }, }, + [12] = { baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 27, }, }, + [13] = { baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 31, }, }, + [14] = { baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 34, }, }, + [15] = { baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 38, }, }, + [16] = { baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 42, }, }, + [17] = { baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 47, }, }, + [18] = { baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 52, }, }, + [19] = { baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 58, }, }, + [20] = { baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 64, }, }, + [21] = { baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 71, }, }, + [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 78, }, }, + [23] = { baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 86, }, }, + [24] = { baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 94, }, }, + [25] = { baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 103, }, }, + [26] = { baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 114, }, }, + [27] = { baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 125, }, }, + [28] = { baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 136, }, }, + [29] = { baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 149, }, }, + [30] = { baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 163, }, }, + [31] = { baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 179, }, }, + [32] = { baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 195, }, }, + [33] = { baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 213, }, }, + [34] = { baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 233, }, }, + [35] = { baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 254, }, }, + [36] = { baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 276, }, }, + [37] = { baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 301, }, }, + [38] = { baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 328, }, }, + [39] = { baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 357, }, }, + [40] = { baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 388, }, }, }, statSets = { [1] = { @@ -7150,6 +8215,7 @@ skills["SpiralVolleyPlayer"] = { "active_skill_enable_movement_cancelling", "projectile_uses_contact_position", "projectile_uses_contact_direction", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -7201,7 +8267,7 @@ skills["StormLancePlayer"] = { baseTypeName = "Storm Lance", color = 2, description = "Throw an electrified Spear that lodges in the ground and periodically zaps nearby enemies with Lightning bolts. If the Spear is Detonated by another Skill, it immediately unleashes a volley of bolts and expires. Consumes a Frenzy Charge if possible to fire bolts more frequently for a shorter duration, automatically Detonate at the end of its duration, and create Shocked Ground on Detonation.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.CanRapidFire] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Sustained] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.CreatesGroundEffect] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Sustained] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -7210,46 +8276,46 @@ skills["StormLancePlayer"] = { { "base_number_of_overcharged_spears_allowed", 0.05 }, }, levels = { - [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 7, }, }, + [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 17, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 19, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 21, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 26, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 29, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 32, }, }, + [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 28, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 33, }, }, [17] = { attackSpeedMultiplier = -40, baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 36, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 40, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 44, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 49, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 54, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 60, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 67, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 74, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 82, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 91, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 101, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 112, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 124, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 137, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 152, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 169, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 187, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 207, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 230, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 255, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 283, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 313, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 347, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 385, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 39, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 42, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 46, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 49, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 53, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 57, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 62, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 66, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 71, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 76, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 82, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 88, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 94, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 100, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 107, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 114, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 122, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 130, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 139, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 148, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 158, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 168, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 179, }, }, }, statSets = { [1] = { @@ -7263,7 +8329,7 @@ skills["StormLancePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_skill_effect_duration", 6000 }, { "base_number_of_overcharged_spears_allowed", 3 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 }, @@ -7345,7 +8411,7 @@ skills["StormLancePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_overcharged_spears_allowed", 3 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 }, { "active_skill_base_area_of_effect_radius", 20 }, @@ -7429,7 +8495,7 @@ skills["StormLancePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_skill_effect_duration", 6000 }, { "base_number_of_overcharged_spears_allowed", 3 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 }, @@ -7506,7 +8572,7 @@ skills["StormLancePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_skill_effect_duration", 6000 }, { "base_number_of_overcharged_spears_allowed", 3 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 }, @@ -7576,8 +8642,8 @@ skills["StormcallerArrowPlayer"] = { name = "Stormcaller Arrow", baseTypeName = "Stormcaller Arrow", color = 2, - description = "Fire an arrow that embeds where it lands for a short duration. At the end of the duration, a Lightning Bolt strikes the arrow, disintegrating it and damaging enemies with a high chance to Shock. Shocks caused by the Bolt will spread to Enemies near the impact.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Bow] = true, }, + description = "Fire an arrow that embeds where it lands for a short duration. At the end of the duration, a Lightning Bolt strikes the arrow, disintegrating it and damaging enemies, with a high chance to Shock. Shocking any enemy with the Bolt also applies Shock to all enemies near the impact.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -7589,43 +8655,43 @@ skills["StormcallerArrowPlayer"] = { [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 8, }, }, [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 11, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 14, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 15, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 17, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 19, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 21, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 23, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 26, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 29, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 32, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 11, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 12, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 14, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 17, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 19, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 21, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 23, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 26, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 28, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 31, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 33, }, }, [16] = { attackSpeedMultiplier = -20, baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 36, }, }, [17] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 39, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 44, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 49, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 54, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 60, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 66, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 73, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 81, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 90, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 100, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 111, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 123, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 136, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 151, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 168, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 186, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 206, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 228, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 253, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 280, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 311, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 344, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 382, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 423, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 43, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 46, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 50, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 54, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 58, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 63, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 68, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 73, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 78, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 84, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 90, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 96, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 103, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 110, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 118, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 126, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 134, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 143, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 153, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 163, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 174, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 185, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 197, }, }, }, statSets = { [1] = { @@ -7641,7 +8707,7 @@ skills["StormcallerArrowPlayer"] = { { "base_skill_effect_duration", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_is_projectile", @@ -7652,6 +8718,7 @@ skills["StormcallerArrowPlayer"] = { "has_modular_projectiles_enabled", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -7710,7 +8777,7 @@ skills["StormcallerArrowPlayer"] = { { "base_skill_effect_duration", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, { "active_skill_shock_chance_+%_final", 500 }, }, @@ -7725,6 +8792,7 @@ skills["StormcallerArrowPlayer"] = { "has_modular_projectiles_enabled", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_hide_usage_stats", }, @@ -7778,52 +8846,52 @@ skills["TameBeastPlayer"] = { baseTypeName = "Tame Beast", color = 2, description = "Conjure Azmeri wisps to engulf a Rare Beast for a duration, Hindering them. If you defeat the Beast while it is engulfed in wisps, it will be captured by this gem, transforming the gem to instead allow you to summon the Beast as a Reviving Companion.", - skillTypes = { [SkillType.Minion] = true, [SkillType.Companion] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.Companion] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { { "base_skill_effect_duration", 80 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 23, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 22, }, }, [2] = { levelRequirement = 3, cost = { Mana = 25, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 27, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 29, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 31, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 33, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 35, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 41, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 44, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 47, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 50, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 54, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 58, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 67, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 77, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 88, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 117, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 135, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 166, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 191, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 205, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 235, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 252, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 271, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 290, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 311, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 334, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 28, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 32, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 35, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 38, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 42, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 45, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 49, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 53, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 57, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 61, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 65, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 70, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 74, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 79, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 84, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 89, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 94, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 99, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 104, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 116, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 121, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 128, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 147, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 154, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 161, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 168, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 175, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 183, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 191, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 199, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 207, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 216, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 224, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 233, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 243, }, }, }, statSets = { [1] = { @@ -7836,7 +8904,7 @@ skills["TameBeastPlayer"] = { { "spell_maximum_action_distance_+%", -82 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "tame_beast_hinder_%", 30 }, }, stats = { @@ -7899,56 +8967,56 @@ skills["ThunderousLeapPlayer"] = { name = "Thunderous Leap", baseTypeName = "Thunderous Leap", color = 2, - description = "Leap into the air and plunge your Spear into the ground at the target location, emitting a Lightning-charged shockwave.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Travel] = true, [SkillType.Spear] = true, [SkillType.Jumping] = true, [SkillType.Slam] = true, [SkillType.Lightning] = true, [SkillType.Melee] = true, }, + description = "Leap into the air and plunge your Spear into the ground at the target location, emitting a Lightning-charged shockwave and Detonating Spear skills.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Travel] = true, [SkillType.Spear] = true, [SkillType.Jumping] = true, [SkillType.Slam] = true, [SkillType.Lightning] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, weaponTypes = { ["Spear"] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.25 }, + { "thunderous_leap_%_chance_for_shocked_ground_when_detonating", 1.5 }, }, levels = { [1] = { baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 11, }, }, - [2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 12, }, }, + [2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 13, }, }, [3] = { baseMultiplier = 1.34, levelRequirement = 6, cost = { Mana = 14, }, }, - [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 17, }, }, - [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 19, }, }, - [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 21, }, }, - [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 23, }, }, - [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 26, }, }, - [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 29, }, }, - [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 32, }, }, - [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 36, }, }, - [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 39, }, }, - [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 44, }, }, - [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 48, }, }, - [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 54, }, }, + [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 17, }, }, + [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 19, }, }, + [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 21, }, }, + [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 24, }, }, + [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 26, }, }, + [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 29, }, }, + [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 32, }, }, + [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 35, }, }, + [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 39, }, }, + [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 42, }, }, + [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 46, }, }, + [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 51, }, }, + [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 55, }, }, [17] = { baseMultiplier = 3.61, levelRequirement = 72, cost = { Mana = 60, }, }, - [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 66, }, }, - [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 73, }, }, - [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 81, }, }, - [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 90, }, }, - [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 100, }, }, - [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 111, }, }, - [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 123, }, }, - [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 136, }, }, - [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 151, }, }, - [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 167, }, }, - [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 186, }, }, - [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 206, }, }, - [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 228, }, }, - [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 253, }, }, - [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 280, }, }, - [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 310, }, }, - [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 344, }, }, - [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 381, }, }, - [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 422, }, }, - [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 468, }, }, - [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 519, }, }, - [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 575, }, }, - [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 637, }, }, + [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 65, }, }, + [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 70, }, }, + [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 76, }, }, + [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 82, }, }, + [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 88, }, }, + [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 95, }, }, + [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 102, }, }, + [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 110, }, }, + [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 118, }, }, + [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 127, }, }, + [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 136, }, }, + [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 145, }, }, + [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 156, }, }, + [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 166, }, }, + [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 178, }, }, + [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 190, }, }, + [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 203, }, }, + [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 216, }, }, + [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 231, }, }, + [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 246, }, }, + [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 262, }, }, + [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 279, }, }, + [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 297, }, }, }, statSets = { [1] = { @@ -8022,8 +9090,8 @@ skills["TornadoShotPlayer"] = { name = "Tornado Shot", baseTypeName = "Tornado Shot", color = 2, - description = "Fire a skyward shot that whips up a Tornado where it lands, dealing Physical damage over time and Hindering enemies standing in it. Arrows, thrown Spears and Crossbow bolts fired at the Tornado are sucked into it, causing the Tornado to spit out a nova of copied Projectiles. Copied Projectiles cannot be copied again, even by further Tornados.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.CannotChain] = true, [SkillType.SupportedByFountains] = true, [SkillType.Bow] = true, }, + description = "Fire a skyward shot that whips up a Tornado where it lands, dealing Physical damage over time and Hindering enemies standing in it. Arrows, thrown Spears and Crossbow bolts fired at the Tornado are sucked into it, causing the Tornado to spit out a ring of copied Projectiles. Copied Projectiles cannot be copied again, even by further Tornados.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.Barrageable] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.CannotChain] = true, [SkillType.SupportedByFountains] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ObjectDurability] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -8034,44 +9102,44 @@ skills["TornadoShotPlayer"] = { levels = { [1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 13, }, }, [2] = { attackSpeedMultiplier = 20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 15, }, }, - [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 16, }, }, - [4] = { attackSpeedMultiplier = 20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 18, }, }, - [5] = { attackSpeedMultiplier = 20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 20, }, }, - [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 22, }, }, - [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 25, }, }, - [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 27, }, }, - [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 30, }, }, - [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 34, }, }, - [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 37, }, }, - [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 42, }, }, - [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 46, }, }, - [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 51, }, }, - [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 57, }, }, - [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 63, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 17, }, }, + [4] = { attackSpeedMultiplier = 20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 19, }, }, + [5] = { attackSpeedMultiplier = 20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 22, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 25, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 28, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 31, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 34, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 37, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 41, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 45, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 50, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 54, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 59, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 64, }, }, [17] = { attackSpeedMultiplier = 20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 70, }, }, - [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 77, }, }, - [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 86, }, }, - [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 95, }, }, - [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 105, }, }, - [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 117, }, }, - [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 130, }, }, - [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 144, }, }, - [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 159, }, }, - [26] = { attackSpeedMultiplier = 20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 176, }, }, - [27] = { attackSpeedMultiplier = 20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 196, }, }, - [28] = { attackSpeedMultiplier = 20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 217, }, }, - [29] = { attackSpeedMultiplier = 20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 240, }, }, - [30] = { attackSpeedMultiplier = 20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 266, }, }, - [31] = { attackSpeedMultiplier = 20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 295, }, }, - [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 327, }, }, - [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 362, }, }, - [34] = { attackSpeedMultiplier = 20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 402, }, }, - [35] = { attackSpeedMultiplier = 20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 445, }, }, - [36] = { attackSpeedMultiplier = 20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 493, }, }, - [37] = { attackSpeedMultiplier = 20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 547, }, }, - [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 606, }, }, - [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 671, }, }, - [40] = { attackSpeedMultiplier = 20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 744, }, }, + [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 76, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 82, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 88, }, }, + [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 96, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 103, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 111, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 119, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 128, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 138, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 148, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 158, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 170, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 182, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 194, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 208, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 222, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 237, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 253, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 269, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 287, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 306, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 326, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 346, }, }, }, statSets = { [1] = { @@ -8088,8 +9156,9 @@ skills["TornadoShotPlayer"] = { { "active_skill_base_secondary_area_of_effect_radius", 30 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_tornado_shots_allowed", 1 }, + { "console_cast_on_self_custom_range", 10 }, }, stats = { "tornado_shot_number_of_hits_allowed", @@ -8146,8 +9215,8 @@ skills["TornadoShotPlayer"] = { [2] = { label = "Tornado", baseEffectiveness = 4, - incrementalEffectiveness = 0.18000000715256, - damageIncrementalEffectiveness = 0.0092000002041459, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, statDescriptionScope = "tornado_shot_statset_1", baseFlags = { attack = true, @@ -8163,8 +9232,9 @@ skills["TornadoShotPlayer"] = { { "active_skill_base_secondary_area_of_effect_radius", 30 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_tornado_shots_allowed", 1 }, + { "console_cast_on_self_custom_range", 10 }, { "base_number_of_projectiles", 3 }, { "tornado_shot_projectile_range", 60 }, }, @@ -8189,45 +9259,241 @@ skills["TornadoShotPlayer"] = { }, levels = { [1] = { 259, 5, -60, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 382, 5, -59, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 557, 5, -58, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 755, 5, -57, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 979, 5, -56, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1233, 6, -55, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 1521, 6, -54, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 1846, 6, -53, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 2215, 6, -52, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 2632, 6, -51, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 3104, 7, -50, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 3639, 7, -49, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 4246, 7, -48, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 4934, 7, -47, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 5715, 7, -46, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 6602, 8, -45, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7611, 8, -44, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 8759, 8, -43, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 10067, 8, -42, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 11558, 8, -41, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 13259, 9, -40, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 15203, 9, -39, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 17425, 9, -38, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 19969, 9, -37, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 22885, 9, -36, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 26229, 10, -35, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 30071, 10, -34, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 34488, 10, -33, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 39574, 10, -32, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 45435, 10, -31, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 52200, 11, -30, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 60016, 11, -29, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 69058, 11, -28, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 79533, 11, -27, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 91683, 11, -26, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 105794, 12, -25, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 122206, 12, -24, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 141318, 12, -23, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 163605, 12, -22, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 189632, 12, -21, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [2] = { 377, 5, -59, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 545, 5, -58, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 738, 5, -57, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 958, 5, -56, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1210, 6, -55, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1497, 6, -54, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1826, 6, -53, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 2202, 6, -52, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 2631, 6, -51, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 3123, 7, -50, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 3685, 7, -49, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 4330, 7, -48, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 5070, 7, -47, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 5919, 7, -46, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 6895, 8, -45, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 8018, 8, -44, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 9311, 8, -43, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 10801, 8, -42, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 12522, 8, -41, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 14510, 9, -40, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 16810, 9, -39, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 19474, 9, -38, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 22564, 9, -37, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 26153, 9, -36, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 30328, 10, -35, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 35189, 10, -34, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 40858, 10, -33, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 47479, 10, -32, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 55223, 10, -31, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 64293, 11, -30, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 74932, 11, -29, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 87431, 11, -28, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 102136, 11, -27, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 119466, 11, -26, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 139919, 12, -25, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 164098, 12, -24, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 192728, 12, -23, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 226682, 12, -22, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 267018, 12, -21, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ToxicDomainPlayer"] = { + name = "Toxic Domain", + baseTypeName = "Toxic Domain", + color = 2, + description = "Create an area of Toxic Bloom on the ground around you. While in the Bloom, you have increased Skill costs, Regenerate Life, and your Projectile Attacks attach a Toxic Pustule, which can be Poisoned. Pustules will Detonate after a duration or when enough Poison has been applied, dealing more damage based on the stored Poison damage and applying Poison in an area around it.", + skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Chaos] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Attack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Physical] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.15 }, + }, + levels = { + [1] = { baseMultiplier = 0.38, storedUses = 1, levelRequirement = 0, cooldown = 11, cost = { Mana = 24, }, }, + [2] = { baseMultiplier = 0.42, storedUses = 1, levelRequirement = 3, cooldown = 11, cost = { Mana = 27, }, }, + [3] = { baseMultiplier = 0.46, storedUses = 1, levelRequirement = 6, cooldown = 11, cost = { Mana = 31, }, }, + [4] = { baseMultiplier = 0.5, storedUses = 1, levelRequirement = 10, cooldown = 11, cost = { Mana = 34, }, }, + [5] = { baseMultiplier = 0.54, storedUses = 1, levelRequirement = 14, cooldown = 11, cost = { Mana = 38, }, }, + [6] = { baseMultiplier = 0.58, storedUses = 1, levelRequirement = 18, cooldown = 11, cost = { Mana = 41, }, }, + [7] = { baseMultiplier = 0.62, storedUses = 1, levelRequirement = 22, cooldown = 11, cost = { Mana = 45, }, }, + [8] = { baseMultiplier = 0.66, storedUses = 1, levelRequirement = 26, cooldown = 11, cost = { Mana = 49, }, }, + [9] = { baseMultiplier = 0.69, storedUses = 1, levelRequirement = 31, cooldown = 11, cost = { Mana = 53, }, }, + [10] = { baseMultiplier = 0.73, storedUses = 1, levelRequirement = 36, cooldown = 11, cost = { Mana = 57, }, }, + [11] = { baseMultiplier = 0.76, storedUses = 1, levelRequirement = 41, cooldown = 11, cost = { Mana = 61, }, }, + [12] = { baseMultiplier = 0.8, storedUses = 1, levelRequirement = 46, cooldown = 11, cost = { Mana = 66, }, }, + [13] = { baseMultiplier = 0.84, storedUses = 1, levelRequirement = 52, cooldown = 11, cost = { Mana = 70, }, }, + [14] = { baseMultiplier = 0.88, storedUses = 1, levelRequirement = 58, cooldown = 11, cost = { Mana = 75, }, }, + [15] = { baseMultiplier = 0.93, storedUses = 1, levelRequirement = 64, cooldown = 11, cost = { Mana = 80, }, }, + [16] = { baseMultiplier = 0.98, storedUses = 1, levelRequirement = 66, cooldown = 11, cost = { Mana = 85, }, }, + [17] = { baseMultiplier = 1.02, storedUses = 1, levelRequirement = 72, cooldown = 11, cost = { Mana = 90, }, }, + [18] = { baseMultiplier = 1.08, storedUses = 1, levelRequirement = 78, cooldown = 11, cost = { Mana = 95, }, }, + [19] = { baseMultiplier = 1.13, storedUses = 1, levelRequirement = 84, cooldown = 11, cost = { Mana = 101, }, }, + [20] = { baseMultiplier = 1.19, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 106, }, }, + [21] = { baseMultiplier = 1.24, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 112, }, }, + [22] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 118, }, }, + [23] = { baseMultiplier = 1.37, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 124, }, }, + [24] = { baseMultiplier = 1.44, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 130, }, }, + [25] = { baseMultiplier = 1.51, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 137, }, }, + [26] = { baseMultiplier = 1.59, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 144, }, }, + [27] = { baseMultiplier = 1.67, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 151, }, }, + [28] = { baseMultiplier = 1.75, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 158, }, }, + [29] = { baseMultiplier = 1.84, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 165, }, }, + [30] = { baseMultiplier = 1.93, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 173, }, }, + [31] = { baseMultiplier = 2.03, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 180, }, }, + [32] = { baseMultiplier = 2.13, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 188, }, }, + [33] = { baseMultiplier = 2.23, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 196, }, }, + [34] = { baseMultiplier = 2.35, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 205, }, }, + [35] = { baseMultiplier = 2.46, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 214, }, }, + [36] = { baseMultiplier = 2.59, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 222, }, }, + [37] = { baseMultiplier = 2.72, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 232, }, }, + [38] = { baseMultiplier = 2.85, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 241, }, }, + [39] = { baseMultiplier = 2.99, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 251, }, }, + [40] = { baseMultiplier = 3.14, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 261, }, }, + }, + statSets = { + [1] = { + label = "Toxic Bloom", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "toxic_domain_statset_0", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "toxic_domain_healing_per_minute_+", 100 }, + { "toxic_domain_mana_cost_+%", 25 }, + { "toxic_domain_pustule_chance_%", 100 }, + { "toxic_domain_pustule_poison_explode_threshold", 0 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "base_skill_effect_duration", 8000 }, + { "skill_specific_stat_description_mode", 1 }, + }, + stats = { + "toxic_domain_pustule_poison_explode_threshold", + "toxic_domain_healing_per_minute_+", + "can_perform_skill_while_moving", + "base_deal_no_damage", + }, + levels = { + [1] = { 255, 240, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 465, 348, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 795, 456, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1275, 564, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1905, 672, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2730, 780, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 3870, 888, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 5385, 996, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7365, 1104, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 10005, 1212, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 13425, 1320, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 17850, 1428, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 23610, 1536, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 30960, 1644, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 40455, 1752, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 52680, 1860, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 68280, 1968, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 88080, 2076, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 113325, 2184, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 145365, 2400, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 154620, 2508, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 171030, 2616, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 198720, 2724, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 233250, 2832, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 276345, 2940, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 295545, 3048, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 315975, 3156, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 337695, 3264, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 360795, 3372, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 385365, 3480, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 408045, 3588, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 432060, 3696, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 457440, 3804, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 484275, 3912, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 512700, 4020, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 542685, 4128, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 574440, 4236, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 607950, 4344, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 643440, 4452, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 680925, 4560, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Pustule Explosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "toxic_domain_statset_1", + baseFlags = { + attack = true, + area = true, + duration = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "toxic_domain_healing_per_minute_+", 100 }, + { "toxic_domain_mana_cost_+%", 25 }, + { "toxic_domain_pustule_chance_%", 100 }, + { "toxic_domain_pustule_poison_explode_threshold", 0 }, + { "base_skill_effect_duration", 8000 }, + { "skill_specific_stat_description_mode", 1 }, + { "active_skill_base_area_of_effect_radius", 16 }, + { "base_skill_detonation_time", 6000 }, + { "base_chance_to_poison_on_hit_%", 100 }, + { "toxic_domain_max_damage_+%_final_from_stored_poison", 300 }, + }, + stats = { + "toxic_domain_+1%_final_more_damage_per_x_stored_poison", + "toxic_domain_+1%_final_more_damage_per_x_stored_poison", + "can_perform_skill_while_moving", + "is_area_damage", + "skill_no_cost_or_reservation", + }, + levels = { + [1] = { 2, 2, baseMultiplier = 0.38, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 3, 3, baseMultiplier = 0.42, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 5, 5, baseMultiplier = 0.46, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, 9, baseMultiplier = 0.5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, 12, baseMultiplier = 0.54, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 19, 19, baseMultiplier = 0.58, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 26, baseMultiplier = 0.62, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, 36, baseMultiplier = 0.66, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 49, 49, baseMultiplier = 0.69, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 66, 66, baseMultiplier = 0.73, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 89, 89, baseMultiplier = 0.76, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 119, 119, baseMultiplier = 0.8, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 157, 157, baseMultiplier = 0.84, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 206, 206, baseMultiplier = 0.88, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 270, 270, baseMultiplier = 0.93, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 351, 351, baseMultiplier = 0.98, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 455, 455, baseMultiplier = 1.02, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 588, 588, baseMultiplier = 1.08, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 755, 755, baseMultiplier = 1.13, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 969, 969, baseMultiplier = 1.19, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1032, 1032, baseMultiplier = 1.24, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1141, 1141, baseMultiplier = 1.31, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1324, 1324, baseMultiplier = 1.37, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1555, 1555, baseMultiplier = 1.44, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1843, 1843, baseMultiplier = 1.51, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1971, 1971, baseMultiplier = 1.59, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2107, 2107, baseMultiplier = 1.67, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2252, 2252, baseMultiplier = 1.75, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 2405, 2405, baseMultiplier = 1.84, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 2568, 2568, baseMultiplier = 1.93, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2721, 2721, baseMultiplier = 2.03, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2880, 2880, baseMultiplier = 2.13, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 3049, 3049, baseMultiplier = 2.23, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3229, 3229, baseMultiplier = 2.35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3417, 3417, baseMultiplier = 2.46, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3619, 3619, baseMultiplier = 2.59, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3829, 3829, baseMultiplier = 2.72, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 4053, 4053, baseMultiplier = 2.85, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 4290, 4290, baseMultiplier = 2.99, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 4540, 4540, baseMultiplier = 3.14, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -8236,8 +9502,8 @@ skills["ToxicGrowthPlayer"] = { name = "Toxic Growth", baseTypeName = "Toxic Growth", color = 2, - description = "Leap into the air and fire a volley of arrows which cause toxic pustules to sprout from the ground on impact. The pustules explode after a delay and can be Poisoned, causing them to explode faster and more violently.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Limit] = true, }, + description = "Fire a rain of Toxic Pustules into the air. The Pustules deal damage on impact, then Detonate after a delay. They can also be Poisoned, causing them to Detonate faster and more violently.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.Bow] = true, [SkillType.Limit] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Rain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Barrageable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -8247,50 +9513,50 @@ skills["ToxicGrowthPlayer"] = { { "number_of_poisonbloom_arrow_bloom_allowed", 0.1 }, }, levels = { - [1] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 15, }, }, - [2] = { baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 27, }, }, - [8] = { baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 30, }, }, - [9] = { baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 34, }, }, - [10] = { baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 37, }, }, - [11] = { baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 41, }, }, - [12] = { baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 46, }, }, - [13] = { baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 51, }, }, - [14] = { baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 57, }, }, - [15] = { baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 63, }, }, - [16] = { baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 69, }, }, - [17] = { baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 77, }, }, - [18] = { baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 85, }, }, - [19] = { baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 95, }, }, - [20] = { baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 105, }, }, - [21] = { baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 116, }, }, - [22] = { baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 129, }, }, - [23] = { baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 143, }, }, - [24] = { baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 159, }, }, - [25] = { baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 176, }, }, - [26] = { baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 195, }, }, - [27] = { baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 216, }, }, - [28] = { baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 239, }, }, - [29] = { baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 265, }, }, - [30] = { baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 294, }, }, - [31] = { baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 326, }, }, - [32] = { baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 361, }, }, - [33] = { baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 400, }, }, - [34] = { baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 444, }, }, - [35] = { baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 492, }, }, - [36] = { baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 545, }, }, - [37] = { baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 604, }, }, - [38] = { baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 669, }, }, - [39] = { baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 741, }, }, - [40] = { baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 822, }, }, + [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 16, }, }, + [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 21, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 24, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 27, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 41, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 50, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 55, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 60, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 65, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 71, }, }, + [17] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 77, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 84, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 90, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 98, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 106, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 114, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 123, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 132, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 142, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 152, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 163, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 175, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 187, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 201, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 215, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 229, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 245, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 262, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 279, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 298, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 317, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 338, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 360, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 383, }, }, }, statSets = { [1] = { - label = "Arrow", + label = "Pustules", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "poisonbloom_arrow_statset_0", baseFlags = { @@ -8305,12 +9571,14 @@ skills["ToxicGrowthPlayer"] = { { "fixed_projectile_spread", 100 }, { "number_of_projectiles_override", 1 }, { "active_skill_base_secondary_area_of_effect_radius", 45 }, - { "total_attack_time_+_ms", 700 }, { "active_skill_projectile_speed_+%_variation_final", 150 }, { "poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison", 300 }, { "poisonbloom_arrow_max_additional_burst_base_radius_+", 15 }, { "range_backflip_conditional_distance", 46 }, { "number_of_poisonbloom_arrow_bloom_allowed", 8 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "poisonbloom_arrow_bloom_burst_1%_more_damage_per_x_stored_poison", @@ -8318,6 +9586,7 @@ skills["ToxicGrowthPlayer"] = { "poisonbloom_arrow_burst_base_radius_+1_per_x_stored_poison", "base_is_projectile", "skill_can_fire_arrows", + "can_perform_skill_while_moving", "has_modular_projectiles_enabled", "projectiles_fire_at_ground", "disable_visual_hit_effect", @@ -8366,6 +9635,87 @@ skills["ToxicGrowthPlayer"] = { [40] = { 4540, 2178, 45395, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, + [2] = { + label = "Explosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "poisonbloom_arrow_statset_1", + baseFlags = { + attack = true, + projectile = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 8 }, + { "base_skill_detonation_time", 15000 }, + { "fixed_projectile_spread", 100 }, + { "number_of_projectiles_override", 1 }, + { "active_skill_base_secondary_area_of_effect_radius", 45 }, + { "active_skill_projectile_speed_+%_variation_final", 150 }, + { "poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison", 300 }, + { "poisonbloom_arrow_max_additional_burst_base_radius_+", 15 }, + { "range_backflip_conditional_distance", 46 }, + { "number_of_poisonbloom_arrow_bloom_allowed", 8 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_chance_to_poison_on_hit_%", 100 }, + { "skill_specific_stat_description_mode", 1 }, + }, + stats = { + "poisonbloom_arrow_bloom_burst_1%_more_damage_per_x_stored_poison", + "poisonbloom_arrow_duration_expires_1%_faster_per_x_stored_poison_damage", + "poisonbloom_arrow_burst_base_radius_+1_per_x_stored_poison", + "base_is_projectile", + "skill_can_fire_arrows", + "can_perform_skill_while_moving", + "has_modular_projectiles_enabled", + "projectiles_fire_at_ground", + "disable_visual_hit_effect", + "quality_display_base_number_of_projectiles_is_gem", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { 2, 1, 17, baseMultiplier = 0.32, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 3, 1, 31, baseMultiplier = 0.35, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 5, 2, 53, baseMultiplier = 0.39, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, 4, 85, baseMultiplier = 0.42, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, 6, 127, baseMultiplier = 0.46, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 19, 8, 182, baseMultiplier = 0.49, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 12, 258, baseMultiplier = 0.52, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, 17, 359, baseMultiplier = 0.56, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 49, 24, 491, baseMultiplier = 0.58, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 66, 33, 667, baseMultiplier = 0.61, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 89, 43, 895, baseMultiplier = 0.64, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 119, 57, 1190, baseMultiplier = 0.68, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 157, 76, 1574, baseMultiplier = 0.71, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 206, 99, 2064, baseMultiplier = 0.74, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 270, 129, 2697, baseMultiplier = 0.78, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 351, 168, 3512, baseMultiplier = 0.82, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 455, 218, 4552, baseMultiplier = 0.86, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 588, 282, 5872, baseMultiplier = 0.91, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 755, 363, 7555, baseMultiplier = 0.95, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 969, 466, 9691, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1032, 495, 10308, baseMultiplier = 1.05, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1141, 547, 11402, baseMultiplier = 1.1, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1324, 636, 13248, baseMultiplier = 1.16, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1555, 746, 15550, baseMultiplier = 1.21, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1843, 884, 18423, baseMultiplier = 1.27, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 1971, 946, 19703, baseMultiplier = 1.34, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2107, 1012, 21065, baseMultiplier = 1.4, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2252, 1081, 22513, baseMultiplier = 1.47, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 2405, 1154, 24053, baseMultiplier = 1.55, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 2568, 1233, 25691, baseMultiplier = 1.63, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2721, 1305, 27203, baseMultiplier = 1.71, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2880, 1382, 28804, baseMultiplier = 1.79, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 3049, 1464, 30496, baseMultiplier = 1.88, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3229, 1549, 32285, baseMultiplier = 1.98, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3417, 1640, 34180, baseMultiplier = 2.07, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3619, 1736, 36179, baseMultiplier = 2.18, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3829, 1838, 38296, baseMultiplier = 2.29, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 4053, 1945, 40530, baseMultiplier = 2.4, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 4290, 2060, 42896, baseMultiplier = 2.52, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 4540, 2178, 45395, baseMultiplier = 2.65, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, } } skills["TrailOfCaltropsPlayer"] = { @@ -8483,7 +9833,7 @@ skills["TrailOfCaltropsPlayer"] = { skills["TriggeredTrailOfCaltropsPlayer"] = { name = "Caltrops", hidden = true, - description = "Maims and deals Physical area damage when triggered by an Enemy. Caltrops are destroyed when triggered, and a maximum of 20 Caltrops can be active at once.", + description = "Maims and deals Attack area damage when triggered by an Enemy. Caltrops are destroyed when triggered, and a maximum of 20 Caltrops can be active at once.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Projectile] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Hazard] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.Attack] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackOrCastTime] = true, }, castTime = 0, qualityStats = { @@ -8552,7 +9902,6 @@ skills["TriggeredTrailOfCaltropsPlayer"] = { "main_hand_weapon_minimum_physical_damage", "main_hand_weapon_maximum_physical_damage", "triggered_by_generic_ongoing_trigger", - "skill_cannot_generate_energy", "global_maim_on_hit", "additive_thorns_damage_modifiers_apply_to_attack_damage", "replace_main_hand_unarmed_attack_stats_with_nothing_type", @@ -8611,142 +9960,12 @@ skills["TriggeredTrailOfCaltropsPlayer"] = { }, } } -skills["TrinityPlayer"] = { - name = "Trinity", - baseTypeName = "Trinity", - color = 2, - description = "Become attuned to all Elements building up Fire, Cold and Lightning Resonance based off the highest Elemental Damage type dealt by your Attack Hits. Your Elemental Damage with Attacks is greatly enhanced the more Resonance of any type you have.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, }, - castTime = 0, - qualityStats = { - { "trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant", 0.75 }, - }, - levels = { - [1] = { spiritReservationFlat = 100, levelRequirement = 0, }, - [2] = { spiritReservationFlat = 100, levelRequirement = 3, }, - [3] = { spiritReservationFlat = 100, levelRequirement = 6, }, - [4] = { spiritReservationFlat = 100, levelRequirement = 10, }, - [5] = { spiritReservationFlat = 100, levelRequirement = 14, }, - [6] = { spiritReservationFlat = 100, levelRequirement = 18, }, - [7] = { spiritReservationFlat = 100, levelRequirement = 22, }, - [8] = { spiritReservationFlat = 100, levelRequirement = 26, }, - [9] = { spiritReservationFlat = 100, levelRequirement = 31, }, - [10] = { spiritReservationFlat = 100, levelRequirement = 36, }, - [11] = { spiritReservationFlat = 100, levelRequirement = 41, }, - [12] = { spiritReservationFlat = 100, levelRequirement = 46, }, - [13] = { spiritReservationFlat = 100, levelRequirement = 52, }, - [14] = { spiritReservationFlat = 100, levelRequirement = 58, }, - [15] = { spiritReservationFlat = 100, levelRequirement = 64, }, - [16] = { spiritReservationFlat = 100, levelRequirement = 66, }, - [17] = { spiritReservationFlat = 100, levelRequirement = 72, }, - [18] = { spiritReservationFlat = 100, levelRequirement = 78, }, - [19] = { spiritReservationFlat = 100, levelRequirement = 84, }, - [20] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [21] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [22] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [23] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [24] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [25] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [26] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [27] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [28] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [29] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [30] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [31] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [32] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [33] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [34] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [35] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [36] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [37] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [38] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [39] = { spiritReservationFlat = 100, levelRequirement = 90, }, - [40] = { spiritReservationFlat = 100, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Trinity", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - statMap = { - ["trinity_damage_+%_final_to_grant_per_50_resonance"] = { - mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ResonanceCount", div = 30 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), - }, - ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"] = { - mod("Speed", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "ResonanceCount", threshold = 250 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), - }, - ["quality_display_trinity_is_gem"] = { - -- Display only - }, - ["trinity_loss_per_hit"] = { - -- Display only - }, - }, - baseFlags = { - buff = true, - duration = true, - }, - constantStats = { - { "trinity_resonance_decay_delay_ms", 8000 }, - { "trinity_resonance_loss_per_second", 10 }, - { "trinity_loss_per_hit", 3 }, - }, - stats = { - "trinity_damage_+%_final_to_grant_per_50_resonance", - "trinity_resonance_to_grant", - "quality_display_trinity_is_gem", - }, - levels = { - [1] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 2, 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 3, 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 3, 11, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 4, 11, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 4, 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 5, 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 5, 13, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 6, 13, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} skills["TwisterPlayer"] = { name = "Twister", baseTypeName = "Twister", color = 2, description = "Whip up a twister with a flick of your Spear. The twister moves forward erratically, Blinding and repeatedly Hitting enemies within. If a twister touches a Whirlwind from your other skills, it Consumes the Whirlwind to create additional twisters that deal more damage. Passing over Elemental Ground Surfaces or Consuming an elemental Whirlwind will grant twisters extra damage of that element.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Spear] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.RangedAttack] = true, [SkillType.CannotTerrainChain] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Spear] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.RangedAttack] = true, [SkillType.CannotTerrainChain] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -8755,46 +9974,46 @@ skills["TwisterPlayer"] = { { "twister_%_chance_for_additional_twister", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 0, cost = { Mana = 4, }, }, - [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.79, levelRequirement = 3, cost = { Mana = 5, }, }, - [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 6, cost = { Mana = 6, }, }, - [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.94, levelRequirement = 10, cost = { Mana = 6, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 14, cost = { Mana = 7, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.08, levelRequirement = 18, cost = { Mana = 8, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 9, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 10, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 31, cost = { Mana = 11, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.32, levelRequirement = 36, cost = { Mana = 12, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.37, levelRequirement = 41, cost = { Mana = 13, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 46, cost = { Mana = 15, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.48, levelRequirement = 52, cost = { Mana = 16, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.54, levelRequirement = 58, cost = { Mana = 18, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 64, cost = { Mana = 20, }, }, - [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 66, cost = { Mana = 23, }, }, - [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 72, cost = { Mana = 25, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.78, levelRequirement = 78, cost = { Mana = 28, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.84, levelRequirement = 84, cost = { Mana = 31, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 34, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 38, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 42, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 47, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 2.16, levelRequirement = 90, cost = { Mana = 52, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 2.23, levelRequirement = 90, cost = { Mana = 58, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.31, levelRequirement = 90, cost = { Mana = 64, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 71, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.46, levelRequirement = 90, cost = { Mana = 79, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.55, levelRequirement = 90, cost = { Mana = 87, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 97, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 107, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 119, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 132, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 146, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.1, levelRequirement = 90, cost = { Mana = 162, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 180, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 199, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.42, levelRequirement = 90, cost = { Mana = 221, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 245, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 3.65, levelRequirement = 90, cost = { Mana = 271, }, }, + [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 4, }, }, + [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 6, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 10, cost = { Mana = 7, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 8, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 9, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 22, cost = { Mana = 10, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.38, levelRequirement = 26, cost = { Mana = 11, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.44, levelRequirement = 31, cost = { Mana = 12, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.51, levelRequirement = 36, cost = { Mana = 13, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 41, cost = { Mana = 15, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.65, levelRequirement = 46, cost = { Mana = 16, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 52, cost = { Mana = 18, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.8, levelRequirement = 58, cost = { Mana = 19, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 64, cost = { Mana = 21, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 66, cost = { Mana = 23, }, }, + [17] = { attackSpeedMultiplier = -20, baseMultiplier = 2.05, levelRequirement = 72, cost = { Mana = 25, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.14, levelRequirement = 78, cost = { Mana = 27, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.23, levelRequirement = 84, cost = { Mana = 30, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 32, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 35, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 37, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 40, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 2.74, levelRequirement = 90, cost = { Mana = 43, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 2.85, levelRequirement = 90, cost = { Mana = 46, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.97, levelRequirement = 90, cost = { Mana = 50, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.1, levelRequirement = 90, cost = { Mana = 54, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 57, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 62, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 3.5, levelRequirement = 90, cost = { Mana = 66, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 3.65, levelRequirement = 90, cost = { Mana = 71, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 3.8, levelRequirement = 90, cost = { Mana = 75, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 3.96, levelRequirement = 90, cost = { Mana = 81, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.13, levelRequirement = 90, cost = { Mana = 86, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 4.3, levelRequirement = 90, cost = { Mana = 92, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 98, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 4.67, levelRequirement = 90, cost = { Mana = 104, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 4.87, levelRequirement = 90, cost = { Mana = 111, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 118, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 126, }, }, }, statSets = { [1] = { @@ -8840,6 +10059,7 @@ skills["TwisterPlayer"] = { "visual_hit_effect_physical_is_wind", "base_is_projectile", "always_pierce", + "active_skill_ignore_setting_aim_stance", }, levels = { [1] = { actorLevel = 1, }, @@ -8891,7 +10111,7 @@ skills["VineArrowPlayer"] = { baseTypeName = "Vine Arrow", color = 2, description = "Fire an arrow into the air that lands after a short delay, damaging enemies and causing a plant to spring up at the impact location. The plant sprouts vines that latch onto nearby enemies, Slowing their movement speed and dealing Chaos damage over time. The plant can be Poisoned, causing it to deal more damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.CanRapidFire] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.DamageOverTime] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.DamageOverTime] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -8902,44 +10122,44 @@ skills["VineArrowPlayer"] = { levels = { [1] = { baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, - [6] = { baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 16, }, }, - [10] = { baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 18, }, }, - [11] = { baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 20, }, }, - [12] = { baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 22, }, }, - [13] = { baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 25, }, }, - [14] = { baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 27, }, }, - [15] = { baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 30, }, }, + [3] = { baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 12, }, }, + [6] = { baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 13, }, }, + [7] = { baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 18, }, }, + [10] = { baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 20, }, }, + [11] = { baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 22, }, }, + [12] = { baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 24, }, }, + [13] = { baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 26, }, }, + [14] = { baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 29, }, }, + [15] = { baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 32, }, }, [16] = { baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 34, }, }, [17] = { baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 37, }, }, - [18] = { baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 41, }, }, - [19] = { baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 46, }, }, - [20] = { baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 51, }, }, - [21] = { baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 56, }, }, - [22] = { baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 63, }, }, - [23] = { baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 69, }, }, - [24] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 77, }, }, - [25] = { baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 85, }, }, - [26] = { baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 95, }, }, - [27] = { baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 105, }, }, - [28] = { baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 116, }, }, - [29] = { baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 129, }, }, - [30] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 143, }, }, - [31] = { baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 158, }, }, - [32] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 176, }, }, - [33] = { baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 195, }, }, - [34] = { baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 216, }, }, - [35] = { baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 239, }, }, - [36] = { baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 265, }, }, - [37] = { baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 294, }, }, - [38] = { baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 326, }, }, - [39] = { baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 361, }, }, - [40] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 400, }, }, + [18] = { baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 40, }, }, + [19] = { baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 44, }, }, + [20] = { baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 47, }, }, + [21] = { baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 51, }, }, + [22] = { baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 55, }, }, + [23] = { baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 59, }, }, + [24] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 64, }, }, + [25] = { baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 69, }, }, + [26] = { baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 74, }, }, + [27] = { baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 79, }, }, + [28] = { baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 85, }, }, + [29] = { baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 91, }, }, + [30] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 97, }, }, + [31] = { baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 104, }, }, + [32] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 111, }, }, + [33] = { baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 119, }, }, + [34] = { baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 127, }, }, + [35] = { baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 136, }, }, + [36] = { baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 145, }, }, + [37] = { baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 154, }, }, + [38] = { baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 164, }, }, + [39] = { baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 175, }, }, + [40] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 186, }, }, }, statSets = { [1] = { @@ -8956,7 +10176,7 @@ skills["VineArrowPlayer"] = { { "active_skill_base_secondary_area_of_effect_radius", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "number_of_vine_arrow_pod_allowed", 1 }, }, stats = { @@ -9012,8 +10232,8 @@ skills["VineArrowPlayer"] = { [2] = { label = "Vines", baseEffectiveness = 5.1999998092651, - incrementalEffectiveness = 0.18000000715256, - damageIncrementalEffectiveness = 0.0092000002041459, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, statDescriptionScope = "poison_vine_arrow_statset_1", statMap = { ["active_skill_base_slow_debuff_movement_speed_+%_final"] = { @@ -9029,7 +10249,7 @@ skills["VineArrowPlayer"] = { { "base_skill_effect_duration", 8000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_area_of_effect_radius", 24 }, { "active_skill_base_secondary_area_of_effect_radius", 48 }, { "active_skill_base_slow_debuff_movement_speed_+%_final", -40 }, @@ -9048,45 +10268,45 @@ skills["VineArrowPlayer"] = { }, levels = { [1] = { 337, 3367, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 496, 4964, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 723, 7235, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 981, 9810, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1273, 12728, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1603, 16032, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 1977, 19771, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 2400, 24002, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 2879, 28791, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 3421, 34213, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 4035, 40352, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 4731, 47308, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 5519, 55194, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 6414, 64139, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7429, 74294, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 8583, 85830, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 9895, 98946, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 11387, 113872, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 13087, 130872, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 15025, 150254, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 17237, 172372, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 19764, 197637, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 22653, 226529, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 25960, 259602, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 29750, 297502, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 34098, 340983, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 39092, 390923, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 44835, 448348, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 51446, 514458, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 59066, 590658, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 67859, 678595, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 78020, 780203, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 89776, 897756, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 103393, 1033929, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 119188, 1191879, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 137533, 1375328, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 158868, 1588676, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 183713, 1837131, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 212687, 2126868, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 246521, 2465211, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [2] = { 490, 4896, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 709, 7086, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 959, 9592, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1246, 12456, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1573, 15728, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1947, 19466, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2374, 23737, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 2862, 28620, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3420, 34204, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 4059, 40593, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 4791, 47910, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5629, 56295, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 6591, 65912, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7695, 76952, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 8964, 89640, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 10423, 104235, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 12104, 121042, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 14042, 140418, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 16278, 162782, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 18862, 188624, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 21852, 218524, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 25316, 253160, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 29333, 293335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 34000, 339995, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 39426, 394261, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 45746, 457458, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 53116, 531160, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 61723, 617233, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 71790, 717901, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 83581, 835809, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 97412, 974117, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 113660, 1136599, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 132777, 1327773, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 155306, 1553056, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 181895, 1818951, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 213328, 2133279, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 250546, 2505462, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 294687, 2946869, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 347124, 3471238, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -9095,59 +10315,59 @@ skills["VoltaicMarkPlayer"] = { name = "Voltaic Mark", baseTypeName = "Voltaic Mark", color = 2, - description = "Mark a target, making them more susceptible to being Shocked. When the Marked target dies, a Lightning nova erupts from their corpse. This nova does not use your Weapon Damage, and instead uses its own base Attack Damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Lightning] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, }, + description = "Mark a target, making them more susceptible to being Shocked. When the Marked target dies, a Lightning explosion erupts from their corpse. This explosion does not use your Weapon Damage, and instead uses its own base Attack Damage.", + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Lightning] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.5, qualityStats = { { "thaumaturgist_mark_enemy_shock_effect_+%_taken", 0.75 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 23, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 25, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 27, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 29, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 31, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 33, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 35, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 41, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 44, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 47, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 50, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 54, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 58, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 67, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 77, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 88, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 117, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 135, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 166, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 191, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 205, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 235, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 252, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 271, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 290, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 311, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 334, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 23, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 25, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 28, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 31, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 33, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 36, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 39, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 49, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 52, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 56, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 59, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 63, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 67, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 71, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 79, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 83, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 97, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 102, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 107, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 117, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 128, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 146, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 159, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 166, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 172, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 179, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 194, }, }, }, statSets = { [1] = { label = "Mark", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "thaumaturgist_mark", + statDescriptionScope = "voltaic_mark", statMap = { ["thaumaturgist_mark_enemies_shocked_chance_+%_final"] = { mod("SelfShockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), @@ -9165,7 +10385,7 @@ skills["VoltaicMarkPlayer"] = { { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "thaumaturgist_mark_enemy_shock_effect_+%_taken", 30 }, { "thaumaturgist_mark_enemies_shocked_chance_+%_final", 50 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "number_of_marks_allowed_per_type", 1 }, }, stats = { @@ -9217,6 +10437,121 @@ skills["VoltaicMarkPlayer"] = { }, } } +skills["TriggeredVoltaicMarkNovaPlayer"] = { + name = "Voltaic Nova", + hidden = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.UseGlobalStats] = true, [SkillType.Lightning] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { critChance = 8, baseMultiplier = 1.1, levelRequirement = 0, }, + [2] = { critChance = 8, baseMultiplier = 1.21, levelRequirement = 0, }, + [3] = { critChance = 8, baseMultiplier = 1.34, levelRequirement = 0, }, + [4] = { critChance = 8, baseMultiplier = 1.47, levelRequirement = 0, }, + [5] = { critChance = 8, baseMultiplier = 1.6, levelRequirement = 0, }, + [6] = { critChance = 8, baseMultiplier = 1.73, levelRequirement = 0, }, + [7] = { critChance = 8, baseMultiplier = 1.87, levelRequirement = 0, }, + [8] = { critChance = 8, baseMultiplier = 2, levelRequirement = 0, }, + [9] = { critChance = 8, baseMultiplier = 2.12, levelRequirement = 0, }, + [10] = { critChance = 8, baseMultiplier = 2.26, levelRequirement = 0, }, + [11] = { critChance = 8, baseMultiplier = 2.41, levelRequirement = 0, }, + [12] = { critChance = 8, baseMultiplier = 2.57, levelRequirement = 0, }, + [13] = { critChance = 8, baseMultiplier = 2.74, levelRequirement = 0, }, + [14] = { critChance = 8, baseMultiplier = 2.93, levelRequirement = 0, }, + [15] = { critChance = 8, baseMultiplier = 3.13, levelRequirement = 0, }, + [16] = { critChance = 8, baseMultiplier = 3.36, levelRequirement = 0, }, + [17] = { critChance = 8, baseMultiplier = 3.61, levelRequirement = 0, }, + [18] = { critChance = 8, baseMultiplier = 3.87, levelRequirement = 0, }, + [19] = { critChance = 8, baseMultiplier = 4.17, levelRequirement = 0, }, + [20] = { critChance = 8, baseMultiplier = 4.49, levelRequirement = 0, }, + [21] = { critChance = 8, baseMultiplier = 4.84, levelRequirement = 0, }, + [22] = { critChance = 8, baseMultiplier = 5.21, levelRequirement = 0, }, + [23] = { critChance = 8, baseMultiplier = 5.62, levelRequirement = 0, }, + [24] = { critChance = 8, baseMultiplier = 6.05, levelRequirement = 0, }, + [25] = { critChance = 8, baseMultiplier = 6.52, levelRequirement = 0, }, + [26] = { critChance = 8, baseMultiplier = 7.02, levelRequirement = 0, }, + [27] = { critChance = 8, baseMultiplier = 7.56, levelRequirement = 0, }, + [28] = { critChance = 8, baseMultiplier = 8.15, levelRequirement = 0, }, + [29] = { critChance = 8, baseMultiplier = 8.78, levelRequirement = 0, }, + [30] = { critChance = 8, baseMultiplier = 9.46, levelRequirement = 0, }, + [31] = { critChance = 8, baseMultiplier = 10.19, levelRequirement = 0, }, + [32] = { critChance = 8, baseMultiplier = 10.97, levelRequirement = 0, }, + [33] = { critChance = 8, baseMultiplier = 11.82, levelRequirement = 0, }, + [34] = { critChance = 8, baseMultiplier = 12.74, levelRequirement = 0, }, + [35] = { critChance = 8, baseMultiplier = 13.72, levelRequirement = 0, }, + [36] = { critChance = 8, baseMultiplier = 14.78, levelRequirement = 0, }, + [37] = { critChance = 8, baseMultiplier = 15.92, levelRequirement = 0, }, + [38] = { critChance = 8, baseMultiplier = 17.15, levelRequirement = 0, }, + [39] = { critChance = 8, baseMultiplier = 18.48, levelRequirement = 0, }, + [40] = { critChance = 8, baseMultiplier = 19.91, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Explosion", + baseEffectiveness = 1.8600000143051, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "voltaic_mark_nova", + baseFlags = { + nonWeaponAttack = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 26 }, + { "active_skill_shock_chance_+%_final", 200 }, + }, + stats = { + "main_hand_weapon_minimum_lightning_damage", + "main_hand_weapon_maximum_lightning_damage", + "triggered_by_thaumaturgist_mark", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "display_statset_hide_usage_stats", + "triggerable_in_any_set", + }, + levels = { + [1] = { 1, 14, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 35, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 49, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 3, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 8, 146, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 9, 166, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 10, 186, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 11, 207, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 12, 228, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 13, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 14, 274, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 16, 299, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 17, 324, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 18, 350, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 20, 377, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 21, 405, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 23, 433, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 24, 463, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 26, 493, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 28, 524, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 29, 556, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 31, 589, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 33, 622, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 35, 657, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 36, 692, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 38, 729, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 40, 766, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 42, 803, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 44, 842, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 46, 882, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 49, 922, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 51, 964, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 53, 1006, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 55, 1049, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 58, 1093, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["WhirlingSlashPlayer"] = { name = "Whirling Slash", baseTypeName = "Whirling Slash", @@ -9231,46 +10566,46 @@ skills["WhirlingSlashPlayer"] = { { "sandstorm_swipe_storm_damage_+%_final_per_stage", 2 }, }, levels = { - [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 6, }, }, + [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 5, }, }, [2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 7, }, }, [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 8, }, }, [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 13, }, }, - [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 16, }, }, - [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 18, }, }, - [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 20, }, }, - [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 22, }, }, - [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 25, }, }, + [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 13, }, }, + [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 16, }, }, + [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 18, }, }, + [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 22, }, }, + [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 24, }, }, + [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 26, }, }, [16] = { attackSpeedMultiplier = -30, baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 28, }, }, [17] = { attackSpeedMultiplier = -30, baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 31, }, }, - [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 34, }, }, - [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 38, }, }, - [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 42, }, }, - [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 46, }, }, - [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 52, }, }, - [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 57, }, }, - [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 63, }, }, - [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 70, }, }, - [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 78, }, }, - [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 86, }, }, - [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 96, }, }, - [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 106, }, }, - [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 118, }, }, - [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 131, }, }, - [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 145, }, }, - [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 161, }, }, - [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 178, }, }, - [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 197, }, }, - [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 219, }, }, - [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 242, }, }, - [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 268, }, }, - [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 298, }, }, - [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 330, }, }, + [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 33, }, }, + [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 36, }, }, + [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 39, }, }, + [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 42, }, }, + [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 45, }, }, + [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 49, }, }, + [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 53, }, }, + [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 57, }, }, + [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 61, }, }, + [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 65, }, }, + [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 70, }, }, + [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 75, }, }, + [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 80, }, }, + [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 86, }, }, + [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 92, }, }, + [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 98, }, }, + [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 105, }, }, + [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 112, }, }, + [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 119, }, }, + [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 127, }, }, + [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 135, }, }, + [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 144, }, }, + [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 153, }, }, }, statSets = { [1] = { @@ -9298,6 +10633,7 @@ skills["WhirlingSlashPlayer"] = { "is_area_damage", "sandstorm_swipe_display", "global_knockback", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -9378,6 +10714,7 @@ skills["WhirlingSlashPlayer"] = { stats = { "visual_hit_effect_physical_is_wind", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "quality_display_sandstorm_swipe_is_gem", "base_skill_show_average_damage_instead_of_dps", @@ -9432,7 +10769,7 @@ skills["WhirlwindLancePlayer"] = { baseTypeName = "Whirlwind Lance", color = 2, description = "Throw a Spear with enough force to kick up a Whirlwind where it lands, Slowing enemies and Blinding them in its area of effect. Entering the Whirlwind collapses it, dealing damage and causing Knockback. Consumes a Frenzy Charge if possible to create the Whirlwind with one more than its normal maximum number of stages.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.CanRapidFire] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.SupportedByFountains] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.SupportedByFountains] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -9441,46 +10778,46 @@ skills["WhirlwindLancePlayer"] = { { "sandstorm_swipe_storm_damage_+%_final_per_stage", 2 }, }, levels = { - [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 7, }, }, + [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 17, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 19, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 21, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 26, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 29, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 32, }, }, + [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 28, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 33, }, }, [17] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 36, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 40, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 44, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 49, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 54, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 60, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 67, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 74, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 82, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 91, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 101, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 112, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 124, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 137, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 152, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 169, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 187, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 207, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 230, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 255, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 283, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 313, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 347, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 385, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 39, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 42, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 46, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 49, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 53, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 57, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 62, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 66, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 71, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 76, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 82, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 88, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 94, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 100, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 107, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 114, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 122, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 130, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 139, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 148, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 158, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 168, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 179, }, }, }, statSets = { [1] = { @@ -9494,7 +10831,7 @@ skills["WhirlwindLancePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_weapon_range_+", 65 }, }, stats = { @@ -9572,7 +10909,7 @@ skills["WhirlwindLancePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_weapon_range_+", 65 }, { "active_skill_base_area_of_effect_radius", 18 }, { "sandstorm_swipe_storm_radius_+_per_stage", 3 }, @@ -9581,10 +10918,10 @@ skills["WhirlwindLancePlayer"] = { { "active_skill_base_slow_debuff_movement_speed_+%_final", -30 }, { "sandstorm_swipe_storm_damage_+%_final_per_stage", 150 }, { "sandstorm_swipe_max_stages", 3 }, - { "windstorm_base_maximum_number_of_storms", 5 }, + { "windstorm_base_maximum_number_of_storms", 6 }, { "windstorm_gain_all_damage_%_as_corresponding_element_if_empowered", 50 }, { "sandstorm_swipe_nova_radius_+", 3 }, - { "base_skill_effect_duration", 8000 }, + { "base_skill_effect_duration", 15000 }, { "skill_specific_stat_description_mode", 1 }, }, stats = { @@ -9599,160 +10936,46 @@ skills["WhirlwindLancePlayer"] = { "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { baseMultiplier = 0.5, actorLevel = 1, }, - [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["TriggeredVoltaicMarkNovaPlayer"] = { - name = "Voltaic Nova", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.Nova] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.UseGlobalStats] = true, [SkillType.Lightning] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, }, - castTime = 1, - qualityStats = { - }, - levels = { - [1] = { critChance = 8, baseMultiplier = 1.1, levelRequirement = 0, }, - [2] = { critChance = 8, baseMultiplier = 1.21, levelRequirement = 0, }, - [3] = { critChance = 8, baseMultiplier = 1.34, levelRequirement = 0, }, - [4] = { critChance = 8, baseMultiplier = 1.47, levelRequirement = 0, }, - [5] = { critChance = 8, baseMultiplier = 1.6, levelRequirement = 0, }, - [6] = { critChance = 8, baseMultiplier = 1.73, levelRequirement = 0, }, - [7] = { critChance = 8, baseMultiplier = 1.87, levelRequirement = 0, }, - [8] = { critChance = 8, baseMultiplier = 2, levelRequirement = 0, }, - [9] = { critChance = 8, baseMultiplier = 2.12, levelRequirement = 0, }, - [10] = { critChance = 8, baseMultiplier = 2.26, levelRequirement = 0, }, - [11] = { critChance = 8, baseMultiplier = 2.41, levelRequirement = 0, }, - [12] = { critChance = 8, baseMultiplier = 2.57, levelRequirement = 0, }, - [13] = { critChance = 8, baseMultiplier = 2.74, levelRequirement = 0, }, - [14] = { critChance = 8, baseMultiplier = 2.93, levelRequirement = 0, }, - [15] = { critChance = 8, baseMultiplier = 3.13, levelRequirement = 0, }, - [16] = { critChance = 8, baseMultiplier = 3.36, levelRequirement = 0, }, - [17] = { critChance = 8, baseMultiplier = 3.61, levelRequirement = 0, }, - [18] = { critChance = 8, baseMultiplier = 3.87, levelRequirement = 0, }, - [19] = { critChance = 8, baseMultiplier = 4.17, levelRequirement = 0, }, - [20] = { critChance = 8, baseMultiplier = 4.49, levelRequirement = 0, }, - [21] = { critChance = 8, baseMultiplier = 4.84, levelRequirement = 0, }, - [22] = { critChance = 8, baseMultiplier = 5.21, levelRequirement = 0, }, - [23] = { critChance = 8, baseMultiplier = 5.62, levelRequirement = 0, }, - [24] = { critChance = 8, baseMultiplier = 6.05, levelRequirement = 0, }, - [25] = { critChance = 8, baseMultiplier = 6.52, levelRequirement = 0, }, - [26] = { critChance = 8, baseMultiplier = 7.02, levelRequirement = 0, }, - [27] = { critChance = 8, baseMultiplier = 7.56, levelRequirement = 0, }, - [28] = { critChance = 8, baseMultiplier = 8.15, levelRequirement = 0, }, - [29] = { critChance = 8, baseMultiplier = 8.78, levelRequirement = 0, }, - [30] = { critChance = 8, baseMultiplier = 9.46, levelRequirement = 0, }, - [31] = { critChance = 8, baseMultiplier = 10.19, levelRequirement = 0, }, - [32] = { critChance = 8, baseMultiplier = 10.97, levelRequirement = 0, }, - [33] = { critChance = 8, baseMultiplier = 11.82, levelRequirement = 0, }, - [34] = { critChance = 8, baseMultiplier = 12.74, levelRequirement = 0, }, - [35] = { critChance = 8, baseMultiplier = 13.72, levelRequirement = 0, }, - [36] = { critChance = 8, baseMultiplier = 14.78, levelRequirement = 0, }, - [37] = { critChance = 8, baseMultiplier = 15.92, levelRequirement = 0, }, - [38] = { critChance = 8, baseMultiplier = 17.15, levelRequirement = 0, }, - [39] = { critChance = 8, baseMultiplier = 18.48, levelRequirement = 0, }, - [40] = { critChance = 8, baseMultiplier = 19.91, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Nova", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "thaumaturgist_mark_nova", - baseFlags = { - nonWeaponAttack = true, - }, - constantStats = { - { "active_skill_base_area_of_effect_radius", 26 }, - { "active_skill_shock_chance_+%_final", 200 }, - }, - stats = { - "main_hand_weapon_minimum_lightning_damage", - "main_hand_weapon_maximum_lightning_damage", - "triggered_by_thaumaturgist_mark", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "display_statset_hide_usage_stats", - }, - levels = { - [1] = { 1, 14, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 35, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 3, 49, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 3, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 8, 146, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 9, 166, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 10, 186, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 11, 207, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 12, 228, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 13, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 14, 274, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 16, 299, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 17, 324, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 18, 350, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 20, 377, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 21, 405, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 23, 433, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 24, 463, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 26, 493, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 28, 524, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 29, 556, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 31, 589, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 33, 622, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 35, 657, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 36, 692, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 38, 729, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 40, 766, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 42, 803, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 44, 842, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 46, 882, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 49, 922, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 51, 964, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 53, 1006, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 55, 1049, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 58, 1093, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.6, actorLevel = 1, }, + [2] = { baseMultiplier = 0.66, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.73, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.79, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.86, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.93, actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.06, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.12, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.19, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.25, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.33, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.41, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.5, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.59, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.69, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.8, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.91, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.04, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 2.17, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 2.32, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.47, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.64, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.81, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 3, actorLevel = 136.875, }, + [26] = { baseMultiplier = 3.2, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 3.41, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.64, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.88, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 4.14, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 4.42, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 4.71, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 5.03, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 5.36, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 5.72, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 6.1, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 6.51, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 6.94, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 7.4, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 7.89, actorLevel = 288.29998779297, }, }, }, } @@ -10039,56 +11262,56 @@ skills["WindSerpentsFuryPlayer"] = { name = "Wind Serpent's Fury", baseTypeName = "Wind Serpent's Fury", color = 2, - description = "Consume all Frenzy Charges to perform a gigantic spear thrust that Knocks Back enemies. For each Frenzy Charge consumed, a Wind Serpent follows in the spear's wake. Each Serpent also damages and Knocks Back enemies, and knocking an Enemy into terrain or another larger Enemy will cause a shockwave.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.HasUsageCondition] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.RequiresCharges] = true, }, + description = "Consume all Frenzy Charges to perform a gigantic spear thrust that Knocks Back enemies. For each Frenzy Charge consumed, a Wind Serpent follows in the spear's wake. Each Serpent also damages and Knocks Back enemies.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.HasUsageCondition] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.RequiresCharges] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, castTime = 1, qualityStats = { - { "knockback_distance_+%", 1.5 }, + { "active_skill_knockback_distance_+%_final", 1.5 }, }, levels = { [1] = { attackSpeedMultiplier = -60, baseMultiplier = 1.65, levelRequirement = 0, cost = { Mana = 10, }, }, [2] = { attackSpeedMultiplier = -60, baseMultiplier = 1.82, levelRequirement = 3, cost = { Mana = 11, }, }, - [3] = { attackSpeedMultiplier = -60, baseMultiplier = 2, levelRequirement = 6, cost = { Mana = 12, }, }, - [4] = { attackSpeedMultiplier = -60, baseMultiplier = 2.18, levelRequirement = 10, cost = { Mana = 14, }, }, - [5] = { attackSpeedMultiplier = -60, baseMultiplier = 2.36, levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { attackSpeedMultiplier = -60, baseMultiplier = 2.55, levelRequirement = 18, cost = { Mana = 17, }, }, - [7] = { attackSpeedMultiplier = -60, baseMultiplier = 2.74, levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { attackSpeedMultiplier = -60, baseMultiplier = 2.92, levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { attackSpeedMultiplier = -60, baseMultiplier = 3.08, levelRequirement = 31, cost = { Mana = 23, }, }, - [10] = { attackSpeedMultiplier = -60, baseMultiplier = 3.26, levelRequirement = 36, cost = { Mana = 26, }, }, - [11] = { attackSpeedMultiplier = -60, baseMultiplier = 3.45, levelRequirement = 41, cost = { Mana = 29, }, }, - [12] = { attackSpeedMultiplier = -60, baseMultiplier = 3.66, levelRequirement = 46, cost = { Mana = 32, }, }, - [13] = { attackSpeedMultiplier = -60, baseMultiplier = 3.88, levelRequirement = 52, cost = { Mana = 36, }, }, - [14] = { attackSpeedMultiplier = -60, baseMultiplier = 4.11, levelRequirement = 58, cost = { Mana = 40, }, }, - [15] = { attackSpeedMultiplier = -60, baseMultiplier = 4.37, levelRequirement = 64, cost = { Mana = 44, }, }, - [16] = { attackSpeedMultiplier = -60, baseMultiplier = 4.64, levelRequirement = 66, cost = { Mana = 49, }, }, + [3] = { attackSpeedMultiplier = -60, baseMultiplier = 2, levelRequirement = 6, cost = { Mana = 13, }, }, + [4] = { attackSpeedMultiplier = -60, baseMultiplier = 2.18, levelRequirement = 10, cost = { Mana = 15, }, }, + [5] = { attackSpeedMultiplier = -60, baseMultiplier = 2.36, levelRequirement = 14, cost = { Mana = 17, }, }, + [6] = { attackSpeedMultiplier = -60, baseMultiplier = 2.55, levelRequirement = 18, cost = { Mana = 19, }, }, + [7] = { attackSpeedMultiplier = -60, baseMultiplier = 2.74, levelRequirement = 22, cost = { Mana = 21, }, }, + [8] = { attackSpeedMultiplier = -60, baseMultiplier = 2.92, levelRequirement = 26, cost = { Mana = 24, }, }, + [9] = { attackSpeedMultiplier = -60, baseMultiplier = 3.08, levelRequirement = 31, cost = { Mana = 26, }, }, + [10] = { attackSpeedMultiplier = -60, baseMultiplier = 3.26, levelRequirement = 36, cost = { Mana = 29, }, }, + [11] = { attackSpeedMultiplier = -60, baseMultiplier = 3.45, levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { attackSpeedMultiplier = -60, baseMultiplier = 3.66, levelRequirement = 46, cost = { Mana = 35, }, }, + [13] = { attackSpeedMultiplier = -60, baseMultiplier = 3.88, levelRequirement = 52, cost = { Mana = 38, }, }, + [14] = { attackSpeedMultiplier = -60, baseMultiplier = 4.11, levelRequirement = 58, cost = { Mana = 42, }, }, + [15] = { attackSpeedMultiplier = -60, baseMultiplier = 4.37, levelRequirement = 64, cost = { Mana = 46, }, }, + [16] = { attackSpeedMultiplier = -60, baseMultiplier = 4.64, levelRequirement = 66, cost = { Mana = 50, }, }, [17] = { attackSpeedMultiplier = -60, baseMultiplier = 4.94, levelRequirement = 72, cost = { Mana = 54, }, }, - [18] = { attackSpeedMultiplier = -60, baseMultiplier = 5.26, levelRequirement = 78, cost = { Mana = 60, }, }, - [19] = { attackSpeedMultiplier = -60, baseMultiplier = 5.6, levelRequirement = 84, cost = { Mana = 66, }, }, - [20] = { attackSpeedMultiplier = -60, baseMultiplier = 5.98, levelRequirement = 90, cost = { Mana = 74, }, }, - [21] = { attackSpeedMultiplier = -60, baseMultiplier = 6.37, levelRequirement = 90, cost = { Mana = 82, }, }, - [22] = { attackSpeedMultiplier = -60, baseMultiplier = 6.8, levelRequirement = 90, cost = { Mana = 91, }, }, - [23] = { attackSpeedMultiplier = -60, baseMultiplier = 7.25, levelRequirement = 90, cost = { Mana = 100, }, }, - [24] = { attackSpeedMultiplier = -60, baseMultiplier = 7.74, levelRequirement = 90, cost = { Mana = 111, }, }, - [25] = { attackSpeedMultiplier = -60, baseMultiplier = 8.25, levelRequirement = 90, cost = { Mana = 123, }, }, - [26] = { attackSpeedMultiplier = -60, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 137, }, }, - [27] = { attackSpeedMultiplier = -60, baseMultiplier = 9.39, levelRequirement = 90, cost = { Mana = 152, }, }, - [28] = { attackSpeedMultiplier = -60, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 168, }, }, - [29] = { attackSpeedMultiplier = -60, baseMultiplier = 10.68, levelRequirement = 90, cost = { Mana = 186, }, }, - [30] = { attackSpeedMultiplier = -60, baseMultiplier = 11.39, levelRequirement = 90, cost = { Mana = 207, }, }, - [31] = { attackSpeedMultiplier = -60, baseMultiplier = 12.15, levelRequirement = 90, cost = { Mana = 229, }, }, - [32] = { attackSpeedMultiplier = -60, baseMultiplier = 12.96, levelRequirement = 90, cost = { Mana = 254, }, }, - [33] = { attackSpeedMultiplier = -60, baseMultiplier = 13.82, levelRequirement = 90, cost = { Mana = 281, }, }, - [34] = { attackSpeedMultiplier = -60, baseMultiplier = 14.74, levelRequirement = 90, cost = { Mana = 312, }, }, - [35] = { attackSpeedMultiplier = -60, baseMultiplier = 15.72, levelRequirement = 90, cost = { Mana = 345, }, }, - [36] = { attackSpeedMultiplier = -60, baseMultiplier = 16.77, levelRequirement = 90, cost = { Mana = 383, }, }, - [37] = { attackSpeedMultiplier = -60, baseMultiplier = 17.89, levelRequirement = 90, cost = { Mana = 424, }, }, - [38] = { attackSpeedMultiplier = -60, baseMultiplier = 19.08, levelRequirement = 90, cost = { Mana = 470, }, }, - [39] = { attackSpeedMultiplier = -60, baseMultiplier = 20.35, levelRequirement = 90, cost = { Mana = 521, }, }, - [40] = { attackSpeedMultiplier = -60, baseMultiplier = 21.71, levelRequirement = 90, cost = { Mana = 577, }, }, + [18] = { attackSpeedMultiplier = -60, baseMultiplier = 5.26, levelRequirement = 78, cost = { Mana = 59, }, }, + [19] = { attackSpeedMultiplier = -60, baseMultiplier = 5.6, levelRequirement = 84, cost = { Mana = 63, }, }, + [20] = { attackSpeedMultiplier = -60, baseMultiplier = 5.98, levelRequirement = 90, cost = { Mana = 69, }, }, + [21] = { attackSpeedMultiplier = -60, baseMultiplier = 6.37, levelRequirement = 90, cost = { Mana = 74, }, }, + [22] = { attackSpeedMultiplier = -60, baseMultiplier = 6.8, levelRequirement = 90, cost = { Mana = 80, }, }, + [23] = { attackSpeedMultiplier = -60, baseMultiplier = 7.25, levelRequirement = 90, cost = { Mana = 86, }, }, + [24] = { attackSpeedMultiplier = -60, baseMultiplier = 7.74, levelRequirement = 90, cost = { Mana = 93, }, }, + [25] = { attackSpeedMultiplier = -60, baseMultiplier = 8.25, levelRequirement = 90, cost = { Mana = 100, }, }, + [26] = { attackSpeedMultiplier = -60, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 107, }, }, + [27] = { attackSpeedMultiplier = -60, baseMultiplier = 9.39, levelRequirement = 90, cost = { Mana = 115, }, }, + [28] = { attackSpeedMultiplier = -60, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 123, }, }, + [29] = { attackSpeedMultiplier = -60, baseMultiplier = 10.68, levelRequirement = 90, cost = { Mana = 132, }, }, + [30] = { attackSpeedMultiplier = -60, baseMultiplier = 11.39, levelRequirement = 90, cost = { Mana = 141, }, }, + [31] = { attackSpeedMultiplier = -60, baseMultiplier = 12.15, levelRequirement = 90, cost = { Mana = 151, }, }, + [32] = { attackSpeedMultiplier = -60, baseMultiplier = 12.96, levelRequirement = 90, cost = { Mana = 161, }, }, + [33] = { attackSpeedMultiplier = -60, baseMultiplier = 13.82, levelRequirement = 90, cost = { Mana = 172, }, }, + [34] = { attackSpeedMultiplier = -60, baseMultiplier = 14.74, levelRequirement = 90, cost = { Mana = 184, }, }, + [35] = { attackSpeedMultiplier = -60, baseMultiplier = 15.72, levelRequirement = 90, cost = { Mana = 196, }, }, + [36] = { attackSpeedMultiplier = -60, baseMultiplier = 16.77, levelRequirement = 90, cost = { Mana = 209, }, }, + [37] = { attackSpeedMultiplier = -60, baseMultiplier = 17.89, levelRequirement = 90, cost = { Mana = 223, }, }, + [38] = { attackSpeedMultiplier = -60, baseMultiplier = 19.08, levelRequirement = 90, cost = { Mana = 237, }, }, + [39] = { attackSpeedMultiplier = -60, baseMultiplier = 20.35, levelRequirement = 90, cost = { Mana = 253, }, }, + [40] = { attackSpeedMultiplier = -60, baseMultiplier = 21.71, levelRequirement = 90, cost = { Mana = 269, }, }, }, statSets = { [1] = { @@ -10110,6 +11333,7 @@ skills["WindSerpentsFuryPlayer"] = { stats = { "is_area_damage", "visual_hit_effect_physical_is_wind", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -10175,6 +11399,7 @@ skills["WindSerpentsFuryPlayer"] = { stats = { "is_area_damage", "visual_hit_effect_physical_is_wind", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { baseMultiplier = 0.55, actorLevel = 1, }, @@ -10219,67 +11444,5 @@ skills["WindSerpentsFuryPlayer"] = { [40] = { baseMultiplier = 7.24, actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Shockwave", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "serpent_spear_statset_2", - baseFlags = { - attack = true, - area = true, - melee = true, - }, - constantStats = { - { "active_skill_requires_X_frenzy_charges", 1 }, - { "knockback_distance_+%_final_vs_unique_enemies", 200 }, - { "active_skill_base_area_of_effect_radius", 20 }, - }, - stats = { - "is_area_damage", - "visual_hit_effect_physical_is_wind", - "cannot_knockback", - }, - levels = { - [1] = { baseMultiplier = 0.75, actorLevel = 1, }, - [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.16, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.25, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.33, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 1.4, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 1.48, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.57, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.66, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.76, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.87, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.98, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 2.11, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 2.24, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 2.39, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 2.55, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 2.72, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 2.9, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 3.09, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 3.3, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 3.52, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 3.75, actorLevel = 136.875, }, - [26] = { baseMultiplier = 4, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 4.27, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 4.55, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 4.85, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 5.18, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 5.52, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 5.89, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 6.28, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 6.7, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 7.15, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 7.62, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 8.13, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 8.67, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 9.25, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 9.87, actorLevel = 288.29998779297, }, - }, - }, } } \ No newline at end of file diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index a89056b994..d5903069fc 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -10,61 +10,61 @@ skills["ArcPlayer"] = { name = "Arc", baseTypeName = "Arc", color = 3, - description = "An arc of Lightning stretches from the caster to a targeted enemy and Chains on to other nearby enemies. Shocked enemies Hit release damaging pulses.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, + description = "An arc of Lightning stretches from the caster to a targeted enemy and Chains on to other nearby enemies. Consumes a Lightning Infusion if possible to deal more damage and Chain further.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1.1, qualityStats = { - { "arc_damage_+%_final_for_each_remaining_chain", 0.1 }, + { "number_of_chains", 0.1 }, }, levels = { [1] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 0, cost = { Mana = 8, }, }, - [2] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 3, cost = { Mana = 10, }, }, + [2] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 3, cost = { Mana = 9, }, }, [3] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 6, cost = { Mana = 11, }, }, [4] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 10, cost = { Mana = 12, }, }, [5] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 22, cost = { Mana = 18, }, }, - [8] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 31, cost = { Mana = 23, }, }, - [10] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 36, cost = { Mana = 27, }, }, - [11] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 41, cost = { Mana = 30, }, }, - [12] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 46, cost = { Mana = 34, }, }, + [6] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 36, cost = { Mana = 28, }, }, + [11] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 41, cost = { Mana = 31, }, }, + [12] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 46, cost = { Mana = 35, }, }, [13] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 52, cost = { Mana = 39, }, }, [14] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 58, cost = { Mana = 44, }, }, - [15] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 64, cost = { Mana = 50, }, }, - [16] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 66, cost = { Mana = 56, }, }, - [17] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 72, cost = { Mana = 64, }, }, - [18] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 78, cost = { Mana = 72, }, }, - [19] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 93, }, }, - [21] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 105, }, }, - [22] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 119, }, }, - [23] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 135, }, }, - [24] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 153, }, }, - [25] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 173, }, }, - [26] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 196, }, }, - [27] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 222, }, }, - [28] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 251, }, }, - [29] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 284, }, }, - [30] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 322, }, }, - [31] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 364, }, }, - [32] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 412, }, }, - [33] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 466, }, }, - [34] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 528, }, }, - [35] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 598, }, }, - [36] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 676, }, }, - [37] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 765, }, }, - [38] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 866, }, }, - [39] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 980, }, }, - [40] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 1110, }, }, + [15] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 64, cost = { Mana = 49, }, }, + [16] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 66, cost = { Mana = 54, }, }, + [17] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 72, cost = { Mana = 60, }, }, + [18] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 78, cost = { Mana = 67, }, }, + [19] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 84, cost = { Mana = 74, }, }, + [20] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 81, }, }, + [21] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 90, }, }, + [22] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 99, }, }, + [23] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 109, }, }, + [24] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 120, }, }, + [25] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 132, }, }, + [26] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 145, }, }, + [27] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 159, }, }, + [28] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 174, }, }, + [29] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 190, }, }, + [30] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 208, }, }, + [31] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 228, }, }, + [32] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 249, }, }, + [33] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 271, }, }, + [34] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 296, }, }, + [35] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 323, }, }, + [36] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 352, }, }, + [37] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 383, }, }, + [38] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 417, }, }, + [39] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 454, }, }, + [40] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 494, }, }, }, statSets = { [1] = { label = "Arc", - baseEffectiveness = 2.5, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "arc", + baseEffectiveness = 1.75, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "skill_stat_descriptions", statMap = { ["arc_damage_+%_final_for_each_remaining_chain"] = { mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ChainRemaining" }), @@ -76,155 +76,75 @@ skills["ArcPlayer"] = { baseFlags = { spell = true, chaining = true, + projectile = true, }, constantStats = { - { "arc_chain_distance", 35 }, + { "arc_damage_+%_final_from_infusion_consumption", 200 }, + { "arc_chains_gained_from_infusion_consumption", 6 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_shock_effect_+%_final", 50 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", "number_of_chains", + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", "disable_visual_hit_effect", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", - "quality_display_arc_is_gem", - "arc_chain_explode_shocked_enemies", - "never_shock", - }, - notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - }, - levels = { - [1] = { 3, 17, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 4, 23, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 5, 31, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 7, 41, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 9, 51, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 11, 63, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 13, 76, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 16, 90, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 19, 107, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 22, 125, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 26, 145, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 29, 167, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 34, 191, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, 219, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 44, 249, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 50, 283, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 57, 321, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 64, 363, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 72, 410, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 82, 462, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 92, 521, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 103, 586, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 116, 658, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 130, 739, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 147, 830, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 164, 932, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 185, 1046, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 207, 1174, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 232, 1317, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 261, 1478, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 293, 1658, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 329, 1862, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 369, 2091, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 414, 2348, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 466, 2639, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 524, 2968, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 589, 3338, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 663, 3758, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 747, 4232, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 842, 4770, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Pulse", - baseEffectiveness = 1.5, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "arc", - statMap = { - ["arc_damage_+%_final_for_each_remaining_chain"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ChainRemaining" }), - }, - ["quality_display_arc_is_gem"] = { - -- Display only - }, - }, - baseFlags = { - spell = true, - area = true, - }, - constantStats = { - { "arc_chain_distance", 35 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_base_area_of_effect_radius", 15 }, - }, - stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - "number_of_chains", - "can_perform_skill_while_moving", - "should_use_additive_aiming_animation", - "quality_display_arc_is_gem", - "arc_chain_explode_shocked_enemies", - "never_shock", - "is_area_damage", - "display_statset_hide_usage_stats", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_lightning_infusion", }, notMinionStat = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0, 0, 2, 10, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 2, 14, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 3, 19, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 4, 24, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 5, 31, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 7, 38, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 8, 46, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 10, 54, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 11, 64, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 13, 75, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 15, 87, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 18, 100, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 20, 115, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 23, 131, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 26, 150, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 30, 170, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 34, 193, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 38, 218, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 43, 246, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 49, 277, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 55, 312, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 62, 351, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 70, 395, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 78, 444, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 88, 498, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 99, 559, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 111, 628, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 124, 704, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 139, 790, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 156, 887, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 176, 995, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 197, 1117, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 221, 1254, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 249, 1409, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 279, 1584, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 314, 1781, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 353, 2003, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 398, 2255, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 448, 2539, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 505, 2862, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 1, 17, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 24, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2, 31, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 2, 39, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 3, 48, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 3, 58, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 4, 69, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 4, 82, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 5, 96, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6, 112, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 7, 130, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 8, 151, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 9, 174, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 10, 199, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 12, 228, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 14, 261, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 16, 298, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 18, 339, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 20, 386, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 23, 439, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 26, 499, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 30, 567, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 34, 644, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 38, 731, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 44, 830, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 50, 943, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 56, 1071, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 64, 1217, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 73, 1384, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 83, 1574, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 94, 1791, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 107, 2039, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 122, 2324, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 139, 2650, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 159, 3024, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 182, 3454, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 208, 3949, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 238, 4518, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 272, 5175, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -237,7 +157,7 @@ skills["ArchmagePlayer"] = { skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, }, castTime = 1, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { spiritReservationFlat = 100, levelRequirement = 0, }, @@ -298,7 +218,7 @@ skills["ArchmagePlayer"] = { baseFlags = { }, constantStats = { - { "archmage_all_damage_%_to_gain_as_lightning_to_grant_to_non_channelling_spells_per_100_max_mana", 3 }, + { "archmage_all_damage_%_to_gain_as_lightning_to_grant_to_non_channelling_spells_per_100_max_mana", 4 }, }, stats = { "archmage_max_mana_permyriad_to_add_to_non_channelled_spell_mana_cost", @@ -405,8 +325,8 @@ skills["ArcticArmourPlayer"] = { [1] = { label = "Arctic Armour", baseEffectiveness = 2.1800000667572, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "skill_stat_descriptions", baseFlags = { spell = true, @@ -420,44 +340,44 @@ skills["ArcticArmourPlayer"] = { levels = { [1] = { 7, 10, 2, 1250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, [2] = { 9, 14, 2, 1175, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 13, 19, 2, 1150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 17, 25, 3, 1125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 21, 31, 3, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 26, 39, 3, 1075, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 31, 47, 3, 1050, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 37, 56, 3, 1025, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 44, 66, 3, 1000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 51, 77, 3, 975, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 59, 89, 4, 950, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [3] = { 12, 19, 2, 1150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, 24, 3, 1125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 20, 31, 3, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 25, 38, 3, 1075, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 30, 46, 3, 1050, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, 54, 3, 1025, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 43, 65, 3, 1000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 51, 76, 3, 975, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 59, 88, 4, 950, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 68, 103, 4, 925, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 79, 118, 4, 900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 90, 135, 4, 875, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 102, 154, 4, 850, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 174, 4, 825, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 132, 198, 4, 800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 149, 224, 4, 775, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 168, 252, 4, 750, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 190, 285, 5, 725, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 214, 320, 5, 700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 240, 360, 5, 675, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 270, 405, 5, 650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 303, 455, 5, 625, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 341, 511, 5, 600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 382, 574, 5, 575, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 429, 644, 6, 550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 482, 722, 6, 525, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 540, 811, 6, 500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 606, 910, 6, 475, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 681, 1021, 6, 450, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 764, 1146, 7, 425, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 858, 1287, 7, 400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 964, 1446, 7, 375, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1083, 1625, 7, 350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1218, 1827, 7, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1370, 2055, 8, 300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1542, 2313, 8, 275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1737, 2605, 8, 250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1957, 2936, 8, 225, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [13] = { 79, 119, 4, 900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 91, 137, 4, 875, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 105, 157, 4, 850, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 120, 180, 4, 825, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 137, 205, 4, 800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 156, 234, 4, 775, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 178, 267, 4, 750, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 203, 304, 5, 725, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 230, 346, 5, 700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 262, 393, 5, 675, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 297, 446, 5, 650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 338, 507, 5, 625, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 384, 575, 5, 600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 436, 653, 5, 575, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 495, 742, 6, 550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 562, 843, 6, 525, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 639, 958, 6, 500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 726, 1089, 6, 475, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 826, 1238, 6, 450, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 939, 1409, 7, 425, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1070, 1605, 7, 400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1219, 1828, 7, 375, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1390, 2085, 7, 350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1586, 2379, 7, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1812, 2717, 8, 300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2071, 3107, 8, 275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2370, 3555, 8, 250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2714, 4072, 8, 225, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -466,61 +386,61 @@ skills["BallLightningPlayer"] = { name = "Ball Lightning", baseTypeName = "Ball Lightning", color = 3, - description = "Fire a slow-moving orb Projectile that moves through enemies. The orb itself does not Hit enemies, but repeatedly shoots bolts of Lightning at nearby targets.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, }, + description = "Fire a slow-moving Projectile that moves through enemies. The Projectile itself does not Hit enemies, but repeatedly discharges bolts of Lightning at nearby enemies. Consumes a Fire Infusion if possible to slow down over time, create Ignited Ground as it travels, and explode dealing Fire damage in an Area after it dissipates.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, }, castTime = 1, qualityStats = { { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 0, cost = { Mana = 10, }, }, + [1] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 3, cost = { Mana = 11, }, }, [3] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 6, cost = { Mana = 13, }, }, [4] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 10, cost = { Mana = 15, }, }, [5] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 14, cost = { Mana = 17, }, }, [6] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 18, cost = { Mana = 19, }, }, - [7] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 22, cost = { Mana = 21, }, }, - [8] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 26, cost = { Mana = 24, }, }, - [9] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 31, cost = { Mana = 28, }, }, - [10] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 36, cost = { Mana = 31, }, }, - [11] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 41, cost = { Mana = 36, }, }, - [12] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 46, cost = { Mana = 40, }, }, + [7] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 22, cost = { Mana = 22, }, }, + [8] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 26, cost = { Mana = 25, }, }, + [9] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 31, cost = { Mana = 29, }, }, + [10] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 36, cost = { Mana = 33, }, }, + [11] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 41, cost = { Mana = 37, }, }, + [12] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 46, cost = { Mana = 41, }, }, [13] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 52, cost = { Mana = 46, }, }, - [14] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 58, cost = { Mana = 52, }, }, - [15] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 64, cost = { Mana = 59, }, }, - [16] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 66, cost = { Mana = 66, }, }, - [17] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 72, cost = { Mana = 75, }, }, - [18] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 78, cost = { Mana = 85, }, }, - [19] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 84, cost = { Mana = 96, }, }, - [20] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 109, }, }, - [21] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 124, }, }, - [22] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 140, }, }, - [23] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 159, }, }, - [24] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 180, }, }, - [25] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 203, }, }, - [26] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 230, }, }, - [27] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 260, }, }, - [28] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 295, }, }, - [29] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 334, }, }, - [30] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 378, }, }, - [31] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 428, }, }, - [32] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 484, }, }, - [33] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 548, }, }, - [34] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 620, }, }, - [35] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 702, }, }, - [36] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 794, }, }, - [37] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 899, }, }, - [38] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 1017, }, }, - [39] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 1151, }, }, - [40] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 1303, }, }, + [14] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 58, cost = { Mana = 51, }, }, + [15] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 64, cost = { Mana = 57, }, }, + [16] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 66, cost = { Mana = 64, }, }, + [17] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 72, cost = { Mana = 71, }, }, + [18] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 78, cost = { Mana = 78, }, }, + [19] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 84, cost = { Mana = 87, }, }, + [20] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 96, }, }, + [21] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 106, }, }, + [22] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 116, }, }, + [23] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 128, }, }, + [24] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 141, }, }, + [25] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 155, }, }, + [26] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 170, }, }, + [27] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 186, }, }, + [28] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 204, }, }, + [29] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 223, }, }, + [30] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 244, }, }, + [31] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 267, }, }, + [32] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 292, }, }, + [33] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 319, }, }, + [34] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 348, }, }, + [35] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 379, }, }, + [36] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 413, }, }, + [37] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 450, }, }, + [38] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 490, }, }, + [39] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 533, }, }, + [40] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 580, }, }, }, statSets = { [1] = { label = "Ball Lightning", baseEffectiveness = 0.36000001430511, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0054999999701977, - statDescriptionScope = "ball_lightning", + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "ball_lightning_statset_0", statMap = { ["ball_lightning_base_hit_frequency_ms"] = { skill("hitTimeOverride", nil), @@ -536,9 +456,11 @@ skills["BallLightningPlayer"] = { { "active_skill_shock_chance_+%_final", 750 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_area_of_effect_radius", 18 }, { "ball_lightning_base_hit_frequency_ms", 200 }, + { "ball_lightning_infused_acceleration", -25 }, + { "ball_lightning_infused_burning_ground_interval_ms", 350 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -547,6 +469,8 @@ skills["BallLightningPlayer"] = { "is_area_damage", "can_perform_skill_while_moving", "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_fire_infusion", }, notMinionStat = { "spell_minimum_base_lightning_damage", @@ -561,38 +485,200 @@ skills["BallLightningPlayer"] = { [6] = { 1, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, [7] = { 1, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, [8] = { 1, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 1, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [9] = { 1, 16, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, [10] = { 1, 19, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, [11] = { 1, 22, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 1, 25, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, [13] = { 2, 29, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, [14] = { 2, 33, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 2, 37, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 2, 42, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 2, 47, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 3, 59, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 3, 66, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 4, 73, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 4, 82, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 5, 91, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 5, 101, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 6, 112, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 7, 124, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7, 138, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 8, 153, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 9, 170, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 10, 188, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 11, 209, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 12, 231, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 13, 256, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 15, 284, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 17, 315, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 18, 349, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 20, 387, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 23, 430, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 25, 477, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 28, 530, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [15] = { 2, 38, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 2, 43, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 3, 49, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 3, 55, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 3, 62, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 4, 70, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 4, 79, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 5, 89, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 5, 100, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 6, 112, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7, 126, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 7, 142, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 8, 159, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 9, 179, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 11, 201, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 12, 225, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 13, 253, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 15, 285, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 17, 320, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 19, 360, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 21, 405, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 24, 455, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 27, 513, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 30, 578, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 34, 651, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 39, 735, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire-Infused", + baseEffectiveness = 3.5, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "ball_lightning_statset_1", + baseFlags = { + spell = true, + area = true, + projectile = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "ball_lightning_infused_acceleration", -25 }, + { "ball_lightning_infused_burning_ground_interval_ms", 350 }, + { "active_skill_base_secondary_area_of_effect_radius", 26 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "base_is_projectile", + "is_area_damage", + "can_perform_skill_while_moving", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_fire_infusion", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 0, 0, 11, 16, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 15, 22, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 20, 30, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 26, 38, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 32, 48, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 39, 59, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 47, 71, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 56, 85, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 66, 100, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 78, 116, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 90, 135, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 104, 155, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 119, 178, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 136, 204, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 155, 232, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 176, 264, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 199, 299, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 225, 338, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 255, 382, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 287, 431, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 323, 485, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 364, 546, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 409, 614, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 460, 690, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 517, 775, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 580, 871, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 652, 978, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 732, 1098, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 822, 1233, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 923, 1385, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 1037, 1555, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 1165, 1747, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 1309, 1964, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1472, 2208, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1656, 2484, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1864, 2796, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 2099, 3148, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 2365, 3547, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2666, 3999, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 3008, 4512, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Ignited Ground", + baseEffectiveness = 4, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "ball_lightning_statset_2", + baseFlags = { + spell = true, + area = true, + projectile = true, + duration = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "ball_lightning_infused_acceleration", -25 }, + { "ball_lightning_infused_burning_ground_interval_ms", 350 }, + { "active_skill_base_tertiary_area_of_effect_radius", 9 }, + { "base_skill_effect_duration", 4000 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "base_is_projectile", + "is_area_damage", + "can_perform_skill_while_moving", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_fire_infusion", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 0, 0, 12, 19, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 17, 25, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 23, 34, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 30, 45, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 38, 57, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 47, 71, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 57, 86, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 69, 104, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 82, 123, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 97, 146, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 114, 172, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 134, 201, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 156, 234, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 181, 271, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 209, 314, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 242, 363, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 279, 419, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 321, 482, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 370, 555, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 425, 638, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 488, 733, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 561, 841, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 644, 966, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 740, 1110, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 850, 1275, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 977, 1465, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 1123, 1684, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 1291, 1937, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 1486, 2229, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 1711, 2567, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 1973, 2959, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 2276, 3414, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 2628, 3942, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 3037, 4556, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 3515, 5272, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 4071, 6107, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 4722, 7083, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 5483, 8224, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 6374, 9561, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 7420, 11131, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -602,7 +688,7 @@ skills["MetaBarrierInvocationPlayer"] = { baseTypeName = "Barrier Invocation", color = 3, description = "While active, gains Energy when your Energy Shield is damaged by Enemy Hits. Using the Invocation once sufficient Energy is gathered will consume the Energy to trigger socketed Spells, and can trigger them multiple times if it has enough Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Invocation] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Invocation] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { { "energy_generated_+%", 0.75 }, @@ -771,8 +857,7 @@ skills["SupportBarrierInvocationPlayer"] = { }, stats = { "triggered_by_generic_ongoing_trigger", - "display_generic_ongoing_triggerer_is_invocation_skill", - "skill_cannot_generate_energy", + "generic_ongoing_triggerer_is_invocation_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -827,7 +912,7 @@ skills["BlasphemyPlayer"] = { skillTypes = { [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Meta] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.IsBlasphemy] = true, }, castTime = 0, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -1059,7 +1144,7 @@ skills["BlinkReservationPlayer"] = { baseTypeName = "Blink", color = 3, description = "While active, replaces your dodge roll with a short-cooldown Spell that allows you to tunnel through space, instantly reappearing a medium distance away.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, }, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.DodgeReplacement] = true, [SkillType.ReserveInAllSets] = true, }, castTime = 1, qualityStats = { }, @@ -1165,7 +1250,7 @@ skills["BlinkPlayer"] = { name = "Blink", hidden = true, description = "While active, replaces your dodge roll with a short-cooldown Spell that allows you to tunnel through space, instantly reappearing a medium distance away.", - skillTypes = { [SkillType.UsableWhileShapeshifted] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Travel] = true, }, + skillTypes = { [SkillType.UsableWhileShapeshifted] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Travel] = true, [SkillType.CanCancelActions] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "base_cooldown_speed_+%", 0.5 }, @@ -1281,7 +1366,7 @@ skills["BoneBlastPlayer"] = { fromItem = true, color = 3, description = "Conjure a circle of ritual inscriptions that last for a short duration. When the duration ends, spikes of bone erupt from enemies in the area, damaging them and potentially causing Bleeding.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Cascadable] = true, [SkillType.CreatesGroundRune] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Cascadable] = true, [SkillType.CreatesGroundRune] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.75, qualityStats = { { "active_skill_base_area_of_effect_radius", 0.2 }, @@ -1331,9 +1416,9 @@ skills["BoneBlastPlayer"] = { statSets = { [1] = { label = "Bone Blast", - baseEffectiveness = 1.9099999666214, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + baseEffectiveness = 2.1300001144409, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "bone_blast", baseFlags = { spell = true, @@ -1345,7 +1430,7 @@ skills["BoneBlastPlayer"] = { { "active_skill_base_area_of_effect_radius", 10 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_chance_to_inflict_bleeding_%", 40 }, }, stats = { @@ -1359,46 +1444,46 @@ skills["BoneBlastPlayer"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 74, 111, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 85, 128, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 128, 192, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 146, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 167, 250, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 190, 285, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 246, 369, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 279, 419, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 317, 476, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 361, 541, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 410, 614, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 465, 698, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 529, 793, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 601, 901, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 683, 1024, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 777, 1165, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 884, 1326, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1007, 1510, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1147, 1721, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1308, 1963, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1493, 2240, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1706, 2559, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1950, 2925, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2232, 3348, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2556, 3835, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 23, 34, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 52, 78, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 61, 91, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 71, 107, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 83, 124, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 96, 145, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 112, 167, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 129, 193, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 197, 295, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 226, 339, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 299, 448, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 343, 515, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 394, 591, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 453, 679, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 598, 897, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 688, 1031, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 791, 1187, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 911, 1367, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1050, 1576, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1212, 1818, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1399, 2099, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1617, 2426, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1872, 2807, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2168, 3252, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2514, 3772, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2920, 4379, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3394, 5091, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3951, 5927, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1407,60 +1492,60 @@ skills["BoneCagePlayer"] = { name = "Bone Cage", baseTypeName = "Bone Cage", color = 3, - description = "Raise a ring of bone spikes around you. The spikes are destroyed when enemies touch them, damaging and Pinning those enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, }, + description = "Raise a ring of bone spikes around you. The spikes are destroyed when enemies touch them, damaging and Pinning those enemies. Raising a new ring of spikes destroys the previous one.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { { "active_skill_pins_as_though_dealt_damage_+%_final", 2.5 }, }, levels = { - [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 8, }, }, + [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 9, }, }, - [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 11, }, }, + [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 10, }, }, [4] = { critChance = 15, levelRequirement = 10, cost = { Mana = 12, }, }, [5] = { critChance = 15, levelRequirement = 14, cost = { Mana = 14, }, }, [6] = { critChance = 15, levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 18, }, }, - [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 20, }, }, - [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 23, }, }, - [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 26, }, }, - [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 30, }, }, + [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 21, }, }, + [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 27, }, }, + [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 31, }, }, [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 34, }, }, - [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 38, }, }, + [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 39, }, }, [14] = { critChance = 15, levelRequirement = 58, cost = { Mana = 43, }, }, - [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 49, }, }, - [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 56, }, }, - [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 63, }, }, - [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 71, }, }, - [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 81, }, }, - [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 92, }, }, - [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 104, }, }, - [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 117, }, }, - [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 133, }, }, - [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 151, }, }, - [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 171, }, }, - [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 193, }, }, - [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 219, }, }, - [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 247, }, }, - [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 280, }, }, - [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 317, }, }, - [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 359, }, }, - [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 406, }, }, - [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 460, }, }, - [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 520, }, }, - [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 589, }, }, - [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 666, }, }, - [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 754, }, }, - [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 854, }, }, - [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 966, }, }, - [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 1093, }, }, + [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 48, }, }, + [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 53, }, }, + [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 59, }, }, + [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 66, }, }, + [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 73, }, }, + [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 80, }, }, + [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 89, }, }, + [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 98, }, }, + [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 107, }, }, + [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 118, }, }, + [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 130, }, }, + [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 143, }, }, + [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 156, }, }, + [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 171, }, }, + [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 187, }, }, + [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 205, }, }, + [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 224, }, }, + [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 245, }, }, + [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 267, }, }, + [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 292, }, }, + [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 318, }, }, + [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 347, }, }, + [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 378, }, }, + [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 411, }, }, + [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 447, }, }, + [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 487, }, }, }, statSets = { [1] = { label = "Bone Cage", baseEffectiveness = 3.2699999809265, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "ring_of_bone", baseFlags = { area = true, @@ -1474,7 +1559,7 @@ skills["BoneCagePlayer"] = { { "ring_of_bone_maximum_number_of_rings", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "ring_of_bone_spike_break_chance_%", 100 }, { "base_pinned_art_variation", 1 }, { "active_skill_pins_as_though_dealt_damage_+%_final", 50 }, @@ -1494,44 +1579,44 @@ skills["BoneCagePlayer"] = { levels = { [1] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 68, 103, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 81, 121, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [3] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 56, 85, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 80, 119, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 127, 190, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 146, 219, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 168, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 192, 288, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 220, 329, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 251, 376, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 325, 488, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 370, 555, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 421, 631, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 478, 718, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 543, 815, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 617, 926, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 701, 1052, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 796, 1195, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 905, 1357, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1028, 1542, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1169, 1754, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1330, 1995, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1514, 2270, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1724, 2585, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1964, 2946, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2240, 3360, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2557, 3835, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2920, 4380, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3339, 5008, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 3821, 5731, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4377, 6565, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [13] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 148, 222, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 198, 297, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 228, 342, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 263, 394, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 302, 453, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 347, 521, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 459, 688, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 527, 790, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 605, 907, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 695, 1042, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 798, 1197, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 918, 1377, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1056, 1583, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1215, 1822, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1399, 2099, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1613, 2419, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1860, 2791, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2148, 3222, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2483, 3725, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2873, 4310, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3328, 4993, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3860, 5790, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 4482, 6723, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 5211, 7816, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 6066, 9099, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1540,58 +1625,58 @@ skills["BoneOfferingPlayer"] = { name = "Bone Offering", baseTypeName = "Bone Offering", color = 3, - description = "Impale a Skeleton on a bone spike to shield your Minions while the spike remains. The shield absorbs all damage from the next Hit each Minion takes, then explodes.\n\nThe bone spike is itself a Minion, and shields itself. If it dies, shields on your other Minions disappear.", - skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, }, + description = "Impale a Skeleton on a bone spike to shield your Minions while the spike remains, reducing the amount of damage taken from Hits. Taking a Hit that deals damage above a certain threshold will cause that Minion's shield to absorb all damage from that Hit, then explode.\n\nThe bone spike is itself a Minion, and shields itself. If it dies, shields on your other Minions disappear.", + skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, [SkillType.Area] = true, }, castTime = 0.6, qualityStats = { + { "bone_offering_damage_taken_+%_final_after_shield_loss", -1.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 26, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 25, }, }, [2] = { levelRequirement = 3, cost = { Mana = 28, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 31, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 34, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 38, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 42, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 46, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 50, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 32, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 35, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 39, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 43, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 47, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 51, }, }, [9] = { levelRequirement = 31, cost = { Mana = 55, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 61, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 67, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 73, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 80, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 88, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 97, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 107, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 117, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 129, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 141, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 171, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 187, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 206, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 226, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 248, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 273, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 300, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 329, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 361, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 397, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 436, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 479, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 526, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 577, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 634, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 696, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 764, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 839, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 922, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1012, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 59, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 64, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 68, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 73, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 78, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 83, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 88, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 93, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 99, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 104, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 116, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 122, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 129, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 135, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 142, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 149, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 156, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 164, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 171, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 179, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 195, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 204, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 213, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 222, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 231, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 240, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 250, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 260, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 270, }, }, }, statSets = { [1] = { label = "Buff", - baseEffectiveness = 1.710000038147, incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "bone_offering", baseFlags = { @@ -1599,58 +1684,60 @@ skills["BoneOfferingPlayer"] = { duration = true, }, constantStats = { - { "base_skill_effect_duration", 5000 }, - { "base_secondary_skill_effect_duration", 5000 }, + { "base_skill_effect_duration", 8000 }, + { "base_secondary_skill_effect_duration", 8000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_bone_offerings_allowed", 1 }, + { "bone_offering_hit_threshold_%_of_maximum_life", 25 }, }, stats = { + "bone_offering_damage_taken_+%_final", "can_perform_skill_while_moving", "display_statset_no_hit_damage", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { -15, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { -16, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { -16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { -17, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { -17, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { -18, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { -18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { -19, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { -19, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { -20, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { -20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { -21, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { -21, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { -22, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { -22, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { -23, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { -23, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { -24, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { -24, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { -25, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { -25, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { -26, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { -26, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { -27, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { -27, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { -28, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { -28, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { -29, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { -29, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { -30, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { -30, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { -30, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { -30, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { -31, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { -31, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { -31, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { -31, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { -32, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { -32, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { -32, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1659,60 +1746,60 @@ skills["BonestormPlayer"] = { name = "Bonestorm", baseTypeName = "Bonestorm", color = 3, - description = "Channel to conjure a swarm of bone spikes in the air, then release to fire them at enemies and explode. Shrapnel Impales Enemies Hit, causing subsequent Attack Hits against those targets to deal extra Damage. Consumes your Power Charges to cause much larger explosions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.Damage] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Sustained] = true, }, + description = "Channel to conjure a swarm of bone spikes in the air, then release to fire them at enemies and explode. Shrapnel Impales enemies Hit, causing subsequent Attack Hits against those targets to deal extra damage. Consumes your Power Charges to cause much larger explosions.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.Damage] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.125, qualityStats = { { "active_skill_cast_speed_+%_final", 0.5 }, }, levels = { - [1] = { critChance = 15, levelRequirement = 0, cost = { ManaPerMinute = 395, }, }, - [2] = { critChance = 15, levelRequirement = 3, cost = { ManaPerMinute = 447, }, }, - [3] = { critChance = 15, levelRequirement = 6, cost = { ManaPerMinute = 505, }, }, - [4] = { critChance = 15, levelRequirement = 10, cost = { ManaPerMinute = 572, }, }, - [5] = { critChance = 15, levelRequirement = 14, cost = { ManaPerMinute = 647, }, }, - [6] = { critChance = 15, levelRequirement = 18, cost = { ManaPerMinute = 733, }, }, - [7] = { critChance = 15, levelRequirement = 22, cost = { ManaPerMinute = 829, }, }, - [8] = { critChance = 15, levelRequirement = 26, cost = { ManaPerMinute = 939, }, }, - [9] = { critChance = 15, levelRequirement = 31, cost = { ManaPerMinute = 1062, }, }, - [10] = { critChance = 15, levelRequirement = 36, cost = { ManaPerMinute = 1202, }, }, - [11] = { critChance = 15, levelRequirement = 41, cost = { ManaPerMinute = 1361, }, }, - [12] = { critChance = 15, levelRequirement = 46, cost = { ManaPerMinute = 1540, }, }, - [13] = { critChance = 15, levelRequirement = 52, cost = { ManaPerMinute = 1743, }, }, - [14] = { critChance = 15, levelRequirement = 58, cost = { ManaPerMinute = 1972, }, }, - [15] = { critChance = 15, levelRequirement = 64, cost = { ManaPerMinute = 2232, }, }, - [16] = { critChance = 15, levelRequirement = 66, cost = { ManaPerMinute = 2526, }, }, - [17] = { critChance = 15, levelRequirement = 72, cost = { ManaPerMinute = 2859, }, }, - [18] = { critChance = 15, levelRequirement = 78, cost = { ManaPerMinute = 3236, }, }, - [19] = { critChance = 15, levelRequirement = 84, cost = { ManaPerMinute = 3662, }, }, - [20] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4144, }, }, - [21] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4690, }, }, - [22] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 5308, }, }, - [23] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 6007, }, }, - [24] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 6798, }, }, - [25] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 7693, }, }, - [26] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 8707, }, }, - [27] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 9853, }, }, - [28] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 11151, }, }, - [29] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 12620, }, }, - [30] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 14282, }, }, - [31] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 16163, }, }, - [32] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 18292, }, }, - [33] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 20701, }, }, - [34] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 23427, }, }, - [35] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 26513, }, }, - [36] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 30004, }, }, - [37] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 33956, }, }, - [38] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 38428, }, }, - [39] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 43489, }, }, - [40] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 49217, }, }, + [1] = { critChance = 15, levelRequirement = 0, cost = { ManaPerMinute = 355, }, }, + [2] = { critChance = 15, levelRequirement = 3, cost = { ManaPerMinute = 420, }, }, + [3] = { critChance = 15, levelRequirement = 6, cost = { ManaPerMinute = 491, }, }, + [4] = { critChance = 15, levelRequirement = 10, cost = { ManaPerMinute = 571, }, }, + [5] = { critChance = 15, levelRequirement = 14, cost = { ManaPerMinute = 658, }, }, + [6] = { critChance = 15, levelRequirement = 18, cost = { ManaPerMinute = 754, }, }, + [7] = { critChance = 15, levelRequirement = 22, cost = { ManaPerMinute = 861, }, }, + [8] = { critChance = 15, levelRequirement = 26, cost = { ManaPerMinute = 977, }, }, + [9] = { critChance = 15, levelRequirement = 31, cost = { ManaPerMinute = 1106, }, }, + [10] = { critChance = 15, levelRequirement = 36, cost = { ManaPerMinute = 1246, }, }, + [11] = { critChance = 15, levelRequirement = 41, cost = { ManaPerMinute = 1401, }, }, + [12] = { critChance = 15, levelRequirement = 46, cost = { ManaPerMinute = 1570, }, }, + [13] = { critChance = 15, levelRequirement = 52, cost = { ManaPerMinute = 1755, }, }, + [14] = { critChance = 15, levelRequirement = 58, cost = { ManaPerMinute = 1958, }, }, + [15] = { critChance = 15, levelRequirement = 64, cost = { ManaPerMinute = 2180, }, }, + [16] = { critChance = 15, levelRequirement = 66, cost = { ManaPerMinute = 2422, }, }, + [17] = { critChance = 15, levelRequirement = 72, cost = { ManaPerMinute = 2687, }, }, + [18] = { critChance = 15, levelRequirement = 78, cost = { ManaPerMinute = 2976, }, }, + [19] = { critChance = 15, levelRequirement = 84, cost = { ManaPerMinute = 3291, }, }, + [20] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 3634, }, }, + [21] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4008, }, }, + [22] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4415, }, }, + [23] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4859, }, }, + [24] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 5341, }, }, + [25] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 5865, }, }, + [26] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 6435, }, }, + [27] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 7055, }, }, + [28] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 7728, }, }, + [29] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 8458, }, }, + [30] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 9251, }, }, + [31] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 10111, }, }, + [32] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 11043, }, }, + [33] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 12054, }, }, + [34] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 13150, }, }, + [35] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 14338, }, }, + [36] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 15624, }, }, + [37] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 17017, }, }, + [38] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 18526, }, }, + [39] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 20158, }, }, + [40] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 21924, }, }, }, statSets = { [1] = { label = "Projectile", baseEffectiveness = 1.4199999570847, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0054999999701977, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, statDescriptionScope = "bone_spike_statset_0", baseFlags = { spell = true, @@ -1722,7 +1809,7 @@ skills["BonestormPlayer"] = { { "base_number_of_projectiles", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_minimum_channel_time_ms", 300 }, { "bone_spear_target_rectangle_length", 40 }, { "base_number_of_allowed_bone_storm_projectiles", 20 }, @@ -1750,50 +1837,50 @@ skills["BonestormPlayer"] = { [1] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, [3] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [4] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, [5] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [6] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 23, 34, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 27, 40, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 36, 55, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, [13] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 54, 82, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 61, 92, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 69, 104, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 98, 146, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 122, 182, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 151, 226, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 168, 251, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 186, 279, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 207, 310, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 229, 344, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 254, 382, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 426, 639, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 472, 708, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 523, 785, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 580, 870, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 644, 965, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 714, 1071, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 792, 1188, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 880, 1319, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [14] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 71, 107, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 81, 121, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 116, 175, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 131, 197, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 148, 221, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 166, 249, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 187, 280, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 210, 315, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 236, 353, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 264, 397, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 297, 445, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 333, 500, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 374, 562, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 421, 631, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 473, 709, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 531, 797, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 597, 896, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 672, 1008, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 756, 1134, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 851, 1277, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 959, 1439, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1082, 1623, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1220, 1831, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { label = "Explosion", baseEffectiveness = 1.0900000333786, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0054999999701977, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, statDescriptionScope = "bone_spike_statset_1", baseFlags = { spell = true, @@ -1803,7 +1890,7 @@ skills["BonestormPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_minimum_channel_time_ms", 300 }, { "bone_spear_target_rectangle_length", 40 }, { "base_number_of_allowed_bone_storm_projectiles", 20 }, @@ -1840,41 +1927,41 @@ skills["BonestormPlayer"] = { [3] = { 0, 0, 6, 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, [4] = { 0, 0, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, [5] = { 0, 0, 10, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 21, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 24, 37, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [6] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 18, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 21, 31, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, [11] = { 0, 0, 28, 42, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 0, 0, 32, 48, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 37, 55, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [13] = { 0, 0, 37, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, [14] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 47, 71, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 60, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 67, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 75, 112, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 84, 126, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 93, 140, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 104, 156, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 116, 174, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 129, 193, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 143, 214, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 159, 238, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 176, 264, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 195, 293, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 217, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 240, 360, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 266, 399, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 295, 442, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 327, 490, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 362, 544, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 402, 603, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 445, 668, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 494, 741, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 548, 822, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 608, 912, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 675, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [15] = { 0, 0, 48, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 55, 82, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 62, 93, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 70, 105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 79, 119, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 89, 134, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 101, 151, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 113, 170, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 127, 191, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 143, 215, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 161, 241, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 181, 271, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 203, 305, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 228, 342, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 256, 384, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 287, 431, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 323, 484, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 363, 544, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 408, 612, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 458, 688, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 516, 774, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 580, 871, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 654, 980, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 736, 1105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 830, 1245, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 937, 1405, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1884,10 +1971,10 @@ skills["MetaCastOnCritPlayer"] = { baseTypeName = "Cast on Critical", color = 3, description = "While active, gains Energy when you Critically Hit enemies and triggers socketed Spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { spiritReservationFlat = 100, levelRequirement = 0, }, @@ -2056,7 +2143,6 @@ skills["SupportMetaCastOnCritPlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -2108,10 +2194,10 @@ skills["MetaCastOnDodgePlayer"] = { baseTypeName = "Cast on Dodge", color = 3, description = "While active, gains Energy when you dodge roll and triggers socketed spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { spiritReservationFlat = 100, levelRequirement = 0, }, @@ -2279,7 +2365,6 @@ skills["SupportMetaCastOnDodgePlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -2326,66 +2411,68 @@ skills["SupportMetaCastOnDodgePlayer"] = { }, } } -skills["MetaCastOnFreezePlayer"] = { - name = "Cast on Freeze", - baseTypeName = "Cast on Freeze", +skills["MetaCastOnElementalAilmentPlayer"] = { + name = "Cast on Elemental Ailment", + baseTypeName = "Cast on Elemental Ailment", color = 3, - description = "While active, gains Energy when you Freeze enemies and triggers socketed spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Cold] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + description = "While active, gains Energy when you Freeze, Shock, or Ignite enemies, and triggers socketed spells on reaching maximum Energy.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { { "energy_generated_+%", 0.75 }, }, levels = { - [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, - [2] = { spiritReservationFlat = 60, levelRequirement = 3, }, - [3] = { spiritReservationFlat = 60, levelRequirement = 6, }, - [4] = { spiritReservationFlat = 60, levelRequirement = 10, }, - [5] = { spiritReservationFlat = 60, levelRequirement = 14, }, - [6] = { spiritReservationFlat = 60, levelRequirement = 18, }, - [7] = { spiritReservationFlat = 60, levelRequirement = 22, }, - [8] = { spiritReservationFlat = 60, levelRequirement = 26, }, - [9] = { spiritReservationFlat = 60, levelRequirement = 31, }, - [10] = { spiritReservationFlat = 60, levelRequirement = 36, }, - [11] = { spiritReservationFlat = 60, levelRequirement = 41, }, - [12] = { spiritReservationFlat = 60, levelRequirement = 46, }, - [13] = { spiritReservationFlat = 60, levelRequirement = 52, }, - [14] = { spiritReservationFlat = 60, levelRequirement = 58, }, - [15] = { spiritReservationFlat = 60, levelRequirement = 64, }, - [16] = { spiritReservationFlat = 60, levelRequirement = 66, }, - [17] = { spiritReservationFlat = 60, levelRequirement = 72, }, - [18] = { spiritReservationFlat = 60, levelRequirement = 78, }, - [19] = { spiritReservationFlat = 60, levelRequirement = 84, }, - [20] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [21] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [22] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [23] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [24] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [25] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [26] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [27] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [28] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [29] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [30] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [31] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [32] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [33] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [34] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [35] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [36] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [37] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [38] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [39] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [40] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [1] = { spiritReservationFlat = 100, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 100, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 100, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 100, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 100, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 100, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 100, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 100, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 100, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 100, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 100, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 100, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 100, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 100, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 100, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 100, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 100, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 100, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 100, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 100, levelRequirement = 90, }, }, statSets = { [1] = { - label = "Cast on Freeze", + label = "Cast on Elemental Ailment", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, constantStats = { + { "cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite", 100 }, + { "cast_on_shock_gain_X_centienergy_per_monster_power_on_shock", 100 }, { "cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze", 1000 }, }, stats = { @@ -2439,8 +2526,8 @@ skills["MetaCastOnFreezePlayer"] = { }, } } -skills["SupportMetaCastOnFreezePlayer"] = { - name = "SupportMetaCastOnFreezePlayer", +skills["SupportMetaCastOnElementalAilmentPlayer"] = { + name = "SupportMetaCastOnElementalAilmentPlayer", hidden = true, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, @@ -2491,7 +2578,7 @@ skills["SupportMetaCastOnFreezePlayer"] = { }, statSets = { [1] = { - label = "SupportMetaCastOnFreezePlayer", + label = "SupportMetaCastOnElementalAilmentPlayer", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -2502,7 +2589,6 @@ skills["SupportMetaCastOnFreezePlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -2549,15 +2635,15 @@ skills["SupportMetaCastOnFreezePlayer"] = { }, } } -skills["MetaCastOnIgnitePlayer"] = { - name = "Cast on Ignite", - baseTypeName = "Cast on Ignite", +skills["MetaCastOnMinionDeathPlayer"] = { + name = "Cast on Minion Death", + baseTypeName = "Cast on Minion Death", color = 3, - description = "While active, gains Energy when you Ignite enemies and triggers socketed spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + description = "While active, gains Energy when one of your Persistent Minions is Killed, and triggers socketed Spells upon reaching maximum Energy. Very underlevelled Minions will incur an Energy generation penalty. Cannot socket Spells which create Minions.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Minion] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, castTime = 0, qualityStats = { - { "energy_generated_+%", 0.75 }, + { "energy_generated_+%", 1 }, }, levels = { [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, @@ -2603,13 +2689,13 @@ skills["MetaCastOnIgnitePlayer"] = { }, statSets = { [1] = { - label = "Cast on Ignite", + label = "Cast on Minion Death", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, constantStats = { - { "cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite", 200 }, + { "cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%", 2 }, }, stats = { "energy_generated_+%", @@ -2662,13 +2748,13 @@ skills["MetaCastOnIgnitePlayer"] = { }, } } -skills["SupportMetaCastOnIgnitePlayer"] = { - name = "SupportMetaCastOnIgnitePlayer", +skills["SupportMetaCastOnMinionDeathPlayer"] = { + name = "SupportMetaCastOnMinionDeathPlayer", hidden = true, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.SupportedByHourglass, }, + excludeSkillTypes = { SkillType.SupportedByHourglass, SkillType.CreatesMinion, }, isTrigger = true, levels = { [1] = { levelRequirement = 0, }, @@ -2714,7 +2800,7 @@ skills["SupportMetaCastOnIgnitePlayer"] = { }, statSets = { [1] = { - label = "SupportMetaCastOnIgnitePlayer", + label = "SupportMetaCastOnMinionDeathPlayer", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -2725,7 +2811,6 @@ skills["SupportMetaCastOnIgnitePlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -2772,406 +2857,462 @@ skills["SupportMetaCastOnIgnitePlayer"] = { }, } } -skills["MetaCastOnMinionDeathPlayer"] = { - name = "Cast on Minion Death", - baseTypeName = "Cast on Minion Death", +skills["WeaponGrantedChaosboltPlayer"] = { + name = "Chaos Bolt", + baseTypeName = "Chaos Bolt", + fromItem = true, color = 3, - description = "While active, gains Energy when one of your Persistent Minions is Killed, and triggers socketed Spells upon reaching maximum Energy. Very underlevelled Minions will incur an Energy generation penalty. Cannot socket Spells which create Minions.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Minion] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, - castTime = 0, + description = "Fire a burst of Chaos energy at the target.", + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.75, qualityStats = { - { "energy_generated_+%", 1 }, + { "base_projectile_speed_+%", 2 }, }, levels = { - [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, - [2] = { spiritReservationFlat = 60, levelRequirement = 3, }, - [3] = { spiritReservationFlat = 60, levelRequirement = 6, }, - [4] = { spiritReservationFlat = 60, levelRequirement = 10, }, - [5] = { spiritReservationFlat = 60, levelRequirement = 14, }, - [6] = { spiritReservationFlat = 60, levelRequirement = 18, }, - [7] = { spiritReservationFlat = 60, levelRequirement = 22, }, - [8] = { spiritReservationFlat = 60, levelRequirement = 26, }, - [9] = { spiritReservationFlat = 60, levelRequirement = 31, }, - [10] = { spiritReservationFlat = 60, levelRequirement = 36, }, - [11] = { spiritReservationFlat = 60, levelRequirement = 41, }, - [12] = { spiritReservationFlat = 60, levelRequirement = 46, }, - [13] = { spiritReservationFlat = 60, levelRequirement = 52, }, - [14] = { spiritReservationFlat = 60, levelRequirement = 58, }, - [15] = { spiritReservationFlat = 60, levelRequirement = 64, }, - [16] = { spiritReservationFlat = 60, levelRequirement = 66, }, - [17] = { spiritReservationFlat = 60, levelRequirement = 72, }, - [18] = { spiritReservationFlat = 60, levelRequirement = 78, }, - [19] = { spiritReservationFlat = 60, levelRequirement = 84, }, - [20] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [21] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [22] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [23] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [24] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [25] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [26] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [27] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [28] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [29] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [30] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [31] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [32] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [33] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [34] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [35] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [36] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [37] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [38] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [39] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [40] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Cast on Minion Death", - incrementalEffectiveness = 0.054999999701977, + label = "Chaos Bolt", + baseEffectiveness = 2.460000038147, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "skill_stat_descriptions", baseFlags = { + spell = true, + projectile = true, }, constantStats = { - { "cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%", 2 }, + { "monster_projectile_variation", 1109 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_withered_base_duration_ms", 4000 }, }, stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "apply_x_wither_on_hit", + "base_is_projectile", + "projectile_uses_contact_position", + "check_for_targets_between_initiator_and_projectile_source", + "maintain_projectile_direction_when_using_contact_position", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + notMinionStat = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 5, 9, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 13, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 19, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, 25, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 18, 32, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 22, 41, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 27, 51, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 33, 62, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 41, 75, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 48, 91, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 58, 108, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 68, 125, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 78, 145, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 90, 167, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 103, 192, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 118, 220, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 135, 251, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 154, 286, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 176, 326, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 200, 371, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 227, 422, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 259, 480, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 294, 545, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 334, 619, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 379, 703, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 430, 799, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 488, 907, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 555, 1030, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 630, 1171, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 717, 1331, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 815, 1514, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 928, 1723, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1056, 1961, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1203, 2235, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1372, 2549, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1566, 2908, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1789, 3322, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2045, 3798, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2340, 4346, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2680, 4978, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["SupportMetaCastOnMinionDeathPlayer"] = { - name = "SupportMetaCastOnMinionDeathPlayer", - hidden = true, - support = true, - requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.SupportedByHourglass, SkillType.CreatesMinion, }, - isTrigger = true, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, +skills["ChargeRegulationPlayer"] = { + name = "Charge Infusion", + baseTypeName = "Charge Infusion", + color = 3, + description = "While active, you gain powerful Buffs based on your active Charges. However, maintaining the Buff Consumes Charges every few seconds.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, }, + castTime = 1, + qualityStats = { + { "consume_frenzy_power_and_endurance_charge_every_x_ms", 120 }, }, - statSets = { - [1] = { - label = "SupportMetaCastOnMinionDeathPlayer", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - baseFlags = { - }, - constantStats = { - { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, - }, - stats = { - "triggered_by_generic_ongoing_trigger", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", - }, - levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 30, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 30, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 30, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 30, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 30, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 30, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 30, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 30, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 30, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 30, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 30, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 30, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 30, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 30, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 30, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Charge Infusion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "charge_mastery", + statMap = { + ["charge_mastery_skill_speed_+%_final_with_frenzy_charges"] = { + mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + }, + ["charge_mastery_crit_chance_+%_final_with_power_charges"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + }, + ["charge_mastery_defences_+%_final_with_endurance_charges"] = { + mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + }, + }, + baseFlags = { + }, + stats = { + "charge_mastery_skill_speed_+%_final_with_frenzy_charges", + "charge_mastery_crit_chance_+%_final_with_power_charges", + "charge_mastery_defences_+%_final_with_endurance_charges", + "consume_frenzy_power_and_endurance_charge_every_x_ms", + "base_deal_no_damage", + }, + levels = { + [1] = { 10, 20, 15, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 11, 20, 15, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 11, 20, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 21, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 11, 21, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, 21, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 12, 22, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 12, 22, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 12, 22, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 13, 23, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 13, 23, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 13, 23, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 13, 24, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 14, 24, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 14, 24, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 14, 25, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 14, 25, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 15, 25, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 15, 26, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 15, 26, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 15, 26, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 16, 27, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 16, 27, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 16, 27, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 16, 28, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 17, 28, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 17, 28, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 17, 29, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 17, 29, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 18, 29, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 18, 30, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 18, 30, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 18, 30, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 19, 31, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 19, 31, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 19, 31, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 19, 32, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 20, 32, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 20, 32, 25, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 20, 33, 25, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["MetaCastOnShockPlayer"] = { - name = "Cast on Shock", - baseTypeName = "Cast on Shock", +skills["ChargedStaffPlayer"] = { + name = "Charged Staff", + baseTypeName = "Charged Staff", color = 3, - description = "While active, gains Energy when you Shock enemies and triggers socketed spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, - castTime = 0, + description = "Consume all Power Charges to charge your Quarterstaff with electricity, adding Lightning damage and a Lightning shockwave to your Quarterstaff Attacks. Reusing this skill while the Buff is active adds to the Buff's duration and damage.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Staff"] = true, + }, + castTime = 0.75, qualityStats = { - { "energy_generated_+%", 0.75 }, + { "skill_effect_duration_+%", 1 }, }, levels = { - [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, - [2] = { spiritReservationFlat = 60, levelRequirement = 3, }, - [3] = { spiritReservationFlat = 60, levelRequirement = 6, }, - [4] = { spiritReservationFlat = 60, levelRequirement = 10, }, - [5] = { spiritReservationFlat = 60, levelRequirement = 14, }, - [6] = { spiritReservationFlat = 60, levelRequirement = 18, }, - [7] = { spiritReservationFlat = 60, levelRequirement = 22, }, - [8] = { spiritReservationFlat = 60, levelRequirement = 26, }, - [9] = { spiritReservationFlat = 60, levelRequirement = 31, }, - [10] = { spiritReservationFlat = 60, levelRequirement = 36, }, - [11] = { spiritReservationFlat = 60, levelRequirement = 41, }, - [12] = { spiritReservationFlat = 60, levelRequirement = 46, }, - [13] = { spiritReservationFlat = 60, levelRequirement = 52, }, - [14] = { spiritReservationFlat = 60, levelRequirement = 58, }, - [15] = { spiritReservationFlat = 60, levelRequirement = 64, }, - [16] = { spiritReservationFlat = 60, levelRequirement = 66, }, - [17] = { spiritReservationFlat = 60, levelRequirement = 72, }, - [18] = { spiritReservationFlat = 60, levelRequirement = 78, }, - [19] = { spiritReservationFlat = 60, levelRequirement = 84, }, - [20] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [21] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [22] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [23] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [24] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [25] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [26] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [27] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [28] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [29] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [30] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [31] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [32] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [33] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [34] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [35] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [36] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [37] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [38] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [39] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [40] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 15, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 17, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 21, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 23, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 25, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 27, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 30, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 32, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 35, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 37, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 40, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 43, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 46, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 49, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 52, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 55, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 58, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 61, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 65, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 68, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 72, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 76, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 80, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 84, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 96, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 101, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 105, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 115, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 120, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 125, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 131, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 136, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 142, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 147, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 153, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 159, }, }, }, statSets = { [1] = { - label = "Cast on Shock", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + label = "Buff", + baseEffectiveness = 0.23299999535084, + incrementalEffectiveness = 0.072530001401901, + damageIncrementalEffectiveness = 0.0049000000581145, + statDescriptionScope = "charged_staff", + statMap = { + ["charged_staff_attack_minimum_added_lightning_damage_per_stack"] = { + mod("LightningMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charged Staff", effectCond = "UsePowerCharges" }), + }, + ["charged_staff_attack_maximum_added_lightning_damage_per_stack"] = { + mod("LightningMax", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charged Staff", effectCond = "UsePowerCharges" }), + }, + ["charged_staff_buff_duration_per_stack_ms"] = { + mod("ChargedStaffBuffDuration", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charged Staff", effectCond = "UsePowerCharges" }), + }, + }, baseFlags = { + attack = true, + area = true, + duration = true, }, constantStats = { - { "cast_on_shock_gain_X_centienergy_per_monster_power_on_shock", 100 }, + { "charged_staff_buff_duration_per_stack_ms", 6000 }, + { "active_skill_requires_X_power_charges", 1 }, }, stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", + "charged_staff_attack_minimum_added_lightning_damage_per_stack", + "charged_staff_attack_maximum_added_lightning_damage_per_stack", }, levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 1, 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 1, 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 1, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 1, 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 1, 13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 1, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1, 16, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1, 18, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1, 20, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1, 22, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1, 24, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1, 27, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 2, 30, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 2, 33, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 2, 36, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 2, 40, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2, 44, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 3, 48, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 3, 59, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 3, 65, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 4, 71, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 5, 86, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 5, 95, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 5, 104, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 6, 115, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 7, 126, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 7, 139, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8, 153, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["SupportMetaCastOnShockPlayer"] = { - name = "SupportMetaCastOnShockPlayer", +skills["ChargedStaffShockwavePlayer"] = { + name = "Charged Shockwave", hidden = true, - support = true, - requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.SupportedByHourglass, }, - isTrigger = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, }, + weaponTypes = { + ["Staff"] = true, + }, + castTime = 0.75, + qualityStats = { + }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { baseMultiplier = 0.25, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.27, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.3, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.33, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.35, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.38, levelRequirement = 0, }, + [7] = { baseMultiplier = 0.4, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.42, levelRequirement = 0, }, + [9] = { baseMultiplier = 0.44, levelRequirement = 0, }, + [10] = { baseMultiplier = 0.46, levelRequirement = 0, }, + [11] = { baseMultiplier = 0.48, levelRequirement = 0, }, + [12] = { baseMultiplier = 0.5, levelRequirement = 0, }, + [13] = { baseMultiplier = 0.52, levelRequirement = 0, }, + [14] = { baseMultiplier = 0.54, levelRequirement = 0, }, + [15] = { baseMultiplier = 0.56, levelRequirement = 0, }, + [16] = { baseMultiplier = 0.58, levelRequirement = 0, }, + [17] = { baseMultiplier = 0.6, levelRequirement = 0, }, + [18] = { baseMultiplier = 0.62, levelRequirement = 0, }, + [19] = { baseMultiplier = 0.64, levelRequirement = 0, }, + [20] = { baseMultiplier = 0.66, levelRequirement = 0, }, + [21] = { baseMultiplier = 0.68, levelRequirement = 0, }, + [22] = { baseMultiplier = 0.7, levelRequirement = 0, }, + [23] = { baseMultiplier = 0.73, levelRequirement = 0, }, + [24] = { baseMultiplier = 0.75, levelRequirement = 0, }, + [25] = { baseMultiplier = 0.78, levelRequirement = 0, }, + [26] = { baseMultiplier = 0.8, levelRequirement = 0, }, + [27] = { baseMultiplier = 0.83, levelRequirement = 0, }, + [28] = { baseMultiplier = 0.86, levelRequirement = 0, }, + [29] = { baseMultiplier = 0.88, levelRequirement = 0, }, + [30] = { baseMultiplier = 0.91, levelRequirement = 0, }, + [31] = { baseMultiplier = 0.94, levelRequirement = 0, }, + [32] = { baseMultiplier = 0.98, levelRequirement = 0, }, + [33] = { baseMultiplier = 1.01, levelRequirement = 0, }, + [34] = { baseMultiplier = 1.04, levelRequirement = 0, }, + [35] = { baseMultiplier = 1.08, levelRequirement = 0, }, + [36] = { baseMultiplier = 1.11, levelRequirement = 0, }, + [37] = { baseMultiplier = 1.15, levelRequirement = 0, }, + [38] = { baseMultiplier = 1.19, levelRequirement = 0, }, + [39] = { baseMultiplier = 1.23, levelRequirement = 0, }, + [40] = { baseMultiplier = 1.27, levelRequirement = 0, }, }, statSets = { [1] = { - label = "SupportMetaCastOnShockPlayer", + label = "Shockwave", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", + statDescriptionScope = "charged_staff_shockwave", baseFlags = { + attack = true, + area = true, }, constantStats = { - { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + { "active_skill_base_area_of_effect_radius", 50 }, + { "charged_staff_cone_angle", 45 }, + { "charged_staff_bonus_width", 15 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, }, stats = { - "triggered_by_generic_ongoing_trigger", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", + "triggered_by_charged_staff", + "is_area_damage", + "display_statset_hide_usage_stats", }, levels = { [1] = { actorLevel = 1, }, @@ -3218,144 +3359,469 @@ skills["SupportMetaCastOnShockPlayer"] = { }, } } -skills["WeaponGrantedChaosboltPlayer"] = { - name = "Chaos Bolt", - baseTypeName = "Chaos Bolt", - fromItem = true, +skills["CometPlayer"] = { + name = "Comet", + baseTypeName = "Comet", color = 3, - description = "Fire a burst of Chaos energy at the target.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 0.75, + description = "Call down a mass of ice from the sky, dealing high damage at the targeted location. Targeting close to you will cause you to jump back as you cast. Consumes a Fire Infusion if possible to cause a devastating blast of ice and fire.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 1, qualityStats = { - { "base_projectile_speed_+%", 2 }, + { "skill_echo_chance_%", 0.5 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 17, }, }, + [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 23, }, }, + [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 27, }, }, + [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 31, }, }, + [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 36, }, }, + [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 41, }, }, + [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 46, }, }, + [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 52, }, }, + [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 59, }, }, + [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 67, }, }, + [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 75, }, }, + [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 84, }, }, + [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 93, }, }, + [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 104, }, }, + [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 115, }, }, + [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 128, }, }, + [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 142, }, }, + [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 157, }, }, + [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 173, }, }, + [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 191, }, }, + [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 211, }, }, + [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 232, }, }, + [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 255, }, }, + [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 280, }, }, + [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 307, }, }, + [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 337, }, }, + [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 369, }, }, + [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 404, }, }, + [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 442, }, }, + [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 483, }, }, + [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 528, }, }, + [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 576, }, }, + [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 629, }, }, + [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 686, }, }, + [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 747, }, }, + [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 814, }, }, + [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 886, }, }, + [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 964, }, }, + [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1049, }, }, }, statSets = { [1] = { - label = "Chaos Bolt", - baseEffectiveness = 2.2000000476837, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "skill_stat_descriptions", + label = "Comet", + baseEffectiveness = 7.8000001907349, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "comet", baseFlags = { + area = true, spell = true, - projectile = true, }, constantStats = { - { "monster_projectile_variation", 1109 }, + { "range_backflip_conditional_distance", 30 }, + { "total_cast_time_+_ms", 1000 }, + { "comet_explosion_delay_ms", 470 }, + { "active_skill_base_area_of_effect_radius", 28 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "active_skill_consumes_a_fire_infusion", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 74, 111, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 92, 138, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 135, 202, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 161, 241, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 190, 285, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 261, 391, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 304, 456, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 353, 529, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 472, 708, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 544, 816, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 627, 940, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 721, 1081, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 829, 1243, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 952, 1428, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1094, 1641, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1256, 1884, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1443, 2164, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1657, 2486, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1904, 2856, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2189, 3284, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2518, 3777, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 2898, 4346, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 3337, 5006, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 3847, 5770, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 4438, 6656, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 5124, 7686, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 5923, 8885, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 6854, 10281, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 7939, 11909, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 9208, 13811, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 10691, 16037, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 12430, 18645, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 14470, 21705, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire-Infused", + baseEffectiveness = 5.1999998092651, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "comet", + baseFlags = { + area = true, + spell = true, + }, + constantStats = { + { "range_backflip_conditional_distance", 30 }, + { "total_cast_time_+_ms", 1000 }, + { "comet_explosion_delay_ms", 470 }, + { "active_skill_base_area_of_effect_radius", 34 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "active_skill_consumes_a_fire_infusion", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 0, 0, 16, 24, 16, 24, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 22, 33, 22, 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 30, 45, 30, 45, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 39, 59, 39, 59, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 49, 74, 49, 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 61, 92, 61, 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 75, 112, 75, 112, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 90, 135, 90, 135, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 107, 161, 107, 161, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 127, 190, 127, 190, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 149, 223, 149, 223, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 174, 261, 174, 261, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 203, 304, 203, 304, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 235, 353, 235, 353, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 272, 408, 272, 408, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 315, 472, 315, 472, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 363, 544, 363, 544, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 418, 627, 418, 627, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 481, 721, 481, 721, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 553, 829, 553, 829, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 635, 952, 635, 952, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 729, 1094, 729, 1094, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 837, 1256, 837, 1256, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 962, 1443, 962, 1443, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 1105, 1657, 1105, 1657, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 1270, 1904, 1270, 1904, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 1459, 2189, 1459, 2189, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 1679, 2518, 1679, 2518, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 1932, 2898, 1932, 2898, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 2225, 3337, 2225, 3337, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 2564, 3847, 2564, 3847, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 2958, 4438, 2958, 4438, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 3416, 5124, 3416, 5124, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 3949, 5923, 3949, 5923, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 4569, 6854, 4569, 6854, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 5293, 7939, 5293, 7939, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 6138, 9208, 6138, 9208, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 7128, 10691, 7128, 10691, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 8287, 12430, 8287, 12430, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 9646, 14470, 9646, 14470, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ConductivityPlayer"] = { + name = "Conductivity", + baseTypeName = "Conductivity", + color = 3, + description = "Curse all targets in an area after a short delay, lowering their Lightning Resistance.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.7, + qualityStats = { + { "curse_effect_+%", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, + }, + statSets = { + [1] = { + label = "Conductivity", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "lightning_weakness", + statMap = { + ["base_skill_buff_lightning_damage_resistance_%_to_apply"] = { + mod("LightningResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), + }, + }, + baseFlags = { + spell = true, + curse = true, + area = true, + duration = true, + }, + constantStats = { + { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "spell_minimum_base_chaos_damage", - "spell_maximum_base_chaos_damage", - "base_is_projectile", - "projectile_uses_contact_position", - "check_for_targets_between_initiator_and_projectile_source", - "maintain_projectile_direction_when_using_contact_position", + "base_skill_effect_duration", + "active_skill_base_area_of_effect_radius", + "base_skill_buff_lightning_damage_resistance_%_to_apply", + "base_deal_no_damage", "can_perform_skill_while_moving", - "should_use_additive_aiming_animation", }, notMinionStat = { - "spell_minimum_base_chaos_damage", - "spell_maximum_base_chaos_damage", + "base_skill_effect_duration", + }, + levels = { + [1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ContagionPlayer"] = { + name = "Contagion", + baseTypeName = "Contagion", + color = 3, + description = "Afflict a single enemy with a Debuff that deals Chaos damage over time. If the enemy dies while affected by Contagion, it and all other Chaos damage over time Debuffs spread to nearby enemies and refresh their durations. Reanimating or detonating a corpse affected by Contagion will cause the Minion or explosion to\nspread Contagion on hit.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 1, + qualityStats = { + { "contagion_number_of_additional_targets", 0.1 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 9, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 11, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 13, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 25, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 28, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 36, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 40, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 45, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 50, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 55, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 61, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 68, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 83, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 101, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 135, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 148, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 162, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 195, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 213, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 233, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 254, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 278, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 303, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 330, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 360, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 392, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 427, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 464, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 505, }, }, + }, + statSets = { + [1] = { + label = "Contagion", + baseEffectiveness = 1.7999999523163, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "contagion", + baseFlags = { + area = true, + duration = true, + spell = true, + }, + constantStats = { + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 17 }, + { "contagion_spread_magnitude_+%_final", 100 }, + { "contagion_maximum_spread_magnitude_+%_final", 300 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "pvp_skill_dot_attack_time_override_ms", 10000 }, + }, + stats = { + "base_chaos_damage_to_deal_per_minute", + "spell_damage_modifiers_apply_to_skill_dot", + "can_perform_skill_while_moving", + "quality_display_contagion_is_gem", }, levels = { - [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 15, 27, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 19, 34, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 23, 42, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 28, 51, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 33, 61, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 39, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 45, 84, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 52, 97, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 60, 112, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 69, 129, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 79, 147, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 90, 168, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 103, 191, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 116, 216, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 132, 244, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 149, 276, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 168, 311, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 189, 350, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 212, 394, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 239, 443, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 268, 498, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 301, 559, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 338, 627, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 379, 704, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 425, 790, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 477, 886, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 535, 994, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 601, 1116, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 675, 1253, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 758, 1407, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 851, 1580, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 956, 1776, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1075, 1997, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1210, 2247, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1362, 2529, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1534, 2848, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1728, 3210, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 117, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 169, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 245, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 332, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 431, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 544, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 674, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 822, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 991, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 1184, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 1405, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 1658, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 1949, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 2282, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 2664, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 3103, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 3608, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 4190, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4861, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 5635, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 6529, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 7564, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 8763, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 10154, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 11769, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 13647, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 15835, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 18386, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 21366, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 24850, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 28932, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 33719, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 39344, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 45961, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 53760, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 62964, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 73844, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 86728, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 102007, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 120158, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ChargeInfusionPlayer"] = { - name = "Charge Infusion", - baseTypeName = "Charge Infusion", +skills["ConvalescencePlayer"] = { + name = "Convalescence", + baseTypeName = "Convalescence", color = 3, - description = "While active, you gain powerful Buffs based on your active Charges. However, maintaining the Buff Consumes Charges every few seconds.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, }, - castTime = 1, + description = "While active, grants a skill that you can use to instantly begin Recharging Energy Shield and gain a Buff for a duration that prevents that Recharge being interrupted. The Buff is removed at maximum Energy Shield and the skill cannot be used while Energy Shield is full.", + skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.ReserveInAllSets] = true, }, + castTime = 0, qualityStats = { - { "consume_frenzy_power_and_endurance_charge_every_x_ms", 40 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -3401,276 +3867,245 @@ skills["ChargeInfusionPlayer"] = { }, statSets = { [1] = { - label = "Charge Infusion", + label = "Convalescence", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "charge_mastery", - statMap = { - ["charge_mastery_skill_speed_+%_final_with_frenzy_charges"] = { - mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), - }, - ["charge_mastery_crit_chance_+%_final_with_power_charges"] = { - mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), - }, - ["charge_mastery_defences_+%_final_with_endurance_charges"] = { - mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), - }, - }, + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, stats = { - "charge_mastery_skill_speed_+%_final_with_frenzy_charges", - "charge_mastery_crit_chance_+%_final_with_power_charges", - "charge_mastery_defences_+%_final_with_endurance_charges", - "consume_frenzy_power_and_endurance_charge_every_x_ms", "base_deal_no_damage", }, levels = { - [1] = { 5, 10, 9, 3000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 5, 10, 9, 3100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 5, 10, 9, 3200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 5, 11, 10, 3300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6, 11, 10, 3400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6, 11, 10, 3500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6, 12, 10, 3600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6, 12, 11, 3700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 7, 12, 11, 3800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 7, 13, 11, 3900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 7, 13, 11, 4000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 8, 14, 12, 4100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 8, 14, 12, 4200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 8, 15, 12, 4300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 9, 15, 13, 4400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 9, 16, 13, 4500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 10, 17, 14, 4600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 11, 18, 15, 4700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 11, 19, 16, 4800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 12, 20, 17, 4900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 13, 21, 18, 5000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 14, 22, 19, 5100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 15, 23, 20, 5200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 15, 23, 20, 5300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 16, 24, 21, 5400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 16, 24, 21, 5500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 16, 24, 21, 5600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 17, 25, 22, 5700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 17, 25, 22, 5800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 17, 25, 22, 5900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 18, 25, 22, 6000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 18, 26, 23, 6100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 18, 26, 23, 6200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 19, 26, 23, 6300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 19, 26, 23, 6400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 19, 26, 24, 6500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 20, 27, 24, 6600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 20, 27, 24, 6700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 20, 27, 24, 6800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 21, 27, 25, 6900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["ChargedStaffPlayer"] = { - name = "Charged Staff", - baseTypeName = "Charged Staff", - color = 3, - description = "Consume all Power Charges to infuse your Quarterstaff with electricity, adding Lightning damage and a Lightning shockwave to your Quarterstaff Attacks. Reusing this skill while the Buff is active adds to the Buff's duration and damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, }, - weaponTypes = { - ["Staff"] = true, - }, - castTime = 0.75, +skills["ConvalescenceActivePlayer"] = { + name = "Convalescence", + hidden = true, + skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.Spell] = true, }, + castTime = 0.5, qualityStats = { - { "skill_effect_duration_+%", 1 }, + { "base_skill_effect_duration", 25 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 15, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 20, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 22, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 23, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 25, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 27, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 29, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 31, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 33, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 35, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 38, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 41, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 44, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 47, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 50, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 54, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 58, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 62, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 67, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 72, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 77, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 82, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 88, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 117, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 134, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 166, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 191, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 205, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 235, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [2] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [3] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [4] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [5] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [6] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [7] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [8] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [9] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [10] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [11] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [12] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [13] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [14] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [15] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [16] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [17] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [18] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [19] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [20] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [21] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [22] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [23] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [24] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [25] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [26] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [27] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [28] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [29] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [30] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [31] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [32] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [33] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [34] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [35] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [36] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [37] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [38] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [39] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, + [40] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, }, }, statSets = { [1] = { - label = "Buff", - baseEffectiveness = 0.23299999535084, - incrementalEffectiveness = 0.072530001401901, - damageIncrementalEffectiveness = 0.0049000000581145, - statDescriptionScope = "charged_staff", - statMap = { - ["charged_staff_attack_minimum_added_lightning_damage_per_stack"] = { - mod("LightningMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charged Staff", effectCond = "UsePowerCharges" }), - }, - ["charged_staff_attack_maximum_added_lightning_damage_per_stack"] = { - mod("LightningMax", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charged Staff", effectCond = "UsePowerCharges" }), - }, - ["charged_staff_buff_duration_per_stack_ms"] = { - mod("ChargedStaffBuffDuration", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charged Staff", effectCond = "UsePowerCharges" }), - }, - }, + label = "Convalescence", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "convalescence_active", baseFlags = { - attack = true, - area = true, duration = true, }, constantStats = { - { "charged_staff_buff_duration_per_stack_ms", 6000 }, - { "active_skill_requires_X_power_charges", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "skill_specific_stat_description_mode", 30 }, }, stats = { - "charged_staff_attack_minimum_added_lightning_damage_per_stack", - "charged_staff_attack_maximum_added_lightning_damage_per_stack", + "base_skill_effect_duration", + "display_this_skill_cooldown_does_not_recover_during_buff", + "base_deal_no_damage", + "can_perform_skill_while_moving", + "quality_display_base_skill_effect_duration_is_gem", + }, + notMinionStat = { + "base_skill_effect_duration", }, levels = { - [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 1, 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 1, 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 1, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 1, 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 1, 13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 1, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 1, 16, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 1, 18, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 1, 20, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 1, 22, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 1, 24, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 1, 27, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 2, 30, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 2, 33, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 2, 36, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 2, 40, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 2, 44, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 3, 48, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 3, 59, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 3, 65, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 4, 71, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 5, 86, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 5, 95, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 5, 104, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 6, 115, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 7, 126, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 7, 139, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8, 153, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 3000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 3050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3150, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 3200, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 3250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 3300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 3350, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 3400, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 3450, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 3500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 3550, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 3600, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 3650, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 3700, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 3750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 3800, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 3850, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 3900, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 3950, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 4000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 4050, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 4100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 4150, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 4200, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 4250, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 4300, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 4350, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 4400, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 4450, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 4475, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 4500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 4525, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 4550, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 4575, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 4600, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 4625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 4650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 4675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 4700, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ChargedStaffShockwavePlayer"] = { - name = "Charged Shockwave", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, }, +skills["CracklingPalmPlayer"] = { + name = "Crackling Palm", + baseTypeName = "Crackling Palm", + color = 3, + description = "When you Hit with Unarmed Melee Attacks, calls down lightning bolts which deal Unarmed Attack damage to all surrounding enemies.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Attack] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.NoAttackOrCastTime] = true, }, weaponTypes = { - ["Staff"] = true, + ["None"] = true, }, - castTime = 0.75, + castTime = 0, qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.1 }, }, levels = { - [1] = { baseMultiplier = 0.25, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.27, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.3, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.33, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.35, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.38, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.44, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.46, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.52, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.54, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.56, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.6, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.62, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.64, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.68, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.7, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.73, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.75, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.78, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.83, levelRequirement = 0, }, - [28] = { baseMultiplier = 0.86, levelRequirement = 0, }, - [29] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [30] = { baseMultiplier = 0.91, levelRequirement = 0, }, - [31] = { baseMultiplier = 0.94, levelRequirement = 0, }, - [32] = { baseMultiplier = 0.98, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.01, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.04, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.08, levelRequirement = 0, }, - [36] = { baseMultiplier = 1.11, levelRequirement = 0, }, - [37] = { baseMultiplier = 1.15, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.19, levelRequirement = 0, }, - [39] = { baseMultiplier = 1.23, levelRequirement = 0, }, - [40] = { baseMultiplier = 1.27, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Shockwave", + label = "Crackling Palm", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "charged_staff_shockwave", + statDescriptionScope = "thunderfist_statset_0", baseFlags = { - attack = true, - area = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 50 }, - { "charged_staff_cone_angle", 45 }, - { "charged_staff_bonus_width", 15 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, + { "skill_desired_amount_override", 1 }, }, stats = { - "triggered_by_charged_staff", - "is_area_damage", - "display_statset_hide_usage_stats", + "base_deal_no_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -3715,572 +4150,250 @@ skills["ChargedStaffShockwavePlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - } -} -skills["ColdSnapPlayer"] = { - name = "Cold Snap", - baseTypeName = "Cold Snap", - color = 3, - description = "Shatter the frost on a Frozen enemy, Consuming the Freeze to deal a large amount of Cold Damage to enemies caught in the blast. Can also be cast on a Frostbolt to cause it to explode immediately. Any Frozen enemies hit by the Frostbolt's explosion will be dealt Cold Snap's damage and have their Freeze Consumed.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, }, - castTime = 0.5, - qualityStats = { - { "active_skill_cast_speed_+%_final", 1 }, - }, - levels = { - [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 18, }, }, - [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 20, }, }, - [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 23, }, }, - [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 26, }, }, - [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 29, }, }, - [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 33, }, }, - [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 37, }, }, - [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 42, }, }, - [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 48, }, }, - [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 54, }, }, - [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 62, }, }, - [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 70, }, }, - [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 79, }, }, - [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 90, }, }, - [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 101, }, }, - [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 115, }, }, - [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 130, }, }, - [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 147, }, }, - [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 167, }, }, - [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 189, }, }, - [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 214, }, }, - [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 242, }, }, - [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 274, }, }, - [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 310, }, }, - [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 351, }, }, - [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 397, }, }, - [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 450, }, }, - [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 509, }, }, - [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 576, }, }, - [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 652, }, }, - [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 738, }, }, - [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 835, }, }, - [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 945, }, }, - }, - statSets = { - [1] = { - label = "Cold Snap", - baseEffectiveness = 7.1999998092651, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0074999998323619, - statDescriptionScope = "shatter", - baseFlags = { - area = true, - spell = true, - }, - constantStats = { - { "active_skill_base_area_of_effect_radius", 16 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - }, - stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "can_perform_skill_while_moving", - "base_consume_enemy_freeze_on_hit", - "is_area_damage", - "never_freeze", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - }, - levels = { - [1] = { 22, 34, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 86, 129, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 104, 157, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 125, 187, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 148, 221, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 173, 260, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 202, 302, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 233, 350, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 269, 403, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 353, 530, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 403, 605, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 459, 688, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 521, 782, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 591, 887, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 670, 1005, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 758, 1138, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 969, 1454, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 1095, 1643, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 1237, 1855, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 1396, 2095, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 1577, 2365, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1780, 2670, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 2010, 3015, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 2271, 3406, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 2566, 3848, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 2900, 4350, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 3279, 4919, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 3710, 5566, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 4200, 6301, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 4758, 7138, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 5394, 8091, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 6119, 9179, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 6947, 10421, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 7894, 11840, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["CometPlayer"] = { - name = "Comet", - baseTypeName = "Comet", - color = 3, - description = "Call down a mass of ice from the sky, dealing high damage at the targeted location. Targeting close to you will cause you to jump back as you cast.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, }, - castTime = 1, - qualityStats = { - { "additional_base_critical_strike_chance", 10 }, - }, - levels = { - [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 18, }, }, - [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 21, }, }, - [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 24, }, }, - [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 27, }, }, - [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 31, }, }, - [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 35, }, }, - [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 39, }, }, - [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 44, }, }, - [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 50, }, }, - [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 57, }, }, - [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 65, }, }, - [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 73, }, }, - [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 83, }, }, - [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 94, }, }, - [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 106, }, }, - [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 120, }, }, - [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 136, }, }, - [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 154, }, }, - [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 175, }, }, - [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 198, }, }, - [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 224, }, }, - [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 253, }, }, - [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 287, }, }, - [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 325, }, }, - [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 368, }, }, - [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 416, }, }, - [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 471, }, }, - [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 533, }, }, - [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 603, }, }, - [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 683, }, }, - [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 773, }, }, - [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 875, }, }, - [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 990, }, }, - [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1120, }, }, - [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1268, }, }, - [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1435, }, }, - [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1624, }, }, - [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1838, }, }, - [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 2080, }, }, - [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 2354, }, }, - }, - statSets = { - [1] = { - label = "Comet", - baseEffectiveness = 7.1100001335144, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "comet", + [2] = { + label = "Bolt", + baseEffectiveness = 1.8999999761581, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "thunderfist_statset_1", baseFlags = { + attack = true, + unarmed = true, area = true, - spell = true, }, constantStats = { - { "range_backflip_conditional_distance", 30 }, - { "total_cast_time_+_ms", 1000 }, - { "comet_explosion_delay_ms", 470 }, - { "active_skill_base_area_of_effect_radius", 28 }, + { "skill_desired_amount_override", 1 }, + { "active_skill_base_area_of_effect_radius", 14 }, + { "thunderfist_number_of_bolts_delays", 5 }, + { "thunderfist_bolt_delay_ms", 500 }, }, stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "is_area_damage", + "attack_minimum_added_lightning_damage", + "attack_maximum_added_lightning_damage", "base_skill_show_average_damage_instead_of_dps", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - }, - levels = { - [1] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 70, 104, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 86, 129, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 105, 157, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 125, 188, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 175, 263, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 205, 307, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 238, 357, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 275, 413, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 317, 476, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 364, 547, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 478, 716, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 545, 818, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 622, 932, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 805, 1208, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 915, 1373, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 1040, 1560, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 1182, 1772, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 1342, 2013, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 1524, 2287, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 1732, 2597, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1967, 2951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 2236, 3354, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 2542, 3813, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 2892, 4337, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 3291, 4936, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 3748, 5621, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 4271, 6406, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 4870, 7306, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 5559, 8338, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 6350, 9524, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 7260, 10889, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8308, 12462, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 9516, 14274, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["ConductivityPlayer"] = { - name = "Conductivity", - baseTypeName = "Conductivity", - color = 3, - description = "Curse all targets in an area after a short delay, lowering their Lightning Resistance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 0.7, - qualityStats = { - { "curse_effect_+%", 0.5 }, - }, - levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, - }, - statSets = { - [1] = { - label = "Conductivity", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "lightning_weakness", - statMap = { - ["base_skill_buff_lightning_damage_resistance_%_to_apply"] = { - mod("LightningResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, - }, - baseFlags = { - spell = true, - curse = true, - area = true, - duration = true, - }, - constantStats = { - { "curse_delay_duration_ms", 1500 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - }, - stats = { - "base_skill_effect_duration", - "active_skill_base_area_of_effect_radius", - "base_skill_buff_lightning_damage_resistance_%_to_apply", - "base_deal_no_damage", - "can_perform_skill_while_moving", - }, - notMinionStat = { - "base_skill_effect_duration", + "attack_is_not_melee_override", + "is_area_damage", }, levels = { - [1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 32, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 33, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 35, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 36, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 37, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 38, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 41, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 41, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 42, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 44, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, 14, baseMultiplier = 0.25, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1, 23, baseMultiplier = 0.27, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 36, baseMultiplier = 0.3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 50, baseMultiplier = 0.33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 3, 64, baseMultiplier = 0.36, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, 79, baseMultiplier = 0.38, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 5, 96, baseMultiplier = 0.41, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6, 113, baseMultiplier = 0.43, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7, 131, baseMultiplier = 0.45, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 8, 149, baseMultiplier = 0.47, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 9, 169, baseMultiplier = 0.49, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 10, 190, baseMultiplier = 0.52, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 11, 211, baseMultiplier = 0.54, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 12, 233, baseMultiplier = 0.56, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 13, 256, baseMultiplier = 0.59, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 15, 280, baseMultiplier = 0.61, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 16, 305, baseMultiplier = 0.64, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 17, 331, baseMultiplier = 0.67, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 19, 358, baseMultiplier = 0.7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 20, 385, baseMultiplier = 0.73, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 22, 413, baseMultiplier = 0.76, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 23, 442, baseMultiplier = 0.79, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 25, 473, baseMultiplier = 0.82, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 26, 503, baseMultiplier = 0.86, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 28, 535, baseMultiplier = 0.89, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 30, 568, baseMultiplier = 0.93, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 32, 601, baseMultiplier = 0.97, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 33, 636, baseMultiplier = 1.01, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 35, 671, baseMultiplier = 1.05, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 37, 707, baseMultiplier = 1.09, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 39, 744, baseMultiplier = 1.14, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 41, 782, baseMultiplier = 1.19, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 43, 821, baseMultiplier = 1.24, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 45, 860, baseMultiplier = 1.29, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 47, 901, baseMultiplier = 1.34, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 50, 942, baseMultiplier = 1.4, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 52, 984, baseMultiplier = 1.46, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 54, 1027, baseMultiplier = 1.52, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 56, 1071, baseMultiplier = 1.59, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 59, 1116, baseMultiplier = 1.65, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ContagionPlayer"] = { - name = "Contagion", - baseTypeName = "Contagion", +skills["MetaCastCurseOnBlockPlayer"] = { + name = "Curse on Block", + baseTypeName = "Curse on Block", color = 3, - description = "Afflict a single enemy with a Debuff that deals Chaos damage over time. If the enemy dies while affected by Contagion, it and all other Chaos damage over time Debuffs spread to nearby enemies and refresh their durations. Reanimating or detonating a corpse affected by Contagion will cause the Minion or explosion to\nspread Contagion on hit.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 1, + description = "While active, gains Energy when you Block and triggers socketed Curses on reaching maximum Energy.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + castTime = 0, qualityStats = { - { "contagion_maximum_spread_magnitude_+%_final", 5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 9, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 10, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 24, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 27, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 31, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 35, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 40, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 45, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 51, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 58, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 65, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 74, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 84, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 108, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 122, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 138, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 156, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 177, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 200, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 227, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 257, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 291, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 329, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 372, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 421, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 477, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 540, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 611, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 692, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 783, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 886, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1003, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1135, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Contagion", - baseEffectiveness = 1.7999999523163, - incrementalEffectiveness = 0.18000000715256, - damageIncrementalEffectiveness = 0.0092000002041459, - statDescriptionScope = "contagion", + label = "Curse on Block", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", baseFlags = { - area = true, - duration = true, - spell = true, }, constantStats = { - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 17 }, - { "contagion_spread_magnitude_+%_final", 100 }, - { "contagion_maximum_spread_magnitude_+%_final", 300 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "pvp_skill_dot_attack_time_override_ms", 10000 }, + { "cast_on_block_gain_X_centienergy_on_block", 2500 }, + { "skill_desired_amount_override", 1 }, }, stats = { - "base_chaos_damage_to_deal_per_minute", - "spell_damage_modifiers_apply_to_skill_dot", - "can_perform_skill_while_moving", - "quality_display_contagion_is_gem", + "energy_generated_+%", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", + "base_deal_no_damage", }, levels = { - [1] = { 117, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 172, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 250, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 340, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 441, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 555, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 684, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 831, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 997, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 1184, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 1397, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 1638, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 1911, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 2220, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 2572, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 2971, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 3425, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 3942, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 4530, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 5201, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 5967, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 6841, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 7841, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 8986, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 10298, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 11803, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 13532, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 15520, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 17808, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 20446, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 23490, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 27007, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 31076, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 35790, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 41257, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 47607, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 54993, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 63593, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 73622, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 85334, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ConvalescencePlayer"] = { - name = "Convalescence", - baseTypeName = "Convalescence", - color = 3, - description = "While active, grants a skill that you can use to instantly begin Recharging Energy Shield and gain a Buff for a duration that prevents that Recharge being interrupted. The Buff is removed at maximum Energy Shield and the skill cannot be used while Energy Shield is full.", - skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, }, - castTime = 0, - qualityStats = { - }, +skills["SupportMetaCastCurseOnBlockPlayer"] = { + name = "SupportMetaCastCurseOnBlockPlayer", + hidden = true, + support = true, + requireSkillTypes = { SkillType.AppliesCurse, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, + excludeSkillTypes = { SkillType.SupportedByHourglass, }, + isTrigger = true, levels = { - [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, - [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, - [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, - [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, - [5] = { spiritReservationFlat = 30, levelRequirement = 14, }, - [6] = { spiritReservationFlat = 30, levelRequirement = 18, }, - [7] = { spiritReservationFlat = 30, levelRequirement = 22, }, - [8] = { spiritReservationFlat = 30, levelRequirement = 26, }, - [9] = { spiritReservationFlat = 30, levelRequirement = 31, }, - [10] = { spiritReservationFlat = 30, levelRequirement = 36, }, - [11] = { spiritReservationFlat = 30, levelRequirement = 41, }, - [12] = { spiritReservationFlat = 30, levelRequirement = 46, }, - [13] = { spiritReservationFlat = 30, levelRequirement = 52, }, - [14] = { spiritReservationFlat = 30, levelRequirement = 58, }, - [15] = { spiritReservationFlat = 30, levelRequirement = 64, }, - [16] = { spiritReservationFlat = 30, levelRequirement = 66, }, - [17] = { spiritReservationFlat = 30, levelRequirement = 72, }, - [18] = { spiritReservationFlat = 30, levelRequirement = 78, }, - [19] = { spiritReservationFlat = 30, levelRequirement = 84, }, - [20] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [21] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [22] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [23] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [24] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [25] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [26] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [27] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [28] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [29] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [30] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [31] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [32] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [33] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [34] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [35] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [36] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [37] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [38] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, - [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Hidden", + label = "SupportMetaCastCurseOnBlockPlayer", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + }, stats = { - "base_deal_no_damage", + "triggered_by_generic_ongoing_trigger", + "generic_ongoing_trigger_triggers_at_maximum_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -4325,71 +4438,6 @@ skills["ConvalescencePlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - [2] = { - label = "Convalescence", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - duration = true, - }, - constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, - }, - stats = { - "base_skill_effect_duration", - "base_deal_no_damage", - "display_this_skill_cooldown_does_not_recover_during_buff", - "can_perform_skill_while_moving", - "quality_display_base_skill_effect_duration_is_gem", - }, - notMinionStat = { - "base_skill_effect_duration", - }, - levels = { - [1] = { 3000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 3100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 3150, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 3200, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 3250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 3300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 3350, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 3400, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 3450, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 3500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 3550, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 3600, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 3650, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 3700, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 3750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 3800, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 3850, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 3900, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 3950, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 4000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 4050, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 4100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 4150, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 4200, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 4250, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 4300, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 4350, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 4400, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 4450, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 4475, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 4500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 4525, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 4550, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 4575, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 4600, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 4625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 4650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 4675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 4700, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, } } skills["DarkEffigyPlayer"] = { @@ -4397,52 +4445,52 @@ skills["DarkEffigyPlayer"] = { baseTypeName = "Dark Effigy", color = 3, description = "Raise a Totem that bombards enemies afflicted by Chaos damage over time Debuffs.", - skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, }, skillTotemId = 24, castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 14, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 16, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 13, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 15, }, }, [3] = { levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 21, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 23, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 26, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 30, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 34, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 39, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 44, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 50, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 56, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 20, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 24, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 27, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 31, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 35, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 40, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 45, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 51, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 57, }, }, [13] = { levelRequirement = 52, cost = { Mana = 64, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 72, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 82, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 92, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 105, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 118, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 134, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 152, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 172, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 194, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 220, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 249, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 282, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 319, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 361, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 409, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 463, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 524, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 593, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 671, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 760, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 860, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 973, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1102, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1247, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1411, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1597, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1807, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 71, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 80, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 89, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 98, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 109, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 120, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 133, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 147, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 162, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 196, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 215, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 236, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 259, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 283, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 310, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 339, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 371, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 405, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 442, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 483, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 526, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 574, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 625, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 680, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 740, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 805, }, }, }, statSets = { [1] = { @@ -4460,7 +4508,7 @@ skills["DarkEffigyPlayer"] = { { "base_totem_range", 120 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_totems_allowed", 1 }, }, stats = { @@ -4470,6 +4518,8 @@ skills["DarkEffigyPlayer"] = { "is_totem", "can_perform_skill_while_moving", "totem_targets_ignoring_action_distance", + "quality_display_base_totem_duration_is_gem", + "is_spell_totem", }, levels = { [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, @@ -4523,7 +4573,7 @@ skills["DarkEffigyProjectilePlayer"] = { skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.UsedByTotem] = true, }, castTime = 1, qualityStats = { - { "withered_on_hit_for_2_seconds_%_chance", 1 }, + { "active_skill_base_secondary_area_of_effect_radius", 0.1 }, }, levels = { [1] = { critChance = 7, levelRequirement = 0, }, @@ -4571,8 +4621,8 @@ skills["DarkEffigyProjectilePlayer"] = { [1] = { label = "Vile Effusion", baseEffectiveness = 0.85000002384186, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "dark_effigy_projectile", baseFlags = { spell = true, @@ -4600,43 +4650,43 @@ skills["DarkEffigyProjectilePlayer"] = { [1] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 3, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, [3] = { 4, 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6, 11, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [4] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, [5] = { 7, 13, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, [6] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 11, 20, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 13, 24, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 15, 28, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [7] = { 10, 19, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 12, 23, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 15, 27, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, [10] = { 17, 32, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 20, 38, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [11] = { 20, 37, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 23, 43, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, [13] = { 27, 50, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 31, 57, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 35, 65, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 40, 74, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 45, 83, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, 94, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 57, 107, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 65, 120, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 73, 135, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 82, 152, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 92, 171, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 104, 192, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 116, 216, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 130, 242, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 146, 272, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 164, 305, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 184, 342, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 207, 384, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 232, 431, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 261, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 293, 544, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 329, 611, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 369, 686, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 415, 772, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 467, 868, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 526, 977, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 593, 1100, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 668, 1240, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [14] = { 31, 58, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 36, 66, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 41, 76, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 53, 99, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 61, 113, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 69, 128, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 79, 146, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 89, 166, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 101, 188, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 115, 214, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 131, 243, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 149, 276, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 169, 313, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 192, 356, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 218, 405, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 248, 460, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 282, 523, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 321, 595, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 365, 678, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 416, 772, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 474, 881, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 541, 1005, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 618, 1148, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 707, 1312, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 809, 1502, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 926, 1720, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -4647,7 +4697,7 @@ skills["CorpseCloudPlayer"] = { fromItem = true, color = 3, description = "Consume a Corpse to create a cloud of flammable Poisonous gas. Any Burning effects or Detonator skills will explode the gas cloud, creating a fiery explosion.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Chaos] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Fire] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Chaos] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.8, qualityStats = { { "base_skill_effect_duration", 50 }, @@ -4699,8 +4749,8 @@ skills["CorpseCloudPlayer"] = { [1] = { label = "Poison Cloud", baseEffectiveness = 3.539999961853, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "corpse_cloud_statset_0", baseFlags = { spell = true, @@ -4714,7 +4764,7 @@ skills["CorpseCloudPlayer"] = { { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 80 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "spread_contagion_base_radius_when_using_corpse", 28 }, { "explosion_delay_ms", 400 }, { "number_of_poison_cloud_allowed", 6 }, @@ -4770,9 +4820,9 @@ skills["CorpseCloudPlayer"] = { }, [2] = { label = "Explosion", - baseEffectiveness = 3.539999961853, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + baseEffectiveness = 3.75, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "corpse_cloud_statset_1", baseFlags = { spell = true, @@ -4783,7 +4833,7 @@ skills["CorpseCloudPlayer"] = { { "base_skill_effect_duration", 4000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "spread_contagion_base_radius_when_using_corpse", 28 }, { "explosion_delay_ms", 400 }, }, @@ -4799,46 +4849,46 @@ skills["CorpseCloudPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 11, 17, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 15, 23, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 21, 31, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 27, 41, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 35, 52, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 43, 64, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 52, 78, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 62, 94, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 74, 111, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 87, 131, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 102, 153, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 118, 178, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 137, 206, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 158, 237, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 181, 272, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 208, 312, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 238, 357, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 271, 407, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 309, 464, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 352, 529, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 401, 601, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 456, 684, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 518, 777, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 588, 882, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 668, 1002, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 759, 1138, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 862, 1293, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 980, 1469, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1113, 1670, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1266, 1898, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1440, 2159, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1638, 2458, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1866, 2799, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 2126, 3190, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2425, 3637, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2768, 4151, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 3161, 4742, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3614, 5422, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 4136, 6204, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4738, 7107, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 9, 14, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 13, 19, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 18, 27, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 24, 36, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 31, 46, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 39, 59, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 49, 73, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 60, 91, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 73, 110, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 89, 133, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 107, 161, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 125, 188, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 146, 219, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 170, 254, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 196, 295, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 227, 340, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 262, 392, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 301, 452, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 347, 520, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 398, 598, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 458, 687, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 526, 789, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 604, 906, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 694, 1040, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 797, 1195, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 916, 1373, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1052, 1579, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1210, 1816, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1393, 2090, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1604, 2407, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1849, 2774, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2133, 3200, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2464, 3695, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2848, 4271, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3295, 4943, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3817, 5725, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 4427, 6640, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 5140, 7710, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 5976, 8964, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 6957, 10435, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -4848,52 +4898,52 @@ skills["DespairPlayer"] = { baseTypeName = "Despair", color = 3, description = "Curse all targets in an area after a short delay, lowering their Chaos Resistance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "curse_effect_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, }, statSets = { [1] = { @@ -4915,12 +4965,13 @@ skills["DespairPlayer"] = { { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_skill_effect_duration", "active_skill_base_area_of_effect_radius", "base_skill_buff_chaos_damage_resistance_%_to_apply", + "skill_curses_cannot_apply_to_targets_above_level", "base_deal_no_damage", "can_perform_skill_while_moving", }, @@ -4928,46 +4979,46 @@ skills["DespairPlayer"] = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 15, -18, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, -18, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, -18, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, -19, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, -19, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, -19, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, -20, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, -20, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, -20, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 32, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 33, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 34, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 34, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 35, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 36, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 37, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 38, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 39, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 39, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 40, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 40, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 41, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 41, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 42, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 42, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 42, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 43, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 43, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 44, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 15, -35, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, -35, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, -36, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, -37, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, -38, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, -38, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, -39, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, -40, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, -41, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, -41, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, -42, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, -43, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, -44, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, -44, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, -45, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, -46, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, -47, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, -47, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, -48, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, -49, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, -50, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, -50, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, -51, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, -52, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, -53, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, -53, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, -54, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, -55, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, -56, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, -56, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, -58, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, -58, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, -60, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, -60, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -4977,59 +5028,59 @@ skills["DetonateDeadPlayer"] = { baseTypeName = "Detonate Dead", color = 3, description = "Cause a Corpse to violently explode, damaging surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, castTime = 0.8, qualityStats = { { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 10, }, }, - [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 12, }, }, + [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 9, }, }, + [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 11, }, }, [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 13, }, }, [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 17, }, }, + [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 18, }, }, [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 22, }, }, - [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 25, }, }, - [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 29, }, }, - [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 32, }, }, - [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 37, }, }, + [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 23, }, }, + [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 26, }, }, + [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 30, }, }, + [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 34, }, }, + [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 38, }, }, [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 42, }, }, - [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 47, }, }, + [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 48, }, }, [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 53, }, }, - [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 61, }, }, - [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 69, }, }, - [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 78, }, }, - [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 88, }, }, - [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 100, }, }, - [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 113, }, }, - [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 128, }, }, - [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 145, }, }, - [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 164, }, }, - [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 185, }, }, - [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 210, }, }, - [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 238, }, }, - [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 269, }, }, - [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 304, }, }, - [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 345, }, }, - [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 390, }, }, - [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 441, }, }, - [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 500, }, }, - [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 566, }, }, - [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 640, }, }, - [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 724, }, }, - [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 820, }, }, - [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 928, }, }, - [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 1050, }, }, - [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 1189, }, }, - [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 1345, }, }, + [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 59, }, }, + [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 66, }, }, + [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 73, }, }, + [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 81, }, }, + [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 89, }, }, + [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 99, }, }, + [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 109, }, }, + [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 120, }, }, + [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 132, }, }, + [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 146, }, }, + [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 160, }, }, + [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 175, }, }, + [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 192, }, }, + [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 211, }, }, + [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 231, }, }, + [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 252, }, }, + [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 276, }, }, + [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 301, }, }, + [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 359, }, }, + [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 392, }, }, + [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 427, }, }, + [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 465, }, }, + [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 506, }, }, + [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 551, }, }, + [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 599, }, }, }, statSets = { [1] = { label = "Detonate Dead", baseEffectiveness = 6, incrementalEffectiveness = 0.050000000745058, - damageIncrementalEffectiveness = 0.0024999999441206, + damageIncrementalEffectiveness = 0.003000000026077, statDescriptionScope = "detonate_dead", baseFlags = { area = true, @@ -5042,7 +5093,7 @@ skills["DetonateDeadPlayer"] = { { "active_skill_base_area_of_effect_radius", 26 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "spread_contagion_base_radius_when_using_corpse", 26 }, { "explosion_delay_ms", 400 }, }, @@ -5064,41 +5115,41 @@ skills["DetonateDeadPlayer"] = { [3] = { 24, 37, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, [4] = { 28, 42, 59, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, [5] = { 32, 48, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 36, 54, 65, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 41, 61, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 45, 68, 71, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 51, 76, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 56, 84, 77, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 62, 93, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 69, 103, 83, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 76, 113, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 83, 124, 89, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 91, 136, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 99, 149, 95, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 108, 162, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 118, 176, 101, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 128, 192, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 139, 208, 107, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 150, 225, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 162, 243, 113, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 175, 263, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 189, 284, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 204, 306, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 220, 330, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 237, 355, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 254, 382, 131, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 274, 410, 134, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 294, 441, 137, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 315, 473, 138, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 339, 508, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 363, 545, 141, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 389, 584, 143, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 417, 626, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 447, 670, 146, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 479, 718, 147, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 512, 769, 149, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 549, 823, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 587, 881, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [6] = { 36, 55, 65, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 41, 62, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 46, 69, 71, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 51, 77, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 57, 86, 77, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 64, 95, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 70, 106, 83, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 78, 116, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 85, 128, 89, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 94, 141, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 103, 154, 95, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 112, 168, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 123, 184, 101, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 134, 200, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 145, 218, 107, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 158, 237, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 172, 257, 113, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 186, 279, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 202, 303, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 218, 328, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 236, 354, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 255, 383, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 276, 414, 131, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 298, 447, 134, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 322, 482, 137, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 347, 520, 138, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 374, 561, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 403, 605, 141, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 435, 652, 143, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 468, 702, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 504, 756, 146, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 543, 814, 147, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 585, 877, 149, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 629, 944, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 678, 1016, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -5394,7 +5445,7 @@ skills["MetaElementalInvocationPlayer"] = { constantStats = { { "generic_ongoing_trigger_maximum_energy", 500 }, { "elemental_invocation_gain_X_centienergy_per_monster_power_on_shock", 100 }, - { "elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite", 200 }, + { "elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite", 100 }, { "elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze", 1000 }, }, stats = { @@ -5508,8 +5559,7 @@ skills["SupportElementalInvocationPlayer"] = { }, stats = { "triggered_by_generic_ongoing_trigger", - "display_generic_ongoing_triggerer_is_invocation_skill", - "skill_cannot_generate_energy", + "generic_ongoing_triggerer_is_invocation_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -5556,64 +5606,193 @@ skills["SupportElementalInvocationPlayer"] = { }, } } -skills["BlazingClusterPlayer"] = { +skills["ElementalWeaknessPlayer"] = { + name = "Elemental Weakness", + baseTypeName = "Elemental Weakness", + color = 3, + description = "Curse all targets in an area after a short delay, lowering their Elemental Resistances.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.7, + qualityStats = { + { "curse_effect_+%", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, + }, + statSets = { + [1] = { + label = "Elemental Weakness", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "elemental_weakness", + statMap = { + ["base_skill_buff_all_elements_resistance_%_to_apply"] = { + mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), + }, + }, + baseFlags = { + area = true, + spell = true, + duration = true, + }, + constantStats = { + { "curse_delay_duration_ms", 1500 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "base_skill_effect_duration", + "active_skill_base_area_of_effect_radius", + "base_skill_buff_all_elements_resistance_%_to_apply", + "skill_curses_cannot_apply_to_targets_above_level", + "base_deal_no_damage", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 6000, 15, -40, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, -41, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, -42, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, -43, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, -44, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, -45, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, -46, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, -47, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, -48, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, -49, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, -50, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, -51, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, -52, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, -53, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, -54, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, -55, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, -56, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, -58, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, -60, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, -61, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, -62, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, -63, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, -64, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, -65, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, -66, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, -67, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, -68, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, -69, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, -69, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, -70, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, -70, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, -71, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, -71, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, -72, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, -72, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, -73, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, -73, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, -74, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["EmberFusilladePlayer"] = { name = "Ember Fusillade", baseTypeName = "Ember Fusillade", color = 3, - description = "Conjure a blazing Ember that hovers above you. After a short duration, the Ember launches at an enemy, dealing Fire damage in an area on impact and prioritising the last enemy targeted. Recasting this spell resets the duration for all active Embers. Multiple Embers fired in the same Fusillade will attempt to target different enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Triggerable] = true, }, + description = "Conjure a blazing Ember that hovers above you. After a short duration, the Ember launches at an enemy, dealing Fire damage in an area on impact and prioritising the last enemy targeted. Recasting this spell resets the duration for all active Embers. Multiple Embers fired in the same Fusillade will attempt to target different enemies. Consumes a Lightning Infusion if possible to cause the entire Fusillade to create beams that Chain to enemies.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.4, qualityStats = { { "ember_fusillade_damage_+%_final_per_ember_fired", 0.1 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 4, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 3, }, }, [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 4, }, }, [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 5, }, }, [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 5, }, }, [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 6, }, }, [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 7, }, }, [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 8, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 9, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 10, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 10, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 11, }, }, [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 12, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 13, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 15, }, }, - [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 17, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 14, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 16, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 18, }, }, [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 20, }, }, [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 22, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 25, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 29, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 33, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 37, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 42, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 48, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 54, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 61, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 69, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 78, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 89, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 101, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 114, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 129, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 146, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 165, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 187, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 212, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 240, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 271, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 307, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 348, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 394, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 445, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 504, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 24, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 27, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 30, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 33, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 37, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 41, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 45, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 49, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 54, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 60, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 66, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 72, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 79, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 86, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 94, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 103, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 113, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 123, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 135, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 147, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 160, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 174, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 190, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 206, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 225, }, }, }, statSets = { [1] = { label = "Projectile", baseEffectiveness = 2.0999999046326, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "blazing_cluster_statset_0", baseFlags = { spell = true, @@ -5625,7 +5804,7 @@ skills["BlazingClusterPlayer"] = { { "blazing_cluster_delay_between_projectiles_ms", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "blazing_cluster_subsequent_targeting_radius", 30 }, { "ember_fusillade_damage_+%_final_per_ember_fired", 5 }, }, @@ -5637,6 +5816,8 @@ skills["BlazingClusterPlayer"] = { "can_perform_skill_while_moving", "projectile_uses_contact_position", "quality_display_ember_fusilade_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_lightning_infusion", }, notMinionStat = { "spell_minimum_base_fire_damage", @@ -5646,43 +5827,43 @@ skills["BlazingClusterPlayer"] = { [1] = { 7, 10, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, [2] = { 9, 13, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, [3] = { 12, 18, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, 24, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 20, 30, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 25, 37, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 30, 45, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 36, 54, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 42, 63, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 49, 74, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 57, 86, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [4] = { 16, 23, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 20, 29, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 24, 36, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 29, 44, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 35, 52, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 41, 62, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 49, 73, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 57, 85, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 66, 99, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, [13] = { 76, 114, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 87, 130, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 99, 148, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 112, 168, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 127, 190, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 144, 215, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 162, 243, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 183, 274, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 206, 309, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 231, 347, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 260, 390, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 292, 438, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 328, 492, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 368, 553, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 413, 620, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 464, 696, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 521, 781, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 584, 876, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 656, 983, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 736, 1104, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 826, 1240, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 928, 1392, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1043, 1565, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1173, 1760, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1320, 1979, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1485, 2228, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1673, 2509, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1886, 2828, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [14] = { 88, 132, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 101, 151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 115, 173, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 132, 198, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 150, 226, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 171, 257, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 195, 293, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 222, 333, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 252, 378, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 287, 430, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 325, 488, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 370, 554, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 420, 629, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 477, 715, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 541, 812, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 615, 923, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 699, 1049, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 795, 1193, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 905, 1357, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1030, 1546, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1174, 1761, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1339, 2008, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1528, 2292, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1745, 2618, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1995, 2993, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2283, 3424, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2615, 3922, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { @@ -5698,7 +5879,7 @@ skills["BlazingClusterPlayer"] = { { "blazing_cluster_delay_between_projectiles_ms", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "blazing_cluster_subsequent_targeting_radius", 30 }, { "ember_fusillade_damage_+%_final_per_ember_fired", 5 }, { "active_skill_base_area_of_effect_radius", 9 }, @@ -5711,6 +5892,8 @@ skills["BlazingClusterPlayer"] = { "can_perform_skill_while_moving", "projectile_uses_contact_position", "quality_display_ember_fusilade_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_lightning_infusion", "is_area_damage", }, notMinionStat = { @@ -5721,43 +5904,124 @@ skills["BlazingClusterPlayer"] = { [1] = { 7, 10, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, [2] = { 9, 13, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, [3] = { 12, 18, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, 24, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 20, 30, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 25, 37, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 30, 45, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 36, 54, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 42, 63, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 49, 74, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 57, 86, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [4] = { 16, 23, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 20, 29, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 24, 36, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 29, 44, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 35, 52, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 41, 62, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 49, 73, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 57, 85, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 66, 99, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, [13] = { 76, 114, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 87, 130, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 99, 148, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 112, 168, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 127, 190, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 144, 215, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 162, 243, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 183, 274, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 206, 309, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 231, 347, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 260, 390, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 292, 438, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 328, 492, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 368, 553, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 413, 620, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 464, 696, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 521, 781, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 584, 876, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 656, 983, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 736, 1104, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 826, 1240, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 928, 1392, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1043, 1565, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1173, 1760, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1320, 1979, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1485, 2228, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1673, 2509, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1886, 2828, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [14] = { 88, 132, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 101, 151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 115, 173, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 132, 198, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 150, 226, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 171, 257, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 195, 293, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 222, 333, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 252, 378, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 287, 430, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 325, 488, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 370, 554, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 420, 629, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 477, 715, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 541, 812, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 615, 923, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 699, 1049, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 795, 1193, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 905, 1357, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1030, 1546, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1174, 1761, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1339, 2008, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1528, 2292, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1745, 2618, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1995, 2993, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2283, 3424, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2615, 3922, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Beam", + baseEffectiveness = 1.3999999761581, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "blazing_cluster_statset_2", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "blazing_cluster_delay_between_projectiles_ms", 100 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "blazing_cluster_subsequent_targeting_radius", 30 }, + { "ember_fusillade_damage_+%_final_per_ember_fired", 5 }, + { "number_of_chains", 4 }, + }, + stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "blazing_cluster_maximum_number_of_projectiles_allowed", + "base_is_projectile", + "can_perform_skill_while_moving", + "projectile_uses_contact_position", + "quality_display_ember_fusilade_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_lightning_infusion", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 0, 0, 1, 10, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 1, 14, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1, 19, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1, 25, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 2, 31, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 2, 38, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 2, 46, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 3, 55, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 3, 66, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 4, 77, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 5, 90, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 5, 104, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 6, 121, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 7, 139, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 8, 159, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 10, 183, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 11, 209, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 13, 238, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 14, 271, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 16, 309, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 18, 351, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 21, 399, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 24, 454, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 27, 515, 11, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 31, 585, 11, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 35, 664, 11, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 40, 755, 12, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 45, 857, 12, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 51, 974, 12, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 58, 1107, 13, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 66, 1259, 13, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 75, 1433, 13, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 86, 1632, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 98, 1859, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 112, 2120, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 127, 2419, 15, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 145, 2763, 15, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 166, 3159, 15, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 190, 3615, 16, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 218, 4140, 16, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -5767,52 +6031,52 @@ skills["EnfeeblePlayer"] = { baseTypeName = "Enfeeble", color = 3, description = "Curse all targets in an area after a short delay, making them deal less damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "curse_effect_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, }, statSets = { [1] = { @@ -5837,13 +6101,13 @@ skills["EnfeeblePlayer"] = { { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_skill_effect_duration", "active_skill_base_area_of_effect_radius", "base_skill_buff_damage_+%_final_to_apply", - "base_skill_buff_damage_+%_final_vs_unique_to_apply", + "skill_curses_cannot_apply_to_targets_above_level", "base_deal_no_damage", "can_perform_skill_while_moving", }, @@ -5851,46 +6115,46 @@ skills["EnfeeblePlayer"] = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 15, -20, -10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, -20, -10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, -20, -10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, -21, -11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, -21, -11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, -21, -11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, -22, -12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, -22, -12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, -22, -12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, -23, -13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, -23, -13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, -23, -13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, -24, -14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, -24, -14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, -24, -14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, -25, -15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, -25, -15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, -25, -15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, -26, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, -26, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 32, -26, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 33, -27, -17, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 34, -27, -17, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 34, -27, -17, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 35, -28, -18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 36, -28, -18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 37, -28, -18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 38, -29, -19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 39, -29, -19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 39, -29, -19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 40, -30, -20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 40, -30, -20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 41, -30, -20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 41, -31, -21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 42, -31, -21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 42, -31, -21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 42, -32, -22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 43, -32, -22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 43, -32, -22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 44, -33, -23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 15, -20, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, -20, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, -21, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, -21, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, -22, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, -22, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, -23, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, -23, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, -24, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, -24, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, -25, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, -25, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, -26, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, -26, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, -27, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, -27, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, -28, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, -28, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, -29, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, -29, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, -30, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, -30, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, -31, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, -31, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, -32, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, -32, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, -33, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, -33, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, -34, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, -34, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, -34, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, -37, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -5900,59 +6164,59 @@ skills["EssenceDrainPlayer"] = { baseTypeName = "Essence Drain", color = 3, description = "Fire a Projectile that applies a powerful Chaos damage over time debuff to enemies it hits.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.8, qualityStats = { { "base_skill_effect_duration", 50 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 7, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 5, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 9, }, }, + [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 8, }, }, [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 10, }, }, [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 11, }, }, [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 16, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 18, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 21, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 15, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 22, }, }, [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 24, }, }, [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 27, }, }, - [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 31, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 35, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 39, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 44, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 50, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 57, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 65, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 73, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 83, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 94, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 106, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 120, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 136, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 154, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 175, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 198, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 224, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 254, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 287, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 325, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 368, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 416, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 471, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 533, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 604, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 683, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 773, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 30, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 34, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 38, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 42, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 46, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 51, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 57, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 63, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 69, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 76, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 83, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 92, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 101, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 110, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 121, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 133, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 145, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 158, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 173, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 189, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 206, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 225, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 245, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 267, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 291, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 316, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 344, }, }, }, statSets = { [1] = { label = "Projectile", baseEffectiveness = 1.7000000476837, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "essence_drain", baseFlags = { spell = true, @@ -5961,7 +6225,7 @@ skills["EssenceDrainPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "pvp_skill_dot_attack_time_override_ms", 10000 }, }, stats = { @@ -5975,6 +6239,7 @@ skills["EssenceDrainPlayer"] = { "disable_visual_hit_effect", "should_use_additive_aiming_animation", "quality_display_base_skill_effect_duration_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", }, notMinionStat = { "spell_minimum_base_chaos_damage", @@ -5983,51 +6248,51 @@ skills["EssenceDrainPlayer"] = { levels = { [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 6, 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 14, 27, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 18, 33, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 21, 39, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 25, 47, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 30, 55, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 35, 65, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [3] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 20, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 26, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 17, 32, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 38, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 25, 46, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 55, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 34, 64, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, [11] = { 40, 75, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, [13] = { 54, 100, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 61, 114, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 70, 130, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 79, 147, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 90, 167, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 102, 189, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 115, 213, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 129, 240, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 146, 271, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 164, 305, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 184, 342, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 207, 385, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 232, 432, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 261, 485, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 293, 544, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 329, 610, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 369, 685, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 414, 768, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 464, 862, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 521, 968, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 585, 1087, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 658, 1221, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 739, 1372, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 831, 1543, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 935, 1736, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1052, 1954, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1185, 2201, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1336, 2480, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [14] = { 62, 115, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 71, 133, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 82, 152, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 93, 173, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 107, 198, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 121, 226, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 138, 257, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 157, 292, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 179, 332, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 203, 377, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 230, 428, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 262, 486, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 297, 552, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 338, 627, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 383, 712, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 436, 809, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 495, 920, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 563, 1046, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 641, 1190, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 730, 1355, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 832, 1545, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 948, 1761, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1082, 2010, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1236, 2296, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1413, 2624, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1617, 3003, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1852, 3440, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { label = "Damage over Time", baseEffectiveness = 8.5, - incrementalEffectiveness = 0.18000000715256, - damageIncrementalEffectiveness = 0.0092000002041459, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, statDescriptionScope = "essence_drain", baseFlags = { spell = true, @@ -6040,7 +6305,7 @@ skills["EssenceDrainPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "pvp_skill_dot_attack_time_override_ms", 10000 }, { "base_skill_effect_duration", 4000 }, }, @@ -6056,6 +6321,7 @@ skills["EssenceDrainPlayer"] = { "disable_visual_hit_effect", "should_use_additive_aiming_animation", "quality_display_base_skill_effect_duration_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", "spell_damage_modifiers_apply_to_skill_dot", "display_statset_hide_usage_stats", }, @@ -6065,45 +6331,249 @@ skills["EssenceDrainPlayer"] = { }, levels = { [1] = { 0, 0, 550, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 811, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 1183, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 1604, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 2081, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 2621, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 3232, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 3923, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 4706, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 5592, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 6596, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 7733, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 9022, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 10484, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 12144, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 14030, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 16174, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 18614, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 21393, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 24561, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 28176, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 32306, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 37029, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 42435, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 48630, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 55738, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 63901, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 73288, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 84094, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 96550, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 110924, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 127533, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 146749, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 169008, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 194826, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 224813, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 259687, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 300300, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 347661, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 402967, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [2] = { 0, 0, 800, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1158, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1568, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 2036, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 2571, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 3182, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 3880, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 4678, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 5591, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 6635, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 7831, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 9202, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 10774, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 12579, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 14653, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 17038, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 19786, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 22953, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 26609, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 30833, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 35720, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 41382, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 47949, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 55576, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 64447, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 74777, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 86824, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 100894, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 117349, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 136623, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 159231, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 185790, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 217040, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 253865, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 297328, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 348709, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 409547, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 481700, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 567414, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ExsanguinatePlayer"] = { + name = "Exsanguinate", + baseTypeName = "Exsanguinate", + fromItem = true, + color = 3, + description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies Hit by the tendrils take Physical damage and are inflicted with Bleeding.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 1, + qualityStats = { + { "blood_tendrils_beam_count", 0.05 }, + }, + levels = { + [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Tendrils", + baseEffectiveness = 0.89999997615814, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "exsanguinate", + baseFlags = { + spell = true, + duration = true, + chaining = true, + }, + constantStats = { + { "number_of_chains", 2 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "blood_tendrils_beam_count", 3 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "quality_display_exsanguinate_beam_targets_is_gem", + "can_perform_skill_while_moving", + "global_bleed_on_hit", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 24, 37, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 38, 56, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 57, 85, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 64, 97, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 73, 110, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 84, 125, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 123, 184, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 139, 209, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 204, 306, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 232, 348, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 264, 395, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 300, 450, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 341, 511, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 388, 582, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 503, 755, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 574, 861, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 655, 982, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 748, 1122, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 855, 1283, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 978, 1468, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1121, 1681, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Damage over Time", + baseEffectiveness = 0.89999997615814, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "exsanguinate", + baseFlags = { + spell = true, + duration = true, + chaining = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 1000 }, + { "pvp_skill_dot_attack_time_override_ms", 2000 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "can_perform_skill_while_moving", + "global_bleed_on_hit", + "precise_cursor_targeting_uses_contact_point_height_offset", + "spell_damage_modifiers_apply_to_skill_dot", + "display_statset_hide_usage_stats", + "quality_hide_display_character_panel", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6112,72 +6582,72 @@ skills["EyeOfWinterPlayer"] = { name = "Eye of Winter", baseTypeName = "Eye of Winter", color = 3, - description = "Fire a single Eye Projectile which does not Hit enemies. The Eye constantly releases damaging shard Projectiles in a spiral as it flies, plus an extra burst of shards at the end of its flight. If the Eye passes over an Elemental ground surface or Orb, it will take on that surface's effect causing shards to deal more damage of the corresponding Type.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpiral] = true, [SkillType.Damage] = true, [SkillType.SingleMainProjectile] = true, [SkillType.Cold] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 1.1, + description = "Fire a single Eye Projectile which does not Hit enemies. The Eye constantly releases damaging shard Projectiles in a spiral as it flies. If the Eye passes over an Elemental ground surface or Orb, it will take on that surface's effect causing shards to deal more damage of the corresponding Type.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpiral] = true, [SkillType.Damage] = true, [SkillType.SingleMainProjectile] = true, [SkillType.Cold] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, }, + castTime = 1.4, qualityStats = { { "base_projectile_speed_+%", 1.5 }, }, levels = { - [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 12, }, }, - [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 13, }, }, - [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 17, }, }, - [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 20, }, }, - [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 22, }, }, - [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 25, }, }, - [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 29, }, }, - [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 32, }, }, - [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 37, }, }, - [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 42, }, }, - [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 47, }, }, - [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 54, }, }, - [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 61, }, }, - [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 69, }, }, - [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 78, }, }, - [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 88, }, }, - [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 100, }, }, - [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 113, }, }, - [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 128, }, }, - [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 145, }, }, - [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 164, }, }, - [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 186, }, }, - [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 210, }, }, - [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 238, }, }, - [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 270, }, }, - [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 305, }, }, - [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 345, }, }, - [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 391, }, }, - [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 442, }, }, - [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 501, }, }, - [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 567, }, }, - [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 642, }, }, - [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 726, }, }, - [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 822, }, }, - [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 930, }, }, - [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1053, }, }, - [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1191, }, }, - [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1348, }, }, - [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1526, }, }, + [1] = { critChance = 12, storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { Mana = 19, }, }, + [2] = { critChance = 12, storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { Mana = 22, }, }, + [3] = { critChance = 12, storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { Mana = 26, }, }, + [4] = { critChance = 12, storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { Mana = 30, }, }, + [5] = { critChance = 12, storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { Mana = 35, }, }, + [6] = { critChance = 12, storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { Mana = 40, }, }, + [7] = { critChance = 12, storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { Mana = 46, }, }, + [8] = { critChance = 12, storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { Mana = 52, }, }, + [9] = { critChance = 12, storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { Mana = 59, }, }, + [10] = { critChance = 12, storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { Mana = 66, }, }, + [11] = { critChance = 12, storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { Mana = 75, }, }, + [12] = { critChance = 12, storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { Mana = 84, }, }, + [13] = { critChance = 12, storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { Mana = 94, }, }, + [14] = { critChance = 12, storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { Mana = 105, }, }, + [15] = { critChance = 12, storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { Mana = 117, }, }, + [16] = { critChance = 12, storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { Mana = 130, }, }, + [17] = { critChance = 12, storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { Mana = 144, }, }, + [18] = { critChance = 12, storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { Mana = 159, }, }, + [19] = { critChance = 12, storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { Mana = 176, }, }, + [20] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 195, }, }, + [21] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 215, }, }, + [22] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 236, }, }, + [23] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 260, }, }, + [24] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 286, }, }, + [25] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 314, }, }, + [26] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 345, }, }, + [27] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 378, }, }, + [28] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 414, }, }, + [29] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 453, }, }, + [30] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 496, }, }, + [31] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 542, }, }, + [32] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 592, }, }, + [33] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 646, }, }, + [34] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 705, }, }, + [35] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 769, }, }, + [36] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 838, }, }, + [37] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 913, }, }, + [38] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 994, }, }, + [39] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1081, }, }, + [40] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1176, }, }, }, statSets = { [1] = { label = "Eye of Winter", - baseEffectiveness = 0.18999999761581, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 0.46000000834465, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, statDescriptionScope = "eye_of_winter_new", baseFlags = { spell = true, projectile = true, }, constantStats = { - { "eye_of_winter_base_explosion_shards", 8 }, { "projectile_firing_forward_distance_override", 100 }, - { "eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type", 75 }, + { "eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "eye_of_winter_first_hit_damage_+%_final", 900 }, }, stats = { "spell_minimum_base_cold_damage", @@ -6185,52 +6655,53 @@ skills["EyeOfWinterPlayer"] = { "base_is_projectile", "single_primary_projectile", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", }, notMinionStat = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", }, levels = { - [1] = { 1, 1, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 1, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 13, 19, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 24, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 53, 79, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 94, 142, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 119, 179, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 134, 202, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 151, 227, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 64, 97, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 73, 109, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 82, 123, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 92, 139, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 118, 176, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 133, 199, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 150, 225, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 191, 287, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 244, 366, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 276, 414, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 354, 532, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 402, 603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 456, 684, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6239,56 +6710,56 @@ skills["FallingThunderPlayer"] = { name = "Falling Thunder", baseTypeName = "Falling Thunder", color = 3, - description = "Infuse your Quarterstaff with electrical energy, then Slam the ground to deal damage in a large cone in front of you. Consumes your Power Charges to fire Lightning Projectiles forwards from the impact.", + description = "Suffuse your Quarterstaff with electrical energy, then Slam the ground to deal damage in a large cone in front of you. Consumes your Power Charges to fire Lightning Projectiles forwards from the impact.", skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Projectile] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Lightning] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "charge_skip_consume_chance_%", 0.5 }, + { "lightning_strike_damage_+%_final_per_power_charge", 1 }, }, levels = { [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.4, levelRequirement = 0, cost = { Mana = 11, }, }, - [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 3, cost = { Mana = 12, }, }, + [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 3, cost = { Mana = 13, }, }, [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.69, levelRequirement = 6, cost = { Mana = 14, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.85, levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 14, cost = { Mana = 17, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 2.14, levelRequirement = 18, cost = { Mana = 19, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 2.29, levelRequirement = 22, cost = { Mana = 21, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 2.43, levelRequirement = 26, cost = { Mana = 23, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.55, levelRequirement = 31, cost = { Mana = 26, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.68, levelRequirement = 36, cost = { Mana = 29, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.81, levelRequirement = 41, cost = { Mana = 32, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 46, cost = { Mana = 36, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 3.1, levelRequirement = 52, cost = { Mana = 39, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 3.26, levelRequirement = 58, cost = { Mana = 44, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 3.42, levelRequirement = 64, cost = { Mana = 49, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 3.59, levelRequirement = 66, cost = { Mana = 54, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.85, levelRequirement = 10, cost = { Mana = 17, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 14, cost = { Mana = 19, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 2.14, levelRequirement = 18, cost = { Mana = 21, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 2.29, levelRequirement = 22, cost = { Mana = 24, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 2.43, levelRequirement = 26, cost = { Mana = 26, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.55, levelRequirement = 31, cost = { Mana = 29, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.68, levelRequirement = 36, cost = { Mana = 32, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.81, levelRequirement = 41, cost = { Mana = 35, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 46, cost = { Mana = 39, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 3.1, levelRequirement = 52, cost = { Mana = 42, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 3.26, levelRequirement = 58, cost = { Mana = 46, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 3.42, levelRequirement = 64, cost = { Mana = 51, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 3.59, levelRequirement = 66, cost = { Mana = 55, }, }, [17] = { attackSpeedMultiplier = -40, baseMultiplier = 3.77, levelRequirement = 72, cost = { Mana = 60, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.96, levelRequirement = 78, cost = { Mana = 66, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 4.16, levelRequirement = 84, cost = { Mana = 73, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 4.37, levelRequirement = 90, cost = { Mana = 81, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 4.58, levelRequirement = 90, cost = { Mana = 90, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 100, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 5.05, levelRequirement = 90, cost = { Mana = 111, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 5.31, levelRequirement = 90, cost = { Mana = 123, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 5.57, levelRequirement = 90, cost = { Mana = 136, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 5.85, levelRequirement = 90, cost = { Mana = 151, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 6.14, levelRequirement = 90, cost = { Mana = 168, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 6.45, levelRequirement = 90, cost = { Mana = 186, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 6.77, levelRequirement = 90, cost = { Mana = 206, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 228, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 7.47, levelRequirement = 90, cost = { Mana = 253, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 7.84, levelRequirement = 90, cost = { Mana = 280, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 8.23, levelRequirement = 90, cost = { Mana = 311, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 8.65, levelRequirement = 90, cost = { Mana = 344, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 9.08, levelRequirement = 90, cost = { Mana = 381, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 9.53, levelRequirement = 90, cost = { Mana = 423, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 468, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 10.51, levelRequirement = 90, cost = { Mana = 519, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 11.03, levelRequirement = 90, cost = { Mana = 575, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 11.59, levelRequirement = 90, cost = { Mana = 638, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.96, levelRequirement = 78, cost = { Mana = 65, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 4.16, levelRequirement = 84, cost = { Mana = 70, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 4.37, levelRequirement = 90, cost = { Mana = 76, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 4.58, levelRequirement = 90, cost = { Mana = 82, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 88, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 5.05, levelRequirement = 90, cost = { Mana = 95, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 5.31, levelRequirement = 90, cost = { Mana = 102, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 5.57, levelRequirement = 90, cost = { Mana = 110, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 5.85, levelRequirement = 90, cost = { Mana = 118, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 6.14, levelRequirement = 90, cost = { Mana = 127, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 6.45, levelRequirement = 90, cost = { Mana = 136, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 6.77, levelRequirement = 90, cost = { Mana = 146, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 156, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 7.47, levelRequirement = 90, cost = { Mana = 167, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 7.84, levelRequirement = 90, cost = { Mana = 178, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 8.23, levelRequirement = 90, cost = { Mana = 190, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 8.65, levelRequirement = 90, cost = { Mana = 203, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 9.08, levelRequirement = 90, cost = { Mana = 217, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 9.53, levelRequirement = 90, cost = { Mana = 231, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 246, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 10.51, levelRequirement = 90, cost = { Mana = 262, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 11.03, levelRequirement = 90, cost = { Mana = 279, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 11.59, levelRequirement = 90, cost = { Mana = 297, }, }, }, statSets = { [1] = { @@ -6357,37 +6828,155 @@ skills["FallingThunderPlayer"] = { label = "Projectile", baseEffectiveness = 0.62000000476837, incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "new_new_lightning_strike", + statDescriptionScope = "new_new_lightning_strike", + baseFlags = { + attack = true, + projectile = true, + }, + constantStats = { + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, + { "melee_conditional_step_distance", 21 }, + { "lightning_strike_maximum_action_distance_+_when_empowered", 120 }, + { "active_skill_projectile_speed_+%_variation_final", 50 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, + { "lightning_strike_base_number_of_projectiles_per_power_charge", 3 }, + { "lightning_strike_damage_+%_final_when_charged", 100 }, + { "lightning_strike_damage_+%_final_per_power_charge", 50 }, + }, + stats = { + "is_area_damage", + "base_is_projectile", + "always_pierce", + "projectiles_should_collide_with_flying_monsters", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "zero_projectiles_if_no_power_charges", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "is_area_damage", + }, + levels = { + [1] = { -1, statInterpolation = { 1, }, actorLevel = 1, }, + }, + }, + } +} +skills["FeastOfFleshPlayer"] = { + name = "Feast of Flesh", + baseTypeName = "Feast of Flesh", + color = 3, + description = "Consume Corpses near you to recover Life and Mana over a short time per Corpse Consumed.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Unleashable] = true, [SkillType.Buff] = true, }, + castTime = 1.3, + qualityStats = { + { "feast_of_flesh_number_of_corpses", 0.15 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Feast of Flesh", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "feast_of_flesh", baseFlags = { - attack = true, - projectile = true, }, constantStats = { - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, - { "melee_conditional_step_distance", 21 }, - { "lightning_strike_maximum_action_distance_+_when_empowered", 120 }, - { "active_skill_projectile_speed_+%_variation_final", 50 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, - { "lightning_strike_base_number_of_projectiles_per_power_charge", 3 }, - { "lightning_strike_damage_+%_final_when_charged", 100 }, - { "lightning_strike_damage_+%_final_per_power_charge", 50 }, + { "active_skill_base_area_of_effect_radius", 40 }, + { "feast_of_flesh_regeneration_duration", 3000 }, + { "feast_of_flesh_number_of_corpses", 5 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "is_area_damage", - "base_is_projectile", - "always_pierce", - "projectiles_should_collide_with_flying_monsters", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "zero_projectiles_if_no_power_charges", - "display_statset_hide_usage_stats", - }, - notMinionStat = { - "is_area_damage", + "base_life_recovery_per_minute", + "base_mana_recovery_per_minute", + "base_deal_no_spell_damage", + "can_perform_skill_while_moving", }, levels = { - [1] = { -1, statInterpolation = { 1, }, actorLevel = 1, }, + [1] = { 21, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 24, 24, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 29, 29, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 35, 35, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 41, 41, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 51, 51, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 60, 60, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 69, 69, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 79, 79, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 90, 90, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 101, 101, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 113, 113, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 127, 127, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 140, 140, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 154, 154, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 168, 168, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 173, 173, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 188, 188, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 203, 203, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 211, 211, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 227, 227, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 244, 244, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 261, 261, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 278, 278, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 296, 296, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 313, 313, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 330, 330, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 347, 347, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 365, 365, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 382, 382, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 399, 399, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 416, 416, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 434, 434, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 451, 451, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 468, 468, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 485, 485, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 503, 503, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 520, 520, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 537, 537, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 554, 554, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6396,60 +6985,60 @@ skills["FireballPlayer"] = { name = "Fireball", baseTypeName = "Fireball", color = 3, - description = "Launch a large ball of Fire which explodes on impact, creating a nova of smaller firebolts.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Launch a large ball of Fire which explodes on impact. The explosion Consumes a Fire Infusion if possible to launch a ring of smaller firebolts.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1.2, qualityStats = { { "spell_skills_fire_2_additional_projectiles_final_chance_%", 0.5 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 11, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 10, }, }, [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 12, }, }, [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 14, }, }, [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 16, }, }, [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 18, }, }, [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 21, }, }, - [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 23, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 26, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 30, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 34, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 39, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 44, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 24, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 28, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 31, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 35, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 40, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 45, }, }, [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 50, }, }, [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 56, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 64, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 72, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 82, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 92, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 105, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 118, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 134, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 152, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 172, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 195, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 220, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 249, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 282, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 320, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 362, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 410, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 464, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 525, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 594, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 672, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 761, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 861, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 974, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1103, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1248, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1412, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 62, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 69, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 77, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 85, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 94, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 104, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 115, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 126, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 139, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 153, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 168, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 184, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 202, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 221, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 242, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 265, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 290, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 317, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 346, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 377, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 411, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 448, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 488, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 532, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 578, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 629, }, }, }, statSets = { [1] = { label = "Projectile", - baseEffectiveness = 2.4500000476837, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 2.5999999046326, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, statDescriptionScope = "greater_fireball", baseFlags = { spell = true, @@ -6458,7 +7047,7 @@ skills["FireballPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "projectile_maximum_range_override", 120 }, }, stats = { @@ -6469,52 +7058,54 @@ skills["FireballPlayer"] = { "maintain_projectile_direction_when_using_contact_position", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", + "active_skill_consumes_a_fire_infusion", + "precise_cursor_targeting_uses_contact_point_height_offset", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", }, levels = { - [1] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 24, 35, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 131, 196, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 148, 222, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 213, 320, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 240, 360, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 270, 405, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 304, 455, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 341, 512, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 383, 574, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 482, 723, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 541, 812, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 607, 911, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 681, 1022, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 765, 1147, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 859, 1288, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 964, 1446, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1083, 1625, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1217, 1826, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1369, 2053, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1540, 2309, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1733, 2599, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1952, 2928, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2200, 3300, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 30, 44, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 36, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 68, 102, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 79, 118, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 154, 231, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 174, 262, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 198, 297, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 224, 336, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 253, 379, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 323, 484, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 411, 616, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 463, 695, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 522, 784, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 589, 884, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 665, 997, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 750, 1125, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 847, 1270, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 956, 1434, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1080, 1619, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1220, 1830, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1380, 2070, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1561, 2342, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1768, 2651, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2003, 3004, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2271, 3407, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2577, 3866, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { @@ -6529,7 +7120,7 @@ skills["FireballPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "projectile_maximum_range_override", 120 }, { "active_skill_base_area_of_effect_radius", 17 }, }, @@ -6541,6 +7132,8 @@ skills["FireballPlayer"] = { "maintain_projectile_direction_when_using_contact_position", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", + "active_skill_consumes_a_fire_infusion", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", }, notMinionStat = { @@ -6548,53 +7141,53 @@ skills["FireballPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 24, 35, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 131, 196, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 148, 222, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 213, 320, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 240, 360, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 270, 405, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 304, 455, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 341, 512, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 383, 574, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 482, 723, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 541, 812, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 607, 911, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 681, 1022, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 765, 1147, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 859, 1288, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 964, 1446, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1083, 1625, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1217, 1826, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1369, 2053, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1540, 2309, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1733, 2599, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1952, 2928, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2200, 3300, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 30, 44, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 36, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 68, 102, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 79, 118, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 154, 231, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 174, 262, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 198, 297, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 224, 336, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 253, 379, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 323, 484, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 411, 616, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 463, 695, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 522, 784, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 589, 884, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 665, 997, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 750, 1125, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 847, 1270, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 956, 1434, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1080, 1619, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1220, 1830, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1380, 2070, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1561, 2342, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1768, 2651, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2003, 3004, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2271, 3407, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2577, 3866, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [3] = { label = "Firebolts", - baseEffectiveness = 1.5499999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 2.5999999046326, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, statDescriptionScope = "greater_fireball", baseFlags = { spell = true, @@ -6603,10 +7196,11 @@ skills["FireballPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "projectile_maximum_range_override", 120 }, - { "base_number_of_projectiles", 8 }, + { "base_number_of_projectiles", 12 }, { "projectile_maximum_range_override", -60 }, + { "active_skill_ignite_chance_+%_final", 100 }, }, stats = { "spell_minimum_base_fire_damage", @@ -6618,6 +7212,8 @@ skills["FireballPlayer"] = { "maintain_projectile_direction_when_using_contact_position", "can_perform_skill_while_moving", "should_use_additive_aiming_animation", + "active_skill_consumes_a_fire_infusion", + "precise_cursor_targeting_uses_contact_point_height_offset", "modifiers_to_projectile_count_do_not_apply", }, notMinionStat = { @@ -6625,46 +7221,46 @@ skills["FireballPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 7, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 26, 40, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 31, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 36, 55, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 49, 73, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 56, 84, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 64, 96, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 73, 109, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 83, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 94, 141, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 106, 159, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 120, 179, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 135, 202, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 152, 228, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 171, 256, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 216, 324, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 242, 363, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 272, 408, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 305, 458, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 342, 514, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 384, 576, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 431, 647, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 484, 726, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 543, 815, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 610, 915, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 685, 1028, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 770, 1155, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 866, 1299, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 974, 1461, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 1096, 1645, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 1235, 1852, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 1392, 2088, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 19, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 30, 44, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 36, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 42, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 50, 75, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 59, 88, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 68, 102, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 79, 118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 91, 136, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 104, 156, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 119, 178, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 135, 203, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 154, 231, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 174, 262, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 198, 297, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 224, 336, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 253, 379, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 286, 429, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 323, 484, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 364, 546, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 411, 616, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 463, 695, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 522, 784, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 589, 884, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 665, 997, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 750, 1125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 847, 1270, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 956, 1434, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 1080, 1619, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1220, 1830, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1380, 2070, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1561, 2342, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 1768, 2651, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 2003, 3004, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2271, 3407, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 2577, 3866, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6675,7 +7271,7 @@ skills["FireboltPlayer"] = { fromItem = true, color = 3, description = "Launch a fiery Projectile towards a target. The Projectile explodes on impact, damaging foes in a small area.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.9, qualityStats = { { "active_skill_ignite_chance_+%_final", 1 }, @@ -6725,9 +7321,9 @@ skills["FireboltPlayer"] = { statSets = { [1] = { label = "Projectile", - baseEffectiveness = 2.7999999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 3.1199998855591, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "fireball", baseFlags = { spell = true, @@ -6736,7 +7332,7 @@ skills["FireboltPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "projectile_maximum_range_override", 100 }, { "projectile_maximum_downwards_angle_degrees", 25 }, }, @@ -6749,6 +7345,7 @@ skills["FireboltPlayer"] = { "can_perform_skill_while_moving", "projectile_uses_contact_direction", "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", }, notMinionStat = { "spell_minimum_base_fire_damage", @@ -6756,45 +7353,45 @@ skills["FireboltPlayer"] = { }, levels = { [1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 27, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 76, 114, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 131, 197, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 191, 287, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 244, 365, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 274, 412, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 390, 585, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 438, 656, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 491, 737, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 551, 827, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 619, 928, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 694, 1041, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 874, 1311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 981, 1472, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1102, 1653, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1238, 1857, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1391, 2087, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1564, 2346, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1759, 2639, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1981, 2971, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2231, 3346, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2514, 3771, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [2] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 20, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 48, 73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 71, 106, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 84, 127, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 113, 170, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 130, 196, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 150, 224, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 224, 335, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 290, 435, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 375, 562, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 426, 639, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 623, 935, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 804, 1206, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 914, 1371, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1039, 1558, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1181, 1772, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1344, 2017, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1531, 2296, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1744, 2617, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1989, 2984, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2270, 3405, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2593, 3889, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2964, 4446, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3392, 5088, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3885, 5827, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { @@ -6809,7 +7406,7 @@ skills["FireboltPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "projectile_maximum_range_override", 100 }, { "projectile_maximum_downwards_angle_degrees", 25 }, { "active_skill_base_area_of_effect_radius", 7 }, @@ -6823,6 +7420,7 @@ skills["FireboltPlayer"] = { "can_perform_skill_while_moving", "projectile_uses_contact_direction", "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_hide_usage_stats", }, @@ -6832,45 +7430,45 @@ skills["FireboltPlayer"] = { }, levels = { [1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 27, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 76, 114, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 131, 197, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 191, 287, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 244, 365, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 274, 412, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 390, 585, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 438, 656, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 491, 737, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 551, 827, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 619, 928, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 694, 1041, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 874, 1311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 981, 1472, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1102, 1653, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1238, 1857, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1391, 2087, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1564, 2346, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1759, 2639, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1981, 2971, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2231, 3346, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2514, 3771, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [2] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 20, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 48, 73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 71, 106, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 84, 127, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 113, 170, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 130, 196, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 150, 224, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 224, 335, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 290, 435, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 375, 562, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 426, 639, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 623, 935, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 804, 1206, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 914, 1371, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1039, 1558, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1181, 1772, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1344, 2017, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1531, 2296, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1744, 2617, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1989, 2984, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2270, 3405, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2593, 3889, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2964, 4446, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3392, 5088, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3885, 5827, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6879,77 +7477,79 @@ skills["FirestormPlayer"] = { name = "Firestorm", baseTypeName = "Firestorm", color = 3, - description = "Rain flaming bolts over the targeted area. Ignites on enemies and Corpses in front of you are Consumed to fuel the Firestorm by creating improved bolts.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.SkillConsumesIgnite] = true, }, + description = "Rain flaming bolts over the targeted area. Can Consume all three types of Elemental Infusion, becoming much larger when Fire-Infused, causing lightning bolts when Lightning-Infused, and raining ice bolts when Cold-Infused.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1.4, qualityStats = { { "active_skill_base_area_of_effect_radius", 0.1 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 16, }, }, - [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 18, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 17, }, }, [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 20, }, }, [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 23, }, }, [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 26, }, }, - [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 29, }, }, - [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 33, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 43, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 48, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 55, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 62, }, }, - [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 70, }, }, - [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 80, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 90, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 102, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 116, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 131, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 148, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 168, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 190, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 215, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 244, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 276, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 313, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 354, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 400, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 453, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 513, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 581, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 657, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 744, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 842, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 953, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1078, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1220, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1381, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1563, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1769, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 2002, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 30, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 35, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 39, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 44, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 50, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 57, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 63, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 71, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 79, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 88, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 98, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 109, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 121, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 133, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 147, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 163, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 179, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 197, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 217, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 238, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 261, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 286, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 314, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 344, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 376, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 411, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 449, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 490, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 534, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 583, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 635, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 692, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 753, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 819, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 891, }, }, }, statSets = { [1] = { label = "Firestorm", - baseEffectiveness = 1.1000000238419, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "fire_storm", + baseEffectiveness = 0.56000000238419, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, + statDescriptionScope = "fire_storm_statset_0", baseFlags = { spell = true, area = true, duration = true, }, constantStats = { - { "fire_storm_fireball_delay_ms", 100 }, + { "fire_storm_fireball_delay_ms", 200 }, { "firestorm_max_number_of_storms", 1 }, { "base_skill_effect_duration", 6000 }, { "active_skill_base_area_of_effect_radius", 10 }, - { "active_skill_base_secondary_area_of_effect_radius", 56 }, + { "active_skill_base_secondary_area_of_effect_radius", 28 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "rain_hit_delay_ms", 150 }, { "firestorm_improved_bolts_per_ignite_consumed", 5 }, + { "firestorm_secondary_radius_+_if_consumed_fire_infusion", 18 }, + { "firestorm_bolt_frequency_+%_if_consumed_fire_infusion", 200 }, }, stats = { "spell_minimum_base_fire_damage", @@ -6959,127 +7559,233 @@ skills["FirestormPlayer"] = { "can_perform_skill_while_moving", "never_ignite", "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "active_skill_consumes_a_cold_infusion", + "active_skill_consumes_a_fire_infusion", + "active_skill_consumes_a_lightning_infusion", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", }, levels = { - [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 8, 13, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 52, 77, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 66, 100, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 75, 113, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 85, 127, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 121, 182, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 136, 204, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 153, 230, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 172, 258, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 193, 289, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 217, 325, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 243, 364, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 273, 409, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 306, 459, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 343, 515, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 385, 578, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 433, 649, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 486, 729, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 546, 820, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 614, 922, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 691, 1037, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 778, 1167, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 876, 1314, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 988, 1481, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 16, 23, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 24, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 56, 83, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 64, 95, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 73, 109, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 83, 125, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 95, 142, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 162, 242, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 185, 277, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 211, 317, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 242, 363, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 277, 416, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 318, 477, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 365, 547, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 419, 629, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 482, 723, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 555, 832, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 639, 959, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 737, 1106, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 851, 1277, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { - label = "Improved Bolt", - baseEffectiveness = 3.7999999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "fire_storm", + label = "Ice Bolts", + baseEffectiveness = 0.5799999833107, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, + statDescriptionScope = "fire_storm_statset_1", baseFlags = { spell = true, + area = true, + duration = true, }, constantStats = { + { "fire_storm_fireball_delay_ms", 200 }, + { "firestorm_max_number_of_storms", 1 }, + { "base_skill_effect_duration", 6000 }, + { "active_skill_base_secondary_area_of_effect_radius", 28 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "rain_hit_delay_ms", 150 }, - { "active_skill_base_area_of_effect_radius", 18 }, + { "firestorm_improved_bolts_per_ignite_consumed", 5 }, + { "firestorm_secondary_radius_+_if_consumed_fire_infusion", 18 }, + { "firestorm_bolt_frequency_+%_if_consumed_fire_infusion", 200 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_skill_show_average_damage_instead_of_dps", + "is_area_damage", + "can_perform_skill_while_moving", + "never_ignite", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "active_skill_consumes_a_cold_infusion", + "active_skill_consumes_a_fire_infusion", + "active_skill_consumes_a_lightning_infusion", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 0, 0, 2, 3, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 2, 4, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 3, 5, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 4, 6, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 5, 8, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 7, 10, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 8, 12, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 10, 15, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 12, 18, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 14, 21, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 16, 24, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 19, 28, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 22, 33, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 25, 38, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 29, 44, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 33, 50, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 38, 58, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 44, 66, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 50, 76, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 58, 86, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 66, 99, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 75, 113, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 86, 129, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 98, 147, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 112, 168, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 128, 192, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 146, 220, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 167, 251, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 191, 287, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 219, 328, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 251, 376, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 287, 431, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 329, 494, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 378, 567, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 434, 651, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 499, 749, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 574, 862, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 662, 993, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 763, 1145, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 882, 1322, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Lightning Bolts", + baseEffectiveness = 0.66000002622604, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, + statDescriptionScope = "fire_storm_statset_2", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "fire_storm_fireball_delay_ms", 200 }, + { "firestorm_max_number_of_storms", 1 }, + { "base_skill_effect_duration", 6000 }, + { "active_skill_base_secondary_area_of_effect_radius", 28 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "rain_hit_delay_ms", 150 }, + { "firestorm_improved_bolts_per_ignite_consumed", 5 }, + { "firestorm_secondary_radius_+_if_consumed_fire_infusion", 18 }, + { "firestorm_bolt_frequency_+%_if_consumed_fire_infusion", 200 }, + { "active_skill_base_area_of_effect_radius", 7 }, + }, + stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", "base_skill_show_average_damage_instead_of_dps", "is_area_damage", "can_perform_skill_while_moving", "never_ignite", "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "active_skill_consumes_a_cold_infusion", + "active_skill_consumes_a_fire_infusion", + "active_skill_consumes_a_lightning_infusion", "display_statset_hide_usage_stats", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 33, 50, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 43, 65, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 55, 82, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 67, 101, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 81, 122, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 97, 146, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 114, 172, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 134, 201, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 155, 233, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 179, 268, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 205, 308, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 235, 352, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 268, 401, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 304, 456, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 345, 517, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 390, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 440, 660, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 496, 744, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 559, 838, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 628, 942, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 706, 1059, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 793, 1190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 891, 1336, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 1000, 1500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 1122, 1683, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 1259, 1889, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 1413, 2119, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 1585, 2378, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 1779, 2669, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 1998, 2996, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 2243, 3365, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 2520, 3780, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 2832, 4248, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 3184, 4776, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 3582, 5373, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 4032, 6048, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 4541, 6811, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 5118, 7677, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 1, 5, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 1, 7, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1, 9, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1, 12, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 1, 15, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 1, 18, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 1, 22, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 1, 27, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 2, 32, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 2, 37, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 2, 44, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 3, 51, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 3, 59, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 4, 68, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 4, 79, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 5, 90, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 5, 104, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 6, 119, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 7, 136, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 8, 156, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 9, 178, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 11, 203, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 12, 232, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 14, 265, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 16, 303, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 18, 346, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 21, 396, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 24, 452, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 27, 517, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 31, 592, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 36, 677, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 41, 776, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 47, 890, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 54, 1021, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 62, 1173, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 71, 1349, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 82, 1553, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 94, 1789, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 109, 2063, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 125, 2382, critChance = 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7088,60 +7794,60 @@ skills["FlameWallPlayer"] = { name = "Flame Wall", baseTypeName = "Flame Wall", color = 3, - description = "Create a wall of Fire in front of the character, which Ignites everything within its area. Any Projectiles fired through the wall by you and Allies deal added Fire damage and inflict the Ignite on hit.", - skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Create a wall of Fire in front of the character, which Ignites everything within its area. Any Projectiles fired through the wall by you and Allies deal added Fire damage. Consumes a Lightning Infusion if possible to also add Lightning damage to the Projectiles.", + skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Damage] = true, }, castTime = 1, qualityStats = { - { "active_skill_ignite_effect_+%_final", 1 }, + { "active_skill_ignite_chance_+%_final", 1 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 12, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 13, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 17, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 19, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 22, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 25, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 28, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 32, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 36, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 41, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 47, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 53, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 60, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 68, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 77, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 87, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 99, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 112, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 127, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 163, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 184, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 209, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 236, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 267, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 343, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 388, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 439, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 497, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 562, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 636, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 720, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 815, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 922, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1044, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1182, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1337, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1513, }, }, + [1] = { critChance = 5, levelRequirement = 0, cost = { Mana = 10, }, }, + [2] = { critChance = 5, levelRequirement = 3, cost = { Mana = 12, }, }, + [3] = { critChance = 5, levelRequirement = 6, cost = { Mana = 15, }, }, + [4] = { critChance = 5, levelRequirement = 10, cost = { Mana = 17, }, }, + [5] = { critChance = 5, levelRequirement = 14, cost = { Mana = 20, }, }, + [6] = { critChance = 5, levelRequirement = 18, cost = { Mana = 23, }, }, + [7] = { critChance = 5, levelRequirement = 22, cost = { Mana = 26, }, }, + [8] = { critChance = 5, levelRequirement = 26, cost = { Mana = 30, }, }, + [9] = { critChance = 5, levelRequirement = 31, cost = { Mana = 34, }, }, + [10] = { critChance = 5, levelRequirement = 36, cost = { Mana = 38, }, }, + [11] = { critChance = 5, levelRequirement = 41, cost = { Mana = 43, }, }, + [12] = { critChance = 5, levelRequirement = 46, cost = { Mana = 48, }, }, + [13] = { critChance = 5, levelRequirement = 52, cost = { Mana = 54, }, }, + [14] = { critChance = 5, levelRequirement = 58, cost = { Mana = 60, }, }, + [15] = { critChance = 5, levelRequirement = 64, cost = { Mana = 67, }, }, + [16] = { critChance = 5, levelRequirement = 66, cost = { Mana = 74, }, }, + [17] = { critChance = 5, levelRequirement = 72, cost = { Mana = 82, }, }, + [18] = { critChance = 5, levelRequirement = 78, cost = { Mana = 91, }, }, + [19] = { critChance = 5, levelRequirement = 84, cost = { Mana = 101, }, }, + [20] = { critChance = 5, levelRequirement = 90, cost = { Mana = 111, }, }, + [21] = { critChance = 5, levelRequirement = 90, cost = { Mana = 123, }, }, + [22] = { critChance = 5, levelRequirement = 90, cost = { Mana = 135, }, }, + [23] = { critChance = 5, levelRequirement = 90, cost = { Mana = 149, }, }, + [24] = { critChance = 5, levelRequirement = 90, cost = { Mana = 164, }, }, + [25] = { critChance = 5, levelRequirement = 90, cost = { Mana = 180, }, }, + [26] = { critChance = 5, levelRequirement = 90, cost = { Mana = 198, }, }, + [27] = { critChance = 5, levelRequirement = 90, cost = { Mana = 217, }, }, + [28] = { critChance = 5, levelRequirement = 90, cost = { Mana = 237, }, }, + [29] = { critChance = 5, levelRequirement = 90, cost = { Mana = 260, }, }, + [30] = { critChance = 5, levelRequirement = 90, cost = { Mana = 284, }, }, + [31] = { critChance = 5, levelRequirement = 90, cost = { Mana = 311, }, }, + [32] = { critChance = 5, levelRequirement = 90, cost = { Mana = 339, }, }, + [33] = { critChance = 5, levelRequirement = 90, cost = { Mana = 370, }, }, + [34] = { critChance = 5, levelRequirement = 90, cost = { Mana = 404, }, }, + [35] = { critChance = 5, levelRequirement = 90, cost = { Mana = 441, }, }, + [36] = { critChance = 5, levelRequirement = 90, cost = { Mana = 480, }, }, + [37] = { critChance = 5, levelRequirement = 90, cost = { Mana = 523, }, }, + [38] = { critChance = 5, levelRequirement = 90, cost = { Mana = 570, }, }, + [39] = { critChance = 5, levelRequirement = 90, cost = { Mana = 620, }, }, + [40] = { critChance = 5, levelRequirement = 90, cost = { Mana = 674, }, }, }, statSets = { [1] = { label = "Wall", - baseEffectiveness = 3, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + baseEffectiveness = 1.7000000476837, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "firewall", statMap = { ["flame_wall_minimum_added_fire_damage"] = { @@ -7158,70 +7864,75 @@ skills["FlameWallPlayer"] = { { "firewall_attached_projectile_effect_mtx", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_energy_generated_+%_final", -92 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "console_cast_on_self_custom_range", 15 }, + { "active_skill_energy_generated_+%_final", -50 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "base_fire_damage_to_deal_per_minute", "wall_maximum_length", "base_skill_effect_duration", "is_area_damage", "can_perform_skill_while_moving", + "quality_hide_display_character_panel", + "active_skill_consumes_a_lightning_infusion", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "base_fire_damage_to_deal_per_minute", "base_skill_effect_duration", }, levels = { - [1] = { 9, 14, 50, 4500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 13, 19, 51, 4600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 18, 26, 52, 4700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 23, 35, 53, 4800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 29, 44, 54, 4900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 36, 54, 55, 5000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 44, 66, 56, 5100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 53, 79, 57, 5200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 63, 94, 58, 5300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 74, 111, 59, 5400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 86, 130, 60, 5500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 100, 151, 61, 5600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 116, 174, 62, 5700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 134, 201, 63, 5800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 154, 231, 64, 5900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 176, 264, 65, 6000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 202, 302, 66, 6100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 230, 345, 67, 6200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 262, 393, 68, 6300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 299, 448, 69, 6400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 340, 510, 70, 6500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 386, 579, 71, 6600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 439, 658, 72, 6700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 499, 748, 73, 6800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 566, 849, 74, 6900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 643, 965, 75, 7000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 731, 1096, 76, 7100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 830, 1245, 77, 7200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 943, 1415, 78, 7300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1073, 1609, 79, 7400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1220, 1830, 80, 7450, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1389, 2083, 81, 7500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1581, 2372, 82, 7550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1802, 2703, 83, 7600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2055, 3083, 84, 7650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2345, 3518, 85, 7700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2679, 4019, 86, 7750, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3063, 4595, 87, 7800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 3505, 5258, 88, 7850, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4015, 6023, 89, 7900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 5, 8, 105, 50, 4500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 11, 141, 51, 4600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 193, 52, 4700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 19, 253, 53, 4800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 16, 24, 320, 54, 4900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 20, 30, 396, 55, 5000, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 24, 37, 483, 56, 5100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 29, 44, 581, 57, 5200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 52, 692, 58, 5300, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 41, 62, 819, 59, 5400, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 49, 73, 962, 60, 5500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 57, 85, 1126, 61, 5600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 66, 99, 1311, 62, 5700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 77, 115, 1522, 63, 5800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 89, 134, 1762, 64, 5900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 103, 154, 2035, 65, 6000, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 119, 178, 2347, 66, 6100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 137, 205, 2703, 67, 6200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 157, 236, 3110, 68, 6300, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 181, 271, 3575, 69, 6400, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 208, 311, 4108, 70, 6500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 238, 358, 4718, 71, 6600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 274, 411, 5419, 72, 6700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 314, 472, 6223, 73, 6800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 361, 542, 7149, 74, 6900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 415, 623, 8214, 75, 7000, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 477, 716, 9443, 76, 7100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 549, 823, 10861, 77, 7200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 632, 947, 12499, 78, 7300, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 727, 1091, 14396, 79, 7400, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 838, 1258, 16593, 80, 7450, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 967, 1451, 19142, 81, 7500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1117, 1675, 22104, 82, 7550, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1291, 1936, 25550, 83, 7600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1494, 2241, 29564, 84, 7650, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1730, 2596, 34247, 85, 7700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2007, 3010, 39718, 86, 7750, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2330, 3495, 46118, 87, 7800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2709, 4064, 53617, 88, 7850, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3154, 4730, 62416, 89, 7900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { label = "Projectile Damage", baseEffectiveness = 0.60000002384186, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0017999999690801, + incrementalEffectiveness = 0.11999999731779, + damageIncrementalEffectiveness = 0.0015000000130385, statDescriptionScope = "firewall", baseFlags = { }, @@ -7230,66 +7941,72 @@ skills["FlameWallPlayer"] = { { "firewall_attached_projectile_effect_mtx", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_energy_generated_+%_final", -92 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "console_cast_on_self_custom_range", 15 }, + { "active_skill_energy_generated_+%_final", -50 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "base_fire_damage_to_deal_per_minute", "flame_wall_minimum_added_fire_damage", "flame_wall_maximum_added_fire_damage", + "flame_wall_minimum_added_lightning_damage_to_add_to_projectile", + "flame_wall_maximum_added_lightning_damage_to_add_to_projectile", "wall_maximum_length", "base_skill_effect_duration", "is_area_damage", "can_perform_skill_while_moving", + "active_skill_consumes_a_lightning_infusion", "display_statset_hide_usage_stats", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "base_fire_damage_to_deal_per_minute", "base_skill_effect_duration", }, levels = { - [1] = { 0, 0, 2, 3, 50, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 3, 4, 51, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 3, 5, 52, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 4, 7, 53, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 5, 8, 54, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 7, 10, 55, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 8, 12, 56, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 9, 13, 57, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 10, 16, 58, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 12, 18, 59, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 13, 20, 60, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 15, 23, 61, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 17, 25, 62, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 19, 28, 63, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 21, 31, 64, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 23, 34, 65, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 25, 37, 66, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 27, 41, 67, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 30, 44, 68, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 32, 48, 69, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 35, 53, 70, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 38, 57, 71, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 41, 62, 72, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 44, 66, 73, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 48, 72, 74, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 51, 77, 75, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 55, 83, 76, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 59, 89, 77, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 63, 95, 78, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 68, 102, 79, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 73, 109, 80, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 78, 116, 81, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 83, 124, 82, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 88, 133, 83, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 94, 141, 84, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 100, 151, 85, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 107, 161, 86, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 114, 171, 87, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 121, 182, 88, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 129, 193, 89, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 0, 2, 3, 1, 4, 50, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 0, 2, 4, 1, 6, 51, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 0, 3, 5, 1, 8, 52, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 0, 4, 6, 1, 10, 53, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 0, 5, 7, 1, 12, 54, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 0, 6, 9, 1, 14, 55, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 0, 7, 10, 1, 16, 56, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 0, 8, 12, 1, 19, 57, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 0, 9, 14, 1, 22, 58, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 0, 10, 15, 1, 24, 59, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 0, 12, 17, 1, 28, 60, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 0, 13, 19, 2, 31, 61, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 0, 14, 22, 2, 34, 62, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 0, 16, 24, 2, 38, 63, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 0, 18, 26, 2, 42, 64, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 0, 19, 29, 2, 46, 65, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 0, 21, 32, 3, 50, 66, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 0, 23, 35, 3, 55, 67, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 0, 25, 38, 3, 59, 68, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 0, 27, 41, 3, 65, 69, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 0, 29, 44, 4, 70, 70, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 0, 32, 48, 4, 75, 71, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 0, 34, 51, 4, 81, 72, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 0, 37, 55, 5, 87, 73, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 0, 40, 59, 5, 94, 74, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 0, 42, 64, 5, 101, 75, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 0, 45, 68, 6, 108, 76, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 0, 49, 73, 6, 115, 77, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 0, 52, 78, 6, 123, 78, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 0, 55, 83, 7, 132, 79, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 0, 59, 89, 7, 140, 80, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 0, 63, 95, 8, 150, 81, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 0, 67, 101, 8, 159, 82, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 0, 71, 107, 9, 169, 83, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 0, 76, 114, 9, 180, 84, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 0, 80, 121, 10, 191, 85, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 0, 85, 128, 11, 203, 86, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 0, 91, 136, 11, 215, 87, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 0, 96, 144, 12, 228, 88, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 0, 102, 153, 13, 242, 89, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7298,60 +8015,60 @@ skills["FlameblastPlayer"] = { name = "Flameblast", baseTypeName = "Flameblast", color = 3, - description = "Channel to build destructive energy around you or a targeted Solar Orb. Releasing the energy causes a devastating explosion that is larger and more intense the longer you Channelled for.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.GainsStages] = true, [SkillType.Cooldown] = true, }, + description = "Channel to build destructive energy around you. Releasing the energy causes a devastating explosion that is larger and more intense the longer you Channelled for.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.GainsStages] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.25, qualityStats = { { "active_skill_cast_speed_+%_final", 1 }, }, levels = { - [1] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { ManaPerMinute = 375, }, }, - [2] = { critChance = 8, storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { ManaPerMinute = 424, }, }, - [3] = { critChance = 8, storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { ManaPerMinute = 480, }, }, - [4] = { critChance = 8, storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { ManaPerMinute = 543, }, }, - [5] = { critChance = 8, storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { ManaPerMinute = 615, }, }, - [6] = { critChance = 8, storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { ManaPerMinute = 696, }, }, - [7] = { critChance = 8, storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { ManaPerMinute = 787, }, }, - [8] = { critChance = 8, storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { ManaPerMinute = 891, }, }, - [9] = { critChance = 8, storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { ManaPerMinute = 1008, }, }, - [10] = { critChance = 8, storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { ManaPerMinute = 1141, }, }, - [11] = { critChance = 8, storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { ManaPerMinute = 1292, }, }, - [12] = { critChance = 8, storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { ManaPerMinute = 1462, }, }, - [13] = { critChance = 8, storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { ManaPerMinute = 1655, }, }, - [14] = { critChance = 8, storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { ManaPerMinute = 1873, }, }, - [15] = { critChance = 8, storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { ManaPerMinute = 2119, }, }, - [16] = { critChance = 8, storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { ManaPerMinute = 2398, }, }, - [17] = { critChance = 8, storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { ManaPerMinute = 2714, }, }, - [18] = { critChance = 8, storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { ManaPerMinute = 3072, }, }, - [19] = { critChance = 8, storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { ManaPerMinute = 3476, }, }, - [20] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 3934, }, }, - [21] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 4453, }, }, - [22] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5039, }, }, - [23] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5703, }, }, - [24] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 6454, }, }, - [25] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 7304, }, }, - [26] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 8266, }, }, - [27] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 9355, }, }, - [28] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 10587, }, }, - [29] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 11981, }, }, - [30] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 13559, }, }, - [31] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 15345, }, }, - [32] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 17366, }, }, - [33] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 19653, }, }, - [34] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 22241, }, }, - [35] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 25170, }, }, - [36] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 28485, }, }, - [37] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 32237, }, }, - [38] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 36482, }, }, - [39] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 41287, }, }, - [40] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 46725, }, }, + [1] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { ManaPerMinute = 337, }, }, + [2] = { critChance = 8, storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { ManaPerMinute = 398, }, }, + [3] = { critChance = 8, storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { ManaPerMinute = 467, }, }, + [4] = { critChance = 8, storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { ManaPerMinute = 542, }, }, + [5] = { critChance = 8, storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { ManaPerMinute = 625, }, }, + [6] = { critChance = 8, storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { ManaPerMinute = 716, }, }, + [7] = { critChance = 8, storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { ManaPerMinute = 817, }, }, + [8] = { critChance = 8, storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { ManaPerMinute = 928, }, }, + [9] = { critChance = 8, storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { ManaPerMinute = 1050, }, }, + [10] = { critChance = 8, storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { ManaPerMinute = 1183, }, }, + [11] = { critChance = 8, storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { ManaPerMinute = 1330, }, }, + [12] = { critChance = 8, storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { ManaPerMinute = 1491, }, }, + [13] = { critChance = 8, storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { ManaPerMinute = 1667, }, }, + [14] = { critChance = 8, storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { ManaPerMinute = 1859, }, }, + [15] = { critChance = 8, storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { ManaPerMinute = 2070, }, }, + [16] = { critChance = 8, storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { ManaPerMinute = 2300, }, }, + [17] = { critChance = 8, storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { ManaPerMinute = 2551, }, }, + [18] = { critChance = 8, storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { ManaPerMinute = 2825, }, }, + [19] = { critChance = 8, storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { ManaPerMinute = 3124, }, }, + [20] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 3450, }, }, + [21] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 3805, }, }, + [22] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 4192, }, }, + [23] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 4613, }, }, + [24] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5070, }, }, + [25] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5568, }, }, + [26] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 6110, }, }, + [27] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 6698, }, }, + [28] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 7336, }, }, + [29] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 8030, }, }, + [30] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 8782, }, }, + [31] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 9599, }, }, + [32] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 10484, }, }, + [33] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 11444, }, }, + [34] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 12485, }, }, + [35] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 13612, }, }, + [36] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 14833, }, }, + [37] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 16156, }, }, + [38] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 17588, }, }, + [39] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 19137, }, }, + [40] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 20814, }, }, }, statSets = { [1] = { label = "Flameblast", baseEffectiveness = 2.2999999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "skill_stat_descriptions", baseFlags = { spell = true, @@ -7365,8 +8082,7 @@ skills["FlameblastPlayer"] = { { "base_minimum_channel_time_ms", 490 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "flameblast_cast_speed_+%_final_when_targeting_solar_orb", 30 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "spell_minimum_base_fire_damage", @@ -7383,45 +8099,45 @@ skills["FlameblastPlayer"] = { }, levels = { [1] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 23, 34, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 57, 85, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 17, 26, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, [11] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 154, 232, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 176, 265, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 201, 302, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 229, 343, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 260, 391, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 296, 444, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 336, 505, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 382, 573, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 434, 651, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 493, 740, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 560, 840, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 636, 955, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 723, 1085, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 822, 1233, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 935, 1403, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1065, 1597, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1212, 1818, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1382, 2072, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1576, 2363, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1798, 2697, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2054, 3081, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 2348, 3523, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2687, 4031, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 3078, 4618, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [13] = { 90, 134, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 120, 181, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 139, 209, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 160, 241, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 185, 277, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 213, 319, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 244, 367, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 281, 421, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 323, 484, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 370, 556, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 425, 638, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 489, 733, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 562, 842, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 645, 968, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 742, 1114, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 854, 1282, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 984, 1476, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1134, 1701, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1309, 1963, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1511, 2267, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1747, 2620, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2021, 3031, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2341, 3512, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2715, 4073, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 3153, 4729, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3665, 5498, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 4267, 6400, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7431,52 +8147,52 @@ skills["FlammabilityPlayer"] = { baseTypeName = "Flammability", color = 3, description = "Curse all targets in an area after a short delay, lowering their Fire Resistance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "curse_effect_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, }, statSets = { [1] = { @@ -7498,7 +8214,7 @@ skills["FlammabilityPlayer"] = { { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_skill_effect_duration", @@ -7560,55 +8276,55 @@ skills["FlickerStrikePlayer"] = { baseTypeName = "Flicker Strike", color = 3, description = "Teleport to a enemy and Strike them. Consumes Power Charges to perform additional teleporting Strikes on nearby enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "charge_skip_consume_chance_%", 1 }, + { "active_skill_critical_strike_chance_+%_final", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 13, }, }, + [1] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 12, }, }, [2] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 14, }, }, - [3] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 10, cost = { Mana = 17, }, }, - [5] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.16, levelRequirement = 14, cost = { Mana = 19, }, }, - [6] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.26, levelRequirement = 18, cost = { Mana = 21, }, }, - [7] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.36, levelRequirement = 22, cost = { Mana = 24, }, }, - [8] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.45, levelRequirement = 26, cost = { Mana = 26, }, }, - [9] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.54, levelRequirement = 31, cost = { Mana = 29, }, }, - [10] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.64, levelRequirement = 36, cost = { Mana = 32, }, }, - [11] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.75, levelRequirement = 41, cost = { Mana = 36, }, }, - [12] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.87, levelRequirement = 46, cost = { Mana = 40, }, }, - [13] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 44, }, }, - [14] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.13, levelRequirement = 58, cost = { Mana = 49, }, }, - [15] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.28, levelRequirement = 64, cost = { Mana = 54, }, }, - [16] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 60, }, }, + [3] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 16, }, }, + [4] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 10, cost = { Mana = 19, }, }, + [5] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.16, levelRequirement = 14, cost = { Mana = 21, }, }, + [6] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.26, levelRequirement = 18, cost = { Mana = 24, }, }, + [7] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.36, levelRequirement = 22, cost = { Mana = 26, }, }, + [8] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.45, levelRequirement = 26, cost = { Mana = 29, }, }, + [9] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.54, levelRequirement = 31, cost = { Mana = 32, }, }, + [10] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.64, levelRequirement = 36, cost = { Mana = 36, }, }, + [11] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.75, levelRequirement = 41, cost = { Mana = 40, }, }, + [12] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.87, levelRequirement = 46, cost = { Mana = 43, }, }, + [13] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 48, }, }, + [14] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.13, levelRequirement = 58, cost = { Mana = 52, }, }, + [15] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.28, levelRequirement = 64, cost = { Mana = 57, }, }, + [16] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 62, }, }, [17] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.62, levelRequirement = 72, cost = { Mana = 67, }, }, - [18] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.82, levelRequirement = 78, cost = { Mana = 74, }, }, - [19] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.03, levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 91, }, }, - [21] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.52, levelRequirement = 90, cost = { Mana = 101, }, }, - [22] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 112, }, }, - [23] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 124, }, }, - [24] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.4, levelRequirement = 90, cost = { Mana = 138, }, }, - [25] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 152, }, }, - [26] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.11, levelRequirement = 90, cost = { Mana = 169, }, }, - [27] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.5, levelRequirement = 90, cost = { Mana = 187, }, }, - [28] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.93, levelRequirement = 90, cost = { Mana = 208, }, }, - [29] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 230, }, }, - [30] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.88, levelRequirement = 90, cost = { Mana = 255, }, }, - [31] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.41, levelRequirement = 90, cost = { Mana = 283, }, }, - [32] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.98, levelRequirement = 90, cost = { Mana = 313, }, }, - [33] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 8.6, levelRequirement = 90, cost = { Mana = 347, }, }, - [34] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.26, levelRequirement = 90, cost = { Mana = 385, }, }, - [35] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.98, levelRequirement = 90, cost = { Mana = 426, }, }, - [36] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 10.75, levelRequirement = 90, cost = { Mana = 473, }, }, - [37] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 11.58, levelRequirement = 90, cost = { Mana = 524, }, }, - [38] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 12.48, levelRequirement = 90, cost = { Mana = 580, }, }, - [39] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 13.44, levelRequirement = 90, cost = { Mana = 643, }, }, - [40] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 14.48, levelRequirement = 90, cost = { Mana = 713, }, }, + [18] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.82, levelRequirement = 78, cost = { Mana = 72, }, }, + [19] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.03, levelRequirement = 84, cost = { Mana = 78, }, }, + [20] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 85, }, }, + [21] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.52, levelRequirement = 90, cost = { Mana = 92, }, }, + [22] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 99, }, }, + [23] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 106, }, }, + [24] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.4, levelRequirement = 90, cost = { Mana = 114, }, }, + [25] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 123, }, }, + [26] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.11, levelRequirement = 90, cost = { Mana = 132, }, }, + [27] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.5, levelRequirement = 90, cost = { Mana = 142, }, }, + [28] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.93, levelRequirement = 90, cost = { Mana = 152, }, }, + [29] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 163, }, }, + [30] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.88, levelRequirement = 90, cost = { Mana = 174, }, }, + [31] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.41, levelRequirement = 90, cost = { Mana = 186, }, }, + [32] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.98, levelRequirement = 90, cost = { Mana = 199, }, }, + [33] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 8.6, levelRequirement = 90, cost = { Mana = 212, }, }, + [34] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.26, levelRequirement = 90, cost = { Mana = 227, }, }, + [35] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.98, levelRequirement = 90, cost = { Mana = 242, }, }, + [36] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 10.75, levelRequirement = 90, cost = { Mana = 258, }, }, + [37] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 11.58, levelRequirement = 90, cost = { Mana = 275, }, }, + [38] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 12.48, levelRequirement = 90, cost = { Mana = 293, }, }, + [39] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 13.44, levelRequirement = 90, cost = { Mana = 312, }, }, + [40] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 14.48, levelRequirement = 90, cost = { Mana = 332, }, }, }, statSets = { [1] = { @@ -7679,53 +8395,53 @@ skills["FreezingMarkPlayer"] = { name = "Freezing Mark", baseTypeName = "Freezing Mark", color = 3, - description = "Mark a target, making them more susceptible to being Frozen. When the Marked target dies, a Cold nova erupts from their corpse. This nova does not use your Weapon Damage, and instead uses its own base Attack Damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Cold] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, }, + description = "Mark a target, making them more susceptible to being Frozen. When the Marked target dies, a Cold explosion erupts from their corpse. This explosion does not use your Weapon Damage, and instead uses its own base Attack Damage.", + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Cold] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.5, qualityStats = { { "freezing_mark_hit_damage_freeze_multiplier_+%_final", 1 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 23, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 25, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 27, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 29, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 31, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 33, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 35, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 41, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 44, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 47, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 50, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 54, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 58, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 67, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 77, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 88, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 117, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 135, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 166, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 191, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 205, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 235, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 252, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 271, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 290, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 311, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 334, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 23, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 25, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 28, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 31, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 33, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 36, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 39, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 49, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 52, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 56, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 59, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 63, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 67, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 71, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 79, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 83, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 97, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 102, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 107, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 117, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 128, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 146, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 159, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 166, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 172, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 179, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 194, }, }, }, statSets = { [1] = { @@ -7740,7 +8456,7 @@ skills["FreezingMarkPlayer"] = { { "base_skill_effect_duration", 8000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "number_of_marks_allowed_per_type", 1 }, }, stats = { @@ -7797,7 +8513,7 @@ skills["FreezingMarkPlayer"] = { skills["TriggeredFreezingMarkNovaPlayer"] = { name = "Freezing Nova", hidden = true, - skillTypes = { [SkillType.Nova] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cold] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cold] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, }, castTime = 1, qualityStats = { }, @@ -7845,7 +8561,7 @@ skills["TriggeredFreezingMarkNovaPlayer"] = { }, statSets = { [1] = { - label = "Nova", + label = "Explosion", baseEffectiveness = 1.8600000143051, incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "freezing_mark_nova", @@ -7862,6 +8578,7 @@ skills["TriggeredFreezingMarkNovaPlayer"] = { "triggered_by_freezing_mark", "replace_main_hand_unarmed_attack_stats_with_nothing_type", "display_statset_hide_usage_stats", + "triggerable_in_any_set", }, levels = { [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, @@ -7914,7 +8631,7 @@ skills["FreezingShardsPlayer"] = { fromItem = true, color = 3, description = "Launch icy Projectiles in a sweeping arc. Multiple Projectiles can hit the same enemy.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.Cold] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1.2, qualityStats = { { "base_number_of_projectiles", 0.05 }, @@ -7964,9 +8681,9 @@ skills["FreezingShardsPlayer"] = { statSets = { [1] = { label = "Freezing Shards", - baseEffectiveness = 0.6700000166893, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0060000000521541, + baseEffectiveness = 0.74000000953674, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, statDescriptionScope = "skill_stat_descriptions", baseFlags = { spell = true, @@ -7976,7 +8693,7 @@ skills["FreezingShardsPlayer"] = { { "base_number_of_projectiles", 5 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_hit_damage_freeze_multiplier_+%_final", 100 }, }, stats = { @@ -7987,6 +8704,7 @@ skills["FreezingShardsPlayer"] = { "check_for_targets_between_initiator_and_projectile_source", "projectile_uses_contact_direction", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", }, notMinionStat = { "spell_minimum_base_cold_damage", @@ -7995,44 +8713,44 @@ skills["FreezingShardsPlayer"] = { levels = { [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [3] = { 4, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, [7] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, [8] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 15, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 18, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, 91, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 68, 101, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 75, 113, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 105, 157, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 145, 217, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 161, 242, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 200, 300, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 249, 373, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 344, 517, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 429, 643, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 479, 718, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [9] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 22, 34, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 30, 44, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 38, 58, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 72, 108, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 92, 138, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 104, 155, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 132, 198, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 168, 252, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 213, 320, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 241, 361, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 272, 408, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 307, 461, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 347, 521, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 393, 589, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 444, 666, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 503, 755, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 570, 855, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 646, 970, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 734, 1100, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -8041,60 +8759,60 @@ skills["FrostBombPlayer"] = { name = "Frost Bomb", baseTypeName = "Frost Bomb", color = 3, - description = "Create a pulsing Orb of frost. Each pulse inflicts Cold Exposure on nearby enemies. When the Orb's duration ends, it explodes, dealing Cold damage to surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Create a pulsing Orb of frost. Each pulse inflicts Elemental Exposure on nearby enemies. When the Orb's duration ends, it Detonates, dealing Cold damage to surrounding enemies and leaving behind a Cold Infusion.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.GeneratesRemnants] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Limit] = true, }, castTime = 0.8, qualityStats = { - { "cold_exposure_effect_+%", 1 }, + { "active_skill_all_elemental_exposure_compounding_magnitude_cap", 0.5 }, }, levels = { - [1] = { critChance = 13, storedUses = 1, levelRequirement = 0, cooldown = 3.5, cost = { Mana = 10, }, }, - [2] = { critChance = 13, storedUses = 1, levelRequirement = 3, cooldown = 3.5, cost = { Mana = 12, }, }, - [3] = { critChance = 13, storedUses = 1, levelRequirement = 6, cooldown = 3.5, cost = { Mana = 13, }, }, - [4] = { critChance = 13, storedUses = 1, levelRequirement = 10, cooldown = 3.5, cost = { Mana = 15, }, }, - [5] = { critChance = 13, storedUses = 1, levelRequirement = 14, cooldown = 3.5, cost = { Mana = 17, }, }, - [6] = { critChance = 13, storedUses = 1, levelRequirement = 18, cooldown = 3.5, cost = { Mana = 20, }, }, - [7] = { critChance = 13, storedUses = 1, levelRequirement = 22, cooldown = 3.5, cost = { Mana = 22, }, }, - [8] = { critChance = 13, storedUses = 1, levelRequirement = 26, cooldown = 3.5, cost = { Mana = 25, }, }, - [9] = { critChance = 13, storedUses = 1, levelRequirement = 31, cooldown = 3.5, cost = { Mana = 29, }, }, - [10] = { critChance = 13, storedUses = 1, levelRequirement = 36, cooldown = 3.5, cost = { Mana = 32, }, }, - [11] = { critChance = 13, storedUses = 1, levelRequirement = 41, cooldown = 3.5, cost = { Mana = 37, }, }, - [12] = { critChance = 13, storedUses = 1, levelRequirement = 46, cooldown = 3.5, cost = { Mana = 42, }, }, - [13] = { critChance = 13, storedUses = 1, levelRequirement = 52, cooldown = 3.5, cost = { Mana = 47, }, }, - [14] = { critChance = 13, storedUses = 1, levelRequirement = 58, cooldown = 3.5, cost = { Mana = 53, }, }, - [15] = { critChance = 13, storedUses = 1, levelRequirement = 64, cooldown = 3.5, cost = { Mana = 61, }, }, - [16] = { critChance = 13, storedUses = 1, levelRequirement = 66, cooldown = 3.5, cost = { Mana = 69, }, }, - [17] = { critChance = 13, storedUses = 1, levelRequirement = 72, cooldown = 3.5, cost = { Mana = 78, }, }, - [18] = { critChance = 13, storedUses = 1, levelRequirement = 78, cooldown = 3.5, cost = { Mana = 88, }, }, - [19] = { critChance = 13, storedUses = 1, levelRequirement = 84, cooldown = 3.5, cost = { Mana = 100, }, }, - [20] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 113, }, }, - [21] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 128, }, }, - [22] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 145, }, }, - [23] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 164, }, }, - [24] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 185, }, }, - [25] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 210, }, }, - [26] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 238, }, }, - [27] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 269, }, }, - [28] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 304, }, }, - [29] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 345, }, }, - [30] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 390, }, }, - [31] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 441, }, }, - [32] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 500, }, }, - [33] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 566, }, }, - [34] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 640, }, }, - [35] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 724, }, }, - [36] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 820, }, }, - [37] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 928, }, }, - [38] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 1050, }, }, - [39] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 1189, }, }, - [40] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 1345, }, }, + [1] = { critChance = 13, storedUses = 1, levelRequirement = 0, cooldown = 6, cost = { Mana = 9, }, }, + [2] = { critChance = 13, storedUses = 1, levelRequirement = 3, cooldown = 6, cost = { Mana = 11, }, }, + [3] = { critChance = 13, storedUses = 1, levelRequirement = 6, cooldown = 6, cost = { Mana = 13, }, }, + [4] = { critChance = 13, storedUses = 1, levelRequirement = 10, cooldown = 6, cost = { Mana = 15, }, }, + [5] = { critChance = 13, storedUses = 1, levelRequirement = 14, cooldown = 6, cost = { Mana = 18, }, }, + [6] = { critChance = 13, storedUses = 1, levelRequirement = 18, cooldown = 6, cost = { Mana = 20, }, }, + [7] = { critChance = 13, storedUses = 1, levelRequirement = 22, cooldown = 6, cost = { Mana = 23, }, }, + [8] = { critChance = 13, storedUses = 1, levelRequirement = 26, cooldown = 6, cost = { Mana = 26, }, }, + [9] = { critChance = 13, storedUses = 1, levelRequirement = 31, cooldown = 6, cost = { Mana = 30, }, }, + [10] = { critChance = 13, storedUses = 1, levelRequirement = 36, cooldown = 6, cost = { Mana = 34, }, }, + [11] = { critChance = 13, storedUses = 1, levelRequirement = 41, cooldown = 6, cost = { Mana = 38, }, }, + [12] = { critChance = 13, storedUses = 1, levelRequirement = 46, cooldown = 6, cost = { Mana = 42, }, }, + [13] = { critChance = 13, storedUses = 1, levelRequirement = 52, cooldown = 6, cost = { Mana = 48, }, }, + [14] = { critChance = 13, storedUses = 1, levelRequirement = 58, cooldown = 6, cost = { Mana = 53, }, }, + [15] = { critChance = 13, storedUses = 1, levelRequirement = 64, cooldown = 6, cost = { Mana = 59, }, }, + [16] = { critChance = 13, storedUses = 1, levelRequirement = 66, cooldown = 6, cost = { Mana = 66, }, }, + [17] = { critChance = 13, storedUses = 1, levelRequirement = 72, cooldown = 6, cost = { Mana = 73, }, }, + [18] = { critChance = 13, storedUses = 1, levelRequirement = 78, cooldown = 6, cost = { Mana = 81, }, }, + [19] = { critChance = 13, storedUses = 1, levelRequirement = 84, cooldown = 6, cost = { Mana = 89, }, }, + [20] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 99, }, }, + [21] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 109, }, }, + [22] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 120, }, }, + [23] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 132, }, }, + [24] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 146, }, }, + [25] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 160, }, }, + [26] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 175, }, }, + [27] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 192, }, }, + [28] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 211, }, }, + [29] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 231, }, }, + [30] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 252, }, }, + [31] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 276, }, }, + [32] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 301, }, }, + [33] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 329, }, }, + [34] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 359, }, }, + [35] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 392, }, }, + [36] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 427, }, }, + [37] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 465, }, }, + [38] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 506, }, }, + [39] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 551, }, }, + [40] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 599, }, }, }, statSets = { [1] = { label = "Frost Bomb", - baseEffectiveness = 5.0199999809265, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0074999998323619, + baseEffectiveness = 2.4000000953674, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, statDescriptionScope = "frost_bomb", statMap = { ['skill_cold_exposure_magnitude'] = { @@ -8108,19 +8826,24 @@ skills["FrostBombPlayer"] = { duration = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 20 }, - { "base_skill_effect_duration", 3000 }, + { "active_skill_base_area_of_effect_radius", 24 }, + { "base_skill_detonation_time", 4000 }, { "base_secondary_skill_effect_duration", 8000 }, - { "skill_cold_exposure_magnitude", 20 }, { "spell_maximum_action_distance_+%", 400 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_all_elemental_exposure_magnitude", 20 }, + { "active_skill_all_elemental_exposure_compounding_magnitude", 2 }, + { "active_skill_all_elemental_exposure_compounding_magnitude_cap", 50 }, + { "active_skill_chill_as_though_damage_+%_final", 300 }, + { "base_maximum_number_of_frost_bombs", 1 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", "active_skill_base_area_of_effect_radius", + "frost_bomb_exposure_does_not_apply_to_enemies_of_level_higher_than_X", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "cannot_cancel_skill_before_contact_point", @@ -8131,306 +8854,559 @@ skills["FrostBombPlayer"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 16, 23, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 21, 32, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 29, 44, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 39, 58, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 49, 73, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 60, 90, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 73, 109, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 87, 131, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 103, 154, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 121, 181, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 141, 211, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 163, 244, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 188, 281, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 215, 323, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 246, 369, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 281, 421, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 320, 480, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 363, 545, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 412, 619, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 467, 701, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 529, 793, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 598, 897, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 676, 1014, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 764, 1145, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 862, 1293, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 974, 1460, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 1099, 1649, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1241, 1862, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1402, 2102, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1583, 2375, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1789, 2683, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 2022, 3033, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 2286, 3430, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 2587, 3880, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2929, 4393, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 3318, 4976, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 3761, 5641, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 4266, 6400, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 4844, 7266, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 5504, 8255, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 7, 11, 0, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 10, 15, 0, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 14, 21, 1, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 18, 27, 1, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 23, 34, 1, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 28, 42, 2, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 34, 51, 2, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 41, 61, 3, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 48, 73, 3, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 57, 86, 3, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 67, 100, 4, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 78, 117, 4, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 90, 135, 4, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 104, 156, 5, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 120, 180, 5, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 138, 208, 6, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 159, 238, 6, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 182, 273, 6, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 208, 313, 7, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 238, 358, 7, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 273, 409, 7, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 311, 467, 8, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 356, 534, 8, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 406, 609, 8, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 464, 696, 9, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 530, 795, 9, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 606, 909, 10, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 692, 1038, 10, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 792, 1188, 10, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 906, 1359, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1037, 1556, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1188, 1783, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1363, 2044, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1564, 2346, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1796, 2695, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2065, 3098, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2377, 3566, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2739, 4108, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3159, 4739, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3648, 5472, 13, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["FrostWallPlayer"] = { - name = "Frost Wall", - baseTypeName = "Frost Wall", +skills["FrostDartsPlayer"] = { + name = "Frost Darts", + baseTypeName = "Frost Darts", color = 3, - description = "Create a wall of Ice Crystals which holds back enemies. The Crystals explode if sufficiently damaged, or if pushed hard enough, damaging nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, [SkillType.Invokable] = true, [SkillType.Area] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SupportedByFountains] = true, [SkillType.IceCrystal] = true, }, + description = "Conjures a number of icy Projectiles that launch towards the target. Projectiles that Hit a Chilled or Frozen target create chunks of ice that deal additional damage on impacting the ground. Consumes a Cold Infusion if possible to cause each Projectile to lodge into the enemy then explode.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, }, castTime = 0.8, qualityStats = { - { "base_cooldown_speed_+%", 1 }, + { "spell_skills_fire_2_additional_projectiles_final_chance_%", 0.5 }, }, levels = { - [1] = { critChance = 11, storedUses = 3, levelRequirement = 0, cooldown = 5, cost = { Mana = 8, }, }, - [2] = { critChance = 11, storedUses = 3, levelRequirement = 3, cooldown = 5, cost = { Mana = 9, }, }, - [3] = { critChance = 11, storedUses = 3, levelRequirement = 6, cooldown = 5, cost = { Mana = 11, }, }, - [4] = { critChance = 11, storedUses = 3, levelRequirement = 10, cooldown = 5, cost = { Mana = 12, }, }, - [5] = { critChance = 11, storedUses = 3, levelRequirement = 14, cooldown = 5, cost = { Mana = 14, }, }, - [6] = { critChance = 11, storedUses = 3, levelRequirement = 18, cooldown = 5, cost = { Mana = 16, }, }, - [7] = { critChance = 11, storedUses = 3, levelRequirement = 22, cooldown = 5, cost = { Mana = 18, }, }, - [8] = { critChance = 11, storedUses = 3, levelRequirement = 26, cooldown = 5, cost = { Mana = 20, }, }, - [9] = { critChance = 11, storedUses = 3, levelRequirement = 31, cooldown = 5, cost = { Mana = 23, }, }, - [10] = { critChance = 11, storedUses = 3, levelRequirement = 36, cooldown = 5, cost = { Mana = 26, }, }, - [11] = { critChance = 11, storedUses = 3, levelRequirement = 41, cooldown = 5, cost = { Mana = 29, }, }, - [12] = { critChance = 11, storedUses = 3, levelRequirement = 46, cooldown = 5, cost = { Mana = 33, }, }, - [13] = { critChance = 11, storedUses = 3, levelRequirement = 52, cooldown = 5, cost = { Mana = 38, }, }, - [14] = { critChance = 11, storedUses = 3, levelRequirement = 58, cooldown = 5, cost = { Mana = 43, }, }, - [15] = { critChance = 11, storedUses = 3, levelRequirement = 64, cooldown = 5, cost = { Mana = 48, }, }, - [16] = { critChance = 11, storedUses = 3, levelRequirement = 66, cooldown = 5, cost = { Mana = 55, }, }, - [17] = { critChance = 11, storedUses = 3, levelRequirement = 72, cooldown = 5, cost = { Mana = 62, }, }, - [18] = { critChance = 11, storedUses = 3, levelRequirement = 78, cooldown = 5, cost = { Mana = 70, }, }, - [19] = { critChance = 11, storedUses = 3, levelRequirement = 84, cooldown = 5, cost = { Mana = 80, }, }, - [20] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 90, }, }, - [21] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 102, }, }, - [22] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 116, }, }, - [23] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 131, }, }, - [24] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 148, }, }, - [25] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 168, }, }, - [26] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 190, }, }, - [27] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 215, }, }, - [28] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 243, }, }, - [29] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 276, }, }, - [30] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 312, }, }, - [31] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 353, }, }, - [32] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 400, }, }, - [33] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 452, }, }, - [34] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 512, }, }, - [35] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 579, }, }, - [36] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 656, }, }, - [37] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 742, }, }, - [38] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 840, }, }, - [39] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 951, }, }, - [40] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 1076, }, }, + [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 5, }, }, + [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 6, }, }, + [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 18, }, }, + [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 20, }, }, + [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 22, }, }, + [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 25, }, }, + [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 28, }, }, + [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 32, }, }, + [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 35, }, }, + [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 39, }, }, + [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 44, }, }, + [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 48, }, }, + [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 53, }, }, + [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 59, }, }, + [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 65, }, }, + [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 72, }, }, + [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 79, }, }, + [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 87, }, }, + [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 96, }, }, + [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 105, }, }, + [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 115, }, }, + [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 126, }, }, + [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 138, }, }, + [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 151, }, }, + [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 165, }, }, + [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 181, }, }, + [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 197, }, }, + [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 215, }, }, + [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 235, }, }, + [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 256, }, }, + [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 279, }, }, + [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 303, }, }, + [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 330, }, }, + [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 359, }, }, }, statSets = { [1] = { - label = "Frost Wall", - baseEffectiveness = 2.2799999713898, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0054999999701977, - statDescriptionScope = "frost_wall_new", + label = "Projectile", + baseEffectiveness = 0.55000001192093, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "frost_darts_statset_0", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "base_number_of_projectiles", 3 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_is_projectile", + "can_perform_skill_while_moving", + "projectile_uses_contact_position", + "active_skill_consumes_a_cold_infusion", + "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", + "never_freeze_or_chill", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 28, 41, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 72, 108, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 102, 154, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 163, 244, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 206, 309, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 347, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 293, 439, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 372, 557, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 419, 628, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 473, 709, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Explosion", + baseEffectiveness = 0.80000001192093, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "frost_darts_statset_1", baseFlags = { spell = true, + projectile = true, area = true, - duration = true, }, constantStats = { - { "wall_expand_delay_ms", 150 }, - { "base_skill_effect_duration", 8000 }, - { "active_skill_base_area_of_effect_radius", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "frost_darts_explode_creates_X_mortars", 3 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", - "wall_maximum_length", - "frost_wall_maximum_life", - "base_skill_show_average_damage_instead_of_dps", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_is_projectile", + "can_perform_skill_while_moving", + "projectile_uses_contact_position", + "active_skill_consumes_a_cold_infusion", + "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", + "never_freeze_or_chill", "is_area_damage", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 0, 0, 2, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 3, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 6, 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 21, 31, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 27, 41, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 31, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 40, 60, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 46, 68, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 52, 77, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 58, 87, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 66, 98, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 74, 111, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 83, 125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 94, 140, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 105, 158, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 118, 177, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 133, 199, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 149, 223, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 167, 251, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 188, 282, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 211, 316, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 237, 355, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 266, 399, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 299, 449, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 336, 505, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 378, 568, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 426, 639, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 480, 720, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 541, 811, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 609, 914, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 688, 1031, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Ice Chunk", + baseEffectiveness = 0.64999997615814, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "frost_darts_statset_2", + baseFlags = { + spell = true, + projectile = true, + area = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 8 }, + { "skill_mortar_minimum_projectile_distance", 5 }, + { "skill_mortar_maximum_projectile_distance", 17 }, + { "base_number_of_projectiles", 2 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_is_projectile", "can_perform_skill_while_moving", + "projectile_uses_contact_position", + "active_skill_consumes_a_cold_infusion", + "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", + "never_freeze_or_chill", + "is_area_damage", + "random_projectile_direction", + "modifiers_to_projectile_count_do_not_apply", }, notMinionStat = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", }, levels = { - [1] = { 7, 11, 28, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, 28, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 13, 20, 28, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 17, 26, 28, 164, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 22, 32, 35, 240, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 26, 40, 35, 334, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 32, 48, 35, 460, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 38, 56, 35, 624, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 44, 66, 42, 832, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 51, 77, 42, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 59, 88, 42, 1438, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 67, 101, 42, 1866, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 77, 115, 49, 2408, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 87, 131, 49, 3086, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 99, 148, 49, 3940, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 111, 167, 49, 5016, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 125, 187, 56, 6362, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 140, 210, 56, 8032, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 157, 235, 56, 10118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 175, 263, 56, 12714, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 195, 293, 63, 13350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 218, 326, 63, 14017, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 242, 363, 63, 14718, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 269, 404, 63, 15454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 299, 448, 70, 16227, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 332, 498, 70, 17038, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 368, 552, 70, 17890, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 408, 613, 70, 18784, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 453, 679, 77, 19724, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 502, 753, 77, 20710, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 557, 835, 78, 21745, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 617, 925, 80, 22833, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 684, 1026, 81, 23974, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 758, 1137, 83, 25173, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 840, 1260, 85, 26431, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 932, 1398, 87, 27753, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1033, 1550, 88, 29141, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1146, 1720, 90, 30598, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1272, 1908, 92, 32128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1412, 2119, 94, 33734, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 2, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 3, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 6, 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 10, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 17, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 19, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 25, 38, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 29, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 33, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 37, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 47, 71, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 60, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 68, 101, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 76, 114, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 85, 128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 96, 144, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 108, 162, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 121, 182, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 136, 204, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 153, 229, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 171, 257, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 193, 289, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 216, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 243, 365, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 273, 410, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 308, 461, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 346, 519, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 390, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 439, 659, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 495, 743, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 559, 838, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["HypothermiaPlayer"] = { - name = "Hypothermia", - baseTypeName = "Hypothermia", +skills["FrostWallPlayer"] = { + name = "Frost Wall", + baseTypeName = "Frost Wall", color = 3, - description = "Curse all targets in an area after a short delay, lowering their Cold Resistance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 0.7, + description = "Create a wall of Ice Crystals which holds back enemies. The Crystals explode if sufficiently damaged, or if pushed hard enough, damaging nearby enemies. Consumes a Lightning Infusion if possible to add another Lightning explosion if destroyed.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, [SkillType.Invokable] = true, [SkillType.Area] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SupportedByFountains] = true, [SkillType.IceCrystal] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, }, + castTime = 0.8, qualityStats = { - { "curse_effect_+%", 0.5 }, + { "base_cooldown_speed_+%", 1 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, + [1] = { critChance = 11, storedUses = 3, levelRequirement = 0, cooldown = 5, cost = { Mana = 7, }, }, + [2] = { critChance = 11, storedUses = 3, levelRequirement = 3, cooldown = 5, cost = { Mana = 9, }, }, + [3] = { critChance = 11, storedUses = 3, levelRequirement = 6, cooldown = 5, cost = { Mana = 10, }, }, + [4] = { critChance = 11, storedUses = 3, levelRequirement = 10, cooldown = 5, cost = { Mana = 12, }, }, + [5] = { critChance = 11, storedUses = 3, levelRequirement = 14, cooldown = 5, cost = { Mana = 14, }, }, + [6] = { critChance = 11, storedUses = 3, levelRequirement = 18, cooldown = 5, cost = { Mana = 16, }, }, + [7] = { critChance = 11, storedUses = 3, levelRequirement = 22, cooldown = 5, cost = { Mana = 18, }, }, + [8] = { critChance = 11, storedUses = 3, levelRequirement = 26, cooldown = 5, cost = { Mana = 21, }, }, + [9] = { critChance = 11, storedUses = 3, levelRequirement = 31, cooldown = 5, cost = { Mana = 24, }, }, + [10] = { critChance = 11, storedUses = 3, levelRequirement = 36, cooldown = 5, cost = { Mana = 27, }, }, + [11] = { critChance = 11, storedUses = 3, levelRequirement = 41, cooldown = 5, cost = { Mana = 30, }, }, + [12] = { critChance = 11, storedUses = 3, levelRequirement = 46, cooldown = 5, cost = { Mana = 34, }, }, + [13] = { critChance = 11, storedUses = 3, levelRequirement = 52, cooldown = 5, cost = { Mana = 38, }, }, + [14] = { critChance = 11, storedUses = 3, levelRequirement = 58, cooldown = 5, cost = { Mana = 42, }, }, + [15] = { critChance = 11, storedUses = 3, levelRequirement = 64, cooldown = 5, cost = { Mana = 47, }, }, + [16] = { critChance = 11, storedUses = 3, levelRequirement = 66, cooldown = 5, cost = { Mana = 53, }, }, + [17] = { critChance = 11, storedUses = 3, levelRequirement = 72, cooldown = 5, cost = { Mana = 58, }, }, + [18] = { critChance = 11, storedUses = 3, levelRequirement = 78, cooldown = 5, cost = { Mana = 65, }, }, + [19] = { critChance = 11, storedUses = 3, levelRequirement = 84, cooldown = 5, cost = { Mana = 72, }, }, + [20] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 79, }, }, + [21] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 87, }, }, + [22] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 96, }, }, + [23] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 106, }, }, + [24] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 116, }, }, + [25] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 128, }, }, + [26] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 140, }, }, + [27] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 154, }, }, + [28] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 169, }, }, + [29] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 185, }, }, + [30] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 202, }, }, + [31] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 221, }, }, + [32] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 241, }, }, + [33] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 263, }, }, + [34] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 287, }, }, + [35] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 313, }, }, + [36] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 341, }, }, + [37] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 372, }, }, + [38] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 405, }, }, + [39] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 441, }, }, + [40] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 479, }, }, }, statSets = { [1] = { - label = "Hypothermia", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "cold_weakness", - statMap = { - ["base_skill_buff_cold_damage_resistance_%_to_apply"] = { - mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, + label = "Frost Wall", + baseEffectiveness = 2.2799999713898, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "frost_wall_new_statset_0", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "wall_expand_delay_ms", 150 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "ice_crystal_shatter_detonation_damage_+%_final", 0 }, + { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 0 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "wall_maximum_length", + "frost_wall_maximum_life", + "base_skill_show_average_damage_instead_of_dps", + "is_area_damage", + "can_perform_skill_while_moving", + "is_ice_crystal_explosion", + "active_skill_consumes_a_lightning_infusion", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 7, 11, 28, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 10, 14, 28, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 13, 19, 28, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 17, 25, 28, 164, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 21, 31, 35, 240, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 26, 38, 35, 334, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 31, 46, 35, 460, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 37, 55, 35, 624, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 43, 65, 42, 832, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 50, 76, 42, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 59, 88, 42, 1438, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 67, 101, 42, 1866, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 77, 116, 49, 2408, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 88, 133, 49, 3086, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 101, 151, 49, 3940, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 115, 172, 49, 5016, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 130, 195, 56, 6362, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 147, 220, 56, 8032, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 166, 249, 56, 10118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 187, 280, 56, 12714, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 211, 316, 63, 13350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 237, 356, 63, 14017, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 267, 400, 63, 14718, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 300, 449, 63, 15454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 337, 505, 70, 16227, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 378, 567, 70, 17038, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 425, 637, 70, 17890, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 477, 715, 70, 18784, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 535, 803, 77, 19724, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 601, 902, 77, 20710, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 675, 1013, 78, 21745, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 759, 1138, 80, 22833, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 853, 1279, 81, 23974, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 959, 1438, 83, 25173, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1079, 1618, 85, 26431, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1214, 1821, 87, 27753, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1367, 2051, 88, 29141, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1540, 2311, 90, 30598, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1737, 2605, 92, 32128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1960, 2939, 94, 33734, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, + }, + [2] = { + label = "Lightning-Infused", + baseEffectiveness = 1.5, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "frost_wall_new_statset_1", baseFlags = { spell = true, - curse = true, area = true, duration = true, }, constantStats = { - { "curse_delay_duration_ms", 1500 }, + { "wall_expand_delay_ms", 150 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_base_area_of_effect_radius", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "ice_crystal_shatter_detonation_damage_+%_final", 0 }, + { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 0 }, + { "active_skill_base_secondary_area_of_effect_radius", 28 }, }, stats = { - "base_skill_effect_duration", - "active_skill_base_area_of_effect_radius", - "base_skill_buff_cold_damage_resistance_%_to_apply", - "base_deal_no_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "wall_maximum_length", + "frost_wall_maximum_life", + "base_skill_show_average_damage_instead_of_dps", + "is_area_damage", "can_perform_skill_while_moving", + "is_ice_crystal_explosion", + "active_skill_consumes_a_lightning_infusion", }, notMinionStat = { - "base_skill_effect_duration", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 32, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 33, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 35, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 36, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 37, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 38, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 41, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 41, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 42, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 44, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 1, 11, 28, 36, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 1, 15, 28, 64, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1, 20, 28, 108, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1, 26, 28, 164, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 2, 33, 35, 240, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 2, 40, 35, 334, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 3, 48, 35, 460, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 3, 57, 35, 624, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 4, 68, 42, 832, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 4, 79, 42, 1100, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 5, 91, 42, 1438, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 6, 105, 42, 1866, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 6, 121, 49, 2408, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 7, 138, 49, 3086, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 8, 158, 49, 3940, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 9, 179, 49, 5016, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 11, 203, 56, 6362, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 12, 229, 56, 8032, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 14, 259, 56, 10118, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 15, 292, 56, 12714, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 17, 329, 63, 13350, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 19, 370, 63, 14017, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 22, 417, 63, 14718, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 25, 468, 63, 15454, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 28, 526, 70, 16227, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 31, 591, 70, 17038, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 35, 663, 70, 17890, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 39, 745, 70, 18784, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 44, 837, 77, 19724, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 49, 940, 77, 20710, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 56, 1055, 78, 21745, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 62, 1186, 80, 22833, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 70, 1333, 81, 23974, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 79, 1498, 83, 25173, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 89, 1685, 85, 26431, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 100, 1897, 87, 27753, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 112, 2136, 88, 29141, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 127, 2407, 90, 30598, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 143, 2714, 92, 32128, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 161, 3062, 94, 33734, critChance = -2, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -8439,60 +9415,60 @@ skills["FrostboltPlayer"] = { name = "Frostbolt", baseTypeName = "Frostbolt", color = 3, - description = "Fire a slow-moving Piercing Projectile that leaves a wake of Chilled Ground, deals Cold damage and explodes on colliding with terrain.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, }, + description = "Fire a slow-moving Piercing Projectile that is effective at Chilling enemies and explodes on colliding with terrain.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.8, qualityStats = { { "active_skill_projectile_damage_+%_final_if_pierced_enemy", 1 }, }, levels = { - [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 7, }, }, + [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 5, }, }, + [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 8, }, }, [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 9, }, }, [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 10, }, }, [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 15, }, }, - [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 17, }, }, - [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 19, }, }, + [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 18, }, }, + [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 20, }, }, [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 22, }, }, [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 25, }, }, [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 28, }, }, [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 32, }, }, - [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 36, }, }, - [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 41, }, }, - [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 46, }, }, - [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 53, }, }, - [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 60, }, }, - [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 67, }, }, - [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 76, }, }, - [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 87, }, }, - [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 98, }, }, - [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 111, }, }, - [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 126, }, }, - [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 142, }, }, - [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 161, }, }, - [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 182, }, }, - [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 207, }, }, - [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 234, }, }, - [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 265, }, }, - [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 300, }, }, - [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 339, }, }, - [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 384, }, }, - [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 434, }, }, - [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 492, }, }, - [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 557, }, }, - [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 630, }, }, - [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 713, }, }, - [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 807, }, }, + [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 35, }, }, + [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 39, }, }, + [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 44, }, }, + [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 48, }, }, + [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 53, }, }, + [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 59, }, }, + [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 65, }, }, + [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 72, }, }, + [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 79, }, }, + [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 87, }, }, + [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 96, }, }, + [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 105, }, }, + [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 115, }, }, + [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 126, }, }, + [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 138, }, }, + [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 151, }, }, + [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 165, }, }, + [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 181, }, }, + [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 197, }, }, + [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 215, }, }, + [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 235, }, }, + [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 256, }, }, + [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 279, }, }, + [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 303, }, }, + [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 330, }, }, + [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 359, }, }, }, statSets = { [1] = { label = "Projectile", baseEffectiveness = 1.6699999570847, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, statDescriptionScope = "frost_bolt", baseFlags = { spell = true, @@ -8502,73 +9478,73 @@ skills["FrostboltPlayer"] = { }, constantStats = { { "base_skill_effect_duration", 4000 }, - { "active_skill_base_secondary_area_of_effect_radius", 9 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "chill_effect_+%", 100 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", + "active_skill_chill_as_though_damage_+%_final", "base_is_projectile", "always_pierce", "projectile_uses_contact_position", "maintain_projectile_direction_when_using_contact_position", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", }, notMinionStat = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", }, levels = { - [1] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 19, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 34, 50, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 52, 79, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 60, 90, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 78, 118, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 114, 171, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 129, 193, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 164, 245, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 184, 276, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 207, 310, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 232, 349, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 261, 392, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 293, 439, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 329, 493, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 369, 553, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 414, 621, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 464, 697, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 521, 782, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 585, 878, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 657, 986, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 738, 1107, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 830, 1244, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 933, 1399, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1049, 1574, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1181, 1772, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1330, 1996, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1499, 2249, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 5, 8, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 10, 105, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 9, 14, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 12, 18, 115, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 15, 23, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 19, 28, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 23, 34, 130, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 27, 41, 135, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 32, 48, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 38, 56, 145, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 44, 66, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 155, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 58, 87, 160, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 67, 100, 165, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 76, 114, 170, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 87, 130, 175, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 99, 148, 180, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 112, 168, 185, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 127, 190, 190, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 144, 216, 195, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 162, 244, 200, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 184, 275, 205, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 207, 311, 210, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 234, 351, 215, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 264, 396, 220, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 298, 446, 225, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 336, 503, 230, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 379, 568, 235, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 427, 640, 240, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 482, 723, 245, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 544, 816, 247, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 614, 921, 250, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 693, 1040, 252, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 784, 1176, 255, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 886, 1329, 257, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1003, 1504, 260, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1135, 1703, 262, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1286, 1930, 265, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1459, 2188, 267, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1655, 2483, 270, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { label = "Explosion", - baseEffectiveness = 2.5, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0060000000521541, + baseEffectiveness = 2.7999999523163, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, statDescriptionScope = "frost_bolt", baseFlags = { spell = true, @@ -8578,7 +9554,7 @@ skills["FrostboltPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_area_of_effect_radius", 24 }, }, stats = { @@ -8586,10 +9562,12 @@ skills["FrostboltPlayer"] = { "spell_maximum_base_cold_damage", "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", + "active_skill_chill_as_though_damage_+%_final", "base_is_projectile", "projectile_uses_contact_position", "maintain_projectile_direction_when_using_contact_position", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", }, notMinionStat = { @@ -8597,46 +9575,46 @@ skills["FrostboltPlayer"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0, 0, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 19, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 29, 44, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 49, 73, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 57, 86, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 66, 99, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 76, 114, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 87, 130, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 98, 148, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 112, 167, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 126, 189, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 142, 213, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 160, 240, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 180, 270, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 201, 302, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 226, 338, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 252, 378, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 282, 423, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 314, 472, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 351, 526, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 391, 587, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 436, 654, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 485, 728, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 541, 811, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 602, 903, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 671, 1006, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 747, 1121, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 832, 1249, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 927, 1391, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 1034, 1550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 1152, 1728, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 1285, 1927, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 1433, 2150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 1600, 2400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 1786, 2680, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 9, 13, 100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 12, 18, 105, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 16, 24, 110, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 21, 31, 115, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 26, 39, 120, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 32, 47, 125, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 38, 57, 130, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 45, 68, 135, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 53, 80, 140, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 62, 93, 145, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 72, 108, 150, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 83, 124, 155, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 95, 143, 160, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 109, 163, 165, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 124, 186, 170, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 141, 211, 175, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 159, 239, 180, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 180, 270, 185, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 204, 305, 190, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 230, 344, 195, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 259, 388, 200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 291, 437, 205, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 327, 491, 210, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 368, 552, 215, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 413, 620, 220, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 464, 697, 225, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 521, 782, 230, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 586, 878, 235, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 658, 986, 240, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 738, 1108, 245, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 829, 1244, 247, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 932, 1398, 250, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 1047, 1571, 252, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1178, 1766, 255, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1325, 1987, 257, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1491, 2236, 260, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 1679, 2518, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 1892, 2838, 265, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2133, 3199, 267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 2407, 3610, 270, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -8645,8 +9623,8 @@ skills["FrozenLocusPlayer"] = { name = "Frozen Locus", baseTypeName = "Frozen Locus", color = 3, - description = "Leap backward and crack the ground with your staff to call forth an Ice Crystal, which creates Chilled Ground around it and can be damaged by you and enemies. If the Crystal is destroyed it causes an icy explosion that deals Attack damage but does not use your weapon's damage. This skill can be used while using other skills.", - skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NonWeaponAttack] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.CanCancelActions] = true, }, + description = "Leap backward and crack the ground with your staff to call forth an Ice Crystal, which creates Chilled Ground around it and can be damaged by you and enemies. If the Crystal is destroyed it causes an icy explosion. This skill can be used while using other skills.", + skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.CanCancelActions] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -8658,43 +9636,43 @@ skills["FrozenLocusPlayer"] = { [1] = { attackSpeedMultiplier = -30, levelRequirement = 0, cost = { Mana = 12, }, }, [2] = { attackSpeedMultiplier = -30, levelRequirement = 3, cost = { Mana = 13, }, }, [3] = { attackSpeedMultiplier = -30, levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, cost = { Mana = 16, }, }, - [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 18, }, }, - [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, cost = { Mana = 22, }, }, - [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, cost = { Mana = 25, }, }, - [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, cost = { Mana = 28, }, }, - [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, cost = { Mana = 31, }, }, - [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, cost = { Mana = 34, }, }, - [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, cost = { Mana = 38, }, }, - [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, cost = { Mana = 42, }, }, - [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, cost = { Mana = 47, }, }, - [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, cost = { Mana = 52, }, }, - [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, cost = { Mana = 57, }, }, + [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, cost = { Mana = 18, }, }, + [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 20, }, }, + [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, cost = { Mana = 22, }, }, + [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, cost = { Mana = 25, }, }, + [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, cost = { Mana = 28, }, }, + [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, cost = { Mana = 31, }, }, + [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, cost = { Mana = 34, }, }, + [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, cost = { Mana = 38, }, }, + [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, cost = { Mana = 41, }, }, + [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, cost = { Mana = 45, }, }, + [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, cost = { Mana = 49, }, }, + [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, cost = { Mana = 54, }, }, + [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, cost = { Mana = 59, }, }, [17] = { attackSpeedMultiplier = -30, levelRequirement = 72, cost = { Mana = 64, }, }, - [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, cost = { Mana = 71, }, }, - [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, cost = { Mana = 78, }, }, - [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 87, }, }, - [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 96, }, }, - [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 107, }, }, - [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 118, }, }, - [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 131, }, }, - [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 145, }, }, - [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 161, }, }, - [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 178, }, }, - [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 198, }, }, - [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 219, }, }, - [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 243, }, }, - [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 269, }, }, - [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 298, }, }, - [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 331, }, }, - [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 366, }, }, - [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 406, }, }, - [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 450, }, }, - [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 499, }, }, - [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 553, }, }, - [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 612, }, }, - [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 679, }, }, + [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, cost = { Mana = 69, }, }, + [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 81, }, }, + [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 87, }, }, + [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 94, }, }, + [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 101, }, }, + [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 109, }, }, + [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 117, }, }, + [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 126, }, }, + [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 135, }, }, + [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 145, }, }, + [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 155, }, }, + [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 166, }, }, + [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 177, }, }, + [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 189, }, }, + [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 202, }, }, + [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 216, }, }, + [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 230, }, }, + [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 246, }, }, + [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 262, }, }, + [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 279, }, }, + [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 297, }, }, + [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 316, }, }, }, statSets = { [1] = { @@ -8710,7 +9688,7 @@ skills["FrozenLocusPlayer"] = { duration = true, }, constantStats = { - { "base_skill_effect_duration", 6000 }, + { "base_skill_effect_duration", 10000 }, { "attack_maximum_action_distance_+", 15 }, { "base_number_of_frozen_locus_allowed", 1 }, }, @@ -8778,13 +9756,13 @@ skills["FrozenLocusPlayer"] = { duration = true, }, constantStats = { - { "base_skill_effect_duration", 6000 }, + { "base_skill_effect_duration", 10000 }, { "attack_maximum_action_distance_+", 15 }, { "base_number_of_frozen_locus_allowed", 1 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, { "active_skill_base_area_of_effect_radius", 12 }, { "active_skill_ground_effect_area_of_effect_+%_final_per_second", 30 }, - { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 150 }, + { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 180 }, }, stats = { "frost_wall_maximum_life", @@ -8797,141 +9775,250 @@ skills["FrozenLocusPlayer"] = { "active_skill_is_ignored_by_mantra_of_destruction", "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem", "display_fake_attack_hit_chill", + "display_statset_hide_usage_stats", }, levels = { - [1] = { 43, 100, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [1] = { 43, 100, baseMultiplier = 1.5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 54, 75, baseMultiplier = 1.65, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 68, 50, baseMultiplier = 1.83, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 94, 0, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 122, -32, baseMultiplier = 2.18, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 151, -52, baseMultiplier = 2.36, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 184, -61, baseMultiplier = 2.55, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 220, -66, baseMultiplier = 2.73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 274, -70, baseMultiplier = 2.9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 331, -73, baseMultiplier = 3.08, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 396, -75, baseMultiplier = 3.28, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 468, -77, baseMultiplier = 3.5, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 569, -78, baseMultiplier = 3.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 684, -78, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 817, -79, baseMultiplier = 4.27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 965, -79, baseMultiplier = 4.58, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1138, -79, baseMultiplier = 4.92, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1364, -79, baseMultiplier = 5.28, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1364, -82, baseMultiplier = 5.68, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1364, -84, baseMultiplier = 6.12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1364, -85, baseMultiplier = 6.6, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1364, -85, baseMultiplier = 7.11, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1364, -85, baseMultiplier = 7.66, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1364, -85, baseMultiplier = 8.25, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1364, -85, baseMultiplier = 8.89, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1364, -85, baseMultiplier = 9.57, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1364, -85, baseMultiplier = 10.31, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1364, -85, baseMultiplier = 11.11, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1364, -85, baseMultiplier = 11.97, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1364, -85, baseMultiplier = 12.89, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1364, -85, baseMultiplier = 13.89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1364, -85, baseMultiplier = 14.96, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1364, -85, baseMultiplier = 16.12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1364, -85, baseMultiplier = 17.37, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1364, -85, baseMultiplier = 18.71, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1364, -85, baseMultiplier = 20.16, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1364, -85, baseMultiplier = 21.71, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1364, -85, baseMultiplier = 23.39, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1364, -85, baseMultiplier = 25.2, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1364, -85, baseMultiplier = 27.15, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Explosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ice_ambush_statset_2", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "base_skill_effect_duration", 10000 }, + { "attack_maximum_action_distance_+", 15 }, + { "base_number_of_frozen_locus_allowed", 1 }, + { "active_skill_base_area_of_effect_radius", 34 }, + { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + }, + stats = { + "frost_wall_maximum_life", + "frost_wall_damage_taken_+%_final_from_own_team", + "frozen_locus_crystal_display_stat", + "active_skill_is_ignored_by_staggering_palm", + "active_skill_is_ignored_by_charged_staff", + "base_skill_show_average_damage_instead_of_dps", + "frozen_locus_stat_suppression", + "active_skill_is_ignored_by_mantra_of_destruction", + "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem", + "is_area_damage", + "display_statset_hide_usage_stats", + "is_ice_crystal_explosion", + }, + levels = { + [1] = { 43, 100, baseMultiplier = 1.5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 54, 75, baseMultiplier = 1.65, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 68, 50, baseMultiplier = 1.83, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 94, 0, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 122, -32, baseMultiplier = 2.18, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 151, -52, baseMultiplier = 2.36, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 184, -61, baseMultiplier = 2.55, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 220, -66, baseMultiplier = 2.73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 274, -70, baseMultiplier = 2.9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 331, -73, baseMultiplier = 3.08, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 396, -75, baseMultiplier = 3.28, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 468, -77, baseMultiplier = 3.5, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 569, -78, baseMultiplier = 3.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 684, -78, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 817, -79, baseMultiplier = 4.27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 965, -79, baseMultiplier = 4.58, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1138, -79, baseMultiplier = 4.92, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1364, -79, baseMultiplier = 5.28, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1364, -82, baseMultiplier = 5.68, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1364, -84, baseMultiplier = 6.12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1364, -85, baseMultiplier = 6.6, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1364, -85, baseMultiplier = 7.11, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1364, -85, baseMultiplier = 7.66, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1364, -85, baseMultiplier = 8.25, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1364, -85, baseMultiplier = 8.89, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1364, -85, baseMultiplier = 9.57, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1364, -85, baseMultiplier = 10.31, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1364, -85, baseMultiplier = 11.11, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1364, -85, baseMultiplier = 11.97, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1364, -85, baseMultiplier = 12.89, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1364, -85, baseMultiplier = 13.89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1364, -85, baseMultiplier = 14.96, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1364, -85, baseMultiplier = 16.12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1364, -85, baseMultiplier = 17.37, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1364, -85, baseMultiplier = 18.71, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1364, -85, baseMultiplier = 20.16, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1364, -85, baseMultiplier = 21.71, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1364, -85, baseMultiplier = 23.39, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1364, -85, baseMultiplier = 25.2, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1364, -85, baseMultiplier = 27.15, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["FrozenLocusExplodePlayer"] = { - name = "Crystal Explosion", - hidden = true, - skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UseGlobalStats] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Cold] = true, [SkillType.Nova] = true, [SkillType.NoAttackOrCastTime] = true, }, - castTime = 1, +skills["FulminationPlayer"] = { + name = "Fulmination", + baseTypeName = "Fulmination", + color = 3, + description = "While active, the first time any Skill Hits a Shocked enemy in your Presence, that Skill also Hits other Shocked enemies in your Presence, up to a maximum.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.Damage] = true, [SkillType.NoAttackInPlace] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Lightning] = true, }, + castTime = 0, qualityStats = { + { "skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence", 0.25 }, }, levels = { - [1] = { critChance = 13, baseMultiplier = 2.5, levelRequirement = 0, }, - [2] = { critChance = 13, baseMultiplier = 2.76, levelRequirement = 0, }, - [3] = { critChance = 13, baseMultiplier = 3.04, levelRequirement = 0, }, - [4] = { critChance = 13, baseMultiplier = 3.34, levelRequirement = 0, }, - [5] = { critChance = 13, baseMultiplier = 3.63, levelRequirement = 0, }, - [6] = { critChance = 13, baseMultiplier = 3.93, levelRequirement = 0, }, - [7] = { critChance = 13, baseMultiplier = 4.24, levelRequirement = 0, }, - [8] = { critChance = 13, baseMultiplier = 4.54, levelRequirement = 0, }, - [9] = { critChance = 13, baseMultiplier = 4.83, levelRequirement = 0, }, - [10] = { critChance = 13, baseMultiplier = 5.13, levelRequirement = 0, }, - [11] = { critChance = 13, baseMultiplier = 5.47, levelRequirement = 0, }, - [12] = { critChance = 13, baseMultiplier = 5.83, levelRequirement = 0, }, - [13] = { critChance = 13, baseMultiplier = 6.23, levelRequirement = 0, }, - [14] = { critChance = 13, baseMultiplier = 6.66, levelRequirement = 0, }, - [15] = { critChance = 13, baseMultiplier = 7.12, levelRequirement = 0, }, - [16] = { critChance = 13, baseMultiplier = 7.64, levelRequirement = 0, }, - [17] = { critChance = 13, baseMultiplier = 8.19, levelRequirement = 0, }, - [18] = { critChance = 13, baseMultiplier = 8.81, levelRequirement = 0, }, - [19] = { critChance = 13, baseMultiplier = 9.47, levelRequirement = 0, }, - [20] = { critChance = 13, baseMultiplier = 10.21, levelRequirement = 0, }, - [21] = { critChance = 13, baseMultiplier = 11, levelRequirement = 0, }, - [22] = { critChance = 13, baseMultiplier = 11.85, levelRequirement = 0, }, - [23] = { critChance = 13, baseMultiplier = 12.76, levelRequirement = 0, }, - [24] = { critChance = 13, baseMultiplier = 13.75, levelRequirement = 0, }, - [25] = { critChance = 13, baseMultiplier = 14.81, levelRequirement = 0, }, - [26] = { critChance = 13, baseMultiplier = 15.96, levelRequirement = 0, }, - [27] = { critChance = 13, baseMultiplier = 17.19, levelRequirement = 0, }, - [28] = { critChance = 13, baseMultiplier = 18.52, levelRequirement = 0, }, - [29] = { critChance = 13, baseMultiplier = 19.95, levelRequirement = 0, }, - [30] = { critChance = 13, baseMultiplier = 21.49, levelRequirement = 0, }, - [31] = { critChance = 13, baseMultiplier = 23.15, levelRequirement = 0, }, - [32] = { critChance = 13, baseMultiplier = 24.94, levelRequirement = 0, }, - [33] = { critChance = 13, baseMultiplier = 26.87, levelRequirement = 0, }, - [34] = { critChance = 13, baseMultiplier = 28.95, levelRequirement = 0, }, - [35] = { critChance = 13, baseMultiplier = 31.18, levelRequirement = 0, }, - [36] = { critChance = 13, baseMultiplier = 33.59, levelRequirement = 0, }, - [37] = { critChance = 13, baseMultiplier = 36.19, levelRequirement = 0, }, - [38] = { critChance = 13, baseMultiplier = 38.99, levelRequirement = 0, }, - [39] = { critChance = 13, baseMultiplier = 42, levelRequirement = 0, }, - [40] = { critChance = 13, baseMultiplier = 45.25, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Explosion", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "ice_ambush_explode", + label = "Fulmination", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "wrath_aura", baseFlags = { - area = true, - nonWeaponAttack = true, - hit = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 24 }, - { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, + { "skill_desired_amount_override", 1 }, + { "skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence", 0 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { - "main_hand_weapon_minimum_cold_damage", - "main_hand_weapon_maximum_cold_damage", - "is_area_damage", - "triggered_by_frozen_locus_destroy", - "replace_main_hand_unarmed_attack_stats_with_quarterstaff_type", - "triggerable_in_any_set", - "display_statset_hide_usage_stats", + "skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence", + "never_shock", }, levels = { - [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { -90, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { -89, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { -88, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { -87, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { -86, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { -85, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { -84, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { -83, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { -82, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { -81, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { -80, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { -79, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { -78, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { -77, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { -76, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { -75, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { -74, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { -73, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { -72, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { -71, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { -70, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { -69, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { -68, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { -67, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { -66, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { -65, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { -64, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { -63, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { -62, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { -61, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { -61, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { -60, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { -60, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { -59, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { -59, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { -58, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { -58, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { -57, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { -57, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { -56, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["GalvanicFieldPlayer"] = { +skills["GalvanicFieldBuffPlayer"] = { name = "Galvanic Field", baseTypeName = "Galvanic Field", fromItem = true, color = 3, description = "Gain a Buff that boosts your Shock chance. Shocking an enemy consumes the Buff to attach an Orb of electricity to that enemy. The Orb fires bolts of electricity at nearby enemies until it expires.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Orb] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, }, - castTime = 0.5, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Orb] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Sustained] = true, }, + castTime = 0.65, qualityStats = { - { "base_galvanic_field_beam_delay_ms", -0.5 }, + { "number_of_chains", 0.1 }, }, levels = { [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, @@ -8977,86 +10064,156 @@ skills["GalvanicFieldPlayer"] = { }, statSets = { [1] = { - label = "Galvanic Field", - baseEffectiveness = 0.33700001239777, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "skill_stat_descriptions", + label = "Buff", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "galvanic_field", + statMap = { + ["galvanic_field_shock_chance_+%_final"] = { + mod("EnemyShockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Galvanic Field" }), + }, + }, + baseFlags = { + area = true, + duration = true, + chaining = true, + }, + constantStats = { + { "galvanic_field_shock_chance_+%_final", 30 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "can_perform_skill_while_moving", + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Orb", + baseEffectiveness = 0.55000001192093, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "galvanic_field", statMap = { - ["galvanic_field_retargeting_delay_ms"] = { + ["base_galvanic_field_beam_delay_ms"] = { skill("hitTimeOverride", nil), div = 1000, }, - ["base_chance_to_shock_%_from_skill"] = { - mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Galvanic Field" }), - }, }, baseFlags = { - area = true, + spell = true, duration = true, - chaining = true, }, constantStats = { - { "base_skill_effect_duration", 6000 }, - { "base_chance_to_shock_%_from_skill", 20 }, - { "base_galvanic_field_beam_delay_ms", 100 }, - { "galvanic_field_maximum_number_of_spheres", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 6000 }, + { "base_galvanic_field_beam_delay_ms", 600 }, + { "active_skill_base_area_of_effect_radius", 19 }, + { "active_skill_base_secondary_area_of_effect_radius", 35 }, + { "galvanic_field_maximum_number_of_spheres", 1 }, + { "number_of_chains", 3 }, + { "galvanic_field_retargeting_delay_ms", 10 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "galvanic_field_retargeting_delay_ms", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "can_perform_skill_while_moving", "never_shock", "skill_can_add_multiple_charges_per_action", - "can_perform_skill_while_moving", + "base_skill_show_average_damage_instead_of_dps", + "display_statset_hide_usage_stats", }, notMinionStat = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 1, 2, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 1, 3, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 5, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 6, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1, 8, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1, 10, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 1, 12, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 1, 14, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 1, 17, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 1, 20, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 1, 23, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 1, 27, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 2, 31, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 2, 36, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 2, 41, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 2, 47, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 3, 54, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 3, 61, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 4, 70, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 4, 80, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 5, 91, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 5, 103, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 6, 117, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7, 133, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 8, 151, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 9, 172, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 10, 195, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 12, 221, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 13, 252, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 15, 286, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 17, 325, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 19, 370, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 22, 422, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 25, 481, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 29, 548, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 33, 626, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 38, 715, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 43, 817, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 49, 935, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 56, 1071, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, 3, 1, 3, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 1, 4, 1, 4, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 6, 1, 6, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 8, 1, 8, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 11, 1, 11, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1, 14, 1, 14, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1, 17, 1, 17, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1, 21, 1, 21, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1, 26, 1, 26, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 2, 31, 2, 31, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 2, 37, 2, 37, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 2, 44, 2, 44, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 3, 51, 3, 51, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 3, 59, 3, 59, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 4, 68, 4, 68, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 4, 79, 4, 79, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 5, 91, 5, 91, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 6, 105, 6, 105, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 6, 121, 6, 121, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7, 139, 7, 139, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 8, 159, 8, 159, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 10, 183, 10, 183, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 11, 210, 11, 210, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 13, 242, 13, 242, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 15, 278, 15, 278, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 17, 319, 17, 319, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 19, 367, 19, 367, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 22, 422, 22, 422, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 26, 485, 26, 485, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 29, 559, 29, 559, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 34, 644, 34, 644, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 39, 743, 39, 743, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 45, 858, 45, 858, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 52, 992, 52, 992, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 60, 1148, 60, 1148, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 70, 1330, 70, 1330, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 81, 1542, 81, 1542, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 94, 1790, 94, 1790, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 110, 2082, 110, 2082, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 128, 2423, 128, 2423, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -9065,8 +10222,8 @@ skills["GatheringStormPlayer"] = { name = "Gathering Storm", baseTypeName = "Gathering Storm", color = 3, - description = "Flip backward and Channel to charge your Quarterstaff with Lightning. Releasing dashes towards the target location, damaging enemies along the way. Releasing with perfect timing performs a Lightning-infused dash that releases shockwaves from enemies you dash through and leaves a trail of Shocked Ground in your wake. This skill cannot be Ancestrally Boosted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.PerfectTiming] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.QuarterstaffSkill] = true, }, + description = "Flip backward and Channel to charge your Quarterstaff with Lightning. Releasing dashes towards the target location, damaging enemies along the way. Releasing with Perfect Timing performs a Lightning-assisted dash that releases shockwaves from enemies you dash through and leaves a trail of Shocked Ground in your wake. This skill cannot be Ancestrally Boosted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.PerfectTiming] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -9075,46 +10232,46 @@ skills["GatheringStormPlayer"] = { { "gathering_storm_perfect_aoe_limit", 0.1 }, }, levels = { - [1] = { baseMultiplier = 1.2, levelRequirement = 0, cost = { ManaPerMinute = 489, }, }, - [2] = { baseMultiplier = 1.32, levelRequirement = 3, cost = { ManaPerMinute = 541, }, }, - [3] = { baseMultiplier = 1.45, levelRequirement = 6, cost = { ManaPerMinute = 600, }, }, - [4] = { baseMultiplier = 1.59, levelRequirement = 10, cost = { ManaPerMinute = 665, }, }, - [5] = { baseMultiplier = 1.72, levelRequirement = 14, cost = { ManaPerMinute = 737, }, }, - [6] = { baseMultiplier = 1.85, levelRequirement = 18, cost = { ManaPerMinute = 816, }, }, - [7] = { baseMultiplier = 1.99, levelRequirement = 22, cost = { ManaPerMinute = 905, }, }, - [8] = { baseMultiplier = 2.12, levelRequirement = 26, cost = { ManaPerMinute = 1003, }, }, - [9] = { baseMultiplier = 2.24, levelRequirement = 31, cost = { ManaPerMinute = 1111, }, }, - [10] = { baseMultiplier = 2.37, levelRequirement = 36, cost = { ManaPerMinute = 1231, }, }, - [11] = { baseMultiplier = 2.51, levelRequirement = 41, cost = { ManaPerMinute = 1364, }, }, - [12] = { baseMultiplier = 2.66, levelRequirement = 46, cost = { ManaPerMinute = 1512, }, }, - [13] = { baseMultiplier = 2.82, levelRequirement = 52, cost = { ManaPerMinute = 1675, }, }, - [14] = { baseMultiplier = 2.99, levelRequirement = 58, cost = { ManaPerMinute = 1857, }, }, - [15] = { baseMultiplier = 3.18, levelRequirement = 64, cost = { ManaPerMinute = 2057, }, }, - [16] = { baseMultiplier = 3.38, levelRequirement = 66, cost = { ManaPerMinute = 2280, }, }, - [17] = { baseMultiplier = 3.59, levelRequirement = 72, cost = { ManaPerMinute = 2526, }, }, - [18] = { baseMultiplier = 3.82, levelRequirement = 78, cost = { ManaPerMinute = 2799, }, }, - [19] = { baseMultiplier = 4.07, levelRequirement = 84, cost = { ManaPerMinute = 3102, }, }, - [20] = { baseMultiplier = 4.35, levelRequirement = 90, cost = { ManaPerMinute = 3438, }, }, - [21] = { baseMultiplier = 4.64, levelRequirement = 90, cost = { ManaPerMinute = 3809, }, }, - [22] = { baseMultiplier = 4.94, levelRequirement = 90, cost = { ManaPerMinute = 4221, }, }, - [23] = { baseMultiplier = 5.27, levelRequirement = 90, cost = { ManaPerMinute = 4677, }, }, - [24] = { baseMultiplier = 5.63, levelRequirement = 90, cost = { ManaPerMinute = 5183, }, }, - [25] = { baseMultiplier = 6, levelRequirement = 90, cost = { ManaPerMinute = 5743, }, }, - [26] = { baseMultiplier = 6.4, levelRequirement = 90, cost = { ManaPerMinute = 6364, }, }, - [27] = { baseMultiplier = 6.83, levelRequirement = 90, cost = { ManaPerMinute = 7052, }, }, - [28] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { ManaPerMinute = 7815, }, }, - [29] = { baseMultiplier = 7.77, levelRequirement = 90, cost = { ManaPerMinute = 8660, }, }, - [30] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 9596, }, }, - [31] = { baseMultiplier = 8.84, levelRequirement = 90, cost = { ManaPerMinute = 10633, }, }, - [32] = { baseMultiplier = 9.42, levelRequirement = 90, cost = { ManaPerMinute = 11783, }, }, - [33] = { baseMultiplier = 10.05, levelRequirement = 90, cost = { ManaPerMinute = 13056, }, }, - [34] = { baseMultiplier = 10.72, levelRequirement = 90, cost = { ManaPerMinute = 14468, }, }, - [35] = { baseMultiplier = 11.44, levelRequirement = 90, cost = { ManaPerMinute = 16032, }, }, - [36] = { baseMultiplier = 12.2, levelRequirement = 90, cost = { ManaPerMinute = 17765, }, }, - [37] = { baseMultiplier = 13.01, levelRequirement = 90, cost = { ManaPerMinute = 19685, }, }, - [38] = { baseMultiplier = 13.88, levelRequirement = 90, cost = { ManaPerMinute = 21813, }, }, - [39] = { baseMultiplier = 14.8, levelRequirement = 90, cost = { ManaPerMinute = 24171, }, }, - [40] = { baseMultiplier = 15.79, levelRequirement = 90, cost = { ManaPerMinute = 26784, }, }, + [1] = { baseMultiplier = 1.2, levelRequirement = 0, cost = { ManaPerMinute = 474, }, }, + [2] = { baseMultiplier = 1.32, levelRequirement = 3, cost = { ManaPerMinute = 548, }, }, + [3] = { baseMultiplier = 1.45, levelRequirement = 6, cost = { ManaPerMinute = 628, }, }, + [4] = { baseMultiplier = 1.59, levelRequirement = 10, cost = { ManaPerMinute = 713, }, }, + [5] = { baseMultiplier = 1.72, levelRequirement = 14, cost = { ManaPerMinute = 805, }, }, + [6] = { baseMultiplier = 1.85, levelRequirement = 18, cost = { ManaPerMinute = 903, }, }, + [7] = { baseMultiplier = 1.99, levelRequirement = 22, cost = { ManaPerMinute = 1008, }, }, + [8] = { baseMultiplier = 2.12, levelRequirement = 26, cost = { ManaPerMinute = 1120, }, }, + [9] = { baseMultiplier = 2.24, levelRequirement = 31, cost = { ManaPerMinute = 1239, }, }, + [10] = { baseMultiplier = 2.37, levelRequirement = 36, cost = { ManaPerMinute = 1367, }, }, + [11] = { baseMultiplier = 2.51, levelRequirement = 41, cost = { ManaPerMinute = 1503, }, }, + [12] = { baseMultiplier = 2.66, levelRequirement = 46, cost = { ManaPerMinute = 1648, }, }, + [13] = { baseMultiplier = 2.82, levelRequirement = 52, cost = { ManaPerMinute = 1803, }, }, + [14] = { baseMultiplier = 2.99, levelRequirement = 58, cost = { ManaPerMinute = 1968, }, }, + [15] = { baseMultiplier = 3.18, levelRequirement = 64, cost = { ManaPerMinute = 2143, }, }, + [16] = { baseMultiplier = 3.38, levelRequirement = 66, cost = { ManaPerMinute = 2330, }, }, + [17] = { baseMultiplier = 3.59, levelRequirement = 72, cost = { ManaPerMinute = 2529, }, }, + [18] = { baseMultiplier = 3.82, levelRequirement = 78, cost = { ManaPerMinute = 2740, }, }, + [19] = { baseMultiplier = 4.07, levelRequirement = 84, cost = { ManaPerMinute = 2964, }, }, + [20] = { baseMultiplier = 4.35, levelRequirement = 90, cost = { ManaPerMinute = 3203, }, }, + [21] = { baseMultiplier = 4.64, levelRequirement = 90, cost = { ManaPerMinute = 3456, }, }, + [22] = { baseMultiplier = 4.94, levelRequirement = 90, cost = { ManaPerMinute = 3725, }, }, + [23] = { baseMultiplier = 5.27, levelRequirement = 90, cost = { ManaPerMinute = 4011, }, }, + [24] = { baseMultiplier = 5.63, levelRequirement = 90, cost = { ManaPerMinute = 4314, }, }, + [25] = { baseMultiplier = 6, levelRequirement = 90, cost = { ManaPerMinute = 4635, }, }, + [26] = { baseMultiplier = 6.4, levelRequirement = 90, cost = { ManaPerMinute = 4976, }, }, + [27] = { baseMultiplier = 6.83, levelRequirement = 90, cost = { ManaPerMinute = 5337, }, }, + [28] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { ManaPerMinute = 5719, }, }, + [29] = { baseMultiplier = 7.77, levelRequirement = 90, cost = { ManaPerMinute = 6125, }, }, + [30] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 6554, }, }, + [31] = { baseMultiplier = 8.84, levelRequirement = 90, cost = { ManaPerMinute = 7009, }, }, + [32] = { baseMultiplier = 9.42, levelRequirement = 90, cost = { ManaPerMinute = 7490, }, }, + [33] = { baseMultiplier = 10.05, levelRequirement = 90, cost = { ManaPerMinute = 7999, }, }, + [34] = { baseMultiplier = 10.72, levelRequirement = 90, cost = { ManaPerMinute = 8538, }, }, + [35] = { baseMultiplier = 11.44, levelRequirement = 90, cost = { ManaPerMinute = 9108, }, }, + [36] = { baseMultiplier = 12.2, levelRequirement = 90, cost = { ManaPerMinute = 9711, }, }, + [37] = { baseMultiplier = 13.01, levelRequirement = 90, cost = { ManaPerMinute = 10348, }, }, + [38] = { baseMultiplier = 13.88, levelRequirement = 90, cost = { ManaPerMinute = 11022, }, }, + [39] = { baseMultiplier = 14.8, levelRequirement = 90, cost = { ManaPerMinute = 11734, }, }, + [40] = { baseMultiplier = 15.79, levelRequirement = 90, cost = { ManaPerMinute = 12487, }, }, }, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime @@ -9147,6 +10304,7 @@ skills["GatheringStormPlayer"] = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "quality_display_gathering_storm_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -9201,9 +10359,6 @@ skills["GatheringStormPlayer"] = { melee = true, channelRelease = true, }, - baseMods = { - mod("Condition:PerfectTiming", "FLAG", true), - }, constantStats = { { "active_skill_override_turn_duration_ms", 360 }, { "perfect_strike_timing_window_base_ms", 300 }, @@ -9223,7 +10378,9 @@ skills["GatheringStormPlayer"] = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "quality_display_gathering_storm_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", + "perfectly_timed", }, levels = { [1] = { baseMultiplier = 2.8, actorLevel = 1, }, @@ -9297,7 +10454,9 @@ skills["GatheringStormPlayer"] = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "quality_display_gathering_storm_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", + "perfectly_timed", }, levels = { [1] = { baseMultiplier = 1.2, actorLevel = 1, }, @@ -9349,7 +10508,7 @@ skills["GhostDancePlayer"] = { baseTypeName = "Ghost Dance", color = 3, description = "While active, causes you to periodically gain Ghost Shrouds. If you are Hit while you have a Ghost Shroud, it is immediately consumed to recover Energy Shield based on your Evasion.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { { "skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", 0.1 }, @@ -9466,55 +10625,55 @@ skills["GlacialCascadePlayer"] = { baseTypeName = "Glacial Cascade", color = 3, description = "Sweep your Quarterstaff upwards, releasing an icy fissure which deals damage in a series of bursts culminating in a large spike. Frozen enemies hit by the final spike are dealt heavy damage but the Freeze is Consumed. Ice Crystals hit by the final spike explode.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.CreatesFissure] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_physical_damage_%_to_gain_as_cold", 0.5 }, + { "active_skill_base_physical_damage_%_to_gain_as_cold", 0.75 }, }, levels = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 10, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 26, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 29, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 33, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 36, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 40, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 44, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 12, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 14, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 29, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 32, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 35, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 38, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 42, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 45, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 49, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 55, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 61, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 67, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 75, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 83, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 92, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 102, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 113, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 125, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 139, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 154, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 170, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 189, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 209, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 232, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 257, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 285, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 316, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 350, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 388, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 430, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 476, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 528, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 54, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 58, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 63, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 68, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 73, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 79, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 85, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 91, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 98, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 105, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 112, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 120, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 129, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 138, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 147, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 157, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 168, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 179, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 191, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 204, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 217, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 231, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 246, }, }, }, statSets = { [1] = { @@ -9528,14 +10687,14 @@ skills["GlacialCascadePlayer"] = { constantStats = { { "upheaval_number_of_spikes", 8 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 }, - { "active_skill_base_area_of_effect_radius", 5 }, + { "active_skill_base_area_of_effect_radius", 6 }, { "cascade_attack_radius_per_stage_+1_per_100", 30 }, { "cascade_attack_base_total_distance", 48 }, { "cascade_attack_starting_distance_offset", 6 }, { "cascade_attack_ease_in_exponent_%", 125 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "never_freeze", @@ -9595,16 +10754,17 @@ skills["GlacialCascadePlayer"] = { }, constantStats = { { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 }, - { "active_skill_base_area_of_effect_radius", 5 }, + { "active_skill_base_area_of_effect_radius", 6 }, { "cascade_attack_radius_per_stage_+1_per_100", 30 }, { "cascade_attack_starting_distance_offset", 6 }, { "cascade_attack_ease_in_exponent_%", 125 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "glacial_cascade_attack_final_spike_rect_length", 20 }, - { "active_skill_base_area_of_effect_radius", 2 }, - { "active_skill_consume_enemy_freeze_to_gain_damage_+%_final", 350 }, + { "active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final", 425 }, + { "active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final", 250 }, + { "active_skill_base_area_of_effect_radius", 3 }, }, stats = { "never_freeze", @@ -9663,14 +10823,14 @@ skills["GrimFeastPlayer"] = { name = "Grim Feast", baseTypeName = "Grim Feast", color = 3, - description = "This skill is currently disabled. We will rework and reenable it soon!", - skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AffectsPresence] = true, }, + description = "While active, your Reviving Minions store a percentage of their maximum Life in a collectible Grim Remnant on death. Using Grim Resurrection Consumes the Life you've collected to Revive up to that much total Life of dead Minions.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AffectsPresence] = true, [SkillType.RemnantCannotBeShared] = true, }, castTime = 0, qualityStats = { - { "dummy_stat_display_nothing", 1 }, + { "grim_remnant_health_stored_in_globe_%", 0.25 }, }, levels = { - [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, @@ -9714,13 +10874,131 @@ skills["GrimFeastPlayer"] = { statSets = { [1] = { label = "Grim Feast", - incrementalEffectiveness = 0.054999999701977, + baseEffectiveness = 12, + incrementalEffectiveness = 4, + damageIncrementalEffectiveness = 0.013500000350177, statDescriptionScope = "grim_feast", baseFlags = { }, + constantStats = { + { "grim_remnant_chance_to_spawn_orb_on_minion_death_in_presence_%", 100 }, + { "grim_remnant_health_stored_in_globe_%", 35 }, + { "base_remnant_duration_ms", 8000 }, + }, + stats = { + "grim_remnant_max_health_stored", + "base_deal_no_damage", + }, + levels = { + [1] = { 47, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 521, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1212, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2019, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 2961, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4060, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 5343, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 6842, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 8594, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 10643, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 13043, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 15856, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 19156, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 23034, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 27595, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 32967, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 39303, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 46787, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 55638, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 66124, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 78565, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 93350, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 110949, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 131934, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 156999, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 186990, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 222941, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 266116, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 318063, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 380686, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 456324, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 547864, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 658872, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 793763, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 958014, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 1158435, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 1403508, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 1703828, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 2072646, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 2526581, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["GrimFeastResummonPlayer"] = { + name = "Grim Resurrection", + hidden = true, + description = "Consumes stored Minion Life to Revive your Minions. Revives as many Minions as possible with total Life equal to or less than the Life stored by Grim Feast, prioritising those with higher maximum Life.", + skillTypes = { [SkillType.Spell] = true, }, + castTime = 0.4, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Grim Resurrection", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, stats = { "base_deal_no_damage", - "base_skill_disabled", + "can_perform_skill_while_moving", }, levels = { [1] = { actorLevel = 1, }, @@ -9771,62 +11049,60 @@ skills["HandOfChayulaPlayer"] = { name = "Hand of Chayula", baseTypeName = "Hand of Chayula", color = 3, - description = "Dash to an enemy and Strike them with an unarmed Attack, applying socketed Curses and triggering socketed Marks with reduced effect. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.", - skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Palm] = true, }, + description = "Dash to an enemy and Strike them, triggering socketed Marks with increased effect and applying socketed Curses with increased duration.", + skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Palm] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, }, weaponTypes = { - ["None"] = true, ["Staff"] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 12, }, }, + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 11, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 3, cost = { Mana = 13, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 6, cost = { Mana = 14, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.88, levelRequirement = 10, cost = { Mana = 16, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.95, levelRequirement = 14, cost = { Mana = 18, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 22, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.16, levelRequirement = 26, cost = { Mana = 24, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 31, cost = { Mana = 27, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 30, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.35, levelRequirement = 41, cost = { Mana = 33, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.41, levelRequirement = 46, cost = { Mana = 37, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.49, levelRequirement = 52, cost = { Mana = 41, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 58, cost = { Mana = 45, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 64, cost = { Mana = 50, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 66, cost = { Mana = 56, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 6, cost = { Mana = 15, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.88, levelRequirement = 10, cost = { Mana = 17, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.95, levelRequirement = 14, cost = { Mana = 19, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 18, cost = { Mana = 22, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 24, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.16, levelRequirement = 26, cost = { Mana = 27, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 31, cost = { Mana = 30, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 33, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.35, levelRequirement = 41, cost = { Mana = 37, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.41, levelRequirement = 46, cost = { Mana = 40, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.49, levelRequirement = 52, cost = { Mana = 44, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 58, cost = { Mana = 48, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 64, cost = { Mana = 52, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 66, cost = { Mana = 57, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 72, cost = { Mana = 62, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 78, cost = { Mana = 68, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 84, cost = { Mana = 76, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 84, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 93, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 104, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 115, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 127, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 141, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 156, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 173, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 192, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 213, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 236, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 262, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 290, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 321, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 356, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 90, cost = { Mana = 395, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.56, levelRequirement = 90, cost = { Mana = 437, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 485, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 5.03, levelRequirement = 90, cost = { Mana = 537, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 5.28, levelRequirement = 90, cost = { Mana = 595, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.54, levelRequirement = 90, cost = { Mana = 660, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 78, cost = { Mana = 67, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 84, cost = { Mana = 73, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 79, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 85, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 91, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 98, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 106, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 114, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 122, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 131, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 141, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 151, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 161, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 172, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 184, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 197, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 210, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 90, cost = { Mana = 224, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.56, levelRequirement = 90, cost = { Mana = 239, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 255, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 5.03, levelRequirement = 90, cost = { Mana = 271, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 5.28, levelRequirement = 90, cost = { Mana = 289, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.54, levelRequirement = 90, cost = { Mana = 307, }, }, }, statSets = { [1] = { label = "Strike", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "hand_of_chayula", baseFlags = { attack = true, @@ -9837,55 +11113,55 @@ skills["HandOfChayulaPlayer"] = { constantStats = { { "melee_conditional_step_distance", 10 }, { "base_melee_dash_range", 65 }, - { "additional_base_critical_strike_chance", 900 }, + { "active_skill_base_physical_damage_%_to_convert_to_chaos", 73 }, }, stats = { - "attack_minimum_added_chaos_damage", - "attack_maximum_added_chaos_damage", "global_always_hit", "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 13, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 18, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 23, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 29, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 35, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 41, 76, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 47, 88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 54, 100, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 61, 113, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 68, 127, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 76, 141, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 84, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 92, 172, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 101, 188, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 110, 204, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 119, 222, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 129, 239, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 139, 258, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 149, 277, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 160, 296, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 170, 317, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 182, 337, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 193, 359, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 205, 380, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 217, 403, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 229, 426, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 242, 449, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 255, 474, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 268, 498, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 282, 524, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 296, 550, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 310, 576, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 325, 603, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 340, 631, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 355, 659, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 371, 688, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 386, 718, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 403, 748, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -9947,51 +11223,173 @@ skills["SupportHandOfChayulaPlayer"] = { baseFlags = { }, stats = { - "curse_effect_+%", + "base_curse_duration_+%", "mark_effect_+%", "triggered_by_hand_of_chayula", }, levels = { - [1] = { -40, -40, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { -40, -39, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { -39, -39, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { -39, -38, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { -38, -38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { -38, -37, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { -37, -37, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { -37, -36, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { -36, -36, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { -36, -35, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { -35, -35, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { -35, -34, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { -34, -34, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { -34, -33, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { -33, -33, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { -33, -32, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { -32, -32, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { -32, -31, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { -31, -31, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { -31, -30, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { -30, -30, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { -30, -29, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { -29, -29, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { -29, -28, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { -28, -28, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { -28, -27, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { -27, -27, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { -27, -26, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { -26, -26, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { -26, -25, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { -25, -25, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { -25, -24, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { -24, -24, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { -24, -23, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { -23, -23, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { -23, -22, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { -22, -22, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { -22, -21, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { -21, -21, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { -21, -20, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 100, 20, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 100, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 100, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 100, 21, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 100, 22, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 100, 22, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 100, 23, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 100, 23, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 100, 24, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 100, 24, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 100, 25, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 100, 25, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 100, 26, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 100, 26, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 100, 27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 100, 27, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 100, 28, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 100, 28, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 100, 29, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 100, 29, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 100, 30, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 100, 30, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 100, 31, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 100, 31, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 100, 32, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 100, 32, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 100, 33, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 100, 33, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 100, 34, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 100, 34, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 100, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 100, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 100, 36, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 100, 36, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 100, 37, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 100, 37, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 100, 38, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 100, 38, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 100, 39, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 100, 39, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["HeartOfIcePlayer"] = { + name = "Heart of Ice", + baseTypeName = "Heart of Ice", + fromItem = true, + color = 3, + description = "Chills all enemies in your Presence.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.Cold] = true, [SkillType.Spell] = true, }, + castTime = 0, + qualityStats = { + { "active_skill_chill_effect_+%_final", 1 }, + }, + levels = { + [1] = { critChance = 11, levelRequirement = 0, }, + [2] = { critChance = 11, levelRequirement = 3, }, + [3] = { critChance = 11, levelRequirement = 6, }, + [4] = { critChance = 11, levelRequirement = 10, }, + [5] = { critChance = 11, levelRequirement = 14, }, + [6] = { critChance = 11, levelRequirement = 18, }, + [7] = { critChance = 11, levelRequirement = 22, }, + [8] = { critChance = 11, levelRequirement = 26, }, + [9] = { critChance = 11, levelRequirement = 31, }, + [10] = { critChance = 11, levelRequirement = 36, }, + [11] = { critChance = 11, levelRequirement = 41, }, + [12] = { critChance = 11, levelRequirement = 46, }, + [13] = { critChance = 11, levelRequirement = 52, }, + [14] = { critChance = 11, levelRequirement = 58, }, + [15] = { critChance = 11, levelRequirement = 64, }, + [16] = { critChance = 11, levelRequirement = 66, }, + [17] = { critChance = 11, levelRequirement = 72, }, + [18] = { critChance = 11, levelRequirement = 78, }, + [19] = { critChance = 11, levelRequirement = 84, }, + [20] = { critChance = 11, levelRequirement = 90, }, + [21] = { critChance = 11, levelRequirement = 90, }, + [22] = { critChance = 11, levelRequirement = 90, }, + [23] = { critChance = 11, levelRequirement = 90, }, + [24] = { critChance = 11, levelRequirement = 90, }, + [25] = { critChance = 11, levelRequirement = 90, }, + [26] = { critChance = 11, levelRequirement = 90, }, + [27] = { critChance = 11, levelRequirement = 90, }, + [28] = { critChance = 11, levelRequirement = 90, }, + [29] = { critChance = 11, levelRequirement = 90, }, + [30] = { critChance = 11, levelRequirement = 90, }, + [31] = { critChance = 11, levelRequirement = 90, }, + [32] = { critChance = 11, levelRequirement = 90, }, + [33] = { critChance = 11, levelRequirement = 90, }, + [34] = { critChance = 11, levelRequirement = 90, }, + [35] = { critChance = 11, levelRequirement = 90, }, + [36] = { critChance = 11, levelRequirement = 90, }, + [37] = { critChance = 11, levelRequirement = 90, }, + [38] = { critChance = 11, levelRequirement = 90, }, + [39] = { critChance = 11, levelRequirement = 90, }, + [40] = { critChance = 11, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Heart of Ice", + baseEffectiveness = 8.3599996566772, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "chilling_aura", + baseFlags = { + buff = true, + aura = true, + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_skill_show_average_damage_instead_of_dps", + "skill_chill_magnitude_is_aura_magnitude", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 98, 148, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 120, 180, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 144, 217, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 172, 258, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 203, 305, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 239, 359, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 280, 420, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 326, 489, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 378, 567, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 438, 657, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 506, 759, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 583, 875, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 672, 1007, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 773, 1159, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 888, 1332, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1021, 1531, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1172, 1758, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1346, 2020, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1546, 2319, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1776, 2664, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 2041, 3061, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2346, 3519, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2699, 4048, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 3106, 4659, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 3577, 5365, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 4123, 6184, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 4756, 7134, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 5492, 8238, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 6348, 9522, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 7346, 11019, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8509, 12764, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 9869, 14803, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 11459, 17188, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 13322, 19983, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 15509, 23263, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10193,124 +11591,253 @@ skills["HexblastPlayer"] = { baseTypeName = "Hexblast", color = 3, description = "Detonate a Curse on every enemy in an area, causing explosions of Chaos damage but removing the Curse. Can only detonate Curses for which at least half of the duration has expired.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.DynamicCooldown] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.DynamicCooldown] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { - { "active_skill_chaos_damage_+%_final", 1 }, + { "hexblast_damage_+%_final_per_second_remaining_curse_duration", 0.5 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 13, }, }, - [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 15, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 12, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 14, }, }, [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 17, }, }, [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 29, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 32, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 37, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 42, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 47, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 53, }, }, + [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 23, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 26, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 43, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 49, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 55, }, }, [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 61, }, }, - [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 69, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 78, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 88, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 100, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 113, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 128, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 145, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 164, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 185, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 210, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 238, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 269, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 305, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 345, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 390, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 442, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 500, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 566, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 640, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 725, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 820, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 928, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1051, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1189, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1346, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1523, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1724, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 68, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 76, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 84, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 94, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 104, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 115, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 127, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 140, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 154, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 170, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 187, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 205, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 225, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 247, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 270, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 296, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 324, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 354, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 387, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 422, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 460, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 502, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 547, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 596, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 649, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 706, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 768, }, }, }, statSets = { [1] = { label = "Hexblast", baseEffectiveness = 7.8000001907349, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "hexblast", baseFlags = { spell = true, area = true, }, constantStats = { - { "hexblast_maximum_number_of_explosions", 3 }, - { "active_skill_base_area_of_effect_radius", 20 }, - { "active_skill_base_secondary_area_of_effect_radius", 28 }, + { "hexblast_maximum_number_of_explosions", 3 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_secondary_area_of_effect_radius", 28 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "is_area_damage", + "can_perform_skill_while_moving", + "show_curse_hexblastable", + }, + notMinionStat = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + }, + levels = { + [1] = { 21, 39, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 29, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 39, 73, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 51, 95, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 65, 121, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 80, 149, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 98, 182, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 118, 219, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 140, 261, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 166, 309, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 195, 363, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 228, 424, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 266, 494, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 309, 573, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 357, 664, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 413, 767, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 476, 884, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 548, 1018, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 631, 1172, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 725, 1347, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 833, 1547, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 957, 1777, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1099, 2041, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1262, 2344, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1450, 2693, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1666, 3094, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1915, 3557, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2203, 4091, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 2535, 4709, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 2920, 5423, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 3366, 6251, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 3883, 7211, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 4484, 8327, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 5183, 9625, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 5997, 11137, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 6947, 12901, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8057, 14962, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 9355, 17374, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 10876, 20199, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 12661, 23513, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["HypothermiaPlayer"] = { + name = "Hypothermia", + baseTypeName = "Hypothermia", + color = 3, + description = "Curse all targets in an area after a short delay, lowering their Cold Resistance.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.7, + qualityStats = { + { "curse_effect_+%", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, + }, + statSets = { + [1] = { + label = "Hypothermia", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "cold_weakness", + statMap = { + ["base_skill_buff_cold_damage_resistance_%_to_apply"] = { + mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), + }, + }, + baseFlags = { + spell = true, + curse = true, + area = true, + duration = true, + }, + constantStats = { + { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "spell_minimum_base_chaos_damage", - "spell_maximum_base_chaos_damage", - "is_area_damage", + "base_skill_effect_duration", + "active_skill_base_area_of_effect_radius", + "base_skill_buff_cold_damage_resistance_%_to_apply", + "base_deal_no_damage", "can_perform_skill_while_moving", - "show_curse_hexblastable", }, notMinionStat = { - "spell_minimum_base_chaos_damage", - "spell_maximum_base_chaos_damage", + "base_skill_effect_duration", }, levels = { - [1] = { 21, 39, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 29, 54, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 40, 75, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 53, 98, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 67, 124, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 83, 154, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 100, 187, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 120, 224, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 143, 265, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 168, 312, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 197, 365, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 228, 424, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 264, 491, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 304, 565, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 350, 650, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 401, 745, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 458, 851, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 523, 972, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 597, 1108, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 679, 1262, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 773, 1435, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 879, 1632, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 998, 1854, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 1134, 2107, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 1288, 2393, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 1463, 2718, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 1662, 3087, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1888, 3507, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 2146, 3986, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 2440, 4532, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 2776, 5155, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 3159, 5867, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 3597, 6681, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 4100, 7613, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 4675, 8682, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 5336, 9910, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 6095, 11320, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 6969, 12942, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 7975, 14810, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 9135, 16965, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10319,61 +11846,61 @@ skills["IceNovaPlayer"] = { name = "Ice Nova", baseTypeName = "Ice Nova", color = 3, - description = "Conjure a wave of ice in all directions, Knocking Back enemies based on how close they are to you. Casting Ice Nova targeting near a Frostbolt Projectile will cause it to originate from the Frostbolt instead of you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, }, + description = "Conjure a wave of ice in all directions, Knocking Back enemies based on how close they are to you. Casting Ice Nova targeting near a Frostbolt Projectile will cause it to originate from the Frostbolt instead of you. Consumes a Cold Infusion if possible to leave a patch of Chilled Ground.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, [SkillType.CreatesGroundEffect] = true, }, castTime = 1, qualityStats = { { "active_skill_damage_+%_final_vs_chilled_enemies", 1 }, }, levels = { - [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 8, }, }, - [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 9, }, }, + [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 7, }, }, + [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 8, }, }, [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 10, }, }, [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 11, }, }, [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 13, }, }, [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 15, }, }, [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 27, }, }, - [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 31, }, }, - [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 35, }, }, + [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 20, }, }, + [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 22, }, }, + [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 25, }, }, + [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 28, }, }, + [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 32, }, }, + [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 36, }, }, [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 40, }, }, - [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 45, }, }, - [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 51, }, }, - [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 58, }, }, - [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 66, }, }, - [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 75, }, }, - [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 84, }, }, - [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 96, }, }, - [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 108, }, }, - [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 123, }, }, - [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 139, }, }, - [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 157, }, }, - [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 178, }, }, - [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 202, }, }, - [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 228, }, }, - [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 258, }, }, - [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 292, }, }, - [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 331, }, }, - [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 375, }, }, - [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 424, }, }, - [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 480, }, }, - [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 543, }, }, - [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 615, }, }, - [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 696, }, }, - [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 788, }, }, - [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 891, }, }, - [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1009, }, }, + [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 44, }, }, + [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 49, }, }, + [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 55, }, }, + [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 61, }, }, + [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 67, }, }, + [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 74, }, }, + [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 82, }, }, + [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 90, }, }, + [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 99, }, }, + [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 109, }, }, + [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 120, }, }, + [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 131, }, }, + [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 144, }, }, + [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 158, }, }, + [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 173, }, }, + [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 189, }, }, + [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 207, }, }, + [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 226, }, }, + [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 247, }, }, + [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 269, }, }, + [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 294, }, }, + [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 320, }, }, + [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 348, }, }, + [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 379, }, }, + [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 413, }, }, + [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 449, }, }, }, statSets = { [1] = { label = "Ice Nova", - baseEffectiveness = 1.460000038147, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "ice_nova", + baseEffectiveness = 1.5199999809265, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, + statDescriptionScope = "ice_nova_statset_0", baseFlags = { spell = true, area = true, @@ -10384,70 +11911,74 @@ skills["IceNovaPlayer"] = { { "generic_knockback_distance_limit", 20 }, { "active_skill_base_area_of_effect_radius", 32 }, { "ice_nova_number_of_frost_bolts_to_cast_on", 1 }, - { "active_skill_chill_effect_+%_final", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 8000 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", "active_skill_hit_damage_freeze_multiplier_+%_final", + "active_skill_chill_effect_+%_final", "is_area_damage", "global_knockback", "can_perform_skill_while_moving", + "active_skill_consumes_a_cold_infusion", }, notMinionStat = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", }, levels = { - [1] = { 5, 7, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 103, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 9, 13, 106, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 11, 17, 109, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 14, 21, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 17, 26, 115, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 21, 31, 118, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 25, 37, 121, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 29, 44, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 34, 51, 127, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 40, 60, 130, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 46, 69, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 53, 79, 136, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 60, 90, 139, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 142, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 78, 117, 145, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 88, 132, 148, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 100, 150, 151, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 113, 169, 154, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 127, 191, 157, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 143, 215, 160, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 161, 241, 163, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 181, 271, 166, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 203, 305, 169, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 228, 342, 172, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 256, 384, 175, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 287, 431, 178, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 323, 484, 181, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 362, 543, 184, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 406, 609, 187, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 456, 684, 188, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 512, 767, 190, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 575, 862, 191, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 645, 968, 193, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 725, 1088, 194, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 816, 1223, 196, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 917, 1376, 197, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1033, 1549, 199, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1163, 1745, 200, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1311, 1966, 202, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6, 8, 100, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 10, 103, 103, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 9, 13, 106, 106, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 17, 109, 109, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, 112, 112, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 17, 26, 115, 115, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 31, 118, 118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 25, 37, 121, 121, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 44, 124, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 34, 51, 127, 127, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 40, 60, 130, 130, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 46, 69, 133, 133, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 53, 79, 136, 136, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 61, 91, 139, 139, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 104, 142, 142, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 79, 119, 145, 145, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 90, 135, 148, 148, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 102, 153, 151, 151, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 116, 173, 154, 154, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 131, 196, 157, 157, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 148, 222, 160, 160, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 167, 251, 163, 163, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 189, 283, 166, 166, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 213, 319, 169, 169, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 240, 360, 172, 172, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 271, 406, 175, 175, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 305, 458, 178, 178, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 345, 517, 181, 181, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 389, 583, 184, 184, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 438, 658, 187, 187, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 495, 742, 188, 188, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 559, 838, 190, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 631, 947, 191, 191, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 713, 1070, 193, 193, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 807, 1210, 194, 194, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 913, 1369, 196, 196, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1033, 1550, 197, 197, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1171, 1756, 199, 199, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1328, 1992, 200, 200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1507, 2260, 202, 202, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { - label = "Hidden", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "ice_nova", + label = "Cold-Infused", + baseEffectiveness = 4.2399997711182, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "ice_nova_statset_1", baseFlags = { spell = true, area = true, @@ -10458,25 +11989,70 @@ skills["IceNovaPlayer"] = { { "generic_knockback_distance_limit", 20 }, { "active_skill_base_area_of_effect_radius", 32 }, { "ice_nova_number_of_frost_bolts_to_cast_on", 1 }, - { "active_skill_chill_effect_+%_final", 100 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 8000 }, }, stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", "active_skill_hit_damage_freeze_multiplier_+%_final", + "active_skill_chill_effect_+%_final", "is_area_damage", "global_knockback", "can_perform_skill_while_moving", + "active_skill_consumes_a_cold_infusion", + "display_statset_hide_usage_stats", + "base_skill_show_average_damage_instead_of_dps", }, notMinionStat = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 100, statInterpolation = { 3, 3, 1, }, actorLevel = 1, }, + [1] = { 0, 0, 13, 20, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 18, 27, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 24, 36, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 31, 47, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 40, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 49, 73, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 59, 89, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 71, 106, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 84, 125, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 98, 147, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 115, 172, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 133, 200, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 154, 231, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 177, 266, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 203, 305, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 233, 349, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 266, 399, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 304, 456, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 346, 519, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 394, 591, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 448, 672, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 509, 764, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 578, 868, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 657, 985, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 746, 1119, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 847, 1271, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 962, 1443, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 1093, 1639, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 1242, 1863, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 1412, 2118, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 1606, 2408, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 1827, 2741, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 2080, 3121, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 2371, 3556, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 2703, 4055, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 3085, 4627, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 3524, 5285, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 4028, 6042, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 4609, 6914, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 5279, 7919, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10497,44 +12073,44 @@ skills["IceStrikePlayer"] = { levels = { [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 5, }, }, [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 6, }, }, - [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 6, }, }, - [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 7, }, }, - [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 8, }, }, - [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 9, }, }, - [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 10, }, }, - [8] = { attackSpeedMultiplier = 40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 11, }, }, - [9] = { attackSpeedMultiplier = 40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 12, }, }, - [10] = { attackSpeedMultiplier = 40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 13, }, }, - [11] = { attackSpeedMultiplier = 40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 15, }, }, - [12] = { attackSpeedMultiplier = 40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 17, }, }, - [13] = { attackSpeedMultiplier = 40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 18, }, }, - [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 20, }, }, - [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 23, }, }, - [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 25, }, }, + [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 7, }, }, + [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 8, }, }, + [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 10, }, }, + [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 11, }, }, + [8] = { attackSpeedMultiplier = 40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 12, }, }, + [9] = { attackSpeedMultiplier = 40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 13, }, }, + [10] = { attackSpeedMultiplier = 40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 15, }, }, + [11] = { attackSpeedMultiplier = 40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 16, }, }, + [12] = { attackSpeedMultiplier = 40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 18, }, }, + [13] = { attackSpeedMultiplier = 40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 20, }, }, + [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 22, }, }, + [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 24, }, }, + [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 26, }, }, [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 28, }, }, - [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 31, }, }, - [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 34, }, }, - [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 38, }, }, - [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 42, }, }, - [22] = { attackSpeedMultiplier = 40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 47, }, }, - [23] = { attackSpeedMultiplier = 40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 52, }, }, - [24] = { attackSpeedMultiplier = 40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 58, }, }, - [25] = { attackSpeedMultiplier = 40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 64, }, }, - [26] = { attackSpeedMultiplier = 40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 71, }, }, - [27] = { attackSpeedMultiplier = 40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 79, }, }, - [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 88, }, }, - [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 97, }, }, - [30] = { attackSpeedMultiplier = 40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 108, }, }, - [31] = { attackSpeedMultiplier = 40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 119, }, }, - [32] = { attackSpeedMultiplier = 40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 132, }, }, - [33] = { attackSpeedMultiplier = 40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 147, }, }, - [34] = { attackSpeedMultiplier = 40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 163, }, }, - [35] = { attackSpeedMultiplier = 40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 180, }, }, - [36] = { attackSpeedMultiplier = 40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 200, }, }, - [37] = { attackSpeedMultiplier = 40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 221, }, }, - [38] = { attackSpeedMultiplier = 40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 245, }, }, - [39] = { attackSpeedMultiplier = 40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 272, }, }, - [40] = { attackSpeedMultiplier = 40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 301, }, }, + [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 30, }, }, + [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 33, }, }, + [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 36, }, }, + [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 38, }, }, + [22] = { attackSpeedMultiplier = 40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 42, }, }, + [23] = { attackSpeedMultiplier = 40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 45, }, }, + [24] = { attackSpeedMultiplier = 40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 48, }, }, + [25] = { attackSpeedMultiplier = 40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 52, }, }, + [26] = { attackSpeedMultiplier = 40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 56, }, }, + [27] = { attackSpeedMultiplier = 40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 60, }, }, + [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 64, }, }, + [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 69, }, }, + [30] = { attackSpeedMultiplier = 40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 73, }, }, + [31] = { attackSpeedMultiplier = 40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 79, }, }, + [32] = { attackSpeedMultiplier = 40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 84, }, }, + [33] = { attackSpeedMultiplier = 40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 90, }, }, + [34] = { attackSpeedMultiplier = 40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 96, }, }, + [35] = { attackSpeedMultiplier = 40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 102, }, }, + [36] = { attackSpeedMultiplier = 40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 109, }, }, + [37] = { attackSpeedMultiplier = 40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 116, }, }, + [38] = { attackSpeedMultiplier = 40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 124, }, }, + [39] = { attackSpeedMultiplier = 40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 132, }, }, + [40] = { attackSpeedMultiplier = 40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 140, }, }, }, statSets = { [1] = { @@ -10554,6 +12130,7 @@ skills["IceStrikePlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -10616,50 +12193,391 @@ skills["IceStrikePlayer"] = { { "melee_range_+", 7 }, }, stats = { - "is_area_damage", - "display_statset_is_final_strike", + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + "display_statset_is_final_strike", + }, + levels = { + [1] = { baseMultiplier = 1.3, actorLevel = 1, }, + [2] = { baseMultiplier = 1.43, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.57, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.71, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.85, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.99, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 2.13, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 2.26, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 2.37, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.49, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 2.61, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 2.74, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 2.88, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 3.03, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 3.34, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 3.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 3.68, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 3.86, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 4.05, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 4.26, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 4.47, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 4.69, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 4.93, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 5.17, actorLevel = 136.875, }, + [26] = { baseMultiplier = 5.43, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 5.71, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 5.99, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 6.29, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 6.6, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 6.93, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 7.28, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 7.65, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 8.03, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 8.43, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 8.85, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 9.29, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 9.76, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 10.25, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 10.76, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["IcestormPlayer"] = { + name = "Icestorm", + baseTypeName = "Icestorm", + fromItem = true, + color = 3, + description = "Conjure a hail of icy bolts over the targeted area. Chill and Freeze on enemies in front of you are Consumed to fuel the Icestorm by creating improved bolts.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 1.2, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.1 }, + }, + levels = { + [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 12, }, }, + [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 14, }, }, + [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 17, }, }, + [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 19, }, }, + [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 22, }, }, + [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 26, }, }, + [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 43, }, }, + [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 48, }, }, + [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 54, }, }, + [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 61, }, }, + [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 68, }, }, + [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 75, }, }, + [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 84, }, }, + [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 93, }, }, + [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 103, }, }, + [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 114, }, }, + [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 126, }, }, + [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 139, }, }, + [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 153, }, }, + [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 169, }, }, + [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 186, }, }, + [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 204, }, }, + [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 224, }, }, + [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 245, }, }, + [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 269, }, }, + [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 294, }, }, + [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 322, }, }, + [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 352, }, }, + [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 384, }, }, + [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 420, }, }, + [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 458, }, }, + [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 499, }, }, + [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 544, }, }, + [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 593, }, }, + [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 645, }, }, + [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 702, }, }, + [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 764, }, }, + }, + statSets = { + [1] = { + label = "Storm", + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "ice_storm", + statMap = { + ["fire_storm_fireball_delay_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "fire_storm_fireball_delay_ms", 150 }, + { "firestorm_max_number_of_storms", 3 }, + { "base_skill_effect_duration", 6000 }, + { "active_skill_base_area_of_effect_radius", 9 }, + { "active_skill_base_secondary_area_of_effect_radius", 26 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "rain_hit_delay_ms", 150 }, + { "firestorm_improved_bolts_per_chill_consumed", 1 }, + { "firestorm_improved_bolts_per_monster_power_of_freeze_consumed", 1 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_skill_show_average_damage_instead_of_dps", + "is_area_damage", + "can_perform_skill_while_moving", + "cold_damage_cannot_chill", + "never_freeze", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 72, 107, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 82, 122, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 93, 139, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 120, 180, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 155, 232, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 176, 264, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 200, 300, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 227, 340, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 258, 387, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 293, 439, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 333, 499, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 379, 568, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 431, 646, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 559, 839, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 638, 956, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 728, 1091, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 831, 1247, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 950, 1425, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1087, 1631, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1245, 1868, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Improved Bolt", + baseEffectiveness = 4.0500001907349, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "ice_storm", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "rain_hit_delay_ms", 150 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_skill_show_average_damage_instead_of_dps", + "is_area_damage", + "can_perform_skill_while_moving", + "cold_damage_cannot_chill", + "never_freeze", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 0, 0, 19, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 25, 38, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 35, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 45, 68, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 57, 85, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 70, 105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 85, 127, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 101, 152, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 120, 180, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 141, 211, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 164, 246, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 191, 286, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 220, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 254, 381, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 291, 437, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 334, 501, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 381, 572, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 435, 653, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 496, 744, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 564, 847, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 642, 963, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 730, 1094, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 829, 1243, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 941, 1412, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 1069, 1603, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 1214, 1821, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 1379, 2068, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 1566, 2349, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 1779, 2669, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 2023, 3034, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 2301, 3451, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 2618, 3927, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 2981, 4471, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 3397, 5095, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 3873, 5810, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 4420, 6630, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 5048, 7573, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 5771, 8657, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 6604, 9906, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 7564, 11346, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ImpurityPlayer"] = { + name = "Impurity", + baseTypeName = "Impurity", + fromItem = true, + color = 3, + description = "Emit an Aura that boosts the Chaos Resistance of you and Allies in your Presence.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Chaos] = true, [SkillType.AffectsPresence] = true, }, + castTime = 0, + qualityStats = { + { "base_skill_buff_chaos_damage_resistance_%_to_apply", 0.3 }, + }, + levels = { + [1] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 0, }, + [2] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 3, }, + [3] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 6, }, + [4] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 10, }, + [5] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 14, }, + [6] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 18, }, + [7] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 22, }, + [8] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 26, }, + [9] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 31, }, + [10] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 36, }, + [11] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 41, }, + [12] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 46, }, + [13] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 52, }, + [14] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 58, }, + [15] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 64, }, + [16] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 66, }, + [17] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 72, }, + [18] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 78, }, + [19] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 84, }, + [20] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [21] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [22] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [23] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [24] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [25] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [26] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [27] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [28] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [29] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [30] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [31] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [32] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [33] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [34] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [35] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [36] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [37] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [38] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [39] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + [40] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Impurity", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "chaos_resist_aura", + statMap = { + ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = { + mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), + }, + }, + baseFlags = { + spell = true, + aura = true, + area = true, + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + }, + stats = { + "base_skill_buff_chaos_damage_resistance_%_to_apply", + "base_deal_no_damage", }, levels = { - [1] = { baseMultiplier = 1.3, actorLevel = 1, }, - [2] = { baseMultiplier = 1.43, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.57, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.71, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.85, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.99, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 2.13, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 2.26, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.37, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.49, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.61, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.74, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.88, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 3.03, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 3.34, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 3.5, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.68, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.86, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 4.05, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 4.26, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 4.47, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 4.69, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 4.93, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 5.17, actorLevel = 136.875, }, - [26] = { baseMultiplier = 5.43, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 5.71, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 5.99, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 6.29, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 6.6, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 6.93, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 7.28, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 7.65, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 8.03, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 8.43, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 8.85, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 9.29, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 9.76, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 10.25, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 10.76, actorLevel = 288.29998779297, }, + [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 11, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 12, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 16, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 18, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 21, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 22, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 23, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 24, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 25, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 26, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 27, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 28, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 29, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 30, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 32, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 33, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 34, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 35, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 36, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 37, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 38, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 39, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 40, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 41, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 42, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 43, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 44, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 45, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 46, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 47, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 48, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 49, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10668,60 +12586,60 @@ skills["IncineratePlayer"] = { name = "Incinerate", baseTypeName = "Incinerate", color = 3, - description = "Conjure a torrent of Fire from your hand, Igniting enemies in front of you. The flames grow stronger the longer you Channel for, and at maximum strength also apply stacking Fire Exposure and creating Ignited Ground.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GainsStages] = true, }, + description = "Gain fuel by spending Mana on any Skill, then use the accumulated fuel to conjure a torrent of Fire from your hand, Igniting enemies in front of you. The flames grow stronger the longer you Channel. Consumes a Fire Infusion if possible to also create Ignited Ground.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.25, qualityStats = { { "base_ignite_effect_+%", 1 }, }, levels = { - [1] = { levelRequirement = 0, cost = { ManaPerMinute = 304, }, }, - [2] = { levelRequirement = 3, cost = { ManaPerMinute = 344, }, }, - [3] = { levelRequirement = 6, cost = { ManaPerMinute = 389, }, }, - [4] = { levelRequirement = 10, cost = { ManaPerMinute = 440, }, }, - [5] = { levelRequirement = 14, cost = { ManaPerMinute = 498, }, }, - [6] = { levelRequirement = 18, cost = { ManaPerMinute = 564, }, }, - [7] = { levelRequirement = 22, cost = { ManaPerMinute = 638, }, }, - [8] = { levelRequirement = 26, cost = { ManaPerMinute = 722, }, }, - [9] = { levelRequirement = 31, cost = { ManaPerMinute = 817, }, }, - [10] = { levelRequirement = 36, cost = { ManaPerMinute = 925, }, }, - [11] = { levelRequirement = 41, cost = { ManaPerMinute = 1047, }, }, - [12] = { levelRequirement = 46, cost = { ManaPerMinute = 1185, }, }, - [13] = { levelRequirement = 52, cost = { ManaPerMinute = 1341, }, }, - [14] = { levelRequirement = 58, cost = { ManaPerMinute = 1518, }, }, - [15] = { levelRequirement = 64, cost = { ManaPerMinute = 1718, }, }, - [16] = { levelRequirement = 66, cost = { ManaPerMinute = 1944, }, }, - [17] = { levelRequirement = 72, cost = { ManaPerMinute = 2200, }, }, - [18] = { levelRequirement = 78, cost = { ManaPerMinute = 2490, }, }, - [19] = { levelRequirement = 84, cost = { ManaPerMinute = 2818, }, }, - [20] = { levelRequirement = 90, cost = { ManaPerMinute = 3189, }, }, - [21] = { levelRequirement = 90, cost = { ManaPerMinute = 3609, }, }, - [22] = { levelRequirement = 90, cost = { ManaPerMinute = 4085, }, }, - [23] = { levelRequirement = 90, cost = { ManaPerMinute = 4623, }, }, - [24] = { levelRequirement = 90, cost = { ManaPerMinute = 5232, }, }, - [25] = { levelRequirement = 90, cost = { ManaPerMinute = 5921, }, }, - [26] = { levelRequirement = 90, cost = { ManaPerMinute = 6701, }, }, - [27] = { levelRequirement = 90, cost = { ManaPerMinute = 7583, }, }, - [28] = { levelRequirement = 90, cost = { ManaPerMinute = 8582, }, }, - [29] = { levelRequirement = 90, cost = { ManaPerMinute = 9712, }, }, - [30] = { levelRequirement = 90, cost = { ManaPerMinute = 10992, }, }, - [31] = { levelRequirement = 90, cost = { ManaPerMinute = 12439, }, }, - [32] = { levelRequirement = 90, cost = { ManaPerMinute = 14078, }, }, - [33] = { levelRequirement = 90, cost = { ManaPerMinute = 15932, }, }, - [34] = { levelRequirement = 90, cost = { ManaPerMinute = 18030, }, }, - [35] = { levelRequirement = 90, cost = { ManaPerMinute = 20405, }, }, - [36] = { levelRequirement = 90, cost = { ManaPerMinute = 23092, }, }, - [37] = { levelRequirement = 90, cost = { ManaPerMinute = 26133, }, }, - [38] = { levelRequirement = 90, cost = { ManaPerMinute = 29575, }, }, - [39] = { levelRequirement = 90, cost = { ManaPerMinute = 33470, }, }, - [40] = { levelRequirement = 90, cost = { ManaPerMinute = 37878, }, }, + [1] = { critChance = 6, levelRequirement = 0, }, + [2] = { critChance = 6, levelRequirement = 3, }, + [3] = { critChance = 6, levelRequirement = 6, }, + [4] = { critChance = 6, levelRequirement = 10, }, + [5] = { critChance = 6, levelRequirement = 14, }, + [6] = { critChance = 6, levelRequirement = 18, }, + [7] = { critChance = 6, levelRequirement = 22, }, + [8] = { critChance = 6, levelRequirement = 26, }, + [9] = { critChance = 6, levelRequirement = 31, }, + [10] = { critChance = 6, levelRequirement = 36, }, + [11] = { critChance = 6, levelRequirement = 41, }, + [12] = { critChance = 6, levelRequirement = 46, }, + [13] = { critChance = 6, levelRequirement = 52, }, + [14] = { critChance = 6, levelRequirement = 58, }, + [15] = { critChance = 6, levelRequirement = 64, }, + [16] = { critChance = 6, levelRequirement = 66, }, + [17] = { critChance = 6, levelRequirement = 72, }, + [18] = { critChance = 6, levelRequirement = 78, }, + [19] = { critChance = 6, levelRequirement = 84, }, + [20] = { critChance = 6, levelRequirement = 90, }, + [21] = { critChance = 6, levelRequirement = 90, }, + [22] = { critChance = 6, levelRequirement = 90, }, + [23] = { critChance = 6, levelRequirement = 90, }, + [24] = { critChance = 6, levelRequirement = 90, }, + [25] = { critChance = 6, levelRequirement = 90, }, + [26] = { critChance = 6, levelRequirement = 90, }, + [27] = { critChance = 6, levelRequirement = 90, }, + [28] = { critChance = 6, levelRequirement = 90, }, + [29] = { critChance = 6, levelRequirement = 90, }, + [30] = { critChance = 6, levelRequirement = 90, }, + [31] = { critChance = 6, levelRequirement = 90, }, + [32] = { critChance = 6, levelRequirement = 90, }, + [33] = { critChance = 6, levelRequirement = 90, }, + [34] = { critChance = 6, levelRequirement = 90, }, + [35] = { critChance = 6, levelRequirement = 90, }, + [36] = { critChance = 6, levelRequirement = 90, }, + [37] = { critChance = 6, levelRequirement = 90, }, + [38] = { critChance = 6, levelRequirement = 90, }, + [39] = { critChance = 6, levelRequirement = 90, }, + [40] = { critChance = 6, levelRequirement = 90, }, }, statSets = { [1] = { label = "Incinerate", - baseEffectiveness = 3.1500000953674, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + baseEffectiveness = 3.9000000953674, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "incinerate_player_statset_0", baseFlags = { spell = true, @@ -10730,74 +12648,77 @@ skills["IncineratePlayer"] = { }, constantStats = { { "incinerate_cone_angle", 20 }, - { "active_skill_base_area_of_effect_radius", 46 }, - { "base_skill_effect_duration", 8000 }, - { "incinerate_maximum_exposure_magnitude", 50 }, - { "incinerate_maximum_stages", 8 }, + { "active_skill_base_area_of_effect_radius", 58 }, + { "incinerate_maximum_stages", 12 }, { "base_minimum_channel_time_ms", 600 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_ignite_duration_+%_final", -25 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_ignite_duration_+%_final", -50 }, { "active_skill_override_turn_duration_ms", 360 }, - { "incinerate_damage_+%_final_per_stage", 40 }, + { "incinerate_damage_+%_final_per_stage", 30 }, { "active_skill_energy_generated_+%_final", -98 }, + { "incinerate_minimum_fuel_to_use", 1000 }, + { "incinerate_gain_stage_every_x_ms", 250 }, + { "incinerate_maximum_fuel", 10000 }, + { "active_skill_ignite_chance_+%_final", -80 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "incinerate_buff_exposure_-_to_total_fire_resistance_per_stack", + "incinerate_fuel_gain_per_mana_spent", "is_area_damage", "can_perform_skill_while_moving", - "channel_start_lock_cancelling_scales_with_cast_speed", - "cast_speed_modifiers_apply_to_over_time_cost", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_fire_infusion", + "no_mana_cost", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", }, levels = { - [1] = { 10, 15, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 13, 20, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 19, 28, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 24, 36, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 31, 46, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 38, 57, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 46, 70, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 56, 83, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 66, 99, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 78, 116, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 91, 136, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 105, 158, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 122, 183, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 141, 211, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 161, 242, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 185, 278, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 212, 317, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 242, 362, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 275, 413, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 314, 470, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 357, 535, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 406, 608, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 461, 691, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 524, 785, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 595, 892, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 675, 1013, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 767, 1151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 872, 1307, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 991, 1486, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1126, 1689, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1281, 1922, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1458, 2187, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1660, 2491, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1892, 2838, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2158, 3237, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2463, 3694, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2813, 4220, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3216, 4824, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 3681, 5521, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4216, 6324, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 12, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 16, 25, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 22, 34, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 29, 44, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 37, 56, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 46, 69, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 56, 84, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 67, 101, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 80, 120, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 95, 142, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 112, 167, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 130, 196, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 152, 228, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 176, 265, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 204, 306, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 236, 354, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 272, 408, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 313, 470, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 360, 541, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 414, 622, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 476, 714, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 547, 820, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 628, 942, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 721, 1082, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 829, 1243, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 952, 1428, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1095, 1642, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1259, 1888, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1449, 2173, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1669, 2503, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1923, 2885, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2219, 3328, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2562, 3843, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2962, 4442, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3427, 5140, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3970, 5954, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 4604, 6906, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 5346, 8019, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 6215, 9322, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 7235, 10852, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { @@ -10811,28 +12732,31 @@ skills["IncineratePlayer"] = { }, constantStats = { { "incinerate_cone_angle", 20 }, - { "active_skill_base_area_of_effect_radius", 46 }, - { "incinerate_maximum_exposure_magnitude", 50 }, - { "incinerate_maximum_stages", 8 }, + { "active_skill_base_area_of_effect_radius", 58 }, + { "incinerate_maximum_stages", 12 }, { "base_minimum_channel_time_ms", 600 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_override_turn_duration_ms", 360 }, - { "incinerate_damage_+%_final_per_stage", 40 }, + { "incinerate_damage_+%_final_per_stage", 30 }, { "active_skill_energy_generated_+%_final", -98 }, + { "incinerate_minimum_fuel_to_use", 1000 }, + { "incinerate_gain_stage_every_x_ms", 250 }, + { "incinerate_maximum_fuel", 10000 }, { "base_skill_effect_duration", 4000 }, - { "active_skill_base_secondary_area_of_effect_radius", 8 }, + { "active_skill_base_secondary_area_of_effect_radius", 14 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "incinerate_buff_exposure_-_to_total_fire_resistance_per_stack", + "incinerate_fuel_gain_per_mana_spent", "is_area_damage", "can_perform_skill_while_moving", - "channel_start_lock_cancelling_scales_with_cast_speed", - "cast_speed_modifiers_apply_to_over_time_cost", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", + "active_skill_consumes_a_fire_infusion", + "no_mana_cost", "display_statset_hide_usage_stats", }, notMinionStat = { @@ -10840,46 +12764,46 @@ skills["IncineratePlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 10, 15, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 13, 20, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 19, 28, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 24, 36, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 31, 46, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 38, 57, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 46, 70, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 56, 83, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 66, 99, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 78, 116, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 91, 136, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 105, 158, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 122, 183, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 141, 211, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 161, 242, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 185, 278, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 212, 317, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 242, 362, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 275, 413, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 314, 470, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 357, 535, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 406, 608, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 461, 691, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 524, 785, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 595, 892, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 675, 1013, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 767, 1151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 872, 1307, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 991, 1486, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1126, 1689, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1281, 1922, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1458, 2187, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1660, 2491, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1892, 2838, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2158, 3237, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2463, 3694, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2813, 4220, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3216, 4824, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 3681, 5521, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4216, 6324, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 12, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 16, 25, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 22, 34, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 29, 44, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 37, 56, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 46, 69, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 56, 84, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 67, 101, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 80, 120, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 95, 142, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 112, 167, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 130, 196, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 152, 228, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 176, 265, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 204, 306, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 236, 354, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 272, 408, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 313, 470, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 360, 541, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 414, 622, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 476, 714, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 547, 820, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 628, 942, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 721, 1082, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 829, 1243, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 952, 1428, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1095, 1642, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1259, 1888, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1449, 2173, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1669, 2503, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1923, 2885, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2219, 3328, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2562, 3843, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2962, 4442, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3427, 5140, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3970, 5954, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 4604, 6906, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 5346, 8019, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 6215, 9322, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 7235, 10852, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10888,10 +12812,9 @@ skills["KillingPalmPlayer"] = { name = "Killing Palm", baseTypeName = "Killing Palm", color = 3, - description = "Dash to an enemy and Strike them with an unarmed Attack, Culling enemies if their life is low enough. Each enemy killed by this strike grants a Power Charge. Enemies around you that can be Culled will be highlighted. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.", - skillTypes = { [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, }, + description = "Dash to an enemy and Strike them, Culling enemies if their life is low enough. Each enemy killed by this strike grants a Power Charge, with higher Rarity monsters granting additional Charges. Enemies around you that can be Culled will be highlighted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, }, weaponTypes = { - ["None"] = true, ["Staff"] = true, }, castTime = 1, @@ -10901,51 +12824,50 @@ skills["KillingPalmPlayer"] = { levels = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 13, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 16, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 22, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 24, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 27, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 29, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 13, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 16, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 21, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 23, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 28, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 30, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 33, }, }, [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 36, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 40, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 45, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 50, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 55, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 61, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 68, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 75, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 83, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 92, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 102, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 113, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 126, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 139, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 154, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 171, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 190, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 210, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 233, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 258, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 286, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 317, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 352, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 38, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 42, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 45, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 49, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 52, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 56, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 60, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 65, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 70, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 75, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 80, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 86, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 92, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 98, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 105, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 112, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 119, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 127, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 136, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 144, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 154, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 164, }, }, }, statSets = { [1] = { label = "Killing Palm", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "skill_stat_descriptions", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "killing_palm", baseFlags = { attack = true, area = true, @@ -10955,59 +12877,61 @@ skills["KillingPalmPlayer"] = { constantStats = { { "melee_conditional_step_distance", 10 }, { "base_melee_dash_range", 65 }, - { "additional_base_critical_strike_chance", 700 }, { "active_skill_generic_grace_period_time_ms", 100 }, + { "skill_grant_X_power_charges_against_normal_and_magic_monsters", 1 }, + { "skill_grant_X_power_charges_against_rare_monsters", 2 }, + { "skill_grant_X_power_charges_against_unique_monsters", 3 }, }, stats = { - "attack_minimum_added_physical_damage", - "attack_maximum_added_physical_damage", "kill_enemy_on_hit_if_under_10%_life", "active_skill_show_cull_range", "skill_can_add_multiple_charges_per_action", "global_always_hit", "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 4, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -11018,7 +12942,7 @@ skills["LightningBoltPlayer"] = { fromItem = true, color = 3, description = "Call down a Shocking bolt of Lightning to strike enemies in a small area.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.85, qualityStats = { { "active_skill_shock_chance_+%_final", 2 }, @@ -11068,9 +12992,134 @@ skills["LightningBoltPlayer"] = { statSets = { [1] = { label = "Lightning Bolt", - baseEffectiveness = 2.2999999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 2.5599999427795, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "lightning_bolt", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_shock_chance_+%_final", 200 }, + { "active_skill_base_area_of_effect_radius", 8 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "is_area_damage", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 3, 13, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 3, 19, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, 27, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 36, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 48, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, 61, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 4, 77, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6, 114, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 7, 137, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 9, 164, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 10, 191, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 12, 221, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 13, 254, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 15, 292, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 18, 334, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 20, 382, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 23, 436, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 26, 496, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 30, 565, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 34, 642, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 38, 730, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 44, 830, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 50, 942, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 56, 1070, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 64, 1215, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 73, 1380, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 82, 1567, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 94, 1781, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 107, 2024, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 121, 2302, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 138, 2620, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 157, 2983, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 179, 3399, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 204, 3876, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 233, 4424, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 266, 5053, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 304, 5776, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 348, 6610, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 398, 7571, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["UniqueBreachLightningBoltPlayer"] = { + name = "Lightning Bolt", + baseTypeName = "Lightning Bolt", + fromItem = true, + color = 3, + description = "Call down a Shocking bolt of Lightning to strike enemies in a small area.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.85, + qualityStats = { + }, + levels = { + [1] = { critChance = 10, storedUses = 1, levelRequirement = 0, cooldown = 0.5, cost = { Mana = 0, }, }, + [2] = { critChance = 10, storedUses = 1, levelRequirement = 3, cooldown = 0.5, cost = { Mana = 0, }, }, + [3] = { critChance = 10, storedUses = 1, levelRequirement = 6, cooldown = 0.5, cost = { Mana = 0, }, }, + [4] = { critChance = 10, storedUses = 1, levelRequirement = 10, cooldown = 0.5, cost = { Mana = 0, }, }, + [5] = { critChance = 10, storedUses = 1, levelRequirement = 14, cooldown = 0.5, cost = { Mana = 0, }, }, + [6] = { critChance = 10, storedUses = 1, levelRequirement = 18, cooldown = 0.5, cost = { Mana = 0, }, }, + [7] = { critChance = 10, storedUses = 1, levelRequirement = 22, cooldown = 0.5, cost = { Mana = 0, }, }, + [8] = { critChance = 10, storedUses = 1, levelRequirement = 26, cooldown = 0.5, cost = { Mana = 0, }, }, + [9] = { critChance = 10, storedUses = 1, levelRequirement = 31, cooldown = 0.5, cost = { Mana = 0, }, }, + [10] = { critChance = 10, storedUses = 1, levelRequirement = 36, cooldown = 0.5, cost = { Mana = 0, }, }, + [11] = { critChance = 10, storedUses = 1, levelRequirement = 41, cooldown = 0.5, cost = { Mana = 0, }, }, + [12] = { critChance = 10, storedUses = 1, levelRequirement = 46, cooldown = 0.5, cost = { Mana = 0, }, }, + [13] = { critChance = 10, storedUses = 1, levelRequirement = 52, cooldown = 0.5, cost = { Mana = 0, }, }, + [14] = { critChance = 10, storedUses = 1, levelRequirement = 58, cooldown = 0.5, cost = { Mana = 0, }, }, + [15] = { critChance = 10, storedUses = 1, levelRequirement = 64, cooldown = 0.5, cost = { Mana = 0, }, }, + [16] = { critChance = 10, storedUses = 1, levelRequirement = 66, cooldown = 0.5, cost = { Mana = 0, }, }, + [17] = { critChance = 10, storedUses = 1, levelRequirement = 72, cooldown = 0.5, cost = { Mana = 0, }, }, + [18] = { critChance = 10, storedUses = 1, levelRequirement = 78, cooldown = 0.5, cost = { Mana = 0, }, }, + [19] = { critChance = 10, storedUses = 1, levelRequirement = 84, cooldown = 0.5, cost = { Mana = 0, }, }, + [20] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [21] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [22] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [23] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [24] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [25] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [26] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [27] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [28] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [29] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [30] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [31] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [32] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [33] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [34] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [35] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [36] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [37] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [38] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [39] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + [40] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Lightning Bolt", + baseEffectiveness = 2.5599999427795, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "lightning_bolt", baseFlags = { spell = true, @@ -11081,7 +13130,8 @@ skills["LightningBoltPlayer"] = { { "active_skill_base_area_of_effect_radius", 8 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "triggered_on_critical_strike_%", 100 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -11094,46 +13144,46 @@ skills["LightningBoltPlayer"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 1, 17, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 32, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 2, 42, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 3, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 5, 93, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 8, 149, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 9, 172, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 10, 197, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 12, 225, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 13, 256, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 15, 291, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 17, 330, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 20, 373, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 22, 422, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 25, 475, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 28, 535, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 32, 602, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 36, 677, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 40, 760, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 45, 854, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 50, 958, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 57, 1075, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 64, 1207, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 71, 1354, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 80, 1519, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, 1705, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 101, 1914, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 113, 2150, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 127, 2415, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 143, 2714, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 161, 3051, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 181, 3433, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 203, 3864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 229, 4352, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 258, 4905, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 3, 13, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 3, 19, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, 27, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 36, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 48, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, 61, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 4, 77, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6, 114, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 7, 137, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 9, 164, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 10, 191, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 12, 221, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 13, 254, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 15, 292, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 18, 334, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 20, 382, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 23, 436, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 26, 496, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 30, 565, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 34, 642, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 38, 730, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 44, 830, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 50, 942, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 56, 1070, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 64, 1215, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 73, 1380, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 82, 1567, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 94, 1781, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 107, 2024, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 121, 2302, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 138, 2620, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 157, 2983, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 179, 3399, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 204, 3876, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 233, 4424, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 266, 5053, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 304, 5776, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 348, 6610, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 398, 7571, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11142,60 +13192,60 @@ skills["LightningConduitPlayer"] = { name = "Lightning Conduit", baseTypeName = "Lightning Conduit", color = 3, - description = "Call down lightning to hit all enemies in a cone in front of you. Deals significantly more damage to Shocked enemies but Consumes Shock from them after damaging them. If a Shock is Consumed, additional lightning bolts are distributed among the targets hit. Targeting close to you will cause you to jump back as you cast.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.SkillConsumesShock] = true, [SkillType.CanRapidFire] = true, }, + description = "Call down Lightning to hit all enemies in a cone in front of you, dealing significantly more damage to Shocked enemies. If there is a Shocked enemy in the target area, additional lightning bolts are distributed among the targets hit. Targeting close to you will cause you to jump back as you cast.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, }, castTime = 1, qualityStats = { - { "reapply_enemy_shock_on_consuming_enemy_shock_chance_%", 1 }, + { "lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock", 0.25 }, }, levels = { - [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 17, }, }, - [2] = { critChance = 10, levelRequirement = 3, cost = { Mana = 19, }, }, - [3] = { critChance = 10, levelRequirement = 6, cost = { Mana = 22, }, }, - [4] = { critChance = 10, levelRequirement = 10, cost = { Mana = 25, }, }, - [5] = { critChance = 10, levelRequirement = 14, cost = { Mana = 28, }, }, - [6] = { critChance = 10, levelRequirement = 18, cost = { Mana = 32, }, }, - [7] = { critChance = 10, levelRequirement = 22, cost = { Mana = 36, }, }, - [8] = { critChance = 10, levelRequirement = 26, cost = { Mana = 41, }, }, - [9] = { critChance = 10, levelRequirement = 31, cost = { Mana = 47, }, }, - [10] = { critChance = 10, levelRequirement = 36, cost = { Mana = 53, }, }, - [11] = { critChance = 10, levelRequirement = 41, cost = { Mana = 60, }, }, - [12] = { critChance = 10, levelRequirement = 46, cost = { Mana = 68, }, }, - [13] = { critChance = 10, levelRequirement = 52, cost = { Mana = 77, }, }, - [14] = { critChance = 10, levelRequirement = 58, cost = { Mana = 87, }, }, - [15] = { critChance = 10, levelRequirement = 64, cost = { Mana = 99, }, }, - [16] = { critChance = 10, levelRequirement = 66, cost = { Mana = 112, }, }, - [17] = { critChance = 10, levelRequirement = 72, cost = { Mana = 127, }, }, - [18] = { critChance = 10, levelRequirement = 78, cost = { Mana = 143, }, }, - [19] = { critChance = 10, levelRequirement = 84, cost = { Mana = 162, }, }, - [20] = { critChance = 10, levelRequirement = 90, cost = { Mana = 184, }, }, - [21] = { critChance = 10, levelRequirement = 90, cost = { Mana = 208, }, }, - [22] = { critChance = 10, levelRequirement = 90, cost = { Mana = 235, }, }, - [23] = { critChance = 10, levelRequirement = 90, cost = { Mana = 266, }, }, - [24] = { critChance = 10, levelRequirement = 90, cost = { Mana = 302, }, }, - [25] = { critChance = 10, levelRequirement = 90, cost = { Mana = 341, }, }, - [26] = { critChance = 10, levelRequirement = 90, cost = { Mana = 386, }, }, - [27] = { critChance = 10, levelRequirement = 90, cost = { Mana = 437, }, }, - [28] = { critChance = 10, levelRequirement = 90, cost = { Mana = 495, }, }, - [29] = { critChance = 10, levelRequirement = 90, cost = { Mana = 560, }, }, - [30] = { critChance = 10, levelRequirement = 90, cost = { Mana = 634, }, }, - [31] = { critChance = 10, levelRequirement = 90, cost = { Mana = 718, }, }, - [32] = { critChance = 10, levelRequirement = 90, cost = { Mana = 812, }, }, - [33] = { critChance = 10, levelRequirement = 90, cost = { Mana = 919, }, }, - [34] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1040, }, }, - [35] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1177, }, }, - [36] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1333, }, }, - [37] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1508, }, }, - [38] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1707, }, }, - [39] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1932, }, }, - [40] = { critChance = 10, levelRequirement = 90, cost = { Mana = 2186, }, }, + [1] = { critChance = 10, storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, }, + [2] = { critChance = 10, storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, }, + [3] = { critChance = 10, storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 26, }, }, + [4] = { critChance = 10, storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 30, }, }, + [5] = { critChance = 10, storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 35, }, }, + [6] = { critChance = 10, storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 40, }, }, + [7] = { critChance = 10, storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 46, }, }, + [8] = { critChance = 10, storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 52, }, }, + [9] = { critChance = 10, storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 59, }, }, + [10] = { critChance = 10, storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 66, }, }, + [11] = { critChance = 10, storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 75, }, }, + [12] = { critChance = 10, storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 84, }, }, + [13] = { critChance = 10, storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 94, }, }, + [14] = { critChance = 10, storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 105, }, }, + [15] = { critChance = 10, storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 117, }, }, + [16] = { critChance = 10, storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 130, }, }, + [17] = { critChance = 10, storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 144, }, }, + [18] = { critChance = 10, storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 159, }, }, + [19] = { critChance = 10, storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 176, }, }, + [20] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 195, }, }, + [21] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 215, }, }, + [22] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 236, }, }, + [23] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 260, }, }, + [24] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 286, }, }, + [25] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 314, }, }, + [26] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 345, }, }, + [27] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 378, }, }, + [28] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 414, }, }, + [29] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 453, }, }, + [30] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 496, }, }, + [31] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 542, }, }, + [32] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 592, }, }, + [33] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 646, }, }, + [34] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 705, }, }, + [35] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 769, }, }, + [36] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 838, }, }, + [37] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 913, }, }, + [38] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 994, }, }, + [39] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1081, }, }, + [40] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1176, }, }, }, statSets = { [1] = { label = "Lightning Conduit", - baseEffectiveness = 1.8200000524521, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 2.8499999046326, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "lightning_conduit", statMap = { ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"] = { @@ -11209,7 +13259,7 @@ skills["LightningConduitPlayer"] = { { "range_backflip_conditional_distance", 30 }, { "total_cast_time_+_ms", 1000 }, { "active_skill_base_area_of_effect_radius", 100 }, - { "consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock", 20 }, + { "lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock", 20 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -11222,46 +13272,46 @@ skills["LightningConduitPlayer"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 4, 11, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 5, 14, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 7, 20, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, 26, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 11, 33, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 13, 40, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 16, 49, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 19, 58, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 23, 69, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, 80, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 31, 93, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 36, 107, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 41, 123, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 47, 141, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 53, 160, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 61, 182, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 69, 206, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 78, 233, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 88, 263, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 99, 297, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 334, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 125, 376, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 141, 423, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 158, 475, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 178, 533, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 200, 599, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 224, 672, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 251, 754, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 282, 846, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 316, 949, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 355, 1065, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 399, 1196, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 448, 1343, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 503, 1509, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 565, 1695, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 635, 1906, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 715, 2144, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 805, 2414, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 906, 2719, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1021, 3064, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6, 17, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 22, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 31, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 40, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 51, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 63, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 77, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 31, 92, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 37, 110, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 43, 130, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 51, 153, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 60, 179, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 69, 208, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 81, 242, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 93, 280, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 108, 323, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 124, 373, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 143, 429, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 165, 494, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 189, 568, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 217, 652, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 250, 749, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 287, 861, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 329, 988, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 378, 1135, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 435, 1305, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 500, 1500, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 575, 1725, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 662, 1985, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 762, 2286, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 878, 2635, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1013, 3040, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1170, 3511, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1353, 4058, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1565, 4695, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1813, 5439, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2103, 6308, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2442, 7325, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2839, 8516, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3304, 9913, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11270,60 +13320,60 @@ skills["LightningWarpPlayer"] = { name = "Lightning Warp", baseTypeName = "Lightning Warp", color = 3, - description = "Teleport inside the target's body, causing it to violently explode. Highlights enemies that can be Culled, and can only be used on these enemies or Ball Lightning Projectiles. The target is destroyed, and the explosion deals Lightning Damage to surrounding enemies. If targeting an enemy the explosion also creates Shocked Ground.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, }, + description = "Teleport inside the target's body, causing it to violently explode. Highlights enemies that can be Culled, and can only be used on these enemies or Ball Lightning Projectiles. The target is destroyed, and the explosion deals Lightning damage to surrounding enemies. If targeting an enemy, the explosion also creates Shocked Ground. Creates a Lightning Infusion on successful use.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Movement] = true, [SkillType.GeneratesRemnants] = true, }, castTime = 0.5, qualityStats = { { "shock_effect_+%", 0.5 }, }, levels = { - [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 9, }, }, - [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 10, }, }, + [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 8, }, }, + [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 9, }, }, [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 11, }, }, [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 16, }, }, + [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 17, }, }, [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 24, }, }, - [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 27, }, }, - [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 31, }, }, - [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 35, }, }, + [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 25, }, }, + [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 28, }, }, + [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 36, }, }, [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 40, }, }, [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 45, }, }, - [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 51, }, }, - [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 58, }, }, - [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 65, }, }, - [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 74, }, }, - [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 84, }, }, - [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 95, }, }, - [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 108, }, }, - [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 122, }, }, - [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 138, }, }, - [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 156, }, }, - [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 177, }, }, - [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 200, }, }, - [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 227, }, }, - [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 257, }, }, - [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 291, }, }, - [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 329, }, }, - [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 372, }, }, - [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 421, }, }, - [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 477, }, }, - [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 540, }, }, - [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 611, }, }, - [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 692, }, }, - [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 783, }, }, - [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 886, }, }, - [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1003, }, }, - [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1135, }, }, + [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 50, }, }, + [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 55, }, }, + [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 61, }, }, + [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 68, }, }, + [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 83, }, }, + [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 92, }, }, + [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 101, }, }, + [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 112, }, }, + [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 123, }, }, + [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 135, }, }, + [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 148, }, }, + [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 162, }, }, + [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 178, }, }, + [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 195, }, }, + [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 213, }, }, + [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 233, }, }, + [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 254, }, }, + [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 278, }, }, + [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 303, }, }, + [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 330, }, }, + [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 360, }, }, + [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 392, }, }, + [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 427, }, }, + [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 464, }, }, + [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 505, }, }, }, statSets = { [1] = { label = "Lightning Warp", baseEffectiveness = 4.0900001525879, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "teleport_ball", baseFlags = { spell = true, @@ -11335,7 +13385,7 @@ skills["LightningWarpPlayer"] = { { "base_secondary_skill_effect_duration", 10000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -11352,44 +13402,44 @@ skills["LightningWarpPlayer"] = { levels = { [1] = { 2, 30, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 2, 41, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 3, 57, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4, 75, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 5, 95, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6, 118, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 8, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 9, 171, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 11, 203, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 13, 239, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 15, 280, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [3] = { 3, 56, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 73, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 92, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6, 114, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 7, 139, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 168, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 11, 200, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 12, 236, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 15, 278, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 17, 325, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 20, 376, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 23, 433, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 26, 498, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 30, 571, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 34, 652, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 39, 745, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 45, 849, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 51, 967, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 58, 1100, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 66, 1251, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 75, 1421, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 85, 1614, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 97, 1834, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 110, 2083, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 125, 2366, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 141, 2688, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 161, 3055, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 183, 3473, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 208, 3950, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 237, 4496, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 269, 5120, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 307, 5835, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 350, 6654, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 400, 7594, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 457, 8675, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 522, 9918, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 597, 11350, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 684, 13001, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [13] = { 20, 378, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 23, 439, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 27, 509, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 31, 588, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 36, 678, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 41, 780, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 47, 898, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 54, 1032, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 62, 1186, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 72, 1362, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 82, 1564, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 95, 1797, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 109, 2064, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 125, 2371, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 143, 2726, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 165, 3136, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 190, 3609, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 219, 4156, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 252, 4790, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 291, 5526, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 336, 6382, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 388, 7376, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 449, 8535, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 520, 9887, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 604, 11467, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 701, 13315, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 815, 15480, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 948, 18020, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11399,7 +13449,7 @@ skills["LingeringIllusionPlayer"] = { baseTypeName = "Lingering Illusion", color = 3, description = "While active, creates a short-lived illusory copy of yourself whenever you dodge roll. The copy can be damaged by enemies, and copies that are destroyed by an enemy will grant you a Power Charge.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { }, @@ -11503,7 +13553,7 @@ skills["LingeringIllusionPlayer"] = { skills["LingeringIllusionSpawnPlayer"] = { name = "", hidden = true, - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, }, castTime = 1, qualityStats = { { "chance_to_gain_1_more_charge_%", 1 }, @@ -11559,8 +13609,8 @@ skills["LingeringIllusionSpawnPlayer"] = { duration = true, }, constantStats = { - { "base_skill_effect_duration", 600 }, - { "lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life", 20 }, + { "base_skill_effect_duration", 1200 }, + { "lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life", 15 }, }, stats = { "chance_to_gain_1_more_charge_%", @@ -11595,84 +13645,84 @@ skills["LingeringIllusionSpawnPlayer"] = { [23] = { 88, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, [24] = { 92, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, [25] = { 96, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 100, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 104, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 108, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 112, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 116, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 120, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 124, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 128, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 132, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 136, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 140, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 144, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 148, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 152, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 156, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["LivingBombPlayer"] = { - name = "Living Bomb", - baseTypeName = "Living Bomb", - fromItem = true, - color = 3, - description = "Plant a seed of Fire inside an enemy, which grows over a duration. When the duration expires, the seed explodes, damaging the enemy and all other enemies nearby.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Limit] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, }, - castTime = 0.6, - qualityStats = { - { "base_skill_effect_duration", -25 }, - }, - levels = { - [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 9, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 9, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 9, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 9, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 9, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 9, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 9, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 9, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { 100, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 104, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 108, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 112, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 116, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 120, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 124, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 128, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 132, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 136, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 140, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 144, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 148, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 152, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 156, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["LivingBombPlayer"] = { + name = "Living Bomb", + baseTypeName = "Living Bomb", + fromItem = true, + color = 3, + description = "Plant a seed of Fire inside an enemy. Dealing enough damage to the enemy, or killing it outright, causes the seed to explode, dealing damage in an area and leaving behind a Fire Infusion Remnant.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Limit] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.GeneratesRemnants] = true, [SkillType.Triggerable] = true, }, + castTime = 0.6, + qualityStats = { + { "active_skill_ignite_chance_+%_final", 1 }, + }, + levels = { + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 8, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 9, }, }, + [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 11, }, }, + [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 13, }, }, + [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 20, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 23, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 26, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 29, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 36, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 41, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 46, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 51, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 57, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 63, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 70, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 77, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 85, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 94, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 103, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 114, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 125, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 138, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 151, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 166, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 181, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 199, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 217, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 238, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 260, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 283, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 309, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 337, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 367, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 400, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 436, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 474, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 516, }, }, }, statSets = { [1] = { label = "Living Bomb", baseEffectiveness = 3.2000000476837, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "living_bomb_player", baseFlags = { spell = true, @@ -11680,12 +13730,13 @@ skills["LivingBombPlayer"] = { duration = true, }, constantStats = { - { "base_skill_effect_duration", 2500 }, + { "base_skill_effect_duration", 15000 }, { "active_skill_base_area_of_effect_radius", 25 }, { "living_bomb_base_number_of_bombs_allowed", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "living_bomb_damage_threshold_%_of_ailment_threshold", 200 }, }, stats = { "spell_minimum_base_fire_damage", @@ -11700,45 +13751,45 @@ skills["LivingBombPlayer"] = { }, levels = { [1] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 24, 37, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [2] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 30, 46, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, [6] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, [7] = { 46, 69, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 54, 82, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 75, 113, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 100, 151, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 132, 198, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 150, 225, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 193, 290, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 219, 328, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 247, 370, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 278, 418, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 314, 470, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 353, 529, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 397, 595, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 445, 668, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 500, 750, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 561, 842, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 630, 945, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 707, 1060, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 793, 1190, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 890, 1335, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 999, 1498, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1121, 1682, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1259, 1889, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1415, 2122, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1590, 2385, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1787, 2681, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2011, 3016, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 2263, 3395, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2549, 3824, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2873, 4310, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [8] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 92, 137, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 107, 161, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 125, 187, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 145, 217, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 168, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 194, 290, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 257, 386, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 296, 444, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 340, 510, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 391, 586, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 449, 673, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 515, 773, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 592, 888, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 680, 1020, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 781, 1172, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1033, 1549, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1189, 1783, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1369, 2054, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1578, 2367, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1821, 2731, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2102, 3153, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2430, 3645, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2812, 4218, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3257, 4886, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3777, 5666, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 4386, 6579, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 5099, 7649, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 5936, 8904, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11867,11 +13918,11 @@ skills["ManaDrainPlayer"] = { baseTypeName = "Mana Drain", fromItem = true, color = 3, - description = "Siphon power from an enemy, briefly Hindering them and Leeching Mana.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Leech Mana from an enemy over a prolonged period, as well as briefly Hindering them.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.85, qualityStats = { - { "mana_drain_base_mana_leech_amount", 1.5 }, + { "mana_drain_base_mana_leech_amount", 4.5 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, @@ -11925,53 +13976,54 @@ skills["ManaDrainPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_mana_leech_rate_+%", -70 }, }, stats = { "mana_drain_base_mana_leech_amount", "can_perform_skill_while_moving", }, levels = { - [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 12, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 18, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 22, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 28, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 32, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 36, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 42, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 48, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 54, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 62, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 70, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 78, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 86, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 94, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 104, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 114, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 126, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 136, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 148, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 160, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 174, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 186, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 200, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 214, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 226, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 240, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 256, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 270, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 284, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 300, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 316, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 332, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 348, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 364, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 382, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 398, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 416, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 432, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 36, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 48, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 54, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 66, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 84, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 96, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 108, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 126, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 144, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 162, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 186, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 210, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 234, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 258, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 282, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 312, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 342, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 378, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 408, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 444, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 480, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 522, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 558, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 600, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 642, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 678, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 720, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 768, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 810, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 852, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 900, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 948, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 996, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 1044, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 1092, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 1146, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 1194, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 1248, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 1296, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11984,7 +14036,7 @@ skills["ManaRemnantsPlayer"] = { skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.TotemCastsAlone] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, }, castTime = 0, qualityStats = { - { "mana_remnants_mana_gain_per_globe", 1.5 }, + { "mana_remnants_mana_gain_per_globe", 2 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -12047,46 +14099,46 @@ skills["ManaRemnantsPlayer"] = { "base_deal_no_damage", }, levels = { - [1] = { 21, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 24, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 29, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 35, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 41, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 50, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 59, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 68, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 78, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 89, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 100, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 112, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 125, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 138, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 152, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 166, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 171, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 186, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 201, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 208, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 224, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 241, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 258, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 275, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 292, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 309, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 326, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 343, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 360, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 377, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 394, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 411, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 428, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 445, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 462, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 479, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 496, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 513, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 530, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 547, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 28, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 32, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 39, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 47, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 55, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 68, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 80, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 92, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 105, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 120, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 135, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 151, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 169, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 186, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 205, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 224, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 231, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 251, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 271, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 281, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 302, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 325, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 348, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 371, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 394, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 417, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 440, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 463, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 486, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 509, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 532, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 555, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 578, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 601, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 624, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 647, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 670, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 693, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 716, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 738, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -12095,11 +14147,11 @@ skills["ManaTempestPlayer"] = { name = "Mana Tempest", baseTypeName = "Mana Tempest", color = 3, - description = "Create a storm of arcane energies that Empowers your Mana-costing Spells while you remain inside it. Maintaining the storm constantly drains your Mana, and each Spell you cast causes it to drain faster. The storm will dissipate when you exit it or run out of Mana.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, }, + description = "Create a storm of arcane energies that Empowers your Mana-costing Spells while you remain inside it. Maintaining the storm constantly drains your Mana, and spending more causes it to drain faster. The storm will dissipate when you exit it or run out of Mana.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.6, qualityStats = { - { "non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff", 0.25 }, + { "mana_tempest_effects_linger_X_ms", 100 }, }, levels = { [1] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { ManaPercentPerMinute = 60, }, }, @@ -12158,7 +14210,7 @@ skills["ManaTempestPlayer"] = { { "active_skill_base_area_of_effect_radius", 26 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff", @@ -12219,13 +14271,13 @@ skills["MantraOfDestructionPlayer"] = { baseTypeName = "Mantra of Destruction", color = 3, description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to Empower your next Quarterstaff Attack, causing it to deal additional Chaos damage. Each kill with the Empowered Attack grants\nPurple Flames of Chayula for a duration.", - skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Chaos] = true, [SkillType.HasUsageCondition] = true, }, + skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Chaos] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 0.6, qualityStats = { - { "active_skill_required_number_of_combo_stacks", -0.1 }, + { "active_skill_required_number_of_combo_stacks", -0.05 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -12278,15 +14330,15 @@ skills["MantraOfDestructionPlayer"] = { duration = true, }, constantStats = { - { "active_skill_required_number_of_combo_stacks", 10 }, + { "active_skill_required_number_of_combo_stacks", 8 }, { "base_combo_stacks_decay_delay_ms", 8000 }, { "skill_empowers_next_x_melee_attacks", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_skill_effect_duration", 8000 }, { "mantra_of_destruction_purple_flame_all_damage_%_gained_as_chaos", 7 }, - { "base_secondary_skill_effect_duration", 8000 }, + { "base_secondary_skill_effect_duration", 20000 }, }, stats = { "mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks", @@ -12296,46 +14348,46 @@ skills["MantraOfDestructionPlayer"] = { "quality_display_active_skill_required_number_of_combo_stacks_is_gem", }, levels = { - [1] = { 22, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 23, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 24, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 25, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 27, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 28, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 29, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 30, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 31, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 32, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 34, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 35, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 36, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 37, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 38, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 39, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 40, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 41, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 42, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 43, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 44, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 45, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 46, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 47, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 48, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 49, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 50, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 51, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 52, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 53, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 54, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 55, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 56, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 57, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 58, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 59, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 60, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 61, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 50, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 51, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 52, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 53, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 54, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 55, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 56, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 57, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 58, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 59, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 60, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 61, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 62, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 64, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 65, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 66, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 67, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 68, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 69, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 70, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 71, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 72, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 73, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 74, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 76, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 77, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 78, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 79, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 80, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 81, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 82, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 83, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 84, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 85, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 86, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 87, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 88, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 89, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -12344,60 +14396,60 @@ skills["OrbOfStormsPlayer"] = { name = "Orb of Storms", baseTypeName = "Orb of Storms", color = 3, - description = "Create an Orb of electricity that fires Chaining Lightning bolts at nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, }, + description = "Create an Orb of electricity that fires Chaining Lightning bolts at nearby enemies. The Orb leaves behind a Lightning Infusion Remnant when it expires.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.GeneratesRemnants] = true, }, castTime = 0.8, qualityStats = { { "number_of_chains", 0.15 }, }, levels = { - [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 14, }, }, - [2] = { critChance = 10, levelRequirement = 3, cost = { Mana = 15, }, }, + [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 12, }, }, + [2] = { critChance = 10, levelRequirement = 3, cost = { Mana = 14, }, }, [3] = { critChance = 10, levelRequirement = 6, cost = { Mana = 17, }, }, [4] = { critChance = 10, levelRequirement = 10, cost = { Mana = 20, }, }, [5] = { critChance = 10, levelRequirement = 14, cost = { Mana = 23, }, }, [6] = { critChance = 10, levelRequirement = 18, cost = { Mana = 26, }, }, - [7] = { critChance = 10, levelRequirement = 22, cost = { Mana = 29, }, }, - [8] = { critChance = 10, levelRequirement = 26, cost = { Mana = 33, }, }, - [9] = { critChance = 10, levelRequirement = 31, cost = { Mana = 37, }, }, - [10] = { critChance = 10, levelRequirement = 36, cost = { Mana = 42, }, }, - [11] = { critChance = 10, levelRequirement = 41, cost = { Mana = 48, }, }, - [12] = { critChance = 10, levelRequirement = 46, cost = { Mana = 54, }, }, - [13] = { critChance = 10, levelRequirement = 52, cost = { Mana = 61, }, }, - [14] = { critChance = 10, levelRequirement = 58, cost = { Mana = 70, }, }, - [15] = { critChance = 10, levelRequirement = 64, cost = { Mana = 79, }, }, - [16] = { critChance = 10, levelRequirement = 66, cost = { Mana = 89, }, }, - [17] = { critChance = 10, levelRequirement = 72, cost = { Mana = 101, }, }, - [18] = { critChance = 10, levelRequirement = 78, cost = { Mana = 115, }, }, - [19] = { critChance = 10, levelRequirement = 84, cost = { Mana = 130, }, }, - [20] = { critChance = 10, levelRequirement = 90, cost = { Mana = 147, }, }, - [21] = { critChance = 10, levelRequirement = 90, cost = { Mana = 166, }, }, - [22] = { critChance = 10, levelRequirement = 90, cost = { Mana = 188, }, }, - [23] = { critChance = 10, levelRequirement = 90, cost = { Mana = 213, }, }, - [24] = { critChance = 10, levelRequirement = 90, cost = { Mana = 241, }, }, - [25] = { critChance = 10, levelRequirement = 90, cost = { Mana = 273, }, }, - [26] = { critChance = 10, levelRequirement = 90, cost = { Mana = 309, }, }, - [27] = { critChance = 10, levelRequirement = 90, cost = { Mana = 350, }, }, - [28] = { critChance = 10, levelRequirement = 90, cost = { Mana = 396, }, }, - [29] = { critChance = 10, levelRequirement = 90, cost = { Mana = 448, }, }, - [30] = { critChance = 10, levelRequirement = 90, cost = { Mana = 507, }, }, - [31] = { critChance = 10, levelRequirement = 90, cost = { Mana = 574, }, }, - [32] = { critChance = 10, levelRequirement = 90, cost = { Mana = 650, }, }, - [33] = { critChance = 10, levelRequirement = 90, cost = { Mana = 735, }, }, - [34] = { critChance = 10, levelRequirement = 90, cost = { Mana = 832, }, }, - [35] = { critChance = 10, levelRequirement = 90, cost = { Mana = 942, }, }, - [36] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1066, }, }, - [37] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1206, }, }, - [38] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1365, }, }, - [39] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1545, }, }, - [40] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1749, }, }, + [7] = { critChance = 10, levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { critChance = 10, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { critChance = 10, levelRequirement = 31, cost = { Mana = 39, }, }, + [10] = { critChance = 10, levelRequirement = 36, cost = { Mana = 44, }, }, + [11] = { critChance = 10, levelRequirement = 41, cost = { Mana = 49, }, }, + [12] = { critChance = 10, levelRequirement = 46, cost = { Mana = 55, }, }, + [13] = { critChance = 10, levelRequirement = 52, cost = { Mana = 62, }, }, + [14] = { critChance = 10, levelRequirement = 58, cost = { Mana = 69, }, }, + [15] = { critChance = 10, levelRequirement = 64, cost = { Mana = 77, }, }, + [16] = { critChance = 10, levelRequirement = 66, cost = { Mana = 86, }, }, + [17] = { critChance = 10, levelRequirement = 72, cost = { Mana = 95, }, }, + [18] = { critChance = 10, levelRequirement = 78, cost = { Mana = 105, }, }, + [19] = { critChance = 10, levelRequirement = 84, cost = { Mana = 117, }, }, + [20] = { critChance = 10, levelRequirement = 90, cost = { Mana = 129, }, }, + [21] = { critChance = 10, levelRequirement = 90, cost = { Mana = 142, }, }, + [22] = { critChance = 10, levelRequirement = 90, cost = { Mana = 157, }, }, + [23] = { critChance = 10, levelRequirement = 90, cost = { Mana = 172, }, }, + [24] = { critChance = 10, levelRequirement = 90, cost = { Mana = 189, }, }, + [25] = { critChance = 10, levelRequirement = 90, cost = { Mana = 208, }, }, + [26] = { critChance = 10, levelRequirement = 90, cost = { Mana = 228, }, }, + [27] = { critChance = 10, levelRequirement = 90, cost = { Mana = 250, }, }, + [28] = { critChance = 10, levelRequirement = 90, cost = { Mana = 274, }, }, + [29] = { critChance = 10, levelRequirement = 90, cost = { Mana = 300, }, }, + [30] = { critChance = 10, levelRequirement = 90, cost = { Mana = 328, }, }, + [31] = { critChance = 10, levelRequirement = 90, cost = { Mana = 359, }, }, + [32] = { critChance = 10, levelRequirement = 90, cost = { Mana = 392, }, }, + [33] = { critChance = 10, levelRequirement = 90, cost = { Mana = 428, }, }, + [34] = { critChance = 10, levelRequirement = 90, cost = { Mana = 467, }, }, + [35] = { critChance = 10, levelRequirement = 90, cost = { Mana = 509, }, }, + [36] = { critChance = 10, levelRequirement = 90, cost = { Mana = 555, }, }, + [37] = { critChance = 10, levelRequirement = 90, cost = { Mana = 605, }, }, + [38] = { critChance = 10, levelRequirement = 90, cost = { Mana = 658, }, }, + [39] = { critChance = 10, levelRequirement = 90, cost = { Mana = 716, }, }, + [40] = { critChance = 10, levelRequirement = 90, cost = { Mana = 779, }, }, }, statSets = { [1] = { label = "Orb of Storms", - baseEffectiveness = 1.0900000333786, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0074999998323619, + baseEffectiveness = 1.1000000238419, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, statDescriptionScope = "orb_of_storms", baseFlags = { spell = true, @@ -12406,20 +14458,20 @@ skills["OrbOfStormsPlayer"] = { constantStats = { { "arc_chain_distance", 35 }, { "active_skill_base_area_of_effect_radius", 56 }, - { "active_skill_base_secondary_area_of_effect_radius", 28 }, + { "active_skill_base_secondary_area_of_effect_radius", 36 }, { "orb_of_storms_base_maximum_number_of_orbs", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "orb_of_storms_minimum_placement_range_%", 25 }, { "orb_of_storms_maximum_placement_range_%", 75 }, - { "base_skill_effect_duration", 10000 }, + { "base_skill_effect_duration", 12000 }, + { "orb_of_storms_maximum_number_of_hits", 6 }, + { "orb_of_storms_base_bolt_frequency_ms", 4000 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "orb_of_storms_maximum_number_of_hits", - "orb_of_storms_base_bolt_frequency_ms", "number_of_chains", "skill_can_add_multiple_charges_per_action", "damage_cannot_be_reflected_or_leech_if_used_by_other_object", @@ -12431,46 +14483,46 @@ skills["OrbOfStormsPlayer"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 2, 6, 10, 3500, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 3, 9, 11, 3450, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4, 12, 12, 3400, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 5, 16, 13, 3350, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 7, 20, 14, 3300, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 8, 24, 15, 3250, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 10, 30, 16, 3200, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 12, 35, 17, 3150, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 14, 42, 18, 3100, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 16, 49, 19, 3050, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 19, 57, 20, 3000, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 22, 66, 21, 2950, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 25, 76, 22, 2900, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 29, 88, 23, 2850, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 33, 100, 24, 2800, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 38, 114, 25, 2750, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 43, 130, 26, 2700, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 49, 148, 27, 2650, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 56, 168, 28, 2600, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 63, 190, 29, 2550, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 72, 215, 30, 2500, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 81, 243, 31, 2450, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 92, 275, 32, 2400, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 104, 311, 33, 2350, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 117, 351, 34, 2300, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 132, 396, 35, 2250, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 149, 448, 36, 2200, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 168, 505, 37, 2150, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 190, 571, 38, 2100, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 215, 645, 39, 2050, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 243, 728, 39, 2000, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 274, 823, 40, 1950, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 310, 931, 40, 1900, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 351, 1053, 41, 1850, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 397, 1192, 41, 1800, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 450, 1351, 42, 1750, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 510, 1531, 42, 1700, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 579, 1737, 43, 1650, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 657, 1972, 43, 1600, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 747, 2241, 44, 1550, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, 8, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 1, 11, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 15, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 19, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 25, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 30, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 37, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, 44, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, 53, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3, 62, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 4, 73, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 4, 85, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 98, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 6, 114, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7, 131, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 8, 151, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 9, 173, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 10, 198, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 12, 227, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 14, 260, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 16, 297, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 18, 339, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 20, 387, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 23, 442, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 27, 505, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 30, 577, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 35, 659, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 40, 754, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 45, 862, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 52, 986, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 59, 1129, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 68, 1294, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 78, 1483, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 90, 1702, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 103, 1955, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 118, 2248, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 136, 2588, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 157, 2981, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 181, 3439, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 209, 3971, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -12480,53 +14532,53 @@ skills["PainOfferingPlayer"] = { baseTypeName = "Pain Offering", color = 3, description = "Skewer a Skeleton on a bone spike to send nearby Minions into a frenzy as long as the spike remains, making their skills faster and harder hitting.\n\nThe bone spike is itself a Minion. If it dies, the effect ends immediately.", - skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Triggerable] = true, }, minionSkillTypes = { [SkillType.Aura] = true, }, castTime = 0.6, qualityStats = { { "active_skill_base_area_of_effect_radius", 1.2 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 26, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 25, }, }, [2] = { levelRequirement = 3, cost = { Mana = 28, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 31, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 34, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 38, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 42, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 46, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 50, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 32, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 35, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 39, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 43, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 47, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 51, }, }, [9] = { levelRequirement = 31, cost = { Mana = 55, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 61, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 67, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 73, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 80, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 88, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 97, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 107, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 117, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 129, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 141, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 171, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 187, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 206, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 226, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 248, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 273, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 300, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 329, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 361, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 397, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 436, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 479, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 526, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 577, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 634, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 696, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 764, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 839, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 922, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1012, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 59, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 64, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 68, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 73, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 78, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 83, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 88, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 93, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 99, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 104, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 116, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 122, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 129, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 135, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 142, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 149, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 156, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 164, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 171, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 179, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 195, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 204, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 213, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 222, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 231, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 240, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 250, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 260, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 270, }, }, }, statSets = { [1] = { @@ -12553,7 +14605,7 @@ skills["PainOfferingPlayer"] = { { "active_skill_base_area_of_effect_radius", 60 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_number_of_pain_offerings_allowed", 1 }, }, stats = { @@ -12614,7 +14666,7 @@ skills["PowerSiphonPlayer"] = { fromItem = true, color = 3, description = "Attempt to rip the lifeforce from an enemy. Enemies within Culling range will be highlighted and instantly killed on Hit, granting a Power Charge. Can only target Enemies in Culling range.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.GeneratesCharges] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.GeneratesCharges] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "chance_to_gain_1_more_charge_%", 0.5 }, @@ -12664,9 +14716,9 @@ skills["PowerSiphonPlayer"] = { statSets = { [1] = { label = "Power Siphon", - baseEffectiveness = 1.2000000476837, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + baseEffectiveness = 1.3400000333786, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "power_siphon", baseFlags = { spell = true, @@ -12674,7 +14726,7 @@ skills["PowerSiphonPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "spell_minimum_base_physical_damage", @@ -12689,46 +14741,46 @@ skills["PowerSiphonPlayer"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 3, 6, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 4, 8, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, 11, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 8, 15, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 10, 19, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 12, 23, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [1] = { 3, 5, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 4, 7, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, 10, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7, 14, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 10, 18, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, 22, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, [7] = { 15, 28, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 18, 33, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 21, 39, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 25, 46, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 29, 53, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, 61, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 38, 70, 48, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 43, 80, 52, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 49, 92, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 56, 104, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 63, 118, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 72, 133, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 81, 151, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 91, 170, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 103, 191, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 116, 215, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 130, 242, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 146, 271, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 164, 305, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 184, 342, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 207, 384, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 232, 431, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 260, 483, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 292, 542, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 328, 609, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 368, 683, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 413, 767, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 464, 862, 132, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 522, 969, 136, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 587, 1089, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 660, 1225, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 743, 1379, 148, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 836, 1553, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 943, 1751, 156, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [8] = { 18, 34, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 22, 41, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 26, 49, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 32, 59, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 37, 68, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 43, 79, 48, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 49, 91, 52, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 56, 104, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 64, 120, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 74, 137, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 84, 156, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 178, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 109, 202, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 124, 230, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 141, 262, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 160, 297, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 182, 337, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 206, 383, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 234, 435, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 266, 494, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 302, 561, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 343, 638, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 390, 725, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 444, 825, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 505, 938, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 575, 1068, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 656, 1217, 132, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 748, 1388, 136, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 853, 1584, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 974, 1810, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1114, 2069, 148, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1275, 2367, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1460, 2711, 156, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -12738,59 +14790,59 @@ skills["ProfaneRitualPlayer"] = { baseTypeName = "Profane Ritual", color = 3, description = "Mark a Corpse with a profane rune, dealing Chaos damage over time to nearby enemies. When the ritual is complete the Corpse is consumed and you gain a Power Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.GeneratesCharges] = true, [SkillType.CreatesGroundRune] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.GeneratesCharges] = true, [SkillType.CreatesGroundRune] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { - { "base_chance_to_not_consume_corpse_%", 1 }, + { "base_chance_to_not_consume_corpse_%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 9, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 8, }, }, [4] = { levelRequirement = 10, cost = { Mana = 10, }, }, [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, [6] = { levelRequirement = 18, cost = { Mana = 13, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 14, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 16, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 17, }, }, [9] = { levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 24, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 27, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 22, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 28, }, }, [13] = { levelRequirement = 52, cost = { Mana = 31, }, }, [14] = { levelRequirement = 58, cost = { Mana = 35, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 40, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 45, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 51, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 58, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 65, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 74, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 84, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 95, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 107, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 122, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 138, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 156, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 176, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 200, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 226, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 256, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 290, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 328, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 371, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 420, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 475, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 538, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 609, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 689, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 780, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 883, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 39, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 43, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 48, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 53, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 59, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 65, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 71, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 79, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 87, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 95, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 105, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 115, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 126, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 138, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 151, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 166, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 181, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 216, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 236, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 257, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 280, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 305, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 332, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 361, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 393, }, }, }, statSets = { [1] = { label = "Profane Ritual", baseEffectiveness = 12.5, - incrementalEffectiveness = 0.18000000715256, - damageIncrementalEffectiveness = 0.0092000002041459, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, statDescriptionScope = "ritual_of_power", baseFlags = { spell = true, @@ -12802,7 +14854,7 @@ skills["ProfaneRitualPlayer"] = { { "active_skill_base_area_of_effect_radius", 22 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_chaos_damage_to_deal_per_minute", @@ -12811,45 +14863,45 @@ skills["ProfaneRitualPlayer"] = { }, levels = { [1] = { 809, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 1193, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1739, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 2358, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 3060, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 3854, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 4753, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 5770, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 6921, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 8224, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 9700, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 11372, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 13268, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 15418, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 17859, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 20632, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 23785, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 27373, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 31460, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 36119, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 41435, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 47509, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 54454, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 62404, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 71515, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 81967, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 93972, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 107776, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 123668, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 141985, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 163124, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 187549, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 215807, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 248541, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 286509, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 330608, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 381893, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 441618, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 511266, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 592599, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [2] = { 1177, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1703, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2306, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 2994, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 3781, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4679, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 5706, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 6880, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 8222, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 9758, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 11517, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 13532, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 15844, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 18498, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 21548, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 25056, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 29097, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 33754, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 39130, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 45342, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 52530, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 60856, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 70513, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 81730, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 94774, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 109966, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 127683, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 148373, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 172572, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 200916, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 234163, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 273221, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 319176, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 373331, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 437248, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 512807, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 602275, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 708382, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 834432, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -13221,7 +15273,7 @@ skills["RagingSpiritsPlayer"] = { "SummonedRagingSpirit", }, color = 3, - description = "While active, Fire Spells you use yourself will also summon Raging Spirits, which are short-lived flaming skulls that rush at nearby enemies and rapidly Attack them. Enemies will not directly engage these Minions, and can pass through them.", + description = "While active, Fire Spells you use yourself will also summon Raging Spirits, which are short-lived flaming skulls that rush at nearby enemies and rapidly Attack them, ignoring commands. Enemies will not directly engage these Minions, and can pass through them.", skillTypes = { [SkillType.Buff] = true, [SkillType.Minion] = true, [SkillType.Fire] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.Limit] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 1, @@ -13344,53 +15396,53 @@ skills["RaiseZombiePlayer"] = { }, color = 3, description = "Consume a Corpse or Power Charge to create a short-lived Zombie. Zombies created from Power Charges are Empowered.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Totemable] = true, [SkillType.CreatesMinion] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Physical] = true, [SkillType.ConsumesCharges] = true, [SkillType.Limit] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Totemable] = true, [SkillType.CreatesMinion] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Physical] = true, [SkillType.ConsumesCharges] = true, [SkillType.Limit] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, castTime = 0.6, qualityStats = { - { "active_skill_minion_movement_velocity_+%_final", 1 }, + { "raise_zombie_empowerment_effect_+%", 1.25 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 11, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 12, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 14, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 10, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 11, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 13, }, }, [4] = { levelRequirement = 10, cost = { Mana = 16, }, }, [5] = { levelRequirement = 14, cost = { Mana = 18, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 23, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 26, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 29, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 33, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 38, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 43, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 21, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 24, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 27, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 31, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 35, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 39, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 44, }, }, [13] = { levelRequirement = 52, cost = { Mana = 49, }, }, [14] = { levelRequirement = 58, cost = { Mana = 55, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 71, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 80, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 91, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 103, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 116, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 132, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 149, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 169, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 191, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 216, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 245, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 277, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 314, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 355, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 402, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 455, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 515, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 583, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 660, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 747, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 846, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 957, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1083, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1226, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1388, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 61, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 68, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 75, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 83, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 92, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 102, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 113, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 124, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 137, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 150, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 165, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 181, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 199, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 218, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 238, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 261, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 285, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 311, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 340, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 371, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 440, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 480, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 522, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 568, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 618, }, }, }, statSets = { [1] = { @@ -13410,57 +15462,307 @@ skills["RaiseZombiePlayer"] = { { "zombie_base_decay_rate_permyriad", 0 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "power_charged_zombie_movement_speed_+%_final", 25 }, { "power_charged_zombie_hit_damage_+%_final", 100 }, { "power_charged_zombie_damage_taken_-%_final", 30 }, { "base_skill_effect_duration", 20000 }, }, stats = { - "can_perform_skill_while_moving", - "display_statset_no_hit_damage", + "can_perform_skill_while_moving", + "display_statset_no_hit_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["RavenousSwarmPlayer"] = { + name = "Ravenous Swarm", + baseTypeName = "Ravenous Swarm", + minionList = { + "RavenousSwarm", + }, + color = 3, + description = "While active and enemies are present, swarms of insects emerge from your body to pursue nearby enemies. The swarms are untargetable Minions that Attack and Poison enemies.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, }, + castTime = 0, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.5 }, + }, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 30, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 30, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 30, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 30, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 30, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 30, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 30, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 30, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 30, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 30, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 30, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 30, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 30, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 30, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 30, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Ravenous Swarm", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ravenous_swarm", + baseFlags = { + spell = true, + minion = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 40 }, + { "ravenous_swarm_create_new_swarm_every_X_ms", 6000 }, + { "ravenous_swarm_maximum_swarm_count", 3 }, + }, + stats = { + "base_skill_effect_duration", + "base_deal_no_damage", + "display_statset_no_hit_damage", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 6000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 6200, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6400, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6600, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 6800, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 7000, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 7200, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 7400, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 7600, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 7800, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 8000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 8200, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 8400, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 8600, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 8800, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 9000, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 9200, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 9400, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 9600, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 9800, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 10000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 10200, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 10400, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 10600, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 10800, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 11000, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 11200, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 11400, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 11600, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 11800, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 11900, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 12000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 12100, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 12200, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 12300, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 12400, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 12500, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 12600, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 12700, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 12800, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ReapPlayer"] = { + name = "Reap", + baseTypeName = "Reap", + fromItem = true, + color = 3, + description = "Conjure a bloody scythe that sweeps across the targeted area, dealing Physical damage to enemies and applying Critical Weakness. Cannot be Triggered.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.UsableWhileMoving] = true, }, + castTime = 1.2, + qualityStats = { + { "base_skill_effect_duration", 100 }, + }, + levels = { + [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Reap", + baseEffectiveness = 4.3000001907349, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "reap", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 25 }, + { "base_skill_effect_duration", 6000 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "life_gained_on_cull", + "is_area_damage", + "active_skill_show_cull_range", + "kill_enemy_on_hit_if_under_10%_life", + "precise_cursor_targeting_uses_contact_point_height_offset", + "cannot_cancel_skill_before_contact_point", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 11, 16, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 15, 22, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 21, 31, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 27, 41, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 35, 52, 19, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 44, 66, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 55, 82, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 66, 100, 35, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 81, 121, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 97, 146, 50, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 116, 174, 58, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 135, 202, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 156, 234, 79, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 180, 269, 90, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 206, 309, 103, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 236, 354, 118, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 270, 405, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 308, 462, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 351, 527, 168, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 400, 599, 188, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 454, 682, 210, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 516, 775, 233, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 587, 880, 257, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 666, 999, 282, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 757, 1135, 308, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 859, 1289, 335, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 976, 1464, 364, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1108, 1663, 393, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1259, 1889, 423, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1432, 2148, 455, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1628, 2443, 488, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1853, 2779, 521, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2110, 3165, 556, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2404, 3606, 592, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2741, 4112, 629, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3129, 4693, 667, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3573, 5360, 705, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 4085, 6128, 746, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 4675, 7012, 787, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 5354, 8031, 829, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -13476,46 +15778,46 @@ skills["MetaReapersInvocationPlayer"] = { { "energy_generated_+%", 1 }, }, levels = { - [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, - [2] = { spiritReservationFlat = 60, levelRequirement = 3, }, - [3] = { spiritReservationFlat = 60, levelRequirement = 6, }, - [4] = { spiritReservationFlat = 60, levelRequirement = 10, }, - [5] = { spiritReservationFlat = 60, levelRequirement = 14, }, - [6] = { spiritReservationFlat = 60, levelRequirement = 18, }, - [7] = { spiritReservationFlat = 60, levelRequirement = 22, }, - [8] = { spiritReservationFlat = 60, levelRequirement = 26, }, - [9] = { spiritReservationFlat = 60, levelRequirement = 31, }, - [10] = { spiritReservationFlat = 60, levelRequirement = 36, }, - [11] = { spiritReservationFlat = 60, levelRequirement = 41, }, - [12] = { spiritReservationFlat = 60, levelRequirement = 46, }, - [13] = { spiritReservationFlat = 60, levelRequirement = 52, }, - [14] = { spiritReservationFlat = 60, levelRequirement = 58, }, - [15] = { spiritReservationFlat = 60, levelRequirement = 64, }, - [16] = { spiritReservationFlat = 60, levelRequirement = 66, }, - [17] = { spiritReservationFlat = 60, levelRequirement = 72, }, - [18] = { spiritReservationFlat = 60, levelRequirement = 78, }, - [19] = { spiritReservationFlat = 60, levelRequirement = 84, }, - [20] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [21] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [22] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [23] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [24] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [25] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [26] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [27] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [28] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [29] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [30] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [31] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [32] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [33] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [34] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [35] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [36] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [37] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [38] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [39] = { spiritReservationFlat = 60, levelRequirement = 90, }, - [40] = { spiritReservationFlat = 60, levelRequirement = 90, }, + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 30, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 30, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 30, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 30, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 30, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 30, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 30, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 30, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 30, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 30, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 30, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 30, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 30, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 30, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 30, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, }, statSets = { [1] = { @@ -13526,7 +15828,7 @@ skills["MetaReapersInvocationPlayer"] = { }, constantStats = { { "generic_ongoing_trigger_maximum_energy", 500 }, - { "melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill", 1500 }, + { "melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill", 3000 }, }, stats = { "energy_generated_+%", @@ -13639,8 +15941,7 @@ skills["SupportReapersInvocationPlayer"] = { }, stats = { "triggered_by_generic_ongoing_trigger", - "display_generic_ongoing_triggerer_is_invocation_skill", - "skill_cannot_generate_energy", + "generic_ongoing_triggerer_is_invocation_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -13692,7 +15993,7 @@ skills["SacrificePlayer"] = { baseTypeName = "Sacrifice", color = 3, description = "While active, your undead Reviving Minions can be used in place of Corpses by your skills, but your Minions Revive more slowly.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Minion] = true, }, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Minion] = true, [SkillType.ReserveInAllSets] = true, }, castTime = 1, qualityStats = { { "harvester_minion_resummon_speed_+%_final", 0.25 }, @@ -13803,378 +16104,246 @@ skills["SacrificePlayer"] = { } } skills["ShatteringPalmPlayer"] = { - name = "Shattering Palm", - baseTypeName = "Shattering Palm", - color = 3, - description = "Dash to an enemy and Strike them with an Unarmed Attack that manifests a wave of cold, coating nearby enemies in shards of ice. Dealing enough damage to these enemies will shatter the shards, causing an icy explosion that deals Attack damage. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.", - skillTypes = { [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.MeleeSingleTarget] = true, }, - weaponTypes = { - ["None"] = true, - ["Staff"] = true, - }, - castTime = 1, - qualityStats = { - { "additional_base_critical_strike_chance", 10 }, - }, - levels = { - [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.38, levelRequirement = 3, cost = { Mana = 6, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.42, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.46, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.5, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.54, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.64, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.7, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.78, levelRequirement = 52, cost = { Mana = 21, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 58, cost = { Mana = 23, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.86, levelRequirement = 64, cost = { Mana = 25, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 66, cost = { Mana = 28, }, }, - [17] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 72, cost = { Mana = 31, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 78, cost = { Mana = 35, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.04, levelRequirement = 84, cost = { Mana = 39, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 90, cost = { Mana = 43, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 47, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 90, cost = { Mana = 53, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.26, levelRequirement = 90, cost = { Mana = 58, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 65, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 72, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 90, cost = { Mana = 80, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 88, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 90, cost = { Mana = 98, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 90, cost = { Mana = 109, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 1.78, levelRequirement = 90, cost = { Mana = 120, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 133, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 148, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 164, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.16, levelRequirement = 90, cost = { Mana = 182, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 201, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 90, cost = { Mana = 223, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 247, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 274, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 304, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 337, }, }, - }, - statSets = { - [1] = { - label = "Melee", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "shattering_palm", - baseFlags = { - attack = true, - area = true, - melee = true, - unarmed = true, - }, - constantStats = { - { "melee_conditional_step_distance", 10 }, - { "base_melee_dash_range", 65 }, - { "additional_base_critical_strike_chance", 900 }, - { "active_skill_base_area_of_effect_radius", 38 }, - }, - stats = { - "attack_minimum_added_cold_damage", - "attack_maximum_added_cold_damage", - "shattering_palm_debuff_damage_threshold", - "global_always_hit", - "is_area_damage", - }, - levels = { - [1] = { 6, 9, 33, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, 189, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, 282, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, 402, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, 555, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, 749, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, 995, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, 1379, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, 1881, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, 2532, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, 3546, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, 4673, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, 6410, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, 8716, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, 12304, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, 16487, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, 22942, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, 31724, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["ShatteringPalmExplosionPlayer"] = { - name = "Freezing Explosion", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Nova] = true, [SkillType.Cold] = true, [SkillType.UseGlobalStats] = true, }, - weaponTypes = { - ["None"] = true, - ["Staff"] = true, - }, - castTime = 1, - qualityStats = { - { "additional_base_critical_strike_chance", 10 }, - }, - levels = { - [1] = { baseMultiplier = 1.15, levelRequirement = 0, }, - [2] = { baseMultiplier = 1.27, levelRequirement = 0, }, - [3] = { baseMultiplier = 1.39, levelRequirement = 0, }, - [4] = { baseMultiplier = 1.52, levelRequirement = 0, }, - [5] = { baseMultiplier = 1.64, levelRequirement = 0, }, - [6] = { baseMultiplier = 1.76, levelRequirement = 0, }, - [7] = { baseMultiplier = 1.88, levelRequirement = 0, }, - [8] = { baseMultiplier = 2, levelRequirement = 0, }, - [9] = { baseMultiplier = 2.1, levelRequirement = 0, }, - [10] = { baseMultiplier = 2.2, levelRequirement = 0, }, - [11] = { baseMultiplier = 2.31, levelRequirement = 0, }, - [12] = { baseMultiplier = 2.43, levelRequirement = 0, }, - [13] = { baseMultiplier = 2.55, levelRequirement = 0, }, - [14] = { baseMultiplier = 2.68, levelRequirement = 0, }, - [15] = { baseMultiplier = 2.81, levelRequirement = 0, }, - [16] = { baseMultiplier = 2.95, levelRequirement = 0, }, - [17] = { baseMultiplier = 3.1, levelRequirement = 0, }, - [18] = { baseMultiplier = 3.25, levelRequirement = 0, }, - [19] = { baseMultiplier = 3.42, levelRequirement = 0, }, - [20] = { baseMultiplier = 3.59, levelRequirement = 0, }, - [21] = { baseMultiplier = 3.77, levelRequirement = 0, }, - [22] = { baseMultiplier = 3.95, levelRequirement = 0, }, - [23] = { baseMultiplier = 4.15, levelRequirement = 0, }, - [24] = { baseMultiplier = 4.36, levelRequirement = 0, }, - [25] = { baseMultiplier = 4.58, levelRequirement = 0, }, - [26] = { baseMultiplier = 4.81, levelRequirement = 0, }, - [27] = { baseMultiplier = 5.05, levelRequirement = 0, }, - [28] = { baseMultiplier = 5.3, levelRequirement = 0, }, - [29] = { baseMultiplier = 5.56, levelRequirement = 0, }, - [30] = { baseMultiplier = 5.84, levelRequirement = 0, }, - [31] = { baseMultiplier = 6.13, levelRequirement = 0, }, - [32] = { baseMultiplier = 6.44, levelRequirement = 0, }, - [33] = { baseMultiplier = 6.76, levelRequirement = 0, }, - [34] = { baseMultiplier = 7.1, levelRequirement = 0, }, - [35] = { baseMultiplier = 7.46, levelRequirement = 0, }, - [36] = { baseMultiplier = 7.83, levelRequirement = 0, }, - [37] = { baseMultiplier = 8.22, levelRequirement = 0, }, - [38] = { baseMultiplier = 8.63, levelRequirement = 0, }, - [39] = { baseMultiplier = 9.06, levelRequirement = 0, }, - [40] = { baseMultiplier = 9.52, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Explosion", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "triggered_freezing_word_explosion", - baseFlags = { - area = true, - nonWeaponAttack = true, - hit = true, - unarmed = true, - }, - constantStats = { - { "active_skill_base_area_of_effect_radius", 16 }, - { "active_skill_hit_damage_freeze_multiplier_+%_final", 100 }, - { "additional_base_critical_strike_chance", 1100 }, - }, - stats = { - "attack_minimum_added_cold_damage", - "attack_maximum_added_cold_damage", - "is_area_damage", - "attack_is_not_melee_override", - "triggered_by_freezing_word_bomb", - "display_statset_hide_usage_stats", - "triggerable_in_any_set", - }, - levels = { - [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + name = "Shattering Palm", + baseTypeName = "Shattering Palm", + color = 3, + description = "Dash to an enemy and Strike them with an Attack that manifests a wave of cold, coating nearby enemies in shards of ice. Dealing enough damage to these enemies will shatter the shards, causing an icy explosion that deals Attack damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, }, + weaponTypes = { + ["Staff"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_critical_strike_chance_+%_final", 1 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.38, levelRequirement = 3, cost = { Mana = 6, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.42, levelRequirement = 6, cost = { Mana = 7, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.46, levelRequirement = 10, cost = { Mana = 8, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.5, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.54, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.64, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.7, levelRequirement = 41, cost = { Mana = 18, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.78, levelRequirement = 52, cost = { Mana = 22, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 58, cost = { Mana = 24, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.86, levelRequirement = 64, cost = { Mana = 26, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 66, cost = { Mana = 29, }, }, + [17] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 72, cost = { Mana = 31, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 78, cost = { Mana = 34, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.04, levelRequirement = 84, cost = { Mana = 37, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 90, cost = { Mana = 40, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 43, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 90, cost = { Mana = 46, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.26, levelRequirement = 90, cost = { Mana = 50, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 54, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 58, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 90, cost = { Mana = 62, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 67, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 90, cost = { Mana = 71, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 90, cost = { Mana = 77, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 1.78, levelRequirement = 90, cost = { Mana = 82, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 88, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 94, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 100, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.16, levelRequirement = 90, cost = { Mana = 107, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 114, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 90, cost = { Mana = 122, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 130, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 138, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 147, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 157, }, }, + }, + statSets = { + [1] = { + label = "Melee", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "shattering_palm", + baseFlags = { + attack = true, + area = true, + melee = true, + unarmed = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + { "base_melee_dash_range", 65 }, + { "active_skill_base_area_of_effect_radius", 38 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 }, + }, + stats = { + "shattering_palm_debuff_damage_threshold", + "global_always_hit", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { 32, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 46, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 68, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 141, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 269, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 472, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 708, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 971, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 1370, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 1839, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 2376, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 3052, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 3880, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 4664, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 5836, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 6893, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 8129, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 9743, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 11367, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 12788, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 13640, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 13640, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 13640, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 13640, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 13640, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 13640, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 13640, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 13640, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 13640, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 13640, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 13640, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 13640, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 13640, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 13640, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 13640, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 13640, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 13640, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 13640, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 13640, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 13640, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ShockNovaPlayer"] = { - name = "Shock Nova", - baseTypeName = "Shock Nova", - fromItem = true, - color = 3, - description = "Unleash a Nova of Lightning damage to Electrocute enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 0.7, +skills["ShatteringPalmExplosionPlayer"] = { + name = "Freezing Explosion", + hidden = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Triggered] = true, }, + weaponTypes = { + ["Staff"] = true, + }, + castTime = 1, qualityStats = { - { "fishing_line_strength_+%", 0.5 }, + { "active_skill_critical_strike_chance_+%_final", 1 }, }, levels = { - [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [1] = { baseMultiplier = 1.2, levelRequirement = 0, }, + [2] = { baseMultiplier = 1.32, levelRequirement = 0, }, + [3] = { baseMultiplier = 1.45, levelRequirement = 0, }, + [4] = { baseMultiplier = 1.58, levelRequirement = 0, }, + [5] = { baseMultiplier = 1.71, levelRequirement = 0, }, + [6] = { baseMultiplier = 1.84, levelRequirement = 0, }, + [7] = { baseMultiplier = 1.97, levelRequirement = 0, }, + [8] = { baseMultiplier = 2.08, levelRequirement = 0, }, + [9] = { baseMultiplier = 2.19, levelRequirement = 0, }, + [10] = { baseMultiplier = 2.3, levelRequirement = 0, }, + [11] = { baseMultiplier = 2.41, levelRequirement = 0, }, + [12] = { baseMultiplier = 2.53, levelRequirement = 0, }, + [13] = { baseMultiplier = 2.66, levelRequirement = 0, }, + [14] = { baseMultiplier = 2.79, levelRequirement = 0, }, + [15] = { baseMultiplier = 2.93, levelRequirement = 0, }, + [16] = { baseMultiplier = 3.08, levelRequirement = 0, }, + [17] = { baseMultiplier = 3.23, levelRequirement = 0, }, + [18] = { baseMultiplier = 3.39, levelRequirement = 0, }, + [19] = { baseMultiplier = 3.56, levelRequirement = 0, }, + [20] = { baseMultiplier = 3.74, levelRequirement = 0, }, + [21] = { baseMultiplier = 3.93, levelRequirement = 0, }, + [22] = { baseMultiplier = 4.13, levelRequirement = 0, }, + [23] = { baseMultiplier = 4.33, levelRequirement = 0, }, + [24] = { baseMultiplier = 4.55, levelRequirement = 0, }, + [25] = { baseMultiplier = 4.78, levelRequirement = 0, }, + [26] = { baseMultiplier = 5.02, levelRequirement = 0, }, + [27] = { baseMultiplier = 5.27, levelRequirement = 0, }, + [28] = { baseMultiplier = 5.53, levelRequirement = 0, }, + [29] = { baseMultiplier = 5.81, levelRequirement = 0, }, + [30] = { baseMultiplier = 6.1, levelRequirement = 0, }, + [31] = { baseMultiplier = 6.4, levelRequirement = 0, }, + [32] = { baseMultiplier = 6.72, levelRequirement = 0, }, + [33] = { baseMultiplier = 7.06, levelRequirement = 0, }, + [34] = { baseMultiplier = 7.41, levelRequirement = 0, }, + [35] = { baseMultiplier = 7.78, levelRequirement = 0, }, + [36] = { baseMultiplier = 8.17, levelRequirement = 0, }, + [37] = { baseMultiplier = 8.58, levelRequirement = 0, }, + [38] = { baseMultiplier = 9.01, levelRequirement = 0, }, + [39] = { baseMultiplier = 9.46, levelRequirement = 0, }, + [40] = { baseMultiplier = 9.93, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Shock Nova", - baseEffectiveness = 1.305999994278, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "skill_stat_descriptions", + label = "Explosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_freezing_word_explosion", baseFlags = { - spell = true, area = true, + nonWeaponAttack = true, + hit = true, + unarmed = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_electrocutes_as_though_dealt_damage_+%_final", 100 }, + { "active_skill_base_area_of_effect_radius", 16 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, }, stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", "is_area_damage", - "can_perform_skill_while_moving", - "base_lightning_damage_can_electrocute", - }, - notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", + "attack_is_not_melee_override", + "triggered_by_freezing_word_bomb", + "display_statset_hide_usage_stats", + "triggerable_in_any_set", + "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 3, 8, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 5, 14, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6, 19, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 8, 24, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 10, 29, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 12, 35, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 14, 42, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 3, 62, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 4, 73, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 4, 84, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 5, 97, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6, 112, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 8, 146, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 9, 165, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 10, 187, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 11, 212, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 13, 239, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 14, 270, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 16, 304, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 18, 342, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 20, 384, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 23, 432, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 26, 485, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 29, 544, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 32, 611, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 36, 685, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 40, 769, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 45, 863, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 51, 968, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 57, 1087, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 64, 1221, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 72, 1371, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 81, 1541, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 91, 1733, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 103, 1949, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 115, 2194, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 130, 2471, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 147, 2785, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -14185,7 +16354,7 @@ skills["SigilOfPowerPlayer"] = { fromItem = true, color = 3, description = "Place a Sigil on the ground, providing a powerful Spell Damage Buff to you and Allies while standing in it. The Buff becomes more powerful the more mana you spend while standing in the Sigil.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.GainsStages] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.6, qualityStats = { { "active_skill_base_area_of_effect_radius", 0.4 }, @@ -14257,59 +16426,174 @@ skills["SigilOfPowerPlayer"] = { { "base_circle_of_power_mana_%_spend_per_upgrade", 50 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_area_of_effect_radius", 30 }, }, - stats = { - "circle_of_power_spell_damage_+%_final_per_stage", - "base_skill_effect_duration", - "display_sigil_of_power_stage_gain_delay", - "can_perform_skill_while_moving", + stats = { + "circle_of_power_spell_damage_+%_final_per_stage", + "base_skill_effect_duration", + "display_sigil_of_power_stage_gain_delay", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 10, 10000, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 10, 10100, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 10200, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 10, 10300, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 11, 10400, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 11, 10500, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 11, 10600, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 11, 10700, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 12, 10800, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 12, 10900, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 12, 11000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 12, 11100, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 13, 11200, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 13, 11300, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 13, 11400, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 13, 11500, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 14, 11600, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 14, 11700, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 14, 11800, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 14, 11900, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 15, 12000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 15, 12100, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 15, 12200, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 15, 12300, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 16, 12400, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 16, 12500, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 16, 12600, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 16, 12700, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 17, 12800, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 17, 12900, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 17, 13000, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 17, 13100, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 18, 13200, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 18, 13300, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 18, 13400, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 18, 13500, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 19, 13600, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 19, 13700, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 19, 13800, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 19, 13900, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SiphonElementsPlayer"] = { + name = "Siphon Elements", + baseTypeName = "Siphon Elements", + color = 3, + description = "While active, has a chance to create an Infusion Remnant when you Freeze, Shock or Ignite a target.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.TotemCastsAlone] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, }, + castTime = 0, + qualityStats = { + { "infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy", 0.1 }, + { "infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy", 0.1 }, + { "infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy", 0.1 }, + }, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 30, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 30, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 30, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 30, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 30, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 30, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 30, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 30, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 30, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 30, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 30, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 30, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 30, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 30, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 30, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Siphon Elements", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy", 5 }, + { "infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy", 5 }, + { "infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy", 5 }, }, - notMinionStat = { - "base_skill_effect_duration", + stats = { + "remnant_pickup_range_+%", + "base_deal_no_damage", }, levels = { - [1] = { 10, 10000, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 10100, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 10200, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 10, 10300, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 11, 10400, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 11, 10500, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 11, 10600, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 11, 10700, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 12, 10800, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 12, 10900, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 12, 11000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 12, 11100, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 13, 11200, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 13, 11300, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 13, 11400, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 13, 11500, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 14, 11600, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 14, 11700, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 14, 11800, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 14, 11900, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 15, 12000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 15, 12100, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 15, 12200, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 15, 12300, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 16, 12400, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 16, 12500, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 16, 12600, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 16, 12700, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 17, 12800, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 17, 12900, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 17, 13000, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 17, 13100, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 18, 13200, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 18, 13300, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 18, 13400, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 18, 13500, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 19, 13600, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 19, 13700, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 19, 13800, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 19, 13900, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 2, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 5, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 10, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 15, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 20, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 22, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 25, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 27, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 30, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 32, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 35, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 37, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 40, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 42, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 45, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 47, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 50, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 52, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 55, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 57, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 60, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 62, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 65, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 67, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 70, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 72, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 75, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 77, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 80, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 82, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 85, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 87, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 90, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 92, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 95, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 97, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -14318,56 +16602,56 @@ skills["SiphoningStrikePlayer"] = { name = "Siphoning Strike", baseTypeName = "Siphoning Strike", color = 3, - description = "Dash to a target and Strike them with your Quarterstaff. If the target is Shocked, consumes their Shock to release a Lightning shockwave around the target and grant you a Power Charge. This skill cannot be Ancestrally Boosted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.SkillConsumesShock] = true, [SkillType.GeneratesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CannotSpiritStrike] = true, }, + description = "Dash to a target and Strike them with your Quarterstaff. If the target is Shocked, Consume their Shock to release a Lightning shockwave around the target and grant you a Power Charge. This skill cannot be Ancestrally Boosted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.SkillConsumesShock] = true, [SkillType.GeneratesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "active_skill_hit_damage_stun_multiplier_+%_final", 2 }, + { "base_chance_to_daze_%", 2.5 }, }, levels = { - [1] = { baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 16, }, }, - [10] = { baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 18, }, }, - [11] = { baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 20, }, }, - [12] = { baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 22, }, }, - [13] = { baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 27, }, }, - [15] = { baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 30, }, }, - [16] = { baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 33, }, }, - [17] = { baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 37, }, }, - [18] = { baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 41, }, }, - [19] = { baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 45, }, }, - [20] = { baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 50, }, }, - [21] = { baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 56, }, }, - [22] = { baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 62, }, }, - [23] = { baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 69, }, }, - [24] = { baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 76, }, }, - [25] = { baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 84, }, }, - [26] = { baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 94, }, }, - [27] = { baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 104, }, }, - [28] = { baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 115, }, }, - [29] = { baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 128, }, }, - [30] = { baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 141, }, }, - [31] = { baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 157, }, }, - [32] = { baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 174, }, }, - [33] = { baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 193, }, }, - [34] = { baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 213, }, }, - [35] = { baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 237, }, }, - [36] = { baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 262, }, }, - [37] = { baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 291, }, }, - [38] = { baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 322, }, }, - [39] = { baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 357, }, }, - [40] = { baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 396, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 7, }, }, + [2] = { baseMultiplier = 0.82, levelRequirement = 3, cost = { Mana = 8, }, }, + [3] = { baseMultiplier = 0.91, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { baseMultiplier = 0.99, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { baseMultiplier = 1.07, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { baseMultiplier = 1.15, levelRequirement = 18, cost = { Mana = 13, }, }, + [7] = { baseMultiplier = 1.23, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { baseMultiplier = 1.3, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { baseMultiplier = 1.37, levelRequirement = 31, cost = { Mana = 18, }, }, + [10] = { baseMultiplier = 1.44, levelRequirement = 36, cost = { Mana = 20, }, }, + [11] = { baseMultiplier = 1.51, levelRequirement = 41, cost = { Mana = 22, }, }, + [12] = { baseMultiplier = 1.58, levelRequirement = 46, cost = { Mana = 24, }, }, + [13] = { baseMultiplier = 1.66, levelRequirement = 52, cost = { Mana = 26, }, }, + [14] = { baseMultiplier = 1.75, levelRequirement = 58, cost = { Mana = 29, }, }, + [15] = { baseMultiplier = 1.83, levelRequirement = 64, cost = { Mana = 31, }, }, + [16] = { baseMultiplier = 1.92, levelRequirement = 66, cost = { Mana = 34, }, }, + [17] = { baseMultiplier = 2.02, levelRequirement = 72, cost = { Mana = 37, }, }, + [18] = { baseMultiplier = 2.12, levelRequirement = 78, cost = { Mana = 40, }, }, + [19] = { baseMultiplier = 2.23, levelRequirement = 84, cost = { Mana = 43, }, }, + [20] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 47, }, }, + [21] = { baseMultiplier = 2.46, levelRequirement = 90, cost = { Mana = 51, }, }, + [22] = { baseMultiplier = 2.58, levelRequirement = 90, cost = { Mana = 55, }, }, + [23] = { baseMultiplier = 2.71, levelRequirement = 90, cost = { Mana = 59, }, }, + [24] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 63, }, }, + [25] = { baseMultiplier = 2.99, levelRequirement = 90, cost = { Mana = 68, }, }, + [26] = { baseMultiplier = 3.13, levelRequirement = 90, cost = { Mana = 73, }, }, + [27] = { baseMultiplier = 3.29, levelRequirement = 90, cost = { Mana = 78, }, }, + [28] = { baseMultiplier = 3.46, levelRequirement = 90, cost = { Mana = 84, }, }, + [29] = { baseMultiplier = 3.63, levelRequirement = 90, cost = { Mana = 90, }, }, + [30] = { baseMultiplier = 3.81, levelRequirement = 90, cost = { Mana = 96, }, }, + [31] = { baseMultiplier = 4, levelRequirement = 90, cost = { Mana = 103, }, }, + [32] = { baseMultiplier = 4.2, levelRequirement = 90, cost = { Mana = 110, }, }, + [33] = { baseMultiplier = 4.41, levelRequirement = 90, cost = { Mana = 118, }, }, + [34] = { baseMultiplier = 4.63, levelRequirement = 90, cost = { Mana = 126, }, }, + [35] = { baseMultiplier = 4.86, levelRequirement = 90, cost = { Mana = 134, }, }, + [36] = { baseMultiplier = 5.11, levelRequirement = 90, cost = { Mana = 143, }, }, + [37] = { baseMultiplier = 5.36, levelRequirement = 90, cost = { Mana = 153, }, }, + [38] = { baseMultiplier = 5.63, levelRequirement = 90, cost = { Mana = 163, }, }, + [39] = { baseMultiplier = 5.91, levelRequirement = 90, cost = { Mana = 173, }, }, + [40] = { baseMultiplier = 6.21, levelRequirement = 90, cost = { Mana = 184, }, }, }, statSets = { [1] = { @@ -14391,6 +16675,7 @@ skills["SiphoningStrikePlayer"] = { "never_shock", "global_knockback", "base_consume_enemy_shock_on_hit", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -14447,56 +16732,57 @@ skills["SiphoningStrikePlayer"] = { { "melee_conditional_step_distance", 10 }, { "base_melee_dash_range", 65 }, { "active_skill_hit_damage_stun_multiplier_+%_final", 50 }, - { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_area_of_effect_radius", 30 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, }, stats = { "skill_can_add_multiple_charges_per_action", "is_area_damage", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 1.1, actorLevel = 1, }, - [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.57, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.68, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.8, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.91, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.01, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.11, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.21, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.32, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.44, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 2.56, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 2.69, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 2.82, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 2.96, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.11, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.27, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 3.43, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 3.6, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 3.78, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 3.97, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 4.17, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 4.38, actorLevel = 136.875, }, - [26] = { baseMultiplier = 4.6, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 4.83, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 5.07, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 5.32, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 5.59, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 5.87, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 6.16, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 6.47, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 6.79, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 7.13, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 7.49, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 7.86, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 8.26, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 8.67, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 9.1, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 2, actorLevel = 1, }, + [2] = { baseMultiplier = 2.2, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 2.42, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 2.64, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 2.85, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 3.06, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 3.28, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 3.47, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 3.65, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 3.83, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 4.02, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 4.22, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 4.43, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 4.65, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 4.89, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 5.13, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 5.39, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 5.66, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 5.94, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 6.24, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 6.55, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 6.88, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 7.22, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 7.58, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 7.96, actorLevel = 136.875, }, + [26] = { baseMultiplier = 8.36, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 8.78, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 9.22, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 9.68, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 10.16, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 10.67, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 11.2, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 11.76, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 12.35, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 12.97, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 13.62, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 14.3, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 15.01, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 15.76, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 16.55, actorLevel = 288.29998779297, }, }, }, } @@ -14509,8 +16795,8 @@ skills["SummonSkeletalArsonistsPlayer"] = { }, color = 3, description = "Activate to summon bomb-throwing, Reviving Skeletal Arsonists that can detonate other Minions on Command.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, }, castTime = 0, qualityStats = { }, @@ -14569,6 +16855,7 @@ skills["SummonSkeletalArsonistsPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 15 }, }, stats = { "is_resummoning_minion", @@ -14626,12 +16913,12 @@ skills["SummonSkeletalBrutesPlayer"] = { "RaisedSkeletonBrute", }, color = 3, - description = "Activate to summons hard-hitting, Reviving Skeletal Brutes that can Stun Primed enemies.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, + description = "Activate to summon hard-hitting, Reviving Skeletal Brutes that can Stun Primed enemies and Warcry on Command. This Warcry Intimidates nearby enemies and Consumes Freeze on enemies and allies to deal damage in an Area around them.", + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CommandableMinion] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, }, castTime = 0, qualityStats = { - { "active_skill_minion_hit_damage_stun_multiplier_+%_final", 1 }, + { "active_skill_minion_hit_damage_stun_multiplier_+%_final", 2 }, }, levels = { [1] = { spiritReservationFlat = 165, levelRequirement = 0, }, @@ -14688,6 +16975,7 @@ skills["SummonSkeletalBrutesPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 60 }, }, stats = { "is_resummoning_minion", @@ -14746,11 +17034,11 @@ skills["SummonSkeletalClericsPlayer"] = { }, color = 3, description = "Activate to summon Reviving Skeletal Clerics that heal other minions and revive fallen Skeletons.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, }, castTime = 0, qualityStats = { - { "active_skill_minion_life_+%_final", 1.5 }, + { "skeletal_cleric_revived_skeletons_immune_for_X_ms", 150 }, }, levels = { [1] = { spiritReservationFlat = 60, levelRequirement = 0, }, @@ -14807,6 +17095,7 @@ skills["SummonSkeletalClericsPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 30 }, }, stats = { "is_resummoning_minion", @@ -14864,12 +17153,12 @@ skills["SummonSkeletalFrostMagesPlayer"] = { "RaisedSkeletonFrostMage", }, color = 3, - description = "Activate to summon Reviving Skeletal Frost Mages that can be Commanded to cast icy explosions.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Cold] = true, [SkillType.CommandableMinion] = true, }, - minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, }, + description = "Activate to summon Reviving Skeletal Frost Mages that can envelop your Minions in an icy shield on Command.", + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Cold] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, }, + minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, }, castTime = 0, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "active_skill_minion_damage_+%_final", 1 }, }, levels = { [1] = { spiritReservationFlat = 120, levelRequirement = 0, }, @@ -14926,6 +17215,7 @@ skills["SummonSkeletalFrostMagesPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 35 }, }, stats = { "is_resummoning_minion", @@ -14984,7 +17274,7 @@ skills["SummonSkeletalReaversPlayer"] = { }, color = 3, description = "Activate to summon aggressive, Reviving Skeletal Reavers that can enrage on Command.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.CommandableMinion] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 0, qualityStats = { @@ -15046,6 +17336,7 @@ skills["SummonSkeletalReaversPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 6 }, }, stats = { "is_resummoning_minion", @@ -15104,11 +17395,11 @@ skills["SummonSkeletalSnipersPlayer"] = { }, color = 3, description = "Activate to summon long-ranged, Reviving Skeletal Snipers that can fire a gas arrow on Command.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.CreatesGroundEffect] = true, }, castTime = 0, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "active_skill_minion_damage_+%_final", 1 }, }, levels = { [1] = { spiritReservationFlat = 90, levelRequirement = 0, }, @@ -15165,6 +17456,7 @@ skills["SummonSkeletalSnipersPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 15 }, }, stats = { "is_resummoning_minion", @@ -15223,7 +17515,7 @@ skills["SummonSkeletalStormMagesPlayer"] = { }, color = 3, description = "Activate to summon Reviving Skeletal Storm Mages that can call down a lightning storm on dead Skeletons on Command.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Lightning] = true, [SkillType.CommandableMinion] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Lightning] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Chains] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, }, castTime = 0, qualityStats = { @@ -15284,6 +17576,7 @@ skills["SummonSkeletalStormMagesPlayer"] = { constantStats = { { "display_minion_monster_type", 2 }, { "minion_base_resummon_time_ms", 12000 }, + { "skeletal_graft_buff_effect_magnitude", 25 }, }, stats = { "is_resummoning_minion", @@ -15343,7 +17636,7 @@ skills["SummonSkeletalWarriorsPlayer"] = { }, color = 3, description = "Activate to summon Reviving Skeletal Warriors.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 0, qualityStats = { @@ -15407,6 +17700,7 @@ skills["SummonSkeletalWarriorsPlayer"] = { { "minion_base_resummon_time_ms", 12000 }, { "first_X_minions_have_0_base_spirit_reservation", 2 }, { "skill_desired_initial_amount", 2 }, + { "skeletal_graft_buff_effect_magnitude", 15 }, }, stats = { "is_resummoning_minion", @@ -15457,64 +17751,360 @@ skills["SummonSkeletalWarriorsPlayer"] = { }, } } +skills["SnapPlayer"] = { + name = "Snap", + baseTypeName = "Snap", + color = 3, + description = "Consume the elemental energy from a Frozen, Shocked or Ignited enemy, creating an elemental blast that leaves behind an Infusion Remnant. The blast will spread to other enemies affected by the same Ailment, but those blasts cannot spread further. Can also be cast on a Frostbolt to create a larger cold blast.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.SkillConsumesIgnite] = true, [SkillType.SkillConsumesShock] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Unleashable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesRemnants] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, }, + castTime = 0.5, + qualityStats = { + { "chance_%_to_spawn_another_infusion_remnant", 0.5 }, + }, + levels = { + [1] = { critChance = 13, storedUses = 1, levelRequirement = 0, cooldown = 4, cost = { Mana = 8, }, }, + [2] = { critChance = 13, storedUses = 1, levelRequirement = 3, cooldown = 4, cost = { Mana = 10, }, }, + [3] = { critChance = 13, storedUses = 1, levelRequirement = 6, cooldown = 4, cost = { Mana = 12, }, }, + [4] = { critChance = 13, storedUses = 1, levelRequirement = 10, cooldown = 4, cost = { Mana = 14, }, }, + [5] = { critChance = 13, storedUses = 1, levelRequirement = 14, cooldown = 4, cost = { Mana = 16, }, }, + [6] = { critChance = 13, storedUses = 1, levelRequirement = 18, cooldown = 4, cost = { Mana = 18, }, }, + [7] = { critChance = 13, storedUses = 1, levelRequirement = 22, cooldown = 4, cost = { Mana = 21, }, }, + [8] = { critChance = 13, storedUses = 1, levelRequirement = 26, cooldown = 4, cost = { Mana = 24, }, }, + [9] = { critChance = 13, storedUses = 1, levelRequirement = 31, cooldown = 4, cost = { Mana = 27, }, }, + [10] = { critChance = 13, storedUses = 1, levelRequirement = 36, cooldown = 4, cost = { Mana = 30, }, }, + [11] = { critChance = 13, storedUses = 1, levelRequirement = 41, cooldown = 4, cost = { Mana = 34, }, }, + [12] = { critChance = 13, storedUses = 1, levelRequirement = 46, cooldown = 4, cost = { Mana = 38, }, }, + [13] = { critChance = 13, storedUses = 1, levelRequirement = 52, cooldown = 4, cost = { Mana = 43, }, }, + [14] = { critChance = 13, storedUses = 1, levelRequirement = 58, cooldown = 4, cost = { Mana = 48, }, }, + [15] = { critChance = 13, storedUses = 1, levelRequirement = 64, cooldown = 4, cost = { Mana = 53, }, }, + [16] = { critChance = 13, storedUses = 1, levelRequirement = 66, cooldown = 4, cost = { Mana = 59, }, }, + [17] = { critChance = 13, storedUses = 1, levelRequirement = 72, cooldown = 4, cost = { Mana = 65, }, }, + [18] = { critChance = 13, storedUses = 1, levelRequirement = 78, cooldown = 4, cost = { Mana = 73, }, }, + [19] = { critChance = 13, storedUses = 1, levelRequirement = 84, cooldown = 4, cost = { Mana = 80, }, }, + [20] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 89, }, }, + [21] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 98, }, }, + [22] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 108, }, }, + [23] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 119, }, }, + [24] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 131, }, }, + [25] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 144, }, }, + [26] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 158, }, }, + [27] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 173, }, }, + [28] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 189, }, }, + [29] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 207, }, }, + [30] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 227, }, }, + [31] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 248, }, }, + [32] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 271, }, }, + [33] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 296, }, }, + [34] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 322, }, }, + [35] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 352, }, }, + [36] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 383, }, }, + [37] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 417, }, }, + [38] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 454, }, }, + [39] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 495, }, }, + [40] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 538, }, }, + }, + statSets = { + [1] = { + label = "Cold", + baseEffectiveness = 4.4499998092651, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "shatter", + baseFlags = { + area = true, + spell = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 16 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_secondary_area_of_effect_radius", 32 }, + { "snap_proliferation_base_delay_ms", 50 }, + { "snap_proliferation_delay_range_ms", 200 }, + { "snap_maximum_proliferation_depth", 2 }, + { "snap_damage_+%_final_if_created_from_unique", 50 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "can_perform_skill_while_moving", + "is_area_damage", + "skill_is_infusion_skill", + "never_freeze", + "never_shock", + "never_ignite", + "base_skill_show_average_damage_instead_of_dps", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 26, 38, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 52, 79, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 92, 137, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 173, 260, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 201, 302, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 233, 350, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 269, 404, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 310, 466, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 358, 536, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 411, 617, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 473, 709, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 543, 815, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 624, 936, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 717, 1075, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 823, 1235, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 945, 1418, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1086, 1630, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1249, 1873, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1436, 2155, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1653, 2480, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1904, 2856, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2195, 3292, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2532, 3798, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2923, 4385, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3379, 5069, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3910, 5865, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 4529, 6794, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 5253, 7880, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 6100, 9149, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 7091, 10637, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8255, 12383, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Lightning", + baseEffectiveness = 2.0299999713898, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "shatter", + baseFlags = { + area = true, + spell = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 16 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "snap_proliferation_base_delay_ms", 50 }, + { "snap_proliferation_delay_range_ms", 200 }, + { "snap_maximum_proliferation_depth", 2 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "can_perform_skill_while_moving", + "is_area_damage", + "skill_is_infusion_skill", + "never_freeze", + "never_shock", + "never_ignite", + "base_skill_show_average_damage_instead_of_dps", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 0, 0, 1, 15, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 1, 20, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1, 28, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 2, 36, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 2, 46, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 3, 57, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 4, 69, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 4, 83, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 5, 99, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 6, 117, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 7, 138, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 8, 161, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 10, 188, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 11, 218, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 13, 252, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 15, 292, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 18, 336, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 20, 387, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 23, 446, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 27, 512, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 31, 589, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 36, 676, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 41, 776, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 47, 892, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 54, 1024, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 62, 1177, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 71, 1353, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 82, 1556, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 94, 1791, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 109, 2063, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 125, 2378, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 144, 2743, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 167, 3167, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 193, 3661, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 223, 4236, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 258, 4907, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 300, 5691, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 348, 6608, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 404, 7683, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 471, 8944, critChance = -2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Fire", + baseEffectiveness = 1.8099999427795, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "shatter", + baseFlags = { + area = true, + spell = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 16 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "snap_proliferation_base_delay_ms", 50 }, + { "snap_proliferation_delay_range_ms", 200 }, + { "snap_maximum_proliferation_depth", 2 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "can_perform_skill_while_moving", + "is_area_damage", + "skill_is_infusion_skill", + "never_freeze", + "never_shock", + "never_ignite", + "base_skill_show_average_damage_instead_of_dps", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 0, 0, 6, 8, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 8, 11, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 10, 16, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 14, 20, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 17, 26, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 21, 32, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 26, 39, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 31, 47, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 37, 56, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 44, 66, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 52, 78, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 61, 91, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 71, 106, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 82, 123, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 95, 142, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 109, 164, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 126, 189, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 145, 218, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 167, 251, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 192, 288, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 221, 331, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 254, 381, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 291, 437, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 335, 502, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 385, 577, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 442, 663, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 508, 762, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 584, 876, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 672, 1009, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 774, 1162, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 893, 1339, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 1030, 1545, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 1189, 1784, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1374, 2062, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1590, 2386, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1842, 2763, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 2137, 3205, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 2481, 3721, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2884, 4327, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 3358, 5037, critChance = -5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["SolarOrbPlayer"] = { name = "Solar Orb", baseTypeName = "Solar Orb", color = 3, - description = "Create a fiery Orb that periodically releases fiery pulses. Enemies that are very close to the Orb are Ignited.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, }, + description = "Create a fiery Orb that periodically releases fiery pulses. Enemies that are very close to the Orb are Ignited. Flameblast can target a Solar Orb to be centred on the Orb instead of your location.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.8, qualityStats = { - { "solar_orb_base_pulse_frequency_ms", -15 }, + { "active_skill_damage_+%_final_vs_burning_enemies", 1 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 13, }, }, - [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 15, }, }, - [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 28, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 32, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 36, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 41, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 46, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 52, }, }, - [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 59, }, }, - [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 67, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 76, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 86, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 97, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 110, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 125, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 141, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 160, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 181, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 205, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 232, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 262, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 297, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 336, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 381, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 431, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 488, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 552, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 625, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 707, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 800, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 906, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1025, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1160, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1313, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1486, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1682, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { label = "Pulse", - baseEffectiveness = 1.3500000238419, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + baseEffectiveness = 1.7000000476837, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "solar_orb_statset_0", statMap = { ["solar_orb_base_pulse_frequency_ms"] = { @@ -15534,7 +18124,7 @@ skills["SolarOrbPlayer"] = { { "solar_orb_base_maximum_number_of_orbs", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "spell_minimum_base_fire_damage", @@ -15548,62 +18138,61 @@ skills["SolarOrbPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [1] = { 4, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, [3] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 52, 78, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 60, 90, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 104, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 104, 155, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 134, 202, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 153, 229, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 174, 261, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 197, 296, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 224, 337, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 289, 434, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 329, 493, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 374, 560, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 425, 637, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 483, 724, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 549, 824, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 625, 937, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 712, 1067, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 811, 1216, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 925, 1387, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1055, 1583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1206, 1808, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1378, 2068, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1577, 2366, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1807, 2710, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [4] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 61, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 57, 85, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 137, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 157, 236, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 181, 271, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 238, 358, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 274, 411, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 314, 472, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 361, 542, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 415, 623, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 477, 716, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 632, 947, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 727, 1091, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 838, 1258, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 967, 1451, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1117, 1675, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1291, 1936, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1494, 2241, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1730, 2596, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2007, 3010, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2330, 3495, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2709, 4064, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3154, 4730, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { label = "Ignite", - baseEffectiveness = 4.3000001907349, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + baseEffectiveness = 2.7000000476837, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "solar_orb_statset_1", baseFlags = { spell = true, area = true, - duration = true, }, constantStats = { { "active_skill_base_area_of_effect_radius", 10 }, - { "active_skill_energy_generated_+%_final", -80 }, + { "active_skill_energy_generated_+%_final", -50 }, }, stats = { "spell_minimum_base_fire_damage", @@ -15614,52 +18203,53 @@ skills["SolarOrbPlayer"] = { "base_skill_show_average_damage_instead_of_dps", "can_perform_skill_while_moving", "display_statset_hide_usage_stats", + "quality_hide_display_character_panel", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", }, levels = { - [1] = { 4, 6, 13, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 8, 12, 25, 38, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 10, 16, 33, 50, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 13, 20, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 16, 25, 52, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 20, 30, 63, 95, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 24, 36, 76, 114, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 28, 42, 90, 135, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 33, 50, 106, 159, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 39, 58, 124, 186, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 45, 68, 144, 216, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 52, 78, 166, 250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 60, 90, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 104, 220, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 79, 119, 253, 379, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 91, 136, 289, 433, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 104, 155, 330, 495, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 118, 177, 376, 564, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 134, 202, 428, 642, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 153, 229, 487, 730, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 174, 261, 554, 830, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 197, 296, 629, 944, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 224, 337, 715, 1072, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 255, 382, 812, 1218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 289, 434, 922, 1383, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 329, 493, 1047, 1571, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 374, 560, 1190, 1785, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 425, 637, 1352, 2028, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 483, 724, 1537, 2306, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 549, 824, 1749, 2623, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 625, 937, 1990, 2985, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 712, 1067, 2266, 3400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 811, 1216, 2583, 3874, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 925, 1387, 2946, 4418, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1055, 1583, 3362, 5043, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1206, 1808, 3840, 5760, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1378, 2068, 4390, 6586, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1577, 2366, 5024, 7536, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1807, 2710, 5755, 8633, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 5, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8, 12, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 16, 17, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, 27, 28, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 22, 33, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 27, 41, 43, 65, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 33, 50, 53, 79, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 61, 64, 96, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 49, 73, 77, 116, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 57, 85, 90, 135, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 66, 99, 105, 158, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 77, 115, 122, 183, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 89, 134, 141, 212, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 103, 154, 163, 245, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 119, 178, 188, 283, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 137, 205, 217, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 157, 236, 250, 374, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 181, 271, 287, 430, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 208, 311, 330, 494, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 238, 358, 379, 568, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 274, 411, 435, 652, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 314, 472, 499, 749, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 361, 542, 574, 860, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 415, 623, 659, 989, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 477, 716, 758, 1137, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 549, 823, 872, 1307, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 632, 947, 1003, 1505, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 727, 1091, 1155, 1733, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 838, 1258, 1332, 1997, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 967, 1451, 1536, 2304, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1117, 1675, 1774, 2661, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1291, 1936, 2050, 3075, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1494, 2241, 2372, 3559, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1730, 2596, 2748, 4122, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2007, 3010, 3187, 4781, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2330, 3495, 3701, 5551, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2709, 4064, 4303, 6454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3154, 4730, 5009, 7513, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -15669,52 +18259,52 @@ skills["SoulOfferingPlayer"] = { baseTypeName = "Soul Offering", color = 3, description = "Skewer a Skeleton on a bone spike, granting you a powerful Spell damage Buff as long as the spike remains. Does not affect your Minions.\n\nThe bone spike is itself a Minion. If it dies, the effect ends immediately.", - skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Buff] = true, }, + skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Buff] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { { "base_skill_effect_duration", 50 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 33, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 37, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 40, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 44, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 49, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 53, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 59, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 64, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 71, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 78, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 86, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 94, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 103, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 113, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 125, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 137, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 150, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 165, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 181, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 199, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 240, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 264, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 290, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 318, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 350, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 384, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 422, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 463, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 509, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 559, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 614, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 674, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 740, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 813, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 892, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 980, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1076, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1182, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1298, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 32, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 36, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 41, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 45, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 50, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 55, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 60, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 65, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 70, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 76, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 82, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 88, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 94, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 100, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 106, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 113, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 120, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 127, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 134, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 141, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 149, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 157, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 165, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 174, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 182, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 191, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 200, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 210, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 220, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 240, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 251, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 261, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 273, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 284, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 296, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 308, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 321, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 334, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 347, }, }, }, statSets = { [1] = { @@ -15733,7 +18323,7 @@ skills["SoulOfferingPlayer"] = { { "base_number_of_power_offerings_allowed", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_skill_effect_duration", 4000 }, }, stats = { @@ -15787,65 +18377,348 @@ skills["SoulOfferingPlayer"] = { }, } } +skills["SoulrendPlayer"] = { + name = "Soulrend", + baseTypeName = "Soulrend", + fromItem = true, + color = 3, + description = "Fire a Piercing Projectile that seeks out enemies. Enemies hit are inflicted with a Debuff that Hinders them and deals Chaos damage over time for a short duration.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.DamageOverTime] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Unleashable] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.8, + qualityStats = { + { "base_skill_effect_duration", 5 }, + }, + levels = { + [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Projectile", + baseEffectiveness = 1.6000000238419, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "soulrend", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "active_skill_projectile_speed_+%_variation_final", 25 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "base_is_projectile", + "always_pierce", + "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + notMinionStat = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + }, + levels = { + [1] = { 3, 6, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 14, 27, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, 33, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 22, 40, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 26, 49, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 32, 59, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 38, 70, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 44, 82, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 51, 94, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 58, 109, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 67, 125, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 77, 143, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 88, 163, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 100, 186, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 114, 212, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 130, 242, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 148, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 168, 312, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 191, 355, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 217, 403, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 246, 457, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 280, 520, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 318, 590, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 361, 670, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 410, 762, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 466, 866, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 530, 985, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 603, 1120, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 687, 1276, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 783, 1454, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 893, 1658, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1019, 1892, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1163, 2161, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1330, 2470, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1522, 2826, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1743, 3237, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Damage over Time", + baseEffectiveness = 1.6000000238419, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "soulrend", + baseFlags = { + spell = true, + duration = true, + }, + baseMods = { + skill("debuff", true), + }, + constantStats = { + { "active_skill_projectile_speed_+%_variation_final", 25 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 600 }, + { "pvp_skill_dot_attack_time_override_ms", 600 }, + }, + stats = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "base_chaos_damage_to_deal_per_minute", + "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", + "spell_damage_modifiers_apply_to_skill_dot", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + }, + levels = { + [1] = { 0, 0, 605, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 834, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1165, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1554, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 2012, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 2548, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 3176, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 3909, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 4768, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 5777, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 6961, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 8140, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 9481, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 11006, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 12742, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 14720, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 16975, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 19550, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 22491, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 25856, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 29708, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 34123, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 39189, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 45008, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 51701, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 59407, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 68291, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 78546, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 90397, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 104111, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 120002, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 138440, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 159860, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 184780, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 213811, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 247679, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 287245, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 333535, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 387769, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 451405, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["SparkPlayer"] = { name = "Spark", baseTypeName = "Spark", color = 3, - description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire. Consumes a Cold Infusion if possible to fire many sparks in a circle.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "base_projectile_speed_+%", 1.5 }, }, levels = { - [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 6, }, }, + [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 5, }, }, [2] = { critChance = 9, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { critChance = 9, levelRequirement = 6, cost = { Mana = 7, }, }, [4] = { critChance = 9, levelRequirement = 10, cost = { Mana = 8, }, }, [5] = { critChance = 9, levelRequirement = 14, cost = { Mana = 10, }, }, [6] = { critChance = 9, levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 12, }, }, - [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 16, }, }, - [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 18, }, }, + [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 13, }, }, + [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 15, }, }, + [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 19, }, }, [11] = { critChance = 9, levelRequirement = 41, cost = { Mana = 21, }, }, - [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 23, }, }, + [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 24, }, }, [13] = { critChance = 9, levelRequirement = 52, cost = { Mana = 27, }, }, [14] = { critChance = 9, levelRequirement = 58, cost = { Mana = 30, }, }, - [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 34, }, }, - [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 39, }, }, - [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 44, }, }, - [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 50, }, }, - [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 56, }, }, - [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 64, }, }, - [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 72, }, }, - [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 82, }, }, - [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 93, }, }, - [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 105, }, }, - [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 119, }, }, - [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 135, }, }, - [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 153, }, }, - [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 173, }, }, - [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 196, }, }, - [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 222, }, }, - [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 251, }, }, - [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 284, }, }, - [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 321, }, }, - [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 364, }, }, - [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 412, }, }, - [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 466, }, }, - [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 527, }, }, - [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 597, }, }, - [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 676, }, }, - [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 765, }, }, + [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 33, }, }, + [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 37, }, }, + [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 41, }, }, + [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 46, }, }, + [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 51, }, }, + [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 56, }, }, + [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 62, }, }, + [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 68, }, }, + [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 75, }, }, + [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 83, }, }, + [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 91, }, }, + [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 100, }, }, + [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 109, }, }, + [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 120, }, }, + [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 131, }, }, + [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 143, }, }, + [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 157, }, }, + [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 171, }, }, + [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 187, }, }, + [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 204, }, }, + [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 223, }, }, + [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 243, }, }, + [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 264, }, }, + [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 288, }, }, + [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 313, }, }, + [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 341, }, }, }, statSets = { [1] = { - label = "Spark", - baseEffectiveness = 1.1399999856949, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0044999998062849, - statDescriptionScope = "spark", + label = "Base", + baseEffectiveness = 1.2000000476837, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0060999998822808, + statDescriptionScope = "spark_statset_0", + baseFlags = { + spell = true, + projectile = true, + duration = true, + }, + constantStats = { + { "base_skill_effect_duration", 2000 }, + { "spark_pathing_width_bounds", 20 }, + { "damage_hit_effect_index", 1009 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "spark_min_time_between_target_clearing_ms", 660 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "base_number_of_projectiles", + "base_is_projectile", + "projectiles_should_collide_with_flying_monsters", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "can_perform_skill_while_moving", + "active_skill_consumes_a_cold_infusion", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 1, 10, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 1, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 17, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 21, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 26, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 32, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 38, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, 45, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, 53, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3, 61, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 4, 71, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 4, 81, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 93, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 6, 106, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 6, 120, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7, 135, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 8, 153, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 9, 172, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 10, 193, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 11, 216, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 13, 242, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 14, 271, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 16, 303, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 18, 338, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 20, 378, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 22, 421, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 25, 470, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 28, 524, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 31, 584, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 34, 651, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 38, 726, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 43, 809, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 47, 902, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 53, 1006, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 59, 1122, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 66, 1252, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 74, 1398, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 82, 1561, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 92, 1744, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 103, 1949, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Cold-Infused", + baseEffectiveness = 2.4000000953674, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0060999998822808, + statDescriptionScope = "spark_statset_1", baseFlags = { spell = true, projectile = true, @@ -15857,12 +18730,18 @@ skills["SparkPlayer"] = { { "damage_hit_effect_index", 1009 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "spark_min_time_between_target_clearing_ms", 660 }, + { "base_spell_cast_time_ms", 500 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "base_number_of_projectiles", "base_number_of_projectiles", "base_is_projectile", "projectiles_should_collide_with_flying_monsters", @@ -15870,52 +18749,56 @@ skills["SparkPlayer"] = { "projectile_uses_contact_direction", "check_for_targets_between_initiator_and_projectile_source", "can_perform_skill_while_moving", + "active_skill_consumes_a_cold_infusion", + "projectiles_nova", }, notMinionStat = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", }, levels = { - [1] = { 1, 8, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 1, 11, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 16, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 20, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1, 25, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, 31, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, 37, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 2, 43, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 3, 51, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 3, 59, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 4, 67, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 4, 77, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 5, 87, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 5, 98, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 6, 110, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 6, 123, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7, 138, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 8, 153, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 9, 170, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 10, 189, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 11, 209, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 12, 231, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 13, 255, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 15, 281, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 16, 310, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 18, 341, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 20, 376, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 22, 413, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 24, 454, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 26, 498, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 29, 547, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 32, 600, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 35, 659, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 38, 723, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 42, 793, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 46, 870, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 50, 954, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 55, 1047, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 60, 1148, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 66, 1260, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 1, 10, 7, 11, 0, 12, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 1, 13, 10, 15, 0, 12, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1, 17, 14, 20, 0, 12, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1, 21, 17, 26, 0, 12, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 1, 26, 22, 33, 0, 13, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 2, 32, 27, 40, 0, 13, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 2, 38, 32, 48, 0, 13, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 2, 45, 38, 57, 0, 13, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 3, 53, 44, 67, 0, 14, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 3, 61, 52, 78, 0, 14, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 4, 71, 60, 89, 0, 14, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 4, 81, 68, 103, 0, 14, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 5, 93, 78, 117, 0, 15, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 6, 106, 89, 134, 0, 15, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 6, 120, 101, 151, 0, 15, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 7, 135, 114, 171, 0, 15, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 8, 153, 129, 193, 0, 16, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 9, 172, 145, 217, 0, 16, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 10, 193, 163, 244, 0, 16, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 11, 216, 182, 273, 0, 16, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 13, 242, 204, 306, 0, 17, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 14, 271, 228, 343, 0, 17, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 16, 303, 255, 383, 0, 17, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 18, 338, 285, 428, 0, 17, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 20, 378, 318, 477, 0, 18, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 22, 421, 355, 532, 0, 18, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 25, 470, 396, 594, 0, 18, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 28, 524, 441, 662, 0, 18, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 31, 584, 492, 738, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 34, 651, 548, 822, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 38, 726, 611, 917, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 43, 809, 681, 1022, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 47, 902, 760, 1139, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 53, 1006, 847, 1271, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 59, 1122, 945, 1417, 0, 19, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 66, 1252, 1054, 1582, 0, 20, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 74, 1398, 1177, 1765, 0, 20, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 82, 1561, 1314, 1972, 0, 20, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 92, 1744, 1469, 2203, 0, 20, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 103, 1949, 1642, 2462, 0, 20, critChance = 2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -15927,11 +18810,11 @@ skills["SummonSpectrePlayer"] = { }, color = 3, description = "Summon the spirit of the bound monster as a Reviving Minion.", - skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, [SkillType.Barrageable] = true, [SkillType.Cascadable] = true, }, castTime = 0.85, qualityStats = { - { "base_reservation_+%", -0.5 }, + { "active_skill_minion_damage_+%_final", 1 }, }, levels = { [1] = { spiritReservationFlat = 50, levelRequirement = 0, }, @@ -16047,10 +18930,9 @@ skills["StaggeringPalmPlayer"] = { name = "Staggering Palm", baseTypeName = "Staggering Palm", color = 3, - description = "Dash to an enemy and Strike them with an Unarmed Attack. Heavy Stunning an enemy with this Skill grants you a Buff that causes your Quarterstaff and Unarmed Attacks to also fire Projectiles for a short duration. Enemies which are Primed for Stun will instantly be Heavily Stunned. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.", - skillTypes = { [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Palm] = true, [SkillType.Buff] = true, }, + description = "Dash to an enemy and Strike them, instantly Heavily Stunning enemies which are Primed for Stun. Heavy Stunning an enemy with this Skill grants you a Buff that causes your Quarterstaff Attacks to also fire Projectiles for a short duration. Heavy Stunning additional enemies adds to the Buff's duration.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Palm] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, }, weaponTypes = { - ["None"] = true, ["Staff"] = true, }, castTime = 1, @@ -16059,50 +18941,49 @@ skills["StaggeringPalmPlayer"] = { levels = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 16, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 18, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 20, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 22, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 27, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 30, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 33, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 13, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 18, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 20, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 22, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 24, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 26, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 29, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 31, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 34, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 37, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 41, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 45, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 50, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 56, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 62, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 69, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 76, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 84, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 94, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 104, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 115, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 128, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 141, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 157, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 174, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 193, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 213, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 237, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 262, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 291, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 322, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 357, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 396, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 40, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 43, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 47, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 51, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 55, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 59, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 63, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 68, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 73, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 78, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 84, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 90, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 96, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 103, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 110, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 118, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 126, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 134, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 143, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 153, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 163, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 173, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 184, }, }, }, statSets = { [1] = { label = "Staggering Palm", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "wind_palm", baseFlags = { attack = true, @@ -16112,71 +18993,67 @@ skills["StaggeringPalmPlayer"] = { constantStats = { { "melee_conditional_step_distance", 10 }, { "base_melee_dash_range", 65 }, - { "additional_base_critical_strike_chance", 700 }, + { "base_skill_effect_duration", 7500 }, + { "staggering_palm_buff_max_duration_ms", 30000 }, }, stats = { - "attack_minimum_added_physical_damage", - "attack_maximum_added_physical_damage", - "base_skill_effect_duration", "global_always_hit", "is_area_damage", "active_skill_show_crush_range", "crushing_blow", - }, - notMinionStat = { - "base_skill_effect_duration", + "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 6, 9, 6000, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, 6200, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, 6400, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, 6600, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, 6800, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, 7000, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, 7200, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, 7400, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, 7600, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, 7800, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, 8000, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, 8200, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, 8400, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, 8600, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, 8800, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, 9000, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, 9200, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, 9400, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, 9600, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, 9800, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, 10000, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, 10200, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, 10400, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, 10600, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, 10800, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, 11000, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, 11200, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, 11400, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, 11600, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, 11800, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, 12000, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, 12200, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, 12400, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, 12600, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, 12800, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, 13000, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, 13200, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, 13400, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, 13600, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, 13800, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } skills["StaggeringPalmProjectilePlayer"] = { - name = "Wind Blast (Quarterstaff)", + name = "Projectile", hidden = true, - skillTypes = { [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, [SkillType.QuarterstaffSkill] = true, }, weaponTypes = { - ["None"] = true, ["Staff"] = true, }, castTime = 1, @@ -16184,50 +19061,50 @@ skills["StaggeringPalmProjectilePlayer"] = { { "attacks_chance_to_blind_on_hit_%", 2 }, }, levels = { - [1] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.63, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.68, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.73, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.79, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.83, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.92, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.97, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.01, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.06, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.12, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.17, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.23, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.29, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.36, levelRequirement = 0, }, - [19] = { baseMultiplier = 1.43, levelRequirement = 0, }, - [20] = { baseMultiplier = 1.5, levelRequirement = 0, }, - [21] = { baseMultiplier = 1.57, levelRequirement = 0, }, - [22] = { baseMultiplier = 1.65, levelRequirement = 0, }, - [23] = { baseMultiplier = 1.73, levelRequirement = 0, }, - [24] = { baseMultiplier = 1.82, levelRequirement = 0, }, - [25] = { baseMultiplier = 1.91, levelRequirement = 0, }, - [26] = { baseMultiplier = 2.01, levelRequirement = 0, }, - [27] = { baseMultiplier = 2.11, levelRequirement = 0, }, - [28] = { baseMultiplier = 2.21, levelRequirement = 0, }, - [29] = { baseMultiplier = 2.32, levelRequirement = 0, }, - [30] = { baseMultiplier = 2.44, levelRequirement = 0, }, - [31] = { baseMultiplier = 2.56, levelRequirement = 0, }, - [32] = { baseMultiplier = 2.69, levelRequirement = 0, }, - [33] = { baseMultiplier = 2.82, levelRequirement = 0, }, - [34] = { baseMultiplier = 2.96, levelRequirement = 0, }, - [35] = { baseMultiplier = 3.11, levelRequirement = 0, }, - [36] = { baseMultiplier = 3.27, levelRequirement = 0, }, - [37] = { baseMultiplier = 3.43, levelRequirement = 0, }, - [38] = { baseMultiplier = 3.6, levelRequirement = 0, }, - [39] = { baseMultiplier = 3.78, levelRequirement = 0, }, - [40] = { baseMultiplier = 3.97, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.5, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.55, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.6, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.66, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.71, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.77, levelRequirement = 0, }, + [7] = { baseMultiplier = 0.82, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.87, levelRequirement = 0, }, + [9] = { baseMultiplier = 0.91, levelRequirement = 0, }, + [10] = { baseMultiplier = 0.96, levelRequirement = 0, }, + [11] = { baseMultiplier = 1.01, levelRequirement = 0, }, + [12] = { baseMultiplier = 1.06, levelRequirement = 0, }, + [13] = { baseMultiplier = 1.11, levelRequirement = 0, }, + [14] = { baseMultiplier = 1.16, levelRequirement = 0, }, + [15] = { baseMultiplier = 1.22, levelRequirement = 0, }, + [16] = { baseMultiplier = 1.28, levelRequirement = 0, }, + [17] = { baseMultiplier = 1.35, levelRequirement = 0, }, + [18] = { baseMultiplier = 1.41, levelRequirement = 0, }, + [19] = { baseMultiplier = 1.49, levelRequirement = 0, }, + [20] = { baseMultiplier = 1.56, levelRequirement = 0, }, + [21] = { baseMultiplier = 1.64, levelRequirement = 0, }, + [22] = { baseMultiplier = 1.72, levelRequirement = 0, }, + [23] = { baseMultiplier = 1.81, levelRequirement = 0, }, + [24] = { baseMultiplier = 1.9, levelRequirement = 0, }, + [25] = { baseMultiplier = 1.99, levelRequirement = 0, }, + [26] = { baseMultiplier = 2.09, levelRequirement = 0, }, + [27] = { baseMultiplier = 2.19, levelRequirement = 0, }, + [28] = { baseMultiplier = 2.3, levelRequirement = 0, }, + [29] = { baseMultiplier = 2.42, levelRequirement = 0, }, + [30] = { baseMultiplier = 2.54, levelRequirement = 0, }, + [31] = { baseMultiplier = 2.67, levelRequirement = 0, }, + [32] = { baseMultiplier = 2.8, levelRequirement = 0, }, + [33] = { baseMultiplier = 2.94, levelRequirement = 0, }, + [34] = { baseMultiplier = 3.09, levelRequirement = 0, }, + [35] = { baseMultiplier = 3.24, levelRequirement = 0, }, + [36] = { baseMultiplier = 3.4, levelRequirement = 0, }, + [37] = { baseMultiplier = 3.57, levelRequirement = 0, }, + [38] = { baseMultiplier = 3.75, levelRequirement = 0, }, + [39] = { baseMultiplier = 3.94, levelRequirement = 0, }, + [40] = { baseMultiplier = 4.14, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Projectile (Quarterstaff)", + label = "Projectile", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { @@ -16243,6 +19120,7 @@ skills["StaggeringPalmProjectilePlayer"] = { "triggered_by_staggering_palm_on_hit_with_other_skill", "visual_hit_effect_physical_is_wind", "display_statset_hide_usage_stats", + "base_skill_show_average_damage_instead_of_dps", }, levels = { [1] = { actorLevel = 1, }, @@ -16289,135 +19167,12 @@ skills["StaggeringPalmProjectilePlayer"] = { }, } } -skills["StaggeringPalmUnarmedProjectilePlayer"] = { - name = "Wind Blast (Unarmed)", - hidden = true, - skillTypes = { [SkillType.UseGlobalStats] = true, [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, }, - weaponTypes = { - ["None"] = true, - ["Staff"] = true, - }, - castTime = 1, - qualityStats = { - { "attacks_chance_to_blind_on_hit_%", 2 }, - }, - levels = { - [1] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.63, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.68, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.73, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.79, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.83, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.92, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.97, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.01, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.06, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.12, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.17, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.23, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.29, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.36, levelRequirement = 0, }, - [19] = { baseMultiplier = 1.43, levelRequirement = 0, }, - [20] = { baseMultiplier = 1.5, levelRequirement = 0, }, - [21] = { baseMultiplier = 1.57, levelRequirement = 0, }, - [22] = { baseMultiplier = 1.65, levelRequirement = 0, }, - [23] = { baseMultiplier = 1.73, levelRequirement = 0, }, - [24] = { baseMultiplier = 1.82, levelRequirement = 0, }, - [25] = { baseMultiplier = 1.91, levelRequirement = 0, }, - [26] = { baseMultiplier = 2.01, levelRequirement = 0, }, - [27] = { baseMultiplier = 2.11, levelRequirement = 0, }, - [28] = { baseMultiplier = 2.21, levelRequirement = 0, }, - [29] = { baseMultiplier = 2.32, levelRequirement = 0, }, - [30] = { baseMultiplier = 2.44, levelRequirement = 0, }, - [31] = { baseMultiplier = 2.56, levelRequirement = 0, }, - [32] = { baseMultiplier = 2.69, levelRequirement = 0, }, - [33] = { baseMultiplier = 2.82, levelRequirement = 0, }, - [34] = { baseMultiplier = 2.96, levelRequirement = 0, }, - [35] = { baseMultiplier = 3.11, levelRequirement = 0, }, - [36] = { baseMultiplier = 3.27, levelRequirement = 0, }, - [37] = { baseMultiplier = 3.43, levelRequirement = 0, }, - [38] = { baseMultiplier = 3.6, levelRequirement = 0, }, - [39] = { baseMultiplier = 3.78, levelRequirement = 0, }, - [40] = { baseMultiplier = 3.97, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Projectile (Unarmed)", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - attack = true, - projectile = true, - unarmed = true, - }, - constantStats = { - { "base_number_of_projectiles", 1 }, - { "additional_base_critical_strike_chance", 700 }, - }, - stats = { - "attack_minimum_added_physical_damage", - "attack_maximum_added_physical_damage", - "base_is_projectile", - "always_pierce", - "triggered_by_staggering_palm_on_hit_with_other_skill", - "visual_hit_effect_physical_is_wind", - "display_statset_hide_usage_stats", - }, - levels = { - [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} skills["StormWavePlayer"] = { name = "Storm Wave", baseTypeName = "Storm Wave", color = 3, description = "Sweep your Quarterstaff, projecting a bolt of Lightning through the ground in a long fissure ahead of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesFissure] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -16429,43 +19184,43 @@ skills["StormWavePlayer"] = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 8, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 9, }, }, [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 10, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 13, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 17, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 23, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 25, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 28, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 31, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 35, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 38, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 12, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 13, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 15, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 17, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 19, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 21, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 23, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 28, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 30, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 33, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 36, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 39, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 43, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 47, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 53, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 58, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 65, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 72, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 79, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 88, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 98, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 108, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 120, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 133, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 148, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 164, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 181, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 201, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 223, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 247, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 274, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 303, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 336, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 372, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 413, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 457, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 46, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 50, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 54, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 59, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 63, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 68, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 73, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 79, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 85, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 91, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 97, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 104, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 112, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 119, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 128, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 136, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 145, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 155, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 166, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 176, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 188, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 200, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 213, }, }, }, statSets = { [1] = { @@ -16480,10 +19235,11 @@ skills["StormWavePlayer"] = { constantStats = { { "active_skill_base_area_of_effect_radius", 80 }, { "active_skill_base_secondary_area_of_effect_radius", 10 }, + { "active_skill_base_tertiary_area_of_effect_radius", 10 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_shock_chance_+%_final", 100 }, }, stats = { @@ -16541,55 +19297,55 @@ skills["TempestBellPlayer"] = { baseTypeName = "Tempest Bell", color = 3, description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to cause the Bell on your staff to grow to massive size as you drop it on the ground. The Bell damages enemies on impact and can be Hit by your skills, creating a damaging shockwave. Elemental Ailments applied to the Bell cause its shockwaves to deal extra damage of the corresponding type, and Hits which would have caused Knockback increase the area of effect of the shockwaves.", - skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Melee] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.Nova] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SupportedByFountains] = true, [SkillType.HasUsageCondition] = true, }, + skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Melee] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SupportedByFountains] = true, [SkillType.HasUsageCondition] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.ObjectDurability] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "tempest_bell_hit_limit", 0.1 }, + { "tempest_bell_damage_+%_final_per_time_hit", 0.15 }, }, levels = { - [1] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 0, cost = { Mana = 15, }, }, + [1] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 0, cost = { Mana = 14, }, }, [2] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 22, cost = { Mana = 27, }, }, - [8] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 26, cost = { Mana = 30, }, }, - [9] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 31, cost = { Mana = 34, }, }, - [10] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 36, cost = { Mana = 37, }, }, - [11] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 41, cost = { Mana = 42, }, }, - [12] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 46, cost = { Mana = 46, }, }, - [13] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 52, cost = { Mana = 51, }, }, - [14] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 58, cost = { Mana = 57, }, }, - [15] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 64, cost = { Mana = 63, }, }, - [16] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 66, cost = { Mana = 70, }, }, + [3] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 10, cost = { Mana = 21, }, }, + [5] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 14, cost = { Mana = 24, }, }, + [6] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 18, cost = { Mana = 27, }, }, + [7] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 22, cost = { Mana = 31, }, }, + [8] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 46, cost = { Mana = 50, }, }, + [13] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 52, cost = { Mana = 55, }, }, + [14] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 58, cost = { Mana = 60, }, }, + [15] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 64, cost = { Mana = 66, }, }, + [16] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 66, cost = { Mana = 71, }, }, [17] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 72, cost = { Mana = 77, }, }, - [18] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 78, cost = { Mana = 86, }, }, - [19] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 84, cost = { Mana = 95, }, }, - [20] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 105, }, }, - [21] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 117, }, }, - [22] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 130, }, }, - [23] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 144, }, }, - [24] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 159, }, }, - [25] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 177, }, }, - [26] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 196, }, }, - [27] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 217, }, }, - [28] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 240, }, }, - [29] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 266, }, }, - [30] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 295, }, }, - [31] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 327, }, }, - [32] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 363, }, }, - [33] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 402, }, }, - [34] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 445, }, }, - [35] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 494, }, }, - [36] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 547, }, }, - [37] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 606, }, }, - [38] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 672, }, }, - [39] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 744, }, }, - [40] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 825, }, }, + [18] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 78, cost = { Mana = 84, }, }, + [19] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 84, cost = { Mana = 91, }, }, + [20] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 98, }, }, + [21] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 106, }, }, + [22] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 114, }, }, + [23] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 123, }, }, + [24] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 132, }, }, + [25] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 142, }, }, + [26] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 153, }, }, + [27] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 164, }, }, + [28] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 176, }, }, + [29] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 188, }, }, + [30] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 201, }, }, + [31] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 215, }, }, + [32] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 230, }, }, + [33] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 246, }, }, + [34] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 263, }, }, + [35] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 280, }, }, + [36] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 299, }, }, + [37] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 318, }, }, + [38] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 339, }, }, + [39] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 361, }, }, + [40] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 384, }, }, }, statSets = { [1] = { @@ -16813,7 +19569,7 @@ skills["TempestFlurryPlayer"] = { baseTypeName = "Tempest Flurry", color = 3, description = "Perform a series of aggressive Strikes. When used in quick succession, the third use Strikes three times, and the fourth use performs a Final Strike that calls down a powerful Shocking bolt.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -16822,117 +19578,55 @@ skills["TempestFlurryPlayer"] = { { "melee_range_+", 0.2 }, }, levels = { - [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 5, }, }, - [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, }, - [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 6, }, }, - [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, }, - [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 8, }, }, - [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 9, }, }, - [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 10, }, }, - [8] = { attackSpeedMultiplier = 40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 11, }, }, - [9] = { attackSpeedMultiplier = 40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 12, }, }, - [10] = { attackSpeedMultiplier = 40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 14, }, }, - [11] = { attackSpeedMultiplier = 40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 15, }, }, - [12] = { attackSpeedMultiplier = 40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 17, }, }, - [13] = { attackSpeedMultiplier = 40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 19, }, }, - [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 21, }, }, - [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 23, }, }, - [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 26, }, }, - [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 29, }, }, - [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 32, }, }, - [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 36, }, }, - [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 39, }, }, - [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 44, }, }, - [22] = { attackSpeedMultiplier = 40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 49, }, }, - [23] = { attackSpeedMultiplier = 40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 54, }, }, - [24] = { attackSpeedMultiplier = 40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 60, }, }, - [25] = { attackSpeedMultiplier = 40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 66, }, }, - [26] = { attackSpeedMultiplier = 40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 73, }, }, - [27] = { attackSpeedMultiplier = 40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 81, }, }, - [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 90, }, }, - [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 100, }, }, - [30] = { attackSpeedMultiplier = 40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 111, }, }, - [31] = { attackSpeedMultiplier = 40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 123, }, }, - [32] = { attackSpeedMultiplier = 40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 136, }, }, - [33] = { attackSpeedMultiplier = 40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 151, }, }, - [34] = { attackSpeedMultiplier = 40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 168, }, }, - [35] = { attackSpeedMultiplier = 40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 186, }, }, - [36] = { attackSpeedMultiplier = 40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 206, }, }, - [37] = { attackSpeedMultiplier = 40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 228, }, }, - [38] = { attackSpeedMultiplier = 40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 253, }, }, - [39] = { attackSpeedMultiplier = 40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 280, }, }, - [40] = { attackSpeedMultiplier = 40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 311, }, }, + [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.49, levelRequirement = 3, cost = { Mana = 6, }, }, + [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 7, }, }, + [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.59, levelRequirement = 10, cost = { Mana = 8, }, }, + [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.69, levelRequirement = 18, cost = { Mana = 10, }, }, + [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.74, levelRequirement = 22, cost = { Mana = 11, }, }, + [8] = { attackSpeedMultiplier = 40, baseMultiplier = 0.78, levelRequirement = 26, cost = { Mana = 13, }, }, + [9] = { attackSpeedMultiplier = 40, baseMultiplier = 0.82, levelRequirement = 31, cost = { Mana = 14, }, }, + [10] = { attackSpeedMultiplier = 40, baseMultiplier = 0.86, levelRequirement = 36, cost = { Mana = 15, }, }, + [11] = { attackSpeedMultiplier = 40, baseMultiplier = 0.9, levelRequirement = 41, cost = { Mana = 17, }, }, + [12] = { attackSpeedMultiplier = 40, baseMultiplier = 0.95, levelRequirement = 46, cost = { Mana = 19, }, }, + [13] = { attackSpeedMultiplier = 40, levelRequirement = 52, cost = { Mana = 20, }, }, + [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.05, levelRequirement = 58, cost = { Mana = 22, }, }, + [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.1, levelRequirement = 64, cost = { Mana = 24, }, }, + [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 27, }, }, + [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.21, levelRequirement = 72, cost = { Mana = 29, }, }, + [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.27, levelRequirement = 78, cost = { Mana = 31, }, }, + [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.34, levelRequirement = 84, cost = { Mana = 34, }, }, + [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 37, }, }, + [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 40, }, }, + [22] = { attackSpeedMultiplier = 40, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 43, }, }, + [23] = { attackSpeedMultiplier = 40, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 46, }, }, + [24] = { attackSpeedMultiplier = 40, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 50, }, }, + [25] = { attackSpeedMultiplier = 40, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 53, }, }, + [26] = { attackSpeedMultiplier = 40, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 57, }, }, + [27] = { attackSpeedMultiplier = 40, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 61, }, }, + [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 66, }, }, + [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 71, }, }, + [30] = { attackSpeedMultiplier = 40, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 76, }, }, + [31] = { attackSpeedMultiplier = 40, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 81, }, }, + [32] = { attackSpeedMultiplier = 40, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 86, }, }, + [33] = { attackSpeedMultiplier = 40, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 92, }, }, + [34] = { attackSpeedMultiplier = 40, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 99, }, }, + [35] = { attackSpeedMultiplier = 40, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 105, }, }, + [36] = { attackSpeedMultiplier = 40, baseMultiplier = 3.06, levelRequirement = 90, cost = { Mana = 112, }, }, + [37] = { attackSpeedMultiplier = 40, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 120, }, }, + [38] = { attackSpeedMultiplier = 40, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 128, }, }, + [39] = { attackSpeedMultiplier = 40, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 136, }, }, + [40] = { attackSpeedMultiplier = 40, baseMultiplier = 3.72, levelRequirement = 90, cost = { Mana = 145, }, }, }, statSets = { - [1] = { - label = "Normal Strikes", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - attack = true, - area = true, - melee = true, - }, - constantStats = { - { "statset_index_for_third_animation_combo_index", 1 }, - { "statset_index_for_final_animation_combo_index", 2 }, - { "attack_maximum_action_distance_+", 5 }, - { "melee_range_+", 4 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, - { "active_skill_override_turn_duration_ms", 200 }, - }, - stats = { - "is_area_damage", - }, - levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Third Strike", + [1] = { + label = "Normal Strikes", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { attack = true, + area = true, melee = true, }, constantStats = { @@ -16942,10 +19636,10 @@ skills["TempestFlurryPlayer"] = { { "melee_range_+", 4 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, { "active_skill_override_turn_duration_ms", 200 }, - { "supplementary_stat_container_attack_speed_+%_final", -35 }, }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -16990,6 +19684,70 @@ skills["TempestFlurryPlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, + [2] = { + label = "Third Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + melee = true, + }, + constantStats = { + { "statset_index_for_third_animation_combo_index", 1 }, + { "statset_index_for_final_animation_combo_index", 2 }, + { "attack_maximum_action_distance_+", 5 }, + { "melee_range_+", 4 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, + { "active_skill_override_turn_duration_ms", 200 }, + { "supplementary_stat_container_attack_speed_+%_final", -35 }, + }, + stats = { + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { baseMultiplier = 0.9, actorLevel = 1, }, + [2] = { baseMultiplier = 0.9, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.9, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.9, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.9, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.9, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.9, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.9, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.9, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.9, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 0.9, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 0.9, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 0.9, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 0.9, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 0.9, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 0.9, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 0.9, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 0.9, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 0.9, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 0.9, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 0.9, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 0.9, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 0.9, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 0.9, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 0.9, actorLevel = 136.875, }, + [26] = { baseMultiplier = 0.9, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 0.9, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 0.9, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 0.9, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 0.9, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 0.9, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 0.9, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 0.9, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 0.9, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 0.9, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 0.9, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 0.9, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 0.9, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 0.9, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 0.9, actorLevel = 288.29998779297, }, + }, + }, [3] = { label = "Fourth Strike", incrementalEffectiveness = 0.054999999701977, @@ -17009,52 +19767,54 @@ skills["TempestFlurryPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, { "active_skill_shock_chance_+%_final", 100 }, { "melee_range_+", 2 }, + { "active_skill_shock_effect_+%_final", 100 }, }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_is_final_strike", }, levels = { - [1] = { baseMultiplier = 1.5, actorLevel = 1, }, - [2] = { baseMultiplier = 1.65, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.82, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.98, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 2.14, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 2.3, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 2.46, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 2.61, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.74, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.87, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 3.02, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 3.17, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 3.32, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 3.49, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 3.67, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 3.85, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 4.04, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 4.24, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 4.46, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 4.68, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 4.91, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 5.16, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 5.42, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 5.69, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 5.97, actorLevel = 136.875, }, - [26] = { baseMultiplier = 6.27, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 6.58, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 6.91, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 7.26, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 7.62, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 8, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 8.4, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 8.82, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 9.26, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 9.73, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 10.21, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 10.72, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 11.26, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 11.82, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 12.41, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 1.35, actorLevel = 1, }, + [2] = { baseMultiplier = 1.49, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.63, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.78, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.92, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 2.07, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 2.21, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 2.34, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 2.46, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.58, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 2.71, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 2.85, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 2.99, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 3.14, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 3.3, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 3.46, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 3.64, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 3.82, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 4.01, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 4.21, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 4.42, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 4.64, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 4.87, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 5.12, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 5.37, actorLevel = 136.875, }, + [26] = { baseMultiplier = 5.64, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 5.92, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 6.22, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 6.53, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 6.86, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 7.2, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 7.56, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 7.94, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 8.34, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 8.75, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 9.19, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 9.65, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 10.13, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 10.64, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 11.17, actorLevel = 288.29998779297, }, }, }, } @@ -17064,52 +19824,52 @@ skills["TemporalChainsPlayer"] = { baseTypeName = "Temporal Chains", color = 3, description = "Curse all enemies in an area, Slowing them and making other effects on them expire more slowly.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "curse_effect_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, }, statSets = { [1] = { @@ -17125,13 +19885,14 @@ skills["TemporalChainsPlayer"] = { { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_skill_effect_duration", "active_skill_base_area_of_effect_radius", "base_skill_debuff_action_speed_+%_final_to_inflict", "base_temporal_chains_other_buff_time_passed_+%_to_apply", + "skill_curses_cannot_apply_to_targets_above_level", "base_deal_no_damage", "can_perform_skill_while_moving", }, @@ -17139,46 +19900,176 @@ skills["TemporalChainsPlayer"] = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 15, -22, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, -22, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, -22, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, -23, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, -23, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, -23, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, -24, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, -24, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, -24, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, -25, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, -25, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, -25, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, -26, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, -26, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, -26, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, -27, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, -27, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, -27, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, -28, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, -28, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 32, -28, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 33, -29, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 34, -29, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 34, -29, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 35, -30, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 36, -30, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 37, -30, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 38, -31, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 39, -31, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 39, -31, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 40, -32, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 40, -32, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 41, -32, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 41, -33, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 42, -33, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 42, -33, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 42, -34, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 43, -34, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 43, -34, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 44, -35, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 15, -40, -25, 20, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, -41, -25, 23, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, -42, -25, 25, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, -43, -25, 29, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, -44, -25, 32, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, -45, -25, 36, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, -46, -25, 39, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, -47, -25, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, -48, -25, 47, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, -49, -25, 52, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, -50, -25, 56, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, -51, -25, 61, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, -52, -25, 66, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, -53, -25, 72, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, -54, -25, 74, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, -55, -25, 76, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, -56, -25, 78, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, -57, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, -58, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, -59, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, -60, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, -61, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, -62, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, -63, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, -64, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, -65, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, -66, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, -67, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, -68, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, -69, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, -69, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, -70, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, -70, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, -71, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, -71, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, -72, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, -72, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, -73, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, -73, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, -74, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["TrinityPlayer"] = { + name = "Trinity", + baseTypeName = "Trinity", + color = 3, + description = "Become attuned to all Elements building up Fire, Cold and Lightning Resonance based off the highest Elemental Damage type dealt by your Hits. Your Elemental Damage is enhanced the more Resonance of any type you have.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, }, + castTime = 0, + qualityStats = { + { "trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant", 0.75 }, + }, + levels = { + [1] = { spiritReservationFlat = 100, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 100, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 100, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 100, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 100, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 100, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 100, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 100, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 100, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 100, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 100, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 100, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 100, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 100, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 100, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 100, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 100, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 100, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 100, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 100, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 100, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Trinity", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + statMap = { + ["trinity_damage_+%_final_to_grant_per_50_resonance"] = { + mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ResonanceCount", div = 30 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), + }, + ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"] = { + mod("Speed", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "ResonanceCount", threshold = 250 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), + }, + ["quality_display_trinity_is_gem"] = { + -- Display only + }, + ["trinity_loss_per_hit"] = { + -- Display only + }, + }, + baseFlags = { + buff = true, + duration = true, + }, + constantStats = { + { "trinity_resonance_decay_delay_ms", 8000 }, + { "trinity_resonance_loss_per_second", 10 }, + { "trinity_loss_per_hit", 3 }, + }, + stats = { + "trinity_damage_+%_final_to_grant_per_50_resonance", + "trinity_resonance_to_grant", + "quality_display_trinity_is_gem", + }, + levels = { + [1] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 2, 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3, 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 3, 11, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 4, 11, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 4, 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 5, 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 5, 13, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 6, 13, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -17190,61 +20081,62 @@ skills["UnearthPlayer"] = { "UnearthBoneConstruct", }, color = 3, - description = "Raise spikes of bone from the earth in front of you, damaging enemies. The bones of Corpses in the area are ripped out and reassembled into short-lived Bone Construct Minions that fight for you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Minion] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.Triggerable] = true, }, + description = "Raise spikes of bone from the earth in front of you, damaging enemies. The bones of Corpses and dead Reviving Minions in the area are ripped out and reassembled into short-lived Bone Construct Minions that fight for you. Larger Corpses create more than one Bone Construct.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Minion] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, }, castTime = 0.95, qualityStats = { { "base_skill_effect_duration", 250 }, + { "minion_movement_speed_+%", 2.5 }, }, levels = { - [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 8, }, }, - [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 9, }, }, + [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 7, }, }, + [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 8, }, }, [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 10, }, }, [4] = { critChance = 15, levelRequirement = 10, cost = { Mana = 12, }, }, [5] = { critChance = 15, levelRequirement = 14, cost = { Mana = 13, }, }, [6] = { critChance = 15, levelRequirement = 18, cost = { Mana = 15, }, }, - [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 22, }, }, - [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 25, }, }, - [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 28, }, }, - [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 32, }, }, - [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 36, }, }, + [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 18, }, }, + [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 20, }, }, + [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 23, }, }, + [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 29, }, }, + [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 33, }, }, + [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 37, }, }, [14] = { critChance = 15, levelRequirement = 58, cost = { Mana = 41, }, }, - [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 47, }, }, - [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 53, }, }, - [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 60, }, }, - [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 68, }, }, - [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 77, }, }, - [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 87, }, }, - [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 99, }, }, - [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 112, }, }, - [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 126, }, }, - [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 143, }, }, - [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 162, }, }, - [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 183, }, }, - [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 208, }, }, - [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 235, }, }, - [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 266, }, }, - [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 301, }, }, - [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 341, }, }, - [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 386, }, }, - [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 437, }, }, - [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 494, }, }, - [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 559, }, }, - [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 633, }, }, - [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 716, }, }, - [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 811, }, }, - [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 918, }, }, - [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 1039, }, }, + [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 46, }, }, + [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 51, }, }, + [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 56, }, }, + [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 62, }, }, + [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 69, }, }, + [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 76, }, }, + [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 84, }, }, + [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 93, }, }, + [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 102, }, }, + [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 112, }, }, + [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 123, }, }, + [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 135, }, }, + [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 149, }, }, + [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 163, }, }, + [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 178, }, }, + [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 195, }, }, + [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 213, }, }, + [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 233, }, }, + [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 254, }, }, + [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 277, }, }, + [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 302, }, }, + [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 330, }, }, + [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 359, }, }, + [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 391, }, }, + [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 425, }, }, + [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 463, }, }, }, statSets = { [1] = { label = "Unearth", baseEffectiveness = 1.2599999904633, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "bone_cone", baseFlags = { spell = true, @@ -17258,60 +20150,64 @@ skills["UnearthPlayer"] = { { "base_skill_effect_duration", 15000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "minion_aggro_radius_+%", 300 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", "base_number_of_skeletal_constructs_allowed", + "minion_aggro_radius_+%", "can_perform_skill_while_moving", "quality_display_base_skill_effect_duration_is_gem", + "is_area_damage", }, notMinionStat = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", }, levels = { - [1] = { 4, 6, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 5, 8, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 7, 11, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 10, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, 22, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, 27, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, 32, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 25, 38, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 30, 44, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 34, 51, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 40, 59, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 45, 68, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 52, 78, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 59, 89, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 67, 101, 18, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 76, 114, 18, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 86, 129, 18, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 97, 146, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 110, 164, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 123, 185, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 139, 208, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 156, 234, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 175, 263, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 197, 295, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 221, 332, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 278, 417, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 312, 468, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 350, 526, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 393, 590, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 442, 662, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 496, 744, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 557, 835, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 626, 939, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 704, 1056, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 792, 1188, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 891, 1337, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1004, 1506, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1131, 1697, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 8, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7, 11, 8, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, 14, 10, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, 18, 10, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 14, 22, 10, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, 26, 12, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, 31, 12, 40, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 25, 37, 12, 45, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 29, 44, 14, 50, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 34, 51, 14, 55, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 40, 59, 14, 60, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 46, 69, 16, 65, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 53, 79, 16, 70, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 60, 91, 16, 75, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 69, 104, 18, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 79, 119, 18, 85, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 90, 135, 18, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 103, 154, 20, 95, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 117, 176, 20, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 133, 200, 20, 105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 151, 227, 22, 110, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 172, 258, 22, 115, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 195, 293, 22, 120, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 222, 333, 24, 125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 252, 378, 24, 130, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 286, 429, 24, 135, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 325, 487, 26, 140, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 369, 554, 26, 145, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 420, 629, 26, 150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 477, 716, 28, 155, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 543, 814, 28, 160, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 618, 927, 28, 165, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 704, 1057, 30, 170, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 803, 1205, 30, 175, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 917, 1375, 30, 180, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1047, 1571, 32, 185, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1197, 1796, 32, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1370, 2055, 32, 195, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1569, 2353, 34, 200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -17321,53 +20217,53 @@ skills["UnleashPlayer"] = { baseTypeName = "Unleash", fromItem = true, color = 3, - description = "Infuse yourself with temporal magic for a short duration, Empowering the next Spell you cast to repeat multiple times. Cannot Empower Channelling Skills or Skills with a Cooldown.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Duration] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Augment yourself with temporal magic for a short duration, Empowering the next Spell you cast to repeat multiple times. Cannot Empower Channelling Skills or Skills with a Cooldown.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Duration] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.75, qualityStats = { { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [2] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [3] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [4] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [5] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [6] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [7] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [8] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [9] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [10] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [11] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [12] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [13] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [14] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [15] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [16] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [17] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [18] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [19] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [20] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [21] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [22] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [23] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [24] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [25] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [26] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [27] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [28] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [29] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [30] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [31] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [32] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [33] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [34] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [35] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [36] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [37] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [38] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [39] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, - [40] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 0, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 1, cost = { Mana = 0, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 1, cost = { Mana = 0, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 1, cost = { Mana = 0, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 1, cost = { Mana = 0, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 1, cost = { Mana = 0, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 1, cost = { Mana = 0, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 1, cost = { Mana = 0, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 1, cost = { Mana = 0, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 1, cost = { Mana = 0, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 1, cost = { Mana = 0, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 1, cost = { Mana = 0, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 1, cost = { Mana = 0, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 1, cost = { Mana = 0, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 1, cost = { Mana = 0, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 1, cost = { Mana = 0, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 1, cost = { Mana = 0, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 1, cost = { Mana = 0, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 1, cost = { Mana = 0, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -17384,53 +20280,53 @@ skills["UnleashPlayer"] = { { "staff_unleash_number_of_seals_for_next_skill", 2 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "staff_unleash_cooldown_%_of_cast_time", "can_perform_skill_while_moving", }, levels = { - [1] = { 900, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 890, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 880, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 870, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 860, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 850, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 840, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 830, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 820, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 810, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 800, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 790, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 780, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 770, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 760, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 740, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 730, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 720, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 710, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 700, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 690, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 680, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 670, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 660, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 650, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 640, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 630, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 620, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 610, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 605, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 600, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 595, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 590, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 585, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 580, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 575, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 570, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 565, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 560, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 1200, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 1190, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1180, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1170, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1160, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1150, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 1140, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 1130, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 1120, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 1110, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 1100, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 1090, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 1080, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 1070, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 1060, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 1050, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 1040, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 1030, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 1020, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 1010, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 1000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 990, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 980, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 970, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 960, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 950, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 940, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 930, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 920, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 910, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 905, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 900, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 895, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 890, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 885, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 880, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 875, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 870, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 865, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 860, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -17439,62 +20335,62 @@ skills["VaultingImpactPlayer"] = { name = "Vaulting Impact", baseTypeName = "Vaulting Impact", color = 3, - description = "Leap forward and Slam the ground, sending out a Stunning shockwave that is especially potent against Dazed enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Jumping] = true, [SkillType.Travel] = true, }, + description = "Leap forward and Slam the ground, sending out a shockwave. The shockwave applies Broken Stance to Dazed enemies, causing any Hits against those enemies to deal extra damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Jumping] = true, [SkillType.Travel] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "slam_aftershock_chance_%", 1 }, + { "base_skill_effect_duration", 100 }, }, levels = { - [1] = { baseMultiplier = 1.3, levelRequirement = 0, cost = { Mana = 12, }, }, - [2] = { baseMultiplier = 1.43, levelRequirement = 3, cost = { Mana = 14, }, }, - [3] = { baseMultiplier = 1.57, levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { baseMultiplier = 1.71, levelRequirement = 10, cost = { Mana = 17, }, }, - [5] = { baseMultiplier = 1.85, levelRequirement = 14, cost = { Mana = 19, }, }, - [6] = { baseMultiplier = 1.99, levelRequirement = 18, cost = { Mana = 21, }, }, - [7] = { baseMultiplier = 2.13, levelRequirement = 22, cost = { Mana = 23, }, }, - [8] = { baseMultiplier = 2.26, levelRequirement = 26, cost = { Mana = 26, }, }, - [9] = { baseMultiplier = 2.37, levelRequirement = 31, cost = { Mana = 28, }, }, - [10] = { baseMultiplier = 2.49, levelRequirement = 36, cost = { Mana = 32, }, }, - [11] = { baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 35, }, }, - [12] = { baseMultiplier = 2.74, levelRequirement = 46, cost = { Mana = 39, }, }, - [13] = { baseMultiplier = 2.88, levelRequirement = 52, cost = { Mana = 43, }, }, - [14] = { baseMultiplier = 3.03, levelRequirement = 58, cost = { Mana = 48, }, }, - [15] = { baseMultiplier = 3.18, levelRequirement = 64, cost = { Mana = 53, }, }, - [16] = { baseMultiplier = 3.34, levelRequirement = 66, cost = { Mana = 59, }, }, - [17] = { baseMultiplier = 3.5, levelRequirement = 72, cost = { Mana = 65, }, }, - [18] = { baseMultiplier = 3.68, levelRequirement = 78, cost = { Mana = 72, }, }, - [19] = { baseMultiplier = 3.86, levelRequirement = 84, cost = { Mana = 80, }, }, - [20] = { baseMultiplier = 4.05, levelRequirement = 90, cost = { Mana = 89, }, }, - [21] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 99, }, }, - [22] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 109, }, }, - [23] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 121, }, }, - [24] = { baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 134, }, }, - [25] = { baseMultiplier = 5.17, levelRequirement = 90, cost = { Mana = 149, }, }, - [26] = { baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 165, }, }, - [27] = { baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 183, }, }, - [28] = { baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 203, }, }, - [29] = { baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 225, }, }, - [30] = { baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 249, }, }, - [31] = { baseMultiplier = 6.93, levelRequirement = 90, cost = { Mana = 276, }, }, - [32] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 306, }, }, - [33] = { baseMultiplier = 7.65, levelRequirement = 90, cost = { Mana = 339, }, }, - [34] = { baseMultiplier = 8.03, levelRequirement = 90, cost = { Mana = 376, }, }, - [35] = { baseMultiplier = 8.43, levelRequirement = 90, cost = { Mana = 417, }, }, - [36] = { baseMultiplier = 8.85, levelRequirement = 90, cost = { Mana = 462, }, }, - [37] = { baseMultiplier = 9.29, levelRequirement = 90, cost = { Mana = 512, }, }, - [38] = { baseMultiplier = 9.76, levelRequirement = 90, cost = { Mana = 567, }, }, - [39] = { baseMultiplier = 10.25, levelRequirement = 90, cost = { Mana = 629, }, }, - [40] = { baseMultiplier = 10.76, levelRequirement = 90, cost = { Mana = 697, }, }, + [1] = { baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 12, }, }, + [2] = { baseMultiplier = 1.76, levelRequirement = 3, cost = { Mana = 14, }, }, + [3] = { baseMultiplier = 1.93, levelRequirement = 6, cost = { Mana = 16, }, }, + [4] = { baseMultiplier = 2.1, levelRequirement = 10, cost = { Mana = 18, }, }, + [5] = { baseMultiplier = 2.25, levelRequirement = 14, cost = { Mana = 20, }, }, + [6] = { baseMultiplier = 2.41, levelRequirement = 18, cost = { Mana = 23, }, }, + [7] = { baseMultiplier = 2.57, levelRequirement = 22, cost = { Mana = 26, }, }, + [8] = { baseMultiplier = 2.7, levelRequirement = 26, cost = { Mana = 29, }, }, + [9] = { baseMultiplier = 2.82, levelRequirement = 31, cost = { Mana = 32, }, }, + [10] = { baseMultiplier = 2.93, levelRequirement = 36, cost = { Mana = 35, }, }, + [11] = { baseMultiplier = 3.05, levelRequirement = 41, cost = { Mana = 39, }, }, + [12] = { baseMultiplier = 3.18, levelRequirement = 46, cost = { Mana = 42, }, }, + [13] = { baseMultiplier = 3.3, levelRequirement = 52, cost = { Mana = 46, }, }, + [14] = { baseMultiplier = 3.43, levelRequirement = 58, cost = { Mana = 51, }, }, + [15] = { baseMultiplier = 3.55, levelRequirement = 64, cost = { Mana = 55, }, }, + [16] = { baseMultiplier = 3.68, levelRequirement = 66, cost = { Mana = 60, }, }, + [17] = { baseMultiplier = 3.81, levelRequirement = 72, cost = { Mana = 65, }, }, + [18] = { baseMultiplier = 3.95, levelRequirement = 78, cost = { Mana = 71, }, }, + [19] = { baseMultiplier = 4.08, levelRequirement = 84, cost = { Mana = 77, }, }, + [20] = { baseMultiplier = 4.22, levelRequirement = 90, cost = { Mana = 83, }, }, + [21] = { baseMultiplier = 4.36, levelRequirement = 90, cost = { Mana = 89, }, }, + [22] = { baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 96, }, }, + [23] = { baseMultiplier = 4.65, levelRequirement = 90, cost = { Mana = 104, }, }, + [24] = { baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 112, }, }, + [25] = { baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 120, }, }, + [26] = { baseMultiplier = 5.13, levelRequirement = 90, cost = { Mana = 129, }, }, + [27] = { baseMultiplier = 5.3, levelRequirement = 90, cost = { Mana = 138, }, }, + [28] = { baseMultiplier = 5.48, levelRequirement = 90, cost = { Mana = 148, }, }, + [29] = { baseMultiplier = 5.66, levelRequirement = 90, cost = { Mana = 159, }, }, + [30] = { baseMultiplier = 5.85, levelRequirement = 90, cost = { Mana = 170, }, }, + [31] = { baseMultiplier = 6.04, levelRequirement = 90, cost = { Mana = 182, }, }, + [32] = { baseMultiplier = 6.24, levelRequirement = 90, cost = { Mana = 194, }, }, + [33] = { baseMultiplier = 6.45, levelRequirement = 90, cost = { Mana = 208, }, }, + [34] = { baseMultiplier = 6.66, levelRequirement = 90, cost = { Mana = 222, }, }, + [35] = { baseMultiplier = 6.88, levelRequirement = 90, cost = { Mana = 237, }, }, + [36] = { baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 252, }, }, + [37] = { baseMultiplier = 7.35, levelRequirement = 90, cost = { Mana = 269, }, }, + [38] = { baseMultiplier = 7.59, levelRequirement = 90, cost = { Mana = 286, }, }, + [39] = { baseMultiplier = 7.84, levelRequirement = 90, cost = { Mana = 305, }, }, + [40] = { baseMultiplier = 8.1, levelRequirement = 90, cost = { Mana = 325, }, }, }, statSets = { [1] = { label = "Vaulting Impact", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "vaulting_impact", + statDescriptionScope = "vaulting_impact_statset_0", baseFlags = { attack = true, area = true, @@ -17504,55 +20400,81 @@ skills["VaultingImpactPlayer"] = { { "total_attack_time_+_ms", 1000 }, { "attack_maximum_action_distance_+", 42 }, { "active_skill_base_area_of_effect_radius", 24 }, - { "consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final", 300 }, - { "vaulting_impact_short_animation_maximum_range", 20 }, + { "vaulting_impact_short_animation_maximum_range", 40 }, }, stats = { - "active_skill_hit_damage_stun_multiplier_+%_final", "is_area_damage", "visual_hit_effect_physical_is_wind", + "cannot_daze", }, levels = { - [1] = { 50, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 52, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 54, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 56, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 58, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 60, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 62, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 64, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 66, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 68, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 72, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 74, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 76, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 78, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 80, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 84, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 86, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 88, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 90, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 92, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 94, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 96, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 98, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 100, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 102, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 104, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 106, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 108, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 109, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 110, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 111, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 112, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 113, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 114, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 115, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 116, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 117, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 118, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Vs Dazed", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "vaulting_impact_statset_1", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "total_attack_time_+_ms", 1000 }, + { "attack_maximum_action_distance_+", 42 }, + { "active_skill_base_area_of_effect_radius", 24 }, + { "vaulting_impact_short_animation_maximum_range", 40 }, + { "exploit_debuff_attack_damage_to_convert_to_magnitude_%", 5 }, + { "base_skill_effect_duration", 5000 }, + }, + stats = { + "is_area_damage", + "visual_hit_effect_physical_is_wind", + "cannot_daze", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { baseMultiplier = 1.6, actorLevel = 1, }, }, }, } @@ -17562,73 +20484,148 @@ skills["VolatileDeadPlayer"] = { baseTypeName = "Volatile Dead", fromItem = true, color = 3, - description = "Consume a Corpse to create a fireball that seeks out enemies and explodes. ", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, }, + description = "Consume a Corpse to create a volatile core that seeks out enemies and Ignites enemies near it. The core explodes at the end of its duration.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.8, qualityStats = { { "base_chance_to_not_consume_corpse_%", 0.5 }, }, levels = { - [1] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [1] = { PvPDamageMultiplier = -80, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { PvPDamageMultiplier = -80, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { PvPDamageMultiplier = -80, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { PvPDamageMultiplier = -80, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { PvPDamageMultiplier = -80, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { PvPDamageMultiplier = -80, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { PvPDamageMultiplier = -80, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { PvPDamageMultiplier = -80, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { PvPDamageMultiplier = -80, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { PvPDamageMultiplier = -80, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { PvPDamageMultiplier = -80, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { PvPDamageMultiplier = -80, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { PvPDamageMultiplier = -80, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { PvPDamageMultiplier = -80, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { PvPDamageMultiplier = -80, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { PvPDamageMultiplier = -80, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { PvPDamageMultiplier = -80, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { PvPDamageMultiplier = -80, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { PvPDamageMultiplier = -80, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Volatile Dead", - baseEffectiveness = 3.75, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "volatile_dead", + label = "Explosion", + baseEffectiveness = 2.4000000953674, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "volatile_dead_statset_0", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "volatile_dead_base_number_of_corpses_to_consume", 1 }, + { "active_skill_base_area_of_effect_radius", 22 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + }, + stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 32, 49, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 58, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 80, 120, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 109, 163, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 193, 289, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 222, 333, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 255, 383, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 293, 440, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 337, 505, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 387, 580, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 444, 666, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 510, 765, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 586, 879, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 674, 1010, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 775, 1162, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 892, 1337, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1027, 1540, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1184, 1775, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1365, 2048, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1577, 2365, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1822, 2734, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2109, 3163, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2443, 3664, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2833, 4250, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 3290, 4934, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3825, 5737, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 4452, 6678, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Core", + baseEffectiveness = 1.3700000047684, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "volatile_dead_statset_1", baseFlags = { spell = true, area = true, }, constantStats = { { "volatile_dead_base_number_of_corpses_to_consume", 1 }, - { "active_skill_base_area_of_effect_radius", 14 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", "is_area_damage", @@ -17640,46 +20637,46 @@ skills["VolatileDeadPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 79, 118, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 92, 139, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 125, 188, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 192, 288, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 220, 330, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 288, 431, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 328, 492, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 373, 560, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 425, 637, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 483, 724, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 623, 935, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 804, 1206, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 913, 1370, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1038, 1556, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1179, 1769, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1341, 2011, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1525, 2288, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1736, 2604, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1977, 2965, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 2252, 3379, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2569, 3853, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2932, 4398, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 3349, 5023, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3829, 5743, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 4382, 6573, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 5019, 7529, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 5, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 18, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 23, 34, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 27, 41, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 33, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 39, 59, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 46, 69, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 62, 93, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 72, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 83, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 96, 143, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 110, 165, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 127, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 146, 218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 167, 251, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 221, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 253, 380, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 291, 437, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 334, 502, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 384, 577, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 442, 663, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 509, 763, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 586, 879, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 676, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 779, 1169, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 900, 1350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1040, 1561, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1204, 1806, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1394, 2092, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 1617, 2426, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 1878, 2817, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2183, 3275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 2541, 3812, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -17688,53 +20685,53 @@ skills["VulnerabilityPlayer"] = { name = "Vulnerability", baseTypeName = "Vulnerability", color = 3, - description = "Curse all targets in an area after a short delay, making Hits against them ignore a portion of their Armour.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Curse all targets in an area after a short delay. making Hits against them ignore a portion of their Armour.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.7, qualityStats = { { "curse_effect_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 42, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 51, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 56, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 61, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 67, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 74, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 81, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 98, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 108, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 119, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 130, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 143, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 157, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 173, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 190, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 208, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 229, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 333, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 365, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 401, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 441, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 484, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 532, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 584, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 641, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 704, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 773, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 849, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 1024, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1125, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1235, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1356, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1489, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1635, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, }, statSets = { [1] = { @@ -17755,12 +20752,13 @@ skills["VulnerabilityPlayer"] = { { "curse_delay_duration_ms", 1500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_skill_effect_duration", "active_skill_base_area_of_effect_radius", "base_skill_buff_total_armour_-_to_grant", + "skill_curses_cannot_apply_to_targets_above_level", "base_deal_no_damage", "can_perform_skill_while_moving", }, @@ -17768,46 +20766,46 @@ skills["VulnerabilityPlayer"] = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 15, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, 54, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, 191, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, 268, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, 394, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, 568, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, 801, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, 1118, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, 1640, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, 2376, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, 3409, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, 4573, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, 5441, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, 6465, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, 8114, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, 9605, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 32, 10159, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 33, 10741, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 34, 11356, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 34, 12005, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 35, 12689, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 36, 13410, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 37, 14171, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 38, 14973, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 39, 15819, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 39, 16710, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 40, 17649, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 40, 18639, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 41, 19683, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 41, 20781, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 42, 21940, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 42, 23161, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 42, 24448, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 43, 25803, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 43, 27151, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 44, 28550, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 15, 16, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, 30, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, 58, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, 108, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, 176, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, 266, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, 382, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, 536, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, 788, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, 1136, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, 1602, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, 2236, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, 3280, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, 4752, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, 6818, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, 9146, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, 10882, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, 12930, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, 16228, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, 19210, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, 20318, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, 21482, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, 22712, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, 24010, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, 25378, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, 26820, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, 28342, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, 29946, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, 31638, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, 33420, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, 35298, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, 37278, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, 39366, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, 41562, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, 43880, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, 46322, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, 48896, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, 51606, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, 54302, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, 57100, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -17816,8 +20814,8 @@ skills["WaveOfFrostPlayer"] = { name = "Wave of Frost", baseTypeName = "Wave of Frost", color = 3, - description = "Flip backwards and send forth a Freezing wave in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, }, + description = "Flip backwards and send forth a Freezing wave in front of you, immediately Freezing enemies which are Primed for Freeze.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -17826,46 +20824,46 @@ skills["WaveOfFrostPlayer"] = { { "base_reduce_enemy_cold_resistance_%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 15, }, }, - [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.71, levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.86, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { attackSpeedMultiplier = -45, baseMultiplier = 0.93, levelRequirement = 14, cost = { Mana = 23, }, }, - [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { attackSpeedMultiplier = -45, baseMultiplier = 1.08, levelRequirement = 22, cost = { Mana = 28, }, }, - [8] = { attackSpeedMultiplier = -45, baseMultiplier = 1.15, levelRequirement = 26, cost = { Mana = 31, }, }, - [9] = { attackSpeedMultiplier = -45, baseMultiplier = 1.21, levelRequirement = 31, cost = { Mana = 34, }, }, - [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 38, }, }, - [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.36, levelRequirement = 41, cost = { Mana = 42, }, }, - [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.44, levelRequirement = 46, cost = { Mana = 47, }, }, - [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.53, levelRequirement = 52, cost = { Mana = 52, }, }, - [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.62, levelRequirement = 58, cost = { Mana = 58, }, }, - [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.72, levelRequirement = 64, cost = { Mana = 64, }, }, - [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.83, levelRequirement = 66, cost = { Mana = 71, }, }, + [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.71, levelRequirement = 3, cost = { Mana = 17, }, }, + [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.86, levelRequirement = 10, cost = { Mana = 22, }, }, + [5] = { attackSpeedMultiplier = -45, baseMultiplier = 0.93, levelRequirement = 14, cost = { Mana = 25, }, }, + [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 28, }, }, + [7] = { attackSpeedMultiplier = -45, baseMultiplier = 1.08, levelRequirement = 22, cost = { Mana = 31, }, }, + [8] = { attackSpeedMultiplier = -45, baseMultiplier = 1.15, levelRequirement = 26, cost = { Mana = 35, }, }, + [9] = { attackSpeedMultiplier = -45, baseMultiplier = 1.21, levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.36, levelRequirement = 41, cost = { Mana = 47, }, }, + [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.44, levelRequirement = 46, cost = { Mana = 51, }, }, + [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.53, levelRequirement = 52, cost = { Mana = 56, }, }, + [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.62, levelRequirement = 58, cost = { Mana = 61, }, }, + [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.72, levelRequirement = 64, cost = { Mana = 67, }, }, + [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.83, levelRequirement = 66, cost = { Mana = 73, }, }, [17] = { attackSpeedMultiplier = -45, baseMultiplier = 1.95, levelRequirement = 72, cost = { Mana = 79, }, }, - [18] = { attackSpeedMultiplier = -45, baseMultiplier = 2.07, levelRequirement = 78, cost = { Mana = 87, }, }, - [19] = { attackSpeedMultiplier = -45, baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 97, }, }, - [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 107, }, }, - [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 119, }, }, - [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 132, }, }, - [23] = { attackSpeedMultiplier = -45, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 146, }, }, - [24] = { attackSpeedMultiplier = -45, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 162, }, }, - [25] = { attackSpeedMultiplier = -45, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 180, }, }, - [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.47, levelRequirement = 90, cost = { Mana = 199, }, }, - [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 221, }, }, - [28] = { attackSpeedMultiplier = -45, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 245, }, }, - [29] = { attackSpeedMultiplier = -45, baseMultiplier = 4.21, levelRequirement = 90, cost = { Mana = 271, }, }, - [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 301, }, }, - [31] = { attackSpeedMultiplier = -45, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 333, }, }, - [32] = { attackSpeedMultiplier = -45, baseMultiplier = 5.1, levelRequirement = 90, cost = { Mana = 369, }, }, - [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.44, levelRequirement = 90, cost = { Mana = 409, }, }, - [34] = { attackSpeedMultiplier = -45, baseMultiplier = 5.81, levelRequirement = 90, cost = { Mana = 453, }, }, - [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.19, levelRequirement = 90, cost = { Mana = 502, }, }, - [36] = { attackSpeedMultiplier = -45, baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 557, }, }, - [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.05, levelRequirement = 90, cost = { Mana = 617, }, }, - [38] = { attackSpeedMultiplier = -45, baseMultiplier = 7.52, levelRequirement = 90, cost = { Mana = 684, }, }, - [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.02, levelRequirement = 90, cost = { Mana = 758, }, }, - [40] = { attackSpeedMultiplier = -45, baseMultiplier = 8.55, levelRequirement = 90, cost = { Mana = 840, }, }, + [18] = { attackSpeedMultiplier = -45, baseMultiplier = 2.07, levelRequirement = 78, cost = { Mana = 86, }, }, + [19] = { attackSpeedMultiplier = -45, baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 93, }, }, + [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 100, }, }, + [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 108, }, }, + [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 116, }, }, + [23] = { attackSpeedMultiplier = -45, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 125, }, }, + [24] = { attackSpeedMultiplier = -45, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 135, }, }, + [25] = { attackSpeedMultiplier = -45, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 145, }, }, + [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.47, levelRequirement = 90, cost = { Mana = 156, }, }, + [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 167, }, }, + [28] = { attackSpeedMultiplier = -45, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 179, }, }, + [29] = { attackSpeedMultiplier = -45, baseMultiplier = 4.21, levelRequirement = 90, cost = { Mana = 192, }, }, + [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 205, }, }, + [31] = { attackSpeedMultiplier = -45, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 219, }, }, + [32] = { attackSpeedMultiplier = -45, baseMultiplier = 5.1, levelRequirement = 90, cost = { Mana = 235, }, }, + [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.44, levelRequirement = 90, cost = { Mana = 251, }, }, + [34] = { attackSpeedMultiplier = -45, baseMultiplier = 5.81, levelRequirement = 90, cost = { Mana = 267, }, }, + [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.19, levelRequirement = 90, cost = { Mana = 285, }, }, + [36] = { attackSpeedMultiplier = -45, baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 304, }, }, + [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.05, levelRequirement = 90, cost = { Mana = 324, }, }, + [38] = { attackSpeedMultiplier = -45, baseMultiplier = 7.52, levelRequirement = 90, cost = { Mana = 345, }, }, + [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.02, levelRequirement = 90, cost = { Mana = 368, }, }, + [40] = { attackSpeedMultiplier = -45, baseMultiplier = 8.55, levelRequirement = 90, cost = { Mana = 391, }, }, }, statSets = { [1] = { @@ -17885,6 +20883,8 @@ skills["WaveOfFrostPlayer"] = { stats = { "active_skill_hit_damage_freeze_multiplier_+%_final", "is_area_damage", + "has_freeze_cull", + "active_skill_show_freeze_range", }, levels = { [1] = { 300, statInterpolation = { 1, }, actorLevel = 1, }, @@ -17936,7 +20936,7 @@ skills["WhirlingAssaultPlayer"] = { baseTypeName = "Whirling Assault", color = 3, description = "Advance while hitting enemies around you with a series of spinning Strikes.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -17945,46 +20945,46 @@ skills["WhirlingAssaultPlayer"] = { { "active_skill_attack_speed_+%_final", 0.75 }, }, levels = { - [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 19, }, }, + [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 18, }, }, [2] = { baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 21, }, }, - [3] = { baseMultiplier = 0.49, levelRequirement = 6, cost = { Mana = 23, }, }, - [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 26, }, }, - [5] = { baseMultiplier = 0.58, levelRequirement = 14, cost = { Mana = 29, }, }, - [6] = { baseMultiplier = 0.63, levelRequirement = 18, cost = { Mana = 32, }, }, - [7] = { baseMultiplier = 0.68, levelRequirement = 22, cost = { Mana = 35, }, }, - [8] = { baseMultiplier = 0.73, levelRequirement = 26, cost = { Mana = 39, }, }, - [9] = { baseMultiplier = 0.77, levelRequirement = 31, cost = { Mana = 43, }, }, - [10] = { baseMultiplier = 0.82, levelRequirement = 36, cost = { Mana = 48, }, }, - [11] = { baseMultiplier = 0.87, levelRequirement = 41, cost = { Mana = 53, }, }, - [12] = { baseMultiplier = 0.93, levelRequirement = 46, cost = { Mana = 59, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 66, }, }, - [14] = { baseMultiplier = 1.06, levelRequirement = 58, cost = { Mana = 73, }, }, - [15] = { baseMultiplier = 1.14, levelRequirement = 64, cost = { Mana = 81, }, }, - [16] = { baseMultiplier = 1.22, levelRequirement = 66, cost = { Mana = 89, }, }, + [3] = { baseMultiplier = 0.49, levelRequirement = 6, cost = { Mana = 24, }, }, + [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 28, }, }, + [5] = { baseMultiplier = 0.58, levelRequirement = 14, cost = { Mana = 31, }, }, + [6] = { baseMultiplier = 0.63, levelRequirement = 18, cost = { Mana = 35, }, }, + [7] = { baseMultiplier = 0.68, levelRequirement = 22, cost = { Mana = 39, }, }, + [8] = { baseMultiplier = 0.73, levelRequirement = 26, cost = { Mana = 44, }, }, + [9] = { baseMultiplier = 0.77, levelRequirement = 31, cost = { Mana = 48, }, }, + [10] = { baseMultiplier = 0.82, levelRequirement = 36, cost = { Mana = 53, }, }, + [11] = { baseMultiplier = 0.87, levelRequirement = 41, cost = { Mana = 59, }, }, + [12] = { baseMultiplier = 0.93, levelRequirement = 46, cost = { Mana = 64, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 71, }, }, + [14] = { baseMultiplier = 1.06, levelRequirement = 58, cost = { Mana = 77, }, }, + [15] = { baseMultiplier = 1.14, levelRequirement = 64, cost = { Mana = 84, }, }, + [16] = { baseMultiplier = 1.22, levelRequirement = 66, cost = { Mana = 91, }, }, [17] = { baseMultiplier = 1.31, levelRequirement = 72, cost = { Mana = 99, }, }, - [18] = { baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 110, }, }, - [19] = { baseMultiplier = 1.52, levelRequirement = 84, cost = { Mana = 122, }, }, - [20] = { baseMultiplier = 1.63, levelRequirement = 90, cost = { Mana = 135, }, }, - [21] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 150, }, }, - [22] = { baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 166, }, }, - [23] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 184, }, }, - [24] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 204, }, }, - [25] = { baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 226, }, }, - [26] = { baseMultiplier = 2.55, levelRequirement = 90, cost = { Mana = 250, }, }, - [27] = { baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 277, }, }, - [28] = { baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 307, }, }, - [29] = { baseMultiplier = 3.19, levelRequirement = 90, cost = { Mana = 341, }, }, - [30] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 378, }, }, - [31] = { baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 419, }, }, - [32] = { baseMultiplier = 3.99, levelRequirement = 90, cost = { Mana = 464, }, }, - [33] = { baseMultiplier = 4.3, levelRequirement = 90, cost = { Mana = 514, }, }, - [34] = { baseMultiplier = 4.63, levelRequirement = 90, cost = { Mana = 570, }, }, - [35] = { baseMultiplier = 4.99, levelRequirement = 90, cost = { Mana = 631, }, }, - [36] = { baseMultiplier = 5.37, levelRequirement = 90, cost = { Mana = 700, }, }, - [37] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 775, }, }, - [38] = { baseMultiplier = 6.24, levelRequirement = 90, cost = { Mana = 859, }, }, - [39] = { baseMultiplier = 6.72, levelRequirement = 90, cost = { Mana = 952, }, }, - [40] = { baseMultiplier = 7.24, levelRequirement = 90, cost = { Mana = 1055, }, }, + [18] = { baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 107, }, }, + [19] = { baseMultiplier = 1.52, levelRequirement = 84, cost = { Mana = 116, }, }, + [20] = { baseMultiplier = 1.63, levelRequirement = 90, cost = { Mana = 126, }, }, + [21] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 136, }, }, + [22] = { baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 146, }, }, + [23] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 158, }, }, + [24] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 169, }, }, + [25] = { baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 182, }, }, + [26] = { baseMultiplier = 2.55, levelRequirement = 90, cost = { Mana = 196, }, }, + [27] = { baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 210, }, }, + [28] = { baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 225, }, }, + [29] = { baseMultiplier = 3.19, levelRequirement = 90, cost = { Mana = 241, }, }, + [30] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 258, }, }, + [31] = { baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 276, }, }, + [32] = { baseMultiplier = 3.99, levelRequirement = 90, cost = { Mana = 295, }, }, + [33] = { baseMultiplier = 4.3, levelRequirement = 90, cost = { Mana = 315, }, }, + [34] = { baseMultiplier = 4.63, levelRequirement = 90, cost = { Mana = 336, }, }, + [35] = { baseMultiplier = 4.99, levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { baseMultiplier = 5.37, levelRequirement = 90, cost = { Mana = 382, }, }, + [37] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 407, }, }, + [38] = { baseMultiplier = 6.24, levelRequirement = 90, cost = { Mana = 434, }, }, + [39] = { baseMultiplier = 6.72, levelRequirement = 90, cost = { Mana = 462, }, }, + [40] = { baseMultiplier = 7.24, levelRequirement = 90, cost = { Mana = 491, }, }, }, statSets = { [1] = { @@ -18006,6 +21006,7 @@ skills["WhirlingAssaultPlayer"] = { "visual_hit_effect_physical_is_wind", "base_skill_show_average_damage_instead_of_dps", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -18056,56 +21057,56 @@ skills["GaleStrikePlayer"] = { name = "Wind Blast", baseTypeName = "Wind Blast", color = 3, - description = "Batter enemies at range by generating a gust of wind as you swing. Enemies will be Knocked Back based on how close they are to you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, }, + description = "Batter enemies at range by generating a gust of wind as you swing. Enemies will be Dazed and Knocked Back based on how close they are to you.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "knockback_distance_+%", 1.5 }, + { "wind_blast_damage_+%_final_from_distance", 1 }, }, levels = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 3, cost = { Mana = 10, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.12, levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.21, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.3, levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.48, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.63, levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.71, levelRequirement = 41, cost = { Mana = 26, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.79, levelRequirement = 46, cost = { Mana = 29, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 52, cost = { Mana = 33, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.98, levelRequirement = 58, cost = { Mana = 36, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.08, levelRequirement = 64, cost = { Mana = 40, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.18, levelRequirement = 66, cost = { Mana = 44, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 6, cost = { Mana = 12, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.12, levelRequirement = 10, cost = { Mana = 14, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.21, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.3, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.48, levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.63, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.71, levelRequirement = 41, cost = { Mana = 29, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.79, levelRequirement = 46, cost = { Mana = 32, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 52, cost = { Mana = 35, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.98, levelRequirement = 58, cost = { Mana = 38, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.08, levelRequirement = 64, cost = { Mana = 42, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.18, levelRequirement = 66, cost = { Mana = 45, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.29, levelRequirement = 72, cost = { Mana = 49, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.4, levelRequirement = 78, cost = { Mana = 55, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.52, levelRequirement = 84, cost = { Mana = 61, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 67, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 75, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 83, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 92, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 102, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 113, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 125, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 139, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 154, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.11, levelRequirement = 90, cost = { Mana = 170, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 189, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.53, levelRequirement = 90, cost = { Mana = 209, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 232, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 257, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 285, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.51, levelRequirement = 90, cost = { Mana = 316, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 350, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.08, levelRequirement = 90, cost = { Mana = 388, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 430, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.7, levelRequirement = 90, cost = { Mana = 476, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.03, levelRequirement = 90, cost = { Mana = 528, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.4, levelRequirement = 78, cost = { Mana = 54, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.52, levelRequirement = 84, cost = { Mana = 58, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 63, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 68, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 73, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 79, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 85, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 91, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 98, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 105, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 112, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.11, levelRequirement = 90, cost = { Mana = 120, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 129, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.53, levelRequirement = 90, cost = { Mana = 138, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 147, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 157, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 168, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.51, levelRequirement = 90, cost = { Mana = 179, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 191, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.08, levelRequirement = 90, cost = { Mana = 204, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 217, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.7, levelRequirement = 90, cost = { Mana = 231, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.03, levelRequirement = 90, cost = { Mana = 246, }, }, }, statSets = { [1] = { @@ -18126,56 +21127,57 @@ skills["GaleStrikePlayer"] = { { "active_skill_base_secondary_area_of_effect_radius", 7 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_chance_to_daze_%", 100 }, }, stats = { - "support_physical_damage_%_to_gain_as_daze_build_up", "global_knockback", "visual_hit_effect_physical_is_wind", "is_area_damage", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 500, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 508, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 516, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 524, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 532, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 540, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 548, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 556, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 564, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 572, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 580, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 588, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 596, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 604, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 612, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 620, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 628, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 636, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 644, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 652, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 660, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 668, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 676, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 684, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 692, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 700, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 708, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 716, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 724, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 732, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 740, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 748, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 756, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 764, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 772, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 780, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 788, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 796, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 804, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 812, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -18186,7 +21188,7 @@ skills["WitherPlayer"] = { fromItem = true, color = 3, description = "Channel a debilitating hex that Withers enemies in the area.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Chaos] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Chaos] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.25, qualityStats = { }, @@ -18246,11 +21248,12 @@ skills["WitherPlayer"] = { { "chaos_damage_taken_+%", 6 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 25 }, + { "wither_channeled_move_targeting_area_X_units_per_second", 18 }, }, stats = { "active_skill_withered_base_duration_ms", - "can_perform_skill_while_moving", }, notMinionStat = { "active_skill_withered_base_duration_ms", diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua index 3ae8c9a933..0190e7c6d9 100644 --- a/src/Data/Skills/act_str.lua +++ b/src/Data/Skills/act_str.lua @@ -6,12 +6,384 @@ -- local skills, mod, flag, skill = ... +skills["AncestralCryPlayer"] = { + name = "Ancestral Cry", + baseTypeName = "Ancestral Cry", + color = 1, + description = "Perform a Warcry using Glory gained by Igniting enemies to turn you into an embodiment of Kaom. While embodying Kaom, your footsteps Trigger Volcanic Steps, Melee Strikes and Slams are Ancestrally Boosted, and your Melee Strikes Trigger Volcanic Eruption.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.ConsumesCharges] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, [SkillType.Fire] = true, [SkillType.Triggers] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, }, + weaponTypes = { + ["None"] = true, + ["One Handed Mace"] = true, + ["Flail"] = true, + ["Two Handed Sword"] = true, + ["Dagger"] = true, + ["Staff"] = true, + ["Spear"] = true, + ["Two Handed Axe"] = true, + ["Two Handed Mace"] = true, + ["One Handed Axe"] = true, + ["Claw"] = true, + ["One Handed Sword"] = true, + }, + castTime = 0.8, + qualityStats = { + { "ancestral_cry_duration_+%_final_per_removable_endurance_charge", 1 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 10, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 11, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 12, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 14, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 18, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 20, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 22, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 23, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 27, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 29, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 31, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 33, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 35, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 37, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 39, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 41, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 44, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 46, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 49, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 51, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 54, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 57, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 59, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 62, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 65, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 68, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 71, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 75, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 78, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 81, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 96, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 100, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 104, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 108, }, }, + }, + statSets = { + [1] = { + label = "Warcry", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ancestral_cry_statset_0", + baseFlags = { + warcry = true, + area = true, + duration = true, + }, + constantStats = { + { "ancestral_cry_empowered_attacks_strike_X_additional_enemies", 2 }, + { "skill_empower_limitation_specifier_for_stat_description", 1 }, + { "ancestral_cry_duration_+%_final_per_removable_endurance_charge", 50 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_requires_X_glory", 100 }, + { "active_skill_generates_mp_%_glory_per_ignite", 100 }, + { "ancestral_cry_non_skill_physical_to_fire_convert_%", 100 }, + { "active_skill_base_area_of_effect_radius", 40 }, + { "skill_specific_stat_description_mode", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "base_deal_no_damage", + "cannot_cancel_skill_before_contact_point", + "warcry_count_power_from_enemies", + "warcries_knock_back_enemies", + "can_perform_skill_while_moving", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["AncestralCryShockwavePlayer"] = { + name = "Volcanic Steps", + hidden = true, + description = "Each step you take Slams the ground around you, dealing damage to nearby enemies.", + skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Fire] = true, [SkillType.Slam] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Melee] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 0.6, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.66, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.73, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.8, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.87, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.94, levelRequirement = 0, }, + [7] = { baseMultiplier = 1.02, levelRequirement = 0, }, + [8] = { baseMultiplier = 1.09, levelRequirement = 0, }, + [9] = { baseMultiplier = 1.16, levelRequirement = 0, }, + [10] = { baseMultiplier = 1.23, levelRequirement = 0, }, + [11] = { baseMultiplier = 1.31, levelRequirement = 0, }, + [12] = { baseMultiplier = 1.4, levelRequirement = 0, }, + [13] = { baseMultiplier = 1.49, levelRequirement = 0, }, + [14] = { baseMultiplier = 1.6, levelRequirement = 0, }, + [15] = { baseMultiplier = 1.71, levelRequirement = 0, }, + [16] = { baseMultiplier = 1.83, levelRequirement = 0, }, + [17] = { baseMultiplier = 1.97, levelRequirement = 0, }, + [18] = { baseMultiplier = 2.11, levelRequirement = 0, }, + [19] = { baseMultiplier = 2.27, levelRequirement = 0, }, + [20] = { baseMultiplier = 2.45, levelRequirement = 0, }, + [21] = { baseMultiplier = 2.64, levelRequirement = 0, }, + [22] = { baseMultiplier = 2.84, levelRequirement = 0, }, + [23] = { baseMultiplier = 3.06, levelRequirement = 0, }, + [24] = { baseMultiplier = 3.3, levelRequirement = 0, }, + [25] = { baseMultiplier = 3.55, levelRequirement = 0, }, + [26] = { baseMultiplier = 3.83, levelRequirement = 0, }, + [27] = { baseMultiplier = 4.13, levelRequirement = 0, }, + [28] = { baseMultiplier = 4.44, levelRequirement = 0, }, + [29] = { baseMultiplier = 4.79, levelRequirement = 0, }, + [30] = { baseMultiplier = 5.16, levelRequirement = 0, }, + [31] = { baseMultiplier = 5.56, levelRequirement = 0, }, + [32] = { baseMultiplier = 5.99, levelRequirement = 0, }, + [33] = { baseMultiplier = 6.45, levelRequirement = 0, }, + [34] = { baseMultiplier = 6.95, levelRequirement = 0, }, + [35] = { baseMultiplier = 7.48, levelRequirement = 0, }, + [36] = { baseMultiplier = 8.06, levelRequirement = 0, }, + [37] = { baseMultiplier = 8.69, levelRequirement = 0, }, + [38] = { baseMultiplier = 9.36, levelRequirement = 0, }, + [39] = { baseMultiplier = 10.08, levelRequirement = 0, }, + [40] = { baseMultiplier = 10.86, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Volcanic Steps", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ancestral_cry_shockwave", + baseFlags = { + attack = true, + melee = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 12 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + }, + stats = { + "is_area_damage", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["AncestralCryProjectilePlayer"] = { + name = "Volcanic Eruption", + hidden = true, + description = "Fire molten Projectiles from the struck enemy, which will land nearby dealing Attack damage in an area.", + skillTypes = { [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CannotChain] = true, [SkillType.Fire] = true, [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Cooldown] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 0.4, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [2] = { baseMultiplier = 0.44, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [3] = { baseMultiplier = 0.48, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [4] = { baseMultiplier = 0.52, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [5] = { baseMultiplier = 0.56, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [6] = { baseMultiplier = 0.6, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [7] = { baseMultiplier = 0.64, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [8] = { baseMultiplier = 0.68, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [9] = { baseMultiplier = 0.7, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [10] = { baseMultiplier = 0.73, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [11] = { baseMultiplier = 0.76, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [12] = { baseMultiplier = 0.79, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [13] = { baseMultiplier = 0.82, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [14] = { baseMultiplier = 0.86, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [15] = { baseMultiplier = 0.89, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [16] = { baseMultiplier = 0.92, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [17] = { baseMultiplier = 0.95, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [18] = { baseMultiplier = 0.99, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [19] = { baseMultiplier = 1.02, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [20] = { baseMultiplier = 1.05, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [21] = { baseMultiplier = 1.09, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [22] = { baseMultiplier = 1.13, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [23] = { baseMultiplier = 1.16, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [24] = { baseMultiplier = 1.2, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [25] = { baseMultiplier = 1.24, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [26] = { baseMultiplier = 1.28, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [27] = { baseMultiplier = 1.33, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [28] = { baseMultiplier = 1.37, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [29] = { baseMultiplier = 1.41, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [30] = { baseMultiplier = 1.46, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [31] = { baseMultiplier = 1.51, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [32] = { baseMultiplier = 1.56, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [33] = { baseMultiplier = 1.61, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [34] = { baseMultiplier = 1.67, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [35] = { baseMultiplier = 1.72, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [36] = { baseMultiplier = 1.78, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [37] = { baseMultiplier = 1.84, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [38] = { baseMultiplier = 1.9, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [39] = { baseMultiplier = 1.96, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [40] = { baseMultiplier = 2.03, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + }, + statSets = { + [1] = { + label = "Volcanic Eruption", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ancestral_cry_projectile", + baseFlags = { + attack = true, + projectile = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 8 }, + { "skill_mortar_minimum_projectile_distance", 5 }, + { "skill_mortar_maximum_projectile_distance", 15 }, + { "base_number_of_projectiles", 3 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + }, + stats = { + "base_is_projectile", + "ancestral_cry_projectile_triggered_by_empowered_skill_on_hit", + "triggerable_in_any_set", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} skills["AncestralWarriorTotemPlayer"] = { name = "Ancestral Warrior Totem", baseTypeName = "Ancestral Warrior Totem", color = 1, - description = "Raise a Totem that uses socketed Mace Skills. Cannot use Channelling Skills or Skills with Cooldowns.", - skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.Limit] = true, }, + description = "Consume 3 Endurance Charges to Raise a Totem that uses socketed Mace Skills. This Totem has no Limit. Cannot use Channelling Skills or Skills with Cooldowns.", + skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.UnlimitedTotems] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -25,49 +397,48 @@ skills["AncestralWarriorTotemPlayer"] = { [1] = { manaMultiplier = 100, levelRequirement = 0, cost = { Mana = 13, }, }, [2] = { levelRequirement = 3, cost = { Mana = 15, }, }, [3] = { levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 21, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 23, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 25, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 28, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 31, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 35, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 38, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 43, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 47, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 53, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 58, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 65, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 20, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 23, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 25, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 28, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 31, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 35, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 39, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 42, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 47, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 51, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 56, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 61, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 66, }, }, [17] = { levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 79, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 88, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 98, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 108, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 120, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 133, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 148, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 164, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 181, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 201, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 223, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 247, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 274, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 336, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 373, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 413, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 458, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 507, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 562, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 623, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 690, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 765, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 78, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 84, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 91, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 98, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 106, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 114, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 132, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 142, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 163, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 174, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 200, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 213, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 228, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 243, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 260, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 295, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 314, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 335, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 356, }, }, }, statSets = { [1] = { label = "Ancestral Warrior Totem", baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "summon_meta_totem_slams", baseFlags = { totem = true, @@ -77,66 +448,59 @@ skills["AncestralWarriorTotemPlayer"] = { { "base_totem_duration", 8000 }, { "base_totem_range", 60 }, { "ancestral_spirit_base_lockout_time_ms", 600 }, - { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 }, - { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 1000 }, - { "alt_attack_container_main_hand_base_maximum_attack_distance", 13 }, - { "base_number_of_totems_allowed", 1 }, + { "active_skill_requires_X_endurance_charges", 3 }, }, stats = { - "alt_attack_container_main_hand_weapon_minimum_physical_damage", - "alt_attack_container_main_hand_weapon_maximum_physical_damage", "totem_elemental_resistance_%", "totem_chaos_resistance_%", "base_skill_summons_totems", "is_totem", "skill_is_deploy_skill", "totem_has_ancestral_warrior_spirit", - "active_skill_has_alt_attack_container", "display_statset_no_hit_damage", - "alt_attack_container_main_hand_unarmed_overide_two_handed_mace_type", "quality_display_base_totem_duration_is_gem", }, levels = { - [1] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -208,6 +572,7 @@ skills["SupportAncestralWarriorTotemPlayer"] = { }, constantStats = { { "skill_disabled_unless_cloned", 2 }, + { "support_ancestral_warrior_totem_attack_speed_+%_final", -25 }, }, stats = { "base_skill_is_totemified", @@ -275,43 +640,43 @@ skills["ArmourBreakerPlayer"] = { [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 5, }, }, [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 8, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 9, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 10, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 11, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 13, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 14, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 16, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 18, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 19, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 22, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 24, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 8, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 9, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 10, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 13, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 14, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 16, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 17, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 19, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 21, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 23, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 25, }, }, [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 27, }, }, [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 30, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 33, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 36, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 40, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 45, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 50, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 55, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 61, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 68, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 75, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 83, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 93, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 103, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 114, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 126, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 140, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 155, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 172, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 190, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 211, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 234, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 259, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 287, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 318, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 32, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 35, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 38, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 41, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 44, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 47, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 51, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 55, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 59, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 63, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 68, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 72, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 78, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 83, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 89, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 95, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 101, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 108, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 115, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 123, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 131, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 139, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 148, }, }, }, statSets = { [1] = { @@ -333,6 +698,7 @@ skills["ArmourBreakerPlayer"] = { "global_knockback", "is_area_damage", "melee_defer_damage_prediction", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 3, statInterpolation = { 1, }, actorLevel = 1, }, @@ -383,63 +749,60 @@ skills["ArtilleryBallistaPlayer"] = { name = "Artillery Ballista", baseTypeName = "Artillery Ballista", color = 1, - description = "Deploy a Ballista Totem that fires bolts skyward, to explode a short time after landing.", - skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UseGlobalStats] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, }, + description = "Deploy a Ballista Totem that rains down a salvo of Pinning, Maiming bolts.", + skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, - skillTotemId = 19, + skillTotemId = 22, castTime = 1, qualityStats = { - { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", -20 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 22, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 25, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 27, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 31, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 34, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 42, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 46, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 51, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 57, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 63, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 70, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 78, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 86, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 95, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 106, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 117, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 130, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 144, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 160, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 177, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 196, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 218, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 267, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 296, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 328, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 364, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 403, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 447, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 495, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 549, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 608, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 674, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 747, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 827, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 917, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1016, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 16, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 18, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 21, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 23, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 26, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 33, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 36, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 40, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 44, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 49, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 53, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 58, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 63, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 69, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 75, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 81, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 88, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 95, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 102, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 119, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 128, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 137, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 148, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 158, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 170, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 182, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 195, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 222, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 238, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 254, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 271, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 308, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 328, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 349, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 371, }, }, }, statSets = { [1] = { label = "Ballista", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "skill_stat_descriptions", baseFlags = { totem = true, @@ -447,18 +810,13 @@ skills["ArtilleryBallistaPlayer"] = { }, constantStats = { { "base_totem_range", 80 }, - { "base_totem_duration", 16000 }, - { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 }, - { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 2500 }, - { "alt_attack_container_main_hand_base_maximum_attack_distance", 90 }, + { "base_totem_duration", 12000 }, { "base_number_of_totems_allowed", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "alt_attack_container_main_hand_weapon_minimum_physical_damage", - "alt_attack_container_main_hand_weapon_maximum_physical_damage", "totem_elemental_resistance_%", "totem_chaos_resistance_%", "skill_is_deploy_skill", @@ -467,111 +825,111 @@ skills["ArtilleryBallistaPlayer"] = { "can_perform_skill_while_moving", "totem_targets_ignoring_action_distance", "base_deal_no_damage", - "active_skill_has_alt_attack_container", - "alt_attack_container_main_hand_unarmed_overide_crossbow_type", - }, - levels = { - [1] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + "quality_display_base_totem_duration_is_gem", + }, + levels = { + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } skills["ArtilleryBallistaProjectilePlayer"] = { - name = "Artillery Shot", + name = "", hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.CannotChain] = true, [SkillType.UsedByTotem] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.UsedByTotem] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { + { "active_skill_pins_as_though_dealt_damage_+%_final", 10 }, }, levels = { - [1] = { baseMultiplier = 0.3, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.33, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.36, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.39, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.45, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.51, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.55, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.57, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.6, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.62, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.64, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.67, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.69, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.72, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.74, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.77, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.79, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.82, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.84, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.87, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.9, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.93, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.96, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.99, levelRequirement = 0, }, - [28] = { baseMultiplier = 1.03, levelRequirement = 0, }, - [29] = { baseMultiplier = 1.06, levelRequirement = 0, }, - [30] = { baseMultiplier = 1.1, levelRequirement = 0, }, - [31] = { baseMultiplier = 1.13, levelRequirement = 0, }, - [32] = { baseMultiplier = 1.17, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.21, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.25, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.29, levelRequirement = 0, }, - [36] = { baseMultiplier = 1.33, levelRequirement = 0, }, - [37] = { baseMultiplier = 1.38, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.42, levelRequirement = 0, }, - [39] = { baseMultiplier = 1.47, levelRequirement = 0, }, - [40] = { baseMultiplier = 1.52, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = -75, baseMultiplier = 0.15, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = -75, baseMultiplier = 0.16, levelRequirement = 0, }, + [3] = { attackSpeedMultiplier = -75, baseMultiplier = 0.18, levelRequirement = 0, }, + [4] = { attackSpeedMultiplier = -75, baseMultiplier = 0.2, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = -75, baseMultiplier = 0.21, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = -75, baseMultiplier = 0.23, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = -75, baseMultiplier = 0.24, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = -75, baseMultiplier = 0.25, levelRequirement = 0, }, + [9] = { attackSpeedMultiplier = -75, baseMultiplier = 0.26, levelRequirement = 0, }, + [10] = { attackSpeedMultiplier = -75, baseMultiplier = 0.28, levelRequirement = 0, }, + [11] = { attackSpeedMultiplier = -75, baseMultiplier = 0.29, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = -75, baseMultiplier = 0.3, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = -75, baseMultiplier = 0.31, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = -75, baseMultiplier = 0.32, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = -75, baseMultiplier = 0.33, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = -75, baseMultiplier = 0.35, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = -75, baseMultiplier = 0.36, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = -75, baseMultiplier = 0.37, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = -75, baseMultiplier = 0.38, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = -75, baseMultiplier = 0.4, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = -75, baseMultiplier = 0.41, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = -75, baseMultiplier = 0.42, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = -75, baseMultiplier = 0.44, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = -75, baseMultiplier = 0.45, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = -75, baseMultiplier = 0.47, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = -75, baseMultiplier = 0.48, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = -75, baseMultiplier = 0.5, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = -75, baseMultiplier = 0.51, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = -75, baseMultiplier = 0.53, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = -75, baseMultiplier = 0.55, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = -75, baseMultiplier = 0.57, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = -75, baseMultiplier = 0.59, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = -75, baseMultiplier = 0.6, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = -75, baseMultiplier = 0.62, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = -75, baseMultiplier = 0.65, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = -75, baseMultiplier = 0.67, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = -75, baseMultiplier = 0.69, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = -75, baseMultiplier = 0.71, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = -75, baseMultiplier = 0.74, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = -75, baseMultiplier = 0.76, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Artillery", + label = "Bolts", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "artillery_ballista_projectile", + statDescriptionScope = "ripwire_arrow", baseFlags = { attack = true, area = true, @@ -580,22 +938,22 @@ skills["ArtilleryBallistaProjectilePlayer"] = { }, constantStats = { { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "base_number_of_projectiles", 3 }, - { "siege_cascade_fall_time_ms", 800 }, - { "active_skill_base_secondary_area_of_effect_radius", 5 }, - { "active_skill_base_tertiary_area_of_effect_radius", 45 }, - { "siege_cascade_visual_fall_time_delay_%", 70 }, + { "active_skill_base_area_of_effect_radius", 25 }, + { "base_pinned_art_variation", 2 }, { "skill_disabled_unless_cloned", 1 }, + { "base_number_of_projectiles", 4 }, + { "active_skill_pins_as_though_dealt_damage_+%_final", 600 }, { "projectile_minimum_range", 16 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, { "main_hand_base_maximum_attack_distance", 90 }, }, stats = { "base_is_projectile", - "is_area_damage", - "siege_cascade_is_artillery_ballista", + "base_all_damage_can_pin", "base_skill_is_totemified", - "active_skill_ignores_crossbow_manager", + "is_area_damage", + "quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem", + "base_skill_is_ballistified", + "global_maim_on_hit", }, levels = { [1] = { actorLevel = 1, }, @@ -640,80 +998,6 @@ skills["ArtilleryBallistaProjectilePlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - [2] = { - label = "Explosion", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "artillery_ballista_projectile", - baseFlags = { - attack = true, - area = true, - projectile = true, - totem = true, - }, - constantStats = { - { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "base_number_of_projectiles", 3 }, - { "siege_cascade_fall_time_ms", 800 }, - { "active_skill_base_secondary_area_of_effect_radius", 5 }, - { "active_skill_base_tertiary_area_of_effect_radius", 45 }, - { "siege_cascade_visual_fall_time_delay_%", 70 }, - { "skill_disabled_unless_cloned", 1 }, - { "projectile_minimum_range", 16 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, - { "main_hand_base_maximum_attack_distance", 90 }, - { "active_skill_base_secondary_area_of_effect_radius", 13 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, - }, - stats = { - "base_is_projectile", - "is_area_damage", - "siege_cascade_is_artillery_ballista", - "base_skill_is_totemified", - "active_skill_ignores_crossbow_manager", - }, - levels = { - [1] = { baseMultiplier = 0.7, actorLevel = 1, }, - [2] = { baseMultiplier = 0.77, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.84, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.92, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.99, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.05, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.12, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.18, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 1.23, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 1.28, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.34, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.39, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.44, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.5, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.55, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.61, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.67, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.73, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.79, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.85, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.91, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 1.97, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.04, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.1, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.17, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.24, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.32, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 2.4, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 2.48, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 2.56, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 2.64, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 2.73, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 2.82, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 2.91, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 3.01, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 3.11, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 3.21, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 3.32, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 3.43, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 3.55, actorLevel = 288.29998779297, }, - }, - }, } } skills["AttritionPlayer"] = { @@ -845,7 +1129,7 @@ skills["BerserkPlayer"] = { name = "Berserk", baseTypeName = "Berserk", color = 1, - description = "While active, strengthens your Rage and grants you Life Leech based on your Rage, but causes you to lose Life while Raging.", + description = "While active, strengthens your Rage, but causes you to lose Life while not losing Rage.", skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, }, castTime = 1, qualityStats = { @@ -915,53 +1199,291 @@ skills["BerserkPlayer"] = { }, constantStats = { { "life_loss_%_per_minute_per_rage_while_not_losing_rage", 6 }, - { "life_leech_from_physical_attack_damage_permyriad_per_rage", 20 }, { "rage_art_variation", 2 }, }, stats = { "rage_effect_+%", }, levels = { - [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 31, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 33, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 34, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 35, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 36, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 37, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 38, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 39, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 41, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 42, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 43, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 44, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 46, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 47, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 48, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 49, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 50, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 51, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 52, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 53, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 54, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 55, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 56, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 57, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 58, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 59, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 60, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 61, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 62, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 63, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 64, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 65, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 66, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 67, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 68, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 69, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 40, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 41, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 42, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 43, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 44, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 45, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 46, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 47, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 48, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 49, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 50, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 52, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 53, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 54, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 55, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 56, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 57, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 58, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 59, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 61, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 62, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 63, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 64, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 65, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 66, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 67, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 68, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 69, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 69, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 70, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 70, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 71, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 71, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 72, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 72, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 73, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 73, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 74, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["BlackPowderBlitzReservationPlayer"] = { + name = "Black Powder Blitz", + baseTypeName = "Black Powder Blitz", + color = 1, + description = "Replaces your dodge roll with an explosive-assisted leap, firing off a round from your prosthetic cannon leg that Blinds and Ignites enemies in the area you escape from. The explosion will cause any Grenades in its area of effect to also explode.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.DodgeReplacement] = true, [SkillType.Detonator] = true, }, + castTime = 0, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Buff", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["BlackPowderBlitzPlayer"] = { + name = "Black Powder Blitz", + hidden = true, + skillTypes = { [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Travel] = true, [SkillType.CanCancelActions] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Fire] = true, [SkillType.Jumping] = true, }, + castTime = 0.7, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + levels = { + [1] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.5, }, + [2] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.4, }, + [3] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.4, }, + [4] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.3, }, + [5] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.3, }, + [6] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.2, }, + [7] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.2, }, + [8] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.1, }, + [9] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.1, }, + [10] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4, }, + [11] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4, }, + [12] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.9, }, + [13] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.9, }, + [14] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.8, }, + [15] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.8, }, + [16] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.7, }, + [17] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.7, }, + [18] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.6, }, + [19] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.6, }, + [20] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.5, }, + [21] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.5, }, + [22] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.4, }, + [23] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.4, }, + [24] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.3, }, + [25] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.3, }, + [26] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.2, }, + [27] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.2, }, + [28] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.1, }, + [29] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.1, }, + [30] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3, }, + [31] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3, }, + [32] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.9, }, + [33] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.9, }, + [34] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.8, }, + [35] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.8, }, + [36] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.7, }, + [37] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.7, }, + [38] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.6, }, + [39] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.6, }, + [40] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.5, }, + }, + statSets = { + [1] = { + label = "Explosion", + baseEffectiveness = 5.5999999046326, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "black_powder_blitz", + baseFlags = { + hit = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 24 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, + { "action_allowed_queue_time_override_ms", 100 }, + { "black_powder_blitz_travel_distance", 75 }, + { "black_powder_blitz_additional_pushiness_modifier", 5 }, + { "active_skill_stun_threshold_+%_while_performing_action", 100 }, + { "global_chance_to_blind_on_hit_%", 100 }, + }, + stats = { + "secondary_minimum_base_physical_damage", + "secondary_maximum_base_physical_damage", + "skill_cannot_be_knocked_back", + "spell_cast_time_cannot_be_modified", + "action_attack_or_cast_time_uses_animation_length", + "dynamic_target_updating_prioritises_movement_vector", + "base_skill_enabled_while_mounted", + "is_area_damage", + "always_ignite", + }, + notMinionStat = { + "secondary_minimum_base_physical_damage", + "secondary_maximum_base_physical_damage", + }, + levels = { + [1] = { 15, 28, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 21, 38, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 28, 52, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 37, 68, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 58, 107, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 70, 131, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 85, 157, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 101, 187, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 119, 221, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 140, 260, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 164, 304, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 191, 355, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 222, 412, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 257, 477, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 296, 550, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 342, 635, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 394, 731, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 453, 841, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 521, 967, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 598, 1111, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 687, 1276, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 789, 1466, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 906, 1683, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1041, 1933, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1196, 2222, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1375, 2554, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1582, 2937, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1820, 3381, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 2096, 3893, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2416, 4488, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2788, 5177, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 3219, 5978, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3721, 6910, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 4306, 7996, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 4988, 9263, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 5784, 10742, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 6716, 12473, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 7809, 14502, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 9090, 16881, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -971,7 +1493,7 @@ skills["BoneshatterPlayer"] = { baseTypeName = "Boneshatter", color = 1, description = "Attack enemies with a melee Strike. The Strike will cause a Heavy Stun on enemies that are Primed for Stun. Upon causing a Heavy Stun it will also create a Shockwave, dealing a large amount of damage in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -984,43 +1506,43 @@ skills["BoneshatterPlayer"] = { [1] = { attackSpeedMultiplier = -40, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 10, }, }, [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 12, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 15, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 23, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 25, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 28, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 31, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 35, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 39, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 43, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 13, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 21, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 23, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 28, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 31, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 34, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 37, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 40, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 44, }, }, [17] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 48, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 53, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 59, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 65, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 72, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 80, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 89, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 98, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 109, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 121, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 134, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 148, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 164, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 182, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 202, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 224, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 248, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 275, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 305, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 338, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 374, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 415, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 460, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 509, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 52, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 56, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 60, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 65, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 70, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 76, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 82, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 88, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 94, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 101, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 108, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 116, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 124, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 133, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 142, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 152, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 162, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 173, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 184, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 196, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 209, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 223, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 237, }, }, }, statSets = { [1] = { @@ -1041,6 +1563,7 @@ skills["BoneshatterPlayer"] = { stats = { "active_skill_show_crush_range", "crushing_blow", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -1099,9 +1622,11 @@ skills["BoneshatterPlayer"] = { { "melee_conditional_step_distance", 17 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, { "active_skill_base_area_of_effect_radius", 20 }, + { "boneshatter_damage_+%_final_if_created_from_unique", 50 }, }, stats = { "active_skill_show_crush_range", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_hide_usage_stats", }, @@ -1329,7 +1854,6 @@ skills["SupportMetaCastOnBlockPlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -1382,7 +1906,7 @@ skills["MetaCastOnMeleeKillPlayer"] = { fromItem = true, color = 1, description = "While active, gains Energy when you kill enemies with Melee Attacks and triggers socketed spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { }, @@ -1436,7 +1960,6 @@ skills["SupportMetaCastOnMeleeKillPlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [8] = { actorLevel = 26.732000350952, }, @@ -1450,7 +1973,7 @@ skills["MetaCastOnMeleeStunPlayer"] = { fromItem = true, color = 1, description = "While active, gains Energy when you Stun enemies with Melee Attacks and triggers socketed spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { }, @@ -1504,7 +2027,6 @@ skills["SupportMetaCastOnMeleeStunPlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [8] = { actorLevel = 26.732000350952, }, @@ -1516,8 +2038,8 @@ skills["ClusterGrenadePlayer"] = { name = "Cluster Grenade", baseTypeName = "Cluster Grenade", color = 1, - description = "Fire a bouncing Grenade that explodes when its fuse expires, throwing out a nova of mini Grenades that explode when they come to a stop.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + description = "Fire a bouncing Grenade that explodes when its fuse expires, throwing out a ring of mini Grenades that explode when they come to a stop.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -1526,46 +2048,46 @@ skills["ClusterGrenadePlayer"] = { { "base_cooldown_speed_+%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 0.8, cooldown = 10, levelRequirement = 0, cost = { Mana = 15, }, }, - [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 0.88, cooldown = 10, levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 0.97, cooldown = 10, levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.07, cooldown = 10, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.16, cooldown = 10, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.26, cooldown = 10, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.36, cooldown = 10, levelRequirement = 22, cost = { Mana = 28, }, }, - [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.45, cooldown = 10, levelRequirement = 26, cost = { Mana = 31, }, }, - [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.54, cooldown = 10, levelRequirement = 31, cost = { Mana = 34, }, }, - [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.64, cooldown = 10, levelRequirement = 36, cost = { Mana = 38, }, }, - [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.75, cooldown = 10, levelRequirement = 41, cost = { Mana = 42, }, }, - [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.87, cooldown = 10, levelRequirement = 46, cost = { Mana = 46, }, }, - [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.99, cooldown = 10, levelRequirement = 52, cost = { Mana = 52, }, }, - [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.13, cooldown = 10, levelRequirement = 58, cost = { Mana = 57, }, }, - [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.28, cooldown = 10, levelRequirement = 64, cost = { Mana = 63, }, }, - [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.44, cooldown = 10, levelRequirement = 66, cost = { Mana = 70, }, }, - [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.62, cooldown = 10, levelRequirement = 72, cost = { Mana = 78, }, }, - [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.82, cooldown = 10, levelRequirement = 78, cost = { Mana = 86, }, }, - [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.03, cooldown = 10, levelRequirement = 84, cost = { Mana = 96, }, }, - [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.27, cooldown = 10, levelRequirement = 90, cost = { Mana = 106, }, }, - [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.52, cooldown = 10, levelRequirement = 90, cost = { Mana = 118, }, }, - [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.79, cooldown = 10, levelRequirement = 90, cost = { Mana = 131, }, }, - [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.08, cooldown = 10, levelRequirement = 90, cost = { Mana = 145, }, }, - [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.4, cooldown = 10, levelRequirement = 90, cost = { Mana = 161, }, }, - [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.74, cooldown = 10, levelRequirement = 90, cost = { Mana = 178, }, }, - [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.11, cooldown = 10, levelRequirement = 90, cost = { Mana = 197, }, }, - [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.5, cooldown = 10, levelRequirement = 90, cost = { Mana = 219, }, }, - [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.93, cooldown = 10, levelRequirement = 90, cost = { Mana = 242, }, }, - [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.38, cooldown = 10, levelRequirement = 90, cost = { Mana = 269, }, }, - [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.88, cooldown = 10, levelRequirement = 90, cost = { Mana = 298, }, }, - [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.41, cooldown = 10, levelRequirement = 90, cost = { Mana = 330, }, }, - [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.98, cooldown = 10, levelRequirement = 90, cost = { Mana = 366, }, }, - [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.6, cooldown = 10, levelRequirement = 90, cost = { Mana = 405, }, }, - [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.26, cooldown = 10, levelRequirement = 90, cost = { Mana = 449, }, }, - [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.98, cooldown = 10, levelRequirement = 90, cost = { Mana = 498, }, }, - [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.75, cooldown = 10, levelRequirement = 90, cost = { Mana = 551, }, }, - [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.58, cooldown = 10, levelRequirement = 90, cost = { Mana = 611, }, }, - [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.48, cooldown = 10, levelRequirement = 90, cost = { Mana = 677, }, }, - [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.44, cooldown = 10, levelRequirement = 90, cost = { Mana = 750, }, }, - [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.48, cooldown = 10, levelRequirement = 90, cost = { Mana = 832, }, }, + [1] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.2, cooldown = 10, levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.32, cooldown = 10, levelRequirement = 3, cost = { Mana = 17, }, }, + [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.46, cooldown = 10, levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.6, cooldown = 10, levelRequirement = 10, cost = { Mana = 22, }, }, + [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.74, cooldown = 10, levelRequirement = 14, cost = { Mana = 25, }, }, + [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.89, cooldown = 10, levelRequirement = 18, cost = { Mana = 28, }, }, + [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.04, cooldown = 10, levelRequirement = 22, cost = { Mana = 31, }, }, + [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.18, cooldown = 10, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.32, cooldown = 10, levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.46, cooldown = 10, levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.62, cooldown = 10, levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.8, cooldown = 10, levelRequirement = 46, cost = { Mana = 51, }, }, + [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.99, cooldown = 10, levelRequirement = 52, cost = { Mana = 56, }, }, + [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.19, cooldown = 10, levelRequirement = 58, cost = { Mana = 61, }, }, + [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.42, cooldown = 10, levelRequirement = 64, cost = { Mana = 66, }, }, + [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.67, cooldown = 10, levelRequirement = 66, cost = { Mana = 72, }, }, + [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.93, cooldown = 10, levelRequirement = 72, cost = { Mana = 78, }, }, + [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.23, cooldown = 10, levelRequirement = 78, cost = { Mana = 85, }, }, + [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.55, cooldown = 10, levelRequirement = 84, cost = { Mana = 92, }, }, + [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.9, cooldown = 10, levelRequirement = 90, cost = { Mana = 99, }, }, + [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.28, cooldown = 10, levelRequirement = 90, cost = { Mana = 107, }, }, + [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.69, cooldown = 10, levelRequirement = 90, cost = { Mana = 115, }, }, + [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.13, cooldown = 10, levelRequirement = 90, cost = { Mana = 124, }, }, + [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.6, cooldown = 10, levelRequirement = 90, cost = { Mana = 134, }, }, + [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.11, cooldown = 10, levelRequirement = 90, cost = { Mana = 144, }, }, + [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.66, cooldown = 10, levelRequirement = 90, cost = { Mana = 154, }, }, + [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.25, cooldown = 10, levelRequirement = 90, cost = { Mana = 165, }, }, + [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.89, cooldown = 10, levelRequirement = 90, cost = { Mana = 177, }, }, + [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.58, cooldown = 10, levelRequirement = 90, cost = { Mana = 190, }, }, + [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.32, cooldown = 10, levelRequirement = 90, cost = { Mana = 203, }, }, + [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.11, cooldown = 10, levelRequirement = 90, cost = { Mana = 217, }, }, + [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.97, cooldown = 10, levelRequirement = 90, cost = { Mana = 232, }, }, + [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.9, cooldown = 10, levelRequirement = 90, cost = { Mana = 248, }, }, + [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.89, cooldown = 10, levelRequirement = 90, cost = { Mana = 265, }, }, + [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.97, cooldown = 10, levelRequirement = 90, cost = { Mana = 282, }, }, + [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 16.12, cooldown = 10, levelRequirement = 90, cost = { Mana = 301, }, }, + [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 17.37, cooldown = 10, levelRequirement = 90, cost = { Mana = 321, }, }, + [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 18.71, cooldown = 10, levelRequirement = 90, cost = { Mana = 342, }, }, + [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 20.16, cooldown = 10, levelRequirement = 90, cost = { Mana = 364, }, }, + [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 21.72, cooldown = 10, levelRequirement = 90, cost = { Mana = 387, }, }, }, statSets = { [1] = { @@ -1585,11 +2107,13 @@ skills["ClusterGrenadePlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_fire", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_area_of_effect_radius", 25 }, { "active_skill_base_secondary_area_of_effect_radius", 24 }, { "fixed_projectile_spread", 50 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "consume_X_heat_on_skill_use", 15 }, + { "active_skill_all_damage_%_as_fire_if_heat_is_consumed", 50 }, }, stats = { "base_is_projectile", @@ -1646,92 +2170,303 @@ skills["ClusterGrenadePlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - } -} -skills["ClusterGrenadeMiniPlayer"] = { - name = "", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, - weaponTypes = { - ["Crossbow"] = true, - }, - castTime = 1, - qualityStats = { - { "base_cooldown_speed_+%", 1 }, - }, - levels = { - [1] = { baseMultiplier = 0.55, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.61, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.67, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.73, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.86, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.93, levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { baseMultiplier = 1.06, levelRequirement = 0, }, - [10] = { baseMultiplier = 1.13, levelRequirement = 0, }, - [11] = { baseMultiplier = 1.2, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.28, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.37, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.46, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.57, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.68, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.8, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.94, levelRequirement = 0, }, - [19] = { baseMultiplier = 2.08, levelRequirement = 0, }, - [20] = { baseMultiplier = 2.25, levelRequirement = 0, }, - [21] = { baseMultiplier = 2.42, levelRequirement = 0, }, - [22] = { baseMultiplier = 2.61, levelRequirement = 0, }, - [23] = { baseMultiplier = 2.81, levelRequirement = 0, }, - [24] = { baseMultiplier = 3.02, levelRequirement = 0, }, - [25] = { baseMultiplier = 3.26, levelRequirement = 0, }, - [26] = { baseMultiplier = 3.51, levelRequirement = 0, }, - [27] = { baseMultiplier = 3.78, levelRequirement = 0, }, - [28] = { baseMultiplier = 4.07, levelRequirement = 0, }, - [29] = { baseMultiplier = 4.39, levelRequirement = 0, }, - [30] = { baseMultiplier = 4.73, levelRequirement = 0, }, - [31] = { baseMultiplier = 5.09, levelRequirement = 0, }, - [32] = { baseMultiplier = 5.49, levelRequirement = 0, }, - [33] = { baseMultiplier = 5.91, levelRequirement = 0, }, - [34] = { baseMultiplier = 6.37, levelRequirement = 0, }, - [35] = { baseMultiplier = 6.86, levelRequirement = 0, }, - [36] = { baseMultiplier = 7.39, levelRequirement = 0, }, - [37] = { baseMultiplier = 7.96, levelRequirement = 0, }, - [38] = { baseMultiplier = 8.58, levelRequirement = 0, }, - [39] = { baseMultiplier = 9.24, levelRequirement = 0, }, - [40] = { baseMultiplier = 9.95, levelRequirement = 0, }, - }, - statSets = { - [1] = { + [2] = { label = "Mini Grenades", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "cluster_grenade_mini", + statDescriptionScope = "cluster_grenade", baseFlags = { attack = true, area = true, projectile = true, }, constantStats = { + { "action_allowed_queue_time_override_ms", 1000 }, + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_secondary_area_of_effect_radius", 24 }, + { "fixed_projectile_spread", 50 }, + { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "consume_X_heat_on_skill_use", 15 }, + { "active_skill_all_damage_%_as_fire_if_heat_is_consumed", 50 }, { "action_allowed_queue_time_override_ms", 1000 }, { "base_skill_detonation_time", 3000 }, { "active_skill_base_area_of_effect_radius", 14 }, - { "base_number_of_projectiles", 14 }, - { "projectile_angle_variance", 60 }, + { "base_number_of_projectiles", 18 }, + { "projectile_angle_variance", 70 }, { "projectile_distance_variance", 300 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, }, stats = { "base_is_projectile", + "projectile_ballistic_angle_from_reference_event", + "projectile_uses_contact_position", "is_area_damage", + "action_can_be_used_in_aiming_stance", "ballistic_projectiles_always_bounce", + "can_perform_skill_while_moving", + "projectile_uses_contact_direction", + "base_skill_show_average_damage_instead_of_dps", + "projectiles_cannot_fork", "projectile_ballistic_angle_from_target_distance", "no_additional_projectiles", "projectiles_nova", "projectiles_not_offset", - "base_skill_show_average_damage_instead_of_dps", "display_statset_hide_usage_stats", - "projectiles_cannot_fork", "area_of_effect_radius_modifiers_apply_to_projectile_speed", + "is_cluster_grenade_bomblet", + }, + levels = { + [1] = { baseMultiplier = 0.7, actorLevel = 1, }, + [2] = { baseMultiplier = 0.77, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.85, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.93, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.02, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.1, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.19, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.27, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.35, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.44, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.53, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.63, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.74, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.86, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.99, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 2.14, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.29, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.47, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.65, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 2.86, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 3.08, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 3.32, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 3.57, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 3.85, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 4.15, actorLevel = 136.875, }, + [26] = { baseMultiplier = 4.47, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 4.81, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 5.18, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 5.59, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 6.02, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 6.48, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 6.98, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 7.52, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 8.1, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 8.73, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 9.41, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 10.13, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 10.92, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 11.76, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 12.67, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CrossbowRequiemAmmoPlayer"] = { + name = "Compose Requiem", + baseTypeName = "Compose Requiem", + fromItem = true, + color = 1, + description = "Your weapon passively accumulates anguish from the tormented souls within. When fully charged, use this skill to compose the Requiem, transforming your Crossbow shot into a torrent of anguish for a short, fixed amount of time. Does not use Ammunition.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 22, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 25, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 29, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 33, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 37, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 42, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 47, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 52, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 58, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 64, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 70, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 77, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 84, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 92, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 100, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 109, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 118, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 128, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 139, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 150, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 162, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 175, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 202, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 217, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 234, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 250, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 268, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 288, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 308, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 352, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 376, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 401, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 428, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 456, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 486, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 518, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 551, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 587, }, }, + }, + statSets = { + [1] = { + label = "Compose Requiem", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "rapid_shot_requiem_ammo", + baseFlags = { + }, + constantStats = { + { "action_allowed_queue_time_override_ms", 1000 }, + { "rapidshot_requiem_number_of_stacks_per_minute", 200 }, + { "rapidshot_requiem_base_buff_count_requirement", 100 }, + { "rapidshot_requiem_active_duration_ms", 12000 }, + }, + stats = { + "action_can_be_used_in_aiming_stance", + "can_perform_skill_while_moving", + "base_deal_no_damage", + "display_statset_hide_usage_stats", + "crossbow_ammo_skill_does_not_transition", + "crossbow_ammo_has_no_ammo", + "skill_is_instant_while_sprinting", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CrossbowRequiemPlayer"] = { + name = "Requiem", + hidden = true, + fromItem = true, + description = "Unleashes a torrent of anguish that bombard the target area, dealing damage in an area on impact. Does not use Ammunition and can be fired freely until the Requiem ends.", + skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CrossbowSkill] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.1 }, + }, + levels = { + [1] = { attackSpeedMultiplier = 300, baseMultiplier = 3, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = 300, baseMultiplier = 3.3, levelRequirement = 0, }, + [3] = { attackSpeedMultiplier = 300, baseMultiplier = 3.63, levelRequirement = 0, }, + [4] = { attackSpeedMultiplier = 300, baseMultiplier = 3.96, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = 300, baseMultiplier = 4.27, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = 300, baseMultiplier = 4.59, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = 300, baseMultiplier = 4.92, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = 300, baseMultiplier = 5.21, levelRequirement = 0, }, + [9] = { attackSpeedMultiplier = 300, baseMultiplier = 5.47, levelRequirement = 0, }, + [10] = { attackSpeedMultiplier = 300, baseMultiplier = 5.74, levelRequirement = 0, }, + [11] = { attackSpeedMultiplier = 300, baseMultiplier = 6.03, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = 300, baseMultiplier = 6.33, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = 300, baseMultiplier = 6.65, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = 300, baseMultiplier = 6.98, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = 300, baseMultiplier = 7.33, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = 300, baseMultiplier = 7.7, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = 300, baseMultiplier = 8.08, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = 300, baseMultiplier = 8.49, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = 300, baseMultiplier = 8.91, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = 300, baseMultiplier = 9.36, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = 300, baseMultiplier = 9.82, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = 300, baseMultiplier = 10.32, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = 300, baseMultiplier = 10.83, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = 300, baseMultiplier = 11.37, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = 300, baseMultiplier = 11.94, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = 300, baseMultiplier = 12.54, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = 300, baseMultiplier = 13.17, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = 300, baseMultiplier = 13.82, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = 300, baseMultiplier = 14.52, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = 300, baseMultiplier = 15.24, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = 300, baseMultiplier = 16, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = 300, baseMultiplier = 16.8, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = 300, baseMultiplier = 17.64, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = 300, baseMultiplier = 18.53, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = 300, baseMultiplier = 19.45, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = 300, baseMultiplier = 20.42, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = 300, baseMultiplier = 21.45, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = 300, baseMultiplier = 22.52, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = 300, baseMultiplier = 23.64, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = 300, baseMultiplier = 24.83, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Requiem", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "rapid_shot_requiem", + baseFlags = { + projectile = true, + area = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 16 }, + { "active_skill_base_secondary_area_of_effect_radius", 24 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 }, + }, + stats = { + "base_is_projectile", + "action_requires_aiming_stance", + "should_use_additive_aiming_animation", + "projectile_uses_contact_position", + "projectiles_crossbow_barrage", + "can_perform_skill_while_moving", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "is_area_damage", + "crossbow_skill_has_no_ammo", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -1784,7 +2519,7 @@ skills["StaffConsecratePlayer"] = { fromItem = true, color = 1, description = "Create an area of Consecrated Ground around you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1.25, qualityStats = { { "base_cast_speed_+%", 0.5 }, @@ -1838,59 +2573,60 @@ skills["StaffConsecratePlayer"] = { statDescriptionScope = "consecrate", baseFlags = { spell = true, + duration = true, }, constantStats = { { "base_skill_effect_duration", 8000 }, { "active_skill_base_area_of_effect_radius", 22 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "life_regeneration_rate_per_minute_%", + "consecrated_ground_effect_+%", "can_perform_skill_while_moving", }, levels = { - [1] = { 240, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 250, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 260, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 270, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 280, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 290, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 310, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 320, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 330, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 340, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 350, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 360, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 370, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 380, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 390, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 410, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 430, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 450, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 460, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 470, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 480, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 490, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 500, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 510, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 520, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 530, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 540, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 550, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 560, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 570, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 580, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 590, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 600, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 610, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 620, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 630, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 640, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 650, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 2, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 8, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 10, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 12, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 14, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 16, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 18, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 24, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 26, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 28, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 30, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 32, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 34, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 36, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 38, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 40, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 42, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 44, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 46, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 48, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 50, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 52, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 54, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 56, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 58, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 60, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 62, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 64, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 66, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 68, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 70, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 72, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 74, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 76, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 78, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1899,8 +2635,8 @@ skills["DefianceBannerReservationPlayer"] = { name = "Defiance Banner", baseTypeName = "Defiance Banner", color = 1, - description = "While active, killing enemies with Attacks or standing near a Unique enemy generates Valour. Using this Skill consumes its Valour to place an inspiring Banner with an Aura that grants you and nearby Allies Armour, Evasion and movement speed while the Banner lasts. The Banner cannot gain Valour while placed, and you cannot place a Banner while you already have a Banner placed.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, }, + description = "While active, Attacking enemies builds Glory. When you have maximum Glory, you can place an inspiring Banner for a duration with an Aura that grants you and nearby Allies Armour, Evasion and movement speed.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -1946,14 +2682,68 @@ skills["DefianceBannerReservationPlayer"] = { [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, }, + statSets = { + [1] = { + label = "Defiance Banner", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } } skills["DefianceBannerPlayer"] = { name = "Defiance Banner", hidden = true, - skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, }, - castTime = 1, + skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, }, + castTime = 0.5, qualityStats = { - { "banner_aura_magnitude_+%_final_per_resource", 0.1 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -2016,10 +2806,11 @@ skills["DefianceBannerPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 45 }, - { "banner_aura_magnitude_+%_final_per_resource", 10 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_requires_X_glory", 200 }, + { "active_skill_generates_mp_%_glory_per_attack_hit", 100 }, }, stats = { "base_skill_effect_duration", @@ -2027,52 +2818,52 @@ skills["DefianceBannerPlayer"] = { "base_skill_buff_movement_speed_+%_to_apply", "can_perform_skill_while_moving", "base_deal_no_damage", - "quality_display_banner_buff_effect_+%_final_per_resource_is_gem", + "active_skill_can_generate_glory_even_if_an_instance_of_this_skill_is_active", }, notMinionStat = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6050, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6100, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6150, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6200, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6250, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6300, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6350, 7, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6400, 7, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6450, 7, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6500, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6550, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6600, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 6650, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 6700, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 6750, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 6800, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 6850, 9, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 6900, 9, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 6950, 9, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7000, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7050, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7100, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7150, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7200, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7250, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7300, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7350, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 7400, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 7450, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 7500, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 7550, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 7600, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 7650, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 7700, 12, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 7750, 12, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 7800, 12, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 7850, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 7900, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 7950, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 7000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 7200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 7400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 7800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 8000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 8200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 8400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 8600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 8800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 9000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 9200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 9400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 9600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 9800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 10000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 10200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 10400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 10600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 10800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 11000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 11200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 11400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 11600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 11800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 11900, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 12000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 12100, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 12200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 12300, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 12400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 12500, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 12600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 12700, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 12800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2081,8 +2872,8 @@ skills["DreadBannerReservationPlayer"] = { name = "Dread Banner", baseTypeName = "Dread Banner", color = 1, - description = "While active, killing enemies with Attacks or standing near a Unique enemy generates Valour. Using this Skill consumes its Valour to place an inspiring Banner with an Aura that grants you and nearby Allies Stun Threshold, Elemental Ailment Threshold and Flask charges while the Banner lasts. The Banner cannot gain Valour while placed, and you cannot place a Banner while you already have a Banner placed.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, }, + description = "While active, Attacking enemies builds Glory. When you have maximum Glory, you can place an inspiring Banner for a duration with an Aura that grants you and nearby Allies Elemental Ailment Threshold, Maximum Elemental Resistances and Flask charges.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -2128,36 +2919,90 @@ skills["DreadBannerReservationPlayer"] = { [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, }, -} -skills["DreadBannerPlayer"] = { - name = "Dread Banner", - hidden = true, - skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, }, - castTime = 1, - qualityStats = { - { "banner_aura_magnitude_+%_final_per_resource", 0.1 }, - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, + statSets = { + [1] = { + label = "Dread Banner", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["DreadBannerPlayer"] = { + name = "Dread Banner", + hidden = true, + skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, }, + castTime = 0.5, + qualityStats = { + { "base_reservation_efficiency_+%", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, [21] = { levelRequirement = 0, }, [22] = { levelRequirement = 0, }, [23] = { levelRequirement = 0, }, @@ -2199,63 +3044,65 @@ skills["DreadBannerPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 45 }, - { "banner_aura_magnitude_+%_final_per_resource", 10 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_requires_X_glory", 200 }, + { "active_skill_generates_mp_%_glory_per_attack_hit", 100 }, }, stats = { "base_skill_effect_duration", - "base_skill_buff_stun_and_ailment_threshold_+%_final_to_apply", + "base_skill_buff_ailment_threshold_+%_final_to_apply", "base_skill_buff_flask_charge_per_min_to_apply", + "base_skill_buff_additional_maximum_all_elemental_resistances_%_to_apply", "can_perform_skill_while_moving", "base_deal_no_damage", - "quality_display_banner_buff_effect_+%_final_per_resource_is_gem", + "active_skill_can_generate_glory_even_if_an_instance_of_this_skill_is_active", }, notMinionStat = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6050, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6100, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6150, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6200, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6250, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6300, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6350, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6400, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6450, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6500, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6550, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6600, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 6650, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 6700, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 6750, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 6800, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 6850, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 6900, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 6950, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7000, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7050, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7100, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7150, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7200, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7250, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7300, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7350, 17, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 7400, 17, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 7450, 17, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 7500, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 7550, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 7600, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 7650, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 7700, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 7750, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 7800, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 7850, 19, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 7900, 19, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 7950, 19, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 7000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 7200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 7400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 7800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 8000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 8200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 8400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 8600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 8800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 9000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 9200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 9400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 9600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 9800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 10000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 10200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 10400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 10600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 10800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 11000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 11200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 11400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 11600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 11800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 11900, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 12000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 12100, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 12200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 12300, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 12400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 12500, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 12600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 12700, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 12800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2277,44 +3124,44 @@ skills["EarthquakePlayer"] = { levels = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 8, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 9, }, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 10, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 13, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 16, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 17, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 24, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 26, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 29, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 33, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 36, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 40, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 11, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 12, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 14, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 16, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 17, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 19, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 22, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 24, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 26, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 29, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 32, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 34, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 38, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 41, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 44, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 49, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 55, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 61, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 67, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 75, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 83, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 92, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 102, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 113, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 125, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 138, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 153, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 170, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 188, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 209, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 232, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 257, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 284, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 315, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 349, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 387, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 429, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 475, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 48, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 52, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 56, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 61, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 66, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 71, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 76, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 82, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 88, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 94, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 101, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 108, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 116, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 124, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 133, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 142, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 151, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 161, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 172, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 183, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 195, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 208, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 221, }, }, }, statSets = { [1] = { @@ -2341,7 +3188,7 @@ skills["EarthquakePlayer"] = { { "skill_jagged_ground_base_duration_ms", 4000 }, { "jagged_ground_effect_+%", 100 }, { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_tertiary_area_of_effect_radius", 22 }, + { "active_skill_base_tertiary_area_of_effect_radius", 18 }, { "melee_conditional_step_distance", 10 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, }, @@ -2418,13 +3265,13 @@ skills["EarthquakePlayer"] = { constantStats = { { "jagged_ground_effect_+%", 100 }, { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_tertiary_area_of_effect_radius", 22 }, + { "active_skill_base_tertiary_area_of_effect_radius", 18 }, { "melee_conditional_step_distance", 10 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, - { "active_skill_base_area_of_effect_radius", 16 }, }, stats = { "base_number_of_earthquakes_allowed", + "active_skill_base_area_of_effect_radius", "is_area_damage", "is_player_earthquake", "can_create_jagged_ground", @@ -2432,46 +3279,46 @@ skills["EarthquakePlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { 2, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 2, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, baseMultiplier = 1.82, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 2, baseMultiplier = 1.98, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 2, baseMultiplier = 2.14, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, baseMultiplier = 2.3, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, baseMultiplier = 2.46, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 2, baseMultiplier = 2.61, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 3, baseMultiplier = 2.74, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 3, baseMultiplier = 2.87, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 3, baseMultiplier = 3.02, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 3, baseMultiplier = 3.17, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 3, baseMultiplier = 3.32, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 3, baseMultiplier = 3.49, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 3, baseMultiplier = 3.67, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 4, baseMultiplier = 3.85, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 4, baseMultiplier = 4.04, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 4, baseMultiplier = 4.24, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 4, baseMultiplier = 4.46, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 4, baseMultiplier = 4.68, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 5, baseMultiplier = 4.91, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 5, baseMultiplier = 5.16, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 5, baseMultiplier = 5.42, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 5, baseMultiplier = 5.69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 5, baseMultiplier = 5.97, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 6, baseMultiplier = 6.27, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 6, baseMultiplier = 6.58, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 6, baseMultiplier = 6.91, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 6, baseMultiplier = 7.26, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 6, baseMultiplier = 7.62, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 7, baseMultiplier = 8, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 7, baseMultiplier = 8.4, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 7, baseMultiplier = 8.82, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 7, baseMultiplier = 9.26, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 7, baseMultiplier = 9.73, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 8, baseMultiplier = 10.21, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 8, baseMultiplier = 10.72, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 8, baseMultiplier = 11.26, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 8, baseMultiplier = 11.82, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 8, baseMultiplier = 12.41, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 2, 6, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 6, baseMultiplier = 1.76, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 6, baseMultiplier = 1.94, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2, 7, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 2, 7, baseMultiplier = 2.29, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 7, baseMultiplier = 2.47, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 8, baseMultiplier = 2.66, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, 8, baseMultiplier = 2.83, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, 8, baseMultiplier = 2.99, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3, 9, baseMultiplier = 3.16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 3, 9, baseMultiplier = 3.35, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 3, 9, baseMultiplier = 3.54, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 3, 10, baseMultiplier = 3.76, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 3, 10, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 3, 10, baseMultiplier = 4.23, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 4, 11, baseMultiplier = 4.5, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 4, 11, baseMultiplier = 4.79, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 4, 11, baseMultiplier = 5.1, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 4, 12, baseMultiplier = 5.43, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 4, 12, baseMultiplier = 5.8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 5, 12, baseMultiplier = 6.18, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 5, 13, baseMultiplier = 6.59, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 5, 13, baseMultiplier = 7.03, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 5, 13, baseMultiplier = 7.5, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 5, 14, baseMultiplier = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 6, 14, baseMultiplier = 8.53, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 6, 14, baseMultiplier = 9.1, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 6, 15, baseMultiplier = 9.71, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 6, 15, baseMultiplier = 10.36, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 6, 15, baseMultiplier = 11.04, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 7, 15, baseMultiplier = 11.78, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 7, 16, baseMultiplier = 12.57, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 7, 16, baseMultiplier = 13.4, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 7, 16, baseMultiplier = 14.3, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 7, 16, baseMultiplier = 15.25, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8, 16, baseMultiplier = 16.26, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8, 16, baseMultiplier = 17.35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8, 17, baseMultiplier = 18.5, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8, 17, baseMultiplier = 19.74, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8, 17, baseMultiplier = 21.05, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2481,56 +3328,56 @@ skills["EarthshatterPlayer"] = { baseTypeName = "Earthshatter", color = 1, description = "Slam the ground, sending out a fissure that deals area damage to enemies it passes under and thrusts a spike from the ground when it ends. Warcries performed near the spike will cause it to shatter, damaging surrounding enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.SupportedByFountains] = true, [SkillType.CreatesFissure] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.SupportedByFountains] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CanCreateStoneElementals] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, }, castTime = 1, qualityStats = { - { "spike_slam_max_spikes", 0.15 }, + { "earthshatter_damage_+%_final_per_spike", 0.3 }, }, levels = { [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 11, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 18, cost = { Mana = 13, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.74, levelRequirement = 22, cost = { Mana = 14, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.78, levelRequirement = 26, cost = { Mana = 16, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 31, cost = { Mana = 17, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.86, levelRequirement = 36, cost = { Mana = 19, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.9, levelRequirement = 41, cost = { Mana = 21, }, }, - [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 46, cost = { Mana = 24, }, }, - [13] = { attackSpeedMultiplier = -20, levelRequirement = 52, cost = { Mana = 26, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 58, cost = { Mana = 29, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.1, levelRequirement = 64, cost = { Mana = 33, }, }, - [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 36, }, }, + [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 10, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 10, cost = { Mana = 11, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 12, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 18, cost = { Mana = 14, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.74, levelRequirement = 22, cost = { Mana = 16, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.78, levelRequirement = 26, cost = { Mana = 17, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 31, cost = { Mana = 19, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.86, levelRequirement = 36, cost = { Mana = 21, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.9, levelRequirement = 41, cost = { Mana = 24, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 46, cost = { Mana = 26, }, }, + [13] = { attackSpeedMultiplier = -20, levelRequirement = 52, cost = { Mana = 28, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 58, cost = { Mana = 31, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.1, levelRequirement = 64, cost = { Mana = 34, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 37, }, }, [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.21, levelRequirement = 72, cost = { Mana = 40, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 78, cost = { Mana = 45, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.34, levelRequirement = 84, cost = { Mana = 49, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 55, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 61, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 67, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 75, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 83, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 92, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 102, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 113, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 125, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 139, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 154, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 170, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 189, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 209, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 232, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 257, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.06, levelRequirement = 90, cost = { Mana = 285, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 316, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 350, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 388, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 3.72, levelRequirement = 90, cost = { Mana = 430, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 78, cost = { Mana = 44, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.34, levelRequirement = 84, cost = { Mana = 47, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 51, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 55, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 59, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 64, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 69, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 74, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 79, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 85, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 91, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 98, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 105, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 112, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 120, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 128, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 137, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 146, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.06, levelRequirement = 90, cost = { Mana = 155, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 166, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 177, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 188, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 3.72, levelRequirement = 90, cost = { Mana = 200, }, }, }, statSets = { [1] = { @@ -2665,8 +3512,8 @@ skills["EmergencyReloadPlayer"] = { name = "Emergency Reload", baseTypeName = "Emergency Reload", color = 1, - description = "Instantly reload your active Crossbow Ammunition and Empowers the loaded bolts to deal more damage.", - skillTypes = { [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, }, + description = "Instantly reload all your Crossbow Ammunition clips and Empower each clip's Ammunition to deal more damage for a duration.", + skillTypes = { [SkillType.Instant] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -2677,44 +3524,44 @@ skills["EmergencyReloadPlayer"] = { levels = { [1] = { storedUses = 1, levelRequirement = 0, cooldown = 45, cost = { Mana = 12, }, }, [2] = { storedUses = 1, levelRequirement = 3, cooldown = 45, cost = { Mana = 14, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 45, cost = { Mana = 15, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 45, cost = { Mana = 17, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 45, cost = { Mana = 19, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 45, cost = { Mana = 21, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 45, cost = { Mana = 24, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 45, cost = { Mana = 27, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 45, cost = { Mana = 30, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 45, cost = { Mana = 33, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 45, cost = { Mana = 37, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 45, cost = { Mana = 41, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 45, cost = { Mana = 16, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 45, cost = { Mana = 18, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 45, cost = { Mana = 20, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 45, cost = { Mana = 23, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 45, cost = { Mana = 26, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 45, cost = { Mana = 28, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 45, cost = { Mana = 32, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 45, cost = { Mana = 35, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 45, cost = { Mana = 38, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 45, cost = { Mana = 42, }, }, [13] = { storedUses = 1, levelRequirement = 52, cooldown = 45, cost = { Mana = 46, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 45, cost = { Mana = 52, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 45, cost = { Mana = 58, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 45, cost = { Mana = 64, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 45, cost = { Mana = 72, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 45, cost = { Mana = 80, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 45, cost = { Mana = 89, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 100, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 111, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 124, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 138, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 154, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 172, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 192, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 214, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 239, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 266, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 297, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 331, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 369, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 412, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 459, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 512, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 571, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 637, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 710, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 792, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 883, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 45, cost = { Mana = 50, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 45, cost = { Mana = 55, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 45, cost = { Mana = 60, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 45, cost = { Mana = 65, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 45, cost = { Mana = 70, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 45, cost = { Mana = 76, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 82, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 89, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 96, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 103, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 111, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 119, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 128, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 138, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 148, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 158, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 169, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 181, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 193, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 207, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 221, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 235, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 251, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 267, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 285, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 303, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 323, }, }, }, statSets = { [1] = { @@ -2726,6 +3573,7 @@ skills["EmergencyReloadPlayer"] = { }, constantStats = { { "base_skill_effect_duration", 6000 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { "emergency_reload_damage_+%_final", @@ -2785,7 +3633,7 @@ skills["ExplosiveGrenadePlayer"] = { baseTypeName = "Explosive Grenade", color = 1, description = "Fire a bouncing Grenade that unleashes a devastating fiery blast when its fuse expires.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -2796,44 +3644,44 @@ skills["ExplosiveGrenadePlayer"] = { levels = { [1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.15, cooldown = 5, levelRequirement = 0, cost = { Mana = 10, }, }, [2] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 5, levelRequirement = 3, cost = { Mana = 11, }, }, - [3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.62, cooldown = 5, levelRequirement = 6, cost = { Mana = 12, }, }, - [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.87, cooldown = 5, levelRequirement = 10, cost = { Mana = 14, }, }, - [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.12, cooldown = 5, levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.38, cooldown = 5, levelRequirement = 18, cost = { Mana = 17, }, }, - [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.65, cooldown = 5, levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.91, cooldown = 5, levelRequirement = 26, cost = { Mana = 21, }, }, - [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.15, cooldown = 5, levelRequirement = 31, cost = { Mana = 23, }, }, - [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.41, cooldown = 5, levelRequirement = 36, cost = { Mana = 26, }, }, - [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.7, cooldown = 5, levelRequirement = 41, cost = { Mana = 29, }, }, - [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.01, cooldown = 5, levelRequirement = 46, cost = { Mana = 32, }, }, - [13] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.35, cooldown = 5, levelRequirement = 52, cost = { Mana = 35, }, }, - [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.72, cooldown = 5, levelRequirement = 58, cost = { Mana = 39, }, }, - [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.13, cooldown = 5, levelRequirement = 64, cost = { Mana = 43, }, }, - [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.57, cooldown = 5, levelRequirement = 66, cost = { Mana = 48, }, }, + [3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.62, cooldown = 5, levelRequirement = 6, cost = { Mana = 13, }, }, + [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.87, cooldown = 5, levelRequirement = 10, cost = { Mana = 15, }, }, + [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.12, cooldown = 5, levelRequirement = 14, cost = { Mana = 17, }, }, + [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.38, cooldown = 5, levelRequirement = 18, cost = { Mana = 19, }, }, + [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.65, cooldown = 5, levelRequirement = 22, cost = { Mana = 21, }, }, + [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.91, cooldown = 5, levelRequirement = 26, cost = { Mana = 23, }, }, + [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.15, cooldown = 5, levelRequirement = 31, cost = { Mana = 26, }, }, + [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.41, cooldown = 5, levelRequirement = 36, cost = { Mana = 29, }, }, + [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.7, cooldown = 5, levelRequirement = 41, cost = { Mana = 32, }, }, + [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.01, cooldown = 5, levelRequirement = 46, cost = { Mana = 35, }, }, + [13] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.35, cooldown = 5, levelRequirement = 52, cost = { Mana = 38, }, }, + [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.72, cooldown = 5, levelRequirement = 58, cost = { Mana = 41, }, }, + [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.13, cooldown = 5, levelRequirement = 64, cost = { Mana = 45, }, }, + [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.57, cooldown = 5, levelRequirement = 66, cost = { Mana = 49, }, }, [17] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.05, cooldown = 5, levelRequirement = 72, cost = { Mana = 53, }, }, - [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.57, cooldown = 5, levelRequirement = 78, cost = { Mana = 59, }, }, - [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.15, cooldown = 5, levelRequirement = 84, cost = { Mana = 66, }, }, - [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 73, }, }, - [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 9.46, cooldown = 5, levelRequirement = 90, cost = { Mana = 81, }, }, - [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 89, }, }, - [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.97, cooldown = 5, levelRequirement = 90, cost = { Mana = 99, }, }, - [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 11.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 110, }, }, - [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 12.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 122, }, }, - [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 13.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 135, }, }, - [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 14.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 150, }, }, - [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 15.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 166, }, }, - [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 17.16, cooldown = 5, levelRequirement = 90, cost = { Mana = 184, }, }, - [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 18.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 204, }, }, - [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 19.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 226, }, }, - [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 21.45, cooldown = 5, levelRequirement = 90, cost = { Mana = 250, }, }, - [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 23.11, cooldown = 5, levelRequirement = 90, cost = { Mana = 277, }, }, - [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 24.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 308, }, }, - [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 26.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 341, }, }, - [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 28.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 378, }, }, - [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 31.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 419, }, }, - [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 33.53, cooldown = 5, levelRequirement = 90, cost = { Mana = 464, }, }, - [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 36.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 514, }, }, - [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 38.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 570, }, }, + [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.57, cooldown = 5, levelRequirement = 78, cost = { Mana = 58, }, }, + [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.15, cooldown = 5, levelRequirement = 84, cost = { Mana = 63, }, }, + [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 68, }, }, + [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 9.46, cooldown = 5, levelRequirement = 90, cost = { Mana = 73, }, }, + [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 79, }, }, + [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.97, cooldown = 5, levelRequirement = 90, cost = { Mana = 85, }, }, + [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 11.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 91, }, }, + [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 12.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 98, }, }, + [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 13.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 105, }, }, + [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 14.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 113, }, }, + [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 15.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 121, }, }, + [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 17.16, cooldown = 5, levelRequirement = 90, cost = { Mana = 130, }, }, + [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 18.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 139, }, }, + [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 19.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 149, }, }, + [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 21.45, cooldown = 5, levelRequirement = 90, cost = { Mana = 159, }, }, + [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 23.11, cooldown = 5, levelRequirement = 90, cost = { Mana = 170, }, }, + [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 24.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 181, }, }, + [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 26.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 193, }, }, + [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 28.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 206, }, }, + [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 31.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 220, }, }, + [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 33.53, cooldown = 5, levelRequirement = 90, cost = { Mana = 234, }, }, + [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 36.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 249, }, }, + [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 38.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 265, }, }, }, statSets = { [1] = { @@ -2852,9 +3700,11 @@ skills["ExplosiveGrenadePlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "fixed_projectile_spread", 30 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "consume_X_heat_on_skill_use", 15 }, + { "active_skill_all_damage_%_as_fire_if_heat_is_consumed", 50 }, }, stats = { "active_skill_base_area_of_effect_radius", @@ -2914,212 +3764,12 @@ skills["ExplosiveGrenadePlayer"] = { }, } } -skills["ExsanguinatePlayer"] = { - name = "Exsanguinate", - baseTypeName = "Exsanguinate", - fromItem = true, - color = 1, - description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies hit by the tendrils take Physical damage and are inflicted with a Debuff that deals Physical damage over time.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 1, - qualityStats = { - { "blood_tendrils_beam_count", 0.05 }, - }, - levels = { - [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - }, - statSets = { - [1] = { - label = "Tendrils", - baseEffectiveness = 0.81000000238419, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "exsanguinate", - baseFlags = { - spell = true, - duration = true, - chaining = true, - }, - constantStats = { - { "number_of_chains", 2 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "blood_tendrils_beam_count", 3 }, - }, - stats = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - "quality_display_exsanguinate_beam_targets_is_gem", - "can_perform_skill_while_moving", - }, - notMinionStat = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - }, - levels = { - [1] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 70, 106, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 100, 151, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 113, 169, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 127, 190, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 142, 213, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 159, 239, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 179, 268, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 201, 301, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 225, 338, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 253, 379, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 284, 426, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 319, 478, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 358, 537, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 402, 604, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 452, 679, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 509, 763, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 573, 859, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 645, 968, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 727, 1091, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Damage over Time", - baseEffectiveness = 0.81000000238419, - incrementalEffectiveness = 0.18000000715256, - damageIncrementalEffectiveness = 0.0092000002041459, - statDescriptionScope = "exsanguinate", - baseFlags = { - spell = true, - duration = true, - chaining = true, - }, - constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "base_skill_effect_duration", 1000 }, - { "pvp_skill_dot_attack_time_override_ms", 2000 }, - }, - stats = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - "base_physical_damage_to_deal_per_minute", - "can_perform_skill_while_moving", - "spell_damage_modifiers_apply_to_skill_dot", - "display_statset_hide_usage_stats", - }, - notMinionStat = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - }, - levels = { - [1] = { 0, 0, 142, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 209, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 304, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 413, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 535, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 674, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 832, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 1009, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 1211, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 1439, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 1697, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 1990, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 2321, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 2698, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 3125, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 3610, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 4161, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 4789, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 5504, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 6319, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 7250, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 8312, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 9527, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 10918, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 12512, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 14341, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 16441, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 18856, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 21637, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 24842, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 28540, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 32814, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 37758, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 43485, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 50128, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 57843, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 66816, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 77266, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 89451, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 103681, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} skills["FlashGrenadePlayer"] = { name = "Flash Grenade", baseTypeName = "Flash Grenade", color = 1, description = "Fire a bouncing Grenade that unleashes a Blinding, Stunning explosion when its fuse expires.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -3128,46 +3778,46 @@ skills["FlashGrenadePlayer"] = { { "base_cooldown_speed_+%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -25, storedUses = 1, cooldown = 5, levelRequirement = 0, cost = { Mana = 8, }, }, + [1] = { attackSpeedMultiplier = -25, storedUses = 1, cooldown = 5, levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.1, cooldown = 5, levelRequirement = 3, cost = { Mana = 9, }, }, [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 6, cost = { Mana = 10, }, }, [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.33, cooldown = 5, levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.45, cooldown = 5, levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.57, cooldown = 5, levelRequirement = 18, cost = { Mana = 13, }, }, - [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.7, cooldown = 5, levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.82, cooldown = 5, levelRequirement = 26, cost = { Mana = 16, }, }, - [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.93, cooldown = 5, levelRequirement = 31, cost = { Mana = 18, }, }, - [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.05, cooldown = 5, levelRequirement = 36, cost = { Mana = 20, }, }, - [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.19, cooldown = 5, levelRequirement = 41, cost = { Mana = 22, }, }, - [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.33, cooldown = 5, levelRequirement = 46, cost = { Mana = 25, }, }, - [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.49, cooldown = 5, levelRequirement = 52, cost = { Mana = 27, }, }, - [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.66, cooldown = 5, levelRequirement = 58, cost = { Mana = 30, }, }, - [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.85, cooldown = 5, levelRequirement = 64, cost = { Mana = 34, }, }, + [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.45, cooldown = 5, levelRequirement = 14, cost = { Mana = 13, }, }, + [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.57, cooldown = 5, levelRequirement = 18, cost = { Mana = 15, }, }, + [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.7, cooldown = 5, levelRequirement = 22, cost = { Mana = 16, }, }, + [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.82, cooldown = 5, levelRequirement = 26, cost = { Mana = 18, }, }, + [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.93, cooldown = 5, levelRequirement = 31, cost = { Mana = 20, }, }, + [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.05, cooldown = 5, levelRequirement = 36, cost = { Mana = 22, }, }, + [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.19, cooldown = 5, levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.33, cooldown = 5, levelRequirement = 46, cost = { Mana = 27, }, }, + [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.49, cooldown = 5, levelRequirement = 52, cost = { Mana = 30, }, }, + [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.66, cooldown = 5, levelRequirement = 58, cost = { Mana = 32, }, }, + [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.85, cooldown = 5, levelRequirement = 64, cost = { Mana = 35, }, }, [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.05, cooldown = 5, levelRequirement = 66, cost = { Mana = 38, }, }, [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.28, cooldown = 5, levelRequirement = 72, cost = { Mana = 42, }, }, - [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.52, cooldown = 5, levelRequirement = 78, cost = { Mana = 46, }, }, - [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.79, cooldown = 5, levelRequirement = 84, cost = { Mana = 51, }, }, - [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 90, cost = { Mana = 57, }, }, - [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 63, }, }, - [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 70, }, }, - [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 78, }, }, - [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.5, cooldown = 5, levelRequirement = 90, cost = { Mana = 86, }, }, - [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 95, }, }, - [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.38, cooldown = 5, levelRequirement = 90, cost = { Mana = 106, }, }, - [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.88, cooldown = 5, levelRequirement = 90, cost = { Mana = 117, }, }, - [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.41, cooldown = 5, levelRequirement = 90, cost = { Mana = 130, }, }, - [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 144, }, }, - [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.6, cooldown = 5, levelRequirement = 90, cost = { Mana = 160, }, }, - [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 177, }, }, - [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 196, }, }, - [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 217, }, }, - [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.58, cooldown = 5, levelRequirement = 90, cost = { Mana = 241, }, }, - [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.47, cooldown = 5, levelRequirement = 90, cost = { Mana = 267, }, }, - [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 296, }, }, - [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 328, }, }, - [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 15.59, cooldown = 5, levelRequirement = 90, cost = { Mana = 364, }, }, - [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 16.8, cooldown = 5, levelRequirement = 90, cost = { Mana = 403, }, }, - [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 18.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 446, }, }, + [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.52, cooldown = 5, levelRequirement = 78, cost = { Mana = 45, }, }, + [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.79, cooldown = 5, levelRequirement = 84, cost = { Mana = 49, }, }, + [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 90, cost = { Mana = 53, }, }, + [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 57, }, }, + [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 62, }, }, + [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 66, }, }, + [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.5, cooldown = 5, levelRequirement = 90, cost = { Mana = 71, }, }, + [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 77, }, }, + [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.38, cooldown = 5, levelRequirement = 90, cost = { Mana = 82, }, }, + [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.88, cooldown = 5, levelRequirement = 90, cost = { Mana = 88, }, }, + [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.41, cooldown = 5, levelRequirement = 90, cost = { Mana = 95, }, }, + [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 102, }, }, + [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.6, cooldown = 5, levelRequirement = 90, cost = { Mana = 109, }, }, + [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 116, }, }, + [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 124, }, }, + [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 133, }, }, + [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.58, cooldown = 5, levelRequirement = 90, cost = { Mana = 142, }, }, + [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.47, cooldown = 5, levelRequirement = 90, cost = { Mana = 151, }, }, + [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 161, }, }, + [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 172, }, }, + [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 15.59, cooldown = 5, levelRequirement = 90, cost = { Mana = 183, }, }, + [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 16.8, cooldown = 5, levelRequirement = 90, cost = { Mana = 195, }, }, + [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 18.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 208, }, }, }, statSets = { [1] = { @@ -3187,7 +3837,7 @@ skills["FlashGrenadePlayer"] = { { "active_skill_hit_damage_stun_multiplier_+%_final", 500 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "fixed_projectile_spread", 30 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, }, @@ -3250,12 +3900,469 @@ skills["FlashGrenadePlayer"] = { }, } } +skills["ForgeHammerPlayer"] = { + name = "Forge Hammer", + baseTypeName = "Forge Hammer", + color = 1, + description = "Hurl a fiery hammer that Slams into the ground and lodges there. While the hammer is lodged in the ground, reusing this Skill recalls the hammer and resets the Skill's cooldown. Alternatively, using a Warcry near the lodged hammer causes it to shatter, releasing a number of Molten Fissures in a spiral.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Cooldown] = true, [SkillType.CanCreateStoneElementals] = true, }, + weaponTypes = { + ["One Handed Mace"] = true, + ["Two Handed Mace"] = true, + }, + castTime = 1, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 1.85, cooldown = 8, levelRequirement = 0, cost = { Mana = 9, }, }, + [2] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.04, cooldown = 8, levelRequirement = 3, cost = { Mana = 10, }, }, + [3] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.24, cooldown = 8, levelRequirement = 6, cost = { Mana = 11, }, }, + [4] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.44, cooldown = 8, levelRequirement = 10, cost = { Mana = 13, }, }, + [5] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.64, cooldown = 8, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.83, cooldown = 8, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.03, cooldown = 8, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.21, cooldown = 8, levelRequirement = 26, cost = { Mana = 21, }, }, + [9] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.37, cooldown = 8, levelRequirement = 31, cost = { Mana = 23, }, }, + [10] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.54, cooldown = 8, levelRequirement = 36, cost = { Mana = 26, }, }, + [11] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.72, cooldown = 8, levelRequirement = 41, cost = { Mana = 28, }, }, + [12] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.91, cooldown = 8, levelRequirement = 46, cost = { Mana = 31, }, }, + [13] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.1, cooldown = 8, levelRequirement = 52, cost = { Mana = 34, }, }, + [14] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.31, cooldown = 8, levelRequirement = 58, cost = { Mana = 37, }, }, + [15] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.52, cooldown = 8, levelRequirement = 64, cost = { Mana = 40, }, }, + [16] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.75, cooldown = 8, levelRequirement = 66, cost = { Mana = 44, }, }, + [17] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.98, cooldown = 8, levelRequirement = 72, cost = { Mana = 48, }, }, + [18] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 5.23, cooldown = 8, levelRequirement = 78, cost = { Mana = 52, }, }, + [19] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 5.5, cooldown = 8, levelRequirement = 84, cost = { Mana = 56, }, }, + [20] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 5.77, cooldown = 8, levelRequirement = 90, cost = { Mana = 60, }, }, + [21] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 6.06, cooldown = 8, levelRequirement = 90, cost = { Mana = 65, }, }, + [22] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 6.36, cooldown = 8, levelRequirement = 90, cost = { Mana = 70, }, }, + [23] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 6.68, cooldown = 8, levelRequirement = 90, cost = { Mana = 76, }, }, + [24] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 7.01, cooldown = 8, levelRequirement = 90, cost = { Mana = 82, }, }, + [25] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 7.36, cooldown = 8, levelRequirement = 90, cost = { Mana = 88, }, }, + [26] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 7.73, cooldown = 8, levelRequirement = 90, cost = { Mana = 94, }, }, + [27] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 8.12, cooldown = 8, levelRequirement = 90, cost = { Mana = 101, }, }, + [28] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 8.52, cooldown = 8, levelRequirement = 90, cost = { Mana = 108, }, }, + [29] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 8.95, cooldown = 8, levelRequirement = 90, cost = { Mana = 116, }, }, + [30] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 9.4, cooldown = 8, levelRequirement = 90, cost = { Mana = 124, }, }, + [31] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 9.87, cooldown = 8, levelRequirement = 90, cost = { Mana = 133, }, }, + [32] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 10.36, cooldown = 8, levelRequirement = 90, cost = { Mana = 142, }, }, + [33] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 10.88, cooldown = 8, levelRequirement = 90, cost = { Mana = 152, }, }, + [34] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 11.42, cooldown = 8, levelRequirement = 90, cost = { Mana = 162, }, }, + [35] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 12, cooldown = 8, levelRequirement = 90, cost = { Mana = 173, }, }, + [36] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 12.6, cooldown = 8, levelRequirement = 90, cost = { Mana = 184, }, }, + [37] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 13.22, cooldown = 8, levelRequirement = 90, cost = { Mana = 196, }, }, + [38] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 13.89, cooldown = 8, levelRequirement = 90, cost = { Mana = 209, }, }, + [39] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 14.58, cooldown = 8, levelRequirement = 90, cost = { Mana = 223, }, }, + [40] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 15.31, cooldown = 8, levelRequirement = 90, cost = { Mana = 237, }, }, + }, + statSets = { + [1] = { + label = "Impact", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "forge_hammer_statset_0", + baseFlags = { + attack = true, + area = true, + melee = true, + duration = true, + }, + constantStats = { + { "attack_maximum_action_distance_+", 40 }, + { "base_skill_effect_duration", 12000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "forge_hammer_maximum_hammers", 1 }, + { "forge_hammer_base_maximum_number_of_fissures", 10 }, + { "forge_hammer_base_number_of_fissures", 5 }, + { "forge_hammer_hammer_speed", 300 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 30 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_damage_+%_final_while_dual_wielding", -30 }, + }, + stats = { + "is_area_damage", + "can_perform_skill_while_moving", + "display_this_skill_cooldown_does_not_recover_during_buff", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fissures", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "forge_hammer_statset_1", + baseFlags = { + attack = true, + area = true, + melee = true, + duration = true, + }, + constantStats = { + { "attack_maximum_action_distance_+", 40 }, + { "forge_hammer_maximum_hammers", 1 }, + { "forge_hammer_base_maximum_number_of_fissures", 10 }, + { "forge_hammer_base_number_of_fissures", 5 }, + { "forge_hammer_hammer_speed", 300 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 30 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_damage_+%_final_while_dual_wielding", -30 }, + { "active_skill_base_area_of_effect_radius", 10 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 70 }, + }, + stats = { + "is_area_damage", + "can_perform_skill_while_moving", + "display_this_skill_cooldown_does_not_recover_during_buff", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { baseMultiplier = 0.75, actorLevel = 1, }, + [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.9, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.98, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.06, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.13, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.2, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.27, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.32, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.38, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.43, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.49, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.55, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.61, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.67, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.73, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.79, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.85, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.91, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.98, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 2.04, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.11, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.18, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.25, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.33, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.41, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.48, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 2.57, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 2.65, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 2.74, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 2.83, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 2.93, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 3.02, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 3.12, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 3.23, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 3.33, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 3.44, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 3.56, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 3.68, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 3.8, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FortifyingCryPlayer"] = { + name = "Fortifying Cry", + baseTypeName = "Fortifying Cry", + color = 1, + description = "Perform a Warcry that grants Guard and Triggers Shield Wave when subsequent Shield Attacks deal damage. This Skill's cooldown can be bypassed by expending an Endurance Charge.", + skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.Cooldown] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, }, + castTime = 0.8, + qualityStats = { + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 24, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 27, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 30, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 33, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 36, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 39, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 42, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 46, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 49, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 52, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 56, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 60, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 64, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 68, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 72, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 76, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 80, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 85, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 90, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 94, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 99, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 104, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 110, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 115, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 120, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 132, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 138, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 144, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 151, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 157, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 164, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 171, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 185, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 193, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 201, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 208, }, }, + }, + statSets = { + [1] = { + label = "Fortifying Cry", + baseEffectiveness = 0.5, + incrementalEffectiveness = 0.47999998927116, + statDescriptionScope = "shielding_cry", + baseFlags = { + warcry = true, + area = true, + duration = true, + }, + constantStats = { + { "base_skill_effect_duration", 8000 }, + { "active_skill_base_area_of_effect_radius", 40 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "shielding_cry_an_additional_empowered_attack_per_X_mp", 5 }, + { "shielding_cry_an_additional_empowered_attack_per_X_mp_mp_cap", 50 }, + { "base_secondary_skill_effect_duration", 4000 }, + { "shielding_cry_grant_X_guard_per_5_mp_mp_cap", 20 }, + }, + stats = { + "shielding_cry_grant_X_guard_per_5_mp", + "display_statset_no_hit_damage", + "warcry_count_power_from_enemies", + "can_perform_skill_while_moving", + "warcry_minimum_benefit_if_monster_power_present", + "cannot_cancel_skill_before_contact_point", + }, + levels = { + [1] = { 2, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 22, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 26, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 30, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 35, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 45, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 50, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 55, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 61, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 67, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 73, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 79, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 85, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 92, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 99, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 106, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 113, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 121, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 129, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 137, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 145, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 153, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 162, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 170, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 179, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 189, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 198, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 208, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 218, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 228, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 238, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 248, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 259, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 270, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FortifyingCryShockwavePlayer"] = { + name = "Shield Wave", + hidden = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 0, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, + }, + levels = { + [1] = { critChance = 5, baseMultiplier = 0.5, levelRequirement = 0, }, + [2] = { critChance = 5, baseMultiplier = 0.55, levelRequirement = 0, }, + [3] = { critChance = 5, baseMultiplier = 0.61, levelRequirement = 0, }, + [4] = { critChance = 5, baseMultiplier = 0.67, levelRequirement = 0, }, + [5] = { critChance = 5, baseMultiplier = 0.73, levelRequirement = 0, }, + [6] = { critChance = 5, baseMultiplier = 0.79, levelRequirement = 0, }, + [7] = { critChance = 5, baseMultiplier = 0.85, levelRequirement = 0, }, + [8] = { critChance = 5, baseMultiplier = 0.91, levelRequirement = 0, }, + [9] = { critChance = 5, baseMultiplier = 0.97, levelRequirement = 0, }, + [10] = { critChance = 5, baseMultiplier = 1.03, levelRequirement = 0, }, + [11] = { critChance = 5, baseMultiplier = 1.09, levelRequirement = 0, }, + [12] = { critChance = 5, baseMultiplier = 1.17, levelRequirement = 0, }, + [13] = { critChance = 5, baseMultiplier = 1.25, levelRequirement = 0, }, + [14] = { critChance = 5, baseMultiplier = 1.33, levelRequirement = 0, }, + [15] = { critChance = 5, baseMultiplier = 1.42, levelRequirement = 0, }, + [16] = { critChance = 5, baseMultiplier = 1.53, levelRequirement = 0, }, + [17] = { critChance = 5, baseMultiplier = 1.64, levelRequirement = 0, }, + [18] = { critChance = 5, baseMultiplier = 1.76, levelRequirement = 0, }, + [19] = { critChance = 5, baseMultiplier = 1.89, levelRequirement = 0, }, + [20] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 0, }, + [21] = { critChance = 5, baseMultiplier = 2.2, levelRequirement = 0, }, + [22] = { critChance = 5, baseMultiplier = 2.37, levelRequirement = 0, }, + [23] = { critChance = 5, baseMultiplier = 2.55, levelRequirement = 0, }, + [24] = { critChance = 5, baseMultiplier = 2.75, levelRequirement = 0, }, + [25] = { critChance = 5, baseMultiplier = 2.96, levelRequirement = 0, }, + [26] = { critChance = 5, baseMultiplier = 3.19, levelRequirement = 0, }, + [27] = { critChance = 5, baseMultiplier = 3.44, levelRequirement = 0, }, + [28] = { critChance = 5, baseMultiplier = 3.7, levelRequirement = 0, }, + [29] = { critChance = 5, baseMultiplier = 3.99, levelRequirement = 0, }, + [30] = { critChance = 5, baseMultiplier = 4.3, levelRequirement = 0, }, + [31] = { critChance = 5, baseMultiplier = 4.63, levelRequirement = 0, }, + [32] = { critChance = 5, baseMultiplier = 4.99, levelRequirement = 0, }, + [33] = { critChance = 5, baseMultiplier = 5.37, levelRequirement = 0, }, + [34] = { critChance = 5, baseMultiplier = 5.79, levelRequirement = 0, }, + [35] = { critChance = 5, baseMultiplier = 6.24, levelRequirement = 0, }, + [36] = { critChance = 5, baseMultiplier = 6.72, levelRequirement = 0, }, + [37] = { critChance = 5, baseMultiplier = 7.24, levelRequirement = 0, }, + [38] = { critChance = 5, baseMultiplier = 7.8, levelRequirement = 0, }, + [39] = { critChance = 5, baseMultiplier = 8.4, levelRequirement = 0, }, + [40] = { critChance = 5, baseMultiplier = 9.05, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Shield Wave", + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "shielding_cry_shockwave", + baseFlags = { + attack = true, + melee = true, + area = true, + shieldAttack = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 20 }, + }, + stats = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + "off_hand_minimum_added_physical_damage_per_15_shield_armour", + "off_hand_maximum_added_physical_damage_per_15_shield_armour", + "base_skill_show_average_damage_instead_of_dps", + "display_statset_hide_usage_stats", + "modifiers_to_warcry_damage_also_apply_to_this", + "replace_off_hand_unarmed_attack_stats_with_shield_type", + "attack_is_melee_override", + "skill_triggered_manually_by_other_skill", + "triggerable_in_any_set", + }, + notMinionStat = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + }, + levels = { + [1] = { 3, 5, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8, 12, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 17, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, 26, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 32, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 25, 37, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 43, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 33, 50, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 37, 56, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 42, 63, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 47, 70, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 52, 78, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 57, 85, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 62, 93, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 68, 101, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 73, 110, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 79, 119, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 85, 128, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 92, 137, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 98, 147, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 105, 157, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 112, 167, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 119, 178, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 126, 189, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 133, 200, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 141, 211, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 149, 223, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 157, 235, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 165, 247, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 173, 260, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 182, 273, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 191, 286, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 200, 299, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 209, 313, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 218, 327, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 228, 342, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 237, 356, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 247, 371, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["ToxicGrenadePlayer"] = { name = "Gas Grenade", baseTypeName = "Gas Grenade", color = 1, description = "Fire a bouncing Grenade that causes a burst of Poison gas when its fuse expires, damaging enemies and leaving behind a growing Poison cloud. Burning effects or Detonator skills will cause the cloud to explode in a fiery blast.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -3264,46 +4371,46 @@ skills["ToxicGrenadePlayer"] = { { "base_cooldown_speed_+%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.4, cooldown = 3, levelRequirement = 0, cost = { Mana = 13, }, }, + [1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.4, cooldown = 3, levelRequirement = 0, cost = { Mana = 12, }, }, [2] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.44, cooldown = 3, levelRequirement = 3, cost = { Mana = 14, }, }, [3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.49, cooldown = 3, levelRequirement = 6, cost = { Mana = 16, }, }, - [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 3, levelRequirement = 10, cost = { Mana = 17, }, }, - [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 3, levelRequirement = 14, cost = { Mana = 19, }, }, - [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 3, levelRequirement = 18, cost = { Mana = 22, }, }, - [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 3, levelRequirement = 22, cost = { Mana = 24, }, }, - [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 3, levelRequirement = 26, cost = { Mana = 27, }, }, - [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 3, levelRequirement = 31, cost = { Mana = 30, }, }, - [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 3, levelRequirement = 36, cost = { Mana = 33, }, }, - [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 3, levelRequirement = 41, cost = { Mana = 36, }, }, - [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 3, levelRequirement = 46, cost = { Mana = 40, }, }, - [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 3, levelRequirement = 52, cost = { Mana = 45, }, }, - [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 3, levelRequirement = 58, cost = { Mana = 50, }, }, - [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 3, levelRequirement = 64, cost = { Mana = 55, }, }, - [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 3, levelRequirement = 66, cost = { Mana = 61, }, }, + [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 3, levelRequirement = 10, cost = { Mana = 19, }, }, + [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 3, levelRequirement = 14, cost = { Mana = 21, }, }, + [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 3, levelRequirement = 18, cost = { Mana = 24, }, }, + [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 3, levelRequirement = 22, cost = { Mana = 27, }, }, + [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 3, levelRequirement = 26, cost = { Mana = 30, }, }, + [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 3, levelRequirement = 31, cost = { Mana = 33, }, }, + [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 3, levelRequirement = 36, cost = { Mana = 36, }, }, + [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 3, levelRequirement = 41, cost = { Mana = 40, }, }, + [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 3, levelRequirement = 46, cost = { Mana = 44, }, }, + [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 3, levelRequirement = 52, cost = { Mana = 48, }, }, + [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 3, levelRequirement = 58, cost = { Mana = 53, }, }, + [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 3, levelRequirement = 64, cost = { Mana = 57, }, }, + [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 3, levelRequirement = 66, cost = { Mana = 63, }, }, [17] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.31, cooldown = 3, levelRequirement = 72, cost = { Mana = 68, }, }, - [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 3, levelRequirement = 78, cost = { Mana = 75, }, }, - [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 3, levelRequirement = 84, cost = { Mana = 83, }, }, - [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 92, }, }, - [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 3, levelRequirement = 90, cost = { Mana = 102, }, }, - [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 3, levelRequirement = 90, cost = { Mana = 114, }, }, - [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 3, levelRequirement = 90, cost = { Mana = 126, }, }, - [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 3, levelRequirement = 90, cost = { Mana = 140, }, }, - [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 155, }, }, - [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 3, levelRequirement = 90, cost = { Mana = 172, }, }, - [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 3, levelRequirement = 90, cost = { Mana = 190, }, }, - [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 3, levelRequirement = 90, cost = { Mana = 211, }, }, - [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 3, levelRequirement = 90, cost = { Mana = 234, }, }, - [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 3, levelRequirement = 90, cost = { Mana = 259, }, }, - [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 3, levelRequirement = 90, cost = { Mana = 287, }, }, - [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 318, }, }, - [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 3, levelRequirement = 90, cost = { Mana = 352, }, }, - [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 391, }, }, - [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 433, }, }, - [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 480, }, }, - [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 3, levelRequirement = 90, cost = { Mana = 532, }, }, - [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 589, }, }, - [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 3, levelRequirement = 90, cost = { Mana = 653, }, }, - [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 724, }, }, + [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 3, levelRequirement = 78, cost = { Mana = 74, }, }, + [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 3, levelRequirement = 84, cost = { Mana = 80, }, }, + [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 86, }, }, + [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 3, levelRequirement = 90, cost = { Mana = 93, }, }, + [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 3, levelRequirement = 90, cost = { Mana = 100, }, }, + [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 3, levelRequirement = 90, cost = { Mana = 108, }, }, + [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 3, levelRequirement = 90, cost = { Mana = 116, }, }, + [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 125, }, }, + [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 3, levelRequirement = 90, cost = { Mana = 134, }, }, + [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 3, levelRequirement = 90, cost = { Mana = 144, }, }, + [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 3, levelRequirement = 90, cost = { Mana = 154, }, }, + [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 3, levelRequirement = 90, cost = { Mana = 165, }, }, + [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 3, levelRequirement = 90, cost = { Mana = 177, }, }, + [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 3, levelRequirement = 90, cost = { Mana = 189, }, }, + [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 202, }, }, + [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 3, levelRequirement = 90, cost = { Mana = 216, }, }, + [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 230, }, }, + [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 246, }, }, + [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 262, }, }, + [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 3, levelRequirement = 90, cost = { Mana = 279, }, }, + [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 298, }, }, + [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 3, levelRequirement = 90, cost = { Mana = 317, }, }, + [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 337, }, }, }, statSets = { [1] = { @@ -3322,7 +4429,7 @@ skills["ToxicGrenadePlayer"] = { { "base_skill_detonation_time", 2000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "fixed_projectile_spread", 30 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, }, @@ -3399,7 +4506,7 @@ skills["ToxicGrenadePlayer"] = { { "action_required_target_facing_angle_tolerance_degrees", 90 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "fixed_projectile_spread", 30 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, { "action_allowed_queue_time_override_ms", 1000 }, @@ -3470,82 +4577,265 @@ skills["ToxicGrenadePlayer"] = { [40] = { 27, baseMultiplier = 27.15, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Explosion", + [3] = { + label = "Explosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "toxic_grenade_statset_2", + baseFlags = { + attack = true, + area = true, + projectile = true, + }, + constantStats = { + { "action_allowed_queue_time_override_ms", 1000 }, + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "fixed_projectile_spread", 30 }, + { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "base_is_projectile", + "projectile_ballistic_angle_from_reference_event", + "projectile_uses_contact_position", + "is_area_damage", + "action_can_be_used_in_aiming_stance", + "ballistic_projectiles_always_bounce", + "can_perform_skill_while_moving", + "projectile_uses_contact_direction", + "base_skill_show_average_damage_instead_of_dps", + "visual_hit_effect_physical_is_green", + "projectiles_cannot_fork", + "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { 14, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 14, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 14, baseMultiplier = 1.83, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 15, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 15, baseMultiplier = 2.18, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, baseMultiplier = 2.36, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 16, baseMultiplier = 2.55, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 16, baseMultiplier = 2.73, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 16, baseMultiplier = 2.9, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 17, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 17, baseMultiplier = 3.28, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 17, baseMultiplier = 3.5, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 18, baseMultiplier = 3.74, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 18, baseMultiplier = 3.99, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 18, baseMultiplier = 4.27, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 19, baseMultiplier = 4.58, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 19, baseMultiplier = 4.92, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 19, baseMultiplier = 5.28, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 20, baseMultiplier = 5.68, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 20, baseMultiplier = 6.12, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 20, baseMultiplier = 6.6, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 21, baseMultiplier = 7.11, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 21, baseMultiplier = 7.66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 21, baseMultiplier = 8.25, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 22, baseMultiplier = 8.89, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 22, baseMultiplier = 9.57, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 22, baseMultiplier = 10.31, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 23, baseMultiplier = 11.11, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 23, baseMultiplier = 11.97, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 23, baseMultiplier = 12.89, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 24, baseMultiplier = 13.89, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 24, baseMultiplier = 14.96, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 24, baseMultiplier = 16.12, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 25, baseMultiplier = 17.37, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 25, baseMultiplier = 18.71, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 25, baseMultiplier = 20.16, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 26, baseMultiplier = 21.71, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 26, baseMultiplier = 23.39, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 26, baseMultiplier = 25.2, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 27, baseMultiplier = 27.15, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["GeminiSurgePlayer"] = { + name = "Gemini Surge", + baseTypeName = "Gemini Surge", + color = 1, + description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.15 }, + }, + levels = { + [1] = { baseMultiplier = 0.5, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.55, levelRequirement = 3, }, + [3] = { baseMultiplier = 0.61, levelRequirement = 6, }, + [4] = { baseMultiplier = 0.66, levelRequirement = 10, }, + [5] = { baseMultiplier = 0.72, levelRequirement = 14, }, + [6] = { baseMultiplier = 0.77, levelRequirement = 18, }, + [7] = { baseMultiplier = 0.83, levelRequirement = 22, }, + [8] = { baseMultiplier = 0.88, levelRequirement = 26, }, + [9] = { baseMultiplier = 0.93, levelRequirement = 31, }, + [10] = { baseMultiplier = 0.99, levelRequirement = 36, }, + [11] = { baseMultiplier = 1.05, levelRequirement = 41, }, + [12] = { baseMultiplier = 1.11, levelRequirement = 46, }, + [13] = { baseMultiplier = 1.17, levelRequirement = 52, }, + [14] = { baseMultiplier = 1.25, levelRequirement = 58, }, + [15] = { baseMultiplier = 1.32, levelRequirement = 64, }, + [16] = { baseMultiplier = 1.41, levelRequirement = 66, }, + [17] = { baseMultiplier = 1.5, levelRequirement = 72, }, + [18] = { baseMultiplier = 1.59, levelRequirement = 78, }, + [19] = { baseMultiplier = 1.7, levelRequirement = 84, }, + [20] = { baseMultiplier = 1.81, levelRequirement = 90, }, + [21] = { baseMultiplier = 1.93, levelRequirement = 90, }, + [22] = { baseMultiplier = 2.06, levelRequirement = 90, }, + [23] = { baseMultiplier = 2.2, levelRequirement = 90, }, + [24] = { baseMultiplier = 2.34, levelRequirement = 90, }, + [25] = { baseMultiplier = 2.5, levelRequirement = 90, }, + [26] = { baseMultiplier = 2.67, levelRequirement = 90, }, + [27] = { baseMultiplier = 2.84, levelRequirement = 90, }, + [28] = { baseMultiplier = 3.03, levelRequirement = 90, }, + [29] = { baseMultiplier = 3.24, levelRequirement = 90, }, + [30] = { baseMultiplier = 3.45, levelRequirement = 90, }, + [31] = { baseMultiplier = 3.68, levelRequirement = 90, }, + [32] = { baseMultiplier = 3.93, levelRequirement = 90, }, + [33] = { baseMultiplier = 4.19, levelRequirement = 90, }, + [34] = { baseMultiplier = 4.47, levelRequirement = 90, }, + [35] = { baseMultiplier = 4.76, levelRequirement = 90, }, + [36] = { baseMultiplier = 5.08, levelRequirement = 90, }, + [37] = { baseMultiplier = 5.42, levelRequirement = 90, }, + [38] = { baseMultiplier = 5.78, levelRequirement = 90, }, + [39] = { baseMultiplier = 6.17, levelRequirement = 90, }, + [40] = { baseMultiplier = 6.58, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Cold Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "trigger_elemental_infusion", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_reload_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 16 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 10 }, + { "surge_can_apply_to_X_number_of_projectiles_per_skill_use", 1 }, + }, + stats = { + "is_area_damage", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire Surge", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "toxic_grenade_statset_2", + statDescriptionScope = "trigger_elemental_infusion", baseFlags = { attack = true, area = true, - projectile = true, }, constantStats = { - { "action_allowed_queue_time_override_ms", 1000 }, - { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "fixed_projectile_spread", 30 }, - { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "chance_to_be_triggered_by_reload_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 16 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 10 }, + { "surge_can_apply_to_X_number_of_projectiles_per_skill_use", 1 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, }, stats = { - "active_skill_base_area_of_effect_radius", - "base_is_projectile", - "projectile_ballistic_angle_from_reference_event", - "projectile_uses_contact_position", "is_area_damage", - "action_can_be_used_in_aiming_stance", - "ballistic_projectiles_always_bounce", - "can_perform_skill_while_moving", - "projectile_uses_contact_direction", + "cannot_consume_power_frenzy_endurance_charges", "base_skill_show_average_damage_instead_of_dps", - "visual_hit_effect_physical_is_green", - "projectiles_cannot_fork", - "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem", - "display_statset_hide_usage_stats", }, levels = { - [1] = { 14, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 14, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 14, baseMultiplier = 1.83, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 15, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 15, baseMultiplier = 2.18, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, baseMultiplier = 2.36, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 16, baseMultiplier = 2.55, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 16, baseMultiplier = 2.73, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 16, baseMultiplier = 2.9, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 17, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 17, baseMultiplier = 3.28, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 17, baseMultiplier = 3.5, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 18, baseMultiplier = 3.74, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 18, baseMultiplier = 3.99, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 18, baseMultiplier = 4.27, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 19, baseMultiplier = 4.58, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 19, baseMultiplier = 4.92, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 19, baseMultiplier = 5.28, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 20, baseMultiplier = 5.68, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 20, baseMultiplier = 6.12, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 20, baseMultiplier = 6.6, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 21, baseMultiplier = 7.11, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 21, baseMultiplier = 7.66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 21, baseMultiplier = 8.25, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 22, baseMultiplier = 8.89, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 22, baseMultiplier = 9.57, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 22, baseMultiplier = 10.31, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 23, baseMultiplier = 11.11, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 23, baseMultiplier = 11.97, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 23, baseMultiplier = 12.89, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 24, baseMultiplier = 13.89, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 24, baseMultiplier = 14.96, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 24, baseMultiplier = 16.12, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 25, baseMultiplier = 17.37, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 25, baseMultiplier = 18.71, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 25, baseMultiplier = 20.16, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 26, baseMultiplier = 21.71, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 26, baseMultiplier = 23.39, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 26, baseMultiplier = 25.2, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 27, baseMultiplier = 27.15, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.5, actorLevel = 1, }, + [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, }, }, } @@ -3555,7 +4845,7 @@ skills["HammerOfTheGodsPlayer"] = { baseTypeName = "Hammer of the Gods", color = 1, description = "Build Glory by Heavy Stunning enemies. When you have maximum Glory you may entreat the Ancestors to crush your enemies, manifesting a massive hammer that falls from the sky onto your target, Slamming into the ground after a short duration and dealing immense damage based on your weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -3565,46 +4855,46 @@ skills["HammerOfTheGodsPlayer"] = { { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { attackSpeedMultiplier = -50, baseMultiplier = 5.8, levelRequirement = 0, cost = { Mana = 11, }, }, + [1] = { attackSpeedMultiplier = -50, baseMultiplier = 5.8, levelRequirement = 0, cost = { Mana = 10, }, }, [2] = { attackSpeedMultiplier = -50, baseMultiplier = 6.37, levelRequirement = 3, cost = { Mana = 12, }, }, - [3] = { attackSpeedMultiplier = -50, baseMultiplier = 6.99, levelRequirement = 6, cost = { Mana = 13, }, }, - [4] = { attackSpeedMultiplier = -50, baseMultiplier = 7.59, levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { attackSpeedMultiplier = -50, baseMultiplier = 8.17, levelRequirement = 14, cost = { Mana = 16, }, }, - [6] = { attackSpeedMultiplier = -50, baseMultiplier = 8.74, levelRequirement = 18, cost = { Mana = 18, }, }, - [7] = { attackSpeedMultiplier = -50, baseMultiplier = 9.3, levelRequirement = 22, cost = { Mana = 20, }, }, - [8] = { attackSpeedMultiplier = -50, baseMultiplier = 9.79, levelRequirement = 26, cost = { Mana = 22, }, }, - [9] = { attackSpeedMultiplier = -50, baseMultiplier = 10.21, levelRequirement = 31, cost = { Mana = 25, }, }, - [10] = { attackSpeedMultiplier = -50, baseMultiplier = 10.63, levelRequirement = 36, cost = { Mana = 28, }, }, - [11] = { attackSpeedMultiplier = -50, baseMultiplier = 11.07, levelRequirement = 41, cost = { Mana = 31, }, }, - [12] = { attackSpeedMultiplier = -50, baseMultiplier = 11.51, levelRequirement = 46, cost = { Mana = 34, }, }, - [13] = { attackSpeedMultiplier = -50, baseMultiplier = 11.96, levelRequirement = 52, cost = { Mana = 38, }, }, - [14] = { attackSpeedMultiplier = -50, baseMultiplier = 12.42, levelRequirement = 58, cost = { Mana = 42, }, }, - [15] = { attackSpeedMultiplier = -50, baseMultiplier = 12.88, levelRequirement = 64, cost = { Mana = 47, }, }, - [16] = { attackSpeedMultiplier = -50, baseMultiplier = 13.35, levelRequirement = 66, cost = { Mana = 52, }, }, + [3] = { attackSpeedMultiplier = -50, baseMultiplier = 6.99, levelRequirement = 6, cost = { Mana = 14, }, }, + [4] = { attackSpeedMultiplier = -50, baseMultiplier = 7.59, levelRequirement = 10, cost = { Mana = 16, }, }, + [5] = { attackSpeedMultiplier = -50, baseMultiplier = 8.17, levelRequirement = 14, cost = { Mana = 18, }, }, + [6] = { attackSpeedMultiplier = -50, baseMultiplier = 8.74, levelRequirement = 18, cost = { Mana = 20, }, }, + [7] = { attackSpeedMultiplier = -50, baseMultiplier = 9.3, levelRequirement = 22, cost = { Mana = 23, }, }, + [8] = { attackSpeedMultiplier = -50, baseMultiplier = 9.79, levelRequirement = 26, cost = { Mana = 25, }, }, + [9] = { attackSpeedMultiplier = -50, baseMultiplier = 10.21, levelRequirement = 31, cost = { Mana = 28, }, }, + [10] = { attackSpeedMultiplier = -50, baseMultiplier = 10.63, levelRequirement = 36, cost = { Mana = 31, }, }, + [11] = { attackSpeedMultiplier = -50, baseMultiplier = 11.07, levelRequirement = 41, cost = { Mana = 34, }, }, + [12] = { attackSpeedMultiplier = -50, baseMultiplier = 11.51, levelRequirement = 46, cost = { Mana = 37, }, }, + [13] = { attackSpeedMultiplier = -50, baseMultiplier = 11.96, levelRequirement = 52, cost = { Mana = 41, }, }, + [14] = { attackSpeedMultiplier = -50, baseMultiplier = 12.42, levelRequirement = 58, cost = { Mana = 44, }, }, + [15] = { attackSpeedMultiplier = -50, baseMultiplier = 12.88, levelRequirement = 64, cost = { Mana = 48, }, }, + [16] = { attackSpeedMultiplier = -50, baseMultiplier = 13.35, levelRequirement = 66, cost = { Mana = 53, }, }, [17] = { attackSpeedMultiplier = -50, baseMultiplier = 13.83, levelRequirement = 72, cost = { Mana = 57, }, }, - [18] = { attackSpeedMultiplier = -50, baseMultiplier = 14.31, levelRequirement = 78, cost = { Mana = 63, }, }, - [19] = { attackSpeedMultiplier = -50, baseMultiplier = 14.8, levelRequirement = 84, cost = { Mana = 70, }, }, - [20] = { attackSpeedMultiplier = -50, baseMultiplier = 15.29, levelRequirement = 90, cost = { Mana = 78, }, }, - [21] = { attackSpeedMultiplier = -50, baseMultiplier = 15.8, levelRequirement = 90, cost = { Mana = 87, }, }, - [22] = { attackSpeedMultiplier = -50, baseMultiplier = 16.32, levelRequirement = 90, cost = { Mana = 96, }, }, - [23] = { attackSpeedMultiplier = -50, baseMultiplier = 16.86, levelRequirement = 90, cost = { Mana = 106, }, }, - [24] = { attackSpeedMultiplier = -50, baseMultiplier = 17.42, levelRequirement = 90, cost = { Mana = 118, }, }, - [25] = { attackSpeedMultiplier = -50, baseMultiplier = 18, levelRequirement = 90, cost = { Mana = 131, }, }, - [26] = { attackSpeedMultiplier = -50, baseMultiplier = 18.6, levelRequirement = 90, cost = { Mana = 145, }, }, - [27] = { attackSpeedMultiplier = -50, baseMultiplier = 19.22, levelRequirement = 90, cost = { Mana = 161, }, }, - [28] = { attackSpeedMultiplier = -50, baseMultiplier = 19.85, levelRequirement = 90, cost = { Mana = 178, }, }, - [29] = { attackSpeedMultiplier = -50, baseMultiplier = 20.51, levelRequirement = 90, cost = { Mana = 197, }, }, - [30] = { attackSpeedMultiplier = -50, baseMultiplier = 21.19, levelRequirement = 90, cost = { Mana = 219, }, }, - [31] = { attackSpeedMultiplier = -50, baseMultiplier = 21.9, levelRequirement = 90, cost = { Mana = 242, }, }, - [32] = { attackSpeedMultiplier = -50, baseMultiplier = 22.63, levelRequirement = 90, cost = { Mana = 269, }, }, - [33] = { attackSpeedMultiplier = -50, baseMultiplier = 23.38, levelRequirement = 90, cost = { Mana = 298, }, }, - [34] = { attackSpeedMultiplier = -50, baseMultiplier = 24.15, levelRequirement = 90, cost = { Mana = 330, }, }, - [35] = { attackSpeedMultiplier = -50, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 366, }, }, - [36] = { attackSpeedMultiplier = -50, baseMultiplier = 25.78, levelRequirement = 90, cost = { Mana = 405, }, }, - [37] = { attackSpeedMultiplier = -50, baseMultiplier = 26.64, levelRequirement = 90, cost = { Mana = 449, }, }, - [38] = { attackSpeedMultiplier = -50, baseMultiplier = 27.52, levelRequirement = 90, cost = { Mana = 498, }, }, - [39] = { attackSpeedMultiplier = -50, baseMultiplier = 28.44, levelRequirement = 90, cost = { Mana = 552, }, }, - [40] = { attackSpeedMultiplier = -50, baseMultiplier = 29.38, levelRequirement = 90, cost = { Mana = 611, }, }, + [18] = { attackSpeedMultiplier = -50, baseMultiplier = 14.31, levelRequirement = 78, cost = { Mana = 62, }, }, + [19] = { attackSpeedMultiplier = -50, baseMultiplier = 14.8, levelRequirement = 84, cost = { Mana = 67, }, }, + [20] = { attackSpeedMultiplier = -50, baseMultiplier = 15.29, levelRequirement = 90, cost = { Mana = 73, }, }, + [21] = { attackSpeedMultiplier = -50, baseMultiplier = 15.8, levelRequirement = 90, cost = { Mana = 78, }, }, + [22] = { attackSpeedMultiplier = -50, baseMultiplier = 16.32, levelRequirement = 90, cost = { Mana = 85, }, }, + [23] = { attackSpeedMultiplier = -50, baseMultiplier = 16.86, levelRequirement = 90, cost = { Mana = 91, }, }, + [24] = { attackSpeedMultiplier = -50, baseMultiplier = 17.42, levelRequirement = 90, cost = { Mana = 98, }, }, + [25] = { attackSpeedMultiplier = -50, baseMultiplier = 18, levelRequirement = 90, cost = { Mana = 105, }, }, + [26] = { attackSpeedMultiplier = -50, baseMultiplier = 18.6, levelRequirement = 90, cost = { Mana = 113, }, }, + [27] = { attackSpeedMultiplier = -50, baseMultiplier = 19.22, levelRequirement = 90, cost = { Mana = 121, }, }, + [28] = { attackSpeedMultiplier = -50, baseMultiplier = 19.85, levelRequirement = 90, cost = { Mana = 130, }, }, + [29] = { attackSpeedMultiplier = -50, baseMultiplier = 20.51, levelRequirement = 90, cost = { Mana = 139, }, }, + [30] = { attackSpeedMultiplier = -50, baseMultiplier = 21.19, levelRequirement = 90, cost = { Mana = 149, }, }, + [31] = { attackSpeedMultiplier = -50, baseMultiplier = 21.9, levelRequirement = 90, cost = { Mana = 160, }, }, + [32] = { attackSpeedMultiplier = -50, baseMultiplier = 22.63, levelRequirement = 90, cost = { Mana = 170, }, }, + [33] = { attackSpeedMultiplier = -50, baseMultiplier = 23.38, levelRequirement = 90, cost = { Mana = 182, }, }, + [34] = { attackSpeedMultiplier = -50, baseMultiplier = 24.15, levelRequirement = 90, cost = { Mana = 194, }, }, + [35] = { attackSpeedMultiplier = -50, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 207, }, }, + [36] = { attackSpeedMultiplier = -50, baseMultiplier = 25.78, levelRequirement = 90, cost = { Mana = 221, }, }, + [37] = { attackSpeedMultiplier = -50, baseMultiplier = 26.64, levelRequirement = 90, cost = { Mana = 236, }, }, + [38] = { attackSpeedMultiplier = -50, baseMultiplier = 27.52, levelRequirement = 90, cost = { Mana = 251, }, }, + [39] = { attackSpeedMultiplier = -50, baseMultiplier = 28.44, levelRequirement = 90, cost = { Mana = 267, }, }, + [40] = { attackSpeedMultiplier = -50, baseMultiplier = 29.38, levelRequirement = 90, cost = { Mana = 285, }, }, }, statSets = { [1] = { @@ -3622,9 +4912,10 @@ skills["HammerOfTheGodsPlayer"] = { { "active_skill_base_area_of_effect_radius", 24 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, - { "skill_requires_X_ultimate_charge", 20 }, + { "active_skill_requires_X_glory", 20 }, + { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 }, }, stats = { "is_area_damage", @@ -4067,54 +5358,53 @@ skills["InfernalCryPlayer"] = { name = "Infernal Cry", baseTypeName = "Infernal Cry", color = 1, - description = "Perform a warcry, Empowering subsequent Attacks. Consumes all Endurance Charges to Empower additional attacks. Enemies in the warcry's area are destabilised and will Combust on death.", - skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, }, + description = "Perform a Warcry, Empowering subsequent Attacks if there are enemies nearby. Enemies in the warcry's area are destabilised and will Combust on death. This Skill's cooldown can be bypassed by expending an Endurance Charge.", + skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, }, castTime = 0.8, qualityStats = { - { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%", 0.5 }, - { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%", 2.5 }, + { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_%", 0.5 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 27, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 29, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 33, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 36, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 40, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 45, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 49, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 55, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 61, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 68, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 75, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 83, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 92, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 102, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 113, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 125, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 139, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 154, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 171, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 189, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 210, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 233, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 258, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 286, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 317, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 351, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 389, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 431, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 478, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 529, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 587, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 650, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 720, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 798, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 885, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 980, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1086, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1204, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1334, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1478, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 24, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 27, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 30, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 33, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 36, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 39, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 42, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 46, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 49, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 52, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 56, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 60, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 64, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 68, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 72, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 76, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 80, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 85, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 90, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 94, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 99, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 104, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 110, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 115, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 120, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 132, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 138, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 144, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 151, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 157, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 164, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 171, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 185, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 193, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 201, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 208, }, }, }, statSets = { [1] = { @@ -4127,65 +5417,64 @@ skills["InfernalCryPlayer"] = { duration = true, }, constantStats = { - { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%", 25 }, - { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%", 100 }, - { "skill_empowers_next_x_melee_attacks", 1 }, { "base_skill_effect_duration", 8000 }, { "active_skill_base_area_of_effect_radius", 40 }, { "infernal_cry_explosion_delay_ms", 200 }, - { "warcry_exerts_x_additional_attacks_per_endurance_charge_consumed", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "warcry_empowers_per_X_monster_power", 10 }, + { "warcry_empowers_per_X_monster_power_mp_cap", 50 }, }, stats = { - "warcry_speed_+%", + "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_%", "warcry_count_power_from_enemies", "can_perform_skill_while_moving", "display_statset_no_hit_damage", - "quality_display_infernal_cry_is_gem", + "warcry_minimum_benefit_if_monster_power_present", + "cannot_cancel_skill_before_contact_point", }, levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 2, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 8, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 10, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 12, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 14, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 16, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 18, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 24, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 26, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 28, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 30, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 32, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 34, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 36, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 38, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 40, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 41, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 42, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 43, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 44, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 45, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 46, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 47, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 48, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 49, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 49, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 50, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 50, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 51, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 51, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 52, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 52, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 53, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 53, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 54, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 31, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 33, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 34, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 35, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 36, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 37, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 38, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 39, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 41, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 42, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 43, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 44, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 46, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 47, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 48, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 49, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 50, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 51, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 52, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 53, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 54, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 55, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 56, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 57, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 58, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 59, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 60, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 61, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 62, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 63, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 64, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 65, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 66, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 67, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 68, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 69, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -4194,121 +5483,348 @@ skills["InfernalCryCorpseExplosionPlayer"] = { name = "Combust", hidden = true, description = "The enemy's Corpse violently explodes, dealing Fire damage in an area around it.", - skillTypes = { [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NoAttackOrCastTime] = true, }, + skillTypes = { [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Damage] = true, }, castTime = 1, qualityStats = { }, levels = { [1] = { critChance = 7, levelRequirement = 0, }, - [2] = { critChance = 7, baseMultiplier = 1.1, levelRequirement = 0, }, - [3] = { critChance = 7, baseMultiplier = 1.21, levelRequirement = 0, }, - [4] = { critChance = 7, baseMultiplier = 1.32, levelRequirement = 0, }, - [5] = { critChance = 7, baseMultiplier = 1.42, levelRequirement = 0, }, - [6] = { critChance = 7, baseMultiplier = 1.53, levelRequirement = 0, }, - [7] = { critChance = 7, baseMultiplier = 1.64, levelRequirement = 0, }, - [8] = { critChance = 7, baseMultiplier = 1.74, levelRequirement = 0, }, - [9] = { critChance = 7, baseMultiplier = 1.82, levelRequirement = 0, }, - [10] = { critChance = 7, baseMultiplier = 1.91, levelRequirement = 0, }, - [11] = { critChance = 7, baseMultiplier = 2.01, levelRequirement = 0, }, - [12] = { critChance = 7, baseMultiplier = 2.11, levelRequirement = 0, }, - [13] = { critChance = 7, baseMultiplier = 2.22, levelRequirement = 0, }, - [14] = { critChance = 7, baseMultiplier = 2.33, levelRequirement = 0, }, - [15] = { critChance = 7, baseMultiplier = 2.44, levelRequirement = 0, }, - [16] = { critChance = 7, baseMultiplier = 2.57, levelRequirement = 0, }, - [17] = { critChance = 7, baseMultiplier = 2.69, levelRequirement = 0, }, - [18] = { critChance = 7, baseMultiplier = 2.83, levelRequirement = 0, }, - [19] = { critChance = 7, baseMultiplier = 2.97, levelRequirement = 0, }, - [20] = { critChance = 7, baseMultiplier = 3.12, levelRequirement = 0, }, - [21] = { critChance = 7, baseMultiplier = 3.27, levelRequirement = 0, }, - [22] = { critChance = 7, baseMultiplier = 3.44, levelRequirement = 0, }, - [23] = { critChance = 7, baseMultiplier = 3.61, levelRequirement = 0, }, - [24] = { critChance = 7, baseMultiplier = 3.79, levelRequirement = 0, }, - [25] = { critChance = 7, baseMultiplier = 3.98, levelRequirement = 0, }, - [26] = { critChance = 7, baseMultiplier = 4.18, levelRequirement = 0, }, - [27] = { critChance = 7, baseMultiplier = 4.39, levelRequirement = 0, }, - [28] = { critChance = 7, baseMultiplier = 4.61, levelRequirement = 0, }, - [29] = { critChance = 7, baseMultiplier = 4.84, levelRequirement = 0, }, - [30] = { critChance = 7, baseMultiplier = 5.08, levelRequirement = 0, }, - [31] = { critChance = 7, baseMultiplier = 5.33, levelRequirement = 0, }, - [32] = { critChance = 7, baseMultiplier = 5.6, levelRequirement = 0, }, - [33] = { critChance = 7, baseMultiplier = 5.88, levelRequirement = 0, }, - [34] = { critChance = 7, baseMultiplier = 6.18, levelRequirement = 0, }, - [35] = { critChance = 7, baseMultiplier = 6.48, levelRequirement = 0, }, - [36] = { critChance = 7, baseMultiplier = 6.81, levelRequirement = 0, }, - [37] = { critChance = 7, baseMultiplier = 7.15, levelRequirement = 0, }, - [38] = { critChance = 7, baseMultiplier = 7.51, levelRequirement = 0, }, - [39] = { critChance = 7, baseMultiplier = 7.88, levelRequirement = 0, }, - [40] = { critChance = 7, baseMultiplier = 8.28, levelRequirement = 0, }, + [2] = { critChance = 7, levelRequirement = 0, }, + [3] = { critChance = 7, levelRequirement = 0, }, + [4] = { critChance = 7, levelRequirement = 0, }, + [5] = { critChance = 7, levelRequirement = 0, }, + [6] = { critChance = 7, levelRequirement = 0, }, + [7] = { critChance = 7, levelRequirement = 0, }, + [8] = { critChance = 7, levelRequirement = 0, }, + [9] = { critChance = 7, levelRequirement = 0, }, + [10] = { critChance = 7, levelRequirement = 0, }, + [11] = { critChance = 7, levelRequirement = 0, }, + [12] = { critChance = 7, levelRequirement = 0, }, + [13] = { critChance = 7, levelRequirement = 0, }, + [14] = { critChance = 7, levelRequirement = 0, }, + [15] = { critChance = 7, levelRequirement = 0, }, + [16] = { critChance = 7, levelRequirement = 0, }, + [17] = { critChance = 7, levelRequirement = 0, }, + [18] = { critChance = 7, levelRequirement = 0, }, + [19] = { critChance = 7, levelRequirement = 0, }, + [20] = { critChance = 7, levelRequirement = 0, }, + [21] = { critChance = 7, levelRequirement = 0, }, + [22] = { critChance = 7, levelRequirement = 0, }, + [23] = { critChance = 7, levelRequirement = 0, }, + [24] = { critChance = 7, levelRequirement = 0, }, + [25] = { critChance = 7, levelRequirement = 0, }, + [26] = { critChance = 7, levelRequirement = 0, }, + [27] = { critChance = 7, levelRequirement = 0, }, + [28] = { critChance = 7, levelRequirement = 0, }, + [29] = { critChance = 7, levelRequirement = 0, }, + [30] = { critChance = 7, levelRequirement = 0, }, + [31] = { critChance = 7, levelRequirement = 0, }, + [32] = { critChance = 7, levelRequirement = 0, }, + [33] = { critChance = 7, levelRequirement = 0, }, + [34] = { critChance = 7, levelRequirement = 0, }, + [35] = { critChance = 7, levelRequirement = 0, }, + [36] = { critChance = 7, levelRequirement = 0, }, + [37] = { critChance = 7, levelRequirement = 0, }, + [38] = { critChance = 7, levelRequirement = 0, }, + [39] = { critChance = 7, levelRequirement = 0, }, + [40] = { critChance = 7, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Combust", + baseEffectiveness = 1.0499999523163, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "infernal_cry_corpse_explosion", + baseFlags = { + area = true, + hit = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 16 }, + { "infernal_cry_explosion_fire_damage_+%_final_per_corpse_power", 10 }, + }, + stats = { + "secondary_minimum_base_fire_damage", + "secondary_maximum_base_fire_damage", + "base_skill_show_average_damage_instead_of_dps", + "damage_cannot_be_reflected", + "is_area_damage", + "triggered_by_infernal_cry", + "display_statset_hide_usage_stats", + "display_skill_deals_secondary_damage", + }, + notMinionStat = { + "secondary_minimum_base_fire_damage", + "secondary_maximum_base_fire_damage", + }, + levels = { + [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, 19, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 15, 23, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 22, 32, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 26, 38, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 64, 95, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 73, 110, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 84, 127, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 97, 146, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 112, 167, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 128, 192, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 194, 291, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 256, 385, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 295, 442, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 339, 508, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 390, 585, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 449, 674, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 518, 777, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 597, 896, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 690, 1035, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 797, 1196, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 923, 1384, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1069, 1603, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1239, 1859, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1439, 2159, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1673, 2510, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1948, 2922, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["IronWardPlayer"] = { + name = "Iron Ward", + baseTypeName = "Iron Ward", + color = 1, + description = "While active, stores a percentage of the Physical damage that is prevented by your Armour or other sources of damage reduction. Using this Skill releases the stored damage as a nova of spikes.", + skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + [2] = { spiritReservationFlat = 30, levelRequirement = 3, }, + [3] = { spiritReservationFlat = 30, levelRequirement = 6, }, + [4] = { spiritReservationFlat = 30, levelRequirement = 10, }, + [5] = { spiritReservationFlat = 30, levelRequirement = 14, }, + [6] = { spiritReservationFlat = 30, levelRequirement = 18, }, + [7] = { spiritReservationFlat = 30, levelRequirement = 22, }, + [8] = { spiritReservationFlat = 30, levelRequirement = 26, }, + [9] = { spiritReservationFlat = 30, levelRequirement = 31, }, + [10] = { spiritReservationFlat = 30, levelRequirement = 36, }, + [11] = { spiritReservationFlat = 30, levelRequirement = 41, }, + [12] = { spiritReservationFlat = 30, levelRequirement = 46, }, + [13] = { spiritReservationFlat = 30, levelRequirement = 52, }, + [14] = { spiritReservationFlat = 30, levelRequirement = 58, }, + [15] = { spiritReservationFlat = 30, levelRequirement = 64, }, + [16] = { spiritReservationFlat = 30, levelRequirement = 66, }, + [17] = { spiritReservationFlat = 30, levelRequirement = 72, }, + [18] = { spiritReservationFlat = 30, levelRequirement = 78, }, + [19] = { spiritReservationFlat = 30, levelRequirement = 84, }, + [20] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [21] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [22] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [23] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [24] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [25] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [26] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [27] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [28] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [29] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [30] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [31] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [32] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [33] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [34] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [35] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [36] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [37] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [38] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, + [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Iron Ward", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + stats = { + "warding_steel_maximum_stored_mitigated_physical_damage", + "warding_steel_gains_%_of_damage_from_mitigated_physical_damage", + "base_deal_no_damage", + "quality_display_warding_steel_is_gem", + }, + levels = { + [1] = { 65, 50, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 116, 55, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 195, 60, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 296, 65, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 432, 70, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 602, 75, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 828, 80, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1124, 85, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1497, 90, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 1980, 95, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 2589, 100, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 3359, 105, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 4335, 110, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 5555, 115, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7092, 120, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 9029, 125, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 11451, 130, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 14457, 135, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 18213, 140, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 22886, 145, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 23858, 150, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 25868, 155, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 29481, 160, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 33951, 165, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 39480, 170, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 41454, 175, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 43526, 180, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 45702, 185, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 47988, 190, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 50388, 195, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 52905, 197, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 55551, 200, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 58329, 202, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 61245, 205, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 64308, 207, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 67524, 210, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 70901, 212, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 74445, 215, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 78167, 217, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 82074, 220, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["IronWardNovaPlayer"] = { + name = "Iron Ward", + hidden = true, + skillTypes = { [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Damage] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_hit_damage_stun_multiplier_+%_final", 2.5 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Combust", - baseEffectiveness = 1.4099999666214, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "infernal_cry_corpse_explosion", + label = "Iron Ward", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "warding_steel_nova", baseFlags = { - area = true, hit = true, + area = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 16 }, - { "infernal_cry_explosion_fire_damage_+%_final_per_corpse_power", 10 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "warding_steel_area_of_effect_+%_final_per_charge_%", 2 }, + { "active_skill_hit_damage_stun_multiplier_+%_final", 200 }, }, stats = { - "secondary_minimum_base_fire_damage", - "secondary_maximum_base_fire_damage", - "base_skill_show_average_damage_instead_of_dps", - "damage_cannot_be_reflected", "is_area_damage", - "triggered_by_infernal_cry", "display_statset_hide_usage_stats", - "display_skill_deals_secondary_damage", - }, - notMinionStat = { - "secondary_minimum_base_fire_damage", - "secondary_maximum_base_fire_damage", + "can_perform_skill_while_moving", }, levels = { - [1] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, 23, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 53, 79, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 73, 109, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 80, 120, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 88, 131, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 120, 180, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 138, 207, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 148, 221, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 157, 236, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 177, 266, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 188, 282, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 199, 298, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 210, 315, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 244, 367, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 256, 385, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 269, 403, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 281, 422, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 294, 442, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 308, 461, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 321, 482, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 335, 502, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 349, 523, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -4318,7 +5834,7 @@ skills["LeapSlamPlayer"] = { baseTypeName = "Leap Slam", color = 1, description = "Jump into the air, damaging and Knocking Back enemies with your mace where you land. Enemies you would land on are\npushed out of the way.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.Travel] = true, [SkillType.Jumping] = true, [SkillType.ConsumesFullyBrokenArmour] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.Travel] = true, [SkillType.Jumping] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -4330,44 +5846,44 @@ skills["LeapSlamPlayer"] = { levels = { [1] = { baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 14, }, }, [2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { baseMultiplier = 1.34, levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 24, }, }, - [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 27, }, }, - [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 30, }, }, - [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 33, }, }, - [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 37, }, }, - [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 41, }, }, - [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 45, }, }, - [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 50, }, }, - [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 56, }, }, - [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 69, }, }, + [3] = { baseMultiplier = 1.34, levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 21, }, }, + [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 24, }, }, + [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 27, }, }, + [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 34, }, }, + [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 37, }, }, + [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 41, }, }, + [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 45, }, }, + [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 50, }, }, + [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 54, }, }, + [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 59, }, }, + [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 65, }, }, + [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 70, }, }, [17] = { baseMultiplier = 3.61, levelRequirement = 72, cost = { Mana = 76, }, }, - [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 85, }, }, - [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 94, }, }, - [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 104, }, }, - [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 115, }, }, - [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 128, }, }, - [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 142, }, }, - [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 157, }, }, - [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 174, }, }, - [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 193, }, }, - [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 214, }, }, - [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 237, }, }, - [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 263, }, }, - [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 291, }, }, - [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 323, }, }, - [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 358, }, }, - [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 396, }, }, - [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 439, }, }, - [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 487, }, }, - [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 539, }, }, - [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 598, }, }, - [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 662, }, }, - [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 734, }, }, - [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 813, }, }, + [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 83, }, }, + [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 90, }, }, + [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 97, }, }, + [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 104, }, }, + [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 113, }, }, + [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 121, }, }, + [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 131, }, }, + [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 140, }, }, + [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 151, }, }, + [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 162, }, }, + [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 173, }, }, + [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 186, }, }, + [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 199, }, }, + [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 212, }, }, + [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 227, }, }, + [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 242, }, }, + [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 259, }, }, + [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 276, }, }, + [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 294, }, }, + [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 314, }, }, + [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 334, }, }, + [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 356, }, }, + [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 379, }, }, }, statSets = { [1] = { @@ -4443,190 +5959,12 @@ skills["LeapSlamPlayer"] = { }, } } -skills["MetaCastLightningSpellOnHitPlayer"] = { - name = "Thundergod's Wrath", - baseTypeName = "Thundergod's Wrath", - color = 1, - description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Lightning spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, - castTime = 0, - qualityStats = { - { "energy_generated_+%", 0.75 }, - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Thundergod's Wrath", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "cast_lightning_spell_on_hit", - baseFlags = { - spell = true, - }, - constantStats = { - { "cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 }, - { "skill_desired_amount_override", 1 }, - }, - stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", - }, - levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Thundergod's Wrath", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "cast_lightning_spell_on_hit", - baseFlags = { - }, - constantStats = { - { "cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 }, - { "skill_desired_amount_override", 1 }, - { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, - }, - stats = { - "energy_generated_+%", - "damage_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", - "triggered_by_generic_ongoing_trigger", - "no_cost", - }, - levels = { - [1] = { 0, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 3, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, 30, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, 40, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, 50, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, 60, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, 70, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, 80, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, 90, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, 100, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, 110, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, 120, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, 140, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, 150, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, 160, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, 170, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, 180, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, 190, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, 200, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, 210, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, 220, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, 230, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, 240, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, 250, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 75, 260, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, 270, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, 280, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, 290, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, 300, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, 310, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, 320, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, 330, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, 340, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, 350, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, 360, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, 370, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, 380, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, 390, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, 400, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} skills["ArmourPiercingBoltsAmmoPlayer"] = { name = "Load Armour Piercing Rounds", baseTypeName = "Load Armour Piercing Rounds", color = 1, - description = "Load your Crossbow with a clip of bolts that can be fired rapidly and Break enemy Armour. Using this skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with a clip of bolts that can be fired rapidly and Break enemy Armour. Using this Skill again reloads the clip.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -4637,43 +5975,43 @@ skills["ArmourPiercingBoltsAmmoPlayer"] = { [1] = { levelRequirement = 0, cost = { Mana = 8, }, }, [2] = { levelRequirement = 3, cost = { Mana = 9, }, }, [3] = { levelRequirement = 6, cost = { Mana = 10, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 17, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 23, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 26, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 28, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 32, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 35, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 39, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 12, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 13, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 15, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 17, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 19, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 21, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 23, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 28, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 31, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 33, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 37, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 40, }, }, [17] = { levelRequirement = 72, cost = { Mana = 43, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 48, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 53, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 59, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 65, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 72, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 80, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 89, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 99, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 121, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 134, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 149, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 165, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 183, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 203, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 225, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 249, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 306, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 339, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 376, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 417, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 462, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 47, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 51, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 55, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 59, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 64, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 69, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 74, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 80, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 98, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 105, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 113, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 120, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 129, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 138, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 147, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 157, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 167, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 190, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 202, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 215, }, }, }, statSets = { [1] = { @@ -4684,9 +6022,6 @@ skills["ArmourPiercingBoltsAmmoPlayer"] = { }, constantStats = { { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "base_number_of_crossbow_bolts", @@ -4694,6 +6029,7 @@ skills["ArmourPiercingBoltsAmmoPlayer"] = { "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { 12, statInterpolation = { 1, }, actorLevel = 1, }, @@ -4744,13 +6080,13 @@ skills["ArmourPiercingBoltsPlayer"] = { name = "Armour Piercing Rounds", hidden = true, description = "Rapidly fire bolts that Break enemy Armour. Can fire a limited number of bolts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { - { "armour_break_amount_+%", 1.5 }, + { "armour_break_amount_+%", 1 }, }, levels = { [1] = { attackSpeedMultiplier = 325, baseMultiplier = 0.25, levelRequirement = 0, }, @@ -4828,6 +6164,7 @@ skills["ArmourPiercingBoltsPlayer"] = { "disable_visual_hit_effect", "action_do_not_face_target", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 1, statInterpolation = { 1, }, actorLevel = 1, }, @@ -4879,7 +6216,7 @@ skills["ExplosiveShotAmmoPlayer"] = { baseTypeName = "Load Explosive Shot", color = 1, description = "Load your Crossbow with flaming bolts that explode on impact. The explosion will cause any Grenades in its area of effect to also explode.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -4890,43 +6227,43 @@ skills["ExplosiveShotAmmoPlayer"] = { [1] = { levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { levelRequirement = 3, cost = { Mana = 10, }, }, [3] = { levelRequirement = 6, cost = { Mana = 12, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 18, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 20, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 22, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 27, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 30, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 33, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 37, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 41, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 45, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 14, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 16, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 18, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 20, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 27, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 30, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 33, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 36, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 39, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 42, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 46, }, }, [17] = { levelRequirement = 72, cost = { Mana = 50, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 56, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 62, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 68, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 76, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 84, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 93, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 103, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 114, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 127, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 141, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 156, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 173, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 192, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 212, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 235, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 261, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 289, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 320, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 355, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 394, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 436, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 483, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 536, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 54, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 59, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 64, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 69, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 74, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 80, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 86, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 99, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 106, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 114, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 122, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 131, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 149, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 160, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 170, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 182, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 194, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 207, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 220, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 234, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 250, }, }, }, statSets = { [1] = { @@ -4938,9 +6275,6 @@ skills["ExplosiveShotAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, { "active_skill_reload_speed_+%_final", -30 }, }, stats = { @@ -4948,6 +6282,7 @@ skills["ExplosiveShotAmmoPlayer"] = { "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -4998,7 +6333,7 @@ skills["ExplosiveShotPlayer"] = { name = "Explosive Shot", hidden = true, description = "Fire a flaming bolt that explodes on impact. The explosion will cause any Grenades in its area of effect to also explode.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -5216,55 +6551,55 @@ skills["FragmentationRoundsAmmoPlayer"] = { name = "Load Fragmentation Rounds", baseTypeName = "Load Fragmentation Rounds", color = 1, - description = "Load your Crossbow with Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy consume the Freeze and cause an explosion of shrapnel. Bolts that hit an Ice Crystal cause it to explode.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of shrapnel. Bolts that hit an Ice Crystal cause it to explode. These fragments can Merge.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 0.8, qualityStats = { }, - levels = { - [1] = { levelRequirement = 0, cost = { Mana = 8, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 9, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 10, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 13, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 16, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 18, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 20, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 22, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 25, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 28, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 31, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 34, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 38, }, }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 9, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 10, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 12, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 13, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 15, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 16, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 18, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 20, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 23, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 25, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 27, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 30, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 33, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 36, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 39, }, }, [17] = { levelRequirement = 72, cost = { Mana = 42, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 47, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 52, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 57, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 64, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 71, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 78, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 87, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 96, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 107, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 118, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 131, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 145, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 161, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 198, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 243, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 269, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 298, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 331, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 367, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 406, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 450, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 46, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 49, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 53, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 58, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 62, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 67, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 72, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 78, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 83, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 89, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 96, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 103, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 118, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 126, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 143, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 153, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 163, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 174, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 185, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 197, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 210, }, }, }, statSets = { [1] = { @@ -5276,15 +6611,13 @@ skills["FragmentationRoundsAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -5334,8 +6667,8 @@ skills["FragmentationRoundsAmmoPlayer"] = { skills["FragmentationRoundsPlayer"] = { name = "Fragmentation Rounds", hidden = true, - description = "Fire Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of shrapnel. Bolts that hit an Ice Crystal cause it to explode.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFreeze] = true, }, + description = "Fire Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of ice shards. These fragments can Merge.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -5389,7 +6722,7 @@ skills["FragmentationRoundsPlayer"] = { [1] = { label = "Projectile", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "burst_shot_piercing", + statDescriptionScope = "burst_shot_piercing_statset_0", baseFlags = { attack = true, projectile = true, @@ -5426,6 +6759,7 @@ skills["FragmentationRoundsPlayer"] = { "base_skill_show_average_damage_instead_of_dps", "base_consume_enemy_freeze_on_hit", "never_freeze", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -5473,7 +6807,7 @@ skills["FragmentationRoundsPlayer"] = { [2] = { label = "Vs Frozen", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "burst_shot_piercing", + statDescriptionScope = "burst_shot_piercing_statset_1", baseFlags = { attack = true, projectile = true, @@ -5491,7 +6825,10 @@ skills["FragmentationRoundsPlayer"] = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "skill_specific_stat_description_mode", 1 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "frag_rounds_damage_+%_final_if_created_from_unique", 50 }, }, stats = { "base_is_projectile", @@ -5506,6 +6843,7 @@ skills["FragmentationRoundsPlayer"] = { "can_perform_skill_while_moving", "base_skill_show_average_damage_instead_of_dps", "never_freeze", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_hide_usage_stats", "projectiles_are_not_fired", @@ -5559,56 +6897,55 @@ skills["GalvanicShardsAmmoPlayer"] = { name = "Load Galvanic Shards", baseTypeName = "Load Galvanic Shards", color = 1, - description = "Load your Crossbow with a clip of charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Using this skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. These fragments can Merge.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 0.6, qualityStats = { - { "base_number_of_crossbow_bolts", 0.1 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 8, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 9, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 10, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 13, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 16, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 17, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 24, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 26, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 29, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 33, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 36, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 40, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 44, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 49, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 55, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 61, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 67, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 75, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 83, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 92, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 113, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 139, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 154, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 170, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 189, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 209, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 232, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 257, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 285, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 316, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 350, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 388, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 430, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 476, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 15, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 27, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 32, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 35, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 38, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 41, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 44, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 48, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 52, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 56, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 60, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 64, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 69, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 74, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 80, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 91, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 98, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 104, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 119, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 127, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 136, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 145, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 154, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 164, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 175, }, }, }, statSets = { [1] = { @@ -5618,12 +6955,8 @@ skills["GalvanicShardsAmmoPlayer"] = { baseFlags = { }, constantStats = { - { "base_number_of_crossbow_bolts", 5 }, + { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_reload_speed_+%_final", -50 }, }, stats = { "action_can_be_used_in_aiming_stance", @@ -5631,6 +6964,7 @@ skills["GalvanicShardsAmmoPlayer"] = { "base_deal_no_damage", "display_statset_hide_usage_stats", "quality_display_base_number_of_crossbow_bolts_is_gem", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -5680,55 +7014,56 @@ skills["GalvanicShardsAmmoPlayer"] = { skills["GalvanicShardsPlayer"] = { name = "Galvanic Shards", hidden = true, - description = "Rapidly fire charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Can fire a limited number of bursts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Rapidly fire charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Can fire a limited number of bursts before needing to reload. These fragments can Merge.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { + { "base_number_of_projectiles", 0.1 }, }, levels = { - [1] = { attackSpeedMultiplier = 100, baseMultiplier = 0.1, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 100, baseMultiplier = 0.11, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 100, baseMultiplier = 0.12, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 100, baseMultiplier = 0.13, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 100, baseMultiplier = 0.14, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 100, baseMultiplier = 0.15, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 100, baseMultiplier = 0.16, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 100, baseMultiplier = 0.17, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 100, baseMultiplier = 0.18, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 100, baseMultiplier = 0.19, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 100, baseMultiplier = 0.2, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 100, baseMultiplier = 0.21, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 100, baseMultiplier = 0.22, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 100, baseMultiplier = 0.23, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 100, baseMultiplier = 0.24, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 100, baseMultiplier = 0.26, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 100, baseMultiplier = 0.27, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 100, baseMultiplier = 0.28, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 100, baseMultiplier = 0.3, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 100, baseMultiplier = 0.31, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 100, baseMultiplier = 0.33, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 100, baseMultiplier = 0.34, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 100, baseMultiplier = 0.36, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 100, baseMultiplier = 0.38, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 100, baseMultiplier = 0.4, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 100, baseMultiplier = 0.42, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 100, baseMultiplier = 0.44, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 100, baseMultiplier = 0.46, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 100, baseMultiplier = 0.48, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 100, baseMultiplier = 0.51, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 100, baseMultiplier = 0.53, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 100, baseMultiplier = 0.56, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 100, baseMultiplier = 0.59, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 100, baseMultiplier = 0.62, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 100, baseMultiplier = 0.65, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 100, baseMultiplier = 0.68, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 100, baseMultiplier = 0.71, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 100, baseMultiplier = 0.75, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 100, baseMultiplier = 0.79, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 100, baseMultiplier = 0.83, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.15, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.16, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.18, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.2, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.21, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.23, levelRequirement = 0, }, + [7] = { baseMultiplier = 0.25, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.27, levelRequirement = 0, }, + [9] = { baseMultiplier = 0.28, levelRequirement = 0, }, + [10] = { baseMultiplier = 0.3, levelRequirement = 0, }, + [11] = { baseMultiplier = 0.31, levelRequirement = 0, }, + [12] = { baseMultiplier = 0.33, levelRequirement = 0, }, + [13] = { baseMultiplier = 0.35, levelRequirement = 0, }, + [14] = { baseMultiplier = 0.37, levelRequirement = 0, }, + [15] = { baseMultiplier = 0.4, levelRequirement = 0, }, + [16] = { baseMultiplier = 0.42, levelRequirement = 0, }, + [17] = { baseMultiplier = 0.45, levelRequirement = 0, }, + [18] = { baseMultiplier = 0.48, levelRequirement = 0, }, + [19] = { baseMultiplier = 0.51, levelRequirement = 0, }, + [20] = { baseMultiplier = 0.54, levelRequirement = 0, }, + [21] = { baseMultiplier = 0.58, levelRequirement = 0, }, + [22] = { baseMultiplier = 0.62, levelRequirement = 0, }, + [23] = { baseMultiplier = 0.66, levelRequirement = 0, }, + [24] = { baseMultiplier = 0.7, levelRequirement = 0, }, + [25] = { baseMultiplier = 0.75, levelRequirement = 0, }, + [26] = { baseMultiplier = 0.8, levelRequirement = 0, }, + [27] = { baseMultiplier = 0.85, levelRequirement = 0, }, + [28] = { baseMultiplier = 0.91, levelRequirement = 0, }, + [29] = { baseMultiplier = 0.97, levelRequirement = 0, }, + [30] = { baseMultiplier = 1.04, levelRequirement = 0, }, + [31] = { baseMultiplier = 1.1, levelRequirement = 0, }, + [32] = { baseMultiplier = 1.18, levelRequirement = 0, }, + [33] = { baseMultiplier = 1.26, levelRequirement = 0, }, + [34] = { baseMultiplier = 1.34, levelRequirement = 0, }, + [35] = { baseMultiplier = 1.43, levelRequirement = 0, }, + [36] = { baseMultiplier = 1.52, levelRequirement = 0, }, + [37] = { baseMultiplier = 1.63, levelRequirement = 0, }, + [38] = { baseMultiplier = 1.73, levelRequirement = 0, }, + [39] = { baseMultiplier = 1.85, levelRequirement = 0, }, + [40] = { baseMultiplier = 1.97, levelRequirement = 0, }, }, statSets = { [1] = { @@ -5744,7 +7079,7 @@ skills["GalvanicShardsPlayer"] = { { "projectiles_normal_distribution_height_standard_deviation", 20 }, { "projectiles_normal_distribution_spread_standard_deviation", 14 }, { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "base_number_of_projectiles", 6 }, + { "base_number_of_projectiles", 8 }, { "projectile_distance_variance", 10 }, { "active_skill_projectile_speed_+%_variation_final", 40 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, @@ -5767,6 +7102,7 @@ skills["GalvanicShardsPlayer"] = { "can_perform_skill_while_moving", "base_projectiles_cannot_chain", "quality_display_base_number_of_crossbow_bolts_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -5844,49 +7180,50 @@ skills["GalvanicShardsPlayer"] = { "cannot_cancel_skill_before_contact_point", "can_perform_skill_while_moving", "quality_display_base_number_of_crossbow_bolts_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 0.5, actorLevel = 1, }, - [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.6, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.71, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.82, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.87, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.91, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.96, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.01, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.06, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.11, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.16, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.22, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.28, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.35, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.41, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.49, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.56, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.64, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 1.72, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 1.81, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 1.9, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 1.99, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.09, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.19, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 2.3, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 2.42, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 2.54, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 2.67, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 2.8, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 2.94, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 3.09, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 3.24, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 3.4, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 3.57, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 3.75, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 3.94, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 4.14, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.75, actorLevel = 1, }, + [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.16, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.25, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.33, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.4, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.48, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.57, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.66, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.76, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.87, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.98, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 2.11, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.24, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.39, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.55, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 2.72, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 2.9, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 3.09, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 3.3, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 3.52, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 3.75, actorLevel = 136.875, }, + [26] = { baseMultiplier = 4, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 4.27, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 4.55, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 4.85, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 5.18, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 5.52, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 5.89, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 6.28, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 6.7, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 7.15, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 7.62, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 8.13, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 8.67, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 9.25, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 9.87, actorLevel = 288.29998779297, }, }, }, } @@ -5896,7 +7233,7 @@ skills["GlacialBoltAmmoPlayer"] = { baseTypeName = "Load Glacial Bolt", color = 1, description = "Load your Crossbow with icy bolts that create two walls of Ice Crystals at the end of their flight.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -5908,43 +7245,43 @@ skills["GlacialBoltAmmoPlayer"] = { [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, [2] = { levelRequirement = 3, cost = { Mana = 8, }, }, [3] = { levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 15, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 17, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 18, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 21, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 23, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 25, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 28, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 31, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 11, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 12, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 13, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 17, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 19, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 21, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 23, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 25, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 27, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 30, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 33, }, }, [16] = { levelRequirement = 66, cost = { Mana = 35, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 38, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 43, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 47, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 53, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 58, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 65, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 72, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 79, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 88, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 98, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 108, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 120, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 133, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 147, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 163, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 181, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 201, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 223, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 247, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 273, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 303, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 336, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 372, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 413, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 39, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 42, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 45, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 49, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 53, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 57, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 61, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 66, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 71, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 76, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 82, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 94, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 101, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 108, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 115, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 131, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 149, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 159, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 170, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 181, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 192, }, }, }, statSets = { [1] = { @@ -5956,15 +7293,13 @@ skills["GlacialBoltAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -6015,7 +7350,7 @@ skills["GlacialBoltPlayer"] = { name = "Glacial Bolt", hidden = true, description = "Fire an icy bolt that creates two walls of Ice Crystals at the end of its flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Wall] = true, [SkillType.SupportedByFountains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.IceCrystal] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Wall] = true, [SkillType.SupportedByFountains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.IceCrystal] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6168,6 +7503,9 @@ skills["GlacialBoltPlayer"] = { { "wall_maximum_length", 63 }, { "freezing_bolt_wall_maximum_length", 231 }, { "active_skill_base_area_of_effect_radius", 18 }, + { "ice_crystal_shatter_detonation_damage_+%_final", 0 }, + { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 50 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, }, stats = { "frost_wall_maximum_life", @@ -6186,6 +7524,7 @@ skills["GlacialBoltPlayer"] = { "base_skill_show_average_damage_instead_of_dps", "is_area_damage", "display_statset_hide_usage_stats", + "is_ice_crystal_explosion", }, levels = { [1] = { 36, baseMultiplier = 0.6, statInterpolation = { 1, }, actorLevel = 1, }, @@ -6237,7 +7576,7 @@ skills["HailstormRoundsAmmoPlayer"] = { baseTypeName = "Load Hailstorm Rounds", color = 1, description = "Passively generate bolts of ice at a frequency equal to reload time, up to a cap. Activate to Load the accumulated bolts into your Crossbow. All loaded bolts are fired at once, causing them to rain down over the target area.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6246,46 +7585,46 @@ skills["HailstormRoundsAmmoPlayer"] = { { "base_number_of_crossbow_bolts", 0.25 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 29, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 32, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 36, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 40, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 44, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 49, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 54, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 60, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 67, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 74, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 82, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 91, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 101, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 112, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 124, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 137, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 28, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 33, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 37, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 43, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 48, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 54, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 60, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 67, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 74, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 82, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 90, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 99, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 108, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 118, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 129, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 140, }, }, [17] = { levelRequirement = 72, cost = { Mana = 152, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 169, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 187, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 207, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 230, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 254, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 282, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 313, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 346, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 384, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 425, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 471, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 522, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 579, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 642, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 711, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 788, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 873, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 968, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1072, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1188, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1317, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1459, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1617, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 165, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 179, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 193, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 224, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 242, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 260, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 279, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 300, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 322, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 345, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 369, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 395, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 423, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 452, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 483, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 515, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 550, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 586, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 624, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 665, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 708, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 754, }, }, }, statSets = { [1] = { @@ -6296,10 +7635,7 @@ skills["HailstormRoundsAmmoPlayer"] = { }, constantStats = { { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_reload_speed_+%_final", -50 }, + { "active_skill_reload_speed_+%_final", 100 }, }, stats = { "base_number_of_crossbow_bolts", @@ -6311,6 +7647,7 @@ skills["HailstormRoundsAmmoPlayer"] = { "crossbow_ammo_skill_has_passive_reloading", "display_statset_hide_usage_stats", "quality_display_base_number_of_crossbow_bolts_is_gem", + "skill_is_instant_while_sprinting", }, levels = { [1] = { 16, statInterpolation = { 1, }, actorLevel = 1, }, @@ -6360,8 +7697,8 @@ skills["HailstormRoundsAmmoPlayer"] = { skills["HailstormRoundsPlayer"] = { name = "Hailstorm Rounds", hidden = true, - description = "Fire all loaded bolts into the sky, causing them to rain down over the target area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, }, + description = "Fire all loaded bolts into the sky, causing them to rain down over the target area, starting at the centre and spreading outward.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Rain] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6369,46 +7706,46 @@ skills["HailstormRoundsPlayer"] = { qualityStats = { }, levels = { - [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 25, }, }, - [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 27, }, }, - [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.61, levelRequirement = 0, cost = { Mana = 31, }, }, - [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 34, }, }, - [5] = { attackSpeedMultiplier = -45, baseMultiplier = 0.73, levelRequirement = 0, cost = { Mana = 38, }, }, - [6] = { attackSpeedMultiplier = -45, baseMultiplier = 0.79, levelRequirement = 0, cost = { Mana = 43, }, }, - [7] = { attackSpeedMultiplier = -45, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 48, }, }, - [8] = { attackSpeedMultiplier = -45, baseMultiplier = 0.91, levelRequirement = 0, cost = { Mana = 53, }, }, - [9] = { attackSpeedMultiplier = -45, baseMultiplier = 0.97, levelRequirement = 0, cost = { Mana = 59, }, }, - [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.03, levelRequirement = 0, cost = { Mana = 66, }, }, - [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.09, levelRequirement = 0, cost = { Mana = 74, }, }, - [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.17, levelRequirement = 0, cost = { Mana = 82, }, }, - [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.25, levelRequirement = 0, cost = { Mana = 92, }, }, - [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.33, levelRequirement = 0, cost = { Mana = 102, }, }, - [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.42, levelRequirement = 0, cost = { Mana = 114, }, }, - [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.53, levelRequirement = 0, cost = { Mana = 127, }, }, - [17] = { attackSpeedMultiplier = -45, baseMultiplier = 1.64, levelRequirement = 0, cost = { Mana = 142, }, }, - [18] = { attackSpeedMultiplier = -45, baseMultiplier = 1.76, levelRequirement = 0, cost = { Mana = 159, }, }, - [19] = { attackSpeedMultiplier = -45, baseMultiplier = 1.89, levelRequirement = 0, cost = { Mana = 177, }, }, - [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.04, levelRequirement = 0, cost = { Mana = 197, }, }, - [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.2, levelRequirement = 0, cost = { Mana = 220, }, }, - [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.37, levelRequirement = 0, cost = { Mana = 245, }, }, - [23] = { attackSpeedMultiplier = -45, baseMultiplier = 2.55, levelRequirement = 0, cost = { Mana = 274, }, }, - [24] = { attackSpeedMultiplier = -45, baseMultiplier = 2.75, levelRequirement = 0, cost = { Mana = 305, }, }, - [25] = { attackSpeedMultiplier = -45, baseMultiplier = 2.96, levelRequirement = 0, cost = { Mana = 340, }, }, - [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.19, levelRequirement = 0, cost = { Mana = 380, }, }, - [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.44, levelRequirement = 0, cost = { Mana = 423, }, }, - [28] = { attackSpeedMultiplier = -45, baseMultiplier = 3.7, levelRequirement = 0, cost = { Mana = 472, }, }, - [29] = { attackSpeedMultiplier = -45, baseMultiplier = 3.99, levelRequirement = 0, cost = { Mana = 526, }, }, - [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.3, levelRequirement = 0, cost = { Mana = 587, }, }, - [31] = { attackSpeedMultiplier = -45, baseMultiplier = 4.63, levelRequirement = 0, cost = { Mana = 654, }, }, - [32] = { attackSpeedMultiplier = -45, baseMultiplier = 4.99, levelRequirement = 0, cost = { Mana = 730, }, }, - [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.37, levelRequirement = 0, cost = { Mana = 814, }, }, - [34] = { attackSpeedMultiplier = -45, baseMultiplier = 5.79, levelRequirement = 0, cost = { Mana = 907, }, }, - [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.24, levelRequirement = 0, cost = { Mana = 1012, }, }, - [36] = { attackSpeedMultiplier = -45, baseMultiplier = 6.72, levelRequirement = 0, cost = { Mana = 1128, }, }, - [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.24, levelRequirement = 0, cost = { Mana = 1258, }, }, - [38] = { attackSpeedMultiplier = -45, baseMultiplier = 7.8, levelRequirement = 0, cost = { Mana = 1403, }, }, - [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.4, levelRequirement = 0, cost = { Mana = 1564, }, }, - [40] = { attackSpeedMultiplier = -45, baseMultiplier = 9.05, levelRequirement = 0, cost = { Mana = 1744, }, }, + [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 24, }, }, + [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.77, levelRequirement = 0, cost = { Mana = 28, }, }, + [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 32, }, }, + [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.93, levelRequirement = 0, cost = { Mana = 36, }, }, + [5] = { attackSpeedMultiplier = -45, levelRequirement = 0, cost = { Mana = 41, }, }, + [6] = { attackSpeedMultiplier = -45, baseMultiplier = 1.08, levelRequirement = 0, cost = { Mana = 46, }, }, + [7] = { attackSpeedMultiplier = -45, baseMultiplier = 1.16, levelRequirement = 0, cost = { Mana = 51, }, }, + [8] = { attackSpeedMultiplier = -45, baseMultiplier = 1.24, levelRequirement = 0, cost = { Mana = 57, }, }, + [9] = { attackSpeedMultiplier = -45, baseMultiplier = 1.31, levelRequirement = 0, cost = { Mana = 63, }, }, + [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.38, levelRequirement = 0, cost = { Mana = 69, }, }, + [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.46, levelRequirement = 0, cost = { Mana = 76, }, }, + [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.55, levelRequirement = 0, cost = { Mana = 84, }, }, + [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.64, levelRequirement = 0, cost = { Mana = 92, }, }, + [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.74, levelRequirement = 0, cost = { Mana = 100, }, }, + [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.85, levelRequirement = 0, cost = { Mana = 109, }, }, + [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.97, levelRequirement = 0, cost = { Mana = 119, }, }, + [17] = { attackSpeedMultiplier = -45, baseMultiplier = 2.09, levelRequirement = 0, cost = { Mana = 129, }, }, + [18] = { attackSpeedMultiplier = -45, baseMultiplier = 2.23, levelRequirement = 0, cost = { Mana = 140, }, }, + [19] = { attackSpeedMultiplier = -45, baseMultiplier = 2.38, levelRequirement = 0, cost = { Mana = 151, }, }, + [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.54, levelRequirement = 0, cost = { Mana = 163, }, }, + [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.7, levelRequirement = 0, cost = { Mana = 176, }, }, + [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.88, levelRequirement = 0, cost = { Mana = 190, }, }, + [23] = { attackSpeedMultiplier = -45, baseMultiplier = 3.08, levelRequirement = 0, cost = { Mana = 205, }, }, + [24] = { attackSpeedMultiplier = -45, baseMultiplier = 3.28, levelRequirement = 0, cost = { Mana = 220, }, }, + [25] = { attackSpeedMultiplier = -45, baseMultiplier = 3.5, levelRequirement = 0, cost = { Mana = 237, }, }, + [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.73, levelRequirement = 0, cost = { Mana = 254, }, }, + [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.98, levelRequirement = 0, cost = { Mana = 272, }, }, + [28] = { attackSpeedMultiplier = -45, baseMultiplier = 4.25, levelRequirement = 0, cost = { Mana = 292, }, }, + [29] = { attackSpeedMultiplier = -45, baseMultiplier = 4.53, levelRequirement = 0, cost = { Mana = 313, }, }, + [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.83, levelRequirement = 0, cost = { Mana = 335, }, }, + [31] = { attackSpeedMultiplier = -45, baseMultiplier = 5.15, levelRequirement = 0, cost = { Mana = 358, }, }, + [32] = { attackSpeedMultiplier = -45, baseMultiplier = 5.5, levelRequirement = 0, cost = { Mana = 383, }, }, + [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.86, levelRequirement = 0, cost = { Mana = 409, }, }, + [34] = { attackSpeedMultiplier = -45, baseMultiplier = 6.25, levelRequirement = 0, cost = { Mana = 436, }, }, + [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.67, levelRequirement = 0, cost = { Mana = 465, }, }, + [36] = { attackSpeedMultiplier = -45, baseMultiplier = 7.12, levelRequirement = 0, cost = { Mana = 496, }, }, + [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.59, levelRequirement = 0, cost = { Mana = 529, }, }, + [38] = { attackSpeedMultiplier = -45, baseMultiplier = 8.09, levelRequirement = 0, cost = { Mana = 563, }, }, + [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.63, levelRequirement = 0, cost = { Mana = 600, }, }, + [40] = { attackSpeedMultiplier = -45, baseMultiplier = 9.21, levelRequirement = 0, cost = { Mana = 638, }, }, }, statSets = { [1] = { @@ -6427,11 +7764,13 @@ skills["HailstormRoundsPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_base_area_of_effect_radius", 12 }, - { "active_skill_base_secondary_area_of_effect_radius", 25 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 10 }, + { "active_skill_base_secondary_area_of_effect_radius", 40 }, + { "rain_hit_delay_ms", 200 }, }, stats = { + "active_skill_hit_damage_freeze_multiplier_+%_final", "base_is_projectile", "is_area_damage", "can_perform_skill_while_moving", @@ -6440,46 +7779,46 @@ skills["HailstormRoundsPlayer"] = { "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 100, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 103, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 106, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 109, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 112, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 115, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 118, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 121, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 124, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 127, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 130, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 133, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 136, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 139, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 142, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 145, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 148, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 151, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 154, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 157, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 160, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 163, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 166, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 169, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 172, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 175, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 178, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 181, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 184, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 187, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 188, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 190, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 191, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 193, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 194, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 196, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 197, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 199, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 200, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 202, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6488,8 +7827,8 @@ skills["HighVelocityRoundsAmmoPlayer"] = { name = "Load High Velocity Rounds", baseTypeName = "Load High Velocity Rounds", color = 1, - description = "Load your Crossbow with Piercing bolts that can consume Fully Broken Armour on enemies to deal extra damage.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, }, + description = "Load your Crossbow with Piercing bolts that apply Riven Armour to enemies with Fully Broken Armour, causing any Hits against those enemies to deal extra damage.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6497,46 +7836,46 @@ skills["HighVelocityRoundsAmmoPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 13, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 16, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 18, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 20, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 22, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 24, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 27, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 30, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 33, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 8, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 9, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 13, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 16, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 18, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 20, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 22, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 24, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 26, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 28, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 31, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 34, }, }, [17] = { levelRequirement = 72, cost = { Mana = 37, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 41, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 45, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 50, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 56, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 62, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 68, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 76, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 84, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 93, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 103, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 115, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 127, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 141, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 156, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 173, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 192, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 213, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 236, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 261, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 289, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 321, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 355, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 394, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 40, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 43, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 47, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 50, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 54, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 59, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 63, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 68, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 73, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 78, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 84, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 90, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 96, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 103, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 110, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 117, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 125, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 143, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 162, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 172, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 183, }, }, }, statSets = { [1] = { @@ -6548,15 +7887,13 @@ skills["HighVelocityRoundsAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -6606,8 +7943,8 @@ skills["HighVelocityRoundsAmmoPlayer"] = { skills["HighVelocityRoundsPlayer"] = { name = "High Velocity Rounds", hidden = true, - description = "Fire a powerful Piercing bolt that can consume Fully Broken Armour on enemies to deal extra damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, }, + description = "Fire a powerful Piercing bolt that applies Riven Armour to enemies with Fully Broken Armour, causing any Hits against those enemies to deal extra damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6695,6 +8032,7 @@ skills["HighVelocityRoundsPlayer"] = { "can_perform_skill_while_moving", "base_skill_show_average_damage_instead_of_dps", "cannot_break_armour", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -6760,6 +8098,9 @@ skills["HighVelocityRoundsPlayer"] = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + { "exploit_debuff_attack_damage_to_convert_to_magnitude_%", 5 }, + { "active_skill_damage_+%_final_vs_unique_enemies", 0 }, }, stats = { "base_is_projectile", @@ -6776,50 +8117,50 @@ skills["HighVelocityRoundsPlayer"] = { "can_perform_skill_while_moving", "base_skill_show_average_damage_instead_of_dps", "cannot_break_armour", - "base_consume_enemy_armour_broken_on_hit", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 3.5, actorLevel = 1, }, - [2] = { baseMultiplier = 3.86, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 4.26, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 4.67, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 5.08, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 5.5, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 5.94, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 6.36, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 6.76, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 7.19, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 7.65, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 8.16, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 8.72, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 9.32, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 9.97, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 10.69, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 11.47, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 12.33, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 13.26, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 14.29, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 15.39, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 16.58, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 17.87, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 19.25, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 20.73, actorLevel = 136.875, }, - [26] = { baseMultiplier = 22.34, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 24.06, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 25.92, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 27.93, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 30.09, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 32.41, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 34.92, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 37.62, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 40.52, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 43.66, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 47.03, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 50.66, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 54.58, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 58.8, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 63.34, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 2.2, actorLevel = 1, }, + [2] = { baseMultiplier = 2.42, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 2.65, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 2.88, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 3.1, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 3.32, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 3.53, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 3.71, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 3.87, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 4.03, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 4.2, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 4.37, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 4.54, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 4.71, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 4.89, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 5.06, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 5.25, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 5.43, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 5.61, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 5.8, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 5.99, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 6.19, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 6.4, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 6.61, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 6.83, actorLevel = 136.875, }, + [26] = { baseMultiplier = 7.05, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 7.29, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 7.53, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 7.78, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 8.04, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 8.31, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 8.58, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 8.87, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 9.16, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 9.47, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 9.78, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 10.1, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 10.44, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 10.79, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 11.14, actorLevel = 288.29998779297, }, }, }, } @@ -6828,8 +8169,8 @@ skills["IceShardsAmmoPlayer"] = { name = "Load Ice Shards", baseTypeName = "Load Ice Shards", color = 1, - description = "Load your Crossbow with a clip of icy bolts that rapidly fire at the ground, leaving a shard of ice at the impact location unless the bolt hits an enemy. The ice shards shatter when enemies step on them, dealing damage to nearby enemies. Using this skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with a clip of icy bolts that rapidly fire at the ground, leaving a shard of ice at the impact location that arms after a duration. After arming, the ice shards explode when enemies step on them, dealing more damage the longer they have been armed, up to a maximum. Using this Skill again reloads the clip.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6837,46 +8178,46 @@ skills["IceShardsAmmoPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 13, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 12, }, }, [2] = { levelRequirement = 3, cost = { Mana = 14, }, }, [3] = { levelRequirement = 6, cost = { Mana = 16, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 17, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 19, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 21, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 24, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 26, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 29, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 32, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 36, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 40, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 44, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 49, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 54, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 60, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 19, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 21, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 24, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 26, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 29, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 33, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 36, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 40, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 43, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 48, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 52, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 57, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 62, }, }, [17] = { levelRequirement = 72, cost = { Mana = 67, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 74, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 82, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 91, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 101, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 112, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 124, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 138, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 153, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 169, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 188, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 208, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 230, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 255, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 283, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 314, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 348, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 385, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 427, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 473, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 524, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 581, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 644, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 714, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 73, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 79, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 92, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 99, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 107, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 115, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 123, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 132, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 142, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 163, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 174, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 187, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 199, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 213, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 227, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 243, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 259, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 276, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 294, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 313, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 333, }, }, }, statSets = { [1] = { @@ -6888,15 +8229,13 @@ skills["IceShardsAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 16 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -6946,56 +8285,56 @@ skills["IceShardsAmmoPlayer"] = { skills["IceShardsPlayer"] = { name = "Ice Shards", hidden = true, - description = "Rapidly fire icy bolts at the ground, leaving a shard of ice at the impact location unless the bolt hits an enemy. The ice shards shatter when enemies step on them, dealing damage to nearby enemies. Can fire a limited number of bolts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.Hazard] = true, }, + description = "Rapidly fire icy bolts at the ground, leaving a shard of ice at the impact location that arms after a duration. After arming, the ice shards explode when enemies step on them, dealing more damage the longer they have been armed, up to a maximum. Can fire a limited number of bolts before needing to reload.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.Hazard] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { - { "permafrost_shard_damage_+%_final_after_1_second", 10 }, + { "active_skill_chill_as_though_damage_+%_final", 5 }, }, levels = { [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.08, levelRequirement = 0, }, [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.09, levelRequirement = 0, }, [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.1, levelRequirement = 0, }, [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.12, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.13, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.14, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.12, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.13, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.14, levelRequirement = 0, }, [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, }, [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.16, levelRequirement = 0, }, [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.17, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.19, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.24, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.28, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.3, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.41, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.44, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.47, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.51, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.55, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.59, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.64, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.74, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.8, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.86, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 450, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 450, baseMultiplier = 1.16, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 450, baseMultiplier = 1.25, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 450, baseMultiplier = 1.34, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.45, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.18, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.19, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.24, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.25, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.27, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.52, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.55, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.59, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.63, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.67, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.71, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = 450, baseMultiplier = 0.76, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = 450, baseMultiplier = 0.81, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = 450, baseMultiplier = 0.87, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = 450, baseMultiplier = 0.99, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.05, levelRequirement = 0, }, }, statSets = { [1] = { @@ -7102,8 +8441,11 @@ skills["IceShardsPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_cold", 40 }, { "permafrost_shard_detection_base_area_of_effect_radius", 8 }, { "active_skill_base_area_of_effect_radius", 14 }, - { "permafrost_shard_damage_+%_final_after_1_second", 700 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, { "permafrost_shard_limit", 16 }, + { "permafrost_shard_arming_time_ms", 1500 }, + { "permafrost_shard_bonus_damage_delay_ms", 3000 }, + { "permafrost_shard_damage_+%_final_after_1_second", 300 }, }, stats = { "active_skill_chill_as_though_damage_+%_final", @@ -7122,48 +8464,49 @@ skills["IceShardsPlayer"] = { "quality_display_permafrost_shard_damage_+%_final_after_1_second_is_gem", "is_area_damage", "display_statset_hide_usage_stats", + "is_hazard", }, levels = { - [1] = { 200, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 210, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 220, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 230, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 240, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 260, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 270, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 280, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 290, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 300, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 310, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 320, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 330, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 340, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 350, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 360, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 370, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 380, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 390, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 400, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 410, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 420, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 430, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 440, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 450, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 460, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 470, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 480, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 490, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 500, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 510, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 520, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 530, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 540, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 550, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 560, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 570, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 580, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 590, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 200, baseMultiplier = 0.2, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 210, baseMultiplier = 0.22, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 220, baseMultiplier = 0.24, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 230, baseMultiplier = 0.27, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 240, baseMultiplier = 0.29, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 250, baseMultiplier = 0.31, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 260, baseMultiplier = 0.34, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 270, baseMultiplier = 0.36, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 280, baseMultiplier = 0.39, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 290, baseMultiplier = 0.41, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 300, baseMultiplier = 0.44, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 310, baseMultiplier = 0.47, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 320, baseMultiplier = 0.5, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 330, baseMultiplier = 0.53, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 340, baseMultiplier = 0.57, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 350, baseMultiplier = 0.61, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 360, baseMultiplier = 0.66, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 370, baseMultiplier = 0.7, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 380, baseMultiplier = 0.76, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 390, baseMultiplier = 0.82, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 400, baseMultiplier = 0.88, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 410, baseMultiplier = 0.95, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 420, baseMultiplier = 1.02, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 430, baseMultiplier = 1.1, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 440, baseMultiplier = 1.18, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 450, baseMultiplier = 1.28, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 460, baseMultiplier = 1.38, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 470, baseMultiplier = 1.48, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 480, baseMultiplier = 1.6, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 490, baseMultiplier = 1.72, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 500, baseMultiplier = 1.85, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 510, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 520, baseMultiplier = 2.15, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 530, baseMultiplier = 2.32, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 540, baseMultiplier = 2.49, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 550, baseMultiplier = 2.69, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 560, baseMultiplier = 2.9, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 570, baseMultiplier = 3.12, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 580, baseMultiplier = 3.36, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 590, baseMultiplier = 3.62, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7172,8 +8515,8 @@ skills["IncendiaryShotAmmoPlayer"] = { name = "Load Incendiary Shot", baseTypeName = "Load Incendiary Shot", color = 1, - description = "Load your Crossbow with flaming bolts that fragment in flight, damaging and Igniting enemies on hit and in a small cone behind their final target.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with flaming bolts that fragment in flight, damaging and Igniting enemies on hit and in a small cone behind their final target. These fragments can Merge.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -7184,43 +8527,43 @@ skills["IncendiaryShotAmmoPlayer"] = { [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { levelRequirement = 3, cost = { Mana = 7, }, }, [3] = { levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 12, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 17, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 19, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 21, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 23, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 26, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 28, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 31, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 15, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 27, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 32, }, }, [17] = { levelRequirement = 72, cost = { Mana = 35, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 39, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 43, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 48, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 53, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 59, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 65, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 72, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 80, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 89, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 98, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 121, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 134, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 149, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 165, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 183, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 202, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 224, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 249, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 306, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 339, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 375, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 38, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 41, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 44, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 48, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 52, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 56, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 60, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 64, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 69, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 74, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 80, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 91, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 98, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 104, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 119, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 127, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 136, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 145, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 154, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 164, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 175, }, }, }, statSets = { [1] = { @@ -7232,15 +8575,13 @@ skills["IncendiaryShotAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -7290,56 +8631,56 @@ skills["IncendiaryShotAmmoPlayer"] = { skills["IncendiaryShotPlayer"] = { name = "Incendiary Shot", hidden = true, - description = "Fire flaming bolts that fragment in flight, damaging and Igniting enemies on hit, and in a small cone behind their final target.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Fire flaming bolts that fragment in flight, damaging and Igniting enemies on hit, and in a small cone behind their final target. These fragments can Merge.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { - { "base_ignite_effect_+%", 1 }, + { "ignite_duration_+%_per_shotgun_pellet_hit", 0.75 }, }, levels = { - [1] = { baseMultiplier = 0.17, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.19, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.21, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.22, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.24, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.26, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.28, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.3, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.32, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.34, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.36, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.38, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.45, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.51, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.54, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.62, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.7, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.75, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.85, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.91, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.97, levelRequirement = 0, }, - [28] = { baseMultiplier = 1.03, levelRequirement = 0, }, - [29] = { baseMultiplier = 1.1, levelRequirement = 0, }, - [30] = { baseMultiplier = 1.17, levelRequirement = 0, }, - [31] = { baseMultiplier = 1.25, levelRequirement = 0, }, - [32] = { baseMultiplier = 1.34, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.42, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.52, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.62, levelRequirement = 0, }, - [36] = { baseMultiplier = 1.73, levelRequirement = 0, }, - [37] = { baseMultiplier = 1.84, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.97, levelRequirement = 0, }, - [39] = { baseMultiplier = 2.1, levelRequirement = 0, }, - [40] = { baseMultiplier = 2.24, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.1, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.11, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.12, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.13, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.14, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.15, levelRequirement = 0, }, + [7] = { baseMultiplier = 0.17, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.18, levelRequirement = 0, }, + [9] = { baseMultiplier = 0.19, levelRequirement = 0, }, + [10] = { baseMultiplier = 0.2, levelRequirement = 0, }, + [11] = { baseMultiplier = 0.21, levelRequirement = 0, }, + [12] = { baseMultiplier = 0.22, levelRequirement = 0, }, + [13] = { baseMultiplier = 0.23, levelRequirement = 0, }, + [14] = { baseMultiplier = 0.25, levelRequirement = 0, }, + [15] = { baseMultiplier = 0.26, levelRequirement = 0, }, + [16] = { baseMultiplier = 0.28, levelRequirement = 0, }, + [17] = { baseMultiplier = 0.3, levelRequirement = 0, }, + [18] = { baseMultiplier = 0.32, levelRequirement = 0, }, + [19] = { baseMultiplier = 0.34, levelRequirement = 0, }, + [20] = { baseMultiplier = 0.36, levelRequirement = 0, }, + [21] = { baseMultiplier = 0.39, levelRequirement = 0, }, + [22] = { baseMultiplier = 0.41, levelRequirement = 0, }, + [23] = { baseMultiplier = 0.44, levelRequirement = 0, }, + [24] = { baseMultiplier = 0.47, levelRequirement = 0, }, + [25] = { baseMultiplier = 0.5, levelRequirement = 0, }, + [26] = { baseMultiplier = 0.53, levelRequirement = 0, }, + [27] = { baseMultiplier = 0.57, levelRequirement = 0, }, + [28] = { baseMultiplier = 0.61, levelRequirement = 0, }, + [29] = { baseMultiplier = 0.65, levelRequirement = 0, }, + [30] = { baseMultiplier = 0.69, levelRequirement = 0, }, + [31] = { baseMultiplier = 0.74, levelRequirement = 0, }, + [32] = { baseMultiplier = 0.79, levelRequirement = 0, }, + [33] = { baseMultiplier = 0.84, levelRequirement = 0, }, + [34] = { baseMultiplier = 0.89, levelRequirement = 0, }, + [35] = { baseMultiplier = 0.95, levelRequirement = 0, }, + [36] = { baseMultiplier = 1.02, levelRequirement = 0, }, + [37] = { baseMultiplier = 1.08, levelRequirement = 0, }, + [38] = { baseMultiplier = 1.16, levelRequirement = 0, }, + [39] = { baseMultiplier = 1.23, levelRequirement = 0, }, + [40] = { baseMultiplier = 1.32, levelRequirement = 0, }, }, statSets = { [1] = { @@ -7358,7 +8699,6 @@ skills["IncendiaryShotPlayer"] = { { "base_number_of_projectiles", 10 }, { "projectile_distance_variance", 10 }, { "active_skill_projectile_speed_+%_variation_final", 40 }, - { "active_skill_hit_damage_stun_multiplier_+%_final", 0 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, { "crossbow_barrage_recoil_per_shot", 1 }, { "crossbow_barrage_total_recoil_buff_count", 8 }, @@ -7366,11 +8706,14 @@ skills["IncendiaryShotPlayer"] = { { "base_knockback_distance", 75 }, { "burst_shot_cone_angle", 220 }, { "active_skill_base_area_of_effect_radius", 19 }, - { "active_skill_ignite_chance_+%_final", 100 }, - { "active_skill_ignite_effect_+%_final", 0 }, + { "active_skill_ignite_chance_+%_final", 300 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "ignite_duration_+%_per_shotgun_pellet_hit", 30 }, + { "consume_X_heat_on_skill_use", 30 }, + { "ignite_effect_+%_final_if_heat_is_consumed", 50 }, + { "faster_burn_%", 200 }, }, stats = { "base_is_projectile", @@ -7385,6 +8728,7 @@ skills["IncendiaryShotPlayer"] = { "cannot_cancel_skill_before_contact_point", "can_perform_skill_while_moving", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -7435,8 +8779,8 @@ skills["PermafrostBoltsAmmoPlayer"] = { name = "Load Permafrost Bolts", baseTypeName = "Load Permafrost Bolts", color = 1, - description = "Load your Crossbow with icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies. These fragments can Merge.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -7447,43 +8791,43 @@ skills["PermafrostBoltsAmmoPlayer"] = { [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { levelRequirement = 3, cost = { Mana = 7, }, }, [3] = { levelRequirement = 6, cost = { Mana = 8, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 9, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 10, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 11, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 12, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 14, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 17, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 19, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 21, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 23, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 26, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 28, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 31, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 10, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 11, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 12, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 14, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 15, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 17, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 19, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 21, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 23, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 25, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 27, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 30, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 32, }, }, [17] = { levelRequirement = 72, cost = { Mana = 35, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 39, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 43, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 48, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 53, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 59, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 65, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 72, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 80, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 89, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 98, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 109, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 121, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 134, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 149, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 165, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 183, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 202, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 224, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 249, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 276, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 306, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 339, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 375, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 38, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 41, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 44, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 48, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 52, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 56, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 60, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 64, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 69, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 74, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 80, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 91, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 98, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 104, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 119, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 127, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 136, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 145, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 154, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 164, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 175, }, }, }, statSets = { [1] = { @@ -7495,15 +8839,13 @@ skills["PermafrostBoltsAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -7553,8 +8895,8 @@ skills["PermafrostBoltsAmmoPlayer"] = { skills["PermafrostBoltsPlayer"] = { name = "Permafrost Bolts", hidden = true, - description = "Fire icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Fire icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies. These fragments can Merge.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -7570,39 +8912,39 @@ skills["PermafrostBoltsPlayer"] = { [5] = { baseMultiplier = 0.24, levelRequirement = 0, }, [6] = { baseMultiplier = 0.26, levelRequirement = 0, }, [7] = { baseMultiplier = 0.28, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.3, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.32, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.34, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.36, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.38, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.45, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.51, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.54, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.62, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.7, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.75, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.85, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.91, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.97, levelRequirement = 0, }, - [28] = { baseMultiplier = 1.03, levelRequirement = 0, }, - [29] = { baseMultiplier = 1.1, levelRequirement = 0, }, - [30] = { baseMultiplier = 1.17, levelRequirement = 0, }, - [31] = { baseMultiplier = 1.25, levelRequirement = 0, }, - [32] = { baseMultiplier = 1.34, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.42, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.52, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.62, levelRequirement = 0, }, - [36] = { baseMultiplier = 1.73, levelRequirement = 0, }, - [37] = { baseMultiplier = 1.84, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.97, levelRequirement = 0, }, - [39] = { baseMultiplier = 2.1, levelRequirement = 0, }, - [40] = { baseMultiplier = 2.24, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.29, levelRequirement = 0, }, + [9] = { baseMultiplier = 0.31, levelRequirement = 0, }, + [10] = { baseMultiplier = 0.32, levelRequirement = 0, }, + [11] = { baseMultiplier = 0.34, levelRequirement = 0, }, + [12] = { baseMultiplier = 0.35, levelRequirement = 0, }, + [13] = { baseMultiplier = 0.37, levelRequirement = 0, }, + [14] = { baseMultiplier = 0.38, levelRequirement = 0, }, + [15] = { baseMultiplier = 0.4, levelRequirement = 0, }, + [16] = { baseMultiplier = 0.42, levelRequirement = 0, }, + [17] = { baseMultiplier = 0.44, levelRequirement = 0, }, + [18] = { baseMultiplier = 0.45, levelRequirement = 0, }, + [19] = { baseMultiplier = 0.47, levelRequirement = 0, }, + [20] = { baseMultiplier = 0.49, levelRequirement = 0, }, + [21] = { baseMultiplier = 0.51, levelRequirement = 0, }, + [22] = { baseMultiplier = 0.54, levelRequirement = 0, }, + [23] = { baseMultiplier = 0.56, levelRequirement = 0, }, + [24] = { baseMultiplier = 0.58, levelRequirement = 0, }, + [25] = { baseMultiplier = 0.61, levelRequirement = 0, }, + [26] = { baseMultiplier = 0.63, levelRequirement = 0, }, + [27] = { baseMultiplier = 0.66, levelRequirement = 0, }, + [28] = { baseMultiplier = 0.69, levelRequirement = 0, }, + [29] = { baseMultiplier = 0.71, levelRequirement = 0, }, + [30] = { baseMultiplier = 0.74, levelRequirement = 0, }, + [31] = { baseMultiplier = 0.78, levelRequirement = 0, }, + [32] = { baseMultiplier = 0.81, levelRequirement = 0, }, + [33] = { baseMultiplier = 0.84, levelRequirement = 0, }, + [34] = { baseMultiplier = 0.88, levelRequirement = 0, }, + [35] = { baseMultiplier = 0.91, levelRequirement = 0, }, + [36] = { baseMultiplier = 0.95, levelRequirement = 0, }, + [37] = { baseMultiplier = 0.99, levelRequirement = 0, }, + [38] = { baseMultiplier = 1.03, levelRequirement = 0, }, + [39] = { baseMultiplier = 1.08, levelRequirement = 0, }, + [40] = { baseMultiplier = 1.12, levelRequirement = 0, }, }, statSets = { [1] = { @@ -7643,48 +8985,49 @@ skills["PermafrostBoltsPlayer"] = { "cannot_cancel_skill_before_contact_point", "can_perform_skill_while_moving", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 80, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 84, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 88, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 92, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 96, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 100, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 104, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 108, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 112, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 116, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 120, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 124, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 128, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 132, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 136, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 140, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 144, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 148, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 152, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 156, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 160, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 164, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 168, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 172, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 176, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 180, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 184, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 188, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 192, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 196, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 198, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 200, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 202, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 204, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 206, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 208, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 210, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 212, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 214, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 216, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 200, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 216, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 232, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 248, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 264, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 280, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 296, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 312, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 328, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 344, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 360, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 376, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 392, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 408, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 424, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 440, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 456, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 472, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 488, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 504, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 520, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 536, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 552, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 568, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 584, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 600, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 616, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 632, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 648, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 664, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 680, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 696, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 712, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 728, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 744, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 760, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 776, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 792, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 808, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 824, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7694,7 +9037,7 @@ skills["PlasmaBlastAmmoPlayer"] = { baseTypeName = "Load Plasma Blast", color = 1, description = "Load your Crossbow with unstable bolts that require a lengthy charging period to fire but deal devastating damage, Pierce through enemies, and explode upon hitting terrain. Additional Projectiles are fired in a spread, unlike other Crossbow Skills.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -7703,45 +9046,45 @@ skills["PlasmaBlastAmmoPlayer"] = { }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 22, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 25, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 28, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 31, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 34, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 38, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 42, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 47, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 52, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 57, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 64, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 71, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 78, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 87, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 21, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 24, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 27, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 30, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 34, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 38, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 42, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 47, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 52, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 57, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 63, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 69, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 75, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 82, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 89, }, }, [17] = { levelRequirement = 72, cost = { Mana = 96, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 107, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 118, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 131, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 145, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 161, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 179, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 198, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 243, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 269, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 299, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 331, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 367, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 407, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 451, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 499, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 553, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 613, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 680, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 753, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 835, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 925, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1025, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 104, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 113, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 122, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 132, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 142, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 153, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 165, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 177, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 190, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 204, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 218, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 234, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 250, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 268, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 286, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 306, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 326, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 348, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 371, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 396, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 421, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 449, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 477, }, }, }, statSets = { [1] = { @@ -7753,9 +9096,6 @@ skills["PlasmaBlastAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", @@ -7763,6 +9103,7 @@ skills["PlasmaBlastAmmoPlayer"] = { "base_deal_no_damage", "display_statset_hide_usage_stats", "quality_display_base_number_of_crossbow_bolts_is_gem", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -7813,7 +9154,7 @@ skills["PlasmaBlastPlayer"] = { name = "Plasma Blast", hidden = true, description = "Channel to charge an unstable bolt. The bolt deals devastating damage and explodes on hitting terrain, but cannot be fired at all unless fully charged. Additional Projectiles are fired in a spread, unlike other Crossbow Skills.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -7875,17 +9216,17 @@ skills["PlasmaBlastPlayer"] = { }, constantStats = { { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 70 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, { "crossbow_barrage_recoil_per_shot", 2 }, { "crossbow_barrage_total_recoil_buff_count", 8 }, { "crossbow_barrage_debuff_duration_ms", 300 }, { "base_knockback_distance", 400 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "active_skill_shock_chance_+%_final", 30 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "total_attack_time_+_ms", 2000 }, { "channel_end_duration_as_%_of_attack_time", 35 }, + { "active_skill_shock_effect_+%_final", 50 }, }, stats = { "base_is_projectile", @@ -7898,6 +9239,7 @@ skills["PlasmaBlastPlayer"] = { "disable_visual_hit_effect", "can_perform_skill_while_moving", "always_pierce", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -7954,16 +9296,16 @@ skills["PlasmaBlastPlayer"] = { }, constantStats = { { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 70 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, { "crossbow_barrage_recoil_per_shot", 2 }, { "crossbow_barrage_total_recoil_buff_count", 8 }, { "crossbow_barrage_debuff_duration_ms", 300 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "active_skill_shock_chance_+%_final", 30 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "channel_end_duration_as_%_of_attack_time", 35 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 }, + { "active_skill_shock_effect_+%_final", 50 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "active_skill_base_area_of_effect_radius", 32 }, }, stats = { @@ -7975,6 +9317,7 @@ skills["PlasmaBlastPlayer"] = { "projectile_uses_contact_direction", "check_for_targets_between_initiator_and_projectile_source", "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_hide_usage_stats", }, @@ -8027,8 +9370,8 @@ skills["RapidShotAmmoPlayer"] = { name = "Load Rapid Shot", baseTypeName = "Load Rapid Shot", color = 1, - description = "Load your Crossbow with a large clip of heavily modified bolts that cause Heat to build up on your crossbow, before unleashing a stream of flaming bolts that gain Fire Damage based on your Heat. Heat also grants bonus damage to Grenades you fire, but dissipates rapidly when not building up. Using this skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with a large clip of heated bolts. Heat builds up on your Crossbow as you fire them, and reaching maximum Heat will prevent you from firing or reloading these bolts for a short time. However, other Skills can Consume Heat for extra benefits. Using this Skill again reloads the clip.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8036,46 +9379,46 @@ skills["RapidShotAmmoPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 28, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 27, }, }, [2] = { levelRequirement = 3, cost = { Mana = 31, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 34, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 38, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 42, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 47, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 52, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 58, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 64, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 71, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 79, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 87, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 97, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 108, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 119, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 132, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 36, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 41, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 46, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 52, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 58, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 65, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 72, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 79, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 87, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 95, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 104, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 114, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 124, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 135, }, }, [17] = { levelRequirement = 72, cost = { Mana = 147, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 162, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 180, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 200, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 221, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 245, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 272, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 301, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 334, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 370, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 410, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 454, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 503, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 558, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 618, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 685, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 759, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 841, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 932, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 1033, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 1145, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1269, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1406, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1558, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 159, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 172, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 186, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 201, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 216, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 233, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 251, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 269, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 310, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 332, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 356, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 381, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 407, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 435, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 465, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 496, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 530, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 565, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 602, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 641, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 682, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 726, }, }, }, statSets = { [1] = { @@ -8086,59 +9429,57 @@ skills["RapidShotAmmoPlayer"] = { }, constantStats = { { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "active_skill_reload_speed_+%_final", -50 }, + { "base_number_of_crossbow_bolts", 100 }, }, stats = { - "base_number_of_crossbow_bolts", "action_can_be_used_in_aiming_stance", "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "quality_display_base_number_of_crossbow_bolts_is_gem", + "skill_is_instant_while_sprinting", }, levels = { - [1] = { 40, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 42, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 45, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 47, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 50, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 52, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 55, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 57, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 60, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 65, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 67, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 70, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 72, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 75, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 77, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 80, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 82, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 85, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 87, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 90, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 92, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 95, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 97, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 100, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 102, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 105, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 107, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 110, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 112, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 115, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 117, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 120, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 122, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 125, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 127, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 130, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 132, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 135, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 137, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -8146,63 +9487,61 @@ skills["RapidShotAmmoPlayer"] = { skills["RapidShotPlayer"] = { name = "Rapid Shot", hidden = true, - description = "Fire heavily modified bolts that cause Heat to build up on your crossbow. Using this skill causes an initial buildup of Heat before unleashing a stream of flaming bolts that gain Fire Damage based on your Heat. Heat also grants bonus damage to Grenades you fire, but dissipates rapidly when not building up. Can fire a large number of bolts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Fire] = true, }, + description = "Fire a stream of heated bolts. Heat builds up on your Crossbow as you fire, and reaching maximum heat will prevent you from firing these bolts for a short time. However, other Skills can Consume Heat for extra benefits.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Fire] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { - { "rapid_shot_maximum_num_of_stacks", 0.25 }, + { "maximum_number_of_crossbow_heat_stacks", 0.75 }, }, levels = { - [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.16, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.18, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.25, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.27, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.3, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.32, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.37, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.42, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.45, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.47, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.52, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.54, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.57, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.6, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.63, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.66, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.73, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.76, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.8, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.84, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.88, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 450, baseMultiplier = 0.97, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 450, baseMultiplier = 1.02, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 450, baseMultiplier = 1.13, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 450, baseMultiplier = 1.18, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.24, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, }, + [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, }, + [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.34, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.37, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, }, + [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, }, + [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.51, levelRequirement = 0, }, + [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.54, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.58, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.61, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.65, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.73, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.78, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.83, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.88, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.94, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = 450, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = 450, baseMultiplier = 1.14, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = 450, baseMultiplier = 1.22, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = 450, baseMultiplier = 1.3, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = 450, baseMultiplier = 1.39, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = 450, baseMultiplier = 1.48, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = 450, baseMultiplier = 1.58, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = 450, baseMultiplier = 1.68, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = 450, baseMultiplier = 1.79, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = 450, baseMultiplier = 1.91, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = 450, baseMultiplier = 2.04, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = 450, baseMultiplier = 2.18, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = 450, baseMultiplier = 2.32, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = 450, baseMultiplier = 2.48, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = 450, baseMultiplier = 2.64, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = 450, baseMultiplier = 2.82, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = 450, baseMultiplier = 3.01, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = 450, baseMultiplier = 3.21, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = 450, baseMultiplier = 3.42, levelRequirement = 0, }, }, statSets = { [1] = { label = "Projectile", - baseEffectiveness = 0.33000001311302, - incrementalEffectiveness = 0.027599999681115, - damageIncrementalEffectiveness = 0.010739999823272, + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "rapid_shot_incendiary", baseFlags = { attack = true, @@ -8211,8 +9550,6 @@ skills["RapidShotPlayer"] = { constantStats = { { "action_required_target_facing_angle_tolerance_degrees", 60 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, - { "incendiary_rapid_shot_buff_decay_per_stack_ms", 200 }, - { "rapid_shot_minimum_stacks_required_to_fire", 1 }, { "active_skill_override_turn_duration_ms", 100 }, { "active_skill_facing_angle_turn_duration_ms", 100 }, { "crossbow_barrage_recoil_per_shot", 1 }, @@ -8221,13 +9558,10 @@ skills["RapidShotPlayer"] = { { "base_knockback_distance", 30 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "rapid_shot_charge_up_time_as_%_of_attack_time", 800 }, - { "rapid_shot_heat_gained_per_minue_while_performing", 240 }, - { "rapid_shot_all_damage_%_to_gain_as_fire_per_stack", 7 }, - { "rapid_shot_next_grenade_all_damage_%_to_gain_as_fire_per_stack", 6 }, + { "skill_specific_stat_description_mode", 10000 }, }, stats = { - "rapid_shot_maximum_num_of_stacks", + "maximum_number_of_crossbow_heat_stacks", "base_is_projectile", "has_modular_projectiles_enabled", "action_requires_aiming_stance", @@ -8240,48 +9574,49 @@ skills["RapidShotPlayer"] = { "action_do_not_face_target", "can_perform_skill_while_moving", "quality_display_rapid_shot_maximum_num_of_stacks_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 15, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 15, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 17, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 18, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 19, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 20, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 21, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 21, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 22, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 22, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 23, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 23, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 24, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 24, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 25, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 25, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 26, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 26, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 27, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 27, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 28, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 28, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 29, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 29, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 30, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 30, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 31, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 31, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 32, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 32, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 33, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 33, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 34, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 34, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 26, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 27, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 28, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 29, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 30, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 31, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 32, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 33, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 34, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 35, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 36, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 37, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 38, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 40, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 41, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 42, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 43, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 44, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 45, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 46, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 47, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 48, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 49, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 50, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 51, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 52, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 53, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 54, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 55, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 56, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 57, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 58, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 59, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 60, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 61, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 62, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 63, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 64, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 65, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -8290,8 +9625,8 @@ skills["ShockburstRoundsAmmoPlayer"] = { name = "Load Shockburst Rounds", baseTypeName = "Load Shockburst Rounds", color = 1, - description = "Load your Crossbow with a clip of charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Using this skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with a clip of charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Using this Skill again reloads the clip.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8300,46 +9635,46 @@ skills["ShockburstRoundsAmmoPlayer"] = { { "base_number_of_crossbow_bolts", 0.2 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 15, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 23, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 28, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 31, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 34, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 38, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 42, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 47, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 52, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 58, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 64, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 71, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 17, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 19, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 22, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 25, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 28, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 31, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 35, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 38, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 42, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 46, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 51, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 56, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 61, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 67, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 72, }, }, [17] = { levelRequirement = 72, cost = { Mana = 79, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 87, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 97, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 107, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 119, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 131, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 146, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 162, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 179, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 199, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 220, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 244, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 270, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 300, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 332, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 368, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 408, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 452, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 501, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 555, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 615, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 682, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 755, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 837, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 85, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 92, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 100, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 108, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 116, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 125, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 134, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 144, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 155, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 166, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 191, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 204, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 234, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 250, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 266, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 284, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 303, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 323, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 366, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 390, }, }, }, statSets = { [1] = { @@ -8350,9 +9685,6 @@ skills["ShockburstRoundsAmmoPlayer"] = { }, constantStats = { { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, { "active_skill_reload_speed_+%_final", -20 }, }, stats = { @@ -8362,6 +9694,7 @@ skills["ShockburstRoundsAmmoPlayer"] = { "base_deal_no_damage", "display_statset_hide_usage_stats", "quality_display_base_number_of_crossbow_bolts_is_gem", + "skill_is_instant_while_sprinting", }, levels = { [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, @@ -8412,7 +9745,7 @@ skills["ShockburstRoundsPlayer"] = { name = "Shockburst Rounds", hidden = true, description = "Rapidly fire charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Can fire a limited number of bolts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8495,6 +9828,7 @@ skills["ShockburstRoundsPlayer"] = { "action_do_not_face_target", "can_perform_skill_while_moving", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -8574,50 +9908,51 @@ skills["ShockburstRoundsPlayer"] = { "action_do_not_face_target", "can_perform_skill_while_moving", "never_shock", + "precise_cursor_targeting_uses_contact_point_height_offset", "is_area_damage", "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 0.35, actorLevel = 1, }, - [2] = { baseMultiplier = 0.38, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.42, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.46, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.5, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.54, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.58, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.62, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.65, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.69, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 0.73, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 0.78, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 0.82, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 0.87, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 0.93, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 0.98, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.05, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.12, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.19, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.27, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.35, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 1.44, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 1.54, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 1.64, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 1.75, actorLevel = 136.875, }, - [26] = { baseMultiplier = 1.87, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 1.99, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 2.12, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 2.27, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 2.42, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 2.58, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 2.75, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 2.93, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 3.13, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 3.34, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 3.56, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 3.79, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 4.05, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 4.32, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 4.6, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.3, actorLevel = 1, }, + [2] = { baseMultiplier = 0.33, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.36, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.4, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.43, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.46, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.5, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.53, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.56, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.59, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 0.63, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 0.66, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 0.7, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 0.75, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 0.79, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 0.84, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 0.9, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 0.96, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.02, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.09, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.16, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 1.24, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 1.32, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 1.41, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 1.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 1.6, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 1.71, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 1.82, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 1.94, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 2.07, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 2.21, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 2.36, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 2.51, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 2.68, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 2.86, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 3.05, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 3.25, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 3.47, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 3.7, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 3.95, actorLevel = 288.29998779297, }, }, }, } @@ -8627,7 +9962,7 @@ skills["SiegeCascadeAmmoPlayer"] = { baseTypeName = "Load Siege Cascade", color = 1, description = "Load your Crossbow with enemy-seeking payloads which are fired into the air, dropping a bolt near every enemy in the target area. These bolts lodge in the ground and explode after a short delay.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8637,44 +9972,44 @@ skills["SiegeCascadeAmmoPlayer"] = { levels = { [1] = { levelRequirement = 0, cost = { Mana = 12, }, }, [2] = { levelRequirement = 3, cost = { Mana = 13, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 16, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 18, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 23, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 25, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 28, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 31, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 34, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 38, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 42, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 47, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 52, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 58, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 16, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 18, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 20, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 23, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 25, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 28, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 31, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 34, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 38, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 41, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 45, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 50, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 54, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 59, }, }, [17] = { levelRequirement = 72, cost = { Mana = 64, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 71, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 79, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 87, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 97, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 107, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 119, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 132, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 146, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 162, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 179, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 199, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 220, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 244, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 270, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 300, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 332, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 368, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 408, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 452, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 501, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 555, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 615, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 682, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 69, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 75, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 81, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 88, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 94, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 102, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 109, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 118, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 126, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 135, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 145, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 155, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 166, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 190, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 203, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 217, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 231, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 247, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 263, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 280, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 298, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 317, }, }, }, statSets = { [1] = { @@ -8686,9 +10021,6 @@ skills["SiegeCascadeAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 1 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, { "active_skill_reload_speed_+%_final", -30 }, }, stats = { @@ -8697,6 +10029,7 @@ skills["SiegeCascadeAmmoPlayer"] = { "can_perform_skill_while_moving", "base_deal_no_damage", "display_statset_hide_usage_stats", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -8747,7 +10080,7 @@ skills["SiegeCascadePlayer"] = { name = "Siege Cascade", hidden = true, description = "Aim skyward and fires an enemy-seeking payload which drops a bolt near every enemy in the target area. These bolts lodge in the ground and explode after a short delay.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8756,46 +10089,46 @@ skills["SiegeCascadePlayer"] = { { "active_skill_damage_+%_final_vs_immobilised_enemies", 4 }, }, levels = { - [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.25, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.27, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.3, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.33, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.36, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.39, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.42, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.47, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.49, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.52, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.55, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.59, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.62, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 0.7, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = -25, baseMultiplier = 0.75, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 0.85, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 0.91, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 0.97, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.17, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.42, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.62, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 1.73, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.23, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.54, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.71, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 2.89, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.08, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.29, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 0, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 0, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.62, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.71, levelRequirement = 0, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.75, levelRequirement = 0, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.79, levelRequirement = 0, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = -25, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.27, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.36, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.65, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.28, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 2.43, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.14, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.35, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 3.81, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.07, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 4.63, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 4.93, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.26, levelRequirement = 0, }, }, statSets = { [1] = { @@ -8816,15 +10149,12 @@ skills["SiegeCascadePlayer"] = { { "action_required_target_facing_angle_tolerance_degrees", 90 }, { "base_number_of_projectiles", 1 }, { "siege_cascade_fall_time_ms", 500 }, - { "active_skill_damage_+%_final_vs_immobilised_enemies", 200 }, { "active_skill_base_area_of_effect_radius", 40 }, - { "active_skill_base_secondary_area_of_effect_radius", 5 }, + { "active_skill_base_secondary_area_of_effect_radius", 4 }, { "siege_cascade_visual_fall_time_delay_%", 70 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "active_skill_hit_damage_stun_multiplier_+%_final", -100 }, }, stats = { "base_is_projectile", @@ -8896,16 +10226,13 @@ skills["SiegeCascadePlayer"] = { { "action_required_target_facing_angle_tolerance_degrees", 90 }, { "base_number_of_projectiles", 1 }, { "siege_cascade_fall_time_ms", 500 }, - { "active_skill_damage_+%_final_vs_immobilised_enemies", 200 }, { "active_skill_base_area_of_effect_radius", 40 }, - { "active_skill_base_secondary_area_of_effect_radius", 5 }, + { "active_skill_base_secondary_area_of_effect_radius", 4 }, { "siege_cascade_visual_fall_time_delay_%", 70 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "active_skill_hit_damage_stun_multiplier_+%_final", -100 }, - { "active_skill_base_secondary_area_of_effect_radius", 5 }, + { "active_skill_base_secondary_area_of_effect_radius", 4 }, }, stats = { "base_is_projectile", @@ -8917,46 +10244,46 @@ skills["SiegeCascadePlayer"] = { "quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem", }, levels = { - [1] = { baseMultiplier = 1.1, actorLevel = 1, }, - [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.58, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.7, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.83, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.95, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.06, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.17, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.3, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.44, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.58, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 2.74, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 2.91, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 3.09, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 3.29, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.51, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.74, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 3.98, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 4.25, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 4.53, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 4.83, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 5.16, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 5.5, actorLevel = 136.875, }, - [26] = { baseMultiplier = 5.87, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 6.26, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 6.67, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 7.12, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 7.59, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 8.1, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 8.64, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 9.21, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 9.83, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 10.48, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 11.18, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 11.93, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 12.72, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 13.57, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 14.47, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 1.5, actorLevel = 1, }, + [2] = { baseMultiplier = 1.65, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.82, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.98, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 2.15, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 2.32, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 2.49, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 2.65, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 2.8, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.96, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 3.14, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 3.32, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 3.52, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 3.74, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 3.97, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 4.22, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 4.49, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 4.78, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 5.09, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 5.43, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 5.79, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 6.18, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 6.59, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 7.03, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 7.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 8, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 8.53, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 9.1, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 9.71, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 10.35, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 11.04, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 11.78, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 12.56, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 13.4, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 14.29, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 15.25, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 16.26, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 17.35, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 18.5, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 19.73, actorLevel = 288.29998779297, }, }, }, } @@ -8965,8 +10292,8 @@ skills["StormblastBoltsAmmoPlayer"] = { name = "Load Stormblast Bolts", baseTypeName = "Load Stormblast Bolts", color = 1, - description = "Load your Crossbow with charged bolts that land around the target location and explode if hit by a Detonator Skill. Using this skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Load your Crossbow with charged bolts that land around the target location and explode if hit by a Detonator Skill. Using this Skill again reloads the clip.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8976,44 +10303,44 @@ skills["StormblastBoltsAmmoPlayer"] = { levels = { [1] = { levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { levelRequirement = 3, cost = { Mana = 10, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 14, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 22, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 24, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 27, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 30, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 33, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 36, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 40, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 45, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 12, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 14, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 24, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 27, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 29, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 32, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 35, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 39, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 42, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 46, }, }, [17] = { levelRequirement = 72, cost = { Mana = 50, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 55, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 61, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 68, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 75, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 83, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 92, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 113, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 126, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 139, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 155, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 171, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 190, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 210, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 233, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 258, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 286, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 318, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 352, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 390, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 432, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 479, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 531, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 54, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 58, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 63, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 68, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 73, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 79, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 85, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 91, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 98, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 105, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 113, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 121, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 130, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 139, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 148, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 158, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 169, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 180, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 192, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 205, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 218, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 232, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 247, }, }, }, statSets = { [1] = { @@ -9025,9 +10352,6 @@ skills["StormblastBoltsAmmoPlayer"] = { constantStats = { { "base_number_of_crossbow_bolts", 5 }, { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "action_can_be_used_in_aiming_stance", @@ -9036,6 +10360,7 @@ skills["StormblastBoltsAmmoPlayer"] = { "base_deal_no_damage", "display_statset_hide_usage_stats", "quality_display_base_number_of_crossbow_bolts_is_gem", + "skill_is_instant_while_sprinting", }, levels = { [1] = { actorLevel = 1, }, @@ -9086,7 +10411,7 @@ skills["StormblastBoltsPlayer"] = { name = "Stormblast Bolts", hidden = true, description = "Aims skyward and fires charged bolts that land around the target location, dealing damage and lodging in the ground for a duration. Detonator Skills will cause these bolts to explode. Can fire a limited number of bolts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Rain] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -9155,7 +10480,7 @@ skills["StormblastBoltsPlayer"] = { { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "active_skill_base_area_of_effect_radius", 8 }, { "active_skill_base_secondary_area_of_effect_radius", 35 }, - { "base_skill_effect_duration", 8000 }, + { "base_skill_effect_duration", 10000 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "stormblast_bolts_maximum_active_bolt_count", 30 }, }, @@ -9240,46 +10565,46 @@ skills["StormblastBoltsPlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 0.95, actorLevel = 1, }, - [2] = { baseMultiplier = 1.05, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.16, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.27, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.38, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.49, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.61, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.73, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 1.83, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 1.95, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.08, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.22, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.37, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 2.53, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 2.71, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 2.9, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 3.11, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.35, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.6, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 3.88, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 4.18, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 4.5, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 4.85, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 5.22, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 5.63, actorLevel = 136.875, }, - [26] = { baseMultiplier = 6.06, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 6.53, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 7.04, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 7.58, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 8.17, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 8.8, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 9.48, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 10.21, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 11, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 11.85, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 12.77, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 13.75, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 14.81, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 15.96, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 17.19, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 1.15, actorLevel = 1, }, + [2] = { baseMultiplier = 1.27, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.4, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.53, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.67, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.81, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.95, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 2.09, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 2.22, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.36, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 2.51, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 2.68, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 2.86, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 3.06, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 3.28, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 3.51, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 3.77, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 4.05, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 4.36, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 4.7, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 5.06, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 5.45, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 5.87, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 6.32, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 6.81, actorLevel = 136.875, }, + [26] = { baseMultiplier = 7.34, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 7.91, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 8.52, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 9.18, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 9.89, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 10.65, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 11.47, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 12.36, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 13.31, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 14.34, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 15.45, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 16.65, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 17.93, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 19.32, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 20.81, actorLevel = 288.29998779297, }, }, }, } @@ -9288,11 +10613,11 @@ skills["MagmaBarrierPlayer"] = { name = "Magma Barrier", baseTypeName = "Magma Barrier", color = 1, - description = "When you raise your Shield it is infused with magma for a short time. Blocking during this time will spray magma at the attacker and grant you an Endurance Charge.", - skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, }, + description = "While active, increases your Block Chance passively and imbues your Shield with lava over time. When fully imbued, your next Block with your Shield raised will expend the lava to create an explosion, granting you an Endurance Charge.", + skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.GeneratesCharges] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { - { "igneous_shield_perfect_block_window_time_ms", 10 }, + { "skill_igneous_shield_grants_block_chance_+%", 0.25 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -9340,12 +10665,13 @@ skills["MagmaBarrierPlayer"] = { [1] = { label = "Buff", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "igneous_shield", baseFlags = { }, constantStats = { - { "igneous_shield_perfect_block_window_time_ms", 500 }, - { "igneous_shield_perfect_block_cooldown_ms", 750 }, + { "skill_igneous_shield_grants_block_chance_+%", 25 }, + { "igneous_shield_charge_up_time_ms", 8000 }, + { "igneous_shield_charge_up_time_+%", 0 }, }, stats = { "igneous_shield_gain_endurance_charge_on_block", @@ -9399,58 +10725,58 @@ skills["MagmaBarrierPlayer"] = { skills["MagmaSprayPlayer"] = { name = "Magma Spray", hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.GeneratesCharges] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { critChance = 5, baseMultiplier = 1.3, levelRequirement = 0, }, - [2] = { critChance = 5, baseMultiplier = 1.43, levelRequirement = 0, }, - [3] = { critChance = 5, baseMultiplier = 1.57, levelRequirement = 0, }, - [4] = { critChance = 5, baseMultiplier = 1.72, levelRequirement = 0, }, - [5] = { critChance = 5, baseMultiplier = 1.86, levelRequirement = 0, }, - [6] = { critChance = 5, baseMultiplier = 2.01, levelRequirement = 0, }, - [7] = { critChance = 5, baseMultiplier = 2.16, levelRequirement = 0, }, - [8] = { critChance = 5, baseMultiplier = 2.3, levelRequirement = 0, }, - [9] = { critChance = 5, baseMultiplier = 2.43, levelRequirement = 0, }, - [10] = { critChance = 5, baseMultiplier = 2.57, levelRequirement = 0, }, - [11] = { critChance = 5, baseMultiplier = 2.72, levelRequirement = 0, }, - [12] = { critChance = 5, baseMultiplier = 2.88, levelRequirement = 0, }, - [13] = { critChance = 5, baseMultiplier = 3.05, levelRequirement = 0, }, - [14] = { critChance = 5, baseMultiplier = 3.24, levelRequirement = 0, }, - [15] = { critChance = 5, baseMultiplier = 3.44, levelRequirement = 0, }, - [16] = { critChance = 5, baseMultiplier = 3.66, levelRequirement = 0, }, - [17] = { critChance = 5, baseMultiplier = 3.89, levelRequirement = 0, }, - [18] = { critChance = 5, baseMultiplier = 4.14, levelRequirement = 0, }, - [19] = { critChance = 5, baseMultiplier = 4.41, levelRequirement = 0, }, - [20] = { critChance = 5, baseMultiplier = 4.71, levelRequirement = 0, }, - [21] = { critChance = 5, baseMultiplier = 5.02, levelRequirement = 0, }, - [22] = { critChance = 5, baseMultiplier = 5.36, levelRequirement = 0, }, - [23] = { critChance = 5, baseMultiplier = 5.71, levelRequirement = 0, }, - [24] = { critChance = 5, baseMultiplier = 6.09, levelRequirement = 0, }, - [25] = { critChance = 5, baseMultiplier = 6.5, levelRequirement = 0, }, - [26] = { critChance = 5, baseMultiplier = 6.93, levelRequirement = 0, }, - [27] = { critChance = 5, baseMultiplier = 7.4, levelRequirement = 0, }, - [28] = { critChance = 5, baseMultiplier = 7.89, levelRequirement = 0, }, - [29] = { critChance = 5, baseMultiplier = 8.41, levelRequirement = 0, }, - [30] = { critChance = 5, baseMultiplier = 8.97, levelRequirement = 0, }, - [31] = { critChance = 5, baseMultiplier = 9.57, levelRequirement = 0, }, - [32] = { critChance = 5, baseMultiplier = 10.21, levelRequirement = 0, }, - [33] = { critChance = 5, baseMultiplier = 10.89, levelRequirement = 0, }, - [34] = { critChance = 5, baseMultiplier = 11.62, levelRequirement = 0, }, - [35] = { critChance = 5, baseMultiplier = 12.39, levelRequirement = 0, }, - [36] = { critChance = 5, baseMultiplier = 13.21, levelRequirement = 0, }, - [37] = { critChance = 5, baseMultiplier = 14.09, levelRequirement = 0, }, - [38] = { critChance = 5, baseMultiplier = 15.03, levelRequirement = 0, }, - [39] = { critChance = 5, baseMultiplier = 16.03, levelRequirement = 0, }, - [40] = { critChance = 5, baseMultiplier = 17.1, levelRequirement = 0, }, + [1] = { critChance = 5, baseMultiplier = 1.7, levelRequirement = 0, }, + [2] = { critChance = 5, baseMultiplier = 1.87, levelRequirement = 0, }, + [3] = { critChance = 5, baseMultiplier = 2.07, levelRequirement = 0, }, + [4] = { critChance = 5, baseMultiplier = 2.27, levelRequirement = 0, }, + [5] = { critChance = 5, baseMultiplier = 2.47, levelRequirement = 0, }, + [6] = { critChance = 5, baseMultiplier = 2.67, levelRequirement = 0, }, + [7] = { critChance = 5, baseMultiplier = 2.88, levelRequirement = 0, }, + [8] = { critChance = 5, baseMultiplier = 3.09, levelRequirement = 0, }, + [9] = { critChance = 5, baseMultiplier = 3.28, levelRequirement = 0, }, + [10] = { critChance = 5, baseMultiplier = 3.49, levelRequirement = 0, }, + [11] = { critChance = 5, baseMultiplier = 3.72, levelRequirement = 0, }, + [12] = { critChance = 5, baseMultiplier = 3.96, levelRequirement = 0, }, + [13] = { critChance = 5, baseMultiplier = 4.23, levelRequirement = 0, }, + [14] = { critChance = 5, baseMultiplier = 4.53, levelRequirement = 0, }, + [15] = { critChance = 5, baseMultiplier = 4.84, levelRequirement = 0, }, + [16] = { critChance = 5, baseMultiplier = 5.19, levelRequirement = 0, }, + [17] = { critChance = 5, baseMultiplier = 5.57, levelRequirement = 0, }, + [18] = { critChance = 5, baseMultiplier = 5.99, levelRequirement = 0, }, + [19] = { critChance = 5, baseMultiplier = 6.44, levelRequirement = 0, }, + [20] = { critChance = 5, baseMultiplier = 6.94, levelRequirement = 0, }, + [21] = { critChance = 5, baseMultiplier = 7.48, levelRequirement = 0, }, + [22] = { critChance = 5, baseMultiplier = 8.06, levelRequirement = 0, }, + [23] = { critChance = 5, baseMultiplier = 8.68, levelRequirement = 0, }, + [24] = { critChance = 5, baseMultiplier = 9.35, levelRequirement = 0, }, + [25] = { critChance = 5, baseMultiplier = 10.07, levelRequirement = 0, }, + [26] = { critChance = 5, baseMultiplier = 10.85, levelRequirement = 0, }, + [27] = { critChance = 5, baseMultiplier = 11.69, levelRequirement = 0, }, + [28] = { critChance = 5, baseMultiplier = 12.59, levelRequirement = 0, }, + [29] = { critChance = 5, baseMultiplier = 13.56, levelRequirement = 0, }, + [30] = { critChance = 5, baseMultiplier = 14.61, levelRequirement = 0, }, + [31] = { critChance = 5, baseMultiplier = 15.74, levelRequirement = 0, }, + [32] = { critChance = 5, baseMultiplier = 16.96, levelRequirement = 0, }, + [33] = { critChance = 5, baseMultiplier = 18.27, levelRequirement = 0, }, + [34] = { critChance = 5, baseMultiplier = 19.68, levelRequirement = 0, }, + [35] = { critChance = 5, baseMultiplier = 21.2, levelRequirement = 0, }, + [36] = { critChance = 5, baseMultiplier = 22.84, levelRequirement = 0, }, + [37] = { critChance = 5, baseMultiplier = 24.61, levelRequirement = 0, }, + [38] = { critChance = 5, baseMultiplier = 26.51, levelRequirement = 0, }, + [39] = { critChance = 5, baseMultiplier = 28.56, levelRequirement = 0, }, + [40] = { critChance = 5, baseMultiplier = 30.77, levelRequirement = 0, }, }, statSets = { [1] = { label = "Magma Spray", - baseEffectiveness = 2.0699999332428, + baseEffectiveness = 1.210000038147, incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "igneous_shield_explosion", baseFlags = { attack = true, area = true, @@ -9458,58 +10784,60 @@ skills["MagmaSprayPlayer"] = { shieldAttack = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 22 }, - { "igneous_shield_explosion_angle_degrees", 180 }, + { "active_skill_base_area_of_effect_radius", 28 }, + { "igneous_shield_explosion_angle_degrees", 157 }, }, stats = { "off_hand_weapon_minimum_fire_damage", "off_hand_weapon_maximum_fire_damage", "off_hand_minimum_added_fire_damage_per_15_shield_armour", "off_hand_maximum_added_fire_damage_per_15_shield_armour", + "off_hand_minimum_added_fire_damage_per_15_shield_evasion", + "off_hand_maximum_added_fire_damage_per_15_shield_evasion", "base_skill_show_average_damage_instead_of_dps", "display_statset_hide_usage_stats", }, levels = { - [1] = { 6, 10, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 11, 16, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 17, 25, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 23, 34, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 29, 44, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 36, 55, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 44, 66, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 52, 78, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 60, 90, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 69, 103, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 78, 116, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 87, 130, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 97, 145, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 107, 160, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 118, 176, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 129, 193, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 140, 210, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 152, 228, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 164, 246, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 177, 265, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 190, 284, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 203, 304, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 217, 325, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 231, 346, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 246, 368, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 261, 391, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 276, 414, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 292, 437, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 308, 462, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 324, 487, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 341, 512, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 359, 538, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 377, 565, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 395, 592, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 413, 620, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 432, 648, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 452, 677, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 471, 707, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 491, 737, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 512, 768, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 20, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 26, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 32, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 38, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 45, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 53, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 60, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 45, 68, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 57, 85, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 94, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 103, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 75, 113, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 82, 123, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 89, 133, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 144, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 103, 155, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 111, 166, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 119, 178, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 127, 190, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 135, 202, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 144, 215, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 152, 228, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 161, 242, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 170, 256, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 180, 270, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 190, 284, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 200, 299, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 210, 315, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 220, 330, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 346, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 242, 362, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 253, 379, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 264, 396, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 275, 413, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 287, 431, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 299, 449, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -9526,49 +10854,49 @@ skills["MoltenBlastPlayer"] = { }, castTime = 1, qualityStats = { - { "base_inflict_fire_exposure_on_hit_%_chance", 1.5 }, + { "inflict_exposure_on_hit_%_chance", 1.5 }, }, levels = { [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 6, }, }, [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.72, levelRequirement = 3, cost = { Mana = 6, }, }, [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 12, }, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 21, }, }, - [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 23, }, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 26, }, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 28, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 12, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 22, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 27, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 29, }, }, [17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 72, cost = { Mana = 32, }, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 35, }, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 39, }, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 43, }, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 48, }, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 53, }, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 59, }, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 65, }, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 72, }, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 80, }, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 89, }, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 99, }, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 109, }, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 121, }, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 135, }, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 149, }, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 165, }, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 183, }, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 203, }, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 225, }, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 249, }, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 277, }, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 306, }, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 340, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 34, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 37, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 40, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 43, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 47, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 50, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 54, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 58, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 63, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 67, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 72, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 77, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 83, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 89, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 95, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 101, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 108, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 115, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 123, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 131, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 140, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 149, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 158, }, }, }, statSets = { [1] = { @@ -9588,6 +10916,8 @@ skills["MoltenBlastPlayer"] = { { "molten_blast_projectile_speed_as_%_of_attack_time", 150 }, { "molten_blast_target_range", 60 }, { "attack_maximum_action_distance_+", 8 }, + { "active_skill_ignite_chance_+%_final", 200 }, + { "active_skill_ignite_duration_+%_final", 100 }, }, stats = { "base_is_projectile", @@ -9595,6 +10925,7 @@ skills["MoltenBlastPlayer"] = { "projectile_uses_contact_position", "check_for_targets_between_initiator_and_projectile_source", "double_number_of_projectiles_from_dual_wielding", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -9652,6 +10983,8 @@ skills["MoltenBlastPlayer"] = { { "projectile_maximum_range_override", 60 }, { "molten_blast_projectile_speed_as_%_of_attack_time", 150 }, { "attack_maximum_action_distance_+", 8 }, + { "active_skill_ignite_chance_+%_final", 200 }, + { "active_skill_ignite_duration_+%_final", 100 }, { "base_number_of_projectiles", 8 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, { "projectile_maximum_range_override", -30 }, @@ -9662,7 +10995,9 @@ skills["MoltenBlastPlayer"] = { "base_is_projectile", "projectile_uses_contact_position", "check_for_targets_between_initiator_and_projectile_source", + "precise_cursor_targeting_uses_contact_point_height_offset", "projectiles_fire_at_ground", + "modifiers_to_projectile_count_do_not_apply", }, levels = { [1] = { baseMultiplier = 0.65, actorLevel = 1, }, @@ -9709,12 +11044,257 @@ skills["MoltenBlastPlayer"] = { }, } } +skills["MetaMortarCannonPlayer"] = { + name = "Mortar Cannon", + baseTypeName = "Mortar Cannon", + color = 1, + description = "Raise a cannon Ballista Totem which uses socketed Grenade Skills, with significantly improved Cooldown Recovery Rate.", + skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Limit] = true, [SkillType.Grenade] = true, [SkillType.NoAttackInPlace] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.UsableWhileMoving] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, + qualityStats = { + { "totem_skill_area_of_effect_+%", 1 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 23, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 27, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 30, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 34, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 38, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 42, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 47, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 51, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 57, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 62, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 68, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 74, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 81, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 88, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 95, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 103, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 112, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 121, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 131, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 141, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 163, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 175, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 202, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 217, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 232, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 248, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 284, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 303, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 323, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 345, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 368, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 392, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 418, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 445, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 473, }, }, + }, + statSets = { + [1] = { + label = "Mortar Cannon", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + totem = true, + attack = true, + }, + constantStats = { + { "base_totem_duration", 8000 }, + { "base_totem_range", 120 }, + { "base_number_of_totems_allowed", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "totem_elemental_resistance_%", + "totem_chaos_resistance_%", + "base_skill_summons_totems", + "is_totem", + "skill_is_deploy_skill", + "is_ranged_attack_totem", + "quality_display_base_totem_duration_is_gem", + "can_perform_skill_while_moving", + "display_statset_no_hit_damage", + "totem_targets_ignoring_action_distance", + }, + levels = { + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportMortarCannonPlayer"] = { + name = "SupportMortarCannonPlayer", + hidden = true, + support = true, + requireSkillTypes = { SkillType.Grenade, }, + addSkillTypes = { SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.Meta, SkillType.Triggered, SkillType.Channel, SkillType.Persistent, }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMortarCannonPlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + addFlags = { + totem = true, + }, + baseFlags = { + }, + constantStats = { + { "skill_disabled_unless_cloned", 2 }, + { "support_grenade_ballista_attack_speed_+%_final", -50 }, + { "grenade_skill_cooldown_speed_+%", 100 }, + { "support_grenade_ballista_damage_+%_final", -50 }, + { "muzzle_flash_animation_index", 1 }, + }, + stats = { + "base_skill_is_totemified", + "base_skill_is_ballistified", + "ignore_muzzle_flash_animation_name_override", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} skills["OilGrenadePlayer"] = { name = "Oil Grenade", baseTypeName = "Oil Grenade", color = 1, description = "Fire a bouncing Grenade that bursts in a spray of Oil when the fuse expires or when it impacts an Enemy, dealing minimal damage but covering the ground and nearby enemies in Oil. Oil created this way can be Ignited by Detonator Skills or Ignited Ground.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -9726,43 +11306,43 @@ skills["OilGrenadePlayer"] = { [1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.4, cooldown = 5, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.44, cooldown = 5, levelRequirement = 3, cost = { Mana = 10, }, }, [3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.49, cooldown = 5, levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 5, levelRequirement = 10, cost = { Mana = 12, }, }, - [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 5, levelRequirement = 14, cost = { Mana = 13, }, }, - [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 5, levelRequirement = 18, cost = { Mana = 15, }, }, - [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 5, levelRequirement = 22, cost = { Mana = 17, }, }, - [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 5, levelRequirement = 26, cost = { Mana = 19, }, }, - [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 5, levelRequirement = 31, cost = { Mana = 21, }, }, - [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 5, levelRequirement = 36, cost = { Mana = 23, }, }, - [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 5, levelRequirement = 41, cost = { Mana = 25, }, }, - [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 5, levelRequirement = 46, cost = { Mana = 28, }, }, - [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 5, levelRequirement = 52, cost = { Mana = 31, }, }, - [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 5, levelRequirement = 58, cost = { Mana = 35, }, }, - [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 5, levelRequirement = 64, cost = { Mana = 39, }, }, - [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 66, cost = { Mana = 43, }, }, + [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 5, levelRequirement = 10, cost = { Mana = 13, }, }, + [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 5, levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 5, levelRequirement = 18, cost = { Mana = 17, }, }, + [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 5, levelRequirement = 22, cost = { Mana = 19, }, }, + [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 5, levelRequirement = 26, cost = { Mana = 21, }, }, + [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 5, levelRequirement = 31, cost = { Mana = 23, }, }, + [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 5, levelRequirement = 36, cost = { Mana = 25, }, }, + [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 5, levelRequirement = 41, cost = { Mana = 28, }, }, + [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 5, levelRequirement = 46, cost = { Mana = 31, }, }, + [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 5, levelRequirement = 52, cost = { Mana = 34, }, }, + [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 5, levelRequirement = 58, cost = { Mana = 37, }, }, + [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 5, levelRequirement = 64, cost = { Mana = 40, }, }, + [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 66, cost = { Mana = 44, }, }, [17] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.31, cooldown = 5, levelRequirement = 72, cost = { Mana = 47, }, }, - [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 5, levelRequirement = 78, cost = { Mana = 53, }, }, - [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 5, levelRequirement = 84, cost = { Mana = 58, }, }, - [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 65, }, }, - [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 5, levelRequirement = 90, cost = { Mana = 72, }, }, - [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 5, levelRequirement = 90, cost = { Mana = 80, }, }, - [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 5, levelRequirement = 90, cost = { Mana = 88, }, }, - [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 5, levelRequirement = 90, cost = { Mana = 98, }, }, - [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 109, }, }, - [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 5, levelRequirement = 90, cost = { Mana = 120, }, }, - [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 133, }, }, - [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 148, }, }, - [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 164, }, }, - [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 182, }, }, - [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 5, levelRequirement = 90, cost = { Mana = 201, }, }, - [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 223, }, }, - [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 5, levelRequirement = 90, cost = { Mana = 247, }, }, - [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 274, }, }, - [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 304, }, }, - [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 337, }, }, - [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 5, levelRequirement = 90, cost = { Mana = 373, }, }, - [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 413, }, }, - [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 458, }, }, - [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 508, }, }, + [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 5, levelRequirement = 78, cost = { Mana = 51, }, }, + [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 5, levelRequirement = 84, cost = { Mana = 56, }, }, + [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 60, }, }, + [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 5, levelRequirement = 90, cost = { Mana = 65, }, }, + [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 5, levelRequirement = 90, cost = { Mana = 70, }, }, + [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 5, levelRequirement = 90, cost = { Mana = 76, }, }, + [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 5, levelRequirement = 90, cost = { Mana = 81, }, }, + [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 87, }, }, + [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 5, levelRequirement = 90, cost = { Mana = 94, }, }, + [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 101, }, }, + [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 108, }, }, + [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 116, }, }, + [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 124, }, }, + [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 5, levelRequirement = 90, cost = { Mana = 132, }, }, + [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 142, }, }, + [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 5, levelRequirement = 90, cost = { Mana = 151, }, }, + [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 161, }, }, + [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 172, }, }, + [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 184, }, }, + [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 5, levelRequirement = 90, cost = { Mana = 196, }, }, + [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 209, }, }, + [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 222, }, }, + [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 236, }, }, }, statSets = { [1] = { @@ -9784,11 +11364,11 @@ skills["OilGrenadePlayer"] = { { "base_secondary_skill_effect_duration", 5000 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 80 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "skill_base_covered_in_oil_movement_speed_+%_final_to_apply", -20 }, { "skill_base_ground_oil_movement_speed_+%_final_to_apply", -30 }, - { "skill_base_ground_oil_exposure_-_to_total_fire_resistance", 20 }, - { "skill_base_covered_in_oil_exposure_-_to_total_fire_resistance", 20 }, + { "skill_base_ground_oil_exposure_-_to_total_elemental_resistance", 20 }, + { "skill_base_covered_in_oil_exposure_-_to_total_elemental_resistance", 20 }, { "fixed_projectile_spread", 30 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, }, @@ -9858,8 +11438,7 @@ skills["OverwhelmingPresencePlayer"] = { skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, }, castTime = 1, qualityStats = { - { "skill_overwhelming_pressure_aura_enemy_stun_threshold_+%", -0.25 }, - { "skill_overwhelming_pressure_aura_enemy_ailment_threshold_+%", -0.25 }, + { "aura_effect_+%", 0.75 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -9964,8 +11543,8 @@ skills["PerfectStrikePlayer"] = { name = "Perfect Strike", baseTypeName = "Perfect Strike", color = 1, - description = "Charge up your weapon while channelling. Releasing the moment you fully charge will release a wave of Fire.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Channel] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.PerfectTiming] = true, }, + description = "Channel to charge up your weapon with Fire. Releasing with Perfect Timing will create a damaging wave of intense Fire.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Channel] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.PerfectTiming] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -9975,46 +11554,46 @@ skills["PerfectStrikePlayer"] = { { "active_skill_ignite_chance_+%_final", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -65, levelRequirement = 0, cost = { ManaPerMinute = 384, }, }, - [2] = { attackSpeedMultiplier = -65, baseMultiplier = 1.1, levelRequirement = 3, cost = { ManaPerMinute = 425, }, }, - [3] = { attackSpeedMultiplier = -65, baseMultiplier = 1.21, levelRequirement = 6, cost = { ManaPerMinute = 471, }, }, - [4] = { attackSpeedMultiplier = -65, baseMultiplier = 1.32, levelRequirement = 10, cost = { ManaPerMinute = 522, }, }, - [5] = { attackSpeedMultiplier = -65, baseMultiplier = 1.42, levelRequirement = 14, cost = { ManaPerMinute = 578, }, }, - [6] = { attackSpeedMultiplier = -65, baseMultiplier = 1.53, levelRequirement = 18, cost = { ManaPerMinute = 641, }, }, - [7] = { attackSpeedMultiplier = -65, baseMultiplier = 1.64, levelRequirement = 22, cost = { ManaPerMinute = 710, }, }, - [8] = { attackSpeedMultiplier = -65, baseMultiplier = 1.74, levelRequirement = 26, cost = { ManaPerMinute = 787, }, }, - [9] = { attackSpeedMultiplier = -65, baseMultiplier = 1.82, levelRequirement = 31, cost = { ManaPerMinute = 872, }, }, - [10] = { attackSpeedMultiplier = -65, baseMultiplier = 1.91, levelRequirement = 36, cost = { ManaPerMinute = 967, }, }, - [11] = { attackSpeedMultiplier = -65, baseMultiplier = 2.01, levelRequirement = 41, cost = { ManaPerMinute = 1071, }, }, - [12] = { attackSpeedMultiplier = -65, baseMultiplier = 2.11, levelRequirement = 46, cost = { ManaPerMinute = 1187, }, }, - [13] = { attackSpeedMultiplier = -65, baseMultiplier = 2.22, levelRequirement = 52, cost = { ManaPerMinute = 1316, }, }, - [14] = { attackSpeedMultiplier = -65, baseMultiplier = 2.33, levelRequirement = 58, cost = { ManaPerMinute = 1458, }, }, - [15] = { attackSpeedMultiplier = -65, baseMultiplier = 2.44, levelRequirement = 64, cost = { ManaPerMinute = 1615, }, }, - [16] = { attackSpeedMultiplier = -65, baseMultiplier = 2.57, levelRequirement = 66, cost = { ManaPerMinute = 1790, }, }, - [17] = { attackSpeedMultiplier = -65, baseMultiplier = 2.69, levelRequirement = 72, cost = { ManaPerMinute = 1984, }, }, - [18] = { attackSpeedMultiplier = -65, baseMultiplier = 2.83, levelRequirement = 78, cost = { ManaPerMinute = 2198, }, }, - [19] = { attackSpeedMultiplier = -65, baseMultiplier = 2.97, levelRequirement = 84, cost = { ManaPerMinute = 2436, }, }, - [20] = { attackSpeedMultiplier = -65, baseMultiplier = 3.12, levelRequirement = 90, cost = { ManaPerMinute = 2699, }, }, - [21] = { attackSpeedMultiplier = -65, baseMultiplier = 3.27, levelRequirement = 90, cost = { ManaPerMinute = 2991, }, }, - [22] = { attackSpeedMultiplier = -65, baseMultiplier = 3.44, levelRequirement = 90, cost = { ManaPerMinute = 3315, }, }, - [23] = { attackSpeedMultiplier = -65, baseMultiplier = 3.61, levelRequirement = 90, cost = { ManaPerMinute = 3673, }, }, - [24] = { attackSpeedMultiplier = -65, baseMultiplier = 3.79, levelRequirement = 90, cost = { ManaPerMinute = 4070, }, }, - [25] = { attackSpeedMultiplier = -65, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 4510, }, }, - [26] = { attackSpeedMultiplier = -65, baseMultiplier = 4.18, levelRequirement = 90, cost = { ManaPerMinute = 4998, }, }, - [27] = { attackSpeedMultiplier = -65, baseMultiplier = 4.39, levelRequirement = 90, cost = { ManaPerMinute = 5538, }, }, - [28] = { attackSpeedMultiplier = -65, baseMultiplier = 4.61, levelRequirement = 90, cost = { ManaPerMinute = 6137, }, }, - [29] = { attackSpeedMultiplier = -65, baseMultiplier = 4.84, levelRequirement = 90, cost = { ManaPerMinute = 6800, }, }, - [30] = { attackSpeedMultiplier = -65, baseMultiplier = 5.08, levelRequirement = 90, cost = { ManaPerMinute = 7535, }, }, - [31] = { attackSpeedMultiplier = -65, baseMultiplier = 5.33, levelRequirement = 90, cost = { ManaPerMinute = 8350, }, }, - [32] = { attackSpeedMultiplier = -65, baseMultiplier = 5.6, levelRequirement = 90, cost = { ManaPerMinute = 9252, }, }, - [33] = { attackSpeedMultiplier = -65, baseMultiplier = 5.88, levelRequirement = 90, cost = { ManaPerMinute = 10253, }, }, - [34] = { attackSpeedMultiplier = -65, baseMultiplier = 6.18, levelRequirement = 90, cost = { ManaPerMinute = 11361, }, }, - [35] = { attackSpeedMultiplier = -65, baseMultiplier = 6.48, levelRequirement = 90, cost = { ManaPerMinute = 12589, }, }, - [36] = { attackSpeedMultiplier = -65, baseMultiplier = 6.81, levelRequirement = 90, cost = { ManaPerMinute = 13950, }, }, - [37] = { attackSpeedMultiplier = -65, baseMultiplier = 7.15, levelRequirement = 90, cost = { ManaPerMinute = 15458, }, }, - [38] = { attackSpeedMultiplier = -65, baseMultiplier = 7.51, levelRequirement = 90, cost = { ManaPerMinute = 17129, }, }, - [39] = { attackSpeedMultiplier = -65, baseMultiplier = 7.88, levelRequirement = 90, cost = { ManaPerMinute = 18981, }, }, - [40] = { attackSpeedMultiplier = -65, baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 21033, }, }, + [1] = { attackSpeedMultiplier = -70, levelRequirement = 0, cost = { ManaPerMinute = 372, }, }, + [2] = { attackSpeedMultiplier = -70, baseMultiplier = 1.1, levelRequirement = 3, cost = { ManaPerMinute = 430, }, }, + [3] = { attackSpeedMultiplier = -70, baseMultiplier = 1.21, levelRequirement = 6, cost = { ManaPerMinute = 493, }, }, + [4] = { attackSpeedMultiplier = -70, baseMultiplier = 1.32, levelRequirement = 10, cost = { ManaPerMinute = 560, }, }, + [5] = { attackSpeedMultiplier = -70, baseMultiplier = 1.42, levelRequirement = 14, cost = { ManaPerMinute = 632, }, }, + [6] = { attackSpeedMultiplier = -70, baseMultiplier = 1.53, levelRequirement = 18, cost = { ManaPerMinute = 709, }, }, + [7] = { attackSpeedMultiplier = -70, baseMultiplier = 1.64, levelRequirement = 22, cost = { ManaPerMinute = 791, }, }, + [8] = { attackSpeedMultiplier = -70, baseMultiplier = 1.74, levelRequirement = 26, cost = { ManaPerMinute = 879, }, }, + [9] = { attackSpeedMultiplier = -70, baseMultiplier = 1.82, levelRequirement = 31, cost = { ManaPerMinute = 973, }, }, + [10] = { attackSpeedMultiplier = -70, baseMultiplier = 1.91, levelRequirement = 36, cost = { ManaPerMinute = 1073, }, }, + [11] = { attackSpeedMultiplier = -70, baseMultiplier = 2.01, levelRequirement = 41, cost = { ManaPerMinute = 1180, }, }, + [12] = { attackSpeedMultiplier = -70, baseMultiplier = 2.11, levelRequirement = 46, cost = { ManaPerMinute = 1294, }, }, + [13] = { attackSpeedMultiplier = -70, baseMultiplier = 2.22, levelRequirement = 52, cost = { ManaPerMinute = 1416, }, }, + [14] = { attackSpeedMultiplier = -70, baseMultiplier = 2.33, levelRequirement = 58, cost = { ManaPerMinute = 1545, }, }, + [15] = { attackSpeedMultiplier = -70, baseMultiplier = 2.44, levelRequirement = 64, cost = { ManaPerMinute = 1683, }, }, + [16] = { attackSpeedMultiplier = -70, baseMultiplier = 2.57, levelRequirement = 66, cost = { ManaPerMinute = 1830, }, }, + [17] = { attackSpeedMultiplier = -70, baseMultiplier = 2.69, levelRequirement = 72, cost = { ManaPerMinute = 1986, }, }, + [18] = { attackSpeedMultiplier = -70, baseMultiplier = 2.83, levelRequirement = 78, cost = { ManaPerMinute = 2151, }, }, + [19] = { attackSpeedMultiplier = -70, baseMultiplier = 2.97, levelRequirement = 84, cost = { ManaPerMinute = 2328, }, }, + [20] = { attackSpeedMultiplier = -70, baseMultiplier = 3.12, levelRequirement = 90, cost = { ManaPerMinute = 2515, }, }, + [21] = { attackSpeedMultiplier = -70, baseMultiplier = 3.27, levelRequirement = 90, cost = { ManaPerMinute = 2714, }, }, + [22] = { attackSpeedMultiplier = -70, baseMultiplier = 3.44, levelRequirement = 90, cost = { ManaPerMinute = 2925, }, }, + [23] = { attackSpeedMultiplier = -70, baseMultiplier = 3.61, levelRequirement = 90, cost = { ManaPerMinute = 3150, }, }, + [24] = { attackSpeedMultiplier = -70, baseMultiplier = 3.79, levelRequirement = 90, cost = { ManaPerMinute = 3387, }, }, + [25] = { attackSpeedMultiplier = -70, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 3640, }, }, + [26] = { attackSpeedMultiplier = -70, baseMultiplier = 4.18, levelRequirement = 90, cost = { ManaPerMinute = 3907, }, }, + [27] = { attackSpeedMultiplier = -70, baseMultiplier = 4.39, levelRequirement = 90, cost = { ManaPerMinute = 4191, }, }, + [28] = { attackSpeedMultiplier = -70, baseMultiplier = 4.61, levelRequirement = 90, cost = { ManaPerMinute = 4491, }, }, + [29] = { attackSpeedMultiplier = -70, baseMultiplier = 4.84, levelRequirement = 90, cost = { ManaPerMinute = 4810, }, }, + [30] = { attackSpeedMultiplier = -70, baseMultiplier = 5.08, levelRequirement = 90, cost = { ManaPerMinute = 5147, }, }, + [31] = { attackSpeedMultiplier = -70, baseMultiplier = 5.33, levelRequirement = 90, cost = { ManaPerMinute = 5504, }, }, + [32] = { attackSpeedMultiplier = -70, baseMultiplier = 5.6, levelRequirement = 90, cost = { ManaPerMinute = 5882, }, }, + [33] = { attackSpeedMultiplier = -70, baseMultiplier = 5.88, levelRequirement = 90, cost = { ManaPerMinute = 6282, }, }, + [34] = { attackSpeedMultiplier = -70, baseMultiplier = 6.18, levelRequirement = 90, cost = { ManaPerMinute = 6705, }, }, + [35] = { attackSpeedMultiplier = -70, baseMultiplier = 6.48, levelRequirement = 90, cost = { ManaPerMinute = 7152, }, }, + [36] = { attackSpeedMultiplier = -70, baseMultiplier = 6.81, levelRequirement = 90, cost = { ManaPerMinute = 7626, }, }, + [37] = { attackSpeedMultiplier = -70, baseMultiplier = 7.15, levelRequirement = 90, cost = { ManaPerMinute = 8126, }, }, + [38] = { attackSpeedMultiplier = -70, baseMultiplier = 7.51, levelRequirement = 90, cost = { ManaPerMinute = 8655, }, }, + [39] = { attackSpeedMultiplier = -70, baseMultiplier = 7.88, levelRequirement = 90, cost = { ManaPerMinute = 9215, }, }, + [40] = { attackSpeedMultiplier = -70, baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 9806, }, }, }, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime @@ -10042,6 +11621,7 @@ skills["PerfectStrikePlayer"] = { stats = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -10097,188 +11677,62 @@ skills["PerfectStrikePlayer"] = { duration = true, channelRelease = true, }, - baseMods = { - mod("Condition:PerfectTiming", "FLAG", true), - }, constantStats = { { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, { "active_skill_override_turn_duration_ms", 360 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, { "channel_end_duration_as_%_of_attack_time", 35 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, - { "melee_range_+", 14 }, + { "melee_range_+", 35 }, }, stats = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", + "perfectly_timed", }, levels = { - [1] = { baseMultiplier = 4.2, actorLevel = 1, }, - [2] = { baseMultiplier = 4.62, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 5.08, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 5.54, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 5.98, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 6.43, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 6.88, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 7.29, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 7.66, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 8.04, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 8.44, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 8.87, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 9.31, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 9.78, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 10.26, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 10.78, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 11.32, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 11.88, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 12.48, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 13.1, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 13.75, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 14.44, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 15.16, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 15.92, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 16.72, actorLevel = 136.875, }, - [26] = { baseMultiplier = 17.55, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 18.43, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 19.35, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 20.32, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 21.34, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 22.4, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 23.52, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 24.7, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 25.94, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 27.23, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 28.59, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 30.02, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 31.53, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 33.1, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 34.76, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["ReapPlayer"] = { - name = "Reap", - baseTypeName = "Reap", - fromItem = true, - color = 1, - description = "Conjure a bloody scythe that sweeps across the targeted area, dealing Physical damage to enemies and applying Critical Weakness.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, }, - castTime = 1, - qualityStats = { - { "base_skill_effect_duration", 25 }, - }, - levels = { - [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - }, - statSets = { - [1] = { - label = "Reap", - baseEffectiveness = 2.6500000953674, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "reap", - baseFlags = { - spell = true, - area = true, - }, - constantStats = { - { "base_skill_effect_duration", 1000 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - }, - stats = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - "is_area_damage", - "can_perform_skill_while_moving", - }, - notMinionStat = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - }, - levels = { - [1] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 23, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 53, 80, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 93, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 72, 108, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 83, 125, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 96, 143, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 124, 187, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 160, 240, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 181, 272, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 205, 307, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 231, 346, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 292, 438, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 328, 493, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 369, 553, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 414, 621, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 465, 697, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 522, 783, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 585, 878, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 657, 985, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 737, 1106, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 827, 1241, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 929, 1393, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1043, 1564, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1171, 1757, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1317, 1975, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1480, 2220, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1665, 2498, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1874, 2812, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2111, 3167, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2379, 3569, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 3.3, actorLevel = 1, }, + [2] = { baseMultiplier = 3.63, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 3.99, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 4.35, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 4.7, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 5.05, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 5.41, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 5.73, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 6.02, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 6.32, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 6.63, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 6.97, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 7.31, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 7.68, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 8.06, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 8.47, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 8.89, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 9.34, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 9.8, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 10.29, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 10.81, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 11.35, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 11.91, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 12.51, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 13.14, actorLevel = 136.875, }, + [26] = { baseMultiplier = 13.79, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 14.48, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 15.21, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 15.97, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 16.77, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 17.6, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 18.48, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 19.41, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 20.38, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 21.4, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 22.47, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 23.59, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 24.77, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 26.01, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 27.31, actorLevel = 288.29998779297, }, }, }, } @@ -10287,394 +11741,131 @@ skills["ResonatingShieldPlayer"] = { name = "Resonating Shield", baseTypeName = "Resonating Shield", color = 1, - description = "Repeatedly hammer your Shield with your weapon causing damaging shockwaves in an area around you. Enemies hit by the shockwave lose Armour for a duration. While using Resonating Shield, your Shield is raised and you will Block all incoming Blockable hits.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Sustained] = true, [SkillType.NonWeaponAttack] = true, }, + description = "Repeatedly hammer your Shield with your weapon causing damaging shockwaves in an area around you. Enemies hit by the shockwave lose Armour for a duration. While Channelling Resonating Shield, your Shield is raised and you will Block all incoming Blockable hits.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Sustained] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { { "armour_break_amount_+%", 1 }, }, levels = { - [1] = { attackTime = 800, baseMultiplier = 0.3, critChance = 5, levelRequirement = 0, cost = { ManaPerMinute = 430, }, }, - [2] = { attackTime = 800, baseMultiplier = 0.33, critChance = 5, levelRequirement = 3, cost = { ManaPerMinute = 476, }, }, - [3] = { attackTime = 800, baseMultiplier = 0.36, critChance = 5, levelRequirement = 6, cost = { ManaPerMinute = 527, }, }, - [4] = { attackTime = 800, baseMultiplier = 0.4, critChance = 5, levelRequirement = 10, cost = { ManaPerMinute = 585, }, }, - [5] = { attackTime = 800, baseMultiplier = 0.43, critChance = 5, levelRequirement = 14, cost = { ManaPerMinute = 648, }, }, - [6] = { attackTime = 800, baseMultiplier = 0.46, critChance = 5, levelRequirement = 18, cost = { ManaPerMinute = 718, }, }, - [7] = { attackTime = 800, baseMultiplier = 0.49, critChance = 5, levelRequirement = 22, cost = { ManaPerMinute = 796, }, }, - [8] = { attackTime = 800, baseMultiplier = 0.52, critChance = 5, levelRequirement = 26, cost = { ManaPerMinute = 882, }, }, - [9] = { attackTime = 800, baseMultiplier = 0.55, critChance = 5, levelRequirement = 31, cost = { ManaPerMinute = 977, }, }, - [10] = { attackTime = 800, baseMultiplier = 0.57, critChance = 5, levelRequirement = 36, cost = { ManaPerMinute = 1083, }, }, - [11] = { attackTime = 800, baseMultiplier = 0.6, critChance = 5, levelRequirement = 41, cost = { ManaPerMinute = 1200, }, }, - [12] = { attackTime = 800, baseMultiplier = 0.63, critChance = 5, levelRequirement = 46, cost = { ManaPerMinute = 1329, }, }, - [13] = { attackTime = 800, baseMultiplier = 0.66, critChance = 5, levelRequirement = 52, cost = { ManaPerMinute = 1473, }, }, - [14] = { attackTime = 800, baseMultiplier = 0.7, critChance = 5, levelRequirement = 58, cost = { ManaPerMinute = 1633, }, }, - [15] = { attackTime = 800, baseMultiplier = 0.73, critChance = 5, levelRequirement = 64, cost = { ManaPerMinute = 1809, }, }, - [16] = { attackTime = 800, baseMultiplier = 0.77, critChance = 5, levelRequirement = 66, cost = { ManaPerMinute = 2005, }, }, - [17] = { attackTime = 800, baseMultiplier = 0.81, critChance = 5, levelRequirement = 72, cost = { ManaPerMinute = 2221, }, }, - [18] = { attackTime = 800, baseMultiplier = 0.85, critChance = 5, levelRequirement = 78, cost = { ManaPerMinute = 2462, }, }, - [19] = { attackTime = 800, baseMultiplier = 0.89, critChance = 5, levelRequirement = 84, cost = { ManaPerMinute = 2728, }, }, - [20] = { attackTime = 800, baseMultiplier = 0.94, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3023, }, }, - [21] = { attackTime = 800, baseMultiplier = 0.98, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3350, }, }, - [22] = { attackTime = 800, baseMultiplier = 1.03, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3712, }, }, - [23] = { attackTime = 800, baseMultiplier = 1.08, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4113, }, }, - [24] = { attackTime = 800, baseMultiplier = 1.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4558, }, }, - [25] = { attackTime = 800, baseMultiplier = 1.19, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5050, }, }, - [26] = { attackTime = 800, baseMultiplier = 1.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5596, }, }, - [27] = { attackTime = 800, baseMultiplier = 1.32, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6201, }, }, - [28] = { attackTime = 800, baseMultiplier = 1.38, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6872, }, }, - [29] = { attackTime = 800, baseMultiplier = 1.45, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7615, }, }, - [30] = { attackTime = 800, baseMultiplier = 1.52, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8438, }, }, - [31] = { attackTime = 800, baseMultiplier = 1.6, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9350, }, }, - [32] = { attackTime = 800, baseMultiplier = 1.68, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10361, }, }, - [33] = { attackTime = 800, baseMultiplier = 1.76, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 11481, }, }, - [34] = { attackTime = 800, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 12722, }, }, - [35] = { attackTime = 800, baseMultiplier = 1.95, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 14097, }, }, - [36] = { attackTime = 800, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 15621, }, }, - [37] = { attackTime = 800, baseMultiplier = 2.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 17310, }, }, - [38] = { attackTime = 800, baseMultiplier = 2.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 19181, }, }, - [39] = { attackTime = 800, baseMultiplier = 2.36, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 21255, }, }, - [40] = { attackTime = 800, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 23553, }, }, + [1] = { attackTime = 800, baseMultiplier = 0.3, critChance = 5, levelRequirement = 0, cost = { ManaPerMinute = 417, }, }, + [2] = { attackTime = 800, baseMultiplier = 0.33, critChance = 5, levelRequirement = 3, cost = { ManaPerMinute = 482, }, }, + [3] = { attackTime = 800, baseMultiplier = 0.36, critChance = 5, levelRequirement = 6, cost = { ManaPerMinute = 552, }, }, + [4] = { attackTime = 800, baseMultiplier = 0.4, critChance = 5, levelRequirement = 10, cost = { ManaPerMinute = 627, }, }, + [5] = { attackTime = 800, baseMultiplier = 0.43, critChance = 5, levelRequirement = 14, cost = { ManaPerMinute = 708, }, }, + [6] = { attackTime = 800, baseMultiplier = 0.46, critChance = 5, levelRequirement = 18, cost = { ManaPerMinute = 794, }, }, + [7] = { attackTime = 800, baseMultiplier = 0.49, critChance = 5, levelRequirement = 22, cost = { ManaPerMinute = 886, }, }, + [8] = { attackTime = 800, baseMultiplier = 0.52, critChance = 5, levelRequirement = 26, cost = { ManaPerMinute = 984, }, }, + [9] = { attackTime = 800, baseMultiplier = 0.55, critChance = 5, levelRequirement = 31, cost = { ManaPerMinute = 1090, }, }, + [10] = { attackTime = 800, baseMultiplier = 0.57, critChance = 5, levelRequirement = 36, cost = { ManaPerMinute = 1202, }, }, + [11] = { attackTime = 800, baseMultiplier = 0.6, critChance = 5, levelRequirement = 41, cost = { ManaPerMinute = 1321, }, }, + [12] = { attackTime = 800, baseMultiplier = 0.63, critChance = 5, levelRequirement = 46, cost = { ManaPerMinute = 1449, }, }, + [13] = { attackTime = 800, baseMultiplier = 0.66, critChance = 5, levelRequirement = 52, cost = { ManaPerMinute = 1585, }, }, + [14] = { attackTime = 800, baseMultiplier = 0.7, critChance = 5, levelRequirement = 58, cost = { ManaPerMinute = 1730, }, }, + [15] = { attackTime = 800, baseMultiplier = 0.73, critChance = 5, levelRequirement = 64, cost = { ManaPerMinute = 1885, }, }, + [16] = { attackTime = 800, baseMultiplier = 0.77, critChance = 5, levelRequirement = 66, cost = { ManaPerMinute = 2049, }, }, + [17] = { attackTime = 800, baseMultiplier = 0.81, critChance = 5, levelRequirement = 72, cost = { ManaPerMinute = 2223, }, }, + [18] = { attackTime = 800, baseMultiplier = 0.85, critChance = 5, levelRequirement = 78, cost = { ManaPerMinute = 2409, }, }, + [19] = { attackTime = 800, baseMultiplier = 0.89, critChance = 5, levelRequirement = 84, cost = { ManaPerMinute = 2607, }, }, + [20] = { attackTime = 800, baseMultiplier = 0.94, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 2816, }, }, + [21] = { attackTime = 800, baseMultiplier = 0.98, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3039, }, }, + [22] = { attackTime = 800, baseMultiplier = 1.03, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3276, }, }, + [23] = { attackTime = 800, baseMultiplier = 1.08, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3527, }, }, + [24] = { attackTime = 800, baseMultiplier = 1.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3793, }, }, + [25] = { attackTime = 800, baseMultiplier = 1.19, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4076, }, }, + [26] = { attackTime = 800, baseMultiplier = 1.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4375, }, }, + [27] = { attackTime = 800, baseMultiplier = 1.32, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4693, }, }, + [28] = { attackTime = 800, baseMultiplier = 1.38, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5029, }, }, + [29] = { attackTime = 800, baseMultiplier = 1.45, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5386, }, }, + [30] = { attackTime = 800, baseMultiplier = 1.52, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5763, }, }, + [31] = { attackTime = 800, baseMultiplier = 1.6, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6163, }, }, + [32] = { attackTime = 800, baseMultiplier = 1.68, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6586, }, }, + [33] = { attackTime = 800, baseMultiplier = 1.76, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7034, }, }, + [34] = { attackTime = 800, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7508, }, }, + [35] = { attackTime = 800, baseMultiplier = 1.95, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8009, }, }, + [36] = { attackTime = 800, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8539, }, }, + [37] = { attackTime = 800, baseMultiplier = 2.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9100, }, }, + [38] = { attackTime = 800, baseMultiplier = 2.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9692, }, }, + [39] = { attackTime = 800, baseMultiplier = 2.36, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10318, }, }, + [40] = { attackTime = 800, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10980, }, }, }, statSets = { [1] = { label = "Resonating Shield", baseEffectiveness = 1.210000038147, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "shield_drum", - baseFlags = { - attack = true, - area = true, - melee = true, - shieldAttack = true, - }, - constantStats = { - { "active_skill_base_area_of_effect_radius", 23 }, - { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "armour_broken_skill_event_variation", 1 }, - }, - stats = { - "off_hand_weapon_minimum_physical_damage", - "off_hand_weapon_maximum_physical_damage", - "off_hand_minimum_added_physical_damage_per_15_shield_armour", - "off_hand_maximum_added_physical_damage_per_15_shield_armour", - "apply_X_armour_break_on_hit", - "can_perform_skill_while_moving", - "active_skill_does_not_decay_heavy_stun_during_action", - "attack_speed_modifiers_apply_to_over_time_cost", - "cannot_be_empowered_by_warcries", - "replace_off_hand_unarmed_attack_stats_with_shield_type", - }, - notMinionStat = { - "off_hand_weapon_minimum_physical_damage", - "off_hand_weapon_maximum_physical_damage", - }, - levels = { - [1] = { 4, 6, 6, 8, 2, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 6, 8, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 6, 8, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 6, 8, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 6, 8, 21, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 6, 8, 31, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 6, 8, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 6, 8, 63, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 6, 8, 91, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 6, 8, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 6, 8, 179, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 6, 8, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 6, 8, 380, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 6, 8, 545, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 6, 8, 732, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 6, 8, 871, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 6, 8, 1034, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 6, 8, 1298, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 6, 8, 1537, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 6, 8, 1625, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 6, 8, 1719, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 6, 8, 1817, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 6, 8, 1921, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 6, 8, 2030, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 6, 8, 2146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 6, 8, 2267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 6, 8, 2396, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 6, 8, 2531, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 6, 8, 2674, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 6, 8, 2824, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 6, 8, 2982, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 6, 8, 3149, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 6, 8, 3325, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 6, 8, 3510, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 6, 8, 3706, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 6, 8, 3912, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 6, 8, 4128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 6, 8, 4344, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 6, 8, 4568, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["RipwireBallistaPlayer"] = { - name = "Ripwire Ballista", - baseTypeName = "Ripwire Ballista", - color = 1, - description = "Deploy a Ballista Totem that fires Pinning bolts which Maim Enemies.", - skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UseGlobalStats] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, }, - weaponTypes = { - ["Crossbow"] = true, - }, - skillTotemId = 22, - castTime = 1, - qualityStats = { - }, - levels = { - [1] = { levelRequirement = 0, cost = { Mana = 14, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 21, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 24, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 26, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 29, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 33, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 36, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 40, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 45, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 49, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 55, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 61, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 67, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 75, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 83, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 92, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 102, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 113, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 125, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 139, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 154, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 170, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 189, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 209, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 232, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 257, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 285, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 316, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 350, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 388, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 430, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 477, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 528, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 585, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 649, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 719, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 796, }, }, - }, - statSets = { - [1] = { - label = "Ballista", - baseEffectiveness = 1.8600000143051, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - totem = true, - }, - constantStats = { - { "base_totem_range", 80 }, - { "base_totem_duration", 16000 }, - { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 }, - { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 1600 }, - { "alt_attack_container_main_hand_base_maximum_attack_distance", 80 }, - { "base_number_of_totems_allowed", 1 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - }, - stats = { - "alt_attack_container_main_hand_weapon_minimum_physical_damage", - "alt_attack_container_main_hand_weapon_maximum_physical_damage", - "totem_elemental_resistance_%", - "totem_chaos_resistance_%", - "skill_is_deploy_skill", - "is_totem", - "is_ranged_attack_totem", - "can_perform_skill_while_moving", - "totem_targets_ignoring_action_distance", - "base_deal_no_damage", - "active_skill_has_alt_attack_container", - "alt_attack_container_main_hand_unarmed_overide_crossbow_type", - }, - levels = { - [1] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 10, 14, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 20, 31, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 26, 40, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 33, 49, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 39, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 46, 70, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 54, 81, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 62, 92, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 70, 105, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 78, 117, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 87, 130, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 96, 144, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 106, 159, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 116, 173, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 126, 189, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 136, 205, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 147, 221, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 159, 238, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 182, 274, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 195, 292, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 208, 311, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 221, 331, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 234, 351, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 248, 372, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 262, 393, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 277, 415, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 291, 437, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 307, 460, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 322, 484, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 338, 507, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 355, 532, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 371, 557, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 388, 583, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 406, 609, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 423, 635, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 442, 662, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 460, 690, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["RipwireBallistaProjectilePlayer"] = { - name = "Ripwire Bolt", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.UsedByTotem] = true, }, - weaponTypes = { - ["Crossbow"] = true, - }, - castTime = 1, - qualityStats = { - { "active_skill_pins_as_though_dealt_damage_+%_final", 2.5 }, - }, - levels = { - [1] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.64, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.7, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.76, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.82, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.87, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.93, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.98, levelRequirement = 0, }, - [9] = { baseMultiplier = 1.02, levelRequirement = 0, }, - [10] = { baseMultiplier = 1.06, levelRequirement = 0, }, - [11] = { baseMultiplier = 1.11, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.15, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.2, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.24, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.29, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.34, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.38, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.43, levelRequirement = 0, }, - [19] = { baseMultiplier = 1.48, levelRequirement = 0, }, - [20] = { baseMultiplier = 1.53, levelRequirement = 0, }, - [21] = { baseMultiplier = 1.58, levelRequirement = 0, }, - [22] = { baseMultiplier = 1.63, levelRequirement = 0, }, - [23] = { baseMultiplier = 1.69, levelRequirement = 0, }, - [24] = { baseMultiplier = 1.74, levelRequirement = 0, }, - [25] = { baseMultiplier = 1.8, levelRequirement = 0, }, - [26] = { baseMultiplier = 1.86, levelRequirement = 0, }, - [27] = { baseMultiplier = 1.92, levelRequirement = 0, }, - [28] = { baseMultiplier = 1.99, levelRequirement = 0, }, - [29] = { baseMultiplier = 2.05, levelRequirement = 0, }, - [30] = { baseMultiplier = 2.12, levelRequirement = 0, }, - [31] = { baseMultiplier = 2.19, levelRequirement = 0, }, - [32] = { baseMultiplier = 2.26, levelRequirement = 0, }, - [33] = { baseMultiplier = 2.34, levelRequirement = 0, }, - [34] = { baseMultiplier = 2.42, levelRequirement = 0, }, - [35] = { baseMultiplier = 2.5, levelRequirement = 0, }, - [36] = { baseMultiplier = 2.58, levelRequirement = 0, }, - [37] = { baseMultiplier = 2.66, levelRequirement = 0, }, - [38] = { baseMultiplier = 2.75, levelRequirement = 0, }, - [39] = { baseMultiplier = 2.84, levelRequirement = 0, }, - [40] = { baseMultiplier = 2.94, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Bolts", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - attack = true, - projectile = true, - totem = true, - }, - constantStats = { - { "base_pinned_art_variation", 2 }, - { "skill_disabled_unless_cloned", 1 }, - { "projectile_maximum_range_override", 80 }, - { "base_number_of_projectiles", 5 }, - { "projectile_distance_variance", 10 }, - { "active_skill_projectile_speed_+%_variation_final", 40 }, - { "total_projectile_spread_angle_override", 55 }, - { "maim_on_hit_%", 100 }, - { "fixed_projectile_spread", 50 }, - { "active_skill_pins_as_though_dealt_damage_+%_final", 600 }, - }, - stats = { - "base_is_projectile", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "base_all_damage_can_pin", - "base_skill_is_totemified", - "quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem", - }, - levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "shield_drum", + baseFlags = { + attack = true, + area = true, + melee = true, + shieldAttack = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 23 }, + { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "armour_broken_skill_event_variation", 1 }, + }, + stats = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + "off_hand_minimum_added_physical_damage_per_15_shield_armour", + "off_hand_maximum_added_physical_damage_per_15_shield_armour", + "apply_X_armour_break_on_hit", + "can_perform_skill_while_moving", + "active_skill_does_not_decay_heavy_stun_during_action", + "attack_speed_modifiers_apply_to_over_time_cost", + "cannot_be_empowered_by_warcries", + "replace_off_hand_unarmed_attack_stats_with_shield_type", + }, + notMinionStat = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + }, + levels = { + [1] = { 4, 6, 6, 8, 2, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, 6, 8, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 20, 6, 8, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 26, 6, 8, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 32, 6, 8, 21, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 38, 6, 8, 31, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 45, 6, 8, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 53, 6, 8, 63, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 60, 6, 8, 91, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 45, 68, 6, 8, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 6, 8, 179, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 57, 85, 6, 8, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 94, 6, 8, 380, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 103, 6, 8, 545, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 75, 113, 6, 8, 732, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 82, 123, 6, 8, 871, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 89, 133, 6, 8, 1034, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 144, 6, 8, 1298, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 103, 155, 6, 8, 1537, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 111, 166, 6, 8, 1625, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 119, 178, 6, 8, 1719, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 127, 190, 6, 8, 1817, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 135, 202, 6, 8, 1921, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 144, 215, 6, 8, 2030, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 152, 228, 6, 8, 2146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 161, 242, 6, 8, 2267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 170, 256, 6, 8, 2396, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 180, 270, 6, 8, 2531, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 190, 284, 6, 8, 2674, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 200, 299, 6, 8, 2824, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 210, 315, 6, 8, 2982, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 220, 330, 6, 8, 3149, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 346, 6, 8, 3325, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 242, 362, 6, 8, 3510, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 253, 379, 6, 8, 3706, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 264, 396, 6, 8, 3912, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 275, 413, 6, 8, 4128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 287, 431, 6, 8, 4344, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 299, 449, 6, 8, 4568, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10684,56 +11875,56 @@ skills["RollingSlamPlayer"] = { baseTypeName = "Rolling Slam", color = 1, description = "Slam the ground to Stun enemies and knock them away, then continue forward and perform a devastating second Slam. Holding down the skill input allows you to change direction as you move.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, }, castTime = 1, qualityStats = { - { "support_physical_damage_%_to_gain_as_daze_build_up", 2.5 }, + { "active_skill_stun_threshold_+%_while_performing_action", 5 }, }, levels = { - [1] = { attackSpeedMultiplier = -35, levelRequirement = 0, cost = { Mana = 14, }, }, - [2] = { attackSpeedMultiplier = -35, levelRequirement = 3, cost = { Mana = 16, }, }, - [3] = { attackSpeedMultiplier = -35, levelRequirement = 6, cost = { Mana = 18, }, }, - [4] = { attackSpeedMultiplier = -35, levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { attackSpeedMultiplier = -35, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { attackSpeedMultiplier = -35, levelRequirement = 18, cost = { Mana = 24, }, }, - [7] = { attackSpeedMultiplier = -35, levelRequirement = 22, cost = { Mana = 27, }, }, - [8] = { attackSpeedMultiplier = -35, levelRequirement = 26, cost = { Mana = 30, }, }, - [9] = { attackSpeedMultiplier = -35, levelRequirement = 31, cost = { Mana = 33, }, }, - [10] = { attackSpeedMultiplier = -35, levelRequirement = 36, cost = { Mana = 37, }, }, - [11] = { attackSpeedMultiplier = -35, levelRequirement = 41, cost = { Mana = 41, }, }, - [12] = { attackSpeedMultiplier = -35, levelRequirement = 46, cost = { Mana = 45, }, }, - [13] = { attackSpeedMultiplier = -35, levelRequirement = 52, cost = { Mana = 50, }, }, - [14] = { attackSpeedMultiplier = -35, levelRequirement = 58, cost = { Mana = 56, }, }, - [15] = { attackSpeedMultiplier = -35, levelRequirement = 64, cost = { Mana = 62, }, }, - [16] = { attackSpeedMultiplier = -35, levelRequirement = 66, cost = { Mana = 68, }, }, - [17] = { attackSpeedMultiplier = -35, levelRequirement = 72, cost = { Mana = 76, }, }, - [18] = { attackSpeedMultiplier = -35, levelRequirement = 78, cost = { Mana = 84, }, }, - [19] = { attackSpeedMultiplier = -35, levelRequirement = 84, cost = { Mana = 93, }, }, - [20] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 103, }, }, - [21] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 115, }, }, - [22] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 127, }, }, - [23] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 141, }, }, - [24] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 156, }, }, - [25] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 173, }, }, - [26] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 192, }, }, - [27] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 213, }, }, - [28] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 236, }, }, - [29] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 261, }, }, - [30] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 290, }, }, - [31] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 321, }, }, - [32] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 356, }, }, - [33] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 394, }, }, - [34] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 437, }, }, - [35] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 484, }, }, - [36] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 536, }, }, - [37] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 594, }, }, - [38] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 659, }, }, - [39] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 730, }, }, - [40] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 809, }, }, + [1] = { levelRequirement = 0, cost = { Mana = 14, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 16, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 18, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 21, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 24, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 27, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 30, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 33, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 37, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 41, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 45, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 49, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 54, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 59, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 64, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 70, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 76, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 82, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 89, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 96, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 104, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 112, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 121, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 130, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 140, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 150, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 161, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 172, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 185, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 211, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 226, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 258, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 275, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 293, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 312, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 333, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 354, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 377, }, }, }, statSets = { [1] = { @@ -10746,7 +11937,7 @@ skills["RollingSlamPlayer"] = { melee = true, }, constantStats = { - { "total_attack_time_+_ms", 1000 }, + { "total_attack_time_+_ms", 1500 }, { "melee_conditional_step_distance", 15 }, { "attack_maximum_action_distance_+", 20 }, { "totemified_rolling_slam_attack_maximum_action_distance_+", 36 }, @@ -10812,7 +12003,7 @@ skills["RollingSlamPlayer"] = { melee = true, }, constantStats = { - { "total_attack_time_+_ms", 1000 }, + { "total_attack_time_+_ms", 1500 }, { "melee_conditional_step_distance", 15 }, { "attack_maximum_action_distance_+", 20 }, { "totemified_rolling_slam_attack_maximum_action_distance_+", 36 }, @@ -10880,7 +12071,7 @@ skills["RollingSlamPlayer"] = { melee = true, }, constantStats = { - { "total_attack_time_+_ms", 1000 }, + { "total_attack_time_+_ms", 1500 }, { "melee_conditional_step_distance", 15 }, { "attack_maximum_action_distance_+", 20 }, { "totemified_rolling_slam_attack_maximum_action_distance_+", 36 }, @@ -10948,7 +12139,7 @@ skills["ScavengedPlatingPlayer"] = { skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.Physical] = true, }, castTime = 1, qualityStats = { - { "scavenged_plating_armour_+%_final_per_stack", 0.1 }, + { "base_skill_effect_duration", 100 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -10995,7 +12186,7 @@ skills["ScavengedPlatingPlayer"] = { statSets = { [1] = { label = "Scavenged Plating", - baseEffectiveness = 0.69999998807907, + baseEffectiveness = 0.5, incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "scavenged_plating", statMap = { @@ -11012,54 +12203,54 @@ skills["ScavengedPlatingPlayer"] = { constantStats = { { "base_skill_effect_duration", 8000 }, { "scavenged_plating_maximum_stacks_display", 10 }, + { "scavenged_plating_armour_+%_final_per_stack", 4 }, }, stats = { "scavenged_plating_thorns_minimum_physical_damage", "scavenged_plating_thorns_maximum_physical_damage", - "scavenged_plating_armour_+%_final_per_stack", "base_deal_no_damage", }, levels = { - [1] = { 2, 3, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 4, 5, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, 8, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 8, 12, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 10, 15, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 12, 18, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 15, 22, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 17, 26, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 20, 30, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 23, 35, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 26, 39, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 29, 44, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 33, 49, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 36, 54, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 40, 60, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 43, 65, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 47, 71, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, 77, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 55, 83, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 60, 90, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 64, 96, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 69, 103, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 73, 110, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 78, 117, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 83, 125, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 88, 132, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 93, 140, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 99, 148, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 104, 156, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 110, 165, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 115, 173, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 121, 182, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 127, 191, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 133, 200, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 140, 210, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 146, 219, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 153, 229, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 159, 239, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 166, 249, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 173, 260, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 2, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 12, 19, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 14, 22, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 46, 69, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 52, 79, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 70, 106, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 74, 112, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 78, 118, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 82, 124, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 100, 150, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 104, 157, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 114, 171, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11068,60 +12259,60 @@ skills["SeismicCryPlayer"] = { name = "Seismic Cry", baseTypeName = "Seismic Cry", color = 1, - description = "Perform a damaging warcry, Knocking Back nearby enemies. If a Heavy Stunned enemy is hit, your next Slam is Empowered to perform an additional Aftershock. If not, this skill's cooldown is reset. Only counts Heavily Stunned enemies for purposes of counting Power Gained.", - skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Perform a damaging Warcry, Knocking Back nearby enemies and Heavy Stunning enemies that are Primed for Stun. If an enemy is Heavy Stunned or a currently Heavy Stunned enemy is Hit, this Skill Empowers subsequent Slams to perform an additional Aftershock. This Skill's cooldown can be bypassed by expending an Endurance Charge.", + skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.Cooldown] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, }, castTime = 0.8, qualityStats = { - { "warcry_speed_+%", 2 }, + { "seismic_cry_slam_skill_aftershock_damage_+%_final", 0.5 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 25, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 27, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 29, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 31, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 33, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 35, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 38, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 41, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 44, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 47, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 50, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 54, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 58, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 62, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 67, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 72, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 77, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 83, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 89, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 95, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 102, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 109, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 117, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 135, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 145, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 155, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 166, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 191, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 205, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 220, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 236, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 253, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 271, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 291, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 312, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 334, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 358, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 384, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 24, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 27, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 30, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 33, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 36, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 39, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 42, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 46, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 49, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 52, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 56, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 60, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 64, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 68, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 72, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 76, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 80, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 85, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 90, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 94, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 99, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 104, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 110, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 115, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 120, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 132, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 138, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 144, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 151, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 157, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 164, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 171, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 185, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 193, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 201, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 208, }, }, }, statSets = { [1] = { label = "Seismic Cry", baseEffectiveness = 2.0999999046326, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "seismic_cry", baseFlags = { warcry = true, @@ -11129,29 +12320,25 @@ skills["SeismicCryPlayer"] = { area = true, }, constantStats = { - { "skill_empowers_next_x_melee_attacks", 1 }, - { "skill_empower_limitation_specifier_for_stat_description", 2 }, - { "active_skill_hit_damage_stun_multiplier_+%_final", 400 }, + { "warcry_empowers_per_X_monster_power", 10 }, + { "warcry_empowers_per_X_monster_power_mp_cap", 50 }, { "active_skill_base_area_of_effect_radius", 40 }, - { "seismic_cry_slam_skill_aftershock_area_+%", 30 }, { "seismic_cry_slam_skill_additional_aftershocks", 1 }, - { "seismic_cry_slam_skill_aftershock_damage_+%_final_per_mp", 5 }, - { "warcry_exerts_x_additional_attacks_per_endurance_charge_consumed", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "secondary_minimum_base_physical_damage", "secondary_maximum_base_physical_damage", "global_knockback", "cannot_cancel_skill_before_contact_point", - "active_skill_200%_increased_knockback_distance", - "hits_ignore_enemy_monster_physical_damage_reduction", "is_area_damage", "display_skill_deals_secondary_damage", - "seismic_cry_only_count_heavy_stunned_mp", "can_perform_skill_while_moving", + "crushing_blow", + "active_skill_show_crush_range", + "warcry_minimum_benefit_if_monster_power_present", }, notMinionStat = { "secondary_minimum_base_physical_damage", @@ -11160,44 +12347,44 @@ skills["SeismicCryPlayer"] = { levels = { [1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, [2] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 12, 19, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [3] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, [4] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 52, 78, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 60, 91, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [5] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 51, 77, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 60, 90, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, [12] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 108, 161, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 123, 185, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 161, 242, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 184, 275, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 238, 357, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 270, 406, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 307, 461, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 349, 524, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 396, 595, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 450, 675, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 511, 767, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 581, 872, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 660, 991, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 751, 1126, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 854, 1281, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 972, 1458, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1107, 1660, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1261, 1892, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1439, 2158, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1642, 2463, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1875, 2813, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 2144, 3216, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2454, 3681, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2811, 4216, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [13] = { 82, 123, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 95, 142, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 110, 165, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 146, 220, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 194, 291, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 256, 385, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 294, 442, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 446, 669, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 513, 769, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 589, 884, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 678, 1017, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 898, 1348, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1036, 1553, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1195, 1792, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1380, 2069, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1595, 2392, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1845, 2768, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2138, 3206, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2479, 3718, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2878, 4318, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3347, 5020, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3896, 5844, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11211,9 +12398,9 @@ skills["ShardScavengerPlayer"] = { weaponTypes = { ["Crossbow"] = true, }, - castTime = 1, + castTime = 0, qualityStats = { - { "base_reservation_+%", -0.25 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, @@ -11265,54 +12452,55 @@ skills["ShardScavengerPlayer"] = { baseFlags = { }, stats = { - "reload_ammo_on_effect_consume_with_x_ms_cooldown", + "base_secondary_skill_effect_duration", "base_skill_effect_duration", "base_deal_no_damage", }, notMinionStat = { + "base_secondary_skill_effect_duration", "base_skill_effect_duration", }, levels = { [1] = { 8000, 2000, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 7900, 2000, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 7800, 2000, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 7700, 2000, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 7600, 2000, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 7500, 2000, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 7400, 2000, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 7300, 2000, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 7200, 2000, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 7100, 2000, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 7000, 2000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6900, 2000, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 2000, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 6700, 2000, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 6600, 2000, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 6500, 2000, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 6400, 2000, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 6300, 2000, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 6200, 2000, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 6100, 2000, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 6000, 2000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 5900, 2000, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 5800, 2000, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 5700, 2000, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 5600, 2000, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 5500, 2000, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 5400, 2000, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 5300, 2000, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 5200, 2000, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 5100, 2000, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 5050, 2000, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 5000, 2000, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 4950, 2000, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 4900, 2000, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 4850, 2000, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 4800, 2000, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 4750, 2000, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 4700, 2000, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 4650, 2000, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4600, 2000, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [2] = { 7950, 2000, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7900, 2000, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7850, 2000, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 7800, 2000, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 7750, 2000, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 7700, 2000, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 7650, 2000, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7600, 2000, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 7550, 2000, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 7500, 2000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 7450, 2000, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 7400, 2000, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7350, 2000, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7300, 2000, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7250, 2000, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 2000, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7150, 2000, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7100, 2000, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7050, 2000, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7000, 2000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 6950, 2000, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 6900, 2000, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 6850, 2000, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 6800, 2000, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 6750, 2000, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 6700, 2000, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 6650, 2000, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 6600, 2000, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 6550, 2000, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 6525, 2000, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 6500, 2000, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 6475, 2000, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 6450, 2000, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 6425, 2000, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 6400, 2000, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 6375, 2000, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 6350, 2000, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 6325, 2000, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 6300, 2000, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11322,57 +12510,56 @@ skills["ShieldChargePlayer"] = { baseTypeName = "Shield Charge", color = 1, description = "Channel to charge in the target direction. You will crash into enemies on your path, stopping your charge and dealing damage to enemies in an area, and extra damage to the enemies you collided with. While charging, your Shield is raised and you will Block all incoming Blockable hits.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RequiresShield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.NonWeaponAttack] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RequiresShield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 0.5 }, + { "base_additional_damage_from_distance_+%_final", 2 }, }, levels = { - [1] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.7, critChance = 5, cooldown = 3, levelRequirement = 0, cost = { ManaPerMinute = 446, }, }, - [2] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.77, critChance = 5, cooldown = 3, levelRequirement = 3, cost = { ManaPerMinute = 494, }, }, - [3] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.85, critChance = 5, cooldown = 3, levelRequirement = 6, cost = { ManaPerMinute = 547, }, }, - [4] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.93, critChance = 5, cooldown = 3, levelRequirement = 10, cost = { ManaPerMinute = 606, }, }, - [5] = { attackTime = 500, storedUses = 1, critChance = 5, cooldown = 3, levelRequirement = 14, cost = { ManaPerMinute = 672, }, }, - [6] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.08, critChance = 5, cooldown = 3, levelRequirement = 18, cost = { ManaPerMinute = 745, }, }, - [7] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.16, critChance = 5, cooldown = 3, levelRequirement = 22, cost = { ManaPerMinute = 825, }, }, - [8] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.24, critChance = 5, cooldown = 3, levelRequirement = 26, cost = { ManaPerMinute = 914, }, }, - [9] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.31, critChance = 5, cooldown = 3, levelRequirement = 31, cost = { ManaPerMinute = 1013, }, }, - [10] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.38, critChance = 5, cooldown = 3, levelRequirement = 36, cost = { ManaPerMinute = 1123, }, }, - [11] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.46, critChance = 5, cooldown = 3, levelRequirement = 41, cost = { ManaPerMinute = 1244, }, }, - [12] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.55, critChance = 5, cooldown = 3, levelRequirement = 46, cost = { ManaPerMinute = 1379, }, }, - [13] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.64, critChance = 5, cooldown = 3, levelRequirement = 52, cost = { ManaPerMinute = 1528, }, }, - [14] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.74, critChance = 5, cooldown = 3, levelRequirement = 58, cost = { ManaPerMinute = 1693, }, }, - [15] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.85, critChance = 5, cooldown = 3, levelRequirement = 64, cost = { ManaPerMinute = 1876, }, }, - [16] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.97, critChance = 5, cooldown = 3, levelRequirement = 66, cost = { ManaPerMinute = 2079, }, }, - [17] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.09, critChance = 5, cooldown = 3, levelRequirement = 72, cost = { ManaPerMinute = 2304, }, }, - [18] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.23, critChance = 5, cooldown = 3, levelRequirement = 78, cost = { ManaPerMinute = 2553, }, }, - [19] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.38, critChance = 5, cooldown = 3, levelRequirement = 84, cost = { ManaPerMinute = 2829, }, }, - [20] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.54, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 3135, }, }, - [21] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.7, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 3474, }, }, - [22] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.88, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 3850, }, }, - [23] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.08, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 4266, }, }, - [24] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.28, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 4727, }, }, - [25] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.5, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 5238, }, }, - [26] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.73, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 5805, }, }, - [27] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.98, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 6432, }, }, - [28] = { attackTime = 500, storedUses = 1, baseMultiplier = 4.25, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 7127, }, }, - [29] = { attackTime = 500, storedUses = 1, baseMultiplier = 4.53, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 7898, }, }, - [30] = { attackTime = 500, storedUses = 1, baseMultiplier = 4.83, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 8752, }, }, - [31] = { attackTime = 500, storedUses = 1, baseMultiplier = 5.15, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 9698, }, }, - [32] = { attackTime = 500, storedUses = 1, baseMultiplier = 5.5, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 10746, }, }, - [33] = { attackTime = 500, storedUses = 1, baseMultiplier = 5.86, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 11908, }, }, - [34] = { attackTime = 500, storedUses = 1, baseMultiplier = 6.25, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 13195, }, }, - [35] = { attackTime = 500, storedUses = 1, baseMultiplier = 6.67, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 14622, }, }, - [36] = { attackTime = 500, storedUses = 1, baseMultiplier = 7.12, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 16203, }, }, - [37] = { attackTime = 500, storedUses = 1, baseMultiplier = 7.59, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 17954, }, }, - [38] = { attackTime = 500, storedUses = 1, baseMultiplier = 8.09, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 19895, }, }, - [39] = { attackTime = 500, storedUses = 1, baseMultiplier = 8.63, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 22046, }, }, - [40] = { attackTime = 500, storedUses = 1, baseMultiplier = 9.21, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 24429, }, }, + [1] = { attackTime = 600, baseMultiplier = 0.3, critChance = 5, levelRequirement = 0, cost = { ManaPerMinute = 432, }, }, + [2] = { attackTime = 600, baseMultiplier = 0.33, critChance = 5, levelRequirement = 3, cost = { ManaPerMinute = 500, }, }, + [3] = { attackTime = 600, baseMultiplier = 0.36, critChance = 5, levelRequirement = 6, cost = { ManaPerMinute = 573, }, }, + [4] = { attackTime = 600, baseMultiplier = 0.4, critChance = 5, levelRequirement = 10, cost = { ManaPerMinute = 651, }, }, + [5] = { attackTime = 600, baseMultiplier = 0.43, critChance = 5, levelRequirement = 14, cost = { ManaPerMinute = 734, }, }, + [6] = { attackTime = 600, baseMultiplier = 0.46, critChance = 5, levelRequirement = 18, cost = { ManaPerMinute = 823, }, }, + [7] = { attackTime = 600, baseMultiplier = 0.49, critChance = 5, levelRequirement = 22, cost = { ManaPerMinute = 919, }, }, + [8] = { attackTime = 600, baseMultiplier = 0.52, critChance = 5, levelRequirement = 26, cost = { ManaPerMinute = 1021, }, }, + [9] = { attackTime = 600, baseMultiplier = 0.55, critChance = 5, levelRequirement = 31, cost = { ManaPerMinute = 1130, }, }, + [10] = { attackTime = 600, baseMultiplier = 0.57, critChance = 5, levelRequirement = 36, cost = { ManaPerMinute = 1246, }, }, + [11] = { attackTime = 600, baseMultiplier = 0.6, critChance = 5, levelRequirement = 41, cost = { ManaPerMinute = 1371, }, }, + [12] = { attackTime = 600, baseMultiplier = 0.63, critChance = 5, levelRequirement = 46, cost = { ManaPerMinute = 1503, }, }, + [13] = { attackTime = 600, baseMultiplier = 0.66, critChance = 5, levelRequirement = 52, cost = { ManaPerMinute = 1644, }, }, + [14] = { attackTime = 600, baseMultiplier = 0.7, critChance = 5, levelRequirement = 58, cost = { ManaPerMinute = 1795, }, }, + [15] = { attackTime = 600, baseMultiplier = 0.73, critChance = 5, levelRequirement = 64, cost = { ManaPerMinute = 1955, }, }, + [16] = { attackTime = 600, baseMultiplier = 0.77, critChance = 5, levelRequirement = 66, cost = { ManaPerMinute = 2125, }, }, + [17] = { attackTime = 600, baseMultiplier = 0.81, critChance = 5, levelRequirement = 72, cost = { ManaPerMinute = 2306, }, }, + [18] = { attackTime = 600, baseMultiplier = 0.85, critChance = 5, levelRequirement = 78, cost = { ManaPerMinute = 2499, }, }, + [19] = { attackTime = 600, baseMultiplier = 0.89, critChance = 5, levelRequirement = 84, cost = { ManaPerMinute = 2704, }, }, + [20] = { attackTime = 600, baseMultiplier = 0.94, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 2921, }, }, + [21] = { attackTime = 600, baseMultiplier = 0.98, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3152, }, }, + [22] = { attackTime = 600, baseMultiplier = 1.03, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3398, }, }, + [23] = { attackTime = 600, baseMultiplier = 1.08, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3658, }, }, + [24] = { attackTime = 600, baseMultiplier = 1.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3934, }, }, + [25] = { attackTime = 600, baseMultiplier = 1.19, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4227, }, }, + [26] = { attackTime = 600, baseMultiplier = 1.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4538, }, }, + [27] = { attackTime = 600, baseMultiplier = 1.32, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4867, }, }, + [28] = { attackTime = 600, baseMultiplier = 1.38, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5216, }, }, + [29] = { attackTime = 600, baseMultiplier = 1.45, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5586, }, }, + [30] = { attackTime = 600, baseMultiplier = 1.52, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5978, }, }, + [31] = { attackTime = 600, baseMultiplier = 1.6, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6392, }, }, + [32] = { attackTime = 600, baseMultiplier = 1.68, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6831, }, }, + [33] = { attackTime = 600, baseMultiplier = 1.76, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7296, }, }, + [34] = { attackTime = 600, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7787, }, }, + [35] = { attackTime = 600, baseMultiplier = 1.95, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8307, }, }, + [36] = { attackTime = 600, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8857, }, }, + [37] = { attackTime = 600, baseMultiplier = 2.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9438, }, }, + [38] = { attackTime = 600, baseMultiplier = 2.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10053, }, }, + [39] = { attackTime = 600, baseMultiplier = 2.36, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10702, }, }, + [40] = { attackTime = 600, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 11389, }, }, }, statSets = { [1] = { label = "Area of Effect", - baseEffectiveness = 1.210000038147, incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "channel_shield_charge", baseFlags = { @@ -11385,13 +12572,14 @@ skills["ShieldChargePlayer"] = { { "active_skill_base_area_of_effect_radius", 24 }, { "base_minimum_channel_time_ms", 1300 }, { "base_skill_effect_duration", 5000 }, - { "shield_charge_base_movement_speed", 120 }, + { "shield_charge_base_movement_speed", 90 }, { "shield_charge_extra_distance", 80 }, { "shield_charge_acceleration_duration_ms", 0 }, { "shield_charge_hit_damage_stun_multiplier_when_fully_charged_+%_final", 400 }, { "shield_charge_pushiness_+", 10 }, { "shield_charge_pushiness_+_while_fully_charged", -20 }, { "shield_charge_pushiness_+_while_decelerating", 0 }, + { "base_additional_damage_from_distance_+%_final", 100 }, }, stats = { "off_hand_weapon_minimum_physical_damage", @@ -11410,46 +12598,46 @@ skills["ShieldChargePlayer"] = { "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 4, 6, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 3, 5, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8, 12, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 17, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, 26, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 32, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 25, 37, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 43, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 33, 50, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 37, 56, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 42, 63, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 47, 70, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 52, 78, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 57, 85, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 62, 93, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 68, 101, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 73, 110, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 79, 119, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 85, 128, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 92, 137, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 98, 147, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 105, 157, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 112, 167, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 119, 178, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 126, 189, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 133, 200, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 141, 211, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 149, 223, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 157, 235, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 165, 247, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 173, 260, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 182, 273, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 191, 286, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 200, 299, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 209, 313, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 218, 327, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 228, 342, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 237, 356, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 247, 371, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { @@ -11464,13 +12652,14 @@ skills["ShieldChargePlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 24 }, - { "shield_charge_base_movement_speed", 120 }, + { "shield_charge_base_movement_speed", 90 }, { "shield_charge_extra_distance", 80 }, { "shield_charge_acceleration_duration_ms", 0 }, { "shield_charge_hit_damage_stun_multiplier_when_fully_charged_+%_final", 400 }, { "shield_charge_pushiness_+", 10 }, { "shield_charge_pushiness_+_while_fully_charged", -20 }, { "shield_charge_pushiness_+_while_decelerating", 0 }, + { "base_additional_damage_from_distance_+%_final", 100 }, { "base_knockback_distance", 900 }, { "active_skill_hit_damage_stun_multiplier_+%_final", 50 }, }, @@ -11493,46 +12682,46 @@ skills["ShieldChargePlayer"] = { "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 4, 6, 0, 0, 0, 6, 8, baseMultiplier = 2.5, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 0, 0, 0, 6, 8, baseMultiplier = 2.75, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 0, 0, 0, 6, 8, baseMultiplier = 3.03, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 0, 0, 0, 6, 8, baseMultiplier = 3.31, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 0, 0, 0, 6, 8, baseMultiplier = 3.58, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 0, 0, 0, 6, 8, baseMultiplier = 3.86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 0, 0, 0, 6, 8, baseMultiplier = 4.15, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 0, 0, 0, 6, 8, baseMultiplier = 4.42, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 0, 0, 0, 6, 8, baseMultiplier = 4.67, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 0, 0, 0, 6, 8, baseMultiplier = 4.94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 0, 0, 0, 6, 8, baseMultiplier = 5.23, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 0, 0, 0, 6, 8, baseMultiplier = 5.54, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 0, 0, 0, 6, 8, baseMultiplier = 5.87, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 0, 0, 0, 6, 8, baseMultiplier = 6.23, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 0, 0, 0, 6, 8, baseMultiplier = 6.62, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 0, 0, 0, 6, 8, baseMultiplier = 7.03, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 0, 0, 0, 6, 8, baseMultiplier = 7.48, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 0, 0, 0, 6, 8, baseMultiplier = 7.97, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 0, 0, 0, 6, 8, baseMultiplier = 8.49, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 0, 0, 0, 6, 8, baseMultiplier = 9.06, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 0, 0, 0, 6, 8, baseMultiplier = 9.66, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 0, 0, 0, 6, 8, baseMultiplier = 10.3, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 0, 0, 0, 6, 8, baseMultiplier = 10.99, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 0, 0, 0, 6, 8, baseMultiplier = 11.72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 0, 0, 0, 6, 8, baseMultiplier = 12.5, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 0, 0, 0, 6, 8, baseMultiplier = 13.33, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 0, 0, 0, 6, 8, baseMultiplier = 14.22, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 0, 0, 0, 6, 8, baseMultiplier = 15.17, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 0, 0, 0, 6, 8, baseMultiplier = 16.18, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 0, 0, 0, 6, 8, baseMultiplier = 17.26, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 0, 0, 0, 6, 8, baseMultiplier = 18.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 0, 0, 0, 6, 8, baseMultiplier = 19.63, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 0, 0, 0, 6, 8, baseMultiplier = 20.94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 0, 0, 0, 6, 8, baseMultiplier = 22.34, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 0, 0, 0, 6, 8, baseMultiplier = 23.82, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 0, 0, 0, 6, 8, baseMultiplier = 25.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 0, 0, 0, 6, 8, baseMultiplier = 27.1, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 0, 0, 0, 6, 8, baseMultiplier = 28.91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 0, 0, 0, 6, 8, baseMultiplier = 30.84, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 0, 0, 0, 6, 8, baseMultiplier = 32.89, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 3, 5, 0, 0, 0, 6, 8, baseMultiplier = 0.6, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 0, 0, 0, 6, 8, baseMultiplier = 0.66, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8, 12, 0, 0, 0, 6, 8, baseMultiplier = 0.73, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 17, 0, 0, 0, 6, 8, baseMultiplier = 0.79, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, 0, 0, 0, 6, 8, baseMultiplier = 0.86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, 26, 0, 0, 0, 6, 8, baseMultiplier = 0.93, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 32, 0, 0, 0, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 25, 37, 0, 0, 0, 6, 8, baseMultiplier = 1.06, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 43, 0, 0, 0, 6, 8, baseMultiplier = 1.12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 33, 50, 0, 0, 0, 6, 8, baseMultiplier = 1.19, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 37, 56, 0, 0, 0, 6, 8, baseMultiplier = 1.25, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 42, 63, 0, 0, 0, 6, 8, baseMultiplier = 1.33, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 47, 70, 0, 0, 0, 6, 8, baseMultiplier = 1.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 52, 78, 0, 0, 0, 6, 8, baseMultiplier = 1.5, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 57, 85, 0, 0, 0, 6, 8, baseMultiplier = 1.59, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 62, 93, 0, 0, 0, 6, 8, baseMultiplier = 1.69, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 68, 101, 0, 0, 0, 6, 8, baseMultiplier = 1.8, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 73, 110, 0, 0, 0, 6, 8, baseMultiplier = 1.91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 79, 119, 0, 0, 0, 6, 8, baseMultiplier = 2.04, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 85, 128, 0, 0, 0, 6, 8, baseMultiplier = 2.17, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 92, 137, 0, 0, 0, 6, 8, baseMultiplier = 2.32, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 98, 147, 0, 0, 0, 6, 8, baseMultiplier = 2.47, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 105, 157, 0, 0, 0, 6, 8, baseMultiplier = 2.64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 112, 167, 0, 0, 0, 6, 8, baseMultiplier = 2.81, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 119, 178, 0, 0, 0, 6, 8, baseMultiplier = 3, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 126, 189, 0, 0, 0, 6, 8, baseMultiplier = 3.2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 133, 200, 0, 0, 0, 6, 8, baseMultiplier = 3.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 141, 211, 0, 0, 0, 6, 8, baseMultiplier = 3.64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 149, 223, 0, 0, 0, 6, 8, baseMultiplier = 3.88, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 157, 235, 0, 0, 0, 6, 8, baseMultiplier = 4.14, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 165, 247, 0, 0, 0, 6, 8, baseMultiplier = 4.42, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 173, 260, 0, 0, 0, 6, 8, baseMultiplier = 4.71, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 182, 273, 0, 0, 0, 6, 8, baseMultiplier = 5.03, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 191, 286, 0, 0, 0, 6, 8, baseMultiplier = 5.36, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 200, 299, 0, 0, 0, 6, 8, baseMultiplier = 5.72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 209, 313, 0, 0, 0, 6, 8, baseMultiplier = 6.1, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 218, 327, 0, 0, 0, 6, 8, baseMultiplier = 6.51, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 228, 342, 0, 0, 0, 6, 8, baseMultiplier = 6.94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 237, 356, 0, 0, 0, 6, 8, baseMultiplier = 7.4, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 247, 371, 0, 0, 0, 6, 8, baseMultiplier = 7.89, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11541,53 +12730,53 @@ skills["ShieldWallPlayer"] = { name = "Shield Wall", baseTypeName = "Shield Wall", color = 1, - description = "Ram your Shield into the ground, throwing up a semi-circular wall of earth. Enemies can attack the walls and your Slams or Warcries will instantly destroy them. Each wall segment explodes when destroyed, damaging enemies around it.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Wall] = true, [SkillType.Duration] = true, [SkillType.RequiresShield] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.SupportedByFountains] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Melee] = true, }, + description = "Ram your Shield into the ground, throwing up a wall of earth. Enemies can attack your wall segments, and your Slams, Warcries, and Shield Charge will instantly shatter them all. The segments explode when shattered, damaging enemies in front of and around them.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Wall] = true, [SkillType.Duration] = true, [SkillType.RequiresShield] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.SupportedByFountains] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CanCreateStoneElementals] = true, }, castTime = 1, qualityStats = { - { "base_number_of_shield_walls_allowed", 0.1 }, + { "shield_wall_damage_+%_final_when_slammed", 2 }, }, levels = { - [1] = { attackTime = 1250, baseMultiplier = 0.9, critChance = 5, levelRequirement = 0, cost = { Mana = 14, }, }, - [2] = { attackTime = 1250, baseMultiplier = 0.99, critChance = 5, levelRequirement = 3, cost = { Mana = 15, }, }, - [3] = { attackTime = 1250, baseMultiplier = 1.09, critChance = 5, levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { attackTime = 1250, baseMultiplier = 1.19, critChance = 5, levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { attackTime = 1250, baseMultiplier = 1.28, critChance = 5, levelRequirement = 14, cost = { Mana = 21, }, }, - [6] = { attackTime = 1250, baseMultiplier = 1.38, critChance = 5, levelRequirement = 18, cost = { Mana = 23, }, }, - [7] = { attackTime = 1250, baseMultiplier = 1.47, critChance = 5, levelRequirement = 22, cost = { Mana = 25, }, }, - [8] = { attackTime = 1250, baseMultiplier = 1.56, critChance = 5, levelRequirement = 26, cost = { Mana = 28, }, }, - [9] = { attackTime = 1250, baseMultiplier = 1.64, critChance = 5, levelRequirement = 31, cost = { Mana = 31, }, }, - [10] = { attackTime = 1250, baseMultiplier = 1.72, critChance = 5, levelRequirement = 36, cost = { Mana = 35, }, }, - [11] = { attackTime = 1250, baseMultiplier = 1.81, critChance = 5, levelRequirement = 41, cost = { Mana = 39, }, }, - [12] = { attackTime = 1250, baseMultiplier = 1.9, critChance = 5, levelRequirement = 46, cost = { Mana = 43, }, }, - [13] = { attackTime = 1250, baseMultiplier = 1.99, critChance = 5, levelRequirement = 52, cost = { Mana = 48, }, }, - [14] = { attackTime = 1250, baseMultiplier = 2.09, critChance = 5, levelRequirement = 58, cost = { Mana = 53, }, }, - [15] = { attackTime = 1250, baseMultiplier = 2.2, critChance = 5, levelRequirement = 64, cost = { Mana = 59, }, }, - [16] = { attackTime = 1250, baseMultiplier = 2.31, critChance = 5, levelRequirement = 66, cost = { Mana = 65, }, }, - [17] = { attackTime = 1250, baseMultiplier = 2.42, critChance = 5, levelRequirement = 72, cost = { Mana = 72, }, }, - [18] = { attackTime = 1250, baseMultiplier = 2.55, critChance = 5, levelRequirement = 78, cost = { Mana = 80, }, }, - [19] = { attackTime = 1250, baseMultiplier = 2.67, critChance = 5, levelRequirement = 84, cost = { Mana = 89, }, }, - [20] = { attackTime = 1250, baseMultiplier = 2.81, critChance = 5, levelRequirement = 90, cost = { Mana = 98, }, }, - [21] = { attackTime = 1250, baseMultiplier = 2.95, critChance = 5, levelRequirement = 90, cost = { Mana = 109, }, }, - [22] = { attackTime = 1250, baseMultiplier = 3.09, critChance = 5, levelRequirement = 90, cost = { Mana = 121, }, }, - [23] = { attackTime = 1250, baseMultiplier = 3.25, critChance = 5, levelRequirement = 90, cost = { Mana = 134, }, }, - [24] = { attackTime = 1250, baseMultiplier = 3.41, critChance = 5, levelRequirement = 90, cost = { Mana = 148, }, }, - [25] = { attackTime = 1250, baseMultiplier = 3.58, critChance = 5, levelRequirement = 90, cost = { Mana = 164, }, }, - [26] = { attackTime = 1250, baseMultiplier = 3.76, critChance = 5, levelRequirement = 90, cost = { Mana = 182, }, }, - [27] = { attackTime = 1250, baseMultiplier = 3.95, critChance = 5, levelRequirement = 90, cost = { Mana = 202, }, }, - [28] = { attackTime = 1250, baseMultiplier = 4.15, critChance = 5, levelRequirement = 90, cost = { Mana = 224, }, }, - [29] = { attackTime = 1250, baseMultiplier = 4.35, critChance = 5, levelRequirement = 90, cost = { Mana = 248, }, }, - [30] = { attackTime = 1250, baseMultiplier = 4.57, critChance = 5, levelRequirement = 90, cost = { Mana = 275, }, }, - [31] = { attackTime = 1250, baseMultiplier = 4.8, critChance = 5, levelRequirement = 90, cost = { Mana = 305, }, }, - [32] = { attackTime = 1250, baseMultiplier = 5.04, critChance = 5, levelRequirement = 90, cost = { Mana = 338, }, }, - [33] = { attackTime = 1250, baseMultiplier = 5.29, critChance = 5, levelRequirement = 90, cost = { Mana = 374, }, }, - [34] = { attackTime = 1250, baseMultiplier = 5.56, critChance = 5, levelRequirement = 90, cost = { Mana = 415, }, }, - [35] = { attackTime = 1250, baseMultiplier = 5.84, critChance = 5, levelRequirement = 90, cost = { Mana = 460, }, }, - [36] = { attackTime = 1250, baseMultiplier = 6.13, critChance = 5, levelRequirement = 90, cost = { Mana = 510, }, }, - [37] = { attackTime = 1250, baseMultiplier = 6.43, critChance = 5, levelRequirement = 90, cost = { Mana = 565, }, }, - [38] = { attackTime = 1250, baseMultiplier = 6.76, critChance = 5, levelRequirement = 90, cost = { Mana = 626, }, }, - [39] = { attackTime = 1250, baseMultiplier = 7.09, critChance = 5, levelRequirement = 90, cost = { Mana = 694, }, }, - [40] = { attackTime = 1250, baseMultiplier = 7.45, critChance = 5, levelRequirement = 90, cost = { Mana = 769, }, }, + [1] = { attackTime = 1250, baseMultiplier = 0.65, critChance = 5, levelRequirement = 0, cost = { Mana = 13, }, }, + [2] = { attackTime = 1250, baseMultiplier = 0.71, critChance = 5, levelRequirement = 3, cost = { Mana = 15, }, }, + [3] = { attackTime = 1250, baseMultiplier = 0.79, critChance = 5, levelRequirement = 6, cost = { Mana = 18, }, }, + [4] = { attackTime = 1250, baseMultiplier = 0.86, critChance = 5, levelRequirement = 10, cost = { Mana = 20, }, }, + [5] = { attackTime = 1250, baseMultiplier = 0.93, critChance = 5, levelRequirement = 14, cost = { Mana = 23, }, }, + [6] = { attackTime = 1250, critChance = 5, levelRequirement = 18, cost = { Mana = 25, }, }, + [7] = { attackTime = 1250, baseMultiplier = 1.08, critChance = 5, levelRequirement = 22, cost = { Mana = 28, }, }, + [8] = { attackTime = 1250, baseMultiplier = 1.15, critChance = 5, levelRequirement = 26, cost = { Mana = 32, }, }, + [9] = { attackTime = 1250, baseMultiplier = 1.21, critChance = 5, levelRequirement = 31, cost = { Mana = 35, }, }, + [10] = { attackTime = 1250, baseMultiplier = 1.28, critChance = 5, levelRequirement = 36, cost = { Mana = 39, }, }, + [11] = { attackTime = 1250, baseMultiplier = 1.36, critChance = 5, levelRequirement = 41, cost = { Mana = 43, }, }, + [12] = { attackTime = 1250, baseMultiplier = 1.44, critChance = 5, levelRequirement = 46, cost = { Mana = 47, }, }, + [13] = { attackTime = 1250, baseMultiplier = 1.53, critChance = 5, levelRequirement = 52, cost = { Mana = 51, }, }, + [14] = { attackTime = 1250, baseMultiplier = 1.62, critChance = 5, levelRequirement = 58, cost = { Mana = 56, }, }, + [15] = { attackTime = 1250, baseMultiplier = 1.72, critChance = 5, levelRequirement = 64, cost = { Mana = 61, }, }, + [16] = { attackTime = 1250, baseMultiplier = 1.83, critChance = 5, levelRequirement = 66, cost = { Mana = 66, }, }, + [17] = { attackTime = 1250, baseMultiplier = 1.95, critChance = 5, levelRequirement = 72, cost = { Mana = 72, }, }, + [18] = { attackTime = 1250, baseMultiplier = 2.07, critChance = 5, levelRequirement = 78, cost = { Mana = 78, }, }, + [19] = { attackTime = 1250, baseMultiplier = 2.21, critChance = 5, levelRequirement = 84, cost = { Mana = 85, }, }, + [20] = { attackTime = 1250, baseMultiplier = 2.35, critChance = 5, levelRequirement = 90, cost = { Mana = 92, }, }, + [21] = { attackTime = 1250, baseMultiplier = 2.51, critChance = 5, levelRequirement = 90, cost = { Mana = 99, }, }, + [22] = { attackTime = 1250, baseMultiplier = 2.68, critChance = 5, levelRequirement = 90, cost = { Mana = 107, }, }, + [23] = { attackTime = 1250, baseMultiplier = 2.86, critChance = 5, levelRequirement = 90, cost = { Mana = 115, }, }, + [24] = { attackTime = 1250, baseMultiplier = 3.05, critChance = 5, levelRequirement = 90, cost = { Mana = 123, }, }, + [25] = { attackTime = 1250, baseMultiplier = 3.25, critChance = 5, levelRequirement = 90, cost = { Mana = 133, }, }, + [26] = { attackTime = 1250, baseMultiplier = 3.47, critChance = 5, levelRequirement = 90, cost = { Mana = 142, }, }, + [27] = { attackTime = 1250, baseMultiplier = 3.7, critChance = 5, levelRequirement = 90, cost = { Mana = 153, }, }, + [28] = { attackTime = 1250, baseMultiplier = 3.94, critChance = 5, levelRequirement = 90, cost = { Mana = 164, }, }, + [29] = { attackTime = 1250, baseMultiplier = 4.21, critChance = 5, levelRequirement = 90, cost = { Mana = 175, }, }, + [30] = { attackTime = 1250, baseMultiplier = 4.49, critChance = 5, levelRequirement = 90, cost = { Mana = 188, }, }, + [31] = { attackTime = 1250, baseMultiplier = 4.79, critChance = 5, levelRequirement = 90, cost = { Mana = 201, }, }, + [32] = { attackTime = 1250, baseMultiplier = 5.1, critChance = 5, levelRequirement = 90, cost = { Mana = 215, }, }, + [33] = { attackTime = 1250, baseMultiplier = 5.44, critChance = 5, levelRequirement = 90, cost = { Mana = 229, }, }, + [34] = { attackTime = 1250, baseMultiplier = 5.81, critChance = 5, levelRequirement = 90, cost = { Mana = 245, }, }, + [35] = { attackTime = 1250, baseMultiplier = 6.19, critChance = 5, levelRequirement = 90, cost = { Mana = 261, }, }, + [36] = { attackTime = 1250, baseMultiplier = 6.61, critChance = 5, levelRequirement = 90, cost = { Mana = 279, }, }, + [37] = { attackTime = 1250, baseMultiplier = 7.05, critChance = 5, levelRequirement = 90, cost = { Mana = 297, }, }, + [38] = { attackTime = 1250, baseMultiplier = 7.52, critChance = 5, levelRequirement = 90, cost = { Mana = 316, }, }, + [39] = { attackTime = 1250, baseMultiplier = 8.02, critChance = 5, levelRequirement = 90, cost = { Mana = 337, }, }, + [40] = { attackTime = 1250, baseMultiplier = 8.55, critChance = 5, levelRequirement = 90, cost = { Mana = 358, }, }, }, statSets = { [1] = { @@ -11604,8 +12793,10 @@ skills["ShieldWallPlayer"] = { { "base_skill_effect_duration", 6000 }, { "wall_expand_delay_ms", 40 }, { "active_skill_base_area_of_effect_radius", 40 }, - { "active_skill_base_secondary_area_of_effect_radius", 8 }, + { "active_skill_base_secondary_area_of_effect_radius", 14 }, { "base_number_of_shield_walls_allowed", 2 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "shield_wall_damage_+%_final_when_slammed", 100 }, }, stats = { "off_hand_weapon_minimum_physical_damage", @@ -11625,46 +12816,46 @@ skills["ShieldWallPlayer"] = { "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 4, 6, 50, 36, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 50, 64, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 50, 108, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 50, 164, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 50, 240, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 50, 334, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 50, 460, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 50, 624, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 50, 832, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 50, 1100, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 50, 1438, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 50, 1866, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 50, 2408, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 50, 3086, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 50, 3940, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 50, 5016, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 50, 6362, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 50, 8032, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 50, 10118, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 50, 12714, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 50, 13254, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 50, 14371, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 50, 16378, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 50, 18862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 50, 21933, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 50, 23030, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 50, 24181, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 50, 25390, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 50, 26660, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 50, 27993, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 50, 29392, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 50, 30862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 50, 32405, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 50, 34025, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 50, 35727, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 50, 37513, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 50, 39389, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 50, 41358, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 50, 43426, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 50, 45597, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 70, 36, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, 70, 64, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 70, 108, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 20, 70, 164, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 26, 70, 240, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 32, 70, 334, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 38, 70, 460, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 45, 70, 624, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 53, 70, 832, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 60, 70, 1100, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 45, 68, 70, 1438, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 70, 1866, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 57, 85, 70, 2408, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 94, 70, 3086, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 103, 70, 3940, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 75, 113, 70, 5016, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 82, 123, 70, 6362, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 89, 133, 70, 8032, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 144, 70, 10118, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 103, 155, 70, 12714, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 111, 166, 70, 13254, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 119, 178, 70, 14371, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 127, 190, 70, 16378, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 135, 202, 70, 18862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 144, 215, 70, 21933, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 152, 228, 70, 23030, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 161, 242, 70, 24181, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 170, 256, 70, 25390, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 180, 270, 70, 26660, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 190, 284, 70, 27993, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 200, 299, 70, 29392, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 210, 315, 70, 30862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 220, 330, 70, 32405, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 346, 70, 34025, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 242, 362, 70, 35727, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 253, 379, 70, 37513, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 264, 396, 70, 39389, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 275, 413, 70, 41358, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 287, 431, 70, 43426, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 299, 449, 70, 45597, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -11673,8 +12864,8 @@ skills["ShockwaveTotemPlayer"] = { name = "Shockwave Totem", baseTypeName = "Shockwave Totem", color = 1, - description = "Raise a Totem that Slams the ground around it, repeatedly damaging nearby enemies. Jagged Ground erupts when hit by this Slam, damaging enemies standing on it.", - skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, }, + description = "Raise a Totem that Slams the ground around it, repeatedly damaging nearby enemies. Jagged Ground erupts when hit by this Slam, damaging enemies standing on it. The Totem cannot create Jagged Ground.", + skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CannotCreateJaggedGround] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Flail"] = true, @@ -11693,55 +12884,54 @@ skills["ShockwaveTotemPlayer"] = { skillTotemId = 5, castTime = 0.6, qualityStats = { - { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", -10 }, + { "base_totem_duration", 200 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 15, }, }, [2] = { levelRequirement = 3, cost = { Mana = 17, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 19, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 21, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 23, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 26, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 29, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 32, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 35, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 39, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 43, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 48, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 53, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 59, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 66, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 73, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 20, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 23, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 25, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 29, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 32, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 36, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 39, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 44, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 48, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 53, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 58, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 63, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 69, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 75, }, }, [17] = { levelRequirement = 72, cost = { Mana = 81, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 90, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 99, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 110, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 122, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 135, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 150, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 166, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 185, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 205, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 227, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 251, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 278, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 309, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 342, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 379, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 420, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 466, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 516, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 572, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 634, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 702, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 778, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 862, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 88, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 95, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 103, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 111, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 120, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 129, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 139, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 149, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 160, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 172, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 184, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 197, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 211, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 225, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 257, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 275, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 293, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 312, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 333, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 355, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 378, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 402, }, }, }, statSets = { [1] = { label = "Totem", - baseEffectiveness = 1.210000038147, - incrementalEffectiveness = 0.27349999547005, + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { totem = true, @@ -11749,136 +12939,463 @@ skills["ShockwaveTotemPlayer"] = { constantStats = { { "base_totem_duration", 12000 }, { "base_totem_range", 80 }, - { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 }, - { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 1500 }, { "base_number_of_totems_allowed", 1 }, }, stats = { - "alt_attack_container_main_hand_weapon_minimum_physical_damage", - "alt_attack_container_main_hand_weapon_maximum_physical_damage", "totem_elemental_resistance_%", "totem_chaos_resistance_%", "is_totem", "skill_is_deploy_skill", - "active_skill_has_alt_attack_container", "totem_targets_ignoring_action_distance", - "alt_attack_container_main_hand_unarmed_override_nothing_type", + "quality_display_base_totem_duration_is_gem", + "cannot_create_jagged_ground", + "is_melee_attack_totem", + }, + levels = { + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ShockwaveTotemQuakePlayer"] = { + name = "Shockwave Slam", + hidden = true, + skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Nova] = true, [SkillType.Slam] = true, [SkillType.UsedByTotem] = true, [SkillType.CannotCreateJaggedGround] = true, }, + weaponTypes = { + ["One Handed Mace"] = true, + ["Flail"] = true, + ["Two Handed Sword"] = true, + ["Dagger"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Bow"] = true, + ["Spear"] = true, + ["Two Handed Axe"] = true, + ["Two Handed Mace"] = true, + ["One Handed Axe"] = true, + ["Staff"] = true, + ["One Handed Sword"] = true, + }, + castTime = 0.6, + qualityStats = { + }, + levels = { + [1] = { attackSpeedMultiplier = -50, baseMultiplier = 0.25, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = -50, baseMultiplier = 0.27, levelRequirement = 0, }, + [3] = { attackSpeedMultiplier = -50, baseMultiplier = 0.3, levelRequirement = 0, }, + [4] = { attackSpeedMultiplier = -50, baseMultiplier = 0.33, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = -50, baseMultiplier = 0.35, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = -50, baseMultiplier = 0.38, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = -50, baseMultiplier = 0.4, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = -50, baseMultiplier = 0.42, levelRequirement = 0, }, + [9] = { attackSpeedMultiplier = -50, baseMultiplier = 0.44, levelRequirement = 0, }, + [10] = { attackSpeedMultiplier = -50, baseMultiplier = 0.46, levelRequirement = 0, }, + [11] = { attackSpeedMultiplier = -50, baseMultiplier = 0.48, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = -50, baseMultiplier = 0.5, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = -50, baseMultiplier = 0.52, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = -50, baseMultiplier = 0.54, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = -50, baseMultiplier = 0.56, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = -50, baseMultiplier = 0.58, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = -50, baseMultiplier = 0.6, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = -50, baseMultiplier = 0.62, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = -50, baseMultiplier = 0.64, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = -50, baseMultiplier = 0.66, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = -50, baseMultiplier = 0.68, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = -50, baseMultiplier = 0.7, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = -50, baseMultiplier = 0.73, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = -50, baseMultiplier = 0.75, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = -50, baseMultiplier = 0.78, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = -50, baseMultiplier = 0.8, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = -50, baseMultiplier = 0.83, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = -50, baseMultiplier = 0.86, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = -50, baseMultiplier = 0.88, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = -50, baseMultiplier = 0.91, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = -50, baseMultiplier = 0.94, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = -50, baseMultiplier = 0.98, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = -50, baseMultiplier = 1.01, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = -50, baseMultiplier = 1.04, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = -50, baseMultiplier = 1.08, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = -50, baseMultiplier = 1.11, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = -50, baseMultiplier = 1.15, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = -50, baseMultiplier = 1.19, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = -50, baseMultiplier = 1.23, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = -50, baseMultiplier = 1.27, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Slam", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "totem_shockwave_quake", + baseFlags = { + totem = true, + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 30 }, + { "skill_disabled_unless_cloned", 2 }, + }, + stats = { + "is_area_damage", + "attack_is_melee_override", + "base_skill_is_totemified", + "cannot_create_jagged_ground", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Jagged Ground Eruption", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "totem_shockwave_quake", + baseFlags = { + totem = true, + attack = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 30 }, + { "skill_disabled_unless_cloned", 2 }, + }, + stats = { + "is_area_damage", + "attack_is_melee_override", + "base_skill_is_totemified", + "cannot_create_jagged_ground", + }, + levels = { + [1] = { baseMultiplier = 0.9, actorLevel = 1, }, + [2] = { baseMultiplier = 0.99, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.08, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.18, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.27, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.36, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.44, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.52, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.58, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.65, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.72, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.79, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.86, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.93, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 2, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 2.07, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.15, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.22, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.3, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 2.37, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 2.45, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.53, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.62, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.7, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.79, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.89, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.98, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.08, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.18, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.29, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.4, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.51, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 3.63, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 3.75, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 3.87, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 4, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 4.13, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 4.27, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 4.41, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 4.56, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SiegeBallistaPlayer"] = { + name = "Siege Ballista", + baseTypeName = "Siege Ballista", + color = 1, + description = "Deploy a Ballista Totem that fires bolts skyward, to explode a short time after landing.", + skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + skillTotemId = 19, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 23, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 27, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 30, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 34, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 38, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 42, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 47, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 51, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 57, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 62, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 68, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 74, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 81, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 88, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 95, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 103, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 112, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 121, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 131, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 141, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 152, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 163, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 175, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 202, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 217, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 232, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 248, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 284, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 303, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 323, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 345, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 368, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 392, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 418, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 445, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 473, }, }, + }, + statSets = { + [1] = { + label = "Ballista", + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + totem = true, + }, + constantStats = { + { "base_totem_range", 80 }, + { "base_totem_duration", 8000 }, + { "base_number_of_totems_allowed", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "totem_elemental_resistance_%", + "totem_chaos_resistance_%", + "skill_is_deploy_skill", + "is_totem", + "is_ranged_attack_totem", + "can_perform_skill_while_moving", + "totem_targets_ignoring_action_distance", + "base_deal_no_damage", "quality_display_base_totem_duration_is_gem", }, levels = { - [1] = { 4, 6, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ShockwaveTotemQuakePlayer"] = { - name = "Shockwave Slam", +skills["SiegeBallistaProjectilePlayer"] = { + name = "", hidden = true, - skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Nova] = true, [SkillType.Slam] = true, [SkillType.UsedByTotem] = true, }, - castTime = 0.6, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.CannotChain] = true, [SkillType.UsedByTotem] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, qualityStats = { + { "active_skill_base_secondary_area_of_effect_radius", 0.15 }, }, levels = { - [1] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.96, levelRequirement = 0, }, - [4] = { baseMultiplier = 1.05, levelRequirement = 0, }, - [5] = { baseMultiplier = 1.13, levelRequirement = 0, }, - [6] = { baseMultiplier = 1.21, levelRequirement = 0, }, - [7] = { baseMultiplier = 1.28, levelRequirement = 0, }, - [8] = { baseMultiplier = 1.35, levelRequirement = 0, }, - [9] = { baseMultiplier = 1.41, levelRequirement = 0, }, - [10] = { baseMultiplier = 1.47, levelRequirement = 0, }, - [11] = { baseMultiplier = 1.53, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.59, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.65, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.71, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.78, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.84, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.91, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.97, levelRequirement = 0, }, - [19] = { baseMultiplier = 2.04, levelRequirement = 0, }, - [20] = { baseMultiplier = 2.11, levelRequirement = 0, }, - [21] = { baseMultiplier = 2.18, levelRequirement = 0, }, - [22] = { baseMultiplier = 2.25, levelRequirement = 0, }, - [23] = { baseMultiplier = 2.33, levelRequirement = 0, }, - [24] = { baseMultiplier = 2.4, levelRequirement = 0, }, - [25] = { baseMultiplier = 2.48, levelRequirement = 0, }, - [26] = { baseMultiplier = 2.57, levelRequirement = 0, }, - [27] = { baseMultiplier = 2.65, levelRequirement = 0, }, - [28] = { baseMultiplier = 2.74, levelRequirement = 0, }, - [29] = { baseMultiplier = 2.83, levelRequirement = 0, }, - [30] = { baseMultiplier = 2.92, levelRequirement = 0, }, - [31] = { baseMultiplier = 3.02, levelRequirement = 0, }, - [32] = { baseMultiplier = 3.12, levelRequirement = 0, }, - [33] = { baseMultiplier = 3.22, levelRequirement = 0, }, - [34] = { baseMultiplier = 3.33, levelRequirement = 0, }, - [35] = { baseMultiplier = 3.44, levelRequirement = 0, }, - [36] = { baseMultiplier = 3.56, levelRequirement = 0, }, - [37] = { baseMultiplier = 3.67, levelRequirement = 0, }, - [38] = { baseMultiplier = 3.8, levelRequirement = 0, }, - [39] = { baseMultiplier = 3.92, levelRequirement = 0, }, - [40] = { baseMultiplier = 4.05, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = -75, baseMultiplier = 0.25, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = -75, baseMultiplier = 0.27, levelRequirement = 0, }, + [3] = { attackSpeedMultiplier = -75, baseMultiplier = 0.3, levelRequirement = 0, }, + [4] = { attackSpeedMultiplier = -75, baseMultiplier = 0.33, levelRequirement = 0, }, + [5] = { attackSpeedMultiplier = -75, baseMultiplier = 0.35, levelRequirement = 0, }, + [6] = { attackSpeedMultiplier = -75, baseMultiplier = 0.38, levelRequirement = 0, }, + [7] = { attackSpeedMultiplier = -75, baseMultiplier = 0.4, levelRequirement = 0, }, + [8] = { attackSpeedMultiplier = -75, baseMultiplier = 0.42, levelRequirement = 0, }, + [9] = { attackSpeedMultiplier = -75, baseMultiplier = 0.44, levelRequirement = 0, }, + [10] = { attackSpeedMultiplier = -75, baseMultiplier = 0.46, levelRequirement = 0, }, + [11] = { attackSpeedMultiplier = -75, baseMultiplier = 0.48, levelRequirement = 0, }, + [12] = { attackSpeedMultiplier = -75, baseMultiplier = 0.5, levelRequirement = 0, }, + [13] = { attackSpeedMultiplier = -75, baseMultiplier = 0.52, levelRequirement = 0, }, + [14] = { attackSpeedMultiplier = -75, baseMultiplier = 0.54, levelRequirement = 0, }, + [15] = { attackSpeedMultiplier = -75, baseMultiplier = 0.56, levelRequirement = 0, }, + [16] = { attackSpeedMultiplier = -75, baseMultiplier = 0.58, levelRequirement = 0, }, + [17] = { attackSpeedMultiplier = -75, baseMultiplier = 0.6, levelRequirement = 0, }, + [18] = { attackSpeedMultiplier = -75, baseMultiplier = 0.62, levelRequirement = 0, }, + [19] = { attackSpeedMultiplier = -75, baseMultiplier = 0.64, levelRequirement = 0, }, + [20] = { attackSpeedMultiplier = -75, baseMultiplier = 0.66, levelRequirement = 0, }, + [21] = { attackSpeedMultiplier = -75, baseMultiplier = 0.68, levelRequirement = 0, }, + [22] = { attackSpeedMultiplier = -75, baseMultiplier = 0.7, levelRequirement = 0, }, + [23] = { attackSpeedMultiplier = -75, baseMultiplier = 0.73, levelRequirement = 0, }, + [24] = { attackSpeedMultiplier = -75, baseMultiplier = 0.75, levelRequirement = 0, }, + [25] = { attackSpeedMultiplier = -75, baseMultiplier = 0.78, levelRequirement = 0, }, + [26] = { attackSpeedMultiplier = -75, baseMultiplier = 0.8, levelRequirement = 0, }, + [27] = { attackSpeedMultiplier = -75, baseMultiplier = 0.83, levelRequirement = 0, }, + [28] = { attackSpeedMultiplier = -75, baseMultiplier = 0.86, levelRequirement = 0, }, + [29] = { attackSpeedMultiplier = -75, baseMultiplier = 0.88, levelRequirement = 0, }, + [30] = { attackSpeedMultiplier = -75, baseMultiplier = 0.91, levelRequirement = 0, }, + [31] = { attackSpeedMultiplier = -75, baseMultiplier = 0.94, levelRequirement = 0, }, + [32] = { attackSpeedMultiplier = -75, baseMultiplier = 0.98, levelRequirement = 0, }, + [33] = { attackSpeedMultiplier = -75, baseMultiplier = 1.01, levelRequirement = 0, }, + [34] = { attackSpeedMultiplier = -75, baseMultiplier = 1.04, levelRequirement = 0, }, + [35] = { attackSpeedMultiplier = -75, baseMultiplier = 1.08, levelRequirement = 0, }, + [36] = { attackSpeedMultiplier = -75, baseMultiplier = 1.11, levelRequirement = 0, }, + [37] = { attackSpeedMultiplier = -75, baseMultiplier = 1.15, levelRequirement = 0, }, + [38] = { attackSpeedMultiplier = -75, baseMultiplier = 1.19, levelRequirement = 0, }, + [39] = { attackSpeedMultiplier = -75, baseMultiplier = 1.23, levelRequirement = 0, }, + [40] = { attackSpeedMultiplier = -75, baseMultiplier = 1.27, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Slam", + label = "Artillery", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "totem_shockwave_quake", + statDescriptionScope = "artillery_ballista_projectile", baseFlags = { - totem = true, attack = true, - area = true, - melee = true, + projectile = true, + totem = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 30 }, - { "active_skill_base_secondary_area_of_effect_radius", 60 }, - { "skill_disabled_unless_cloned", 2 }, + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "base_number_of_projectiles", 3 }, + { "siege_cascade_fall_time_ms", 800 }, + { "active_skill_base_secondary_area_of_effect_radius", 5 }, + { "active_skill_base_tertiary_area_of_effect_radius", 45 }, + { "siege_cascade_visual_fall_time_delay_%", 70 }, + { "skill_disabled_unless_cloned", 1 }, + { "projectile_minimum_range", 16 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, + { "main_hand_base_maximum_attack_distance", 90 }, }, stats = { + "base_is_projectile", "is_area_damage", - "attack_is_melee_override", + "siege_cascade_is_artillery_ballista", "base_skill_is_totemified", + "active_skill_ignores_crossbow_manager", + "base_skill_is_ballistified", }, levels = { [1] = { actorLevel = 1, }, @@ -11924,65 +13441,77 @@ skills["ShockwaveTotemQuakePlayer"] = { }, }, [2] = { - label = "Jagged Ground Eruption", + label = "Explosion", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "totem_shockwave_quake", + statDescriptionScope = "artillery_ballista_projectile", baseFlags = { - totem = true, attack = true, - area = true, + projectile = true, + totem = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 30 }, - { "active_skill_base_secondary_area_of_effect_radius", 60 }, - { "skill_disabled_unless_cloned", 2 }, + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "base_number_of_projectiles", 3 }, + { "siege_cascade_fall_time_ms", 800 }, + { "active_skill_base_secondary_area_of_effect_radius", 5 }, + { "active_skill_base_tertiary_area_of_effect_radius", 45 }, + { "siege_cascade_visual_fall_time_delay_%", 70 }, + { "skill_disabled_unless_cloned", 1 }, + { "projectile_minimum_range", 16 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, + { "main_hand_base_maximum_attack_distance", 90 }, + { "active_skill_base_secondary_area_of_effect_radius", 9 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, }, stats = { + "base_is_projectile", "is_area_damage", - "attack_is_melee_override", + "siege_cascade_is_artillery_ballista", "base_skill_is_totemified", + "active_skill_ignores_crossbow_manager", + "base_skill_is_ballistified", }, levels = { - [1] = { baseMultiplier = 0.2, actorLevel = 1, }, - [2] = { baseMultiplier = 0.22, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.24, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.26, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.28, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.3, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.32, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.34, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.35, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.37, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 0.38, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 0.4, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 0.41, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 0.43, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 0.44, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 0.46, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 0.48, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 0.49, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 0.51, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 0.53, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 0.54, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 0.56, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 0.58, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 0.6, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 0.62, actorLevel = 136.875, }, - [26] = { baseMultiplier = 0.64, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 0.66, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 0.68, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 0.71, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 0.73, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 0.76, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 0.78, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 0.81, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 0.83, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 0.86, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 0.89, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 0.92, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 0.95, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 0.98, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 1.01, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.5, actorLevel = 1, }, + [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.6, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.65, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.7, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.75, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.8, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.84, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.88, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.92, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 0.95, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 0.99, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.03, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.07, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.11, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.15, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.19, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.23, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.28, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.32, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.36, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 1.41, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 1.45, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 1.5, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 1.55, actorLevel = 136.875, }, + [26] = { baseMultiplier = 1.6, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 1.66, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 1.71, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 1.77, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 1.83, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 1.89, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 1.95, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 2.02, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 2.08, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 2.15, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 2.22, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 2.3, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 2.37, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 2.45, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 2.53, actorLevel = 288.29998779297, }, }, }, } @@ -11992,7 +13521,7 @@ skills["StampedePlayer"] = { baseTypeName = "Stampede", color = 1, description = "Charges forward, cracking the earth and leaving a patch of Jagged Ground with every footstep. At the end of your charge, a massive leaping Slam damages enemies and causes all nearby patches of Jagged Ground to explode, damaging enemies standing on them.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Jumping] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -12002,46 +13531,46 @@ skills["StampedePlayer"] = { { "slam_aftershock_chance_%", 1 }, }, levels = { - [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 10, }, }, + [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 9, }, }, [2] = { baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 11, }, }, [3] = { baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 12, }, }, - [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 16, }, }, - [7] = { baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 18, }, }, - [8] = { baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 20, }, }, - [9] = { baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 22, }, }, - [10] = { baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 25, }, }, - [11] = { baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 27, }, }, - [12] = { baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 30, }, }, - [13] = { baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 34, }, }, - [14] = { baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 38, }, }, - [15] = { baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 42, }, }, - [16] = { baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 46, }, }, + [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 14, }, }, + [5] = { baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 16, }, }, + [6] = { baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 18, }, }, + [7] = { baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 20, }, }, + [8] = { baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 22, }, }, + [9] = { baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 25, }, }, + [10] = { baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 27, }, }, + [11] = { baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 30, }, }, + [12] = { baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 33, }, }, + [13] = { baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 36, }, }, + [14] = { baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 40, }, }, + [15] = { baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 43, }, }, + [16] = { baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 47, }, }, [17] = { baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 51, }, }, - [18] = { baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 57, }, }, - [19] = { baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 63, }, }, - [20] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 70, }, }, - [21] = { baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 77, }, }, - [22] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 86, }, }, - [23] = { baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 95, }, }, - [24] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 106, }, }, - [25] = { baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 117, }, }, - [26] = { baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 130, }, }, - [27] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 144, }, }, - [28] = { baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 159, }, }, - [29] = { baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 177, }, }, - [30] = { baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 196, }, }, - [31] = { baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 217, }, }, - [32] = { baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 241, }, }, - [33] = { baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 267, }, }, - [34] = { baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 296, }, }, - [35] = { baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 328, }, }, - [36] = { baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 363, }, }, - [37] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 402, }, }, - [38] = { baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 446, }, }, - [39] = { baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 494, }, }, - [40] = { baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 548, }, }, + [18] = { baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 56, }, }, + [19] = { baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 60, }, }, + [20] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 65, }, }, + [21] = { baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 70, }, }, + [22] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 76, }, }, + [23] = { baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 82, }, }, + [24] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 88, }, }, + [25] = { baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 94, }, }, + [26] = { baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 101, }, }, + [27] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 109, }, }, + [28] = { baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 117, }, }, + [29] = { baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 125, }, }, + [30] = { baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 134, }, }, + [31] = { baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 143, }, }, + [32] = { baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 153, }, }, + [33] = { baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 163, }, }, + [34] = { baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 174, }, }, + [35] = { baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 186, }, }, + [36] = { baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 198, }, }, + [37] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 211, }, }, + [38] = { baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 225, }, }, + [39] = { baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 240, }, }, + [40] = { baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 255, }, }, }, statSets = { [1] = { @@ -12257,8 +13786,8 @@ skills["SunderPlayer"] = { name = "Sunder", baseTypeName = "Sunder", color = 1, - description = "Slam the ground, creating a roiling fissure that damages enemies in a sequence of areas in front of you. A number of enemies hit by the wave will release a shockwave, damaging other enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.CreatesFissure] = true, }, + description = "Slam the ground, creating a roiling fissure that damages enemies in a sequence of areas in front of you. A number of enemies hit by the wave will release a shockwave, damaging other enemies. Hitting an enemy with Fully Broken Armour applies Sundered Armour, making it take additional increased Physical damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Two Handed Mace"] = true, @@ -12268,46 +13797,46 @@ skills["SunderPlayer"] = { { "accuracy_range_penalty_+%", -2.5 }, }, levels = { - [1] = { attackSpeedMultiplier = -35, baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 16, }, }, - [2] = { attackSpeedMultiplier = -35, baseMultiplier = 1.76, levelRequirement = 3, cost = { Mana = 17, }, }, - [3] = { attackSpeedMultiplier = -35, baseMultiplier = 1.95, levelRequirement = 6, cost = { Mana = 19, }, }, - [4] = { attackSpeedMultiplier = -35, baseMultiplier = 2.14, levelRequirement = 10, cost = { Mana = 22, }, }, - [5] = { attackSpeedMultiplier = -35, baseMultiplier = 2.32, levelRequirement = 14, cost = { Mana = 24, }, }, - [6] = { attackSpeedMultiplier = -35, baseMultiplier = 2.51, levelRequirement = 18, cost = { Mana = 27, }, }, - [7] = { attackSpeedMultiplier = -35, baseMultiplier = 2.71, levelRequirement = 22, cost = { Mana = 30, }, }, - [8] = { attackSpeedMultiplier = -35, baseMultiplier = 2.91, levelRequirement = 26, cost = { Mana = 33, }, }, - [9] = { attackSpeedMultiplier = -35, baseMultiplier = 3.09, levelRequirement = 31, cost = { Mana = 36, }, }, - [10] = { attackSpeedMultiplier = -35, baseMultiplier = 3.29, levelRequirement = 36, cost = { Mana = 40, }, }, - [11] = { attackSpeedMultiplier = -35, baseMultiplier = 3.5, levelRequirement = 41, cost = { Mana = 45, }, }, - [12] = { attackSpeedMultiplier = -35, baseMultiplier = 3.73, levelRequirement = 46, cost = { Mana = 50, }, }, - [13] = { attackSpeedMultiplier = -35, baseMultiplier = 3.98, levelRequirement = 52, cost = { Mana = 55, }, }, - [14] = { attackSpeedMultiplier = -35, baseMultiplier = 4.26, levelRequirement = 58, cost = { Mana = 61, }, }, - [15] = { attackSpeedMultiplier = -35, baseMultiplier = 4.56, levelRequirement = 64, cost = { Mana = 68, }, }, - [16] = { attackSpeedMultiplier = -35, baseMultiplier = 4.89, levelRequirement = 66, cost = { Mana = 75, }, }, - [17] = { attackSpeedMultiplier = -35, baseMultiplier = 5.24, levelRequirement = 72, cost = { Mana = 83, }, }, - [18] = { attackSpeedMultiplier = -35, baseMultiplier = 5.64, levelRequirement = 78, cost = { Mana = 92, }, }, - [19] = { attackSpeedMultiplier = -35, baseMultiplier = 6.06, levelRequirement = 84, cost = { Mana = 102, }, }, - [20] = { attackSpeedMultiplier = -35, baseMultiplier = 6.53, levelRequirement = 90, cost = { Mana = 114, }, }, - [21] = { attackSpeedMultiplier = -35, baseMultiplier = 7.04, levelRequirement = 90, cost = { Mana = 126, }, }, - [22] = { attackSpeedMultiplier = -35, baseMultiplier = 7.58, levelRequirement = 90, cost = { Mana = 140, }, }, - [23] = { attackSpeedMultiplier = -35, baseMultiplier = 8.17, levelRequirement = 90, cost = { Mana = 155, }, }, - [24] = { attackSpeedMultiplier = -35, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 171, }, }, - [25] = { attackSpeedMultiplier = -35, baseMultiplier = 9.48, levelRequirement = 90, cost = { Mana = 190, }, }, - [26] = { attackSpeedMultiplier = -35, baseMultiplier = 10.21, levelRequirement = 90, cost = { Mana = 211, }, }, - [27] = { attackSpeedMultiplier = -35, baseMultiplier = 11, levelRequirement = 90, cost = { Mana = 233, }, }, - [28] = { attackSpeedMultiplier = -35, baseMultiplier = 11.85, levelRequirement = 90, cost = { Mana = 259, }, }, - [29] = { attackSpeedMultiplier = -35, baseMultiplier = 12.77, levelRequirement = 90, cost = { Mana = 287, }, }, - [30] = { attackSpeedMultiplier = -35, baseMultiplier = 13.75, levelRequirement = 90, cost = { Mana = 318, }, }, - [31] = { attackSpeedMultiplier = -35, baseMultiplier = 14.82, levelRequirement = 90, cost = { Mana = 352, }, }, - [32] = { attackSpeedMultiplier = -35, baseMultiplier = 15.96, levelRequirement = 90, cost = { Mana = 390, }, }, - [33] = { attackSpeedMultiplier = -35, baseMultiplier = 17.2, levelRequirement = 90, cost = { Mana = 433, }, }, - [34] = { attackSpeedMultiplier = -35, baseMultiplier = 18.52, levelRequirement = 90, cost = { Mana = 479, }, }, - [35] = { attackSpeedMultiplier = -35, baseMultiplier = 19.96, levelRequirement = 90, cost = { Mana = 531, }, }, - [36] = { attackSpeedMultiplier = -35, baseMultiplier = 21.5, levelRequirement = 90, cost = { Mana = 589, }, }, - [37] = { attackSpeedMultiplier = -35, baseMultiplier = 23.16, levelRequirement = 90, cost = { Mana = 652, }, }, - [38] = { attackSpeedMultiplier = -35, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 723, }, }, - [39] = { attackSpeedMultiplier = -35, baseMultiplier = 26.88, levelRequirement = 90, cost = { Mana = 801, }, }, - [40] = { attackSpeedMultiplier = -35, baseMultiplier = 28.96, levelRequirement = 90, cost = { Mana = 888, }, }, + [1] = { attackSpeedMultiplier = -65, baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 15, }, }, + [2] = { attackSpeedMultiplier = -65, baseMultiplier = 1.76, levelRequirement = 3, cost = { Mana = 18, }, }, + [3] = { attackSpeedMultiplier = -65, baseMultiplier = 1.95, levelRequirement = 6, cost = { Mana = 20, }, }, + [4] = { attackSpeedMultiplier = -65, baseMultiplier = 2.14, levelRequirement = 10, cost = { Mana = 23, }, }, + [5] = { attackSpeedMultiplier = -65, baseMultiplier = 2.32, levelRequirement = 14, cost = { Mana = 26, }, }, + [6] = { attackSpeedMultiplier = -65, baseMultiplier = 2.51, levelRequirement = 18, cost = { Mana = 29, }, }, + [7] = { attackSpeedMultiplier = -65, baseMultiplier = 2.71, levelRequirement = 22, cost = { Mana = 33, }, }, + [8] = { attackSpeedMultiplier = -65, baseMultiplier = 2.91, levelRequirement = 26, cost = { Mana = 37, }, }, + [9] = { attackSpeedMultiplier = -65, baseMultiplier = 3.09, levelRequirement = 31, cost = { Mana = 41, }, }, + [10] = { attackSpeedMultiplier = -65, baseMultiplier = 3.29, levelRequirement = 36, cost = { Mana = 45, }, }, + [11] = { attackSpeedMultiplier = -65, baseMultiplier = 3.5, levelRequirement = 41, cost = { Mana = 49, }, }, + [12] = { attackSpeedMultiplier = -65, baseMultiplier = 3.73, levelRequirement = 46, cost = { Mana = 54, }, }, + [13] = { attackSpeedMultiplier = -65, baseMultiplier = 3.98, levelRequirement = 52, cost = { Mana = 59, }, }, + [14] = { attackSpeedMultiplier = -65, baseMultiplier = 4.26, levelRequirement = 58, cost = { Mana = 65, }, }, + [15] = { attackSpeedMultiplier = -65, baseMultiplier = 4.56, levelRequirement = 64, cost = { Mana = 71, }, }, + [16] = { attackSpeedMultiplier = -65, baseMultiplier = 4.89, levelRequirement = 66, cost = { Mana = 77, }, }, + [17] = { attackSpeedMultiplier = -65, baseMultiplier = 5.24, levelRequirement = 72, cost = { Mana = 83, }, }, + [18] = { attackSpeedMultiplier = -65, baseMultiplier = 5.64, levelRequirement = 78, cost = { Mana = 90, }, }, + [19] = { attackSpeedMultiplier = -65, baseMultiplier = 6.06, levelRequirement = 84, cost = { Mana = 98, }, }, + [20] = { attackSpeedMultiplier = -65, baseMultiplier = 6.53, levelRequirement = 90, cost = { Mana = 106, }, }, + [21] = { attackSpeedMultiplier = -65, baseMultiplier = 7.04, levelRequirement = 90, cost = { Mana = 114, }, }, + [22] = { attackSpeedMultiplier = -65, baseMultiplier = 7.58, levelRequirement = 90, cost = { Mana = 123, }, }, + [23] = { attackSpeedMultiplier = -65, baseMultiplier = 8.17, levelRequirement = 90, cost = { Mana = 133, }, }, + [24] = { attackSpeedMultiplier = -65, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 143, }, }, + [25] = { attackSpeedMultiplier = -65, baseMultiplier = 9.48, levelRequirement = 90, cost = { Mana = 153, }, }, + [26] = { attackSpeedMultiplier = -65, baseMultiplier = 10.21, levelRequirement = 90, cost = { Mana = 165, }, }, + [27] = { attackSpeedMultiplier = -65, baseMultiplier = 11, levelRequirement = 90, cost = { Mana = 177, }, }, + [28] = { attackSpeedMultiplier = -65, baseMultiplier = 11.85, levelRequirement = 90, cost = { Mana = 189, }, }, + [29] = { attackSpeedMultiplier = -65, baseMultiplier = 12.77, levelRequirement = 90, cost = { Mana = 203, }, }, + [30] = { attackSpeedMultiplier = -65, baseMultiplier = 13.75, levelRequirement = 90, cost = { Mana = 217, }, }, + [31] = { attackSpeedMultiplier = -65, baseMultiplier = 14.82, levelRequirement = 90, cost = { Mana = 232, }, }, + [32] = { attackSpeedMultiplier = -65, baseMultiplier = 15.96, levelRequirement = 90, cost = { Mana = 248, }, }, + [33] = { attackSpeedMultiplier = -65, baseMultiplier = 17.2, levelRequirement = 90, cost = { Mana = 265, }, }, + [34] = { attackSpeedMultiplier = -65, baseMultiplier = 18.52, levelRequirement = 90, cost = { Mana = 283, }, }, + [35] = { attackSpeedMultiplier = -65, baseMultiplier = 19.96, levelRequirement = 90, cost = { Mana = 302, }, }, + [36] = { attackSpeedMultiplier = -65, baseMultiplier = 21.5, levelRequirement = 90, cost = { Mana = 322, }, }, + [37] = { attackSpeedMultiplier = -65, baseMultiplier = 23.16, levelRequirement = 90, cost = { Mana = 343, }, }, + [38] = { attackSpeedMultiplier = -65, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 365, }, }, + [39] = { attackSpeedMultiplier = -65, baseMultiplier = 26.88, levelRequirement = 90, cost = { Mana = 389, }, }, + [40] = { attackSpeedMultiplier = -65, baseMultiplier = 28.96, levelRequirement = 90, cost = { Mana = 414, }, }, }, statSets = { [1] = { @@ -12320,23 +13849,22 @@ skills["SunderPlayer"] = { melee = true, }, constantStats = { - { "broken_armour_consume_art_variation", 1 }, { "sunder_wave_radius_+_per_step", 2 }, { "sunder_wave_max_steps", 5 }, - { "sunder_shockwave_limit_per_cascade", 5 }, - { "total_attack_time_+_ms", 900 }, + { "sunder_shockwave_limit_per_cascade", 7 }, { "active_skill_area_of_effect_radius_+%_final", 0 }, { "melee_conditional_step_distance", 11 }, { "attack_maximum_action_distance_+", 24 }, - { "base_critical_strike_multiplier_+", 100 }, { "active_skill_base_area_of_effect_radius", 9 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, + { "base_skill_effect_duration", 6000 }, + { "sunder_armor_break_extra_magnitude", 20 }, }, stats = { "is_area_damage", - "consume_enemy_fully_broken_armour_to_guarantee_crit", "base_skill_show_average_damage_instead_of_dps", "cannot_break_armour", + "skill_effect_duration_is_sundered_armour_duration", }, levels = { [1] = { actorLevel = 1, }, @@ -12390,20 +13918,20 @@ skills["SunderPlayer"] = { area = true, }, constantStats = { - { "broken_armour_consume_art_variation", 1 }, - { "sunder_shockwave_limit_per_cascade", 5 }, + { "sunder_shockwave_limit_per_cascade", 7 }, { "active_skill_area_of_effect_radius_+%_final", 0 }, { "melee_conditional_step_distance", 11 }, { "attack_maximum_action_distance_+", 24 }, - { "base_critical_strike_multiplier_+", 100 }, { "active_skill_damage_+%_final_while_dual_wielding", -30 }, + { "base_skill_effect_duration", 6000 }, + { "sunder_armor_break_extra_magnitude", 20 }, { "active_skill_base_secondary_area_of_effect_radius", 12 }, }, stats = { "is_area_damage", - "consume_enemy_fully_broken_armour_to_guarantee_crit", "base_skill_show_average_damage_instead_of_dps", "cannot_break_armour", + "skill_effect_duration_is_sundered_armour_duration", "display_statset_hide_usage_stats", }, levels = { @@ -12456,55 +13984,55 @@ skills["SuperchargedSlamPlayer"] = { baseTypeName = "Supercharged Slam", color = 1, description = "Channel to charge up a heavy swing, drawing earth from the ground to enlarge your mace. Release to Slam the ground, dealing damage in an area around the impact, followed by Aftershocks dealing damage in a larger area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Channel] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.NoDualWield] = true, [SkillType.GainsStages] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Channel] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.NoDualWield] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Two Handed Mace"] = true, }, castTime = 1, qualityStats = { - { "channelled_slam_max_stages", 0.1 }, + { "channelled_slam_max_stages", 0.05 }, }, levels = { - [1] = { attackTime = 1000, baseMultiplier = 0.5, levelRequirement = 0, cost = { ManaPerMinute = 489, }, }, - [2] = { attackTime = 1000, baseMultiplier = 0.55, levelRequirement = 3, cost = { ManaPerMinute = 541, }, }, - [3] = { attackTime = 1000, baseMultiplier = 0.6, levelRequirement = 6, cost = { ManaPerMinute = 600, }, }, - [4] = { attackTime = 1000, baseMultiplier = 0.66, levelRequirement = 10, cost = { ManaPerMinute = 665, }, }, - [5] = { attackTime = 1000, baseMultiplier = 0.71, levelRequirement = 14, cost = { ManaPerMinute = 737, }, }, - [6] = { attackTime = 1000, baseMultiplier = 0.77, levelRequirement = 18, cost = { ManaPerMinute = 816, }, }, - [7] = { attackTime = 1000, baseMultiplier = 0.82, levelRequirement = 22, cost = { ManaPerMinute = 905, }, }, - [8] = { attackTime = 1000, baseMultiplier = 0.87, levelRequirement = 26, cost = { ManaPerMinute = 1003, }, }, - [9] = { attackTime = 1000, baseMultiplier = 0.91, levelRequirement = 31, cost = { ManaPerMinute = 1111, }, }, - [10] = { attackTime = 1000, baseMultiplier = 0.96, levelRequirement = 36, cost = { ManaPerMinute = 1231, }, }, - [11] = { attackTime = 1000, baseMultiplier = 1.01, levelRequirement = 41, cost = { ManaPerMinute = 1364, }, }, - [12] = { attackTime = 1000, baseMultiplier = 1.06, levelRequirement = 46, cost = { ManaPerMinute = 1512, }, }, - [13] = { attackTime = 1000, baseMultiplier = 1.11, levelRequirement = 52, cost = { ManaPerMinute = 1675, }, }, - [14] = { attackTime = 1000, baseMultiplier = 1.16, levelRequirement = 58, cost = { ManaPerMinute = 1857, }, }, - [15] = { attackTime = 1000, baseMultiplier = 1.22, levelRequirement = 64, cost = { ManaPerMinute = 2057, }, }, - [16] = { attackTime = 1000, baseMultiplier = 1.28, levelRequirement = 66, cost = { ManaPerMinute = 2280, }, }, - [17] = { attackTime = 1000, baseMultiplier = 1.35, levelRequirement = 72, cost = { ManaPerMinute = 2526, }, }, - [18] = { attackTime = 1000, baseMultiplier = 1.41, levelRequirement = 78, cost = { ManaPerMinute = 2799, }, }, - [19] = { attackTime = 1000, baseMultiplier = 1.49, levelRequirement = 84, cost = { ManaPerMinute = 3102, }, }, - [20] = { attackTime = 1000, baseMultiplier = 1.56, levelRequirement = 90, cost = { ManaPerMinute = 3438, }, }, - [21] = { attackTime = 1000, baseMultiplier = 1.64, levelRequirement = 90, cost = { ManaPerMinute = 3809, }, }, - [22] = { attackTime = 1000, baseMultiplier = 1.72, levelRequirement = 90, cost = { ManaPerMinute = 4221, }, }, - [23] = { attackTime = 1000, baseMultiplier = 1.81, levelRequirement = 90, cost = { ManaPerMinute = 4677, }, }, - [24] = { attackTime = 1000, baseMultiplier = 1.9, levelRequirement = 90, cost = { ManaPerMinute = 5183, }, }, - [25] = { attackTime = 1000, baseMultiplier = 1.99, levelRequirement = 90, cost = { ManaPerMinute = 5743, }, }, - [26] = { attackTime = 1000, baseMultiplier = 2.09, levelRequirement = 90, cost = { ManaPerMinute = 6364, }, }, - [27] = { attackTime = 1000, baseMultiplier = 2.19, levelRequirement = 90, cost = { ManaPerMinute = 7052, }, }, - [28] = { attackTime = 1000, baseMultiplier = 2.3, levelRequirement = 90, cost = { ManaPerMinute = 7815, }, }, - [29] = { attackTime = 1000, baseMultiplier = 2.42, levelRequirement = 90, cost = { ManaPerMinute = 8660, }, }, - [30] = { attackTime = 1000, baseMultiplier = 2.54, levelRequirement = 90, cost = { ManaPerMinute = 9596, }, }, - [31] = { attackTime = 1000, baseMultiplier = 2.67, levelRequirement = 90, cost = { ManaPerMinute = 10633, }, }, - [32] = { attackTime = 1000, baseMultiplier = 2.8, levelRequirement = 90, cost = { ManaPerMinute = 11783, }, }, - [33] = { attackTime = 1000, baseMultiplier = 2.94, levelRequirement = 90, cost = { ManaPerMinute = 13056, }, }, - [34] = { attackTime = 1000, baseMultiplier = 3.09, levelRequirement = 90, cost = { ManaPerMinute = 14468, }, }, - [35] = { attackTime = 1000, baseMultiplier = 3.24, levelRequirement = 90, cost = { ManaPerMinute = 16032, }, }, - [36] = { attackTime = 1000, baseMultiplier = 3.4, levelRequirement = 90, cost = { ManaPerMinute = 17765, }, }, - [37] = { attackTime = 1000, baseMultiplier = 3.57, levelRequirement = 90, cost = { ManaPerMinute = 19685, }, }, - [38] = { attackTime = 1000, baseMultiplier = 3.75, levelRequirement = 90, cost = { ManaPerMinute = 21813, }, }, - [39] = { attackTime = 1000, baseMultiplier = 3.94, levelRequirement = 90, cost = { ManaPerMinute = 24171, }, }, - [40] = { attackTime = 1000, baseMultiplier = 4.14, levelRequirement = 90, cost = { ManaPerMinute = 26784, }, }, + [1] = { attackTime = 1000, baseMultiplier = 0.7, levelRequirement = 0, cost = { ManaPerMinute = 474, }, }, + [2] = { attackTime = 1000, baseMultiplier = 0.77, levelRequirement = 3, cost = { ManaPerMinute = 548, }, }, + [3] = { attackTime = 1000, baseMultiplier = 0.85, levelRequirement = 6, cost = { ManaPerMinute = 628, }, }, + [4] = { attackTime = 1000, baseMultiplier = 0.93, levelRequirement = 10, cost = { ManaPerMinute = 713, }, }, + [5] = { attackTime = 1000, levelRequirement = 14, cost = { ManaPerMinute = 805, }, }, + [6] = { attackTime = 1000, baseMultiplier = 1.08, levelRequirement = 18, cost = { ManaPerMinute = 903, }, }, + [7] = { attackTime = 1000, baseMultiplier = 1.16, levelRequirement = 22, cost = { ManaPerMinute = 1008, }, }, + [8] = { attackTime = 1000, baseMultiplier = 1.24, levelRequirement = 26, cost = { ManaPerMinute = 1120, }, }, + [9] = { attackTime = 1000, baseMultiplier = 1.31, levelRequirement = 31, cost = { ManaPerMinute = 1239, }, }, + [10] = { attackTime = 1000, baseMultiplier = 1.38, levelRequirement = 36, cost = { ManaPerMinute = 1367, }, }, + [11] = { attackTime = 1000, baseMultiplier = 1.46, levelRequirement = 41, cost = { ManaPerMinute = 1503, }, }, + [12] = { attackTime = 1000, baseMultiplier = 1.55, levelRequirement = 46, cost = { ManaPerMinute = 1648, }, }, + [13] = { attackTime = 1000, baseMultiplier = 1.64, levelRequirement = 52, cost = { ManaPerMinute = 1803, }, }, + [14] = { attackTime = 1000, baseMultiplier = 1.74, levelRequirement = 58, cost = { ManaPerMinute = 1968, }, }, + [15] = { attackTime = 1000, baseMultiplier = 1.85, levelRequirement = 64, cost = { ManaPerMinute = 2143, }, }, + [16] = { attackTime = 1000, baseMultiplier = 1.97, levelRequirement = 66, cost = { ManaPerMinute = 2330, }, }, + [17] = { attackTime = 1000, baseMultiplier = 2.09, levelRequirement = 72, cost = { ManaPerMinute = 2529, }, }, + [18] = { attackTime = 1000, baseMultiplier = 2.23, levelRequirement = 78, cost = { ManaPerMinute = 2740, }, }, + [19] = { attackTime = 1000, baseMultiplier = 2.38, levelRequirement = 84, cost = { ManaPerMinute = 2964, }, }, + [20] = { attackTime = 1000, baseMultiplier = 2.54, levelRequirement = 90, cost = { ManaPerMinute = 3203, }, }, + [21] = { attackTime = 1000, baseMultiplier = 2.7, levelRequirement = 90, cost = { ManaPerMinute = 3456, }, }, + [22] = { attackTime = 1000, baseMultiplier = 2.88, levelRequirement = 90, cost = { ManaPerMinute = 3725, }, }, + [23] = { attackTime = 1000, baseMultiplier = 3.08, levelRequirement = 90, cost = { ManaPerMinute = 4011, }, }, + [24] = { attackTime = 1000, baseMultiplier = 3.28, levelRequirement = 90, cost = { ManaPerMinute = 4314, }, }, + [25] = { attackTime = 1000, baseMultiplier = 3.5, levelRequirement = 90, cost = { ManaPerMinute = 4635, }, }, + [26] = { attackTime = 1000, baseMultiplier = 3.73, levelRequirement = 90, cost = { ManaPerMinute = 4976, }, }, + [27] = { attackTime = 1000, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 5337, }, }, + [28] = { attackTime = 1000, baseMultiplier = 4.25, levelRequirement = 90, cost = { ManaPerMinute = 5719, }, }, + [29] = { attackTime = 1000, baseMultiplier = 4.53, levelRequirement = 90, cost = { ManaPerMinute = 6125, }, }, + [30] = { attackTime = 1000, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 6554, }, }, + [31] = { attackTime = 1000, baseMultiplier = 5.15, levelRequirement = 90, cost = { ManaPerMinute = 7009, }, }, + [32] = { attackTime = 1000, baseMultiplier = 5.5, levelRequirement = 90, cost = { ManaPerMinute = 7490, }, }, + [33] = { attackTime = 1000, baseMultiplier = 5.86, levelRequirement = 90, cost = { ManaPerMinute = 7999, }, }, + [34] = { attackTime = 1000, baseMultiplier = 6.25, levelRequirement = 90, cost = { ManaPerMinute = 8538, }, }, + [35] = { attackTime = 1000, baseMultiplier = 6.67, levelRequirement = 90, cost = { ManaPerMinute = 9108, }, }, + [36] = { attackTime = 1000, baseMultiplier = 7.12, levelRequirement = 90, cost = { ManaPerMinute = 9711, }, }, + [37] = { attackTime = 1000, baseMultiplier = 7.59, levelRequirement = 90, cost = { ManaPerMinute = 10348, }, }, + [38] = { attackTime = 1000, baseMultiplier = 8.09, levelRequirement = 90, cost = { ManaPerMinute = 11022, }, }, + [39] = { attackTime = 1000, baseMultiplier = 8.63, levelRequirement = 90, cost = { ManaPerMinute = 11734, }, }, + [40] = { attackTime = 1000, baseMultiplier = 9.21, levelRequirement = 90, cost = { ManaPerMinute = 12487, }, }, }, statSets = { [1] = { @@ -12518,7 +14046,7 @@ skills["SuperchargedSlamPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 16 }, - { "channelled_slam_damage_+%_final_per_stage", 60 }, + { "channelled_slam_damage_+%_final_per_stage", 40 }, { "channelled_slam_max_stages", 3 }, { "skill_animation_duration_multiplier_override", 3 }, { "channel_skill_end_animation_duration_override_ms", 1000 }, @@ -12578,69 +14106,294 @@ skills["SuperchargedSlamPlayer"] = { incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "channelled_slam_statset_1", baseFlags = { - attack = true, - area = true, - melee = true, + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 16 }, + { "channelled_slam_damage_+%_final_per_stage", 40 }, + { "channelled_slam_max_stages", 3 }, + { "skill_animation_duration_multiplier_override", 3 }, + { "channel_skill_end_animation_duration_override_ms", 1000 }, + { "base_minimum_channel_time_ms", 1000 }, + { "active_skill_base_area_of_effect_radius", 12 }, + { "aftershock_radius_+_per_previous_aftershock", 4 }, + { "aftershock_delay_ms", 250 }, + }, + stats = { + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "channel_start_lock_cancelling_scales_with_attack_speed", + "quality_display_supercharged_slam_is_gem", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaCastLightningSpellOnHitPlayer"] = { + name = "Thundergod's Wrath", + baseTypeName = "Thundergod's Wrath", + color = 1, + description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Lightning spells on reaching maximum Energy.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + castTime = 0, + qualityStats = { + { "energy_generated_+%", 0.75 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Thundergod's Wrath", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "cast_lightning_spell_on_hit", + baseFlags = { + }, + constantStats = { + { "cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "energy_generated_+%", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", + "base_deal_no_damage", + }, + levels = { + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportMetaCastLightningSpellOnHitPlayer"] = { + name = "SupportMetaCastLightningSpellOnHitPlayer", + hidden = true, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.Lightning, SkillType.AND, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, + excludeSkillTypes = { SkillType.SupportedByHourglass, }, + isTrigger = true, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMetaCastLightningSpellOnHitPlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { }, constantStats = { - { "active_skill_base_area_of_effect_radius", 16 }, - { "channelled_slam_damage_+%_final_per_stage", 60 }, - { "channelled_slam_max_stages", 3 }, - { "skill_animation_duration_multiplier_override", 3 }, - { "channel_skill_end_animation_duration_override_ms", 1000 }, - { "base_minimum_channel_time_ms", 1000 }, - { "active_skill_base_area_of_effect_radius", 12 }, - { "aftershock_radius_+_per_previous_aftershock", 4 }, - { "aftershock_delay_ms", 250 }, + { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, }, stats = { - "is_area_damage", - "base_skill_show_average_damage_instead_of_dps", - "channel_start_lock_cancelling_scales_with_attack_speed", - "quality_display_supercharged_slam_is_gem", - "display_statset_hide_usage_stats", + "damage_+%", + "triggered_by_generic_ongoing_trigger", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "no_cost", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 20, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 30, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 40, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 50, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 60, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 70, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 80, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 90, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 110, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 120, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 130, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 140, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 150, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 160, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 170, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 180, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 190, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 200, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 210, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 220, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 230, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 240, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 250, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 260, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 270, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 280, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 290, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 300, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 310, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 320, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 330, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 340, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 350, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 360, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 370, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 380, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 390, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 400, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -12758,11 +14511,201 @@ skills["TimeOfNeedPlayer"] = { }, } } +skills["ValakosChargePlayer"] = { + name = "Valako's Charge", + baseTypeName = "Valako's Charge", + color = 1, + description = "While active, taking Lightning damage builds up charge on you. Reaching full charge expends all charge to Trigger this skill, creating a Chaining lightning bolt that arcs to nearby enemies.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggered] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 0, + qualityStats = { + { "number_of_chains", 0.1 }, + }, + levels = { + [1] = { critChance = 9, storedUses = 1, levelRequirement = 0, cooldown = 1, }, + [2] = { critChance = 9, storedUses = 1, levelRequirement = 3, cooldown = 1, }, + [3] = { critChance = 9, storedUses = 1, levelRequirement = 6, cooldown = 1, }, + [4] = { critChance = 9, storedUses = 1, levelRequirement = 10, cooldown = 1, }, + [5] = { critChance = 9, storedUses = 1, levelRequirement = 14, cooldown = 1, }, + [6] = { critChance = 9, storedUses = 1, levelRequirement = 18, cooldown = 1, }, + [7] = { critChance = 9, storedUses = 1, levelRequirement = 22, cooldown = 1, }, + [8] = { critChance = 9, storedUses = 1, levelRequirement = 26, cooldown = 1, }, + [9] = { critChance = 9, storedUses = 1, levelRequirement = 31, cooldown = 1, }, + [10] = { critChance = 9, storedUses = 1, levelRequirement = 36, cooldown = 1, }, + [11] = { critChance = 9, storedUses = 1, levelRequirement = 41, cooldown = 1, }, + [12] = { critChance = 9, storedUses = 1, levelRequirement = 46, cooldown = 1, }, + [13] = { critChance = 9, storedUses = 1, levelRequirement = 52, cooldown = 1, }, + [14] = { critChance = 9, storedUses = 1, levelRequirement = 58, cooldown = 1, }, + [15] = { critChance = 9, storedUses = 1, levelRequirement = 64, cooldown = 1, }, + [16] = { critChance = 9, storedUses = 1, levelRequirement = 66, cooldown = 1, }, + [17] = { critChance = 9, storedUses = 1, levelRequirement = 72, cooldown = 1, }, + [18] = { critChance = 9, storedUses = 1, levelRequirement = 78, cooldown = 1, }, + [19] = { critChance = 9, storedUses = 1, levelRequirement = 84, cooldown = 1, }, + [20] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [21] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [22] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [23] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [24] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [25] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [26] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [27] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [28] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [29] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [30] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [31] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [32] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [33] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [34] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [35] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [36] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [37] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [38] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [39] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + [40] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, }, + }, + statSets = { + [1] = { + label = "Buff", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "valakos_luck", + baseFlags = { + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 30 }, + { "cast_on_damage_taken_%", 100 }, + }, + stats = { + "cast_on_damage_taken_threshold", + "cast_on_damage_taken_only_tracks_lightning", + "should_have_cast_when_damage_taken_charge_buff", + }, + notMinionStat = { + "cast_on_damage_taken_threshold", + }, + levels = { + [1] = { 17, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 26, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 37, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 49, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 63, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 79, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 97, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 117, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 140, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 166, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 194, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 226, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 262, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 301, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 344, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 392, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 443, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 500, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 561, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 628, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 701, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 777, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 857, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 940, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 1027, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 1118, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 1212, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 1310, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 1411, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 1516, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 1625, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 1737, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 1853, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 1972, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 2095, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 2222, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 2351, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 2485, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 2622, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 2763, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Bolt", + baseEffectiveness = 4.4000000953674, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "valakos_luck", + baseFlags = { + spell = true, + chaining = true, + }, + constantStats = { + { "arc_chain_distance", 40 }, + { "electrocute_threshold_+%_final", 100 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "cast_on_damage_taken_threshold", + "number_of_chains", + "disable_visual_hit_effect", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "base_lightning_damage_can_electrocute", + "never_shock", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "cast_on_damage_taken_threshold", + }, + levels = { + [1] = { 2, 32, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 2, 44, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 60, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 77, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 98, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6, 120, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 8, 146, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 174, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 11, 206, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 13, 242, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 15, 283, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 17, 328, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 20, 379, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 23, 437, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 26, 501, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 30, 574, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 35, 656, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 39, 749, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 45, 853, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 51, 971, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 58, 1104, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 66, 1255, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 75, 1426, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 85, 1619, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 97, 1839, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 110, 2088, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 125, 2371, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 142, 2694, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 161, 3061, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 183, 3479, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 208, 3957, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 237, 4503, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 270, 5128, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 308, 5843, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 351, 6662, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 400, 7603, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 457, 8684, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 523, 9928, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 598, 11360, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 685, 13012, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["VolcanicFissurePlayer"] = { name = "Volcanic Fissure", baseTypeName = "Volcanic Fissure", color = 1, - description = "Slam the ground, creating a winding fissure that deals damage as it travels and remains for a duration. Using a different Slam on a fissure will cause an Aftershock, which spreads to all connected fissures.", + description = "Slam the ground, creating a branching Molten Fissure that deals damage as it travels and remains for a duration. Using a different Slam on a Molten Fissure creates a spreading Aftershock.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -12770,49 +14713,49 @@ skills["VolcanicFissurePlayer"] = { }, castTime = 1, qualityStats = { - { "base_skill_effect_duration", 200 }, + { "slam_aftershock_chance_%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 7, }, }, - [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 10, cost = { Mana = 8, }, }, - [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 9, }, }, - [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.7, levelRequirement = 18, cost = { Mana = 10, }, }, - [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.75, levelRequirement = 22, cost = { Mana = 11, }, }, - [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 26, cost = { Mana = 13, }, }, - [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 31, cost = { Mana = 14, }, }, - [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.89, levelRequirement = 36, cost = { Mana = 16, }, }, - [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.94, levelRequirement = 41, cost = { Mana = 17, }, }, - [12] = { attackSpeedMultiplier = -20, levelRequirement = 46, cost = { Mana = 19, }, }, - [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 52, cost = { Mana = 21, }, }, - [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 58, cost = { Mana = 24, }, }, - [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.19, levelRequirement = 64, cost = { Mana = 26, }, }, - [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 66, cost = { Mana = 29, }, }, - [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 33, }, }, - [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 78, cost = { Mana = 36, }, }, - [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.53, levelRequirement = 84, cost = { Mana = 40, }, }, - [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.63, levelRequirement = 90, cost = { Mana = 44, }, }, - [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.74, levelRequirement = 90, cost = { Mana = 49, }, }, - [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 55, }, }, - [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.98, levelRequirement = 90, cost = { Mana = 61, }, }, - [24] = { attackSpeedMultiplier = -20, baseMultiplier = 2.11, levelRequirement = 90, cost = { Mana = 67, }, }, - [25] = { attackSpeedMultiplier = -20, baseMultiplier = 2.25, levelRequirement = 90, cost = { Mana = 75, }, }, - [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 83, }, }, - [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 92, }, }, - [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 102, }, }, - [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 113, }, }, - [30] = { attackSpeedMultiplier = -20, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 125, }, }, - [31] = { attackSpeedMultiplier = -20, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 139, }, }, - [32] = { attackSpeedMultiplier = -20, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 154, }, }, - [33] = { attackSpeedMultiplier = -20, baseMultiplier = 3.77, levelRequirement = 90, cost = { Mana = 170, }, }, - [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.02, levelRequirement = 90, cost = { Mana = 189, }, }, - [35] = { attackSpeedMultiplier = -20, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 209, }, }, - [36] = { attackSpeedMultiplier = -20, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 232, }, }, - [37] = { attackSpeedMultiplier = -20, baseMultiplier = 4.88, levelRequirement = 90, cost = { Mana = 257, }, }, - [38] = { attackSpeedMultiplier = -20, baseMultiplier = 5.2, levelRequirement = 90, cost = { Mana = 285, }, }, - [39] = { attackSpeedMultiplier = -20, baseMultiplier = 5.55, levelRequirement = 90, cost = { Mana = 316, }, }, - [40] = { attackSpeedMultiplier = -20, baseMultiplier = 5.92, levelRequirement = 90, cost = { Mana = 350, }, }, + [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.83, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 22, cost = { Mana = 13, }, }, + [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.93, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 31, cost = { Mana = 16, }, }, + [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.09, levelRequirement = 46, cost = { Mana = 21, }, }, + [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.13, levelRequirement = 52, cost = { Mana = 23, }, }, + [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 28, }, }, + [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 66, cost = { Mana = 30, }, }, + [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.31, levelRequirement = 72, cost = { Mana = 33, }, }, + [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 78, cost = { Mana = 35, }, }, + [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.4, levelRequirement = 84, cost = { Mana = 38, }, }, + [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 41, }, }, + [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 45, }, }, + [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 48, }, }, + [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 52, }, }, + [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.65, levelRequirement = 90, cost = { Mana = 56, }, }, + [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 60, }, }, + [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 65, }, }, + [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.82, levelRequirement = 90, cost = { Mana = 69, }, }, + [28] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 74, }, }, + [29] = { attackSpeedMultiplier = -20, baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 80, }, }, + [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.01, levelRequirement = 90, cost = { Mana = 85, }, }, + [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.08, levelRequirement = 90, cost = { Mana = 91, }, }, + [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.15, levelRequirement = 90, cost = { Mana = 98, }, }, + [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.22, levelRequirement = 90, cost = { Mana = 104, }, }, + [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 111, }, }, + [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 119, }, }, + [36] = { attackSpeedMultiplier = -20, baseMultiplier = 2.44, levelRequirement = 90, cost = { Mana = 127, }, }, + [37] = { attackSpeedMultiplier = -20, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 135, }, }, + [38] = { attackSpeedMultiplier = -20, baseMultiplier = 2.61, levelRequirement = 90, cost = { Mana = 144, }, }, + [39] = { attackSpeedMultiplier = -20, baseMultiplier = 2.7, levelRequirement = 90, cost = { Mana = 153, }, }, + [40] = { attackSpeedMultiplier = -20, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 163, }, }, }, statSets = { [1] = { @@ -12827,10 +14770,11 @@ skills["VolcanicFissurePlayer"] = { }, constantStats = { { "base_skill_effect_duration", 12000 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, { "melee_conditional_step_distance", 8 }, { "active_skill_attack_speed_+%_final_while_dual_wielding", -30 }, { "volcanic_fissure_base_maximum_number_of_fissures", 8 }, + { "number_of_branching_fissures", 2 }, }, stats = { "is_area_damage", @@ -12885,8 +14829,8 @@ skills["ShockGrenadePlayer"] = { name = "Voltaic Grenade", baseTypeName = "Voltaic Grenade", color = 1, - description = "Fire a bouncing Grenade that discharges an Electrocuting Lightning blast when its fuse expires.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + description = "Fire a bouncing Grenade that discharges an Electrocuting Lightning blast when its fuse expires, causing all Lightning Hits against enemies to contribute to Electrocution buildup for a duration.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -12895,46 +14839,46 @@ skills["ShockGrenadePlayer"] = { { "base_cooldown_speed_+%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.75, cooldown = 5, levelRequirement = 0, cost = { Mana = 11, }, }, - [2] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.93, cooldown = 5, levelRequirement = 3, cost = { Mana = 12, }, }, - [3] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.13, cooldown = 5, levelRequirement = 6, cost = { Mana = 13, }, }, - [4] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.34, cooldown = 5, levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.54, cooldown = 5, levelRequirement = 14, cost = { Mana = 16, }, }, - [6] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.75, cooldown = 5, levelRequirement = 18, cost = { Mana = 18, }, }, - [7] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.97, cooldown = 5, levelRequirement = 22, cost = { Mana = 20, }, }, - [8] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.18, cooldown = 5, levelRequirement = 26, cost = { Mana = 23, }, }, - [9] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.38, cooldown = 5, levelRequirement = 31, cost = { Mana = 25, }, }, - [10] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.59, cooldown = 5, levelRequirement = 36, cost = { Mana = 28, }, }, - [11] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.83, cooldown = 5, levelRequirement = 41, cost = { Mana = 31, }, }, - [12] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 46, cost = { Mana = 34, }, }, - [13] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.36, cooldown = 5, levelRequirement = 52, cost = { Mana = 38, }, }, - [14] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.66, cooldown = 5, levelRequirement = 58, cost = { Mana = 42, }, }, - [15] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.99, cooldown = 5, levelRequirement = 64, cost = { Mana = 47, }, }, - [16] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.35, cooldown = 5, levelRequirement = 66, cost = { Mana = 52, }, }, - [17] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.74, cooldown = 5, levelRequirement = 72, cost = { Mana = 58, }, }, - [18] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.16, cooldown = 5, levelRequirement = 78, cost = { Mana = 64, }, }, - [19] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.63, cooldown = 5, levelRequirement = 84, cost = { Mana = 71, }, }, - [20] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.14, cooldown = 5, levelRequirement = 90, cost = { Mana = 79, }, }, - [21] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.7, cooldown = 5, levelRequirement = 90, cost = { Mana = 87, }, }, - [22] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 8.29, cooldown = 5, levelRequirement = 90, cost = { Mana = 97, }, }, - [23] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 8.93, cooldown = 5, levelRequirement = 90, cost = { Mana = 107, }, }, - [24] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 9.62, cooldown = 5, levelRequirement = 90, cost = { Mana = 119, }, }, - [25] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 10.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 132, }, }, - [26] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 11.17, cooldown = 5, levelRequirement = 90, cost = { Mana = 146, }, }, - [27] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 12.03, cooldown = 5, levelRequirement = 90, cost = { Mana = 162, }, }, - [28] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 12.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 179, }, }, - [29] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 13.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 199, }, }, - [30] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 15.04, cooldown = 5, levelRequirement = 90, cost = { Mana = 220, }, }, - [31] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 16.21, cooldown = 5, levelRequirement = 90, cost = { Mana = 244, }, }, - [32] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 17.46, cooldown = 5, levelRequirement = 90, cost = { Mana = 271, }, }, - [33] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 18.81, cooldown = 5, levelRequirement = 90, cost = { Mana = 300, }, }, - [34] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 20.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 332, }, }, - [35] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 21.83, cooldown = 5, levelRequirement = 90, cost = { Mana = 368, }, }, - [36] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 23.51, cooldown = 5, levelRequirement = 90, cost = { Mana = 408, }, }, - [37] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 25.33, cooldown = 5, levelRequirement = 90, cost = { Mana = 452, }, }, - [38] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 27.29, cooldown = 5, levelRequirement = 90, cost = { Mana = 501, }, }, - [39] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 29.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 556, }, }, - [40] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 31.67, cooldown = 5, levelRequirement = 90, cost = { Mana = 616, }, }, + [1] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 0.8, cooldown = 5, levelRequirement = 0, cost = { Mana = 10, }, }, + [2] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 0.88, cooldown = 5, levelRequirement = 3, cost = { Mana = 12, }, }, + [3] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 0.97, cooldown = 5, levelRequirement = 6, cost = { Mana = 14, }, }, + [4] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.07, cooldown = 5, levelRequirement = 10, cost = { Mana = 16, }, }, + [5] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.16, cooldown = 5, levelRequirement = 14, cost = { Mana = 18, }, }, + [6] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.26, cooldown = 5, levelRequirement = 18, cost = { Mana = 20, }, }, + [7] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.36, cooldown = 5, levelRequirement = 22, cost = { Mana = 23, }, }, + [8] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.45, cooldown = 5, levelRequirement = 26, cost = { Mana = 25, }, }, + [9] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.54, cooldown = 5, levelRequirement = 31, cost = { Mana = 28, }, }, + [10] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.64, cooldown = 5, levelRequirement = 36, cost = { Mana = 31, }, }, + [11] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.75, cooldown = 5, levelRequirement = 41, cost = { Mana = 34, }, }, + [12] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.87, cooldown = 5, levelRequirement = 46, cost = { Mana = 37, }, }, + [13] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.99, cooldown = 5, levelRequirement = 52, cost = { Mana = 41, }, }, + [14] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.13, cooldown = 5, levelRequirement = 58, cost = { Mana = 45, }, }, + [15] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.28, cooldown = 5, levelRequirement = 64, cost = { Mana = 49, }, }, + [16] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.44, cooldown = 5, levelRequirement = 66, cost = { Mana = 53, }, }, + [17] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.62, cooldown = 5, levelRequirement = 72, cost = { Mana = 58, }, }, + [18] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.82, cooldown = 5, levelRequirement = 78, cost = { Mana = 63, }, }, + [19] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.03, cooldown = 5, levelRequirement = 84, cost = { Mana = 68, }, }, + [20] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.27, cooldown = 5, levelRequirement = 90, cost = { Mana = 73, }, }, + [21] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.52, cooldown = 5, levelRequirement = 90, cost = { Mana = 79, }, }, + [22] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.79, cooldown = 5, levelRequirement = 90, cost = { Mana = 85, }, }, + [23] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 90, cost = { Mana = 92, }, }, + [24] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 99, }, }, + [25] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 106, }, }, + [26] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.11, cooldown = 5, levelRequirement = 90, cost = { Mana = 114, }, }, + [27] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.5, cooldown = 5, levelRequirement = 90, cost = { Mana = 122, }, }, + [28] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.93, cooldown = 5, levelRequirement = 90, cost = { Mana = 131, }, }, + [29] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.38, cooldown = 5, levelRequirement = 90, cost = { Mana = 140, }, }, + [30] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.88, cooldown = 5, levelRequirement = 90, cost = { Mana = 150, }, }, + [31] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.41, cooldown = 5, levelRequirement = 90, cost = { Mana = 161, }, }, + [32] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 172, }, }, + [33] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 8.6, cooldown = 5, levelRequirement = 90, cost = { Mana = 184, }, }, + [34] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 9.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 196, }, }, + [35] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 9.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 209, }, }, + [36] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 10.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 223, }, }, + [37] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 11.58, cooldown = 5, levelRequirement = 90, cost = { Mana = 238, }, }, + [38] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 12.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 253, }, }, + [39] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 13.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 270, }, }, + [40] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 14.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 287, }, }, }, statSets = { [1] = { @@ -12953,13 +14897,14 @@ skills["ShockGrenadePlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "fixed_projectile_spread", 30 }, - { "active_skill_electrocutes_as_though_dealt_damage_+%_final", 50 }, { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "base_secondary_skill_effect_duration", 6000 }, }, stats = { "active_skill_base_area_of_effect_radius", + "active_skill_electrocutes_as_though_dealt_damage_+%_final", "base_is_projectile", "projectile_ballistic_angle_from_reference_event", "projectile_uses_contact_position", @@ -12973,46 +14918,46 @@ skills["ShockGrenadePlayer"] = { "projectiles_cannot_fork", }, levels = { - [1] = { 20, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 20, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 20, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 21, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 21, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 21, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 22, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 22, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 22, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 23, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 23, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 23, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 23, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 23, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 24, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 24, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 24, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 24, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 24, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 25, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 25, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 25, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 25, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 25, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 26, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 26, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 26, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 26, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 26, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 26, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 27, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 27, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 27, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 27, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 27, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 27, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 27, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 20, 150, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 20, 160, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 20, 170, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 21, 180, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 21, 190, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 200, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 210, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, 220, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 22, 230, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 22, 240, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 22, 250, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 22, 260, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 23, 270, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 23, 280, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 23, 290, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 23, 300, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 23, 310, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 24, 320, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 24, 330, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 24, 340, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 24, 350, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 24, 360, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 25, 370, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 25, 380, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 25, 390, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 25, 400, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 25, 410, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 26, 420, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 26, 430, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 26, 440, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 26, 445, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 26, 450, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 26, 455, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 27, 460, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 27, 465, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 27, 470, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 27, 475, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 27, 480, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 27, 485, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 27, 490, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -13021,8 +14966,8 @@ skills["WarBannerReservationPlayer"] = { name = "War Banner", baseTypeName = "War Banner", color = 1, - description = "While active, killing enemies with Attacks or standing near a Unique enemy generates Valour. Using this Skill consumes its Valour to place an inspiring Banner with an Aura that grants you and nearby Allies Attack damage and Accuracy while the Banner lasts. The Banner cannot gain Valour while placed, and you cannot place a Banner while you already have a Banner placed.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, }, + description = "While active, Attacking enemies builds Glory. When you have maximum Glory, you can place an inspiring Banner for a duration with an Aura that grants you and nearby Allies Attack damage, Attack speed and Accuracy.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -13068,14 +15013,68 @@ skills["WarBannerReservationPlayer"] = { [39] = { spiritReservationFlat = 30, levelRequirement = 90, }, [40] = { spiritReservationFlat = 30, levelRequirement = 90, }, }, + statSets = { + [1] = { + label = "War Banner", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } } skills["WarBannerPlayer"] = { name = "War Banner", hidden = true, - skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, }, - castTime = 1, + skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, }, + castTime = 0.5, qualityStats = { - { "banner_aura_magnitude_+%_final_per_resource", 0.1 }, + { "base_reservation_efficiency_+%", 0.5 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -13137,63 +15136,65 @@ skills["WarBannerPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 45 }, - { "banner_aura_magnitude_+%_final_per_resource", 10 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_requires_X_glory", 200 }, + { "active_skill_generates_mp_%_glory_per_attack_hit", 100 }, }, stats = { "base_skill_effect_duration", "base_skill_buff_attack_damage_+%_final_to_apply", "base_skill_buff_banner_accuracy_+%_to_apply", + "base_skill_buff_banner_attack_speed_+%_to_apply", "can_perform_skill_while_moving", "base_deal_no_damage", - "quality_display_banner_buff_effect_+%_final_per_resource_is_gem", + "active_skill_can_generate_glory_even_if_an_instance_of_this_skill_is_active", }, notMinionStat = { "base_skill_effect_duration", }, levels = { - [1] = { 6000, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6050, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6100, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6150, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6200, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6250, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6300, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6350, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6400, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6450, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6500, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6550, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6600, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 6650, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 6700, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 6750, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 6800, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 6850, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 6900, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 6950, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7000, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7050, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7100, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7150, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7200, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 7250, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7300, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7350, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 7400, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 7450, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 7500, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 7550, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 7600, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 7650, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 7700, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 7750, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 7800, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 7850, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 7900, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 7950, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 7000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 7200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 7400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 7800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 8000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 8200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 8400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 8600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 8800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 9000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 9200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 9400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 9600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 9800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 10000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 10200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 10400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 10600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 10800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 11000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 11200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 11400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 11600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 11800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 11900, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 12000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 12100, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 12200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 12300, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 12400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 12500, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 12600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 12700, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 12800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua index 984e3c5bce..d941669045 100644 --- a/src/Data/Skills/minion.lua +++ b/src/Data/Skills/minion.lua @@ -306,7 +306,7 @@ skills["ArcSkeletonMageMinion"] = { name = "Arc", hidden = true, description = "An arc of Lightning stretches from the caster to a targeted enemy and Chains on to other nearby enemies. Shocked enemies Hit release damaging pulses.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, castTime = 1.25, qualityStats = { }, @@ -398,7 +398,7 @@ skills["DeathStormSkeletonStormMageMinion"] = { skills["FrostBoltSkeletonMageMinion"] = { name = "Ice Shard", hidden = true, - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, }, castTime = 1.25, qualityStats = { }, @@ -1055,4 +1055,144 @@ skills["GAAnimateWeaponQuarterstaffSweep"] = { }, }, } +} +skills["RavenousSwarmAttack"] = { + name = "Attack", + hidden = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Chaos] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Attack", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + melee = true, + area = true, + }, + stats = { + "global_poison_on_hit", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["LivingLightningZap"] = { + name = "Zap", + hidden = true, + description = "Teleport to a target, dealing Lightning Attack Damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Melee] = true, [SkillType.CannotTerrainChain] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { critChance = 9, storedUses = 1, levelRequirement = 0, cooldown = 0.25, }, + }, + statSets = { + [1] = { + label = "Zap", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + melee = true, + chaining = true, + }, + constantStats = { + { "number_of_chains", 3 }, + { "living_lightning_damage_+%_final_per_additional_hit", -30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } } \ No newline at end of file diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index 0382808225..1761ae590b 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -6,6 +6,229 @@ -- local skills, mod, flag, skill = ... +skills["AcidicConcoctionPlayer"] = { + name = "Acidic Concoction", + baseTypeName = "Acidic Concoction", + fromTree = true, + color = 4, + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area. The thrown flask Consumes Poison on Hit to cause an acidic burst.", + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, }, + weaponTypes = { + ["None"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, + }, + levels = { + [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Flask", + baseEffectiveness = 2.2999999523163, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "poisonous_concoction", + baseFlags = { + attack = true, + projectile = true, + unarmed = true, + area = true, + }, + constantStats = { + { "flask_throw_base_charges_used", 5 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "throw_flask_effects_type", 4 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, + }, + stats = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + "base_is_projectile", + "projectile_behaviour_only_explode", + "can_perform_skill_while_moving", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", + "base_consume_enemy_poison_on_hit", + "cannot_poison", + }, + notMinionStat = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + }, + levels = { + [1] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 76, 114, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 86, 129, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 97, 145, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 108, 161, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 131, 196, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 143, 214, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 156, 233, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 182, 273, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 211, 316, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 226, 338, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 241, 361, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 257, 385, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 273, 409, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 289, 434, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 324, 486, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 342, 513, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 360, 541, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 379, 569, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 399, 598, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 418, 628, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 439, 658, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 459, 689, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 480, 720, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 524, 785, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 546, 819, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 569, 853, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Acidic Burst", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "poisonous_concoction", + statMap = { + ["poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed"] = { + mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", actor = "enemy", var = "PoisonStacks" }), + }, + ["active_skill_base_secondary_area_of_effect_radius"] = { + skill("radius", nil), + }, + }, + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "base_number_of_projectiles", 1 }, + { "throw_flask_effects_type", 4 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, + { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "poison_concoction_poison_burst_physical_damage_equal_to_%_of_strongest_active_poison", 150 }, + { "poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed", 30 }, + }, + stats = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + "base_is_projectile", + "projectile_behaviour_only_explode", + "can_perform_skill_while_moving", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", + "base_consume_enemy_poison_on_hit", + "cannot_poison", + }, + notMinionStat = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + }, + levels = { + [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["AncestralSpiritsPlayer"] = { name = "Ancestral Spirits", baseTypeName = "Ancestral Spirits", @@ -71,13 +294,22 @@ skills["AncestralSpiritsPlayer"] = { label = "Ancestral Spirits", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, + }, baseFlags = { spell = true, minion = true, }, constantStats = { - { "minion_1%_damage_+%_per_X_player_strength", 3 }, - { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 }, + { "minion_1%_damage_+%_per_X_player_strength", 1 }, + { "minion_1%_attack_speed_+%_per_X_player_dexterity", 3 }, }, stats = { "display_modifiers_to_totem_life_effect_these_minions", @@ -134,14 +366,14 @@ skills["BleedingConcoctionPlayer"] = { baseTypeName = "Bleeding Concoction", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Physical attack damage in an area. Bleeding inflicted by this skill has higher Magnitude.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, }, + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area and Aggravating Bleeding on Enemies hit.", + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, }, castTime = 1, qualityStats = { - { "faster_bleed_%", 1 }, + { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, @@ -190,12 +422,7 @@ skills["BleedingConcoctionPlayer"] = { label = "Bleeding Concoction", baseEffectiveness = 4.1999998092651, incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "throw_flask_bleed", - statMap = { - ["flask_throw_bleed_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed), - }, - }, + statDescriptionScope = "bleeding_concoction", baseFlags = { attack = true, projectile = true, @@ -205,14 +432,14 @@ skills["BleedingConcoctionPlayer"] = { constantStats = { { "flask_throw_base_charges_used", 5 }, { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 15 }, - { "flask_throw_bleed_effect_+%_final", 200 }, + { "active_skill_base_area_of_effect_radius", 18 }, { "throw_flask_effects_type", 3 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_base_weapon_attack_duration_ms", 714 }, { "base_chance_to_inflict_bleeding_%", 100 }, + { "base_aggravate_bleeding_on_attack_hit_chance_%", 100 }, }, stats = { "main_hand_weapon_minimum_physical_damage", @@ -388,261 +615,85 @@ skills["BloodBoilPlayer"] = { }, } } -skills["MetaCastOnCharmUsePlayer"] = { - name = "Cast on Charm Use", - baseTypeName = "Cast on Charm Use", +skills["MeleeBowPlayer"] = { + name = "Bow Shot", + baseTypeName = "Bow Shot", fromItem = true, color = 4, - description = "While active, gains Energy when one of your Charms is used and triggers socketed Spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, - castTime = 0, + description = "Fire an arrow with your Bow.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Bow"] = true, + }, + castTime = 1, qualityStats = { - { "energy_generated_+%", 0.75 }, }, levels = { [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, }, statSets = { [1] = { - label = "Cast on Charm Use", + label = "Bow Shot", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { + attack = true, + projectile = true, }, constantStats = { - { "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 }, - { "skill_desired_amount_override", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", - }, - levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Cast on Charm Use", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - }, - constantStats = { - { "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 }, - { "skill_desired_amount_override", 1 }, - { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, - }, - stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", - "triggered_by_generic_ongoing_trigger", - "skill_cannot_generate_energy", - }, - levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["MeleeBowPlayer"] = { - name = "Bow Shot", - baseTypeName = "Bow Shot", - fromItem = true, - color = 4, - description = "Fire an arrow with your Bow.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Bow] = true, }, - weaponTypes = { - ["Bow"] = true, - }, - castTime = 1, - qualityStats = { - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Bow Shot", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - attack = true, - projectile = true, - }, - constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - }, - stats = { - "base_is_projectile", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "skill_can_fire_arrows", - "can_perform_skill_while_moving", - "should_use_additive_aiming_animation", - "has_modular_projectiles_enabled", + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "skill_can_fire_arrows", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "has_modular_projectiles_enabled", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -689,93 +740,189 @@ skills["MeleeBowPlayer"] = { }, } } -skills["MeleeCrossbowPlayer"] = { - name = "Crossbow Shot", - baseTypeName = "Crossbow Shot", +skills["ExplodingPoisonToadPlayer"] = { + name = "Bursting Fen Toad", + baseTypeName = "Bursting Fen Toad", fromItem = true, color = 4, - description = "Fire a bolt from your crossbow.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, }, - weaponTypes = { - ["Crossbow"] = true, - }, + description = "A Poisonous Toad leaps towards enemies and explodes, dealing damage in an area and inflicting Poison.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.UseGlobalStats] = true, }, castTime = 1, qualityStats = { + { "trigger_toad_spawn_chance_%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.43, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.54, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.66, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.77, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.87, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.98, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.09, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.22, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.35, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.49, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.65, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.81, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.99, levelRequirement = 72, }, - [18] = { baseMultiplier = 3.19, levelRequirement = 78, }, - [19] = { baseMultiplier = 3.4, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.62, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.86, levelRequirement = 90, }, - [22] = { baseMultiplier = 4.12, levelRequirement = 90, }, - [23] = { baseMultiplier = 4.4, levelRequirement = 90, }, - [24] = { baseMultiplier = 4.69, levelRequirement = 90, }, - [25] = { baseMultiplier = 5, levelRequirement = 90, }, - [26] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [27] = { baseMultiplier = 5.69, levelRequirement = 90, }, - [28] = { baseMultiplier = 6.07, levelRequirement = 90, }, - [29] = { baseMultiplier = 6.47, levelRequirement = 90, }, - [30] = { baseMultiplier = 6.9, levelRequirement = 90, }, - [31] = { baseMultiplier = 7.36, levelRequirement = 90, }, - [32] = { baseMultiplier = 7.85, levelRequirement = 90, }, - [33] = { baseMultiplier = 8.38, levelRequirement = 90, }, - [34] = { baseMultiplier = 8.93, levelRequirement = 90, }, - [35] = { baseMultiplier = 9.53, levelRequirement = 90, }, - [36] = { baseMultiplier = 10.16, levelRequirement = 90, }, - [37] = { baseMultiplier = 10.84, levelRequirement = 90, }, - [38] = { baseMultiplier = 11.56, levelRequirement = 90, }, - [39] = { baseMultiplier = 12.33, levelRequirement = 90, }, - [40] = { baseMultiplier = 13.16, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Crossbow Shot", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - attack = true, - area = true, - projectile = true, - }, - constantStats = { - { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "crossbow_barrage_attack_time_ratio_%", 10 }, - { "crossbow_barrage_recoil_per_shot", 2 }, - { "crossbow_barrage_total_recoil_buff_count", 8 }, - { "crossbow_barrage_debuff_duration_ms", 300 }, - { "base_knockback_distance", 0 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - }, - stats = { - "base_is_projectile", - "has_modular_projectiles_enabled", - "action_requires_aiming_stance", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "projectiles_crossbow_barrage", - "cannot_cancel_skill_before_contact_point", - "disable_visual_hit_effect", - "can_perform_skill_while_moving", + [1] = { critChance = 5, baseMultiplier = 2.25, levelRequirement = 0, }, + [2] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 3, }, + [3] = { critChance = 5, baseMultiplier = 2.72, levelRequirement = 6, }, + [4] = { critChance = 5, baseMultiplier = 2.97, levelRequirement = 10, }, + [5] = { critChance = 5, baseMultiplier = 3.2, levelRequirement = 14, }, + [6] = { critChance = 5, baseMultiplier = 3.45, levelRequirement = 18, }, + [7] = { critChance = 5, baseMultiplier = 3.69, levelRequirement = 22, }, + [8] = { critChance = 5, baseMultiplier = 3.91, levelRequirement = 26, }, + [9] = { critChance = 5, baseMultiplier = 4.1, levelRequirement = 31, }, + [10] = { critChance = 5, baseMultiplier = 4.31, levelRequirement = 36, }, + [11] = { critChance = 5, baseMultiplier = 4.52, levelRequirement = 41, }, + [12] = { critChance = 5, baseMultiplier = 4.75, levelRequirement = 46, }, + [13] = { critChance = 5, baseMultiplier = 4.99, levelRequirement = 52, }, + [14] = { critChance = 5, baseMultiplier = 5.24, levelRequirement = 58, }, + [15] = { critChance = 5, baseMultiplier = 5.5, levelRequirement = 64, }, + [16] = { critChance = 5, baseMultiplier = 5.77, levelRequirement = 66, }, + [17] = { critChance = 5, baseMultiplier = 6.06, levelRequirement = 72, }, + [18] = { critChance = 5, baseMultiplier = 6.37, levelRequirement = 78, }, + [19] = { critChance = 5, baseMultiplier = 6.68, levelRequirement = 84, }, + [20] = { critChance = 5, baseMultiplier = 7.02, levelRequirement = 90, }, + [21] = { critChance = 5, baseMultiplier = 7.37, levelRequirement = 90, }, + [22] = { critChance = 5, baseMultiplier = 7.74, levelRequirement = 90, }, + [23] = { critChance = 5, baseMultiplier = 8.12, levelRequirement = 90, }, + [24] = { critChance = 5, baseMultiplier = 8.53, levelRequirement = 90, }, + [25] = { critChance = 5, baseMultiplier = 8.96, levelRequirement = 90, }, + [26] = { critChance = 5, baseMultiplier = 9.4, levelRequirement = 90, }, + [27] = { critChance = 5, baseMultiplier = 9.87, levelRequirement = 90, }, + [28] = { critChance = 5, baseMultiplier = 10.37, levelRequirement = 90, }, + [29] = { critChance = 5, baseMultiplier = 10.89, levelRequirement = 90, }, + [30] = { critChance = 5, baseMultiplier = 11.43, levelRequirement = 90, }, + [31] = { critChance = 5, baseMultiplier = 12, levelRequirement = 90, }, + [32] = { critChance = 5, baseMultiplier = 12.6, levelRequirement = 90, }, + [33] = { critChance = 5, baseMultiplier = 13.23, levelRequirement = 90, }, + [34] = { critChance = 5, baseMultiplier = 13.89, levelRequirement = 90, }, + [35] = { critChance = 5, baseMultiplier = 14.59, levelRequirement = 90, }, + [36] = { critChance = 5, baseMultiplier = 15.32, levelRequirement = 90, }, + [37] = { critChance = 5, baseMultiplier = 16.08, levelRequirement = 90, }, + [38] = { critChance = 5, baseMultiplier = 16.89, levelRequirement = 90, }, + [39] = { critChance = 5, baseMultiplier = 17.73, levelRequirement = 90, }, + [40] = { critChance = 5, baseMultiplier = 18.62, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Bursting Fen Toad", + baseEffectiveness = 2, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "exploding_poison_toad", + baseFlags = { + area = true, + attack = true, + }, + constantStats = { + { "trigger_toad_spawn_chance_%", 25 }, + { "base_chance_to_poison_on_hit_%", 100 }, + { "active_skill_base_area_of_effect_radius", 25 }, + }, + stats = { + "attack_minimum_added_physical_damage", + "attack_maximum_added_physical_damage", + "is_area_damage", + }, + levels = { + [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 147, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 237, 356, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 267, 400, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 381, 572, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 436, 654, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 455, 683, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 475, 712, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 495, 742, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaDeadeyeMarksPlayer"] = { + name = "Called Shots", + baseTypeName = "Called Shots", + fromTree = true, + color = 4, + description = "Applies a socketed Mark Skill to a nearby unmarked Enemy every few seconds. Consuming socketed Marks will cause them to be reapplied to an unmarked Enemy. This reapplication can happen at most once every half second.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Triggers] = true, [SkillType.Area] = true, [SkillType.HasReservation] = true, [SkillType.ZeroReservation] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Called Shots", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "meta_deadeye_marks", + baseFlags = { + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 40 }, + { "deadeye_meta_marks_number_of_enemies_to_mark", 1 }, + }, + stats = { }, levels = { [1] = { actorLevel = 1, }, @@ -822,18 +969,14 @@ skills["MeleeCrossbowPlayer"] = { }, } } -skills["UnloadAmmoPlayer"] = { - name = "Basic Bolt", +skills["SupportMetaDeadeyeMarksPlayer"] = { + name = "SupportMetaDeadeyeMarksPlayer", hidden = true, - fromItem = true, - description = "Clear your active Bolt and reload any ammunition.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, - weaponTypes = { - ["Crossbow"] = true, - }, - castTime = 0.5, - qualityStats = { - }, + fromTree = true, + support = true, + requireSkillTypes = { SkillType.Mark, }, + addSkillTypes = { }, + excludeSkillTypes = { }, levels = { [1] = { levelRequirement = 0, }, [2] = { levelRequirement = 0, }, @@ -878,24 +1021,16 @@ skills["UnloadAmmoPlayer"] = { }, statSets = { [1] = { - label = "Ammunition", + label = "SupportMetaDeadeyeMarksPlayer", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "base_number_of_crossbow_bolts", 7 }, + { "your_marks_spread_to_a_nearby_enemies_on_consume_%_chance", 100 }, }, stats = { - "crossbow_ammo_skill_binds_default_attack", - "action_can_be_used_in_aiming_stance", - "can_perform_skill_while_moving", - "base_deal_no_damage", - "crossbow_ammo_skill_does_not_transition", + "mark_supported_by_deadeye_meta_gem", }, levels = { [1] = { actorLevel = 1, }, @@ -942,181 +1077,185 @@ skills["UnloadAmmoPlayer"] = { }, } } -skills["DemonFormPlayer"] = { - name = "Demon Form", - baseTypeName = "Demon Form", - fromTree = true, +skills["MetaCastOnCharmUsePlayer"] = { + name = "Cast on Charm Use", + baseTypeName = "Cast on Charm Use", + fromItem = true, color = 4, - description = "Shapeshift into a demon, vastly boosting the power of your Spells. You gain Demonflame every second you remain in demon form, causing your Life to be lost at an ever-increasing rate. Maximum 10 Demonflame. Revert to human form if you reach 1 Life, use a Skill that isn't a Spell, or reactivate this Skill.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Cooldown] = true, [SkillType.Shapeshift] = true, [SkillType.ManualCooldownConsumption] = true, }, - castTime = 1, + description = "While active, gains Energy when one of your Charms is used and triggers socketed Spells on reaching maximum Energy.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, }, + castTime = 0, qualityStats = { + { "energy_generated_+%", 0.75 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { Mana = 7, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { Mana = 8, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { Mana = 9, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { Mana = 10, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { Mana = 12, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { Mana = 14, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { Mana = 16, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { Mana = 18, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { Mana = 21, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { Mana = 24, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { Mana = 28, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { Mana = 32, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { Mana = 37, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { Mana = 43, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { Mana = 49, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { Mana = 56, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { Mana = 65, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { Mana = 74, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { Mana = 85, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 98, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 113, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 129, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 148, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 170, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 196, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 225, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 258, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 296, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 340, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 391, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 449, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 515, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 592, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 679, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 780, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 895, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1028, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1180, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1355, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1556, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Demon Form", + label = "Cast on Charm Use", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "demon_transformation", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, + constantStats = { + { "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 }, + { "skill_desired_amount_override", 1 }, + }, stats = { - "demon_form_spell_damage_+%_per_stack", - "demon_form_grants_cast_speed_+%", - "demon_form_grants_spell_gem_level_+", - "demon_form_life_loss_per_minute_per_stack", + "energy_generated_+%", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", "base_deal_no_damage", - "demon_transformation_cooldown_does_not_tick", }, levels = { - [1] = { 7, 12, 3, 48, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 8, 13, 3, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 8, 13, 3, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, 14, 3, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 9, 15, 4, 128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 10, 15, 4, 144, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 10, 16, 4, 160, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 11, 17, 4, 180, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 12, 17, 4, 210, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 12, 18, 4, 244, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 13, 19, 5, 308, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 13, 20, 5, 346, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 14, 20, 5, 394, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 15, 21, 5, 454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 15, 22, 5, 518, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 16, 22, 5, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 16, 23, 6, 780, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 17, 24, 6, 848, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 18, 24, 6, 980, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 18, 25, 6, 1112, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 19, 26, 6, 1202, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 20, 26, 6, 1315, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 20, 27, 6, 1428, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 20, 28, 7, 1541, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 21, 28, 7, 1654, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 21, 29, 7, 1767, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 22, 30, 7, 1880, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 23, 30, 7, 1992, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 23, 31, 7, 2105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 24, 32, 8, 2218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 24, 32, 8, 2331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 24, 33, 8, 2444, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 25, 33, 8, 2557, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 25, 33, 8, 2670, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 25, 34, 8, 2783, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 26, 34, 8, 2896, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 26, 34, 8, 3009, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 26, 35, 8, 3122, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 26, 35, 8, 3235, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 27, 35, 8, 3347, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, - }, + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, }, } } -skills["ElementalExpressionTriggeredPlayer"] = { - name = "Elemental Expression", - baseTypeName = "Elemental Expression", - fromTree = true, - color = 4, - description = "Create a fiery explosion, an arcing bolt of lightning, or an icy wave of projectiles. The chance for an explosion is proportional to your Strength, for a bolt proportional to your Dexterity, and for a wave proportional to your Intelligence.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chains] = true, }, - castTime = 0, - qualityStats = { - { "base_cooldown_speed_+%", 1 }, - }, +skills["SupportMetaCastOnCharmUsePlayer"] = { + name = "SupportMetaCastOnCharmUsePlayer", + hidden = true, + fromItem = true, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, + excludeSkillTypes = { SkillType.SupportedByHourglass, }, + isTrigger = true, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.25, cost = { Mana = 4, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 0.25, cost = { Mana = 4, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 0.25, cost = { Mana = 5, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 0.25, cost = { Mana = 6, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 0.25, cost = { Mana = 7, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 0.25, cost = { Mana = 8, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 0.25, cost = { Mana = 9, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 0.25, cost = { Mana = 11, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 0.25, cost = { Mana = 13, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 0.25, cost = { Mana = 14, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 0.25, cost = { Mana = 17, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 0.25, cost = { Mana = 19, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 0.25, cost = { Mana = 22, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 0.25, cost = { Mana = 25, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 0.25, cost = { Mana = 29, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 0.25, cost = { Mana = 34, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 0.25, cost = { Mana = 39, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 0.25, cost = { Mana = 45, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 0.25, cost = { Mana = 51, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 59, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 68, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 78, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 89, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 103, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 118, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 136, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 156, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 179, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 205, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 236, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 271, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 311, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 357, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 410, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 471, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 541, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 621, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 713, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 818, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 940, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Elemental Expression", + label = "SupportMetaCastOnCharmUsePlayer", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + }, stats = { - "is_triggerable_strike", - "triggerable_in_any_set", + "triggered_by_generic_ongoing_trigger", + "generic_ongoing_trigger_triggers_at_maximum_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -1161,295 +1300,96 @@ skills["ElementalExpressionTriggeredPlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - [2] = { - label = "Fiery Explosion", - baseEffectiveness = 1.75, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - spell = true, - area = true, - }, - constantStats = { - { "active_skill_base_area_of_effect_radius", 36 }, - }, - stats = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - "is_triggerable_strike", - "triggerable_in_any_set", - "is_area_damage", - }, - notMinionStat = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - }, - levels = { - [1] = { 5, 8, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 7, 11, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 25, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 31, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 25, 38, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 41, 62, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 48, 71, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 55, 82, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 63, 95, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 72, 108, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 82, 123, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 93, 140, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 106, 159, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 120, 179, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 135, 203, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 152, 228, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 171, 257, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 193, 289, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 217, 325, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 244, 365, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 274, 410, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 307, 460, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 345, 517, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 387, 580, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 434, 651, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 487, 730, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 546, 819, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 613, 920, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 689, 1033, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 774, 1160, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 869, 1304, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 978, 1466, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1100, 1650, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1238, 1857, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1394, 2091, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1571, 2357, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - [3] = { - label = "Icy Wave", - baseEffectiveness = 1.4349999427795, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - spell = true, - projectile = true, - }, - constantStats = { - { "base_number_of_projectiles", 3 }, - { "fixed_projectile_height", 15 }, - }, - stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "is_triggerable_strike", - "triggerable_in_any_set", - "always_pierce", - "show_number_of_projectiles", - "base_is_projectile", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - }, - levels = { - [1] = { 4, 7, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 8, 13, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 11, 16, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 14, 21, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 17, 25, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 21, 31, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 24, 37, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 29, 43, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 34, 50, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 39, 59, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 45, 68, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 52, 78, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 59, 89, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 67, 101, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 77, 115, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 87, 130, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 98, 147, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 111, 166, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 125, 187, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 141, 211, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 158, 237, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 178, 267, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 200, 300, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 224, 336, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 252, 378, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 283, 424, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 317, 475, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 356, 534, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 399, 599, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 448, 672, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 503, 754, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 565, 847, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 634, 952, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 713, 1069, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 802, 1202, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 902, 1353, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1015, 1523, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1143, 1715, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1288, 1933, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - [4] = { - label = "Arcing Bolt", - baseEffectiveness = 1.6100000143051, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - spell = true, - chaining = true, - }, - constantStats = { - { "number_of_chains", 7 }, - }, - stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - "is_triggerable_strike", - "triggerable_in_any_set", - }, - notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - }, - levels = { - [1] = { 2, 11, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 3, 15, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4, 20, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 5, 26, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6, 33, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 7, 40, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 9, 49, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 10, 58, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 12, 69, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 14, 80, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 16, 93, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 19, 107, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 22, 123, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 25, 141, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 28, 161, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 32, 182, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 36, 207, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 41, 234, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 47, 264, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 53, 298, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 59, 335, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 67, 377, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 75, 424, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 84, 476, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 94, 535, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 106, 600, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 119, 674, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 133, 756, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 150, 848, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 168, 952, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 188, 1068, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 212, 1199, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 238, 1346, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 267, 1512, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 300, 1700, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 337, 1911, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 379, 2150, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 427, 2420, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 481, 2726, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 542, 3072, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, } } -skills["ElementalStormPlayer"] = { - name = "Elemental Storm", - baseTypeName = "Elemental Storm", - fromTree = true, +skills["MeleeCrossbowPlayer"] = { + name = "Crossbow Shot", + baseTypeName = "Crossbow Shot", + fromItem = true, color = 4, - description = "Create a stationary Fire, Cold or Lightning storm at a target location for a duration, based on the highest Elemental Damage type for the Hit that Triggered the storm. Hits which do not deal Elemental Damage will not Trigger the storm.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, }, - castTime = 0, + description = "Fire a bolt from your crossbow.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 5, cost = { Mana = 8, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 5, cost = { Mana = 9, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 5, cost = { Mana = 10, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 5, cost = { Mana = 11, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 5, cost = { Mana = 13, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 5, cost = { Mana = 14, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 5, cost = { Mana = 16, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 5, cost = { Mana = 18, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 5, cost = { Mana = 20, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 5, cost = { Mana = 22, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 5, cost = { Mana = 25, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5, cost = { Mana = 28, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5, cost = { Mana = 31, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5, cost = { Mana = 34, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5, cost = { Mana = 38, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5, cost = { Mana = 43, }, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 5, cost = { Mana = 48, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5, cost = { Mana = 54, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5, cost = { Mana = 60, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 67, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 74, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 83, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 93, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 103, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 115, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 129, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 143, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 160, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 178, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 199, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 222, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 247, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 276, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 308, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 343, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 383, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 427, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 476, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 531, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 592, }, }, + [1] = { levelRequirement = 0, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, + [5] = { baseMultiplier = 1.43, levelRequirement = 14, }, + [6] = { baseMultiplier = 1.54, levelRequirement = 18, }, + [7] = { baseMultiplier = 1.66, levelRequirement = 22, }, + [8] = { baseMultiplier = 1.77, levelRequirement = 26, }, + [9] = { baseMultiplier = 1.87, levelRequirement = 31, }, + [10] = { baseMultiplier = 1.98, levelRequirement = 36, }, + [11] = { baseMultiplier = 2.09, levelRequirement = 41, }, + [12] = { baseMultiplier = 2.22, levelRequirement = 46, }, + [13] = { baseMultiplier = 2.35, levelRequirement = 52, }, + [14] = { baseMultiplier = 2.49, levelRequirement = 58, }, + [15] = { baseMultiplier = 2.65, levelRequirement = 64, }, + [16] = { baseMultiplier = 2.81, levelRequirement = 66, }, + [17] = { baseMultiplier = 2.99, levelRequirement = 72, }, + [18] = { baseMultiplier = 3.19, levelRequirement = 78, }, + [19] = { baseMultiplier = 3.4, levelRequirement = 84, }, + [20] = { baseMultiplier = 3.62, levelRequirement = 90, }, + [21] = { baseMultiplier = 3.86, levelRequirement = 90, }, + [22] = { baseMultiplier = 4.12, levelRequirement = 90, }, + [23] = { baseMultiplier = 4.4, levelRequirement = 90, }, + [24] = { baseMultiplier = 4.69, levelRequirement = 90, }, + [25] = { baseMultiplier = 5, levelRequirement = 90, }, + [26] = { baseMultiplier = 5.33, levelRequirement = 90, }, + [27] = { baseMultiplier = 5.69, levelRequirement = 90, }, + [28] = { baseMultiplier = 6.07, levelRequirement = 90, }, + [29] = { baseMultiplier = 6.47, levelRequirement = 90, }, + [30] = { baseMultiplier = 6.9, levelRequirement = 90, }, + [31] = { baseMultiplier = 7.36, levelRequirement = 90, }, + [32] = { baseMultiplier = 7.85, levelRequirement = 90, }, + [33] = { baseMultiplier = 8.38, levelRequirement = 90, }, + [34] = { baseMultiplier = 8.93, levelRequirement = 90, }, + [35] = { baseMultiplier = 9.53, levelRequirement = 90, }, + [36] = { baseMultiplier = 10.16, levelRequirement = 90, }, + [37] = { baseMultiplier = 10.84, levelRequirement = 90, }, + [38] = { baseMultiplier = 11.56, levelRequirement = 90, }, + [39] = { baseMultiplier = 12.33, levelRequirement = 90, }, + [40] = { baseMultiplier = 13.16, levelRequirement = 90, }, }, statSets = { [1] = { - label = "Elemental Storm", - baseEffectiveness = 0.5625, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "tornado_triggered", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, + label = "Crossbow Shot", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", baseFlags = { + attack = true, area = true, - duration = true, + projectile = true, }, constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "crossbow_barrage_attack_time_ratio_%", 10 }, + { "crossbow_barrage_recoil_per_shot", 2 }, + { "crossbow_barrage_total_recoil_buff_count", 8 }, + { "crossbow_barrage_debuff_duration_ms", 300 }, + { "base_knockback_distance", 0 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", + "base_is_projectile", + "has_modular_projectiles_enabled", + "action_requires_aiming_stance", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "projectiles_crossbow_barrage", + "cannot_cancel_skill_before_contact_point", + "disable_visual_hit_effect", + "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -1494,247 +1434,1164 @@ skills["ElementalStormPlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - [2] = { - label = "Fire", - baseEffectiveness = 0.55000001192093, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "tornado_triggered", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, + } +} +skills["UnloadAmmoPlayer"] = { + name = "Basic Bolt", + hidden = true, + fromItem = true, + description = "Clear your active Bolt and reload any ammunition.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 0.5, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ammunition", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", baseFlags = { - spell = true, - area = true, - duration = true, }, constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, + { "action_allowed_queue_time_override_ms", 1000 }, + { "base_number_of_crossbow_bolts", 7 }, }, stats = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", - }, - notMinionStat = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", + "crossbow_ammo_skill_binds_default_attack", + "action_can_be_used_in_aiming_stance", + "can_perform_skill_while_moving", + "base_deal_no_damage", + "crossbow_ammo_skill_does_not_transition", + "skill_is_instant_while_sprinting", }, levels = { - [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 62, 93, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 71, 106, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 80, 121, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 134, 201, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 152, 228, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 173, 259, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 197, 295, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 224, 336, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 290, 435, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 330, 496, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 377, 565, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 491, 737, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 562, 842, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 643, 964, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 736, 1104, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Lightning", - baseEffectiveness = 0.41999998688698, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "tornado_triggered", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, + } +} +skills["DemonFormPlayer"] = { + name = "Demon Form", + baseTypeName = "Demon Form", + fromTree = true, + color = 4, + description = "Shapeshift into a demon, vastly boosting the power of your Spells. You gain Demonflame every second you remain in demon form, causing your Life to be lost at an ever-increasing rate. Maximum 10 Demonflame. Revert to human form if you reach 1 Life, use a Skill that isn't a Spell, or reactivate this Skill.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Shapeshift] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 1, + qualityStats = { + { "demon_form_grants_cast_speed_+%", 0.5 }, + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { Mana = 6, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { Mana = 7, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { Mana = 8, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { Mana = 10, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { Mana = 11, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { Mana = 13, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { Mana = 15, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { Mana = 17, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { Mana = 20, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { Mana = 22, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { Mana = 25, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { Mana = 28, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { Mana = 31, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { Mana = 35, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { Mana = 39, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { Mana = 43, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { Mana = 48, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { Mana = 53, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { Mana = 59, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 65, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 72, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 79, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 88, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 96, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 106, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 116, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 127, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 139, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 153, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 167, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 183, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 200, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 218, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 238, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 259, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 283, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 308, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 335, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 365, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 397, }, }, + }, + statSets = { + [1] = { + label = "Demon Form", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "demon_transformation", baseFlags = { - spell = true, - area = true, - duration = true, }, constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, + { "demon_form_spell_damage_+%_final_per_stack", 3 }, }, stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", - }, - notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", + "demon_form_grants_cast_speed_+%", + "demon_form_life_loss_per_minute_per_stack", + "base_deal_no_damage", + "demon_transformation_cooldown_does_not_tick", }, levels = { - [1] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 2, 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, 13, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 3, 19, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 4, 22, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 5, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 5, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 8, 46, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 9, 52, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 11, 60, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 12, 68, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 14, 78, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 16, 89, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 18, 101, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 20, 115, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 23, 131, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 26, 148, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 30, 168, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 34, 191, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 38, 217, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 44, 247, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 50, 281, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 56, 319, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 64, 363, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 73, 413, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 83, 470, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 95, 536, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 108, 611, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 123, 698, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 141, 797, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 161, 911, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 184, 1043, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 211, 1195, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 12, 48, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 13, 64, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, 100, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 15, 128, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, 144, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 16, 160, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, 180, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 17, 210, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 18, 244, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 19, 308, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 20, 346, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 20, 394, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 21, 454, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 22, 518, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 22, 585, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 23, 780, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 24, 848, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 24, 980, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 25, 1112, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 26, 1143, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 26, 1179, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 27, 1214, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 28, 1247, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 28, 1278, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 29, 1308, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 30, 1336, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 30, 1364, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 31, 1390, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 32, 1416, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 32, 1441, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 33, 1465, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 33, 1488, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 33, 1511, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 34, 1533, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 34, 1555, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 34, 1575, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 35, 1596, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 35, 1616, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 35, 1635, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, - [4] = { - label = "Cold", - baseEffectiveness = 0.41999998688698, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "tornado_triggered", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, - baseFlags = { - spell = true, - area = true, + } +} +skills["ElementalExpressionTriggeredPlayer"] = { + name = "Elemental Expression", + baseTypeName = "Elemental Expression", + fromTree = true, + color = 4, + description = "Create a fiery explosion, an arcing bolt of lightning, or an icy wave of projectiles. The chance for an explosion is proportional to your Strength, for a bolt proportional to your Dexterity, and for a wave proportional to your Intelligence.", + skillTypes = { [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chains] = true, }, + castTime = 0, + qualityStats = { + { "base_cooldown_speed_+%", 1 }, + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.25, cost = { Mana = 3, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 0.25, cost = { Mana = 4, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 0.25, cost = { Mana = 5, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 0.25, cost = { Mana = 6, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 0.25, cost = { Mana = 7, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 0.25, cost = { Mana = 8, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 0.25, cost = { Mana = 9, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 0.25, cost = { Mana = 10, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 0.25, cost = { Mana = 12, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 0.25, cost = { Mana = 13, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 0.25, cost = { Mana = 15, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 0.25, cost = { Mana = 17, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 0.25, cost = { Mana = 19, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 0.25, cost = { Mana = 21, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 0.25, cost = { Mana = 23, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 0.25, cost = { Mana = 26, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 0.25, cost = { Mana = 29, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 0.25, cost = { Mana = 32, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 0.25, cost = { Mana = 36, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 39, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 43, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 48, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 53, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 58, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 64, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 70, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 77, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 84, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 92, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 101, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 110, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 120, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 131, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 143, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 156, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 170, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 186, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 202, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 220, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 239, }, }, + }, + statSets = { + [1] = { + label = "Elemental Expression", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "elemental_strike_trigger_statset_0", + baseFlags = { + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fiery Explosion", + baseEffectiveness = 2.625, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "elemental_strike_trigger_statset_1", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "active_skill_base_area_of_effect_radius", 36 }, + }, + stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "is_area_damage", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 8, 12, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 11, 16, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 22, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 19, 29, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 25, 37, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 30, 45, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 37, 55, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 44, 66, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 52, 78, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 61, 91, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 71, 106, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 82, 124, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 95, 143, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 110, 165, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 126, 189, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 144, 216, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 165, 247, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 188, 282, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 214, 321, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 244, 366, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 277, 416, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 315, 473, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 358, 537, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 407, 610, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 462, 693, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 525, 787, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 596, 894, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 677, 1015, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 769, 1153, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 874, 1311, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 994, 1491, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1131, 1697, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1288, 1932, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1468, 2201, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1674, 2510, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1910, 2865, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2181, 3272, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2494, 3741, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2854, 4280, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3269, 4903, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Icy Wave", + baseEffectiveness = 2.1524999141693, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "elemental_strike_trigger_statset_2", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "base_number_of_projectiles", 3 }, + { "fixed_projectile_height", 15 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "always_pierce", + "show_number_of_projectiles", + "base_is_projectile", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 7, 10, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 9, 14, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 12, 18, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, 24, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 20, 30, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 25, 37, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 30, 45, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, 54, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 42, 64, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 50, 75, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 58, 87, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 68, 101, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 78, 117, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 90, 135, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 103, 155, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 118, 177, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 135, 203, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 154, 231, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 176, 264, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 200, 300, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 227, 341, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 259, 388, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 294, 441, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 334, 500, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 379, 568, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 430, 645, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 488, 733, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 555, 832, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 630, 946, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 717, 1075, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 815, 1223, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 928, 1391, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1056, 1584, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1203, 1805, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1372, 2058, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1566, 2349, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1789, 2683, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2045, 3067, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2340, 3510, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2680, 4020, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [4] = { + label = "Arcing Bolt", + baseEffectiveness = 2.414999961853, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "elemental_strike_trigger_statset_3", + baseFlags = { + spell = true, + chaining = true, + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "number_of_chains", 7 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 3, 16, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 4, 21, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 5, 29, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7, 38, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 8, 48, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 10, 59, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 13, 72, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 15, 86, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 18, 101, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 21, 119, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 24, 139, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 28, 161, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 33, 186, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 38, 214, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 43, 246, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 50, 282, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 57, 322, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 65, 368, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 74, 419, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 84, 477, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 96, 542, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 109, 616, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 124, 700, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 140, 795, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 159, 903, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 181, 1025, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 206, 1165, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 233, 1323, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 265, 1503, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 302, 1709, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 343, 1943, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 390, 2211, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 444, 2518, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 506, 2869, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 577, 3272, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 659, 3734, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 753, 4265, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 860, 4875, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 985, 5579, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1128, 6390, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ElementalStormPlayer"] = { + name = "Elemental Storm", + baseTypeName = "Elemental Storm", + fromTree = true, + color = 4, + description = "Create a stationary Fire, Cold or Lightning storm at a target location for a duration, based on the highest Elemental Damage type for the Hit that Triggered the storm. Hits which do not deal Elemental Damage will not Trigger the storm.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 3, cost = { Mana = 8, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 3, cost = { Mana = 9, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 3, cost = { Mana = 10, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 3, cost = { Mana = 12, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 3, cost = { Mana = 13, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 3, cost = { Mana = 15, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 3, cost = { Mana = 17, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 3, cost = { Mana = 19, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 3, cost = { Mana = 21, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 3, cost = { Mana = 23, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 3, cost = { Mana = 26, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 3, cost = { Mana = 28, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 3, cost = { Mana = 31, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 3, cost = { Mana = 34, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 3, cost = { Mana = 37, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 3, cost = { Mana = 40, }, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 3, cost = { Mana = 43, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 3, cost = { Mana = 47, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 3, cost = { Mana = 51, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 55, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 60, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 64, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 69, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 74, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 80, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 86, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 92, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 99, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 106, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 113, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 121, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 130, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 138, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 148, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 158, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 168, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 179, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 191, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 203, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 216, }, }, + }, + statSets = { + [1] = { + label = "Elemental Storm", + baseEffectiveness = 0.5625, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "tornado_triggered", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + area = true, duration = true, }, constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire", + baseEffectiveness = 0.55000001192093, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "tornado_triggered", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 38, 58, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 77, 116, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 89, 133, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 134, 201, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 154, 232, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 178, 266, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 204, 306, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 235, 353, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 271, 407, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 361, 542, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 560, 840, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 649, 974, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 754, 1131, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 876, 1315, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1020, 1530, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Lightning", + baseEffectiveness = 0.41999998688698, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "tornado_triggered", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 13, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, 18, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 4, 22, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 5, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 5, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 8, 47, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 10, 54, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 11, 62, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 15, 82, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 17, 95, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 19, 109, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 22, 125, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 25, 144, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 29, 165, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 33, 190, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 38, 218, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 44, 250, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 51, 288, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 59, 332, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 67, 382, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 78, 440, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 90, 508, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 103, 586, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 120, 678, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 138, 784, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 160, 908, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 186, 1054, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 216, 1223, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 251, 1422, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 292, 1656, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [4] = { + label = "Cold", + baseEffectiveness = 0.41999998688698, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "tornado_triggered", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 51, 77, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 68, 101, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 136, 203, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 156, 234, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 207, 311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 239, 358, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 276, 414, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 319, 478, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 369, 554, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 428, 641, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 496, 744, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 576, 864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 779, 1169, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["AmazonTriggerElementalSurgePlayer"] = { + name = "Elemental Surge", + baseTypeName = "Elemental Surge", + fromTree = true, + color = 4, + description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.15 }, + }, + levels = { + [1] = { baseMultiplier = 0.5, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.55, levelRequirement = 3, }, + [3] = { baseMultiplier = 0.61, levelRequirement = 6, }, + [4] = { baseMultiplier = 0.66, levelRequirement = 10, }, + [5] = { baseMultiplier = 0.72, levelRequirement = 14, }, + [6] = { baseMultiplier = 0.77, levelRequirement = 18, }, + [7] = { baseMultiplier = 0.83, levelRequirement = 22, }, + [8] = { baseMultiplier = 0.88, levelRequirement = 26, }, + [9] = { baseMultiplier = 0.93, levelRequirement = 31, }, + [10] = { baseMultiplier = 0.99, levelRequirement = 36, }, + [11] = { baseMultiplier = 1.05, levelRequirement = 41, }, + [12] = { baseMultiplier = 1.11, levelRequirement = 46, }, + [13] = { baseMultiplier = 1.17, levelRequirement = 52, }, + [14] = { baseMultiplier = 1.25, levelRequirement = 58, }, + [15] = { baseMultiplier = 1.32, levelRequirement = 64, }, + [16] = { baseMultiplier = 1.41, levelRequirement = 66, }, + [17] = { baseMultiplier = 1.5, levelRequirement = 72, }, + [18] = { baseMultiplier = 1.59, levelRequirement = 78, }, + [19] = { baseMultiplier = 1.7, levelRequirement = 84, }, + [20] = { baseMultiplier = 1.81, levelRequirement = 90, }, + [21] = { baseMultiplier = 1.93, levelRequirement = 90, }, + [22] = { baseMultiplier = 2.06, levelRequirement = 90, }, + [23] = { baseMultiplier = 2.2, levelRequirement = 90, }, + [24] = { baseMultiplier = 2.34, levelRequirement = 90, }, + [25] = { baseMultiplier = 2.5, levelRequirement = 90, }, + [26] = { baseMultiplier = 2.67, levelRequirement = 90, }, + [27] = { baseMultiplier = 2.84, levelRequirement = 90, }, + [28] = { baseMultiplier = 3.03, levelRequirement = 90, }, + [29] = { baseMultiplier = 3.24, levelRequirement = 90, }, + [30] = { baseMultiplier = 3.45, levelRequirement = 90, }, + [31] = { baseMultiplier = 3.68, levelRequirement = 90, }, + [32] = { baseMultiplier = 3.93, levelRequirement = 90, }, + [33] = { baseMultiplier = 4.19, levelRequirement = 90, }, + [34] = { baseMultiplier = 4.47, levelRequirement = 90, }, + [35] = { baseMultiplier = 4.76, levelRequirement = 90, }, + [36] = { baseMultiplier = 5.08, levelRequirement = 90, }, + [37] = { baseMultiplier = 5.42, levelRequirement = 90, }, + [38] = { baseMultiplier = 5.78, levelRequirement = 90, }, + [39] = { baseMultiplier = 6.17, levelRequirement = 90, }, + [40] = { baseMultiplier = 6.58, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Cold Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "trigger_elemental_infusion", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 6 }, + }, + stats = { + "is_area_damage", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "trigger_elemental_infusion", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, { "active_skill_base_area_of_effect_radius", 18 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 6 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, }, stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", + levels = { + [1] = { baseMultiplier = 0.5, actorLevel = 1, }, + [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Lightning Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "trigger_elemental_infusion", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 6 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, + }, + stats = { + "is_area_damage", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 22, 32, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 48, 71, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 61, 92, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 90, 135, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 116, 174, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 132, 198, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 150, 225, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 194, 292, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 221, 332, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 288, 432, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 328, 493, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 375, 563, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 429, 643, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 562, 843, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.5, actorLevel = 1, }, + [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, }, }, } @@ -1745,7 +2602,7 @@ skills["EncaseInJadePlayer"] = { fromTree = true, color = 4, description = "Consume all stacks of Jade to grant Guard based off your maximum Life for each Jade consumed. You cannot gain Jade stacks while you have Guard.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0.3, qualityStats = { { "maximum_life_%_damage_absorbed_per_jade_consumed", 0.05 }, @@ -1804,53 +2661,192 @@ skills["EncaseInJadePlayer"] = { { "maximum_life_%_damage_absorbed_per_jade_consumed", 6 }, }, stats = { - "base_skill_effect_duration", - "base_deal_no_damage", - }, - notMinionStat = { - "base_skill_effect_duration", + "base_skill_effect_duration", + "base_deal_no_damage", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4150, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 4200, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 4350, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 4400, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4450, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 4550, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 4600, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 4650, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 4700, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 4750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 4800, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 4850, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4900, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 4950, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 5000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 5050, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 5100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 5150, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5200, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5250, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5300, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5350, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5400, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5450, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5475, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 5525, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 5550, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 5575, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 5600, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 5625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 5650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 5675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 5700, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ExplosiveConcoctionPlayer"] = { + name = "Explosive Concoction", + baseTypeName = "Explosive Concoction", + fromTree = true, + color = 4, + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Fire Attack damage in an area. Additional smaller flasks are thrown at nearby Ignited Enemies.", + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, }, + weaponTypes = { + ["None"] = true, + }, + castTime = 1, + qualityStats = { + { "explosive_concoction_number_of_secondary_projectiles", 0.1 }, + }, + levels = { + [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Flask", + baseEffectiveness = 4.5, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "explosive_concoction", + statMap = { + ["flask_throw_fire_exposure_ms"] = { + mod("FireExposureChance", "BASE", nil), + value = 100, + }, + }, + baseFlags = { + attack = true, + projectile = true, + duration = true, + unarmed = true, + area = true, + }, + constantStats = { + { "flask_throw_base_charges_used", 5 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, + { "active_skill_ignite_chance_+%_final", 100 }, + }, + stats = { + "main_hand_weapon_minimum_fire_damage", + "main_hand_weapon_maximum_fire_damage", + "base_is_projectile", + "projectile_behaviour_only_explode", + "can_perform_skill_while_moving", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", }, levels = { - [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 4050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4150, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 4200, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 4250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 4300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 4350, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 4400, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 4450, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 4500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 4550, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 4600, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 4650, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 4700, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 4750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 4800, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 4850, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 4900, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 4950, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 5000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 5050, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 5100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 5150, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 5200, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 5250, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 5300, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 5350, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 5400, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 5450, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 5475, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 5500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 5525, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 5550, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 5575, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 5600, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 5625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 5650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 5675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 5700, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 210, 316, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 256, 383, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 280, 419, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 304, 457, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 357, 535, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 412, 618, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 441, 662, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 471, 707, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 534, 801, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 566, 849, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 600, 900, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 634, 951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 705, 1058, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 742, 1113, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 818, 1228, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 940, 1409, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 982, 1472, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1025, 1537, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1068, 1603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1113, 1670, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2034,7 +3030,6 @@ skills["SupportMetaCastFireSpellOnHitPlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", - "skill_cannot_generate_energy", }, levels = { [1] = { actorLevel = 1, }, @@ -2051,173 +3046,32 @@ skills["SupportMetaCastFireSpellOnHitPlayer"] = { [12] = { actorLevel = 46.771999359131, }, [13] = { actorLevel = 52.34700012207, }, [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["ExplosiveConcoctionPlayer"] = { - name = "Explosive Concoction", - baseTypeName = "Explosive Concoction", - fromTree = true, - color = 4, - description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Fire attack damage in an area and inflicting Fire Exposure.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, }, - weaponTypes = { - ["None"] = true, - }, - castTime = 1, - qualityStats = { - { "fire_exposure_effect_+%", 1 }, - }, - levels = { - [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, }, - }, - statSets = { - [1] = { - label = "Explosive Concoction", - baseEffectiveness = 4.5, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "throw_flask_fire", - statMap = { - ["flask_throw_fire_exposure_ms"] = { - mod("FireExposureChance", "BASE", nil), - value = 100, - }, - }, - baseFlags = { - attack = true, - projectile = true, - duration = true, - unarmed = true, - area = true, - }, - constantStats = { - { "flask_throw_base_charges_used", 5 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 15 }, - { "flask_throw_fire_exposure_ms", 4000 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "main_hand_base_weapon_attack_duration_ms", 714 }, - { "active_skill_ignite_chance_+%_final", 100 }, - { "active_skill_ignite_effect_+%_final", 200 }, - }, - stats = { - "main_hand_weapon_minimum_fire_damage", - "main_hand_weapon_maximum_fire_damage", - "base_is_projectile", - "projectile_behaviour_only_explode", - "can_perform_skill_while_moving", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "is_area_damage", - }, - levels = { - [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 210, 316, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 256, 383, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 280, 419, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 304, 457, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 357, 535, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 412, 618, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 441, 662, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 471, 707, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 534, 801, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 566, 849, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 600, 900, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 634, 951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 705, 1058, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 742, 1113, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 818, 1228, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 940, 1409, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 982, 1472, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1025, 1537, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1068, 1603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1113, 1670, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -2227,14 +3081,14 @@ skills["FulminatingConcoctionPlayer"] = { baseTypeName = "Fulminating Concoction", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Lightning attack damage in an area and inflicting Lightning Exposure.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, }, + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Lightning Attack damage in an area with high chance to Shock.", + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, }, castTime = 1, qualityStats = { - { "lightning_exposure_effect_+%", 1 }, + { "active_skill_shock_chance_+%_final", 2 }, }, levels = { [1] = { critChance = 8, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, @@ -2283,7 +3137,7 @@ skills["FulminatingConcoctionPlayer"] = { label = "Fulminating Concoction", baseEffectiveness = 4.1999998092651, incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "throw_flask_lightning", + statDescriptionScope = "fulminating_concoction", statMap = { ["flask_throw_lightning_exposure_ms"] = { mod("LightningExposureChance", "BASE", nil), @@ -2300,14 +3154,14 @@ skills["FulminatingConcoctionPlayer"] = { constantStats = { { "flask_throw_base_charges_used", 5 }, { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 15 }, - { "flask_throw_lightning_exposure_ms", 4000 }, + { "active_skill_base_area_of_effect_radius", 18 }, { "throw_flask_effects_type", 2 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_base_weapon_attack_duration_ms", 714 }, { "active_skill_shock_chance_+%_final", 200 }, + { "active_skill_shock_effect_+%_final", 50 }, }, stats = { "main_hand_weapon_minimum_lightning_damage", @@ -2363,241 +3217,239 @@ skills["FulminatingConcoctionPlayer"] = { }, } } -skills["AmazonTriggerElementalInfusionPlayer"] = { - name = "Infuse Weapon", - baseTypeName = "Infuse Weapon", - fromTree = true, +skills["FuturePastPlayer"] = { + name = "Future-Past", + baseTypeName = "Future-Past", + fromItem = true, color = 4, - description = "Grants your weapon Infusion. Non-Melee Projectile Attacks with that weapon Consume Infusions to Infuse the Projectiles fired, causing them to explode at the end of their flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.GeneratesInfusion] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, }, - castTime = 1, + description = "Hinekora observes your Future-Past granting you the opportunity to subvert a lesser fate. After a period of Hindsight, she will grant you her Foresight, which prevents you from avoiding Hits while Dodge Rolling. When you are Hit while Dodge Rolling, Hinekora restores you to full Life immediately before taking damage from the Hit, and grants you Sight Beyond Sight, which prevents you from dying.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, }, + castTime = 0, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.15 }, + { "base_secondary_skill_effect_duration", 15 }, }, levels = { - [1] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.55, levelRequirement = 3, }, - [3] = { baseMultiplier = 0.61, levelRequirement = 6, }, - [4] = { baseMultiplier = 0.66, levelRequirement = 10, }, - [5] = { baseMultiplier = 0.72, levelRequirement = 14, }, - [6] = { baseMultiplier = 0.77, levelRequirement = 18, }, - [7] = { baseMultiplier = 0.83, levelRequirement = 22, }, - [8] = { baseMultiplier = 0.88, levelRequirement = 26, }, - [9] = { baseMultiplier = 0.93, levelRequirement = 31, }, - [10] = { baseMultiplier = 0.99, levelRequirement = 36, }, - [11] = { baseMultiplier = 1.05, levelRequirement = 41, }, - [12] = { baseMultiplier = 1.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 1.17, levelRequirement = 52, }, - [14] = { baseMultiplier = 1.25, levelRequirement = 58, }, - [15] = { baseMultiplier = 1.32, levelRequirement = 64, }, - [16] = { baseMultiplier = 1.41, levelRequirement = 66, }, - [17] = { baseMultiplier = 1.5, levelRequirement = 72, }, - [18] = { baseMultiplier = 1.59, levelRequirement = 78, }, - [19] = { baseMultiplier = 1.7, levelRequirement = 84, }, - [20] = { baseMultiplier = 1.81, levelRequirement = 90, }, - [21] = { baseMultiplier = 1.93, levelRequirement = 90, }, - [22] = { baseMultiplier = 2.06, levelRequirement = 90, }, - [23] = { baseMultiplier = 2.2, levelRequirement = 90, }, - [24] = { baseMultiplier = 2.34, levelRequirement = 90, }, - [25] = { baseMultiplier = 2.5, levelRequirement = 90, }, - [26] = { baseMultiplier = 2.67, levelRequirement = 90, }, - [27] = { baseMultiplier = 2.84, levelRequirement = 90, }, - [28] = { baseMultiplier = 3.03, levelRequirement = 90, }, - [29] = { baseMultiplier = 3.24, levelRequirement = 90, }, - [30] = { baseMultiplier = 3.45, levelRequirement = 90, }, - [31] = { baseMultiplier = 3.68, levelRequirement = 90, }, - [32] = { baseMultiplier = 3.93, levelRequirement = 90, }, - [33] = { baseMultiplier = 4.19, levelRequirement = 90, }, - [34] = { baseMultiplier = 4.47, levelRequirement = 90, }, - [35] = { baseMultiplier = 4.76, levelRequirement = 90, }, - [36] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [37] = { baseMultiplier = 5.42, levelRequirement = 90, }, - [38] = { baseMultiplier = 5.78, levelRequirement = 90, }, - [39] = { baseMultiplier = 6.17, levelRequirement = 90, }, - [40] = { baseMultiplier = 6.58, levelRequirement = 90, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Cold-Infused", + label = "Future-Past", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "trigger_elemental_infusion", + statDescriptionScope = "foresight", baseFlags = { - attack = true, - area = true, }, constantStats = { - { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "foresight_clone_duration_ms", 2000 }, + { "skill_desired_amount_override", 1 }, + { "base_secondary_skill_effect_duration", 1500 }, }, stats = { - "is_area_damage", - "skill_is_infusion_skill", - "cannot_consume_power_frenzy_endurance_charges", - }, - levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Fire-Infused", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "trigger_elemental_infusion", - baseFlags = { - attack = true, - area = true, - }, - constantStats = { - { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + "base_skill_effect_duration", + "base_deal_no_damage", }, - stats = { - "is_area_damage", - "skill_is_infusion_skill", - "cannot_consume_power_frenzy_endurance_charges", + notMinionStat = { + "base_skill_effect_duration", }, levels = { - [1] = { baseMultiplier = 0.5, actorLevel = 1, }, - [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + [1] = { 25500, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 25000, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 24500, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 24000, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 23500, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 23000, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 22500, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 22000, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 21500, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 21000, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 20500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 20000, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 19500, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 19000, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 18500, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 18000, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 17500, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 17000, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 16500, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 16000, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 15500, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 15000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 14500, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 14000, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 13750, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 13500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 13250, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 13000, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 12750, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 12500, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 12375, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 12250, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 12125, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 12000, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 11875, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 11750, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 11625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 11500, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 11375, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 11250, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Lightning-Infused", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "trigger_elemental_infusion", + } +} +skills["InevitableAgonyPlayer"] = { + name = "Inevitable Agony", + baseTypeName = "Inevitable Agony", + fromTree = true, + color = 4, + description = "Curse all targets in an area after a short delay, causing a portion of Damage they take from Hits to be tracked by the Curse debuff. When the debuff's duration expires, they take that tracked damage again, all at once.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0.7, + qualityStats = { + { "base_curse_delay_+%", -0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, + }, + statSets = { + [1] = { + label = "Inevitable Agony", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "synchronisation_of_pain", baseFlags = { - attack = true, - area = true, }, constantStats = { - { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, + { "curse_delay_duration_ms", 1500 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "is_area_damage", - "skill_is_infusion_skill", - "cannot_consume_power_frenzy_endurance_charges", + "base_skill_effect_duration", + "active_skill_base_area_of_effect_radius", + "curse_pain_synchronisation_base_recorded_damage_%_to_apply", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "base_skill_effect_duration", }, levels = { - [1] = { baseMultiplier = 0.5, actorLevel = 1, }, - [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + [1] = { 6000, 15, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, 21, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, 21, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, 23, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, 25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, 27, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, 27, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, 31, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, 33, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, 33, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 32, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 33, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 34, 35, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 34, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 35, 37, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 36, 37, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 37, 38, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 38, 39, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 39, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 39, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 40, 41, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 40, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 41, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 41, 43, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 42, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 42, 45, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 42, 45, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 43, 46, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 43, 47, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 44, 47, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2611,7 +3463,7 @@ skills["IntoTheBreachPlayer"] = { skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.GeneratesRemnants] = true, }, castTime = 0, qualityStats = { - { "breach_flame_spawn_rate_ms", -15 }, + { "remnant_effect_+%", 0.75 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -2672,48 +3524,49 @@ skills["IntoTheBreachPlayer"] = { }, stats = { "breach_flame_spawn_rate_ms", + "remnant_effect_+%", }, levels = { - [1] = { 1400, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 1390, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1380, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1370, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 1360, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 1350, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 1340, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 1330, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 1320, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 1310, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 1300, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 1290, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 1280, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 1270, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 1260, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 1250, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 1240, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 1230, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 1220, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 1210, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 1200, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 1190, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 1180, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 1170, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 1160, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 1150, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 1140, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 1130, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 1120, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 1110, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 1105, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 1100, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 1095, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 1090, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 1085, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 1080, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 1075, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 1070, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 1065, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 1060, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 1400, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1390, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1380, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1370, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1360, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1350, 13, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1340, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1330, 18, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1320, 21, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 1310, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 1300, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 1290, 29, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 1280, 31, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 1270, 34, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 1260, 36, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 1250, 39, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1240, 42, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1230, 44, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1220, 47, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1210, 50, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1200, 52, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1190, 54, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1180, 56, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1170, 58, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1160, 60, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1150, 62, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1140, 64, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1130, 66, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1120, 68, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1110, 70, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1105, 72, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1100, 74, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1095, 76, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1090, 78, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1085, 80, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1080, 82, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1075, 84, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1070, 86, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1065, 88, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1060, 90, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2723,7 +3576,7 @@ skills["LifeRemnantsPlayer"] = { baseTypeName = "Life Remnants", fromTree = true, color = 4, - description = "Drink the blood of your enemies to restore your Life. While active, enemies you kill have a chance to spawn a Life Remnant, and Critically Hitting a target spawns a Life Remnant every few seconds. Picking up a Life Remnant grants you Life which can Overflow maximum Life.", + description = "Drink the blood of your enemies to restore your Life. While active, enemies you kill have a chance to spawn a Life Remnant, and Hitting a target spawns a Life Remnant every few seconds. Picking up a Life Remnant grants you Life which can Overflow maximum Life.", skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, }, castTime = 0, qualityStats = { @@ -2780,7 +3633,7 @@ skills["LifeRemnantsPlayer"] = { }, constantStats = { { "life_remnants_chance_to_spawn_orb_on_killing_enemy_%", 25 }, - { "life_remnants_spawn_remnant_on_crit_vs_enemy_every_X_ms", 2000 }, + { "life_remnants_spawn_remnant_on_hit_vs_enemy_every_X_ms", 3000 }, { "skill_desired_amount_override", 1 }, { "base_remnant_duration_ms", 8000 }, }, @@ -2903,6 +3756,7 @@ skills["Melee1HMacePlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -3019,6 +3873,7 @@ skills["Melee2HMacePlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -3138,122 +3993,7 @@ skills["MeleeMaceMacePlayer"] = { stats = { "is_area_damage", "skill_double_hits_when_dual_wielding", - }, - levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["ChaosSpearTriggerChaosInfusionPlayer"] = { - name = "Chaotic Infusion", - baseTypeName = "Chaotic Infusion", - fromItem = true, - color = 4, - description = "Grants your weapon Infusion. Non-Melee Projectile Attacks with that weapon Consume Infusions to Infuse the first Projectile fired, causing it to explode at the end of its flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.GeneratesInfusion] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, }, - castTime = 1, - qualityStats = { - }, - levels = { - [1] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.55, levelRequirement = 3, }, - [3] = { baseMultiplier = 0.61, levelRequirement = 6, }, - [4] = { baseMultiplier = 0.66, levelRequirement = 10, }, - [5] = { baseMultiplier = 0.72, levelRequirement = 14, }, - [6] = { baseMultiplier = 0.77, levelRequirement = 18, }, - [7] = { baseMultiplier = 0.83, levelRequirement = 22, }, - [8] = { baseMultiplier = 0.88, levelRequirement = 26, }, - [9] = { baseMultiplier = 0.93, levelRequirement = 31, }, - [10] = { baseMultiplier = 0.99, levelRequirement = 36, }, - [11] = { baseMultiplier = 1.05, levelRequirement = 41, }, - [12] = { baseMultiplier = 1.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 1.17, levelRequirement = 52, }, - [14] = { baseMultiplier = 1.25, levelRequirement = 58, }, - [15] = { baseMultiplier = 1.32, levelRequirement = 64, }, - [16] = { baseMultiplier = 1.41, levelRequirement = 66, }, - [17] = { baseMultiplier = 1.5, levelRequirement = 72, }, - [18] = { baseMultiplier = 1.59, levelRequirement = 78, }, - [19] = { baseMultiplier = 1.7, levelRequirement = 84, }, - [20] = { baseMultiplier = 1.81, levelRequirement = 90, }, - [21] = { baseMultiplier = 1.93, levelRequirement = 90, }, - [22] = { baseMultiplier = 2.06, levelRequirement = 90, }, - [23] = { baseMultiplier = 2.2, levelRequirement = 90, }, - [24] = { baseMultiplier = 2.34, levelRequirement = 90, }, - [25] = { baseMultiplier = 2.5, levelRequirement = 90, }, - [26] = { baseMultiplier = 2.67, levelRequirement = 90, }, - [27] = { baseMultiplier = 2.84, levelRequirement = 90, }, - [28] = { baseMultiplier = 3.03, levelRequirement = 90, }, - [29] = { baseMultiplier = 3.24, levelRequirement = 90, }, - [30] = { baseMultiplier = 3.45, levelRequirement = 90, }, - [31] = { baseMultiplier = 3.68, levelRequirement = 90, }, - [32] = { baseMultiplier = 3.93, levelRequirement = 90, }, - [33] = { baseMultiplier = 4.19, levelRequirement = 90, }, - [34] = { baseMultiplier = 4.47, levelRequirement = 90, }, - [35] = { baseMultiplier = 4.76, levelRequirement = 90, }, - [36] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [37] = { baseMultiplier = 5.42, levelRequirement = 90, }, - [38] = { baseMultiplier = 5.78, levelRequirement = 90, }, - [39] = { baseMultiplier = 6.17, levelRequirement = 90, }, - [40] = { baseMultiplier = 6.58, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Chaotic Infusion", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "trigger_chaos_infusion", - baseFlags = { - attack = true, - area = true, - }, - constantStats = { - { "chance_to_be_triggered_by_chaos_spear_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_physical_damage_%_to_convert_to_chaos", 100 }, - }, - stats = { - "is_area_damage", - "skill_is_infusion_skill", - "cannot_consume_power_frenzy_endurance_charges", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -3309,7 +4049,7 @@ skills["ManifestWeaponPlayer"] = { }, color = 4, description = "Manifest a copy of your main hand Melee Martial Weapon as an immortal Companion to fight by your side. In addition to its standard Strikes, the Manifested Weapon gains an additional Attack depending on its weapon type.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -3379,6 +4119,15 @@ skills["ManifestWeaponPlayer"] = { label = "Manifest Weapon", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, + }, baseFlags = { spell = true, minion = true, @@ -3386,8 +4135,8 @@ skills["ManifestWeaponPlayer"] = { }, constantStats = { { "skill_desired_initial_amount", 1 }, - { "minion_1%_damage_+%_per_X_player_strength", 3 }, - { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 }, + { "minion_1%_damage_+%_per_X_player_strength", 1 }, + { "minion_1%_attack_speed_+%_per_X_player_dexterity", 3 }, }, stats = { "is_resummoning_minion", @@ -3443,52 +4192,52 @@ skills["MeditatePlayer"] = { fromTree = true, color = 4, description = "Channel to Recharge Energy Shield and allow that Recharge to Overflow. Channelling ends when you take damage or your Energy Shield is double its normal maximum. This skill cannot be used if your Energy Shield is already double its normal maximum or you have no maximum Energy Shield.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { { "meditate_energy_shield_recharge_rate_+%_final", 0.5 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 10, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 9.9, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 9.8, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 9.7, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 9.6, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 9.5, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 9.4, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 9.3, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 9.2, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 9.1, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 9, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8.9, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8.8, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8.7, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8.6, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8.5, }, - [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8.4, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8.3, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8.2, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8.1, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 7.9, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 7.8, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 7.7, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 7.6, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 7.5, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 7.4, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 7.3, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 7.2, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 7.1, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 7.05, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 7, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 6.95, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 6.9, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 6.85, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 6.8, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 6.75, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 6.7, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 6.65, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 6.6, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 7, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 6.9, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 6.8, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 6.7, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 6.6, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 6.5, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 6.4, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 6.3, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 6.2, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 6.1, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 6, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5.9, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5.8, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5.7, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5.6, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5.5, }, + [17] = { storedUses = 1, levelRequirement = 72, cooldown = 5.4, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5.3, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5.2, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5.1, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 4.9, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 4.8, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 4.7, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 4.6, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 4.5, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 4.4, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 4.3, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 4.2, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 4.1, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 4.05, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 4, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 3.95, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 3.9, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 3.85, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 3.8, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 3.75, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 3.7, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 3.65, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 3.6, }, }, statSets = { [1] = { @@ -3500,7 +4249,7 @@ skills["MeditatePlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "meditate_energy_shield_recharge_rate_+%_final", @@ -3508,46 +4257,46 @@ skills["MeditatePlayer"] = { "base_deal_no_damage", }, levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 1, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 3, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 6, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 7, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 9, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 10, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 12, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 13, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 15, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 16, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 18, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 19, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 21, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 22, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 24, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 25, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 27, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 28, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 30, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 33, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 34, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 36, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 37, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 39, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 40, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 42, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 43, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 44, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 45, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 45, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 46, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 47, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 48, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 48, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 49, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 50, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 51, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 24, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 28, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 36, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 40, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 44, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 48, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 52, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 56, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 60, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 64, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 68, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 72, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 76, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 80, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 84, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 88, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 92, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 104, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 108, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 112, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 116, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 120, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 124, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 128, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 132, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 136, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 140, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 144, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 148, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 152, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 156, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 160, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 164, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 168, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 172, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 176, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 180, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -3558,7 +4307,7 @@ skills["ParryPlayer"] = { fromTree = true, color = 4, description = "Ready your Buckler to parry the next Strike or Projectile that would Hit you, Blocking the Hit and retaliating with a quick sweep that leaves enemies off balance, causing them to take massively increased Attack damage for a short duration. Parrying causes you to accumulate Heavy Stun buildup. You cannot Evade a Hit you could parry, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", - skillTypes = { [SkillType.RequiresBuckler] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.RequiresBuckler] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -3582,15 +4331,15 @@ skills["ParryPlayer"] = { shieldAttack = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_+%_final_while_performing_action", -50 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "parry_blocked_projectile_distance", 10 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_maximum_active_block_distance", 10 }, { "base_parry_buff_damage_taken_+%_final_to_apply", 50 }, { "base_skill_effect_duration", 2000 }, { "active_skill_hit_damage_stun_multiplier_+%_final", 400 }, { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, - { "stun_threshold_+%_final_while_performing_action", -65 }, + { "stun_threshold_+%_final_while_performing_action", -60 }, { "active_skill_override_turn_duration_ms", 100 }, }, stats = { @@ -3604,6 +4353,7 @@ skills["ParryPlayer"] = { "quality_display_base_skill_effect_duration_is_gem", "base_skill_show_average_damage_instead_of_dps", "replace_off_hand_unarmed_attack_stats_with_shield_type", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { 0.80000001192093, 1, statInterpolation = { 3, 3, }, actorLevel = 1, }, @@ -3611,145 +4361,40 @@ skills["ParryPlayer"] = { }, } } -skills["PoisonousConcoctionPlayer"] = { - name = "Poisonous Concoction", - baseTypeName = "Poisonous Concoction", - fromTree = true, +skills["PinnacleOfPowerPlayer"] = { + name = "Pinnacle of Power", + baseTypeName = "Pinnacle of Power", + fromItem = true, color = 4, - description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Chaos attack damage in an area. Poison inflicted by this skill has more effect.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Physical] = true, }, - weaponTypes = { - ["None"] = true, - }, - castTime = 1, + description = "Consume all Power Charges to master the elements, gaining Elemental Damage and the ability to apply Elemental Ailments with other damage types. Can only be used while you have maximum Power Charges.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, }, + castTime = 0, qualityStats = { - { "faster_poison_%", 1 }, + { "elemental_power_elemental_damage_+%_final_per_power_charge", 0.1 }, }, levels = { - [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, }, - }, - statSets = { - [1] = { - label = "Poisonous Concoction", - baseEffectiveness = 3.9000000953674, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "throw_flask_poison", - statMap = { - ["flask_throw_poison_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison), - }, - }, + [20] = { storedUses = 1, levelRequirement = 0, cooldown = 4, cost = { Mana = 93, }, }, + }, + statSets = { + [1] = { + label = "Pinnacle of Power", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "elemental_power", baseFlags = { - attack = true, - projectile = true, - unarmed = true, - area = true, + buff = true, + duration = true, }, constantStats = { - { "flask_throw_base_charges_used", 5 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 15 }, - { "flask_throw_poison_effect_+%_final", 200 }, - { "throw_flask_effects_type", 4 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "main_hand_base_weapon_attack_duration_ms", 714 }, - { "base_chance_to_poison_on_hit_%", 100 }, + { "elemental_power_buff_duration_per_power_charge_ms", 5000 }, + { "elemental_power_elemental_damage_+%_final_per_power_charge", 8 }, }, stats = { - "main_hand_weapon_minimum_physical_damage", - "main_hand_weapon_maximum_physical_damage", - "base_is_projectile", - "projectile_behaviour_only_explode", - "can_perform_skill_while_moving", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "is_area_damage", - }, - notMinionStat = { - "main_hand_weapon_minimum_physical_damage", - "main_hand_weapon_maximum_physical_damage", + "base_skill_is_instant", + "base_deal_no_damage", + "quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem", }, levels = { - [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 83, 124, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 97, 146, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 113, 169, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 146, 219, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 164, 246, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 202, 302, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 222, 332, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 242, 363, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 264, 396, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 333, 499, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 357, 536, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 382, 574, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 435, 653, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 463, 694, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 550, 824, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 580, 870, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 611, 917, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 643, 965, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 676, 1014, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 709, 1064, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 744, 1115, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 814, 1221, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 851, 1276, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 888, 1332, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 926, 1389, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 965, 1447, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [20] = { actorLevel = 60, }, }, }, } @@ -3820,6 +4465,7 @@ skills["MeleeUnarmedPlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -3936,6 +4582,7 @@ skills["MeleeQuarterstaffPlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -3987,8 +4634,8 @@ skills["ShieldBlockPlayer"] = { baseTypeName = "Raise Shield", fromItem = true, color = 4, - description = "Raise your Shield to Block all incoming Blockable hits. Release immediately after Blocking to perform a Shield Bash that damages and Stuns enemies. While your Shield is raised you cannot be Light Stunned by hits you Block, but Blocking too much damage may Heavy Stun you. You cannot Evade while your Shield is raised, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", - skillTypes = { [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Melee] = true, }, + description = "Raise your Shield to Block all incoming Blockable hits. Release immediately after Blocking when an enemy is close to perform a Shield Bash, damaging and Stunning enemies. While your Shield is raised you cannot be Light Stunned by hits you Block, but Blocking too much damage may Heavy Stun you. You cannot Evade while your Shield is raised, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", + skillTypes = { [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -4007,16 +4654,15 @@ skills["ShieldBlockPlayer"] = { melee = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_+%_final_while_performing_action", -50 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "channel_skill_end_animation_duration_override_ms", 35 }, { "active_block_light_stun_threshold_+%_final", 50 }, { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, { "skill_animation_duration_multiplier_override", 4 }, { "base_minimum_channel_time_ms", 250 }, { "raise_shield_base_retaliation_duration_ms", 1000 }, - { "raise_shield_blocked_projectile_distance", 10 }, { "active_skill_hit_damage_stun_multiplier_+%_final", 600 }, { "melee_strike_bonus_attack_distance", 14 }, { "off_hand_minimum_added_physical_damage_per_5_shield_armour", 3 }, @@ -4032,6 +4678,7 @@ skills["ShieldBlockPlayer"] = { "base_skill_show_average_damage_instead_of_dps", "replace_off_hand_unarmed_attack_stats_with_shield_type", "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -4045,7 +4692,7 @@ skills["RitualSacrificePlayer"] = { fromTree = true, color = 4, description = "Sacrifice the Corpse of a Rare Monster to grant you its Modifiers for a duration.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.TargetsDestructibleRareCorpses] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.TargetsDestructibleRareCorpses] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 5, qualityStats = { { "base_skill_effect_duration", 100 }, @@ -4105,7 +4752,7 @@ skills["RitualSacrificePlayer"] = { { "head_hunt_%_life_to_remove_on_self_stab", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "base_skill_effect_duration", @@ -4165,14 +4812,14 @@ skills["ShatteringConcoctionPlayer"] = { baseTypeName = "Shattering Concoction", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Cold attack damage in an area and inflicting Cold Exposure.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, }, + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Cold Attack damage in an area and inflicting Exposure.", + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, }, castTime = 1, qualityStats = { - { "cold_exposure_effect_+%", 1 }, + { "freeze_duration_+%", 1 }, }, levels = { [1] = { critChance = 11, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, @@ -4221,7 +4868,7 @@ skills["ShatteringConcoctionPlayer"] = { label = "Shattering Concoction", baseEffectiveness = 3.9000000953674, incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "throw_flask_cold", + statDescriptionScope = "shattering_concoction", statMap = { ["flask_throw_cold_exposure_ms"] = { mod("ColdExposureChance", "BASE", nil), @@ -4238,14 +4885,12 @@ skills["ShatteringConcoctionPlayer"] = { constantStats = { { "flask_throw_base_charges_used", 5 }, { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 15 }, - { "flask_throw_cold_exposure_ms", 4000 }, + { "active_skill_base_area_of_effect_radius", 18 }, { "throw_flask_effects_type", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_base_weapon_attack_duration_ms", 714 }, - { "active_skill_hit_damage_freeze_multiplier_+%_final", 200 }, }, stats = { "main_hand_weapon_minimum_cold_damage", @@ -4255,6 +4900,9 @@ skills["ShatteringConcoctionPlayer"] = { "can_perform_skill_while_moving", "replace_main_hand_unarmed_attack_stats_with_nothing_type", "is_area_damage", + "has_freeze_cull", + "inflict_all_exposure_on_hit", + "active_skill_show_freeze_range", }, levels = { [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, }, @@ -4310,7 +4958,7 @@ skills["SorceryWardPlayer"] = { skillTypes = { [SkillType.Spell] = true, [SkillType.Aegis] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, }, castTime = 1, qualityStats = { - { "aegis_unique_shield_max_value_from_%_armour_evasion", 0.5 }, + { "aegis_unique_shield_max_value_from_%_armour_evasion", 0.25 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -4486,6 +5134,7 @@ skills["MeleeSpearOffHandPlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -4603,6 +5252,7 @@ skills["MeleeSpearPlayer"] = { }, stats = { "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -4655,7 +5305,7 @@ skills["SpearThrowPlayer"] = { fromItem = true, color = 4, description = "Hurl your Spear with force. Consumes a Frenzy Charge if you have one to cause the Spear to explode at the end of its flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -4716,7 +5366,7 @@ skills["SpearThrowPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_weapon_range_+", 105 }, }, stats = { @@ -4782,7 +5432,7 @@ skills["SpearThrowPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "main_hand_weapon_range_+", 105 }, { "active_skill_base_area_of_effect_radius", 20 }, }, @@ -4911,7 +5561,7 @@ skills["SummonInfernalHoundPlayer"] = { constantStats = { { "display_minion_monster_type", 8 }, { "infernal_familiar_minion_burns_for_%_max_life", 20 }, - { "infernal_familiar_minion_burn_radius", 15 }, + { "infernal_familiar_minion_burn_radius", 25 }, { "skill_desired_initial_amount", 1 }, }, stats = { @@ -4970,7 +5620,7 @@ skills["SupportingFirePlayer"] = { }, color = 4, description = "Recruit artillery Minions that takes up positions behind you. They will lay in wait for your Command then fire volleys of arrows at the target location.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, }, + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.NoAttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, }, castTime = 0, qualityStats = { @@ -5023,84 +5673,26 @@ skills["SupportingFirePlayer"] = { label = "Minion Info", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", - baseFlags = { - minion = true, - permanentMinion = true, - }, - constantStats = { - { "minion_1%_damage_+%_per_X_player_strength", 3 }, - { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 }, - { "skill_desired_amount_override", 1 }, - }, - stats = { - "display_statset_no_hit_damage", - }, - levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_area_of_effect_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, }, - }, - [2] = { - label = "Command", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", baseFlags = { minion = true, permanentMinion = true, }, constantStats = { - { "minion_1%_damage_+%_per_X_player_strength", 3 }, - { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 }, + { "minion_1%_damage_+%_per_X_player_strength", 1 }, + { "minion_1%_area_of_effect_+%_per_X_player_dexterity", 3 }, { "skill_desired_amount_override", 1 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, }, stats = { "display_statset_no_hit_damage", - "minions_do_not_move_to_skill_target", - "can_perform_skill_while_moving", - "skill_is_command", - "base_deal_no_damage", - "use_supporting_fire_settings", }, levels = { [1] = { actorLevel = 1, }, @@ -5153,7 +5745,7 @@ skills["TemperWeaponPlayer"] = { fromTree = true, color = 4, description = "Channel to temper your main hand Melee Martial Weapon. Each hit of the hammer against the anvil Empowers subsequent Attacks to Combust when Hitting enemies.", - skillTypes = { [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Flail"] = true, @@ -5172,46 +5764,46 @@ skills["TemperWeaponPlayer"] = { { "skill_speed_+%", 1 }, }, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 5, cost = { ManaPerMinute = 180, }, }, - [2] = { storedUses = 1, levelRequirement = 3, cooldown = 5, cost = { ManaPerMinute = 199, }, }, - [3] = { storedUses = 1, levelRequirement = 6, cooldown = 5, cost = { ManaPerMinute = 221, }, }, - [4] = { storedUses = 1, levelRequirement = 10, cooldown = 5, cost = { ManaPerMinute = 244, }, }, - [5] = { storedUses = 1, levelRequirement = 14, cooldown = 5, cost = { ManaPerMinute = 271, }, }, - [6] = { storedUses = 1, levelRequirement = 18, cooldown = 5, cost = { ManaPerMinute = 300, }, }, - [7] = { storedUses = 1, levelRequirement = 22, cooldown = 5, cost = { ManaPerMinute = 333, }, }, - [8] = { storedUses = 1, levelRequirement = 26, cooldown = 5, cost = { ManaPerMinute = 369, }, }, - [9] = { storedUses = 1, levelRequirement = 31, cooldown = 5, cost = { ManaPerMinute = 409, }, }, - [10] = { storedUses = 1, levelRequirement = 36, cooldown = 5, cost = { ManaPerMinute = 453, }, }, - [11] = { storedUses = 1, levelRequirement = 41, cooldown = 5, cost = { ManaPerMinute = 502, }, }, - [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5, cost = { ManaPerMinute = 556, }, }, - [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5, cost = { ManaPerMinute = 616, }, }, - [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5, cost = { ManaPerMinute = 683, }, }, - [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5, cost = { ManaPerMinute = 757, }, }, - [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5, cost = { ManaPerMinute = 839, }, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 5, cost = { ManaPerMinute = 174, }, }, + [2] = { storedUses = 1, levelRequirement = 3, cooldown = 5, cost = { ManaPerMinute = 201, }, }, + [3] = { storedUses = 1, levelRequirement = 6, cooldown = 5, cost = { ManaPerMinute = 231, }, }, + [4] = { storedUses = 1, levelRequirement = 10, cooldown = 5, cost = { ManaPerMinute = 262, }, }, + [5] = { storedUses = 1, levelRequirement = 14, cooldown = 5, cost = { ManaPerMinute = 296, }, }, + [6] = { storedUses = 1, levelRequirement = 18, cooldown = 5, cost = { ManaPerMinute = 332, }, }, + [7] = { storedUses = 1, levelRequirement = 22, cooldown = 5, cost = { ManaPerMinute = 371, }, }, + [8] = { storedUses = 1, levelRequirement = 26, cooldown = 5, cost = { ManaPerMinute = 412, }, }, + [9] = { storedUses = 1, levelRequirement = 31, cooldown = 5, cost = { ManaPerMinute = 456, }, }, + [10] = { storedUses = 1, levelRequirement = 36, cooldown = 5, cost = { ManaPerMinute = 503, }, }, + [11] = { storedUses = 1, levelRequirement = 41, cooldown = 5, cost = { ManaPerMinute = 553, }, }, + [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5, cost = { ManaPerMinute = 606, }, }, + [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5, cost = { ManaPerMinute = 663, }, }, + [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5, cost = { ManaPerMinute = 724, }, }, + [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5, cost = { ManaPerMinute = 789, }, }, + [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5, cost = { ManaPerMinute = 857, }, }, [17] = { storedUses = 1, levelRequirement = 72, cooldown = 5, cost = { ManaPerMinute = 930, }, }, - [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5, cost = { ManaPerMinute = 1030, }, }, - [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5, cost = { ManaPerMinute = 1142, }, }, - [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1265, }, }, - [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1402, }, }, - [22] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1553, }, }, - [23] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1721, }, }, - [24] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1908, }, }, - [25] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2114, }, }, - [26] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2342, }, }, - [27] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2596, }, }, - [28] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2876, }, }, - [29] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3187, }, }, - [30] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3532, }, }, - [31] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3914, }, }, - [32] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4337, }, }, - [33] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4806, }, }, - [34] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 5325, }, }, - [35] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 5901, }, }, - [36] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 6539, }, }, - [37] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 7246, }, }, - [38] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 8029, }, }, - [39] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 8897, }, }, - [40] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 9859, }, }, + [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5, cost = { ManaPerMinute = 1008, }, }, + [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5, cost = { ManaPerMinute = 1091, }, }, + [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1179, }, }, + [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1272, }, }, + [22] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1371, }, }, + [23] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1476, }, }, + [24] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1588, }, }, + [25] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1706, }, }, + [26] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1831, }, }, + [27] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1964, }, }, + [28] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2105, }, }, + [29] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2254, }, }, + [30] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2412, }, }, + [31] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2580, }, }, + [32] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2757, }, }, + [33] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2944, }, }, + [34] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3143, }, }, + [35] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3352, }, }, + [36] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3574, }, }, + [37] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3809, }, }, + [38] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4057, }, }, + [39] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4319, }, }, + [40] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4596, }, }, }, statSets = { [1] = { @@ -5742,7 +6334,7 @@ skills["UnboundAvatarPlayer"] = { fromTree = true, color = 4, description = "Gain Unbound Fury by inflicting Elemental Ailments with Hits on enemies. Once you reach maximum Unbound Fury, consume it to become Unbound for a duration, vastly augmenting your Elemental prowess.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 0, qualityStats = { { "base_skill_effect_duration", 50 }, @@ -5801,7 +6393,7 @@ skills["UnboundAvatarPlayer"] = { { "display_ailment_bearer_charge_interval", 1 }, { "ailment_bearer_elemental_damage_+%_final", 40 }, { "unbound_ailment_elemental_ailment_chance_+%_final", 80 }, - { "unbound_ailment_elemental_ailment_buildup_+%_final", 40 }, + { "unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final", 40 }, { "ailment_bearer_required_stacks_to_use", 100 }, }, stats = { @@ -5856,210 +6448,84 @@ skills["UnboundAvatarPlayer"] = { }, } } -skills["UniqueBreachLightningBoltPlayer"] = { - name = "Lightning Bolt", - baseTypeName = "Lightning Bolt", - fromItem = true, - color = 3, - description = "Call down a Shocking bolt of Lightning to strike enemies in a small area.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, - castTime = 0.85, - qualityStats = { - }, - levels = { - [1] = { critChance = 10, storedUses = 1, levelRequirement = 0, cooldown = 0.5, cost = { Mana = 0, }, }, - [2] = { critChance = 10, storedUses = 1, levelRequirement = 3, cooldown = 0.5, cost = { Mana = 0, }, }, - [3] = { critChance = 10, storedUses = 1, levelRequirement = 6, cooldown = 0.5, cost = { Mana = 0, }, }, - [4] = { critChance = 10, storedUses = 1, levelRequirement = 10, cooldown = 0.5, cost = { Mana = 0, }, }, - [5] = { critChance = 10, storedUses = 1, levelRequirement = 14, cooldown = 0.5, cost = { Mana = 0, }, }, - [6] = { critChance = 10, storedUses = 1, levelRequirement = 18, cooldown = 0.5, cost = { Mana = 0, }, }, - [7] = { critChance = 10, storedUses = 1, levelRequirement = 22, cooldown = 0.5, cost = { Mana = 0, }, }, - [8] = { critChance = 10, storedUses = 1, levelRequirement = 26, cooldown = 0.5, cost = { Mana = 0, }, }, - [9] = { critChance = 10, storedUses = 1, levelRequirement = 31, cooldown = 0.5, cost = { Mana = 0, }, }, - [10] = { critChance = 10, storedUses = 1, levelRequirement = 36, cooldown = 0.5, cost = { Mana = 0, }, }, - [11] = { critChance = 10, storedUses = 1, levelRequirement = 41, cooldown = 0.5, cost = { Mana = 0, }, }, - [12] = { critChance = 10, storedUses = 1, levelRequirement = 46, cooldown = 0.5, cost = { Mana = 0, }, }, - [13] = { critChance = 10, storedUses = 1, levelRequirement = 52, cooldown = 0.5, cost = { Mana = 0, }, }, - [14] = { critChance = 10, storedUses = 1, levelRequirement = 58, cooldown = 0.5, cost = { Mana = 0, }, }, - [15] = { critChance = 10, storedUses = 1, levelRequirement = 64, cooldown = 0.5, cost = { Mana = 0, }, }, - [16] = { critChance = 10, storedUses = 1, levelRequirement = 66, cooldown = 0.5, cost = { Mana = 0, }, }, - [17] = { critChance = 10, storedUses = 1, levelRequirement = 72, cooldown = 0.5, cost = { Mana = 0, }, }, - [18] = { critChance = 10, storedUses = 1, levelRequirement = 78, cooldown = 0.5, cost = { Mana = 0, }, }, - [19] = { critChance = 10, storedUses = 1, levelRequirement = 84, cooldown = 0.5, cost = { Mana = 0, }, }, - [20] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [21] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [22] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [23] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [24] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [25] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [26] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [27] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [28] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [29] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [30] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [31] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [32] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [33] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [34] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [35] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [36] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [37] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [38] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [39] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - [40] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, }, - }, - statSets = { - [1] = { - label = "Lightning Bolt", - baseEffectiveness = 2.2999999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "lightning_bolt", - baseFlags = { - spell = true, - area = true, - }, - constantStats = { - { "active_skill_shock_chance_+%_final", 200 }, - { "active_skill_base_area_of_effect_radius", 8 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "triggered_on_critical_strike_%", 100 }, - }, - stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - "is_area_damage", - "can_perform_skill_while_moving", - }, - notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - }, - levels = { - [1] = { 1, 17, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 32, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 2, 42, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 3, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 5, 93, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 8, 149, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 9, 172, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 10, 197, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 12, 225, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 13, 256, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 15, 291, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 17, 330, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 20, 373, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 22, 422, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 25, 475, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 28, 535, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 32, 602, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 36, 677, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 40, 760, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 45, 854, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 50, 958, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 57, 1075, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 64, 1207, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 71, 1354, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 80, 1519, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, 1705, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 101, 1914, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 113, 2150, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 127, 2415, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 143, 2714, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 161, 3051, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 181, 3433, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 203, 3864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 229, 4352, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 258, 4905, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["CrossbowRequiemAmmoPlayer"] = { - name = "Compose Requiem", - baseTypeName = "Compose Requiem", - fromItem = true, - color = 1, - description = "Your weapon passively accumulates anguish from the tormented souls within. When fully charged, use this skill to compose the Requiem, transforming your Crossbow shot into a torrent of anguish for a short, fixed amount of time. Does not use Ammunition.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, }, +skills["VoidIllusionPlayer"] = { + name = "Void Illusion", + baseTypeName = "Void Illusion", + fromTree = true, + color = 4, + description = "While active, creates a short-lived illusory copy of yourself whenever you dodge roll. The copy can be damaged by enemies, and copies that are destroyed by an enemy will cause damaging explosions. Copies created this way have 1 Life.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, }, weaponTypes = { + ["None"] = true, + ["One Handed Mace"] = true, + ["Flail"] = true, + ["Two Handed Sword"] = true, + ["Dagger"] = true, + ["Claw"] = true, ["Crossbow"] = true, + ["Bow"] = true, + ["Spear"] = true, + ["Two Handed Axe"] = true, + ["Two Handed Mace"] = true, + ["One Handed Axe"] = true, + ["Staff"] = true, + ["One Handed Sword"] = true, }, - castTime = 1, + castTime = 0, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 23, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 25, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 28, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 31, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 34, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 38, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 42, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 47, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 52, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 57, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 64, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 71, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 78, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 87, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 96, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 107, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 118, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 131, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 145, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 161, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 179, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 220, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 243, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 270, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 299, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 331, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 367, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 407, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 451, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 500, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 554, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 614, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 680, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 754, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 835, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 925, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 1026, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 1136, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 1259, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Compose Requiem", + label = "Buff", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "rapid_shot_requiem_ammo", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, - constantStats = { - { "action_allowed_queue_time_override_ms", 1000 }, - { "movement_speed_+%_final_while_performing_action", -30 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "rapidshot_requiem_number_of_stacks_per_minute", 200 }, - { "rapidshot_requiem_base_buff_count_requirement", 100 }, - { "rapidshot_requiem_active_duration_ms", 12000 }, - }, stats = { - "action_can_be_used_in_aiming_stance", - "can_perform_skill_while_moving", "base_deal_no_damage", - "display_statset_hide_usage_stats", - "crossbow_ammo_skill_does_not_transition", - "crossbow_ammo_has_no_ammo", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", }, levels = { [1] = { actorLevel = 1, }, @@ -6106,85 +6572,72 @@ skills["CrossbowRequiemAmmoPlayer"] = { }, } } -skills["CrossbowRequiemPlayer"] = { - name = "Requiem", +skills["VoidIllusionSpawnPlayer"] = { + name = "Void Illusion", hidden = true, - fromItem = true, - description = "Unleashes a torrent of anguish that bombard the target area, dealing damage in an area on impact. Does not use Ammunition and can be fired freely until the Requiem ends.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CrossbowSkill] = true, }, - weaponTypes = { - ["Crossbow"] = true, - }, + fromTree = true, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, + { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { attackSpeedMultiplier = 300, baseMultiplier = 3, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 300, baseMultiplier = 3.3, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 300, baseMultiplier = 3.63, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 300, baseMultiplier = 3.96, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 300, baseMultiplier = 4.27, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 300, baseMultiplier = 4.59, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 300, baseMultiplier = 4.92, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 300, baseMultiplier = 5.21, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 300, baseMultiplier = 5.47, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 300, baseMultiplier = 5.74, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 300, baseMultiplier = 6.03, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 300, baseMultiplier = 6.33, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 300, baseMultiplier = 6.65, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 300, baseMultiplier = 6.98, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 300, baseMultiplier = 7.33, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 300, baseMultiplier = 7.7, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 300, baseMultiplier = 8.08, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 300, baseMultiplier = 8.49, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 300, baseMultiplier = 8.91, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 300, baseMultiplier = 9.36, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 300, baseMultiplier = 9.82, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 300, baseMultiplier = 10.32, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 300, baseMultiplier = 10.83, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 300, baseMultiplier = 11.37, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 300, baseMultiplier = 11.94, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 300, baseMultiplier = 12.54, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 300, baseMultiplier = 13.17, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 300, baseMultiplier = 13.82, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 300, baseMultiplier = 14.52, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 300, baseMultiplier = 15.24, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 300, baseMultiplier = 16, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 300, baseMultiplier = 16.8, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 300, baseMultiplier = 17.64, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 300, baseMultiplier = 18.53, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 300, baseMultiplier = 19.45, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 300, baseMultiplier = 20.42, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 300, baseMultiplier = 21.45, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 300, baseMultiplier = 22.52, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 300, baseMultiplier = 23.64, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 300, baseMultiplier = 24.83, levelRequirement = 0, }, + [1] = { baseMultiplier = 1.85, storedUses = 1, levelRequirement = 0, cooldown = 5.9, }, + [2] = { baseMultiplier = 2.04, storedUses = 1, levelRequirement = 0, cooldown = 5.8, }, + [3] = { baseMultiplier = 2.24, storedUses = 1, levelRequirement = 0, cooldown = 5.7, }, + [4] = { baseMultiplier = 2.45, storedUses = 1, levelRequirement = 0, cooldown = 5.6, }, + [5] = { baseMultiplier = 2.65, storedUses = 1, levelRequirement = 0, cooldown = 5.5, }, + [6] = { baseMultiplier = 2.86, storedUses = 1, levelRequirement = 0, cooldown = 5.4, }, + [7] = { baseMultiplier = 3.07, storedUses = 1, levelRequirement = 0, cooldown = 5.3, }, + [8] = { baseMultiplier = 3.27, storedUses = 1, levelRequirement = 0, cooldown = 5.2, }, + [9] = { baseMultiplier = 3.46, storedUses = 1, levelRequirement = 0, cooldown = 5.1, }, + [10] = { baseMultiplier = 3.66, storedUses = 1, levelRequirement = 0, cooldown = 5, }, + [11] = { baseMultiplier = 3.87, storedUses = 1, levelRequirement = 0, cooldown = 4.9, }, + [12] = { baseMultiplier = 4.1, storedUses = 1, levelRequirement = 0, cooldown = 4.8, }, + [13] = { baseMultiplier = 4.34, storedUses = 1, levelRequirement = 0, cooldown = 4.7, }, + [14] = { baseMultiplier = 4.61, storedUses = 1, levelRequirement = 0, cooldown = 4.6, }, + [15] = { baseMultiplier = 4.9, storedUses = 1, levelRequirement = 0, cooldown = 4.5, }, + [16] = { baseMultiplier = 5.2, storedUses = 1, levelRequirement = 0, cooldown = 4.4, }, + [17] = { baseMultiplier = 5.54, storedUses = 1, levelRequirement = 0, cooldown = 4.3, }, + [18] = { baseMultiplier = 5.9, storedUses = 1, levelRequirement = 0, cooldown = 4.2, }, + [19] = { baseMultiplier = 6.28, storedUses = 1, levelRequirement = 0, cooldown = 4.1, }, + [20] = { baseMultiplier = 6.7, storedUses = 1, levelRequirement = 0, cooldown = 4, }, + [21] = { baseMultiplier = 7.15, storedUses = 1, levelRequirement = 0, cooldown = 3.9, }, + [22] = { baseMultiplier = 7.62, storedUses = 1, levelRequirement = 0, cooldown = 3.8, }, + [23] = { baseMultiplier = 8.13, storedUses = 1, levelRequirement = 0, cooldown = 3.7, }, + [24] = { baseMultiplier = 8.67, storedUses = 1, levelRequirement = 0, cooldown = 3.6, }, + [25] = { baseMultiplier = 9.25, storedUses = 1, levelRequirement = 0, cooldown = 3.5, }, + [26] = { baseMultiplier = 9.87, storedUses = 1, levelRequirement = 0, cooldown = 3.4, }, + [27] = { baseMultiplier = 10.52, storedUses = 1, levelRequirement = 0, cooldown = 3.3, }, + [28] = { baseMultiplier = 11.23, storedUses = 1, levelRequirement = 0, cooldown = 3.2, }, + [29] = { baseMultiplier = 11.97, storedUses = 1, levelRequirement = 0, cooldown = 3.1, }, + [30] = { baseMultiplier = 12.77, storedUses = 1, levelRequirement = 0, cooldown = 3, }, + [31] = { baseMultiplier = 13.62, storedUses = 1, levelRequirement = 0, cooldown = 2.95, }, + [32] = { baseMultiplier = 14.53, storedUses = 1, levelRequirement = 0, cooldown = 2.9, }, + [33] = { baseMultiplier = 15.5, storedUses = 1, levelRequirement = 0, cooldown = 2.85, }, + [34] = { baseMultiplier = 16.53, storedUses = 1, levelRequirement = 0, cooldown = 2.8, }, + [35] = { baseMultiplier = 17.63, storedUses = 1, levelRequirement = 0, cooldown = 2.75, }, + [36] = { baseMultiplier = 18.8, storedUses = 1, levelRequirement = 0, cooldown = 2.7, }, + [37] = { baseMultiplier = 20.06, storedUses = 1, levelRequirement = 0, cooldown = 2.65, }, + [38] = { baseMultiplier = 21.39, storedUses = 1, levelRequirement = 0, cooldown = 2.6, }, + [39] = { baseMultiplier = 22.82, storedUses = 1, levelRequirement = 0, cooldown = 2.55, }, + [40] = { baseMultiplier = 24.34, storedUses = 1, levelRequirement = 0, cooldown = 2.5, }, }, statSets = { [1] = { - label = "Requiem", + label = "Void Illusion", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "rapid_shot_requiem", - baseFlags = { - projectile = true, - area = true, + statDescriptionScope = "create_void_illusion", + baseFlags = { + attack = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "active_skill_base_area_of_effect_radius", 16 }, - { "active_skill_base_secondary_area_of_effect_radius", 24 }, - { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 }, + { "base_skill_effect_duration", 2000 }, + { "active_skill_base_area_of_effect_radius", 30 }, }, stats = { - "base_is_projectile", - "action_requires_aiming_stance", - "should_use_additive_aiming_animation", - "projectile_uses_contact_position", - "projectiles_crossbow_barrage", - "can_perform_skill_while_moving", + "hide_minion_frame", + "triggered_by_void_illusion", "quality_display_active_skill_base_area_of_effect_radius_is_gem", }, levels = { @@ -6231,536 +6684,4 @@ skills["CrossbowRequiemPlayer"] = { }, }, } -} -skills["ExplodingPoisonToadPlayer"] = { - name = "Bursting Fen Toad", - baseTypeName = "Bursting Fen Toad", - fromItem = true, - color = 4, - description = "A Poisonous Toad leaps towards enemies and explodes, dealing damage in an area and inflicting Poison.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.UseGlobalStats] = true, }, - castTime = 1, - qualityStats = { - { "trigger_toad_spawn_chance_%", 0.5 }, - }, - levels = { - [1] = { critChance = 5, baseMultiplier = 2.25, levelRequirement = 0, }, - [2] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 3, }, - [3] = { critChance = 5, baseMultiplier = 2.72, levelRequirement = 6, }, - [4] = { critChance = 5, baseMultiplier = 2.97, levelRequirement = 10, }, - [5] = { critChance = 5, baseMultiplier = 3.2, levelRequirement = 14, }, - [6] = { critChance = 5, baseMultiplier = 3.45, levelRequirement = 18, }, - [7] = { critChance = 5, baseMultiplier = 3.69, levelRequirement = 22, }, - [8] = { critChance = 5, baseMultiplier = 3.91, levelRequirement = 26, }, - [9] = { critChance = 5, baseMultiplier = 4.1, levelRequirement = 31, }, - [10] = { critChance = 5, baseMultiplier = 4.31, levelRequirement = 36, }, - [11] = { critChance = 5, baseMultiplier = 4.52, levelRequirement = 41, }, - [12] = { critChance = 5, baseMultiplier = 4.75, levelRequirement = 46, }, - [13] = { critChance = 5, baseMultiplier = 4.99, levelRequirement = 52, }, - [14] = { critChance = 5, baseMultiplier = 5.24, levelRequirement = 58, }, - [15] = { critChance = 5, baseMultiplier = 5.5, levelRequirement = 64, }, - [16] = { critChance = 5, baseMultiplier = 5.77, levelRequirement = 66, }, - [17] = { critChance = 5, baseMultiplier = 6.06, levelRequirement = 72, }, - [18] = { critChance = 5, baseMultiplier = 6.37, levelRequirement = 78, }, - [19] = { critChance = 5, baseMultiplier = 6.68, levelRequirement = 84, }, - [20] = { critChance = 5, baseMultiplier = 7.02, levelRequirement = 90, }, - [21] = { critChance = 5, baseMultiplier = 7.37, levelRequirement = 90, }, - [22] = { critChance = 5, baseMultiplier = 7.74, levelRequirement = 90, }, - [23] = { critChance = 5, baseMultiplier = 8.12, levelRequirement = 90, }, - [24] = { critChance = 5, baseMultiplier = 8.53, levelRequirement = 90, }, - [25] = { critChance = 5, baseMultiplier = 8.96, levelRequirement = 90, }, - [26] = { critChance = 5, baseMultiplier = 9.4, levelRequirement = 90, }, - [27] = { critChance = 5, baseMultiplier = 9.87, levelRequirement = 90, }, - [28] = { critChance = 5, baseMultiplier = 10.37, levelRequirement = 90, }, - [29] = { critChance = 5, baseMultiplier = 10.89, levelRequirement = 90, }, - [30] = { critChance = 5, baseMultiplier = 11.43, levelRequirement = 90, }, - [31] = { critChance = 5, baseMultiplier = 12, levelRequirement = 90, }, - [32] = { critChance = 5, baseMultiplier = 12.6, levelRequirement = 90, }, - [33] = { critChance = 5, baseMultiplier = 13.23, levelRequirement = 90, }, - [34] = { critChance = 5, baseMultiplier = 13.89, levelRequirement = 90, }, - [35] = { critChance = 5, baseMultiplier = 14.59, levelRequirement = 90, }, - [36] = { critChance = 5, baseMultiplier = 15.32, levelRequirement = 90, }, - [37] = { critChance = 5, baseMultiplier = 16.08, levelRequirement = 90, }, - [38] = { critChance = 5, baseMultiplier = 16.89, levelRequirement = 90, }, - [39] = { critChance = 5, baseMultiplier = 17.73, levelRequirement = 90, }, - [40] = { critChance = 5, baseMultiplier = 18.62, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Bursting Fen Toad", - baseEffectiveness = 2, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "exploding_poison_toad", - baseFlags = { - area = true, - attack = true, - }, - constantStats = { - { "trigger_toad_spawn_chance_%", 25 }, - { "base_chance_to_poison_on_hit_%", 100 }, - { "active_skill_base_area_of_effect_radius", 25 }, - }, - stats = { - "attack_minimum_added_physical_damage", - "attack_maximum_added_physical_damage", - "is_area_damage", - }, - levels = { - [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 147, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 237, 356, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 267, 400, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 381, 572, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 436, 654, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 455, 683, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 475, 712, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 495, 742, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["PinnacleOfPowerPlayer"] = { - name = "Pinnacle of Power", - baseTypeName = "Pinnacle of Power", - fromItem = true, - color = 4, - description = "Consume all Power Charges to master the elements, gaining Elemental Damage and the ability to apply Elemental Ailments with other damage types. Can only be used while you have maximum Power Charges.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.HasUsageCondition] = true, }, - castTime = 0, - qualityStats = { - { "elemental_power_elemental_damage_+%_final_per_power_charge", 0.1 }, - }, - levels = { - [20] = { storedUses = 1, levelRequirement = 0, cooldown = 4, cost = { Mana = 93, }, }, - }, - statSets = { - [1] = { - label = "Pinnacle of Power", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "elemental_power", - baseFlags = { - buff = true, - duration = true, - }, - constantStats = { - { "elemental_power_buff_duration_per_power_charge_ms", 5000 }, - { "elemental_power_elemental_damage_+%_final_per_power_charge", 8 }, - }, - stats = { - "base_skill_is_instant", - "base_deal_no_damage", - "quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem", - }, - levels = { - [20] = { actorLevel = 60, }, - }, - }, - } -} -skills["ImpurityPlayer"] = { - name = "Impurity", - baseTypeName = "Impurity", - fromItem = true, - color = 3, - description = "Emit an Aura that boosts the Chaos Resistance of you and Allies in your Presence.", - skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Chaos] = true, [SkillType.AffectsPresence] = true, }, - castTime = 0, - qualityStats = { - { "base_skill_buff_chaos_damage_resistance_%_to_apply", 0.3 }, - }, - levels = { - [1] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 0, }, - [2] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 3, }, - [3] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 6, }, - [4] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 10, }, - [5] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 14, }, - [6] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 18, }, - [7] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 22, }, - [8] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 26, }, - [9] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 31, }, - [10] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 36, }, - [11] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 41, }, - [12] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 46, }, - [13] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 52, }, - [14] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 58, }, - [15] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 64, }, - [16] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 66, }, - [17] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 72, }, - [18] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 78, }, - [19] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 84, }, - [20] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [21] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [22] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [23] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [24] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [25] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [26] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [27] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [28] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [29] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [30] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [31] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [32] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [33] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [34] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [35] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [36] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [37] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [38] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [39] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - [40] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Impurity", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "chaos_resist_aura", - statMap = { - ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = { - mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - }, - baseFlags = { - aura = true, - }, - constantStats = { - { "skill_desired_amount_override", 1 }, - }, - stats = { - "base_skill_buff_chaos_damage_resistance_%_to_apply", - "base_deal_no_damage", - }, - levels = { - [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 11, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 12, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 14, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 16, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 17, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 18, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 21, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 22, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 23, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 24, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 25, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 26, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 27, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 28, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 29, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 30, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 32, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 33, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 34, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 35, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 36, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 37, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 38, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 39, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 40, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 41, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 42, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 43, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 44, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 45, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 46, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 47, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 48, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 49, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["HeartOfIcePlayer"] = { - name = "Heart of Ice", - baseTypeName = "Heart of Ice", - fromItem = true, - color = 3, - description = "Chills all enemies in your Presence.", - skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.Cold] = true, [SkillType.Spell] = true, }, - castTime = 0, - qualityStats = { - { "active_skill_chill_effect_+%_final", 1 }, - }, - levels = { - [1] = { critChance = 11, levelRequirement = 0, }, - [2] = { critChance = 11, levelRequirement = 3, }, - [3] = { critChance = 11, levelRequirement = 6, }, - [4] = { critChance = 11, levelRequirement = 10, }, - [5] = { critChance = 11, levelRequirement = 14, }, - [6] = { critChance = 11, levelRequirement = 18, }, - [7] = { critChance = 11, levelRequirement = 22, }, - [8] = { critChance = 11, levelRequirement = 26, }, - [9] = { critChance = 11, levelRequirement = 31, }, - [10] = { critChance = 11, levelRequirement = 36, }, - [11] = { critChance = 11, levelRequirement = 41, }, - [12] = { critChance = 11, levelRequirement = 46, }, - [13] = { critChance = 11, levelRequirement = 52, }, - [14] = { critChance = 11, levelRequirement = 58, }, - [15] = { critChance = 11, levelRequirement = 64, }, - [16] = { critChance = 11, levelRequirement = 66, }, - [17] = { critChance = 11, levelRequirement = 72, }, - [18] = { critChance = 11, levelRequirement = 78, }, - [19] = { critChance = 11, levelRequirement = 84, }, - [20] = { critChance = 11, levelRequirement = 90, }, - [21] = { critChance = 11, levelRequirement = 90, }, - [22] = { critChance = 11, levelRequirement = 90, }, - [23] = { critChance = 11, levelRequirement = 90, }, - [24] = { critChance = 11, levelRequirement = 90, }, - [25] = { critChance = 11, levelRequirement = 90, }, - [26] = { critChance = 11, levelRequirement = 90, }, - [27] = { critChance = 11, levelRequirement = 90, }, - [28] = { critChance = 11, levelRequirement = 90, }, - [29] = { critChance = 11, levelRequirement = 90, }, - [30] = { critChance = 11, levelRequirement = 90, }, - [31] = { critChance = 11, levelRequirement = 90, }, - [32] = { critChance = 11, levelRequirement = 90, }, - [33] = { critChance = 11, levelRequirement = 90, }, - [34] = { critChance = 11, levelRequirement = 90, }, - [35] = { critChance = 11, levelRequirement = 90, }, - [36] = { critChance = 11, levelRequirement = 90, }, - [37] = { critChance = 11, levelRequirement = 90, }, - [38] = { critChance = 11, levelRequirement = 90, }, - [39] = { critChance = 11, levelRequirement = 90, }, - [40] = { critChance = 11, levelRequirement = 90, }, - }, - statSets = { - [1] = { - label = "Heart of Ice", - baseEffectiveness = 3.7999999523163, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "chilling_aura", - baseFlags = { - buff = true, - aura = true, - }, - constantStats = { - { "skill_desired_amount_override", 1 }, - }, - stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "base_skill_show_average_damage_instead_of_dps", - "skill_chill_magnitude_is_aura_magnitude", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - }, - levels = { - [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 22, 34, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 46, 69, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 80, 119, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 170, 254, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 255, 383, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 332, 498, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 378, 567, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 489, 734, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 556, 834, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 632, 947, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 717, 1076, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 815, 1222, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 925, 1388, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1051, 1577, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1195, 1792, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1359, 2038, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1545, 2318, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1759, 2638, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 2003, 3004, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 2283, 3424, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2603, 3905, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2971, 4456, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 3394, 5090, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3880, 5820, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 4440, 6660, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 5086, 7629, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["IcestormPlayer"] = { - name = "Icestorm", - baseTypeName = "Icestorm", - fromItem = true, - color = 3, - description = "Conjure a hail of icy bolts over the targeted area. Chill and Freeze on enemies in front of you are Consumed to fuel the Icestorm by creating improved bolts.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.SkillConsumesFreeze] = true, }, - castTime = 1.2, - qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, - }, - levels = { - [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 13, }, }, - [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 15, }, }, - [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 17, }, }, - [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 19, }, }, - [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 22, }, }, - [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 25, }, }, - [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 28, }, }, - [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 32, }, }, - [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 37, }, }, - [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 41, }, }, - [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 47, }, }, - [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 53, }, }, - [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 60, }, }, - [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 68, }, }, - [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 77, }, }, - [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 88, }, }, - [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 99, }, }, - [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 112, }, }, - [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 127, }, }, - [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 144, }, }, - [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 163, }, }, - [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 185, }, }, - [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 209, }, }, - [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 237, }, }, - [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 268, }, }, - [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 303, }, }, - [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 343, }, }, - [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 388, }, }, - [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 439, }, }, - [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 497, }, }, - [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 563, }, }, - [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 637, }, }, - [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 721, }, }, - [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 816, }, }, - [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 924, }, }, - [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1045, }, }, - [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1183, }, }, - [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1339, }, }, - [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1516, }, }, - [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1715, }, }, - }, - statSets = { - [1] = { - label = "Storm", - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, - statDescriptionScope = "ice_storm", - baseFlags = { - spell = true, - area = true, - duration = true, - }, - constantStats = { - { "fire_storm_fireball_delay_ms", 150 }, - { "firestorm_max_number_of_storms", 3 }, - { "base_skill_effect_duration", 6000 }, - { "active_skill_base_area_of_effect_radius", 9 }, - { "active_skill_base_secondary_area_of_effect_radius", 26 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 60 }, - { "rain_hit_delay_ms", 150 }, - { "firestorm_improved_bolts_per_chill_consumed", 1 }, - { "firestorm_improved_bolts_per_monster_power_of_freeze_consumed", 1 }, - }, - stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "base_skill_show_average_damage_instead_of_dps", - "is_area_damage", - "can_perform_skill_while_moving", - "cold_damage_cannot_chill", - "never_freeze", - "quality_display_active_skill_base_area_of_effect_radius_is_gem", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - }, - levels = { - [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 17, 26, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 41, 62, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 53, 80, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 60, 91, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 68, 103, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 77, 116, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 110, 165, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 139, 209, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 156, 234, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 175, 263, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 197, 295, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 278, 417, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 312, 468, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 350, 526, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 394, 590, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 442, 663, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 497, 745, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 559, 838, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 628, 943, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 707, 1061, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 797, 1195, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - } } \ No newline at end of file diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua index ba66933843..e4d9be16c3 100644 --- a/src/Data/Skills/spectre.lua +++ b/src/Data/Skills/spectre.lua @@ -74,7 +74,7 @@ skills["AzmeriFabricationDespair"] = { name = "Despair", hidden = true, description = "Curse all targets in an area after a short delay, lowering their Chaos Resistance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1, qualityStats = { }, @@ -115,7 +115,7 @@ skills["AzmeriFabricationEnfeeble"] = { name = "Enfeeble", hidden = true, description = "Curse all targets in an area after a short delay, making them deal less damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1, qualityStats = { }, @@ -161,7 +161,7 @@ skills["AzmeriFabricationTemporalChains"] = { name = "Temporal Chains", hidden = true, description = "Curse all enemies in an area, Slowing them and making other effects on them expire more slowly.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1, qualityStats = { }, @@ -248,7 +248,7 @@ skills["BloodMageBloodTendrils"] = { name = "Exsanguinate", hidden = true, description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies hit by the tendrils take Physical damage and are inflicted with a Debuff that deals Physical damage over time.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1.67, qualityStats = { }, @@ -4349,7 +4349,7 @@ skills["RisenArbalestRainOfArrows"] = { name = "Rain of Arrows", hidden = true, description = "Fires a large number of arrows into the air, to land in an area around the target after a short delay. Consumes your Frenzy Charges on use to fire additional arrows.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.CanRapidFire] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.Unleashable] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4383,7 +4383,7 @@ skills["SerpentClanCurse"] = { name = "Vulnerability", hidden = true, description = "Curse all targets in an area after a short delay, making Hits against them ignore a portion of their Armour.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1.5, qualityStats = { }, @@ -4705,7 +4705,7 @@ skills["SkelemancerSkelenado"] = { name = "Spark", hidden = true, description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1, qualityStats = { }, @@ -5076,7 +5076,7 @@ skills["VaalBloodPriestExsanguinate"] = { name = "Exsanguinate", hidden = true, description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies hit by the tendrils take Physical damage and are inflicted with a Debuff that deals Physical damage over time.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 2.2, qualityStats = { }, diff --git a/src/Data/Skills/sup_dex.lua b/src/Data/Skills/sup_dex.lua index 807f704348..48e4eaef32 100644 --- a/src/Data/Skills/sup_dex.lua +++ b/src/Data/Skills/sup_dex.lua @@ -5,34 +5,35 @@ -- local skills, mod, flag, skill = ... -skills["SupportFasterProjectilesPlayer"] = { - name = "Acceleration", - description = "Supports Projectile skills, making those Projectiles travel faster.", +skills["SupportAdhesiveGrenadesPlayer"] = { + name = "Adhesive Grenades I", + description = "Supports Grenade Skills. Grenades from Supported Skills do not bounce, instead halting movement where they intially land, but doing lower damage when they detonate.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, + requireSkillTypes = { SkillType.Grenade, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + excludeSkillTypes = { }, + gemFamily = { "AdhesiveGrenades",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Acceleration", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Adhesive Grenades I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_faster_projectiles_projectile_speed_+%_final"] = { - mod("ProjectileSpeed", "MORE", nil), + ["support_sticky_grenade_damage_+%_final"] = { + mod("Damage", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_faster_projectiles_projectile_speed_+%_final", 40 }, + { "support_sticky_grenade_damage_+%_final", -10 }, }, stats = { + "grenade_skill_does_not_bounce_off_ground", }, levels = { [1] = { actorLevel = 1, }, @@ -40,20 +41,21 @@ skills["SupportFasterProjectilesPlayer"] = { }, } } -skills["SupportAdherePlayer"] = { - name = "Adhere", - description = "Supports Grenade Skills. Grenades from Supported Skills do not bounce, instead halting movement where they intially land, but doing lower damage when they detonate.", +skills["SupportAdhesiveGrenadesPlayerTwo"] = { + name = "Adhesive Grenades II", + description = "Supports Grenade Skills. Grenades from Supported Skills do not bounce, instead halting movement where they intially land.", color = 2, support = true, requireSkillTypes = { SkillType.Grenade, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "AdhesiveGrenades",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Adhere", + label = "Adhesive Grenades II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -63,9 +65,6 @@ skills["SupportAdherePlayer"] = { }, baseFlags = { }, - constantStats = { - { "support_sticky_grenade_damage_+%_final", -20 }, - }, stats = { "grenade_skill_does_not_bounce_off_ground", }, @@ -75,31 +74,36 @@ skills["SupportAdherePlayer"] = { }, } } -skills["SupportAlignmentPlayer"] = { - name = "Alignment", - description = "Supports Bow Attacks. Supported Skills indicate one of four directions, changing indicated direction when an Attack with Supported Skill matches that direction. Attacks from Supported Skills which match the indicated direction deal much more Damage. Cannot Support Channelled Skills.", +skills["SupportAdhesiveGrenadesPlayerThree"] = { + name = "Adhesive Grenades III", + description = "Supports Grenade Skills. Grenades from Supported Skills do not bounce, instead halting movement where they intially land. Grenades from Supported Skills have longer cooldowns, and a chance to detonate an additional time.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, + requireSkillTypes = { SkillType.Grenade, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Channel, }, + excludeSkillTypes = { }, + gemFamily = { "AdhesiveGrenades",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Alignment", + label = "Adhesive Grenades III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_sticky_grenade_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_called_shots_projectile_damage_+%_final_when_matching_direction", 30 }, - { "called_shot_aiming_delay_ms", 1000 }, - { "called_shot_angle_allowance_degs", 40 }, + { "grenade_skill_%_chance_to_explode_twice", 35 }, + { "grenade_skill_cooldown_speed_+%", -50 }, }, stats = { - "support_called_shots_enable_directional_buff", + "grenade_skill_does_not_bounce_off_ground", }, levels = { [1] = { actorLevel = 1, }, @@ -107,31 +111,36 @@ skills["SupportAlignmentPlayer"] = { }, } } -skills["SupportAmmoConservationPlayer"] = { - name = "Ammo Conservation", - description = "Supports Crossbow Ammunition Skills, granting a chance to not consume a Bolt when firing.", +skills["SupportAdmixturePlayer"] = { + name = "Admixture", + description = "Supports Skills which can cause Damaging Hits. Bleeding inflicted by those Hits is more effective against Poisoned Enemies, and Poison inflicted by Supported Skills is more effective against Bleeding Enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + gemFamily = { "Admixture",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ammo Conservation", + label = "Admixture", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["crossbow_attack_%_chance_to_not_consume_ammo"] = { - mod("ChanceToNotConsumeAmmo", "BASE", nil), + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Poison, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }), + }, + ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Bleed, { type = "ActorCondition", actor = "enemy", var = "Poisoned" }), }, }, baseFlags = { }, constantStats = { - { "crossbow_attack_%_chance_to_not_consume_ammo", 25 }, + { "mixed_maladies_poison_effect_+%_final_vs_bleeding", 20 }, + { "mixed_maladies_bleed_effect_+%_final_vs_poisoned", 20 }, }, stats = { }, @@ -141,26 +150,29 @@ skills["SupportAmmoConservationPlayer"] = { }, } } -skills["SupportBlindPlayer"] = { - name = "Blind", - description = "Supports any skill that Hits enemies, causing them to Blind on Hit.", +skills["SupportAilithLineagePlayer"] = { + name = "Ailith's Chimes", + description = "Supports Skills which can expend Combo. On expending Combo with Supported Skills, you have a chance to gain Power Charges based on the amount of Combo expended.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, + requireSkillTypes = { SkillType.ComboStacking, }, + addSkillTypes = { SkillType.GeneratesCharges, }, excludeSkillTypes = { }, + gemFamily = { "AilithLineage",}, + isLineage = true, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Blind", - incrementalEffectiveness = 0.092720001935959, + label = "Ailith's Chimes", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "global_chance_to_blind_on_hit_%", 100 }, + { "chance_%_to_gain_power_charges_per_combo_spent", 10 }, }, stats = { }, @@ -170,38 +182,32 @@ skills["SupportBlindPlayer"] = { }, } } -skills["SupportBlindsidePlayer"] = { - name = "Blindside", - description = "Supports Skills which can cause Damaging Hits. Supported Skills are more likely to Critically Hit Blinded Enemies, and deal more Damage with Critical Hits against Blinded Enemies, but cannot themselves inflict Blind.", +skills["SupportAlignmentPlayer"] = { + name = "Alignment I", + description = "Supports Bow Attacks. Supported Skills indicate one of four directions, changing indicated direction when an Attack with Supported Skill matches that direction. Attacks from Supported Skills which match the indicated direction deal much more Damage. Cannot Support Channelled Skills.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + excludeSkillTypes = { SkillType.Channel, }, + gemFamily = { "Alignment",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Blindside", + label = "Alignment I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"] = { - mod("CritMultiplier", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Blinded" } ), - }, - ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"] = { - mod("CritChance", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Blinded" } ), - }, - }, baseFlags = { }, constantStats = { - { "support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies", 15 }, - { "support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies", 15 }, + { "support_called_shots_projectile_damage_+%_final_when_matching_direction", 30 }, + { "called_shot_aiming_delay_ms", 1000 }, + { "called_shot_angle_allowance_degs", 40 }, }, stats = { - "cannot_inflict_blind", + "support_called_shots_enable_directional_buff", }, levels = { [1] = { actorLevel = 1, }, @@ -209,28 +215,32 @@ skills["SupportBlindsidePlayer"] = { }, } } -skills["SupportBloodInTheEyesPlayer"] = { - name = "Blood in the Eyes", - description = "Supports Skills that Hit Enemies, causing those Hits to Hobble Bleeding Enemies based on a portion of Physical Damage dealt.", +skills["SupportAlignmentPlayerTwo"] = { + name = "Alignment II", + description = "Supports Bow Attacks. Supported Skills indicate one of four directions, changing indicated direction when an Attack with Supported Skill matches that direction. Attacks from Supported Skills which match the indicated direction deal much more Damage. Cannot Support Channelled Skills.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Channel, }, + gemFamily = { "Alignment",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Blood in the Eyes", + label = "Alignment II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "physical_damage_%_dealt_as_evasion_break_vs_bleeding", 15 }, + { "support_called_shots_projectile_damage_+%_final_when_matching_direction", 40 }, + { "called_shot_aiming_delay_ms", 1000 }, + { "called_shot_angle_allowance_degs", 40 }, }, stats = { + "support_called_shots_enable_directional_buff", }, levels = { [1] = { actorLevel = 1, }, @@ -238,29 +248,32 @@ skills["SupportBloodInTheEyesPlayer"] = { }, } } -skills["SupportDazedBreakPlayer"] = { - name = "Break Posture", - description = "Supports Attacks, causing them to Daze Enemies when they fully Break Armour.", +skills["SupportAlignmentPlayerThree"] = { + name = "Alignment III", + description = "Supports Bow Attacks. Supported Skills indicate one of four directions, changing indicated direction when an Attack with Supported Skill matches that direction. Attacks from Supported Skills which match the indicated direction fire additional Projectiles. Cannot Support Channelled Skills.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Channel, }, + gemFamily = { "Alignment","AdditionalProjectiles",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Break Posture", + label = "Alignment III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_daze_break_duration_ms", 8000 }, + { "called_shot_aiming_delay_ms", 1000 }, + { "called_shot_angle_allowance_degs", 40 }, + { "support_called_shots_additional_projectiles_when_matching_indicated_direction", 4 }, }, stats = { - "support_apply_daze_on_armour_break", + "support_called_shots_enable_directional_buff", }, levels = { [1] = { actorLevel = 1, }, @@ -268,32 +281,32 @@ skills["SupportDazedBreakPlayer"] = { }, } } -skills["SupportAdditionalAccuracyPlayer"] = { - name = "Bullseye", - description = "Supports Attacks, causing them to gain Accuracy.", +skills["SupportAmmoConservationPlayer"] = { + name = "Ammo Conservation I", + description = "Supports Crossbow Ammunition Skills, granting a chance to not consume a Bolt when firing.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "AmmoConservation",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Bullseye", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Ammo Conservation I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_additional_accurary_rating_+%_final"] = { - mod("Accuracy", "MORE", nil), + ["crossbow_attack_%_chance_to_not_consume_ammo"] = { + mod("ChanceToNotConsumeAmmo", "BASE", nil), }, }, baseFlags = { }, constantStats = { - { "support_additional_accurary_rating_+%_final", 50 }, + { "crossbow_attack_%_chance_to_not_consume_ammo", 20 }, }, stats = { }, @@ -303,28 +316,32 @@ skills["SupportAdditionalAccuracyPlayer"] = { }, } } -skills["SupportBurstingPlaguePlayer"] = { - name = "Bursting Plague", - description = "Supports skills that can Poison enemies, causing Poisoned enemies to gain Plague over time and explode in a Plague Burst on death. Cannot support the skills of Minions.", +skills["SupportAmmoConservationPlayerTwo"] = { + name = "Ammo Conservation II", + description = "Supports Crossbow Ammunition Skills, granting a chance to not consume a Bolt when firing.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, - ignoreMinionTypes = true, + gemFamily = { "AmmoConservation",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Support", + label = "Ammo Conservation II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["crossbow_attack_%_chance_to_not_consume_ammo"] = { + mod("ChanceToNotConsumeAmmo", "BASE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_bursting_plague_store_%_poison_applied_magnitude_towards_burst", 100 }, - { "support_bursting_plague_max_value_%_of_max_life", 20 }, + { "crossbow_attack_%_chance_to_not_consume_ammo", 25 }, }, stats = { }, @@ -333,33 +350,39 @@ skills["SupportBurstingPlaguePlayer"] = { }, }, } -}skills["PlagueBurstPlayer"] = { - name = "Plague Burst", - hidden = true, - description = "Triggered when an enemy Poisoned by a supported skill dies, dealing Physical damage around them based on the built-up Plague.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, }, - castTime = 1, - qualityStats = { - }, +} +skills["SupportAmmoConservationPlayerThree"] = { + name = "Ammo Conservation III", + description = "Supports Crossbow Ammunition Skills, granting a chance to not consume a Bolt when firing, at the cost of Reload speed.", + color = 2, + support = true, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "AmmoConservation",}, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.1, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Plague Burst", + label = "Ammo Conservation III", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "plague_burst", + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["crossbow_attack_%_chance_to_not_consume_ammo"] = { + mod("ChanceToNotConsumeAmmo", "BASE", nil), + }, + ["support_ammo_conservation_crossbow_reload_speed_+%_final"] = { + mod("ReloadSpeed", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "active_skill_base_area_of_effect_radius", 18 }, - { "plague_burst_area_+%_final_maximum", 100 }, - { "plague_burst_%_stored_value_to_deal_as_physical_damage", 100 }, - { "additional_base_critical_strike_chance", 500 }, + { "crossbow_attack_%_chance_to_not_consume_ammo", 30 }, + { "support_ammo_conservation_crossbow_reload_speed_+%_final", -20 }, }, stats = { - "is_area_damage", - "plague_burst_triggered_by_bursting_plague_death", }, levels = { [1] = { actorLevel = 1, }, @@ -367,29 +390,29 @@ skills["SupportBurstingPlaguePlayer"] = { }, } } -skills["SupportCadencePlayer"] = { - name = "Cadence", - description = "Supports Attacks you use yourself. Supported Skills gain more Attack speed each time you use them, but will become unusable if used too frequently in a short time frame.", +skills["SupportArakaalisLustPlayer"] = { + name = "Arakaali's Lust", + description = "Supports any Skill that Hits Enemies, causing it to deal increasingly higher damage the more Poisons are on the target.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.NoAttackOrCastTime, }, - ignoreMinionTypes = true, + excludeSkillTypes = { }, + gemFamily = { "ArakaaliLineage",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Cadence", + label = "Arakaali's Lust", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_measured_speed_attack_speed_+%_final_per_stack", 8 }, - { "support_measured_speed_maximum_stacks", 6 }, - { "support_measured_speed_disabled_ms", 10000 }, + { "support_debilitate_hit_damage_+%_final_per_poison_stack", 6 }, + { "support_debilitate_hit_damage_max_poison_stacks", 30 }, }, stats = { }, @@ -399,26 +422,30 @@ skills["SupportCadencePlayer"] = { }, } } -skills["SupportCaltropsPlayer"] = { - name = "Caltrops", - description = "Supports Ranged Spear Attacks. Supported Skills create Caltrops when Projectiles they create reach the end of their flight.", +skills["SupportAmmoConservationPlayerFour"] = { + name = "Arjun's Medal", + description = "Supports Crossbow Skills, granting a chance to load a bolt into all Crossbow Ammunition on kill with Supported Skill.", color = 2, support = true, - requireSkillTypes = { SkillType.Spear, SkillType.RangedAttack, SkillType.AND, }, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + excludeSkillTypes = { }, + gemFamily = { "AmmoConservation",}, + isLineage = true, levels = { - [1] = { attackTime = 1, levelRequirement = 0, manaMultiplier = 20, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Caltrops", + label = "Arjun's Medal", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "chance_to_load_a_bolt_on_killing_an_enemy_%", 35 }, + }, stats = { - "trigger_caltrops_at_end_of_projectile_flight", }, levels = { [1] = { actorLevel = 1, }, @@ -426,43 +453,29 @@ skills["SupportCaltropsPlayer"] = { }, } } -skills["TriggeredCaltropsPlayer"] = { - name = "Caltrops", - hidden = true, - description = "Maims and deals Physical area damage when triggered by an Enemy. Caltrops are destroyed when triggered, and a maximum of 20 Caltrops can be active at once.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Projectile] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Hazard] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.Attack] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackOrCastTime] = true, }, - castTime = 1, - qualityStats = { - }, +skills["SupportBlindPlayer"] = { + name = "Blind I", + description = "Supports any skill that Hits enemies, causing them to Blind on Hit.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Blind",}, levels = { - [1] = { attackTime = 1, critChance = 5, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Caltrops", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "triggered_caltrops", + label = "Blind I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { - projectile = true, - duration = true, - area = true, }, constantStats = { - { "triggered_by_caltrops_support_%", 100 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 5 }, - { "active_skill_base_secondary_area_of_effect_radius", 30 }, - { "base_skill_effect_duration", 8000 }, - { "main_hand_base_physical_damage_from_%_dex", 60 }, + { "global_chance_to_blind_on_hit_%", 100 }, }, stats = { - "global_maim_on_hit", - "additive_thorns_damage_modifiers_apply_to_attack_damage", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "base_is_projectile", - "is_hazard", - "is_area_damage", - "projectiles_not_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -470,33 +483,28 @@ skills["TriggeredCaltropsPlayer"] = { }, } } -skills["SupportChainPlayer"] = { - name = "Chain", - description = "Supports Projectile skills and any other skills that Chain, causing them to Chain additional times.", +skills["SupportBlindPlayerTwo"] = { + name = "Blind II", + description = "Supports any skill that Hits enemies, causing them to Blind on Hit with increased effect.", color = 2, support = true, - requireSkillTypes = { SkillType.Chains, SkillType.Projectile, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.CannotChain, SkillType.ProjectileNoCollision, }, + excludeSkillTypes = { }, + gemFamily = { "Blind",}, levels = { - [1] = { PvPDamageMultiplier = -30, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Chain", - incrementalEffectiveness = 0.092720001935959, + label = "Blind II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_chain_hit_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, - }, baseFlags = { }, constantStats = { - { "number_of_chains", 1 }, - { "chains_hit_X_more_times", 1 }, - { "support_chain_hit_damage_+%_final", -50 }, + { "global_chance_to_blind_on_hit_%", 100 }, + { "blind_effect_+%", 20 }, }, stats = { }, @@ -506,29 +514,2182 @@ skills["SupportChainPlayer"] = { }, } } -skills["SupportChargedShotsPlayer"] = { - name = "Charged Shots", - description = "Supports Bow Attacks. Every third shot with Supported Skills restores a portion of it's Mana cost and Gains Damage as extra Lightning Damage.", +skills["SupportBlindsidePlayer"] = { + name = "Blindside", + description = "Supports Skills which can cause Damaging Hits. Supported Skills are more likely to Critically Hit Blinded Enemies, and deal more Damage with Critical Hits against Blinded Enemies, but cannot themselves inflict Blind.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + gemFamily = { "Blindside",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Blindside", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"] = { + mod("CritMultiplier", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Blinded" } ), + }, + ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Blinded" } ), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies", 15 }, + { "support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies", 15 }, + }, + stats = { + "cannot_inflict_blind", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBountyPlayer"] = { + name = "Bounty I", + description = "Supports any Skill that Hits Enemies, causing Enemies it kills to grant more Flask and Charm charges.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bounty",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bounty I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_mana_flask_charges_gained_+%_final_from_killing_blow", 50 }, + { "support_life_flask_charges_gained_+%_final_from_killing_blow", 50 }, + { "support_charm_charges_gained_+%_final_from_killing_blow", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBountyPlayerTwo"] = { + name = "Bounty II", + description = "Supports any Skill that Hits Enemies, causing Enemies it kills to grant more Flask and Charm charges.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bounty",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bounty II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_mana_flask_charges_gained_+%_final_from_killing_blow", 100 }, + { "support_life_flask_charges_gained_+%_final_from_killing_blow", 100 }, + { "support_charm_charges_gained_+%_final_from_killing_blow", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrambleslamPlayer"] = { + name = "Brambleslam", + description = "Supports Slam Skills. Supported Skills create Hazardous Brambles on the ground that activate after a duration. Enemies which come in contact with these thorns take damage and are Maimed. A maximum of 20 Brambles are allowed at one time. Does not modify Skills used by Minions or Totems.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UsedByTotem, }, + gemFamily = { "Brambleslam",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brambleslam", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "create_X_briar_thorns_on_slam", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredBrambleslamPlayer"] = { + name = "Brambles", + hidden = true, + description = "Hazardous thorns damage and Maim enemies with which they come in contact.", + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Hazard] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.15, }, + }, + statSets = { + [1] = { + label = "Brambles", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_briar_patch", + baseFlags = { + attack = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 10 }, + { "triggered_by_briarpatch_support_on_slam_%", 100 }, + { "base_skill_effect_duration", 8000 }, + { "briarpatches_arming_time_ms", 400 }, + { "active_skill_has_%_standard_scaling_attack_damage", 35 }, + { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + }, + stats = { + "is_hazard", + "global_maim_on_hit", + "additive_thorns_damage_modifiers_apply_to_attack_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDazedBreakPlayer"] = { + name = "Break Posture", + description = "Supports Attacks, causing them to Daze Enemies when they fully Break Armour.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BreakPosture",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Break Posture", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_daze_break_duration_ms", 8000 }, + }, + stats = { + "support_apply_daze_on_armour_break", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBurstingPlaguePlayer"] = { + name = "Bursting Plague", + description = "Supports skills that can Poison enemies, causing Poisoned enemies to gain Plague over time and explode in a Plague Burst on death. Cannot support the skills of Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BurstingPlague",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Support", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_bursting_plague_store_%_poison_applied_magnitude_towards_burst", 100 }, + { "support_bursting_plague_max_value_%_of_max_life", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["PlagueBurstPlayer"] = { + name = "Plague Burst", + hidden = true, + description = "Triggered when an enemy Poisoned by a supported skill dies, dealing Physical damage around them based on the built-up Plague.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.1, }, + }, + statSets = { + [1] = { + label = "Plague Burst", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "plague_burst", + baseFlags = { + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + { "plague_burst_area_+%_final_maximum", 100 }, + { "plague_burst_%_stored_value_to_deal_as_physical_damage", 100 }, + { "additional_base_critical_strike_chance", 500 }, + }, + stats = { + "is_area_damage", + "plague_burst_triggered_by_bursting_plague_death", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCadencePlayer"] = { + name = "Cadence", + description = "Supports Attacks you use yourself. Supported Skills gain more Attack speed each time you use them, but will become unusable if used too frequently in a short time frame.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.NoAttackOrCastTime, SkillType.Triggered, }, + gemFamily = { "Cadence",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cadence", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_measured_speed_attack_speed_+%_final_per_stack", 8 }, + { "support_measured_speed_maximum_stacks", 6 }, + { "support_measured_speed_disabled_ms", 10000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCaltropsPlayer"] = { + name = "Caltrops", + description = "Supports Ranged Spear Attacks. Supported Skills create Caltrops when Projectiles they create reach the end of their flight.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Spear, SkillType.RangedAttack, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + gemFamily = { "Caltrops",}, + levels = { + [1] = { attackTime = 1, levelRequirement = 0, manaMultiplier = 20, }, + }, + statSets = { + [1] = { + label = "Caltrops", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "trigger_caltrops_at_end_of_projectile_flight", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredCaltropsPlayer"] = { + name = "Caltrops", + hidden = true, + description = "Maims and deals Attack area damage when triggered by an Enemy. Caltrops are destroyed when triggered, and a maximum of 20 Caltrops can be active at once.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Hazard] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.Attack] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { attackTime = 1, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Caltrops", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_caltrops", + baseFlags = { + attack = true, + projectile = true, + duration = true, + area = true, + }, + constantStats = { + { "triggered_by_caltrops_support_%", 100 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 5 }, + { "active_skill_base_secondary_area_of_effect_radius", 30 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_has_%_standard_scaling_attack_damage", 75 }, + }, + stats = { + "global_maim_on_hit", + "additive_thorns_damage_modifiers_apply_to_attack_damage", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "base_is_projectile", + "is_hazard", + "is_area_damage", + "projectiles_not_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChainPlayer"] = { + name = "Chain I", + description = "Supports Projectile skills and any other skills that Chain, causing them to Chain additional times.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Chains, SkillType.Projectile, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.CannotChain, SkillType.ProjectileNoCollision, }, + gemFamily = { "Chain",}, + levels = { + [1] = { PvPDamageMultiplier = -30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Chain I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_chain_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + }, + baseFlags = { + }, + constantStats = { + { "number_of_chains", 1 }, + { "chains_hit_X_more_times", 1 }, + { "support_chain_hit_damage_+%_final", -50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChainPlayerTwo"] = { + name = "Chain II", + description = "Supports Projectile skills and any other skills that Chain, causing them to Chain additional times.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Chains, SkillType.Projectile, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.CannotChain, SkillType.ProjectileNoCollision, }, + gemFamily = { "Chain",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Chain II", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_chain_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + }, + baseFlags = { + }, + constantStats = { + { "number_of_chains", 1 }, + { "chains_hit_X_more_times", 1 }, + { "support_chain_hit_damage_+%_final", -40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChainPlayerThree"] = { + name = "Chain III", + description = "Supports Projectile skills and any other skills that Chain, causing them to Chain additional times.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Chains, SkillType.Projectile, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.CannotChain, SkillType.ProjectileNoCollision, }, + gemFamily = { "Chain",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Chain III", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_chain_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + }, + baseFlags = { + }, + constantStats = { + { "chains_hit_X_more_times", 2 }, + { "support_chain_hit_damage_+%_final", -40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChargeProfusionPlayer"] = { + name = "Charge Profusion I", + description = "Supports skills that can generate Charges, giving them a chance to generate an additional Charge when they do so.", + color = 2, + support = true, + requireSkillTypes = { SkillType.GeneratesCharges, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ChargeProfusion",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Charge Profusion I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_to_gain_1_more_charge_%", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChargeProfusionPlayerTwo"] = { + name = "Charge Profusion II", + description = "Supports skills that can generate Charges, giving them a chance to generate an additional Charge when they do so, as well as a chance to generate an additional Charge of a random type.", + color = 2, + support = true, + requireSkillTypes = { SkillType.GeneratesCharges, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ChargeProfusion",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Charge Profusion II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_to_gain_1_more_charge_%", 30 }, + { "chance_to_gain_1_more_random_charge_%", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChargedShotsPlayer"] = { + name = "Charged Shots I", + description = "Supports Bow Attacks. Every third shot with Supported Skills restores a portion of it's Mana cost and Gains Damage as extra Lightning Damage.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ChargedShots",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Charged Shots I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_charged_shots_%_damage_to_gain_as_lightning"] = { + mod("DamageGainAsLightning", "BASE", nil), + div = 3, + }, + }, + baseFlags = { + }, + constantStats = { + { "support_charged_shots_applies_every_X_shots", 3 }, + { "support_charged_shots_recover_%_mana_cost_on_use", 100 }, + { "support_charged_shots_%_damage_to_gain_as_lightning", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChargedShotsPlayerTwo"] = { + name = "Charged Shots II", + description = "Supports Bow Attacks. Every third shot with Supported Skills Gains Damage as extra Lightning Damage.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ChargedShots",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Charged Shots II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_charged_shots_%_damage_to_gain_as_lightning"] = { + mod("DamageGainAsLightning", "BASE", nil), + div = 3, + }, + }, + baseFlags = { + }, + constantStats = { + { "support_charged_shots_applies_every_X_shots", 3 }, + { "support_charged_shots_%_damage_to_gain_as_lightning", 60 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCharmBountyPlayer"] = { + name = "Charm Bounty", + description = "Supports any Skill that Hits Enemies, causing Enemies it kills to grant more Charm charges.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bounty",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Charm Bounty", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_charm_charges_gained_+%_final_from_killing_blow", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCloseCombatPlayer"] = { + name = "Close Combat I", + description = "Supports Attacks, causing them to deal more damage to enemies based on how close they are to you.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CloseCombat",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Close Combat I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_close_combat_attack_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{10,1},{35,0}} }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_close_combat_attack_damage_+%_final_from_distance", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCloseCombatPlayerTwo"] = { + name = "Close Combat II", + description = "Supports Attacks, causing them to deal more damage to enemies based on how close they are to you.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CloseCombat",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Close Combat II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_close_combat_attack_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{10,1},{35,0}} }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_close_combat_attack_damage_+%_final_from_distance", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportComboFinisherPlayer"] = { + name = "Combo Finisher I", + description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal more damage. Cannot support skills which already Combo, or Triggered Skills.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboFinisher, SkillType.HasUsageCondition, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Cooldown, SkillType.Herald, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Spell, SkillType.Warcry, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, + gemFamily = { "ComboFinisher",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Combo Finisher I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_combo_finisher_required_number_of_combo_stacks", 3 }, + { "support_combo_finisher_damage_+%_final", 25 }, + { "base_combo_stacks_decay_delay_ms", 4000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportComboFinisherPlayerTwo"] = { + name = "Combo Finisher II", + description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal massively more damage. Cannot support skills which already Combo, or Triggered Skills.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboFinisher, SkillType.HasUsageCondition, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Cooldown, SkillType.Herald, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Spell, SkillType.Warcry, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, + gemFamily = { "ComboFinisher",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Combo Finisher II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_combo_finisher_required_number_of_combo_stacks", 5 }, + { "support_combo_finisher_damage_+%_final", 40 }, + { "base_combo_stacks_decay_delay_ms", 4000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCommiseratePlayer"] = { + name = "Commiserate", + description = "Supports Skills you use yourself or Trigger, which can cause Damaging Hits. Supported Skills inflict more powerful Ailments if you are afflicted with those Ailments when you inflict them, while also removing from you any Ailment that they inflict.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.DegenOnlySpellDamage, }, + gemFamily = { "Commiserate",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Commiserate", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment", 40 }, + }, + stats = { + "remove_ailment_when_applying_relevant_ailment", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCooldownRecoveryPlayer"] = { + name = "Cooldown Recovery I", + description = "Supports skills with Cooldowns, increasing the rate at which those Cooldowns Recover. Cannot modify the skills of minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Cooldown, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CooldownRecovery",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cooldown Recovery I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_cooldown_reduction_cooldown_recovery_+%"] = { + mod("CooldownRecovery", "INC", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_cooldown_reduction_cooldown_recovery_+%", 25 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCooldownRecoveryPlayerTwo"] = { + name = "Cooldown Recovery II", + description = "Supports skills with Cooldowns, increasing the rate at which those Cooldowns Recover. Cannot modify the skills of minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Cooldown, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CooldownRecovery",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cooldown Recovery II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_cooldown_reduction_cooldown_recovery_+%"] = { + mod("CooldownRecovery", "INC", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_cooldown_reduction_cooldown_recovery_+%", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCorrosionPlayer"] = { + name = "Corrosion", + description = "Supports any skill that Hits enemies, causing Poison it applies to also Break enemy Armour. Cannot support skills that Consume Fully Broken Armour.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.ConsumesFullyBrokenArmour, }, + gemFamily = { "Corrosion",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Corrosion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "armour_break_for_%_of_poison_damage_over_poison_duration", 80 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCrescendoPlayer"] = { + name = "Crescendo I", + description = "Supports Strikes that perform a Final Strike at the end of a combination of attacks, allowing you to use the Final Strike twice in succession.", + color = 2, + support = true, + requireSkillTypes = { SkillType.PerformsFinalStrike, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Crescendo",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Crescendo I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "repeat_last_step_of_combo_attack", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCrescendoPlayerTwo"] = { + name = "Crescendo II", + description = "Supports Strikes that perform a Final Strike at the end of a combination of attacks, allowing you to use the Final Strike twice in succession, and causing Non-Final Strike Attacks to be faster.", + color = 2, + support = true, + requireSkillTypes = { SkillType.PerformsFinalStrike, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Crescendo",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Crescendo II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_crescendo_non_final_strike_attack_speed_+%_final", 15 }, + }, + stats = { + "repeat_last_step_of_combo_attack", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCrescendoPlayerThree"] = { + name = "Crescendo III", + description = "Supports Strikes that perform a Final Strike at the end of a combination of attacks, causing the Final Strike to be Ancestrally Boosted.", + color = 2, + support = true, + requireSkillTypes = { SkillType.PerformsFinalStrike, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Crescendo",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Crescendo III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "final_strike_is_ancestrally_boosted", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCullingStrikePlayer"] = { + name = "Culling Strike I", + description = "Supports Attack Skills, causing them to Cull Rare and Unique Enemies on Hit.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CullingStrike",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Culling Strike I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_culling_strike_vs_rare_or_unique_enemy"] = { + mod("CullPercent", "MAX", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "RareOrUnique" }), + value = 10 + }, + }, + baseFlags = { + }, + stats = { + "support_culling_strike_vs_rare_or_unique_enemy", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCullingStrikePlayerTwo"] = { + name = "Culling Strike II", + description = "Supports Attack Skills, causing them to Cull Rare and Unique Enemies on Hit, and increasing the threshold at which they will Cull Enemies.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CullingStrike",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Culling Strike II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_culling_strike_vs_rare_or_unique_enemy"] = { + mod("CullPercent", "MAX", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "RareOrUnique" }), + value = 10 + }, + }, + baseFlags = { + }, + constantStats = { + { "support_culling_strike_threshold_+%_on_cull_for_seconds_from_code", 20 }, + }, + stats = { + "support_culling_strike_vs_rare_or_unique_enemy", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCulminationPlayer"] = { + name = "Culmination I", + description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Does not modify Skills used by Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboMastery, SkillType.HasUsageCondition, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByComboMastery, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Culmination",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Culmination I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_damage_+%_final_per_combo_stack", 3 }, + { "base_combo_stacks_decay_delay_ms", 4000 }, + }, + stats = { + "skill_uncapped_combo_counter", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCulminationPlayerTwo"] = { + name = "Culmination II", + description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Does not modify Skills used by Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboMastery, SkillType.HasUsageCondition, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByComboMastery, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Culmination",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Culmination II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_damage_+%_final_per_combo_stack", 3 }, + { "base_combo_stacks_decay_delay_ms", 4000 }, + { "combo_falloff_speed_+%", -50 }, + }, + stats = { + "skill_uncapped_combo_counter", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDazePlayer"] = { + name = "Daze", + description = "Supports Attacks, causing them to build up Daze based on a portion of Physical Damage dealt.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Discombobulate",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Daze", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDazzlePlayer"] = { + name = "Dazzle", + description = "Supports Attack Skills. Supported Skills always hit Dazed Enemies, but Consume Daze on Hit, and cannot themselves inflict Daze.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Dazzle",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Dazzle", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "consume_enemy_daze_to_always_hit", + "cannot_daze", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDeadlyHeraldsPlayer"] = { + name = "Deadly Herald", + description = "Supports Herald Skills, making their triggered effects deal more damage at the expense of higher Spirit cost.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Herald, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DeadlyHeralds",}, + levels = { + [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Deadly Herald", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_deadly_heralds_damage_+%_final"] = { + mod("Damage", "MORE", nil), + } + }, + baseFlags = { + }, + constantStats = { + { "support_deadly_heralds_damage_+%_final", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDeadlyPoisonPlayer"] = { + name = "Deadly Poison I", + description = "Supports any skill that Hits enemies, causing it to deal less damage but inflict more potent Poison.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DeadlyPoison",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Deadly Poison I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_deadly_poison_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_deadly_poison_poison_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_deadly_poison_hit_damage_+%_final", -25 }, + { "support_deadly_poison_poison_effect_+%_final", 75 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDeadlyPoisonPlayerTwo"] = { + name = "Deadly Poison II", + description = "Supports any skill that Hits enemies, causing it to deal less damage but inflict more potent Poison.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DeadlyPoison",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Deadly Poison II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_deadly_poison_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_deadly_poison_poison_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_deadly_poison_hit_damage_+%_final", -30 }, + { "support_deadly_poison_poison_effect_+%_final", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDelayedGratificationPlayer"] = { + name = "Delayed Gratification", + description = "Supports Skills which require some Condition to be met for use. Supported Skills can be used an additional time after their Condition has been met, but meeting that Condition is harder.", + color = 2, + support = true, + requireSkillTypes = { SkillType.HasUsageCondition, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DelayedGratification",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Delayed Gratification", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "difficulty_of_meeting_conditional_requirement_+%", 150 }, + { "conditional_skill_additional_usages_after_meeting_requirement", 1 }, + { "conditional_skill_additional_usages_duration_ms", 10000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDelayedReactionPlayer"] = { + name = "Delayed Reaction", + description = "Supports Skills which create Hazards, causing those Hazards to only be able to trigger immediately after creation or at the end of their duration. Created Hazards have significantly lowered duration, and deal more damage.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Hazard, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DelayedReaction",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Delayed Reaction", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_sunblast_hazard_hazard_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_sunblast_hazard_hazard_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_sunblast_hazard_hazard_damage_+%_final", 15 }, + { "support_sunblast_hazard_hazard_duration_+%_final", -70 }, + }, + stats = { + "hazards_trigger_at_end_of_duration_instead", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDeliberationPlayer"] = { + name = "Deliberation", + description = "Supports skills that can be used while moving, causing you to move slower while using them, but granting more damage in exchange.", + color = 2, + support = true, + requireSkillTypes = { SkillType.UsableWhileMoving, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Deliberation",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Deliberation", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_deliberation_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_deliberation_movement_speed_penalty_+%_final_while_performing_action", 30 }, + { "support_deliberation_damage_+%_final", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDurabilityPlayer"] = { + name = "Durability", + description = "Supports Skills which create objects that are destroyed after being Hit a number of times, allowing for them to last for additional Hits. Does not modify Skills used by Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.ObjectDurability, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Durability",}, + ignoreMinionTypes = true, + levels = { + [1] = { reservationMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Durability", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_number_of_additional_uses_before_expiry", 2 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportElectrocutePlayer"] = { + name = "Electrocute", + description = "Supports any Skill which can deal Damage. Lightning Damage from Supported Skills can inflict Electrocute, but Supported Skills cannot inflict Shock.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Electrocute",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Electrocute", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "base_lightning_damage_can_electrocute", + "never_shock", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEscalatingPoisonPlayer"] = { + name = "Escalating Poison", + description = "Supports any skill that Hits enemies, allowing it to inflict an extra Poison on enemies but shortening the duration of those Poisons.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EscalatingPoison",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Escalating Poison", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_multi_poison_poison_duration_+%_final"] = { + mod("EnemyPoisonDuration", "MORE", nil), + }, + ["number_of_additional_poison_stacks"] = { + mod("PoisonStacks", "BASE", nil), + flag("PoisonCanStack"), + }, + }, + baseFlags = { + }, + constantStats = { + { "number_of_additional_poison_stacks", 1 }, + { "support_multi_poison_poison_duration_+%_final", -20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportExcoriatePlayer"] = { + name = "Excoriate", + description = "Supports Melee Attack Skills. Supported Skills deal more Melee Damage for each Elemental Ailment on Enemies they hit, but cannot themselves inflict Elemental Ailments.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Excoriate",}, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Excoriate", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited" }), + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Chilled" }), + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Shocked" }), + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Electrocuted" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target", 10 }, + }, + stats = { + "cannot_inflict_elemental_ailments", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFerocityPlayer"] = { + name = "Ferocity", + description = "Supports Skills that you use yourself. Supported Skills will consume a Frenzy Charge on use if possible, and will gain significant Skill Speed if they do. Supported Skills cannot generate Frenzy Charges.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, + addSkillTypes = { SkillType.SupportedByFerocity, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Minion, SkillType.SummonsTotem, SkillType.SupportedByTumult, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesFrenzyChargesOnUse, SkillType.SupportedByFerocity, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Ferocity",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ferocity", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"] = { + mod("Speed", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "RemovableFrenzyCharge", threshold = 1 }), + }, + }, + baseFlags = { + }, + constantStats = { + { "skill_consume_frenzy_charge_to_gain_skill_speed_+%_final", 40 }, + }, + stats = { + "skill_cannot_generate_frenzy_charges", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFlowPlayer"] = { + name = "Flow", + description = "Supports Skills which require Combo to use. Supported Skills lose their Combo stacks after a longer delay spent not gaining any Combo.", + color = 2, + support = true, + requireSkillTypes = { SkillType.ComboStacking, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Flow",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Flow", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "combo_falloff_speed_+%", -60 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportForkPlayer"] = { + name = "Fork", + description = "Supports Projectile skills, making their Projectiles Fork.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Projectile, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + gemFamily = { "Fork",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fork", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_fork_forked_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "ForkedCount", threshold = 1 }), + }, + }, + baseFlags = { + }, + constantStats = { + { "terrain_arrow_attachment_chance_reduction_+%", 100 }, + { "support_fork_forked_projectile_damage_+%_final", -30 }, + }, + stats = { + "projectiles_fork", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFrenziedRipostePlayer"] = { + name = "Frenzied Riposte", + description = "Supports Attacks you use yourself or that you Trigger, causing them to Consume the Parried Debuff on Hit to grant you a Frenzy Charge. Cannot support Skills which already Consume the Parried Debuff.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SkillConsumesParried, }, + gemFamily = { "Retort",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Frenzied Riposte", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "consume_parry_debuff_on_hit_to_gain_X_frenzy_charges", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFrozenSpitePlayer"] = { + name = "Frozen Spite", + description = "Supports Attack Skills, causing them to create Ice Fragments on killing Frozen Enemies. Cannot Support Totem Skills and does not modify Skills used by Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.FrozenSpite, SkillType.UsedByTotem, SkillType.RemoteMined, SkillType.Trapped, SkillType.SummonsTotem, }, + gemFamily = { "FrozenSpite",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Frozen Spite", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "trigger_ballistic_ice_chunks_on_killing_frozen_enemy", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredSupportFrozenSpiteIceFragmentPlayer"] = { + name = "Ice Fragments", + hidden = true, + description = "Explodes to deal Cold Damage in an area after a short delay, based on the life of the slain frozen Enemy.", + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.FrozenSpite] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 0.75, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ice Fragments", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_support_frozen_spite_ice_fragment", + baseFlags = { + hit = true, + area = true, + projectile = true, + }, + constantStats = { + { "triggered_by_frozen_spite_support_%", 100 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage", 10 }, + { "ballistic_ice_chunk_cone_angle", 360 }, + { "base_skill_detonation_time", 1500 }, + { "base_number_of_projectiles", 3 }, + }, + stats = { + "base_is_projectile", + "ballistic_projectiles_always_bounce", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "is_area_damage", + "never_freeze", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportGambleshotPlayer"] = { + name = "Gambleshot", + description = "Supports Skills which fire Projectiles that are not ground targeted. Projectiles from Supported Skills randomly Fork, Chain or Pierce.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Projectile, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.GroundTargetedProjectile, }, + gemFamily = { "Gambleshot",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Gambleshot", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + [ "support_gambleshot_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_gambleshot_projectile_damage_+%_final", -15 }, + }, + stats = { + "projectile_randomly_fork_chain_or_pierce", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportGarukhansResolvePlayer"] = { + name = "Garukhan's Resolve", + description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills can only be used after you have moved a certain distance, but will Bifurcate Critical Hit Chance. Cannot support Skills which have a Cooldown or that are Triggered, and does not modify skills used by Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByGarukhan, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByGarukhan, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "HitAndRun",}, + isLineage = true, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Garukhan's Resolve", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "skill_unusable_until_moved_X_distance", 200 }, + }, + stats = { + "attacks_roll_crits_twice", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHeightenedAccuracyPlayer"] = { + name = "Heightened Accuracy I", + description = "Supports Attacks, causing them to gain Accuracy.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HeightenedAccuracy",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Heightened Accuracy I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_additional_accurary_rating_+%_final"] = { + mod("Accuracy", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_additional_accurary_rating_+%_final", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHeightenedAccuracyPlayerTwo"] = { + name = "Heightened Accuracy II", + description = "Supports Attacks, causing them to gain Accuracy, and never miss against Enemies on full Life.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HeightenedAccuracy",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Heightened Accuracy II", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_additional_accurary_rating_+%_final"] = { + mod("Accuracy", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_additional_accurary_rating_+%_final", 50 }, + }, + stats = { + "cannot_miss_against_full_life_enemies", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHeightenedChargesPlayer"] = { + name = "Heightened Charges", + description = "Supports any Skill that Consumes Charges, granting a chance for benefits of that Consumption to be doubled.", + color = 2, + support = true, + requireSkillTypes = { SkillType.ConsumesCharges, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Twofold",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Heightened Charges", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_%_to_double_effect_of_removing_charges", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHitAndRunPlayer"] = { + name = "Hit and Run", + description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills can only be used after you have moved a certain distance, but have massively increased Skill Speed. Cannot support Skills which have a Cooldown or that are Triggered, and does not modify skills used by Minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "HitAndRun",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Hit and Run", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_mobile_assault_skill_speed_+%_final", 40 }, + { "skill_unusable_until_moved_X_distance", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHobblePlayer"] = { + name = "Hobble", + description = "Supports Skills that Hit Enemies, causing those Hits to Hobble Bleeding Enemies based on a portion of Physical Damage dealt.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Hobble",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Hobble", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "physical_damage_%_dealt_as_evasion_break_vs_bleeding", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportImpalePlayer"] = { + name = "Impale", + description = "Supports Attacks, causing them to Impale on Hit but making them unable to Extract Impale themselves.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Impale",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Impale", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "impale_on_hit_%_chance", 100 }, + }, + stats = { + "cannot_consume_impale", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportChargeInhibitionPlayer"] = { + name = "Inhibitor", + description = "Supports any Skill you use yourself or that you Trigger. Supported Skills cannot consume Charges or Infusion by any means. Cannot Support Skills which require Charges or Infusion to be used.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, SkillType.Spell, SkillType.DegenOnlySpellDamage, }, + addSkillTypes = { SkillType.CannotConsumeCharges, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.RequiresCharges, SkillType.Triggered, }, + gemFamily = { "Inhibitor",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Inhibitor", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_inhibitor_damage_+%_final_per_charge_type"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "FrenzyCharge", threshold = 1 }), + mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "PowerCharge", threshold = 1 }), + mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "EnduranceCharge", threshold = 1 }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_inhibitor_damage_+%_final_per_charge_type", 4 }, + { "support_inhibitor_damage_+%_final_per_infusion_type", 4 }, + }, + stats = { + "cannot_consume_power_frenzy_endurance_charges", + "cannot_consume_infusions", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportInnervatePlayer"] = { + name = "Innervate", + description = "Supports Attacks you use yourself. Killing a Shocked enemy with supported skills infuses all of your Attacks with Lightning damage for a short time.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "Innervate",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Innervate", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_innervate_buff_grant_%_added_lightning_attack_damage"] = { + mod("DamageGainAsLightning", "BASE", nil, ModFlag.Attack, 0, { type = "Condition", var = "KilledShockedLast3Seconds" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Innervate" }), + }, + ["support_innervate_base_buff_duration"] = { + mod("Duration", "BASE", nil, 0, 0, { type = "Condition", var = "KilledShockedLast3Seconds" }, { type = "GlobalEffect", effectType = "Buff" }), + div = 1000, + }, + }, + baseFlags = { + }, + constantStats = { + { "support_innervate_buff_grant_%_added_lightning_attack_damage", 25 }, + { "support_innervate_buff_base_duration_ms", 5000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLastingShockPlayer"] = { + name = "Lasting Shock", + description = "Supports any skill that Hits enemies or inflicts Shock, causing its Shocks to be inflicted less often but last longer.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Bow, SkillType.AND, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, - ignoreMinionTypes = true, + gemFamily = { "LastingShock",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Lasting Shock", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_lasting_shock_chance_to_shock_+%_final"] = { + mod("EnemyShockChance", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "shock_duration_+%", 100 }, + { "support_lasting_shock_chance_to_shock_+%_final", -30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLeveragePlayer"] = { + name = "Leverage", + description = "Supports Skills which Hit Enemies. Supported Skills gain increased chance to Critically Hit against Immobilised Enemies.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Leverage",}, + levels = { + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Charged Shots", + label = "Leverage", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_charged_shots_applies_every_X_shots", 3 }, - { "support_charged_shots_recover_%_mana_cost_on_use", 100 }, - { "support_charged_shots_%_damage_to_gain_as_lightning", 30 }, + { "critical_strike_chance_+%_vs_immobilised_enemies", 50 }, }, stats = { }, @@ -538,26 +2699,27 @@ skills["SupportChargedShotsPlayer"] = { }, } } -skills["SupportCharmBountyPlayer"] = { - name = "Charm Bounty", - description = "Supports any Skill that Hits Enemies, causing Enemies it kills to grant more Charm charges.", +skills["SupportLifeFlaskPlayer"] = { + name = "Life Bounty", + description = "Supports any skill that Hits enemies, causing enemies it kills to grant more Life Flask charges.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Bounty",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Charm Bounty", + label = "Life Bounty", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_charm_charges_gained_+%_final_from_killing_blow", 100 }, + { "support_life_flask_charges_gained_+%_final_from_killing_blow", 100 }, }, stats = { }, @@ -567,32 +2729,191 @@ skills["SupportCharmBountyPlayer"] = { }, } } -skills["SupportCloseCombatPlayer"] = { - name = "Close Combat", - description = "Supports Attacks, causing them to deal more damage to enemies based on how close they are to you.", +skills["SupportLifeOnCullPlayer"] = { + name = "Life Drain", + description = "Supports any skill that Hits enemies, causing you to recover Life when it Culls an enemy.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "LifeDrain",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Life Drain", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "recover_%_maximum_life_on_cull", 12 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportAddedLightningDamagePlayer"] = { + name = "Lightning Attunement", + description = "Supports Attacks, causing them to Gain Lightning Damage but deal less Cold and Fire Damage.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "LightningAttunement",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Lightning Attunement", + baseEffectiveness = 0.52710002660751, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_cold_and_fire_damage_+%_final"] = { + mod("ColdDamage", "MORE", nil), + mod("FireDamage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks", 25 }, + { "support_cold_and_fire_damage_+%_final", -50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLightningExposurePlayer"] = { + name = "Lightning Exposure", + description = "Supports any skill that Hits enemies, causing it to inflict Exposure when inflicting Shock.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "LightningExposure",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Lightning Exposure", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "inflict_exposure_for_x_ms_on_shock", 8000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLightningPenetrationPlayer"] = { + name = "Lightning Penetration", + description = "Supports any skill that Hits enemies, making those Hits Penetrate enemy Lightning resistance.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "LightningPenetration",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Lightning Penetration", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_reduce_enemy_lightning_resistance_%", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLockdownPlayer"] = { + name = "Lockdown", + description = "Supports any skill that Hits enemies, causing any Pin buildup it inflicts to be stronger the closer the enemy is to you.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Lockdown",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Lockdown", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_lockdown_distance_based_pin_damage_+%_final", 120 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFarCombatPlayer"] = { + name = "Longshot I", + description = "Supports Attacks, causing them to deal more damage from farther away.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Longshot",}, ignoreMinionTypes = true, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Close Combat", + label = "Longshot I", incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_close_combat_attack_damage_+%_final_from_distance"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{10,1},{35,0}} }), + ["support_far_combat_attack_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{35,0},{70,1}} }), }, }, baseFlags = { }, constantStats = { - { "support_close_combat_attack_damage_+%_final_from_distance", 25 }, + { "support_far_combat_attack_damage_+%_final_from_distance", 25 }, }, stats = { }, @@ -602,29 +2923,33 @@ skills["SupportCloseCombatPlayer"] = { }, } } -skills["SupportComboFinisherPlayer"] = { - name = "Combo Finisher", - description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal massively more damage. Cannot support skills which already Combo, or Triggered Skills.", +skills["SupportFarCombatPlayerTwo"] = { + name = "Longshot II", + description = "Supports Attacks, causing them to deal more damage from farther away.", color = 2, support = true, - requireSkillTypes = { SkillType.Melee, }, - addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboFinisher, SkillType.HasUsageCondition, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.Herald, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Spell, SkillType.Warcry, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Longshot",}, ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Combo Finisher", - incrementalEffectiveness = 0.054999999701977, + label = "Longshot II", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_far_combat_attack_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{35,0},{70,1}} }), + }, + }, baseFlags = { }, constantStats = { - { "support_combo_finisher_required_number_of_combo_stacks", 5 }, - { "support_combo_finisher_damage_+%_final", 40 }, - { "base_combo_stacks_decay_delay_ms", 4000 }, + { "support_far_combat_attack_damage_+%_final_from_distance", 35 }, }, stats = { }, @@ -634,29 +2959,31 @@ skills["SupportComboFinisherPlayer"] = { }, } } -skills["SupportCommiseratePlayer"] = { - name = "Commiserate", - description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills inflict more powerful Ailments if you are afflicted with those Ailments when you inflict them, while also removing from you any Ailment that they inflict.", +skills["SupportMaimPlayer"] = { + name = "Maim", + description = "Supports Attacks, causing them to Maim enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.DegenOnlySpellDamage, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.AppliesMaim, }, + excludeSkillTypes = { }, + gemFamily = { "Maim",}, levels = { [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, }, statSets = { [1] = { - label = "Commiserate", - incrementalEffectiveness = 0.054999999701977, + label = "Maim", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "ailment_effect_+%_while_afflicted_by_relevant_ailment", 30 }, + { "maim_on_hit_%", 100 }, }, stats = { - "remove_ailment_when_applying_relevant_ailment", }, levels = { [1] = { actorLevel = 1, }, @@ -664,38 +2991,28 @@ skills["SupportCommiseratePlayer"] = { }, } } -skills["SupportMultiplePoisonPlayer"] = { - name = "Comorbidity", - description = "Supports any skill that Hits enemies, allowing it to inflict an extra Poison on enemies but shortening the duration of those Poisons.", +skills["SupportMaladyPlayer"] = { + name = "Malady", + description = "Supports Skills which can cause Damaging Hits, causing base chance to inflict Bleed with Supported Skills to instead apply to base chance to Poison, and causing base chance to Poison to instead apply to Bleed.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Malady",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Comorbidity", + label = "Malady", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_multi_poison_poison_duration_+%_final"] = { - mod("EnemyPoisonDuration", "MORE", nil), - }, - ["number_of_additional_poison_stacks"] = { - mod("PoisonStacks", "BASE", nil), - flag("PoisonCanStack"), - }, - }, baseFlags = { }, - constantStats = { - { "number_of_additional_poison_stacks", 1 }, - { "support_multi_poison_poison_duration_+%_final", -20 }, - }, stats = { + "base_bleed_chance_is_poison_chance_instead", + "base_poison_chance_is_bleed_chance_instead", }, levels = { [1] = { actorLevel = 1, }, @@ -703,31 +3020,27 @@ skills["SupportMultiplePoisonPlayer"] = { }, } } -skills["SupportChanceToShockPlayer"] = { - name = "Conduction", - description = "Supports any skill that Hits enemies, making it more likely to Shock.", +skills["SupportManaFlaskPlayer"] = { + name = "Mana Bounty", + description = "Supports any skill that Hits enemies, causing enemies it kills to grant more Mana Flask charges.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Bounty",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Conduction", - incrementalEffectiveness = 0.092720001935959, + label = "Mana Bounty", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_conduction_chance_to_shock_+%_final"] = { - mod("EnemyShockChance", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_conduction_chance_to_shock_+%_final", 100 }, + { "support_mana_flask_charges_gained_+%_final_from_killing_blow", 100 }, }, stats = { }, @@ -737,26 +3050,27 @@ skills["SupportChanceToShockPlayer"] = { }, } } -skills["SupportCorrosionPlayer"] = { - name = "Corrosion", - description = "Supports any skill that Hits enemies, causing Poison it applies to also Break enemy Armour. Cannot support skills that Consume Fully Broken Armour.", +skills["SupportMarkForDeathPlayer"] = { + name = "Mark for Death", + description = "Supports Mark Skills. Enemies affected by Supported Marks will have their Armour Broken by Physical Damage they take.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Mark, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ConsumesFullyBrokenArmour, }, + excludeSkillTypes = { }, + gemFamily = { "SingleOut",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Corrosion", + label = "Mark for Death", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "armour_break_for_%_of_poison_damage_over_poison_duration", 80 }, + { "marked_target_%_physical_damage_taken_as_armour_break", 10 }, }, stats = { }, @@ -766,26 +3080,30 @@ skills["SupportCorrosionPlayer"] = { }, } } -skills["SupportCrescendoPlayer"] = { - name = "Crescendo", - description = "Supports Strikes that perform a Final Strike at the end of a combination of attacks, allowing you to use the Final Strike twice in succession.", +skills["SupportMobilityPlayer"] = { + name = "Mobility", + description = "Supports skills that can be used while moving, allowing you to move faster while using them.", color = 2, support = true, - requireSkillTypes = { SkillType.PerformsFinalStrike, }, + requireSkillTypes = { SkillType.UsableWhileMoving, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Mobility",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Crescendo", + label = "Mobility", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "support_mobility_damage_+%_final", 0 }, + { "support_mobility_movement_speed_penalty_+%_final_while_performing_action", -25 }, + }, stats = { - "repeat_last_step_of_combo_attack", }, levels = { [1] = { actorLevel = 1, }, @@ -793,32 +3111,36 @@ skills["SupportCrescendoPlayer"] = { }, } } -skills["SupportCullingStrikePlayer"] = { - name = "Culling Strike", - description = "Supports Attack Skills, causing them to Cull Rare and Unique Enemies on Hit.", +skills["SupportMomentumPlayer"] = { + name = "Momentum", + description = "Supports any damaging skill that you use yourself, causing it to deal more damage if you move a sufficient distance while using the skill. Teleportation does not count towards the distance travelled.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "Momentum",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Culling Strike", + label = "Momentum", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_culling_strike_vs_rare_or_unique_enemy"] = { - mod("CullPercent", "MAX", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "RareOrUnique" }), - value = 10 + ["support_momnetum_damage_+%_final_with_momentum"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "Moved2m" }), }, }, baseFlags = { }, + constantStats = { + { "support_momentum_distance_travelled_to_gain_momentum", 20 }, + { "support_momnetum_damage_+%_final_with_momentum", 40 }, + }, stats = { - "support_culling_strike_vs_rare_or_unique_enemy", }, levels = { [1] = { actorLevel = 1, }, @@ -826,30 +3148,41 @@ skills["SupportCullingStrikePlayer"] = { }, } } -skills["SupportCulminationPlayer"] = { - name = "Culmination", - description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Cannot Support Skills used by Minions.", +skills["SupportMultishotPlayer"] = { + name = "Multishot I", + description = "Supports Projectile skills, making them fire extra Projectiles. Also lowers Attack and Cast speed of supported skills, as well as lessening their damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, - addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboMastery, SkillType.HasUsageCondition, }, - excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByComboMastery, SkillType.NOT, SkillType.AND, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileNumber, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, }, + gemFamily = { "AdditionalProjectiles",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Culmination", - incrementalEffectiveness = 0.054999999701977, + label = "Multishot I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_multiple_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_scattershot_skill_speed_+%_final"] = { + mod("Speed", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_damage_+%_final_per_combo_stack", 3 }, - { "base_combo_stacks_decay_delay_ms", 4000 }, + { "number_of_additional_projectiles", 2 }, + { "support_multiple_damage_+%_final", -35 }, + { "terrain_arrow_attachment_chance_reduction_+%", 200 }, + { "support_scattershot_skill_speed_+%_final", -20 }, }, stats = { - "skill_uncapped_combo_counter", }, levels = { [1] = { actorLevel = 1, }, @@ -857,27 +3190,40 @@ skills["SupportCulminationPlayer"] = { }, } } -skills["SupportDazzlePlayer"] = { - name = "Dazzle", - description = "Supports Attack Skills. Supported Skills always hit Dazed Enemies, but Consume Daze on Hit, and cannot themselves inflict Daze.", +skills["SupportMultishotPlayerTwo"] = { + name = "Multishot II", + description = "Supports Projectile skills, making them fire extra Projectiles. Also lowers Attack and Cast speed of supported skills, as well as lessening their damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileNumber, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, }, + gemFamily = { "AdditionalProjectiles",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Dazzle", + label = "Multishot II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_multiple_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_scattershot_skill_speed_+%_final"] = { + mod("Speed", "MORE", nil), + }, + }, baseFlags = { }, + constantStats = { + { "number_of_additional_projectiles", 2 }, + { "support_multiple_damage_+%_final", -25 }, + { "terrain_arrow_attachment_chance_reduction_+%", 200 }, + { "support_scattershot_skill_speed_+%_final", -20 }, + }, stats = { - "consume_enemy_daze_to_always_hit", - "cannot_daze", }, levels = { [1] = { actorLevel = 1, }, @@ -885,33 +3231,33 @@ skills["SupportDazzlePlayer"] = { }, } } -skills["SupportDeadlyHeraldsPlayer"] = { - name = "Deadly Herald", - description = "Supports Herald Skills, making their triggered effects deal more damage at the expense of higher Spirit cost.", +skills["SupportEmpoweredCullPlayer"] = { + name = "Murderous Intent", + description = "Supports skills that can Empower skills other than themselves, causing skills they Empower to Cull enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Herald, }, + requireSkillTypes = { SkillType.EmpowersOtherSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "MurderousIntent",}, levels = { - [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Deadly Herald", + label = "Murderous Intent", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_deadly_heralds_damage_+%_final"] = { - mod("Damage", "MORE", nil), + ["support_empowered_culling_strike"] = { + mod("ExtraEmpowerMod", "LIST", { mod = mod("CullPercent", "MAX", nil), unscalable = true }), + value = 10, } }, baseFlags = { }, - constantStats = { - { "support_deadly_heralds_damage_+%_final", 30 }, - }, stats = { + "support_empowered_culling_strike", }, levels = { [1] = { actorLevel = 1, }, @@ -919,37 +3265,28 @@ skills["SupportDeadlyHeraldsPlayer"] = { }, } } -skills["SupportDeadlyPoisonPlayer"] = { - name = "Deadly Poison", - description = "Supports any skill that Hits enemies, causing it to deal less damage but inflict more potent Poison.", +skills["SupportNeuralOverloadPlayer"] = { + name = "Neural Overload", + description = "Supports any skill that Hits enemies. Nearby enemies are marked when they are Primed for Electrocution, and hitting a marked enemy with a supported skill will Electrocute them.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Electrocute",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Deadly Poison", + label = "Neural Overload", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_deadly_poison_hit_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, - ["support_deadly_poison_poison_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison), - }, - }, baseFlags = { }, - constantStats = { - { "support_deadly_poison_hit_damage_+%_final", -25 }, - { "support_deadly_poison_poison_effect_+%_final", 75 }, - }, stats = { + "active_skill_show_overload_range", + "active_skill_can_overload", }, levels = { [1] = { actorLevel = 1, }, @@ -957,31 +3294,27 @@ skills["SupportDeadlyPoisonPlayer"] = { }, } } -skills["SupportSlowerProjectilesPlayer"] = { - name = "Deceleration", - description = "Supports Projectile skills, making those Projectiles travel more slowly.", +skills["SupportNimbleReloadPlayer"] = { + name = "Nimble Reload", + description = "Supports Crossbow Ammunition Skills, causing them to Reload bolts significantly faster.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + excludeSkillTypes = { }, + gemFamily = { "NimbleReload",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Deceleration", - incrementalEffectiveness = 0.092720001935959, + label = "Nimble Reload", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_slower_projectiles_projectile_speed_+%_final"] = { - mod("ProjectileSpeed", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_slower_projectiles_projectile_speed_+%_final", -30 }, + { "reload_speed_+%", 60 }, }, stats = { }, @@ -991,30 +3324,36 @@ skills["SupportSlowerProjectilesPlayer"] = { }, } } -skills["SupportDelayedGratificationPlayer"] = { - name = "Delayed Gratification", - description = "Supports Skills which require some Condition to be met for use. Supported Skills can be used an additional time after their Condition has been met, but meeting that Condition is harder.", +skills["SupportNovaProjectilesPlayer"] = { + name = "Nova Projectiles", + description = "Supports Projectile Skills, making them fire extra Projectiles in a circle, at the cost of Damage. Does not support Skills which rain down Projectiles from above.", color = 2, support = true, - requireSkillTypes = { SkillType.HasUsageCondition, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileNumber, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, SkillType.Rain, }, + gemFamily = { "AdditionalProjectiles",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Delayed Gratification", + label = "Nova Projectiles", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_nova_projectiles_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "difficulty_of_meeting_conditional_requirement_+%", 150 }, - { "conditional_skill_additional_usages_after_meeting_requirement", 1 }, - { "conditional_skill_additional_usages_duration_ms", 10000 }, + { "number_of_additional_projectiles", 4 }, + { "support_nova_projectiles_damage_+%_final", -40 }, }, stats = { + "projectiles_nova", }, levels = { [1] = { actorLevel = 1, }, @@ -1022,38 +3361,30 @@ skills["SupportDelayedGratificationPlayer"] = { }, } } -skills["SupportDelayedReactionPlayer"] = { - name = "Delayed Reaction", - description = "Supports Skills which create Hazards, causing those Hazards to only be able to trigger immediately after creation or at the end of their duration. Created Hazards have significantly lowered duration, and deal more damage.", +skills["SupportOutmaneuverPlayer"] = { + name = "Outmaneuver", + description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills Break Armour against Parried Enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Hazard, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Minion, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, }, + gemFamily = { "Outmaneuver",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Delayed Reaction", + label = "Outmaneuver", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_sunblast_hazard_hazard_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, - ["support_sunblast_hazard_hazard_duration_+%_final"] = { - mod("Duration", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_sunblast_hazard_hazard_damage_+%_final", 15 }, - { "support_sunblast_hazard_hazard_duration_+%_final", -70 }, + { "armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies", 25 }, }, stats = { - "hazards_trigger_at_end_of_duration_instead", }, levels = { [1] = { actorLevel = 1, }, @@ -1061,32 +3392,33 @@ skills["SupportDelayedReactionPlayer"] = { }, } } -skills["SupportDeliberationPlayer"] = { - name = "Deliberation", - description = "Supports skills that can be used while moving, causing you to move slower while using them, but granting more damage in exchange.", +skills["SupportIncreaseLimitPlayer"] = { + name = "Overabundance I", + description = "Supports skills which can have a Limited number of effects active at once, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", color = 2, support = true, - requireSkillTypes = { SkillType.UsableWhileMoving, }, + requireSkillTypes = { SkillType.Limit, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Overabundance",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Deliberation", + label = "Overabundance I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_deliberation_damage_+%_final"] = { - mod("Damage", "MORE", nil), + ["support_limit_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_deliberation_movement_speed_penalty_+%_final_while_performing_action", 30 }, - { "support_deliberation_damage_+%_final", 20 }, + { "base_limit_+", 1 }, + { "support_limit_skill_effect_duration_+%_final", -50 }, }, stats = { }, @@ -1096,26 +3428,33 @@ skills["SupportDeliberationPlayer"] = { }, } } -skills["SupportDazingPlayer"] = { - name = "Discombobulate", - description = "Supports Attacks, causing them to build up Daze based on a portion of Physical Damage dealt.", +skills["SupportIncreaseLimitPlayerTwo"] = { + name = "Overabundance II", + description = "Supports skills which can have a Limited number of effects active at once, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Limit, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Overabundance",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Discombobulate", + label = "Overabundance II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_limit_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_physical_damage_%_to_gain_as_daze_build_up", 100 }, + { "base_limit_+", 1 }, + { "support_limit_skill_effect_duration_+%_final", -40 }, }, stats = { }, @@ -1125,27 +3464,33 @@ skills["SupportDazingPlayer"] = { }, } } -skills["SupportElectrocutePlayer"] = { - name = "Electrocute", - description = "Supports any Skill which can deal Damage. Lightning Damage from Supported Skills can inflict Electrocute, but Supported Skills cannot inflict Shock.", +skills["SupportIncreaseLimitPlayerThree"] = { + name = "Overabundance III", + description = "Supports skills which can have a Limited number of effects active at once, doubling that Limit at the cost of Cursing yourself on Skill use. Only applies to restrictions that use the word \"Limit\".", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Limit, }, + addSkillTypes = { SkillType.HasReservation, SkillType.SupportedByOverabundanceThree, }, + excludeSkillTypes = { SkillType.HasReservation, SkillType.SupportedByOverabundanceThree, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Overabundance",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Electrocute", + label = "Overabundance III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_limit_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, + }, baseFlags = { }, stats = { - "base_lightning_damage_can_electrocute", - "never_shock", + "skill_has_double_limit", + "randomly_curse_self_on_skill_use", }, levels = { [1] = { actorLevel = 1, }, @@ -1153,28 +3498,30 @@ skills["SupportElectrocutePlayer"] = { }, } } -skills["SupportEncumberancePlayer"] = { - name = "Encumbrance", - description = "Supports any skill, causing inflicted Slows to be more powerful.", +skills["SupportOverchargePlayer"] = { + name = "Overcharge", + description = "Supports any skill that Hits enemies, making its Shocks more effective but reflecting them back to you as well.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.Spell, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Overcharge",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Encumbrance", - incrementalEffectiveness = 0.054999999701977, + label = "Overcharge", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "base_debuff_slow_magnitude_+%", 15 }, + { "shock_effect_+%", 50 }, }, stats = { + "shocks_reflected_to_self", }, levels = { [1] = { actorLevel = 1, }, @@ -1182,26 +3529,33 @@ skills["SupportEncumberancePlayer"] = { }, } } -skills["SupportChanceToPoisonPlayer"] = { - name = "Envenom", - description = "Supports any skill that Hits enemies, giving it a chance to Poison enemies.", +skills["SupportOverextendPlayer"] = { + name = "Overextend", + description = "Supports Attack Skills you use yourself. Supported Skills deal more Damage with Critical Hits, but Critically Hitting an Enemy with them will Daze you for a short time.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Overextend",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Envenom", - incrementalEffectiveness = 0.092720001935959, + label = "Overextend", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_overextend_critical_strike_multiplier_+%_final"] = { + mod("CritMultiplier", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "base_chance_to_poison_on_hit_%", 50 }, + { "support_overextend_critical_strike_multiplier_+%_final", 30 }, + { "daze_self_on_critical_hit_for_X_ms", 5000 }, }, stats = { }, @@ -1211,38 +3565,35 @@ skills["SupportChanceToPoisonPlayer"] = { }, } } -skills["SupportExcoriatePlayer"] = { - name = "Excoriate", - description = "Supports Melee Attack Skills. Supported Skills deal more Melee Damage for each Elemental Ailment on Enemies they hit, but cannot themselves inflict Elemental Ailments.", +skills["SupportOverreachPlayer"] = { + name = "Overreach", + description = "Supports Attack Skills which deal Damage in an Area. Supported Skills have significantly increased Area of Effect, but are less Accurate against nearby targets.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + requireSkillTypes = { SkillType.Attack, SkillType.Area, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "IncreasedAreaOfEffect",}, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Excoriate", + label = "Overreach", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"] = { - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited" }), - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Chilled" }), - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Shocked" }), - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Electrocuted" }), + ["support_reach_accuracy_within_2m_+%_final"] = { + mod("Accuracy", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "enemyDistance", threshold = 20, upper = true } ), }, }, baseFlags = { }, constantStats = { - { "support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target", 10 }, + { "base_skill_area_of_effect_+%", 40 }, + { "support_reach_accuracy_within_2m_+%_final", -80 }, }, stats = { - "cannot_inflict_elemental_ailments", }, levels = { [1] = { actorLevel = 1, }, @@ -1250,34 +3601,30 @@ skills["SupportExcoriatePlayer"] = { }, } } -skills["SupportFerocityPlayer"] = { - name = "Ferocity", - description = "Supports Skills that you use yourself. Supported Skills will consume a Frenzy Charge on use if possible, and will gain significant Skill Speed if they do. Supported Skills cannot generate Frenzy Charges.", +skills["SupportPayloadPlayer"] = { + name = "Payload", + description = "Supports Skills which fire Grenades, giving fired Grenades a chance to activate again, but lengthening their cooldowns.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, - addSkillTypes = { SkillType.SupportedByFerocity, }, - excludeSkillTypes = { SkillType.Minion, SkillType.SummonsTotem, SkillType.SupportedByTumult, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesFrenzyChargesOnUse, SkillType.SupportedByFerocity, SkillType.NOT, SkillType.AND, }, + requireSkillTypes = { SkillType.Grenade, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Payload",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ferocity", + label = "Payload", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"] = { - mod("Speed", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "RemovableFrenzyCharge", threshold = 1 }), - }, - }, baseFlags = { }, constantStats = { - { "skill_consume_frenzy_charge_to_gain_skill_speed_+%_final", 40 }, + { "grenade_skill_%_chance_to_explode_twice", 50 }, + { "base_cooldown_speed_+%", -70 }, }, stats = { - "skill_cannot_generate_frenzy_charges", }, levels = { [1] = { actorLevel = 1, }, @@ -1285,26 +3632,27 @@ skills["SupportFerocityPlayer"] = { }, } } -skills["SupportFlowPlayer"] = { - name = "Flow", - description = "Supports Skills which require Combo to use. Supported Skills lose their Combo stacks after a longer delay spent not gaining any Combo.", +skills["SupportPerfectEndurancePlayer"] = { + name = "Perfected Endurance", + description = "Supports skills which have a benefit for Perfect Timing. Supported Skills grant at least one Endurance Charge when Hitting an enemy with Perfect Timing.", color = 2, support = true, - requireSkillTypes = { SkillType.ComboStacking, }, + requireSkillTypes = { SkillType.PerfectTiming, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "PerfectedEndurance",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Flow", + label = "Perfected Endurance", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "combo_falloff_speed_+%", -60 }, + { "chance_to_gain_endurance_charge_on_perfect_timing_hit_%", 100 }, }, stats = { }, @@ -1314,35 +3662,29 @@ skills["SupportFlowPlayer"] = { }, } } -skills["SupportForkPlayer"] = { - name = "Fork", - description = "Supports Projectile skills, making their Projectiles Fork.", +skills["SupportPerfectionPlayer"] = { + name = "Perfection", + description = "Supports skills which have a benefit for Perfectly Timing their use. On successfully executing Perfect Timing with Supported Skills, gain Perfection, which is a powerful damage buff. However, failing to execute any Perfect Timing (even with skills not supported by Perfection) will remove all Perfection on you.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, }, + requireSkillTypes = { SkillType.PerfectTiming, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + excludeSkillTypes = { }, + gemFamily = { "Perfection",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fork", - incrementalEffectiveness = 0.092720001935959, + label = "Perfection", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_fork_forked_projectile_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "ForkedCount", threshold = 1 }), - }, - }, baseFlags = { }, constantStats = { - { "terrain_arrow_attachment_chance_reduction_+%", 100 }, - { "support_fork_forked_projectile_damage_+%_final", -30 }, + { "gain_X_perfection_on_successful_perfect_timing", 1 }, }, stats = { - "projectiles_fork", }, levels = { [1] = { actorLevel = 1, }, @@ -1350,34 +3692,31 @@ skills["SupportForkPlayer"] = { }, } } -skills["SupportGambleshotPlayer"] = { - name = "Gambleshot", - description = "Supports Skills which fire Projectiles that are not ground targeted. Projectiles from Supported Skills randomly Fork, Chain or Pierce.", +skills["SupportPerpetualChargePlayer"] = { + name = "Perpetual Charge", + description = "Supports skills that consume Power, Frenzy or Endurance Charges on use, giving them a chance not to remove each Charge while still gaining the benefits of consuming them.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, }, + requireSkillTypes = { SkillType.ConsumesCharges, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.GroundTargetedProjectile, }, + excludeSkillTypes = { }, + gemFamily = { "PerpetualCharge",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Gambleshot", + label = "Perpetual Charge", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - [ "support_gambleshot_projectile_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_gambleshot_projectile_damage_+%_final", -15 }, + { "charge_skip_consume_chance_%", 25 }, }, stats = { - "projectile_randomly_fork_chain_or_pierce", }, levels = { [1] = { actorLevel = 1, }, @@ -1385,28 +3724,29 @@ skills["SupportGambleshotPlayer"] = { }, } } -skills["SupportHitAndRunPlayer"] = { - name = "Hit and Run", - description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills can only be used after you have moved a certain distance, but have massively increased Skill Speed. Cannot support Skills which have a Cooldown or that are Triggered.", +skills["SupportPiercePlayer"] = { + name = "Pierce I", + description = "Supports Projectile skills, making their Projectiles Pierce an enemy but deal less damage after doing so.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, }, - addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, }, - excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, SkillType.Triggered, SkillType.UsedByTotem, }, - ignoreMinionTypes = true, + requireSkillTypes = { SkillType.Projectile, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + gemFamily = { "Pierce",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Hit and Run", - incrementalEffectiveness = 0.054999999701977, + label = "Pierce I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_mobile_assault_skill_speed_+%_final", 40 }, - { "skill_unusable_until_moved_X_distance", 100 }, + { "base_chance_to_pierce_%", 100 }, + { "support_pierce_projectile_damage_+%_final_if_pierced_enemy", -20 }, }, stats = { }, @@ -1416,29 +3756,30 @@ skills["SupportHitAndRunPlayer"] = { }, } } -skills["SupportImpalePlayer"] = { - name = "Impale", - description = "Supports Attacks, causing them to Impale on Hit but making them unable to Extract Impale themselves.", +skills["SupportPiercePlayerTwo"] = { + name = "Pierce II", + description = "Supports Projectile skills, making their Projectiles Pierce an enemy.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + gemFamily = { "Pierce",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Impale", - incrementalEffectiveness = 0.054999999701977, + label = "Pierce II", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "impale_on_hit_%_chance", 100 }, + { "base_chance_to_pierce_%", 100 }, }, stats = { - "cannot_consume_impale", }, levels = { [1] = { actorLevel = 1, }, @@ -1446,33 +3787,36 @@ skills["SupportImpalePlayer"] = { }, } } -skills["SupportCooldownReductionPlayer"] = { - name = "Ingenuity", - description = "Supports skills with Cooldowns, increasing the rate at which those Cooldowns Recover.", +skills["SupportPiercePlayerThree"] = { + name = "Pierce III", + description = "Supports Projectile skills, making their Projectiles Pierce an unlimited number of enemies, losing damage as they do so.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + gemFamily = { "Pierce",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ingenuity", - incrementalEffectiveness = 0.054999999701977, + label = "Pierce III", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_cooldown_reduction_cooldown_recovery_+%"] = { - mod("CooldownRecovery", "INC", nil), + ["support_pierce_damage_+%_final_per_pierced_target"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "PiercedCount" }), }, }, baseFlags = { }, constantStats = { - { "support_cooldown_reduction_cooldown_recovery_+%", 30 }, + { "support_pierce_damage_+%_final_per_pierced_target", -20 }, }, stats = { + "always_pierce", }, levels = { [1] = { actorLevel = 1, }, @@ -1480,36 +3824,28 @@ skills["SupportCooldownReductionPlayer"] = { }, } } -skills["SupportInhibitorPlayer"] = { - name = "Inhibitor", - description = "Supports any Skill you use yourself or that you Trigger. Supported Skills cannot consume Charges by any means. Cannot Support Skills which require Charges to be used.", +skills["SupportPietysMercyPlayer"] = { + name = "Piety's Mercy", + description = "Supports Skills that cause Damaging Hits. Hits from Supported Skills cannot kill Enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, SkillType.Spell, SkillType.DegenOnlySpellDamage, }, - addSkillTypes = { SkillType.CannotConsumeCharges, }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.RequiresCharges, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Mercy",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Inhibitor", + label = "Piety's Mercy", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_inhibitor_damage_+%_final_per_charge_type"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "FrenzyCharge", threshold = 1 }), - mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "PowerCharge", threshold = 1 }), - mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "EnduranceCharge", threshold = 1 }), - }, - }, baseFlags = { }, - constantStats = { - { "support_inhibitor_damage_+%_final_per_charge_type", 4 }, - }, stats = { - "cannot_consume_power_frenzy_endurance_charges", + "cannot_kill_enemies_with_hits", }, levels = { [1] = { actorLevel = 1, }, @@ -1517,39 +3853,31 @@ skills["SupportInhibitorPlayer"] = { }, } } -skills["SupportInnervatePlayer"] = { - name = "Innervate", - description = "Supports Attacks you use yourself. Killing a Shocked enemy with supported skills infuses all of your Attacks with Lightning damage for a short time.", +skills["SupportPinPlayer"] = { + name = "Pin I", + description = "Supports any skill that Hits enemies, allowing its Physical damage to Pin enemies but making it unable to Stun.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, }, - ignoreMinionTypes = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Pin",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Innervate", + label = "Pin I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_innervate_buff_grant_%_added_lightning_attack_damage"] = { - mod("DamageGainAsLightning", "BASE", nil, ModFlag.Attack, 0, { type = "Condition", var = "KilledShockedLast3Seconds" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Innervate" }), - }, - ["support_innervate_base_buff_duration"] = { - mod("Duration", "BASE", nil, 0, 0, { type = "Condition", var = "KilledShockedLast3Seconds" }, { type = "GlobalEffect", effectType = "Buff" }), - div = 1000, - }, - }, baseFlags = { }, constantStats = { - { "support_innervate_buff_grant_%_added_lightning_attack_damage", 35 }, - { "support_innervate_buff_base_duration_ms", 5000 }, + { "support_pin_spell_pinned_art_variation", 1 }, }, stats = { + "support_pin_physical_damage_can_pin", + "support_pin_buildup_pin_instead_of_stun", }, levels = { [1] = { actorLevel = 1, }, @@ -1557,34 +3885,32 @@ skills["SupportInnervatePlayer"] = { }, } } -skills["SupportLastingShockPlayer"] = { - name = "Lasting Shock", - description = "Supports any skill that Hits enemies or inflicts Shock, causing its Shocks to be inflicted less often but last longer.", +skills["SupportPinPlayerTwo"] = { + name = "Pin II", + description = "Supports any skill that Hits enemies, allowing its Physical damage to Pin enemies but making it unable to Stun, as well as granting Critial Hit Chance against Immobilised enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Pin",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lasting Shock", - incrementalEffectiveness = 0.092720001935959, + label = "Pin II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_lasting_shock_chance_to_shock_+%_final"] = { - mod("EnemyShockChance", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "shock_duration_+%", 100 }, - { "support_lasting_shock_chance_to_shock_+%_final", -30 }, + { "support_pin_spell_pinned_art_variation", 1 }, + { "critical_strike_chance_+%_vs_immobilised_enemies", 50 }, }, stats = { + "support_pin_physical_damage_can_pin", + "support_pin_buildup_pin_instead_of_stun", }, levels = { [1] = { actorLevel = 1, }, @@ -1592,28 +3918,33 @@ skills["SupportLastingShockPlayer"] = { }, } } -skills["SupportLeveragePlayer"] = { - name = "Leverage", - description = "Supports Skills which Hit Enemies. Supported Skills gain increased chance to Critically Hit against Immobilised Enemies.", +skills["SupportPinPlayerThree"] = { + name = "Pin III", + description = "Supports any skill that Hits enemies, allowing its Physical damage to Pin enemies but making it unable to Stun. Pin buildup caused by Supported Skill is lessened, but Pin duration is significantly longer.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Pin",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Leverage", + label = "Pin III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "critical_strike_chance_+%_vs_immobilised_enemies", 50 }, + { "support_pin_spell_pinned_art_variation", 1 }, + { "support_pin_pin_buildup_+%_final", -60 }, + { "support_pin_pin_duration_+%_final", 30 }, }, stats = { + "support_pin_physical_damage_can_pin", + "support_pin_buildup_pin_instead_of_stun", }, levels = { [1] = { actorLevel = 1, }, @@ -1621,26 +3952,27 @@ skills["SupportLeveragePlayer"] = { }, } } -skills["SupportLifeFlaskPlayer"] = { - name = "Life Bounty", - description = "Supports any skill that Hits enemies, causing enemies it kills to grant more Life Flask charges.", +skills["SupportPoisonPlayer"] = { + name = "Poison I", + description = "Supports any skill that Hits enemies, giving it a chance to Poison enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Poison",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Life Bounty", - incrementalEffectiveness = 0.054999999701977, + label = "Poison I", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_life_flask_charges_gained_+%_final_from_killing_blow", 100 }, + { "base_chance_to_poison_on_hit_%", 40 }, }, stats = { }, @@ -1650,26 +3982,27 @@ skills["SupportLifeFlaskPlayer"] = { }, } } -skills["SupportLifeOnCullPlayer"] = { - name = "Life Drain", - description = "Supports any skill that Hits enemies, causing you to recover Life when it Culls an enemy.", +skills["SupportPoisonPlayerTwo"] = { + name = "Poison II", + description = "Supports any skill that Hits enemies, giving it a chance to Poison enemies.", color = 2, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Poison",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Life Drain", + label = "Poison II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "recover_%_maximum_life_on_cull", 12 }, + { "base_chance_to_poison_on_hit_%", 60 }, }, stats = { }, @@ -1679,26 +4012,33 @@ skills["SupportLifeOnCullPlayer"] = { }, } } -skills["SupportLightningExposurePlayer"] = { - name = "Lightning Exposure", - description = "Supports any skill that Hits enemies, causing it to inflict Lightning Exposure when inflicting Shock.", +skills["SupportPoisonPlayerThree"] = { + name = "Poison III", + description = "Supports any skill that Hits enemies, giving it a chance to Poison enemies and causing it to inflict more powerful Poisons against Bleeding Enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { SkillType.Duration, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Poison",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lightning Exposure", + label = "Poison III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Poison, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }), + }, + }, baseFlags = { }, constantStats = { - { "inflict_lightning_exposure_for_x_ms_on_shock", 8000 }, + { "base_chance_to_poison_on_hit_%", 60 }, + { "mixed_maladies_poison_effect_+%_final_vs_bleeding", 20 }, }, stats = { }, @@ -1708,34 +4048,27 @@ skills["SupportLightningExposurePlayer"] = { }, } } -skills["SupportAddedLightningDamagePlayer"] = { - name = "Lightning Infusion", - description = "Supports Attacks, causing them to Gain Lightning Damage but deal less Cold and Fire Damage.", +skills["SupportPracticedComboPlayer"] = { + name = "Practiced Combo", + description = "Supports Strike Skills. Supported Skills have a chance to build additional Combo on Hit. Cannot support Skills used by Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.MeleeSingleTarget, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Minion, }, + gemFamily = { "PracticedCombo",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lightning Infusion", - baseEffectiveness = 0.52710002660751, - incrementalEffectiveness = 0.092720001935959, + label = "Practiced Combo", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_cold_and_fire_damage_+%_final"] = { - mod("ColdDamage", "MORE", nil), - mod("FireDamage", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks", 25 }, - { "support_cold_and_fire_damage_+%_final", -50 }, + { "additional_combo_gain_chance_%", 40 }, }, stats = { }, @@ -1745,26 +4078,33 @@ skills["SupportAddedLightningDamagePlayer"] = { }, } } -skills["SupportLightningPenetrationPlayer"] = { - name = "Lightning Penetration", - description = "Supports any skill that Hits enemies, making those Hits Penetrate enemy Lightning resistance.", +skills["SupportPrecisionPlayer"] = { + name = "Precision I", + description = "Supports Persistent Buff Skills, causing you to gain increased Accuracy while the Skill is active.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Precision",}, + isLineage = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lightning Penetration", - incrementalEffectiveness = 0.092720001935959, + label = "Precision I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_precision_accuracy_rating_+%"] = { + mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Precision" } ), + }, + }, baseFlags = { }, constantStats = { - { "base_reduce_enemy_lightning_resistance_%", 30 }, + { "support_precision_accuracy_rating_+%", 30 }, }, stats = { }, @@ -1774,26 +4114,33 @@ skills["SupportLightningPenetrationPlayer"] = { }, } } -skills["SupportLockdownPlayer"] = { - name = "Lockdown", - description = "Supports any skill that Hits enemies, causing any Pin buildup it inflicts to be stronger the closer the enemy is to you.", +skills["SupportPrecisionPlayerTwo"] = { + name = "Precision II", + description = "Supports Persistent Buff Skills, causing you to gain increased Accuracy while the Skill is active.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Precision",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lockdown", + label = "Precision II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_precision_accuracy_rating_+%"] = { + mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Precision" } ), + }, + }, baseFlags = { }, constantStats = { - { "support_lockdown_distance_based_pin_damage_+%_final", 120 }, + { "support_precision_accuracy_rating_+%", 50 }, }, stats = { }, @@ -1803,32 +4150,33 @@ skills["SupportLockdownPlayer"] = { }, } } -skills["SupportFarCombatPlayer"] = { - name = "Longshot", - description = "Supports Attacks, causing them to deal more damage from farther away.", +skills["SupportProjectileAccelerationPlayer"] = { + name = "Projectile Acceleration I", + description = "Supports Projectile skills, making those Projectiles travel faster.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, addSkillTypes = { }, - excludeSkillTypes = { }, - ignoreMinionTypes = true, + excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + gemFamily = { "ProjectileSpeed",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Longshot", + label = "Projectile Acceleration I", + baseEffectiveness = 0, incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_far_combat_attack_damage_+%_final_from_distance"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{35,0},{70,1}} }), + ["support_faster_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_far_combat_attack_damage_+%_final_from_distance", 30 }, + { "support_faster_projectiles_projectile_speed_+%_final", 40 }, }, stats = { }, @@ -1838,28 +4186,34 @@ skills["SupportFarCombatPlayer"] = { }, } } -skills["SupportMaimPlayer"] = { - name = "Maim", - description = "Supports Attacks, causing them to Maim enemies.", +skills["SupportProjectileAccelerationPlayerTwo"] = { + name = "Projectile Acceleration II", + description = "Supports Projectile skills, making those Projectiles travel faster, and granting them a chance to Pierce Enemies.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { SkillType.AppliesMaim, }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + gemFamily = { "ProjectileSpeed",}, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Maim", + label = "Projectile Acceleration II", + baseEffectiveness = 0, incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_faster_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "maim_on_hit_%", 100 }, + { "support_faster_projectiles_projectile_speed_+%_final", 40 }, + { "base_chance_to_pierce_%", 40 }, }, stats = { }, @@ -1869,27 +4223,36 @@ skills["SupportMaimPlayer"] = { }, } } -skills["SupportMaladyPlayer"] = { - name = "Malady", - description = "Supports Skills which can cause Damaging Hits, causing base chance to inflict Bleed with Supported Skills to instead apply to base chance to Poison, and causing base chance to Poison to instead apply to Bleed.", +skills["SupportProjectileAccelerationPlayerThree"] = { + name = "Projectile Acceleration III", + description = "Supports Projectile skills, making those Projectiles travel faster, and causing increases and reductions to Projectile speed to also apply to Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + gemFamily = { "ProjectileSpeed",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Malady", - incrementalEffectiveness = 0.054999999701977, + label = "Projectile Acceleration III", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_faster_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, + }, baseFlags = { }, + constantStats = { + { "support_faster_projectiles_projectile_speed_+%_final", 40 }, + }, stats = { - "base_bleed_chance_is_poison_chance_instead", - "base_poison_chance_is_bleed_chance_instead", + "projectile_speed_additive_modifiers_also_apply_to_projectile_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -1897,26 +4260,32 @@ skills["SupportMaladyPlayer"] = { }, } } -skills["SupportManaFlaskPlayer"] = { - name = "Mana Bounty", - description = "Supports any skill that Hits enemies, causing enemies it kills to grant more Mana Flask charges.", +skills["SupportProjectileDecelerationPlayer"] = { + name = "Projectile Deceleration I", + description = "Supports Projectile skills, making those Projectiles travel more slowly.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + gemFamily = { "ProjectileSpeed",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Mana Bounty", - incrementalEffectiveness = 0.054999999701977, + label = "Projectile Deceleration I", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_slower_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_mana_flask_charges_gained_+%_final_from_killing_blow", 100 }, + { "support_slower_projectiles_projectile_speed_+%_final", -25 }, }, stats = { }, @@ -1926,33 +4295,32 @@ skills["SupportManaFlaskPlayer"] = { }, } } -skills["SupportFasterAttackPlayer"] = { - name = "Martial Tempo", - description = "Supports Attacks, causing them to Attack faster.", +skills["SupportProjectileDecelerationPlayerTwo"] = { + name = "Projectile Deceleration II", + description = "Supports Projectile skills, making those Projectiles travel more slowly.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileSpeed, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Herald, SkillType.NoAttackOrCastTime, }, + excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + gemFamily = { "ProjectileSpeed",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Martial Tempo", - baseEffectiveness = 0, + label = "Projectile Deceleration II", incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_faster_attacks_attack_speed_+%_final"] = { - mod("Speed", "MORE", nil, ModFlag.Attack), + ["support_slower_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_faster_attacks_attack_speed_+%_final", 20 }, - { "support_faster_attacks_damage_+%_final", 0 }, + { "support_slower_projectiles_projectile_speed_+%_final", -30 }, }, stats = { }, @@ -1962,27 +4330,27 @@ skills["SupportFasterAttackPlayer"] = { }, } } -skills["SupportMobilityPlayer"] = { - name = "Mobility", - description = "Supports skills that can be used while moving, allowing you to move faster while using them.", +skills["SupportPunchThroughPlayer"] = { + name = "Punch Through", + description = "Supports Melee Attack Skills. Supported Skills apply Easy Target when Knocking Back Enemies, causing the next Projectile Attack Hit they take to deal increased Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.UsableWhileMoving, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "PunchThrough",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Mobility", + label = "Punch Through", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_mobility_damage_+%_final", 0 }, - { "support_mobility_movement_speed_penalty_+%_final_while_performing_action", -25 }, + { "apply_attack_projectile_weakness_%_per_1m_knockback", 3 }, }, stats = { }, @@ -1992,33 +4360,36 @@ skills["SupportMobilityPlayer"] = { }, } } -skills["SupportMomentumPlayer"] = { - name = "Momentum", - description = "Supports any damaging skill that you use yourself, causing it to deal more damage if you move a sufficient distance while using the skill. Teleportation does not count towards the distance travelled.", +skills["SupportPursuitPlayer"] = { + name = "Pursuit I", + description = "Supports Melee Attacks. Supported Skills deal more Melee damage if you have struck with a Projectile Attack Hit in the last eight seconds, but cannot themselves deal Projectile Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, }, - ignoreMinionTypes = true, + excludeSkillTypes = { }, + gemFamily = { "Pursuit",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Momentum", + label = "Pursuit I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_momnetum_damage_+%_final_with_momentum"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "Moved2m" }), + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "HitProjectileRecently" } ), + }, + ["support_advancing_assault_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile), }, }, baseFlags = { }, constantStats = { - { "support_momentum_distance_travelled_to_gain_momentum", 20 }, - { "support_momnetum_damage_+%_final_with_momentum", 40 }, + { "support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds", 20 }, + { "support_advancing_assault_projectile_damage_+%_final", -100 }, }, stats = { }, @@ -2028,32 +4399,38 @@ skills["SupportMomentumPlayer"] = { }, } } -skills["SupportEmpoweredCullPlayer"] = { - name = "Murderous Intent", - description = "Supports skills that can Empower skills other than themselves, causing skills they Empower to Cull enemies.", +skills["SupportPursuitPlayerTwo"] = { + name = "Pursuit II", + description = "Supports Melee Attacks. Supported Skills deal more Melee damage if you have struck with a Projectile Attack Hit in the last eight seconds, but cannot themselves deal Projectile Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.EmpowersOtherSkill, }, + requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Pursuit",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Murderous Intent", + label = "Pursuit II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_empowered_culling_strike"] = { - mod("ExtraEmpowerMod", "LIST", { mod = mod("CullPercent", "MAX", nil), unscalable = true }), - value = 10, - } + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "HitProjectileRecently" } ), + }, + ["support_advancing_assault_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile), + }, }, baseFlags = { }, + constantStats = { + { "support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds", 25 }, + { "support_advancing_assault_projectile_damage_+%_final", -100 }, + }, stats = { - "support_empowered_culling_strike", }, levels = { [1] = { actorLevel = 1, }, @@ -2061,27 +4438,38 @@ skills["SupportEmpoweredCullPlayer"] = { }, } } -skills["SupportNeuralOverloadPlayer"] = { - name = "Neural Overload", - description = "Supports any skill that Hits enemies. Nearby enemies are marked when they are Primed for Electrocution, and hitting a marked enemy with a supported skill will Electrocute them.", +skills["SupportPursuitPlayerThree"] = { + name = "Pursuit III", + description = "Supports Melee Attacks. Supported Skills deal more Melee damage if you have struck with a Projectile Attack Hit in the last two seconds, but cannot themselves deal Projectile Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Pursuit",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Neural Overload", + label = "Pursuit III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "HitProjectileRecently" } ), + }, + ["support_advancing_assault_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile), + }, + }, baseFlags = { }, + constantStats = { + { "support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds", 30 }, + { "support_advancing_assault_projectile_damage_+%_final", -100 }, + }, stats = { - "active_skill_show_overload_range", - "active_skill_can_overload", }, levels = { [1] = { actorLevel = 1, }, @@ -2089,26 +4477,28 @@ skills["SupportNeuralOverloadPlayer"] = { }, } } -skills["SupportNimbleReloadPlayer"] = { - name = "Nimble Reload", - description = "Supports Crossbow Ammunition Skills, causing them to Reload bolts significantly faster.", +skills["SupportRakiatasFlowPlayer"] = { + name = "Rakiata's Flow", + description = "Supports Skills that can cause Damaging Hits, causing those Hits to treat Enemy Elemental Resistances as inverted.", color = 2, support = true, - requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "RakiataLineage",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Nimble Reload", + label = "Rakiata's Flow", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "reload_speed_+%", 60 }, + { "treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance", 100 }, }, stats = { }, @@ -2118,27 +4508,28 @@ skills["SupportNimbleReloadPlayer"] = { }, } } -skills["SupportOutmaneuverPlayer"] = { - name = "Outmaneuver", - description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills Break Armour against Parried Enemies.", +skills["SupportRapidAttacksPlayer"] = { + name = "Rapid Attacks I", + description = "Supports Attacks, causing them to Attack faster.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Minion, SkillType.Trapped, SkillType.RemoteMined, }, - ignoreMinionTypes = true, + excludeSkillTypes = { SkillType.Herald, SkillType.NoAttackOrCastTime, }, + gemFamily = { "RapidAttacks",}, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Outmaneuver", - incrementalEffectiveness = 0.054999999701977, + label = "Rapid Attacks I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies", 25 }, + { "attack_speed_+%", 15 }, }, stats = { }, @@ -2148,32 +4539,27 @@ skills["SupportOutmaneuverPlayer"] = { }, } } -skills["SupportIncreaseLimitPlayer"] = { - name = "Overabundance", - description = "Supports skills which can have a Limited number of effects active at once, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", +skills["SupportRapidAttacksPlayerTwo"] = { + name = "Rapid Attacks II", + description = "Supports Attacks, causing them to Attack faster.", color = 2, support = true, - requireSkillTypes = { SkillType.Limit, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Herald, SkillType.NoAttackOrCastTime, }, + gemFamily = { "RapidAttacks",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Overabundance", - incrementalEffectiveness = 0.054999999701977, + label = "Rapid Attacks II", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_limit_skill_effect_duration_+%_final"] = { - mod("Duration", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "base_limit_+", 1 }, - { "support_limit_skill_effect_duration_+%_final", -50 }, + { "attack_speed_+%", 25 }, }, stats = { }, @@ -2183,29 +4569,35 @@ skills["SupportIncreaseLimitPlayer"] = { }, } } -skills["SupportOverchargePlayer"] = { - name = "Overcharge", - description = "Supports any skill that Hits enemies, making its Shocks more effective but reflecting them back to you as well.", +skills["SupportRapidAttacksPlayerThree"] = { + name = "Rapid Attacks III", + description = "Supports Attacks, causing them to Attack faster at the cost of Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Herald, SkillType.NoAttackOrCastTime, }, + gemFamily = { "RapidAttacks",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Overcharge", + label = "Rapid Attacks III", incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_faster_attacks_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Attack), + }, + }, baseFlags = { }, constantStats = { - { "shock_effect_+%", 50 }, + { "attack_speed_+%", 35 }, + { "support_faster_attacks_damage_+%_final", -50 }, }, stats = { - "shocks_reflected_to_self", }, levels = { [1] = { actorLevel = 1, }, @@ -2213,34 +4605,32 @@ skills["SupportOverchargePlayer"] = { }, } } -skills["SupportOverextendPlayer"] = { - name = "Overextend", - description = "Supports Attack Skills you use yourself. Supported Skills deal more Damage with Critical Hits, but Critically Hitting an Enemy with them will Daze you for a short time.", +skills["SupportCombatReloadPlayer"] = { + name = "Ratha's Assault", + description = "Supports Crossbow Ammunition Skills, causing them to load multiple extra bolts. Supported Skills cannot reload normally, instead loading bolts when you Dodge.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, }, + excludeSkillTypes = { }, + gemFamily = { "DoubleBarrel",}, + isLineage = true, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Overextend", + label = "Ratha's Assault", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_overextend_critical_strike_multiplier_+%_final"] = { - mod("CritMultiplier", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_overextend_critical_strike_multiplier_+%_final", 30 }, - { "daze_self_on_critical_hit_for_X_ms", 5000 }, + { "crossbow_load_x_bolts_on_dodge", 3 }, + { "support_double_barrel_number_of_crossbow_bolts_+", 3 }, }, stats = { + "active_skill_cannot_manually_reload", }, levels = { [1] = { actorLevel = 1, }, @@ -2248,27 +4638,27 @@ skills["SupportOverextendPlayer"] = { }, } } -skills["SupportPayloadPlayer"] = { - name = "Payload", - description = "Supports Skills which fire Grenades, giving fired Grenades a chance to activate again, but lengthening their cooldowns.", +skills["SupportRearmPlayer"] = { + name = "Rearm I", + description = "Supports Skills which create Hazards. Hazards created by Supported Skills have a chance to be rearmed a short duration after triggering.", color = 2, support = true, - requireSkillTypes = { SkillType.Grenade, }, + requireSkillTypes = { SkillType.Hazard, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Rearm",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Payload", + label = "Rearm I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "grenade_skill_%_chance_to_explode_twice", 50 }, - { "base_cooldown_speed_+%", -70 }, + { "hazard_rearm_%_chance", 20 }, }, stats = { }, @@ -2278,26 +4668,27 @@ skills["SupportPayloadPlayer"] = { }, } } -skills["SupportPerfectionPlayer"] = { - name = "Perfection", - description = "Supports skills which have a benefit for Perfectly Timing their use. On successfully executing Perfect Timing with Supported Skills, gain Perfection, which is a powerful damage buff. However, failing to execute any Perfect Timing (even with skills not supported by Perfection) will remove all Perfection on you.", +skills["SupportRearmPlayerTwo"] = { + name = "Rearm II", + description = "Supports Skills which create Hazards. Hazards created by Supported Skills have a chance to be rearmed a short duration after triggering.", color = 2, support = true, - requireSkillTypes = { SkillType.PerfectTiming, }, + requireSkillTypes = { SkillType.Hazard, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Rearm",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Perfection", + label = "Rearm II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "gain_X_perfection_on_successful_perfect_timing", 1 }, + { "hazard_rearm_%_chance", 30 }, }, stats = { }, @@ -2307,28 +4698,36 @@ skills["SupportPerfectionPlayer"] = { }, } } -skills["SupportPerpetualChargePlayer"] = { - name = "Perpetual Charge", - description = "Supports skills that consume Power, Frenzy or Endurance Charges on use, giving them a chance not to remove each Charge while still gaining the benefits of consuming them.", +skills["SupportRetreatPlayer"] = { + name = "Retreat I", + description = "Supports Skills which create Projectiles. Supported Skills deal more damage with Projectiles if you have struck with a Melee Hit in the last eight seconds, but cannot themselves deal Melee Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.ConsumesCharges, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Retreat",}, levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Perpetual Charge", + label = "Retreat I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "Condition", var = "HitMeleeRecently" } ), + }, + ["support_retreating_assault_melee_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Melee), + }, + }, baseFlags = { }, constantStats = { - { "charge_skip_consume_chance_%", 35 }, + { "support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds", 20 }, + { "support_retreating_assault_melee_damage_+%_final", -100 }, }, stats = { }, @@ -2338,28 +4737,36 @@ skills["SupportPerpetualChargePlayer"] = { }, } } -skills["SupportPiercePlayer"] = { - name = "Pierce", - description = "Supports Projectile skills, making their Projectiles Pierce an enemy but deal less damage after doing so.", +skills["SupportRetreatPlayerTwo"] = { + name = "Retreat II", + description = "Supports Skills which create Projectiles. Supported Skills deal more damage with Projectiles if you have struck with a Melee Hit in the last eight seconds, but cannot themselves deal Melee Damage.", color = 2, support = true, requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + excludeSkillTypes = { }, + gemFamily = { "Retreat",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Pierce", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Retreat II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "Condition", var = "HitMeleeRecently" } ), + }, + ["support_retreating_assault_melee_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Melee), + }, + }, baseFlags = { }, constantStats = { - { "base_chance_to_pierce_%", 100 }, - { "support_pierce_projectile_damage_+%_final_if_pierced_enemy", -20 }, + { "support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds", 25 }, + { "support_retreating_assault_melee_damage_+%_final", -100 }, }, stats = { }, @@ -2369,30 +4776,38 @@ skills["SupportPiercePlayer"] = { }, } } -skills["SupportPinPlayer"] = { - name = "Pin", - description = "Supports any skill that Hits enemies, allowing its Physical damage to Pin enemies but making it unable to Stun.", +skills["SupportRetreatPlayerThree"] = { + name = "Retreat III", + description = "Supports Skills which create Projectiles. Supported Skills deal more damage with Projectiles if you have struck with a Melee Hit in the last two seconds, but cannot themselves deal Melee Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Retreat",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Pin", + label = "Retreat III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "Condition", var = "HitMeleeRecently" } ), + }, + ["support_retreating_assault_melee_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Melee), + }, + }, baseFlags = { }, constantStats = { - { "support_pin_spell_pinned_art_variation", 1 }, - { "support_pin_hit_damage_stun_multiplier_+%_final", -100 }, + { "support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds", 30 }, + { "support_retreating_assault_melee_damage_+%_final", -100 }, }, stats = { - "support_pin_physical_damage_can_pin", }, levels = { [1] = { actorLevel = 1, }, @@ -2400,26 +4815,27 @@ skills["SupportPinPlayer"] = { }, } } -skills["SupportPracticedComboPlayer"] = { - name = "Practiced Combo", - description = "Supports Strike Skills. Supported Skills have a chance to build additional Combo on Hit. Cannot support Skills used by Minions.", +skills["SupportRicochetPlayer"] = { + name = "Ricochet I", + description = "Supports any Skill which creates Projectiles, giving those Projectiles a chance to Chain when impacting terrain.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.MeleeSingleTarget, SkillType.AND, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, }, + excludeSkillTypes = { SkillType.CannotChain, SkillType.CannotTerrainChain, }, + gemFamily = { "Ricochet",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Practiced Combo", + label = "Ricochet I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "additional_combo_gain_chance_%", 40 }, + { "projectile_chance_to_chain_1_extra_time_from_terrain_%", 40 }, }, stats = { }, @@ -2429,31 +4845,27 @@ skills["SupportPracticedComboPlayer"] = { }, } } -skills["SupportPrecisionPlayer"] = { - name = "Precision", - description = "Supports Persistent Buff Skills, causing you to gain increased Accuracy while the Skill is active.", +skills["SupportRicochetPlayerTwo"] = { + name = "Ricochet II", + description = "Supports any Skill which creates Projectiles, giving those Projectiles a chance to Chain when impacting terrain.", color = 2, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.CannotChain, SkillType.CannotTerrainChain, }, + gemFamily = { "Ricochet",}, levels = { - [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Precision", + label = "Ricochet II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_precision_accuracy_rating_+%"] = { - mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Precision" } ), - }, - }, baseFlags = { }, constantStats = { - { "support_precision_accuracy_rating_+%", 30 }, + { "projectile_chance_to_chain_1_extra_time_from_terrain_%", 50 }, }, stats = { }, @@ -2463,28 +4875,28 @@ skills["SupportPrecisionPlayer"] = { }, } } -skills["SupportMultipleChargesPlayer"] = { - name = "Profusion", - description = "Supports skills that can generate Charges, giving them a chance to generate an additional Charge when they do so.", +skills["SupportRicochetPlayerThree"] = { + name = "Ricochet III", + description = "Supports any Skill which creates Projectiles, causing those Projectiles to Chain when impacting terrain, at the cost of any additional Projectiles, as well as causing them to always Pierce.", color = 2, support = true, - requireSkillTypes = { SkillType.GeneratesCharges, }, + requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.CannotChain, SkillType.CannotTerrainChain, }, + gemFamily = { "Ricochet",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Profusion", + label = "Ricochet III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "chance_to_gain_1_more_charge_%", 50 }, - }, stats = { + "additional_projectiles_instead_applies_to_number_of_terrain_chains", + "always_pierce", }, levels = { [1] = { actorLevel = 1, }, @@ -2492,26 +4904,32 @@ skills["SupportMultipleChargesPlayer"] = { }, } } -skills["SupportPunchThroughPlayer"] = { - name = "Punch Through", - description = "Supports Melee Attack Skills. Supported Skills apply Easy Target when Knocking Back Enemies, causing the next Projectile Attack Hit they take to deal increased Damage.", +skills["SupportRigwaldsFerocityPlayer"] = { + name = "Rigwald's Ferocity", + description = "Supports Attack skills, granting them Attack Speed at the cost of Damage or Damage at the cost of Attack Speed depending on Weapon Set they are used in. Does not modify skills used by Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Melee, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.NoAttackOrCastTime, SkillType.Instant, }, + gemFamily = { "RigwaldLineage",}, + isLineage = true, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Punch Through", + label = "Rigwald's Ferocity", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "apply_attack_projectile_weakness_%_per_1m_knockback", 3 }, + { "support_rigwald_attack_speed_+%_final_in_weapon_set_one", 20 }, + { "support_rigwald_damage_+%_final_in_weapon_set_one", -15 }, + { "support_rigwald_attack_speed_+%_final_in_weapon_set_two", -10 }, + { "support_rigwald_damage_+%_final_in_weapon_set_two", 30 }, }, stats = { }, @@ -2521,37 +4939,32 @@ skills["SupportPunchThroughPlayer"] = { }, } } -skills["SupportPursuitPlayer"] = { - name = "Pursuit", - description = "Supports Melee Attacks. Supported Skills deal more Melee damage if you have struck with a Projectile Attack Hit in the last eight seconds, but cannot themselves deal Projectile Damage.", +skills["SupportSalvoPlayer"] = { + name = "Salvo", + description = "Supports Attack Skills you use yourself which fire Projectiles. Supported Skills accumulate Seals over time, and consume them when used. For each Seal consumed, the Attack will fire additional Projectiles. Projectiles from Supported Skills are fired in random directions. Cannot Support Skills which require Combo, have a Cooldown or already gain Seals.", color = 2, support = true, - requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Attack, SkillType.Projectile, SkillType.AND, }, + addSkillTypes = { SkillType.HasSeals, SkillType.SupportedBySalvo, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.Minion, SkillType.UsedByTotem, SkillType.Vaal, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedBySalvo, SkillType.NOT, SkillType.AND, }, + gemFamily = { "AdditionalProjectiles",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Pursuit", + label = "Salvo", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"] = { - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "HitProjectileRecently" } ), - }, - ["support_advancing_assault_projectile_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Projectile), - }, - }, baseFlags = { }, constantStats = { - { "support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds", 25 }, - { "support_advancing_assault_projectile_damage_+%_final", -100 }, + { "support_salvo_seals_gain_base_interval_ms", 2000 }, + { "support_salvo_additional_projectiles_fired_per_seal", 2 }, + { "support_salvo_maximum_seals", 3 }, }, stats = { + "random_projectile_direction", }, levels = { [1] = { actorLevel = 1, }, @@ -2559,37 +4972,31 @@ skills["SupportPursuitPlayer"] = { }, } } -skills["SupportReachPlayer"] = { - name = "Reach", - description = "Supports Attack Skills which deal Damage in an Area. Supported Skills have significantly increased Area of Effect, but are less Accurate against nearby targets.", +skills["SupportSecondWindPlayer"] = { + name = "Second Wind I", + description = "Supports skills with cooldowns, giving them extra uses of that cooldown.\nCannot support instant or triggered skills, or modify the skills of minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Area, SkillType.AND, }, + requireSkillTypes = { SkillType.Cooldown, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, }, + gemFamily = { "SecondWind",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 50, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Reach", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_reach_accuracy_within_2m_+%_final"] = { - mod("Accuracy", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "enemyDistance", threshold = 20, upper = true } ), - }, - ["support_reach_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), - }, - }, + label = "Second Wind I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_reach_area_of_effect_+%_final", 35 }, - { "support_reach_accuracy_within_2m_+%_final", -80 }, + { "base_cooldown_speed_+%_final", -50 }, }, stats = { + "support_double_number_of_cooldown_uses", }, levels = { [1] = { actorLevel = 1, }, @@ -2597,28 +5004,31 @@ skills["SupportReachPlayer"] = { }, } } -skills["SupportRearmPlayer"] = { - name = "Rearm", - description = "Supports Skills which create Hazards. Hazards created by Supported Skills have a chance to be rearmed a short duration after triggering.", +skills["SupportSecondWindPlayerTwo"] = { + name = "Second Wind II", + description = "Supports skills with cooldowns, giving them extra uses of that cooldown.\nCannot support instant or triggered skills, or modify the skills of minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Hazard, }, + requireSkillTypes = { SkillType.Cooldown, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, }, + gemFamily = { "SecondWind",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { manaMultiplier = 50, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rearm", + label = "Second Wind II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "hazard_rearm_%_chance", 25 }, + { "base_cooldown_speed_+%_final", -40 }, }, stats = { + "support_double_number_of_cooldown_uses", }, levels = { [1] = { actorLevel = 1, }, @@ -2626,29 +5036,32 @@ skills["SupportRearmPlayer"] = { }, } } -skills["SupportRetortPlayer"] = { - name = "Retort", - description = "Supports Attacks you use yourself, causing them to Consume the Parried Debuff on Hit to grant you a Frenzy Charge. Cannot support Skills which already Consume the Parried Debuff.", +skills["SupportSecondWindPlayerThree"] = { + name = "Second Wind III", + description = "Supports skills with cooldowns, giving them extra uses of that cooldown and causing them to restore Life on use.\nCannot support instant or triggered skills, or modify the skills of minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.Cooldown, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SkillConsumesParried, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, }, + gemFamily = { "SecondWind",}, ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 50, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Retort", + label = "Second Wind III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "consume_parry_debuff_on_hit_to_gain_X_frenzy_charges", 1 }, + { "base_cooldown_speed_+%_final", -40 }, + { "restore_%_life_on_skill_use_per_1000_ms_cooldown", 2 }, }, stats = { + "support_double_number_of_cooldown_uses", }, levels = { [1] = { actorLevel = 1, }, @@ -2656,35 +5069,32 @@ skills["SupportRetortPlayer"] = { }, } } -skills["SupportRetreatPlayer"] = { - name = "Retreat", - description = "Supports Skills which create Projectiles. Supported Skills deal more damage with Projectiles if you have struck with a Melee Hit in the last eight seconds, but cannot themselves deal Melee Damage.", +skills["SupportShockPlayer"] = { + name = "Shock", + description = "Supports any skill that Hits enemies, making it more likely to Shock.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Shock",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Retreat", - incrementalEffectiveness = 0.054999999701977, + label = "Shock", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"] = { - mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "Condition", var = "HitMeleeRecently" } ), - }, - ["support_retreating_assault_melee_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Melee), + ["support_conduction_chance_to_shock_+%_final"] = { + mod("EnemyShockChance", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds", 25 }, - { "support_retreating_assault_melee_damage_+%_final", -100 }, + { "support_conduction_chance_to_shock_+%_final", 100 }, }, stats = { }, @@ -2694,28 +5104,31 @@ skills["SupportRetreatPlayer"] = { }, } } -skills["SupportRicochetPlayer"] = { - name = "Ricochet", - description = "Supports any Skill which creates Projectiles, giving those Projectiles a chance to Chain when impacting terrain.", +skills["SupportShockingLeapPlayer"] = { + name = "Shocking Leap", + description = "Supports Skills that leap into the air and deal damage, causing them to create Shocked Ground the first time they Critically Hit an enemy.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.CannotChain, SkillType.CannotTerrainChain, }, + requireSkillTypes = { SkillType.Jumping, }, + addSkillTypes = { SkillType.CreatesGroundEffect, SkillType.Area, SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "ShockingLeap",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ricochet", + label = "Shocking Leap", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "projectile_chance_to_chain_1_extra_time_from_terrain_%", 40 }, + { "support_shocking_leap_shocked_ground_duration_ms", 4000 }, + { "support_shocking_leap_shocked_ground_radius", 20 }, }, stats = { + "support_shocking_leap_create_shocked_ground_on_leap", }, levels = { [1] = { actorLevel = 1, }, @@ -2723,31 +5136,29 @@ skills["SupportRicochetPlayer"] = { }, } } -skills["SupportSalvoPlayer"] = { - name = "Salvo", - description = "Supports Attack Skills you use yourself which fire Projectiles. Supported Skills accumulate Seals over time, and consume them when used. For each Seal consumed, the Attack will fire additional Projectiles. Projectiles from Supported Skills are fired in random directions. Cannot Support Skills which require Combo, have a Cooldown or already gain Seals.", +skills["SupportSlowPotencyPlayer"] = { + name = "Slow Potency", + description = "Supports any skill, causing inflicted Slows to be more powerful.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Projectile, SkillType.AND, }, - addSkillTypes = { SkillType.HasSeals, SkillType.SupportedBySalvo, }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.Vaal, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedBySalvo, SkillType.NOT, SkillType.AND, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.Spell, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Encumberance",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Salvo", + label = "Slow Potency", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_salvo_seals_gain_base_interval_ms", 2000 }, - { "support_salvo_additional_projectiles_fired_per_seal", 2 }, - { "support_salvo_maximum_seals", 3 }, + { "base_debuff_slow_magnitude_+%", 15 }, }, stats = { - "random_projectile_direction", }, levels = { [1] = { actorLevel = 1, }, @@ -2755,38 +5166,27 @@ skills["SupportSalvoPlayer"] = { }, } } -skills["SupportMultipleProjectilesPlayer"] = { - name = "Scattershot", - description = "Supports Projectile skills, making them fire extra Projectiles. Also lowers Attack and Cast speed of supported skills, as well as lessening their damage.", +skills["SupportManaOnCullPlayer"] = { + name = "Soul Drain", + description = "Supports any skill that Hits enemies, causing you to recover Mana when it Culls an enemy.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileNumber, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, }, + excludeSkillTypes = { }, + gemFamily = { "SoulDrain",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Scattershot", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Soul Drain", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_multiple_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, - ["support_multiple_attack_and_cast_speed_+%_final"] = { - mod("Speed", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "number_of_additional_projectiles", 2 }, - { "support_multiple_damage_+%_final", -35 }, - { "terrain_arrow_attachment_chance_reduction_+%", 200 }, - { "support_multiple_attack_and_cast_speed_+%_final", -20 }, + { "recover_%_maximum_mana_on_cull", 12 }, }, stats = { }, @@ -2796,29 +5196,34 @@ skills["SupportMultipleProjectilesPlayer"] = { }, } } -skills["SupportSecondWindPlayer"] = { - name = "Second Wind", - description = "Supports skills with cooldowns, giving them extra uses of that cooldown.\nCannot support instant or triggered skills.", +skills["SupportSpectralVolleyPlayer"] = { + name = "Spectral Volley", + description = "Supports Bow or Spear Projectile Attacks you use yourself. Supported Skills deal lower damage initially, but generate Spectral Projectiles, which deal more damage when they fire. Spectral Projectiles linger and will fire a short duration after no new Spectral Projectiles have been created. Cannot support Channelling Skills, Leaping skills, or skills which rain Projectiles from above.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Bow, SkillType.Attack, SkillType.AND, SkillType.Spear, SkillType.Projectile, SkillType.AND, SkillType.Attack, SkillType.AND, SkillType.OR, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Rain, SkillType.Channel, SkillType.Jumping, SkillType.Triggered, }, + gemFamily = { "SpectralVolley",}, levels = { - [1] = { manaMultiplier = 50, levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Second Wind", - incrementalEffectiveness = 0.092720001935959, + label = "Spectral Volley", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "base_cooldown_speed_+%_final", -50 }, + { "support_spectral_arrows_damage_+%_final_with_spectral_projectiles", 20 }, + { "support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles", -60 }, + { "support_spectral_arrows_base_duration_ms", 3000 }, + { "support_spectral_arrows_delay_between_projectiles_ms", 100 }, + { "support_spectral_arrows_maximum_spectral_arrows", 5 }, }, stats = { - "support_double_number_of_cooldown_uses", + "skill_has_spectral_arrows", }, levels = { [1] = { actorLevel = 1, }, @@ -2826,30 +5231,30 @@ skills["SupportSecondWindPlayer"] = { }, } } -skills["SupportShockingLeapPlayer"] = { - name = "Shocking Leap", - description = "Supports Skills that leap into the air and deal damage, causing them to create Shocked Ground the first time they Critically Hit an enemy.", +skills["SupportStormchainPlayer"] = { + name = "Stormchain", + description = "Supports Projectile Skills and Skills which can Chain. Supported Skills always Chain when initially Hitting a Shocked Enemy, but cannot themselves inflict Shock. Does not support Skills which cannot Chain.", color = 2, support = true, - requireSkillTypes = { SkillType.Jumping, }, - addSkillTypes = { SkillType.CreatesGroundEffect, SkillType.Area, SkillType.Duration, }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Chains, SkillType.Projectile, }, + addSkillTypes = { SkillType.SupportedByStormchain, }, + excludeSkillTypes = { SkillType.ProjectileNoCollision, SkillType.CannotChain, }, + gemFamily = { "Stormchain",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Shocking Leap", + label = "Stormchain", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_shocking_leap_shocked_ground_duration_ms", 4000 }, - { "support_shocking_leap_shocked_ground_radius", 20 }, + { "chance_to_chain_from_shocked_enemy_%", 100 }, }, stats = { - "support_shocking_leap_create_shocked_ground_on_leap", + "never_shock", }, levels = { [1] = { actorLevel = 1, }, @@ -2857,26 +5262,45 @@ skills["SupportShockingLeapPlayer"] = { }, } } -skills["SupportSingleOutPlayer"] = { - name = "Single Out", - description = "Supports Mark Skills. Enemies affected by Supported Marks will have their Armour Broken by Physical Damage they take.", +skills["SupportStreamlinedRoundsPlayer"] = { + name = "Streamlined Rounds", + description = "Supports Crossbow Ammunition Skills. Supported Skills have significantly higher Attack speed and bolt capacity, but deal less damage and have longer reload time.", color = 2, support = true, - requireSkillTypes = { SkillType.Mark, }, + requireSkillTypes = { SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "StreamlinedRounds",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Single Out", + label = "Streamlined Rounds", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil) + }, + ["support_auto_shotgun_attack_speed_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack) + }, + ["support_auto_shotgun_damage_+%_final"] = { + mod("Damage", "MORE", nil) + }, + ["support_auto_shotgun_reload_speed_+%_final"] = { + mod("ReloadSpeed", "MORE", nil) + }, + }, baseFlags = { }, constantStats = { - { "marked_target_%_physical_damage_taken_as_armour_break", 10 }, + { "support_double_barrel_number_of_crossbow_bolts_+", 5 }, + { "support_auto_shotgun_attack_speed_+%_final", 50 }, + { "support_auto_shotgun_damage_+%_final", -60 }, + { "support_auto_shotgun_projectile_count_+%_final", 0 }, + { "support_auto_shotgun_reload_speed_+%_final", -50 }, }, stats = { }, @@ -2886,26 +5310,33 @@ skills["SupportSingleOutPlayer"] = { }, } } -skills["SupportManaOnCullPlayer"] = { - name = "Soul Drain", - description = "Supports any skill that Hits enemies, causing you to recover Mana when it Culls an enemy.", +skills["SupportSwiftAfflictionPlayer"] = { + name = "Swift Affliction I", + description = "Supports any skill that deals damage, causing it to deal more non-Ailment damage over time but have a shorter duration.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "SwiftAffliction",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Soul Drain", + label = "Swift Affliction I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_rapid_decay_damage_over_time_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Dot), + }, + }, baseFlags = { }, constantStats = { - { "recover_%_maximum_mana_on_cull", 12 }, + { "support_rapid_decay_damage_over_time_+%_final", 30 }, + { "support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final", -20 }, }, stats = { }, @@ -2915,34 +5346,35 @@ skills["SupportManaOnCullPlayer"] = { }, } } -skills["SupportSpectralVolleyPlayer"] = { - name = "Spectral Volley", - description = "Supports Bow or Spear Projectile Attacks you use yourself. Supported Skills deal lower damage initially, but generate Spectral Projectiles, which deal more damage when they fire. Spectral Projectiles linger and will fire a short duration after no new Spectral Projectiles have been created. Cannot support Channelling Skills, Leaping skills, or skills which rain Projectiles from above.", +skills["SupportSwiftAfflictionPlayerTwo"] = { + name = "Swift Affliction II", + description = "Supports any skill that deals damage, causing it to deal more non-Ailment damage over time but have a shorter duration.", color = 2, support = true, - requireSkillTypes = { SkillType.Bow, SkillType.Attack, SkillType.AND, SkillType.Spear, SkillType.Projectile, SkillType.AND, SkillType.Attack, SkillType.AND, SkillType.OR, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Rain, SkillType.Channel, SkillType.Jumping, }, + excludeSkillTypes = { }, + gemFamily = { "SwiftAffliction",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Spectral Volley", + label = "Swift Affliction II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_rapid_decay_damage_over_time_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Dot), + }, + }, baseFlags = { }, constantStats = { - { "support_spectral_arrows_damage_+%_final_with_spectral_projectiles", 20 }, - { "support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles", -60 }, - { "support_spectral_arrows_base_duration_ms", 3000 }, - { "support_spectral_arrows_delay_between_projectiles_ms", 100 }, - { "support_spectral_arrows_maximum_spectral_arrows", 5 }, + { "support_rapid_decay_damage_over_time_+%_final", 30 }, + { "support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final", -10 }, }, stats = { - "skill_has_spectral_arrows", - "triggered_skills_ignore_cost", }, levels = { [1] = { actorLevel = 1, }, @@ -2950,29 +5382,35 @@ skills["SupportSpectralVolleyPlayer"] = { }, } } -skills["SupportStormchainPlayer"] = { - name = "Stormchain", - description = "Supports Projectile Skills and Skills which can Chain. Supported Skills always Chain when initially Hitting a Shocked Enemy, but cannot themselves inflict Shock. Does not support Skills which cannot Chain.", +skills["SupportSwiftAfflictionPlayerThree"] = { + name = "Swift Affliction III", + description = "Supports any skill that deals damage, causing effects with a duration of one second or less to deal more non-Ailment damage over time.", color = 2, support = true, - requireSkillTypes = { SkillType.Chains, SkillType.Projectile, }, - addSkillTypes = { SkillType.SupportedByStormchain, }, - excludeSkillTypes = { SkillType.ProjectileNoCollision, SkillType.CannotChain, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "SwiftAffliction",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Stormchain", + label = "Swift Affliction III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"] = { + mod("Damage", "MORE", nil, ModFlag.Dot, 0, { type = "StatThreshold", stat = "Duration", threshold = 1, upper = true }), + }, + }, baseFlags = { }, constantStats = { - { "chance_to_chain_from_shocked_enemy_%", 100 }, + { "support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final", -30 }, + { "support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second", 50 }, }, stats = { - "never_shock", }, levels = { [1] = { actorLevel = 1, }, @@ -2980,32 +5418,33 @@ skills["SupportStormchainPlayer"] = { }, } } -skills["SupportSwiftAfflictionPlayer"] = { - name = "Swift Affliction", - description = "Supports any skill that deals damage, causing it to deal more damage over time but have a shorter duration.", +skills["SupportTacatisIrePlayer"] = { + name = "Tacati's Ire", + description = "Supports Skills which can cause Damaging Hits. Poison inflicted with Supported Skills deals Damage faster the higher your Rage.", color = 2, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "TacatiLineage",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Swift Affliction", + label = "Tacati's Ire", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_rapid_decay_damage_over_time_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Dot), + ["faster_poison_%_per_current_rage"] = { + mod("PoisonFaster", "INC", nil, 0, 0, { type = "PerStat", stat = "Rage" }), }, }, baseFlags = { }, constantStats = { - { "support_rapid_decay_damage_over_time_+%_final", 30 }, - { "support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final", -20 }, + { "faster_poison_%_per_current_rage", 1 }, }, stats = { }, @@ -3015,29 +5454,31 @@ skills["SupportSwiftAfflictionPlayer"] = { }, } } -skills["SupportTumultPlayer"] = { - name = "Tumult", - description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills consume a Frenzy Charge on use to powerfully Break Armour.", +skills["SupportTulsStillnessPlayer"] = { + name = "Tul's Stillness", + description = "Supports Skills that can cause Damaging Hits, granting extra Chaos damage and causing Chaos damage to Contribute to Freeze Buildup.", color = 2, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, }, - addSkillTypes = { SkillType.SupportedByTumult, }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Minion, SkillType.Trapped, SkillType.RemoteMined, SkillType.SkillConsumesFrenzyChargesOnUse, SkillType.SupportedByTumult, SkillType.NOT, SkillType.AND, }, - ignoreMinionTypes = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BreachLineage",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Tumult", + label = "Tul's Stillness", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage", 50 }, + { "non_skill_base_cold_damage_%_to_gain_as_chaos", 20 }, }, stats = { + "chaos_damage_can_freeze", }, levels = { [1] = { actorLevel = 1, }, @@ -3045,27 +5486,28 @@ skills["SupportTumultPlayer"] = { }, } } -skills["SupportTwofoldPlayer"] = { - name = "Twofold", - description = "Supports any Skill that Consumes Charges, granting a chance for benefits of that Consumption to be doubled.", +skills["SupportTumultPlayer"] = { + name = "Tumult", + description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills consume a Frenzy Charge on use to powerfully Break Armour.", color = 2, support = true, - requireSkillTypes = { SkillType.ConsumesCharges, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, }, + addSkillTypes = { SkillType.SupportedByTumult, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Minion, SkillType.Trapped, SkillType.RemoteMined, SkillType.SkillConsumesFrenzyChargesOnUse, SkillType.SupportedByTumult, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Tumult",}, ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Twofold", + label = "Tumult", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "chance_%_to_double_effect_of_removing_charges", 20 }, + { "skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage", 50 }, }, stats = { }, @@ -3082,7 +5524,8 @@ skills["SupportUnerringPowerPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "UnerringPower",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -3121,7 +5564,8 @@ skills["SupportUntouchablePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, SkillType.Triggered, }, + gemFamily = { "Untouchable",}, ignoreMinionTypes = true, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, @@ -3146,12 +5590,13 @@ skills["SupportUntouchablePlayer"] = { } skills["SupportVoltPlayer"] = { name = "Volt", - description = "Supports Projectile Attack Skills you use yourself. Supported Skills gain Voltaic Charge as you move, up to a maximum. When used, Supported Skills expend that Charge to gain extra Lightning Damage and Chain.", + description = "Supports Projectile Attack Skills you use yourself. Supported Skills gain Voltaic Charge as you move, up to a maximum. When used, Supported Skills expend that Charge to gain extra Lightning Damage.", color = 2, support = true, - requireSkillTypes = { SkillType.RangedAttack, }, + requireSkillTypes = { SkillType.Attack, SkillType.Projectile, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Volt",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -3164,7 +5609,6 @@ skills["SupportVoltPlayer"] = { }, constantStats = { { "support_static_charge_charge_gain_per_metre", 3 }, - { "support_static_charge_X_chains_per_10_charge", 1 }, { "support_static_charge_%_damage_gained_as_lightning_per_10_charge", 5 }, { "support_static_charge_maximum_charge", 30 }, }, @@ -3184,6 +5628,8 @@ skills["SupportWarmbloodedPlayer"] = { requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "WarmBlooded",}, + isLineage = true, levels = { [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, }, @@ -3218,6 +5664,7 @@ skills["SupportKnockbackWavePlayer"] = { requireSkillTypes = { }, addSkillTypes = { }, excludeSkillTypes = { SkillType.Instant, SkillType.Persistent, }, + gemFamily = { "WindWave",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -3236,7 +5683,8 @@ skills["SupportKnockbackWavePlayer"] = { }, }, } -}skills["KnockbackWavePlayer"] = { +} +skills["KnockbackWavePlayer"] = { name = "Wind Wave", hidden = true, skillTypes = { [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.SkillGrantedBySupport] = true, }, @@ -3272,19 +5720,56 @@ skills["SupportKnockbackWavePlayer"] = { } } skills["SupportWindowOfOpportunityPlayer"] = { - name = "Window of Opportunity", + name = "Window of Opportunity I", description = "Supports Channelling skills that have special effects if released with Perfect Timing, causing them to deal much more damage if released with Perfect Timing but reducing the Perfect Timing window.", color = 2, support = true, requireSkillTypes = { SkillType.PerfectTiming, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "WindowOfOpportunity",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Window of Opportunity I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_window_of_opportunity_perfect_timing_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "PerfectTiming" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "perfect_timing_window_ms_+%", -35 }, + { "support_window_of_opportunity_perfect_timing_damage_+%_final", 35 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportWindowOfOpportunityPlayerTwo"] = { + name = "Window of Opportunity II", + description = "Supports Channelling skills that have special effects if released with Perfect Timing, causing them to deal much more damage and grant Perfect Deflection if released with Perfect Timing but reducing the Perfect Timing window.", + color = 2, + support = true, + requireSkillTypes = { SkillType.PerfectTiming, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "WindowOfOpportunity",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Window of Opportunity", + label = "Window of Opportunity II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -3297,6 +5782,7 @@ skills["SupportWindowOfOpportunityPlayer"] = { constantStats = { { "perfect_timing_window_ms_+%", -35 }, { "support_window_of_opportunity_perfect_timing_damage_+%_final", 35 }, + { "gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds", 15 }, }, stats = { }, diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index 19dc7074ad..59d0ecb3bf 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -13,7 +13,8 @@ skills["SupportAbidingHexPlayer"] = { support = true, requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, }, + excludeSkillTypes = { SkillType.Persistent, }, + gemFamily = { "AbidingHex",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -36,33 +37,28 @@ skills["SupportAbidingHexPlayer"] = { }, } } -skills["SupportAblationPlayer"] = { - name = "Ablation", - description = "Supports Offering Skills. Supported Skills Sacrifice a portion of your life on use, but deal much more damage and have more powerful Buffs in return.", +skills["SupportAcrimonyPlayer"] = { + name = "Acrimony", + description = "Supports Skills which can Damage Enemies. Enemies affected by Damage over time from Supported Skills which was not caused by a Damaging Ailment have reduced Life regeneration rate. Only the strongest instance of this Debuff will apply. Does not Support Skills used by Minions.", color = 3, support = true, - requireSkillTypes = { SkillType.Offering, }, + requireSkillTypes = { SkillType.DegenOnlySpellDamage, SkillType.DamageOverTime, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Acrimony",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ablation", + label = "Acrimony", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_ablation_offering_skill_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Offering }), - }, - }, baseFlags = { }, constantStats = { - { "support_ablation_offering_skill_damage_+%_final", 30 }, - { "offering_spells_effect_+%", 30 }, - { "sacrifice_%_life_on_skill_use", 15 }, + { "skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%", -50 }, }, stats = { }, @@ -72,29 +68,41 @@ skills["SupportAblationPlayer"] = { }, } } -skills["SupportAcrimonyPlayer"] = { - name = "Acrimony", - description = "Supports Skills which can Damage Enemies. Enemies affected by Damage over time from Supported Skills which was not caused by a Damaging Ailment have reduced Life regeneration rate. Only the strongest instance of this Debuff will apply. Does not Support Skills used by Minions.", +skills["SupportAhnsCitadelPlayer"] = { + name = "Ahn's Citadel", + description = "Supports skills that create walls in a line, causing them to instead be created along a Fissure, at the cost of damage and Area of Effect.", color = 3, support = true, - requireSkillTypes = { SkillType.DegenOnlySpellDamage, SkillType.DamageOverTime, }, - addSkillTypes = { }, + requireSkillTypes = { SkillType.Wall, }, + addSkillTypes = { SkillType.CreatesFissure, }, excludeSkillTypes = { }, - ignoreMinionTypes = true, + gemFamily = { "Fortress",}, + isLineage = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Acrimony", + label = "Ahn's Citadel", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_wall_fortress_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_wall_fortress_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%", -50 }, + { "wall_maximum_length_+%", 65 }, + { "support_wall_fortress_hit_damage_+%_final", -30 }, + { "support_wall_fortress_area_of_effect_+%_final", -30 }, }, stats = { + "wall_is_created_along_a_fissure_instead", }, levels = { [1] = { actorLevel = 1, }, @@ -107,9 +115,10 @@ skills["SupportAmbrosiaPlayer"] = { description = "Supports Skills you use yourself which Damage enemies with Hits. Supported Skills consume a percentage of your maximum Mana Flask charges, Gaining a percentage of Damage as extra Lightning Damage per Mana Flask charge consumed.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, SkillType.Nova, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + gemFamily = { "Ambrosia",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -153,6 +162,7 @@ skills["SupportAmbushPlayer"] = { requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Ambush",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -179,6 +189,38 @@ skills["SupportAmbushPlayer"] = { }, } } +skills["SupportArbitersIgnitionPlayer"] = { + name = "Arbiter's Ignition", + description = "Supports Fire Spell Skills. You have a chance to gain Flame Archon when Igniting with Supported Skills.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Damage, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ArbiterLineage",}, + isLineage = true, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Arbiter's Ignition", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "gain_archon_fire_when_you_ignite_enemy_chance_%", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportArcaneSurgePlayer"] = { name = "Arcane Surge", description = "Supports Spells you cast yourself, tracking the mana you spend to cast them. Spending enough mana grants a burst of Mana Regeneration and Cast Speed.", @@ -186,7 +228,8 @@ skills["SupportArcaneSurgePlayer"] = { support = true, requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, + gemFamily = { "ArcaneSurge",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -209,35 +252,35 @@ skills["SupportArcaneSurgePlayer"] = { }, } } -skills["SupportFasterCastPlayer"] = { - name = "Arcane Tempo", - description = "Supports Spells, causing them to cast faster.", +skills["SupportAstralProjectionPlayer"] = { + name = "Astral Projection", + description = "Supports Nova Skills, causing those Skills to take place at the targeted location when used instead of around you.", color = 3, support = true, - requireSkillTypes = { SkillType.Spell, }, + requireSkillTypes = { SkillType.Nova, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Instant, SkillType.FixedCastTime, SkillType.NoAttackOrCastTime, }, + excludeSkillTypes = { }, + gemFamily = { "AstralProjection",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Arcane Tempo", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Astral Projection", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_faster_casting_cast_speed_+%_final"] = { - mod("Speed", "MORE", nil, ModFlag.Cast), + ["support_astral_projection_aoe_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_faster_casting_cast_speed_+%_final", 20 }, - { "support_faster_casting_damage_+%_final", 0 }, + { "support_astral_projection_aoe_+%_final", -25 }, }, stats = { + "nova_skills_cast_at_target_location", }, levels = { [1] = { actorLevel = 1, }, @@ -245,34 +288,37 @@ skills["SupportFasterCastPlayer"] = { }, } } -skills["SupportAstralProjectionPlayer"] = { - name = "Astral Projection", - description = "Supports Nova Skills, causing those Skills to take place at the targeted location when used instead of around you.", +skills["SupportAtzirisAllurePlayer"] = { + name = "Atziri's Allure", + description = "Supports Curse Skills, causing those Curses to ignore the usual Curse Limit, but be reflected back to you.", color = 3, support = true, - requireSkillTypes = { SkillType.Nova, }, + requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "AtziriLineage",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Astral Projection", + label = "Atziri's Allure", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_astral_projection_aoe_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), + ["support_atziri_curse_effect_+%_final"] = { + mod("CurseEffect", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_astral_projection_aoe_+%_final", -25 }, + { "support_atziri_curse_effect_+%_final", -25 }, }, stats = { - "nova_skills_cast_at_target_location", + "curses_reflected_to_self", + "curse_ignores_curse_limit", }, levels = { [1] = { actorLevel = 1, }, @@ -281,25 +327,88 @@ skills["SupportAstralProjectionPlayer"] = { } } skills["SupportBiddingPlayer"] = { - name = "Bidding", - description = "Supports Minion Skills. Supported Minions deal significantly more damage with their Command Skills.", + name = "Bidding I", + description = "Supports Minion Skills. Supported Minions deal more damage and have increased Cooldown Recovery Rate with Command Skills.", color = 3, support = true, requireSkillTypes = { SkillType.CommandableMinion, SkillType.CommandsMinions, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Bidding",}, levels = { [1] = { manaMultiplier = 30, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Bidding", + label = "Bidding I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_command_skill_damage_+%_final", 20 }, + { "minion_command_skill_cooldown_speed_+%", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBiddingPlayerTwo"] = { + name = "Bidding II", + description = "Supports Minion Skills. Supported Minions deal more damage and have increased Cooldown Recovery Rate with Command Skills.", + color = 3, + support = true, + requireSkillTypes = { SkillType.CommandableMinion, SkillType.CommandsMinions, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bidding",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bidding II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { { "support_command_skill_damage_+%_final", 30 }, + { "minion_command_skill_cooldown_speed_+%", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBiddingPlayerThree"] = { + name = "Bidding III", + description = "Supports Minion Skills. Supported Minions have significantly increased Cooldown Recovery Rate with Command Skills.", + color = 3, + support = true, + requireSkillTypes = { SkillType.CommandableMinion, SkillType.CommandsMinions, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bidding",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bidding III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "minion_command_skill_cooldown_speed_+%", 80 }, }, stats = { }, @@ -317,6 +426,7 @@ skills["SupportBitingFrostPlayer"] = { requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.SkillConsumesFreeze, SkillType.SupportedByElementalDischarge, }, + gemFamily = { "BitingFrost",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -333,7 +443,8 @@ skills["SupportBitingFrostPlayer"] = { baseFlags = { }, constantStats = { - { "support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final", 50 }, + { "support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final", 40 }, + { "support_biting_frost_damage_+%_final_vs_frozen_unique_enemies", 20 }, }, stats = { "never_freeze", @@ -352,6 +463,7 @@ skills["SupportBoneShrapnelPlayer"] = { requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + gemFamily = { "BoneShrapnel",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -405,21 +517,82 @@ skills["TriggeredBoneShrapnelPlayer"] = { }, } } +skills["SupportBoundlessEnergyPlayer"] = { + name = "Boundless Energy I", + description = "Supports Meta Skills. Supported Skills generate Energy significantly faster.", + color = 3, + support = true, + requireSkillTypes = { SkillType.GeneratesEnergy, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BoundlessEnergy",}, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Boundless Energy I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "energy_generated_+%", 35 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBoundlessEnergyPlayerTwo"] = { + name = "Boundless Energy II", + description = "Supports Meta Skills. Supported Skills generate Energy significantly faster.", + color = 3, + support = true, + requireSkillTypes = { SkillType.GeneratesEnergy, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BoundlessEnergy",}, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Boundless Energy II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "energy_generated_+%", 45 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportBurgeonPlayer"] = { - name = "Burgeon", + name = "Burgeon I", description = "Supports Channelling Skills you use yourself, causing them to deal more damage the longer they have been Channelled.", color = 3, support = true, requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Burgeon",}, ignoreMinionTypes = true, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Burgeon", + label = "Burgeon I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -444,6 +617,46 @@ skills["SupportBurgeonPlayer"] = { }, } } +skills["SupportBurgeonPlayerTwo"] = { + name = "Burgeon II", + description = "Supports Channelling Skills you use yourself, causing them to deal more damage the longer they have been Channelled.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Channel, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Burgeon",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Burgeon II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_chanelling_damage_+%_final_per_second_channelling"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "Channelling" }, { type = "Multiplier", var = "ChannellingTime", limitVar = "BurgeonDamageCap", limitTotal = true }), + }, + ["support_channelling_damage_cap"] = { + mod("Multiplier:BurgeonDamageCap", "BASE"), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_chanelling_damage_+%_final_per_second_channelling", 20 }, + { "support_channelling_damage_cap", 40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportBurningRunesPlayer"] = { name = "Burning Inscription", description = "Supports any Skill which creates Runic Inscriptions when Cast, causing those Runic Inscriptions to trigger Burning Inscription when they expire. Burning Inscription is a Spell which creates Ignited Ground based off of your Maximum Mana.", @@ -452,6 +665,7 @@ skills["SupportBurningRunesPlayer"] = { requireSkillTypes = { SkillType.AppliesCurse, SkillType.CreatesGroundRune, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "BurningInscription",}, levels = { [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, @@ -470,7 +684,8 @@ skills["SupportBurningRunesPlayer"] = { }, }, } -}skills["TriggeredBurningRunesPlayer"] = { +} +skills["TriggeredBurningRunesPlayer"] = { name = "Burning Inscription", hidden = true, description = "Create Ignited Ground Igniting Enemies based on a percentage of your Maximum Mana.", @@ -592,35 +807,6 @@ skills["SupportBurningRunesPlayer"] = { }, } } -skills["SupportCapacitorPlayer"] = { - name = "Capacitor", - description = "Supports Invocation Skills which Trigger other Skills. Supported Skills have significantly higher Maximum Energy.", - color = 3, - support = true, - requireSkillTypes = { SkillType.Invocation, }, - addSkillTypes = { }, - excludeSkillTypes = { }, - levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Capacitor", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - baseFlags = { - }, - constantStats = { - { "skill_maximum_energy_+%", 80 }, - }, - stats = { - }, - levels = { - [1] = { actorLevel = 1, }, - }, - }, - } -} skills["SupportCatharsisPlayer"] = { name = "Catharsis", description = "Supports any Skill you use yourself, causing supported Skill to detonate Volatility that is present on you. Supported Skill can only be used while you have a certain amount of Volatility and cannot support Skills which already have another Condition. Does not support Triggered Skills.", @@ -628,7 +814,8 @@ skills["SupportCatharsisPlayer"] = { support = true, requireSkillTypes = { }, addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByCleanse, }, - excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByCleanse, SkillType.NOT, SkillType.AND, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByCleanse, SkillType.NOT, SkillType.AND, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Catharsis",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -652,13 +839,14 @@ skills["SupportCatharsisPlayer"] = { } } skills["SupportAddedChaosDamagePlayer"] = { - name = "Chaos Infusion", + name = "Chaos Attunement", description = "Supports Attacks, causing them to Gain Chaos Damage but deal less Damage of other Types.", color = 3, support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ChaosAttunement",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, [2] = { manaMultiplier = 20, levelRequirement = 3, }, @@ -703,7 +891,7 @@ skills["SupportAddedChaosDamagePlayer"] = { }, statSets = { [1] = { - label = "Chaos Infusion", + label = "Chaos Attunement", baseEffectiveness = 0.47119998931885, incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", @@ -731,12 +919,13 @@ skills["SupportAddedChaosDamagePlayer"] = { } skills["SupportChaosMasteryPlayer"] = { name = "Chaos Mastery", - description = "Supports Chaos skills, granting them an additional level.", + description = "Supports Chaos skills, granting them an additional level. Does not support skills which do not have levels.", color = 3, support = true, requireSkillTypes = { SkillType.Chaos, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -766,6 +955,7 @@ skills["SupportChaoticFreezePlayer"] = { requireSkillTypes = { SkillType.Spell, SkillType.DamageOverTime, SkillType.Chaos, SkillType.AND, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ChaoticFreeze",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -787,19 +977,21 @@ skills["SupportChaoticFreezePlayer"] = { } } skills["SupportClarityPlayer"] = { - name = "Clarity", + name = "Clarity I", description = "Supports Persistent Buff Skills, causing you to gain increased Mana Regeneration while the Skill is active.", color = 3, support = true, requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Clarity",}, + isLineage = true, levels = { [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Clarity", + label = "Clarity I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -820,31 +1012,33 @@ skills["SupportClarityPlayer"] = { }, } } -skills["SupportColdExposurePlayer"] = { - name = "Cold Exposure", - description = "Supports any skill that Hits enemies, causing it to inflict Cold Exposure when it Critically Hits an enemy.", +skills["SupportClarityPlayerTwo"] = { + name = "Clarity II", + description = "Supports Persistent Buff Skills, causing you to gain increased Mana Regeneration while the Skill is active.", color = 3, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { SkillType.Duration, }, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Clarity",}, + isLineage = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Cold Exposure", + label = "Clarity II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["inflict_cold_exposure_for_x_ms_on_cold_crit"] = { - mod("ColdExposureChance", "BASE", nil), + ["support_clarity_mana_regeneration_rate_+%"] = { + mod("ManaRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Clarity" }), }, }, baseFlags = { }, constantStats = { - { "inflict_cold_exposure_for_x_ms_on_cold_crit", 8000 }, + { "support_clarity_mana_regeneration_rate_+%", 50 }, }, stats = { }, @@ -855,19 +1049,20 @@ skills["SupportColdExposurePlayer"] = { } } skills["SupportAddedColdDamagePlayer"] = { - name = "Cold Infusion", + name = "Cold Attunement", description = "Supports Attacks, causing them to Gain Cold Damage but deal less Fire and Lightning Damage.", color = 3, support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ColdAttunement",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Cold Infusion", + label = "Cold Attunement", baseEffectiveness = 0.58050000667572, incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", @@ -891,14 +1086,50 @@ skills["SupportAddedColdDamagePlayer"] = { }, } } +skills["SupportColdExposurePlayer"] = { + name = "Cold Exposure", + description = "Supports any skill that Hits enemies, causing it to inflict Exposure when it Critically Hits an enemy.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "ColdExposure",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cold Exposure", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["inflict_cold_exposure_for_x_ms_on_cold_crit"] = { + mod("ColdExposureChance", "BASE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "inflict_exposure_for_x_ms_on_cold_crit", 8000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportColdMasteryPlayer"] = { name = "Cold Mastery", - description = "Supports Cold skills, granting them an additional level.", + description = "Supports Cold skills, granting them an additional level. Does not support skills which do not have levels.", color = 3, support = true, requireSkillTypes = { SkillType.Cold, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -928,6 +1159,7 @@ skills["SupportColdPenetrationPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ColdPenetration",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -957,6 +1189,7 @@ skills["SupportCommandment"] = { requireSkillTypes = { SkillType.CommandableMinion, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Commandment",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -987,20 +1220,21 @@ skills["SupportCommandment"] = { }, } } -skills["SupportConcentratedEffectPlayer"] = { - name = "Concentrated Effect", +skills["SupportConcentratedAreaPlayer"] = { + name = "Concentrated Area", description = "Supports any skill with an area of effect, causing that area to be smaller but any area damage it deals to be higher.", color = 3, support = true, requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ConcentratedEffect",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Concentrated Effect", + label = "Concentrated Area", baseEffectiveness = 0, incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", @@ -1033,7 +1267,8 @@ skills["SupportConsideredCastingPlayer"] = { support = true, requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.FixedCastTime, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.FixedCastTime, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, + gemFamily = { "ConsideredCasting",}, levels = { [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, @@ -1072,6 +1307,7 @@ skills["SupportControlledDestructionPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Spell, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ControlledDestruction",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1107,6 +1343,7 @@ skills["SupportCorpseConservationPlayer"] = { requireSkillTypes = { SkillType.TargetsDestructibleCorpses, SkillType.TargetsDestructibleRareCorpses, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "CorpseConservation",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1128,27 +1365,28 @@ skills["SupportCorpseConservationPlayer"] = { }, } } -skills["SupportCoursingCurrentPlayer"] = { - name = "Coursing Current", - description = "Supports any skill that Hits enemies, giving it a chance to also Shock nearby enemies when you Shock an enemy.", +skills["SupportCracklingBarrierPlayer"] = { + name = "Crackling Barrier", + description = "Supports Channelling Skills. While Channelling Supported Skills, you gain Lightning Thorns based off of your maximum Mana.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, }, + gemFamily = { "CracklingBarrier",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Coursing Current", + label = "Crackling Barrier", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_%_chance_to_shock_nearby_enemy_on_shock", 50 }, - { "shock_nearby_enemy_base_area_of_effect_radius", 25 }, + { "return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling", 15 }, }, stats = { }, @@ -1158,27 +1396,27 @@ skills["SupportCoursingCurrentPlayer"] = { }, } } -skills["SupportCracklingBarrierPlayer"] = { - name = "Crackling Barrier", - description = "Supports Channelling Skills. While Channelling Supported Skills, you gain Lightning Thorns based off of your maximum Mana.", +skills["SupportCrazedMinionsPlayer"] = { + name = "Crazed Minions", + description = "Supports Minion Skills which summon Reviving Minions. Supported Minions deal significantly more Damage if they have Revived Recently.", color = 3, support = true, - requireSkillTypes = { SkillType.Channel, }, + requireSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, }, - ignoreMinionTypes = true, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "CrazedMinions",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Crackling Barrier", + label = "Crazed Minions", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling", 15 }, + { "support_crazed_minions_minion_damage_+%_final_if_revived_recently", 30 }, }, stats = { }, @@ -1188,28 +1426,31 @@ skills["SupportCracklingBarrierPlayer"] = { }, } } -skills["SupportCrazedMinionsPlayer"] = { - name = "Crazed Minions", - description = "Supports Minion Skills which summon Reviving Minions. Supported Minions deal significantly more Damage if they have Revived Recently.", +skills["SupportCrystallineShardsPlayer"] = { + name = "Crystalline Shards", + description = "Supports Skills which create Ice Crystals. Damaging Explosions caused by Ice Crystals from Supported Skills will Impale Enemies.", color = 3, support = true, - requireSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + requireSkillTypes = { SkillType.IceCrystal, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + excludeSkillTypes = { }, + gemFamily = { "CrystallineShards",}, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Crazed Minions", + label = "Crystalline Shards", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_crazed_minions_minion_damage_+%_final_if_revived_recently", 30 }, + { "ice_crystal_explosion_impale_chance_%", 100 }, }, stats = { + "cannot_consume_impale", + "ice_crystal_explosion_cold_damage_can_impale", }, levels = { [1] = { actorLevel = 1, }, @@ -1219,12 +1460,13 @@ skills["SupportCrazedMinionsPlayer"] = { } skills["SupportCursedGroundPlayer"] = { name = "Cursed Ground", - description = "Supports Curse Skills. Supported Curse Skills no longer have an activation delay, instead creating areas which Curse Enemies so long as they are within them.", + description = "Supports Curse Skills. Supported Curse Skills create areas which Curse Enemies so long as they are within them.", color = 3, support = true, requireSkillTypes = { SkillType.AppliesCurse, }, - addSkillTypes = { }, + addSkillTypes = { SkillType.Limit, }, excludeSkillTypes = { }, + gemFamily = { "CursedGround",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1235,6 +1477,9 @@ skills["SupportCursedGroundPlayer"] = { statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "maximum_curse_zones_allowed", 2 }, + }, stats = { "curse_apply_as_curse_zone", }, @@ -1252,6 +1497,7 @@ skills["SupportDanseMacabrePlayer"] = { requireSkillTypes = { SkillType.Offering, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "DanseMacabre",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1291,6 +1537,7 @@ skills["SupportDeathmarchPlayer"] = { requireSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "Deathmarch",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1321,6 +1568,7 @@ skills["SupportDecayingHexPlayer"] = { requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { SkillType.Chaos, SkillType.Damage, SkillType.DamageOverTime, }, excludeSkillTypes = { }, + gemFamily = { "DecayingHex",}, levels = { [1] = { manaMultiplier = 30, levelRequirement = 0, }, }, @@ -1356,6 +1604,7 @@ skills["SupportLastingFrostPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "DeepFreeze",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -1384,7 +1633,8 @@ skills["SupportDerangePlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, SkillType.Channel, SkillType.Persistent, }, + excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, SkillType.Channel, SkillType.Persistent, SkillType.Triggered, }, + gemFamily = { "Derange",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -1414,32 +1664,179 @@ skills["SupportDerangePlayer"] = { }, } } -skills["SupportDissipatePlayer"] = { - name = "Dissipate", - description = "Supports Skills which create Remnants. Created Remnants are more powerful, but vanish quickly.", +skills["SupportDiallasDesirePlayer"] = { + name = "Dialla's Desire", + description = "Supports any Skill which has levels, increasing the level and Quality, while reducing the cost and Reservation.", color = 3, support = true, - requireSkillTypes = { SkillType.GeneratesRemnants, }, + requireSkillTypes = { }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "DiallasDesire",}, + isLineage = true, + levels = { + [1] = { reservationMultiplier = -10, manaMultiplier = -10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Dialla's Desire", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "supported_active_skill_gem_level_+", 1 }, + { "supported_active_skill_gem_quality_%", 10 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDoedresUndoingPlayer"] = { + name = "Doedre's Undoing", + description = "Supports Curse Skills. Supported Curse Skills create Hazardous areas which explode when Enemies enter them, Cursing Enemies and dealing Chaos Damage based on your Intelligence.", + color = 3, + support = true, + requireSkillTypes = { SkillType.AppliesCurse, }, + addSkillTypes = { SkillType.Limit, SkillType.Hazard, }, + excludeSkillTypes = { }, + gemFamily = { "CursedGround",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Dissipate", + label = "Doedre's Undoing", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "remnant_effect_+%", 35 }, - { "remnants_vanish_after_X_ms", 3000 }, + { "maximum_curse_zones_allowed", 2 }, + { "support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%", 100 }, + }, + stats = { + "curse_apply_as_curse_zone", + "curse_zones_are_hazards", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredCurseZoneHazardExplosionPlayer"] = { + name = "Doedre's Dark Design", + hidden = true, + description = "Explodes and deals Chaos Damage based on your Intelligence when an Enemy enters the area, applying the supported Curse on Hit.", + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Doedre's Dark Design", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_curse_zone_hazard_explosion", + baseFlags = { + hit = true, + }, + constantStats = { + { "triggered_by_curse_zones_are_hazards_%", 100 }, + { "skill_base_chaos_damage_%_of_intelligence", 200 }, + { "curse_zone_explosion_apply_supported_curse_for_base_ms_on_hit", 3000 }, }, stats = { + "display_skill_area_of_effect_radius_from_curse", }, levels = { [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -1452,6 +1849,7 @@ skills["SupportDrainedAilmentPlayer"] = { requireSkillTypes = { SkillType.Spell, SkillType.DamageOverTime, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "DrainAilments",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1480,12 +1878,13 @@ skills["SupportDrainedAilmentPlayer"] = { } skills["SupportElementalArmyPlayer"] = { name = "Elemental Army", - description = "Supports skills which create Minions, bolstering the Elemental Resistances of those Minions.", + description = "Supports skills which create Minions, bolstering the Elemental Resistances of those Minions. Cannot support skills which create undamageable Minions.", color = 3, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "ElementalArmy",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1515,6 +1914,7 @@ skills["SupportElementalDischargePlayer"] = { requireSkillTypes = { SkillType.Spell, SkillType.Damage, SkillType.AND, }, addSkillTypes = { SkillType.SupportedByElementalDischarge, }, excludeSkillTypes = { SkillType.SkillConsumesFreeze, SkillType.SkillConsumesIgnite, SkillType.SkillConsumesShock, }, + gemFamily = { "ElementalDischarge",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -1602,6 +2002,7 @@ skills["SupportElementalFocusPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ElementalFocus",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1637,6 +2038,7 @@ skills["SupportEmbitterPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + gemFamily = { "Embitter",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -1656,6 +2058,37 @@ skills["SupportEmbitterPlayer"] = { }, } } +skills["SupportEncroachingGroundPlayer"] = { + name = "Encroaching Ground", + description = "Supports Skills that create Ground Surfaces, causing those Surfaces to grow over time, up to a limit.", + color = 3, + support = true, + requireSkillTypes = { SkillType.CreatesGroundEffect, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EncroachingGround",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Encroaching Ground", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_ground_effect_area_of_effect_+%_final_per_second", 20 }, + { "support_ground_effect_area_of_effect_+%_final_per_second_max", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportEnergyBarrierPlayer"] = { name = "Energy Barrier", description = "Supports any skill that you can use, causing Energy Shield recharge to begin immediately if you are Stunned while using it.", @@ -1664,6 +2097,7 @@ skills["SupportEnergyBarrierPlayer"] = { requireSkillTypes = { }, addSkillTypes = { }, excludeSkillTypes = { SkillType.Instant, SkillType.Persistent, }, + gemFamily = { "EnergyBarrier",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1685,26 +2119,27 @@ skills["SupportEnergyBarrierPlayer"] = { }, } } -skills["SupportEnergyRetentionPlayer"] = { - name = "Energy Retention", - description = "Supports Meta Skills. Supported Skills gain a chance to partially Refund a portion of Energy cost when Triggering or Invoking other Skills.", +skills["SupportEnergyCapacitorPlayer"] = { + name = "Energy Capacitor", + description = "Supports Invocation Skills which Trigger other Skills. Supported Skills have significantly higher Maximum Energy.", color = 3, support = true, - requireSkillTypes = { SkillType.GeneratesEnergy, }, + requireSkillTypes = { SkillType.Invocation, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "EnergyCapacitor",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { manaMultiplier = 30, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Energy Retention", + label = "Energy Capacitor", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "trigger_skills_refund_half_energy_spent_chance_%", 35 }, + { "skill_maximum_energy_+%", 80 }, }, stats = { }, @@ -1714,38 +2149,61 @@ skills["SupportEnergyRetentionPlayer"] = { }, } } -skills["SupportEnormityPlayer"] = { - name = "Enormity", - description = "Supports Skills which summon Persistent Minions. Supported Minions are larger, have more Life, and deal more Damage, but cost significantly more Spirit.", +skills["SupportEnergyRetentionPlayer"] = { + name = "Energy Retention", + description = "Supports Meta Skills. Supported Skills gain a chance to partially Refund a portion of Energy cost when Triggering or Invoking other Skills.", color = 3, support = true, - requireSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + requireSkillTypes = { SkillType.GeneratesEnergy, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "EnergyRetention",}, levels = { - [1] = { spiritReservationFlat = 10, reservationMultiplier = 30, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Enormity", + label = "Energy Retention", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_titanblood_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), - }, - ["support_titanblood_minion_life_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), - }, + baseFlags = { + }, + constantStats = { + { "trigger_skills_refund_half_energy_spent_chance_%", 35 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, }, + }, + } +} +skills["SupportEshsRadiancePlayer"] = { + name = "Esh's Radiance", + description = "Supports Skills that can cause Damaging Hits, granting extra Chaos damage and causing Chaos damage to Contribute to Shock.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BreachLineage",}, + isLineage = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Esh's Radiance", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "minion_actor_scale_+%", 20 }, - { "support_titanblood_minion_damage_+%_final", 20 }, - { "support_titanblood_minion_life_+%_final", 20 }, + { "non_skill_base_lightning_damage_%_to_gain_as_chaos", 20 }, }, stats = { + "chaos_damage_can_shock", }, levels = { [1] = { actorLevel = 1, }, @@ -1755,12 +2213,13 @@ skills["SupportEnormityPlayer"] = { } skills["SupportEssenceHarvestPlayer"] = { name = "Essence Harvest", - description = "Supports Skills which create Reviving Persistent Minions. When those Minions die, you restore a percentage of your maximum Mana.", + description = "Supports Skills which create Reviving Persistent Minions. When those Minions die, you Recoup a percentage of your maximum Mana.", color = 3, support = true, requireSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.Buff, SkillType.OngoingSkill, SkillType.MinionsAreUndamagable, }, + gemFamily = { "EssenceHarvest",}, ignoreMinionTypes = true, levels = { [1] = { reservationMultiplier = 10, levelRequirement = 0, }, @@ -1773,7 +2232,7 @@ skills["SupportEssenceHarvestPlayer"] = { baseFlags = { }, constantStats = { - { "recover_mana_%_on_minion_death", 4 }, + { "recoup_mana_%_on_minion_death", 8 }, }, stats = { }, @@ -1790,7 +2249,8 @@ skills["SupportExcisePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.SupportedByExcise, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExcise, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExcise, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "GrantsCooldown",}, levels = { [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, }, }, @@ -1825,7 +2285,8 @@ skills["SupportExecratePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.SupportedByExecrate, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExecrate, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExecrate, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "GrantsCooldown",}, levels = { [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, }, }, @@ -1863,9 +2324,10 @@ skills["SupportExpansePlayer"] = { support = true, requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, }, addSkillTypes = { SkillType.SupportedByExpanse, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExpanse, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExpanse, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "GrantsCooldown",}, levels = { - [1] = { storedUses = 1, levelRequirement = 0, cooldown = 6, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, }, }, statSets = { [1] = { @@ -1881,7 +2343,7 @@ skills["SupportExpansePlayer"] = { }, constantStats = { { "support_hourglass_display_cooldown_time_ms", 8000 }, - { "support_aoe_cooldown_aoe_+%_final", 50 }, + { "base_skill_area_of_effect_+%", 50 }, }, stats = { }, @@ -1899,6 +2361,7 @@ skills["SupportExtractionPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Spell, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.HasReservation, SkillType.Persistent, SkillType.Triggered, SkillType.Attack, SkillType.Minion, }, + gemFamily = { "Extraction",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -1922,19 +2385,20 @@ skills["SupportExtractionPlayer"] = { } } skills["SupportFeedingFrenzyPlayer"] = { - name = "Feeding Frenzy", + name = "Feeding Frenzy I", description = "Supports skills which create Minions, making them deal and take more damage. Cannot support skills which create undamageable Minions.", color = 3, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "FeedingFrenzy",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Feeding Frenzy", + label = "Feeding Frenzy I", incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -1959,6 +2423,44 @@ skills["SupportFeedingFrenzyPlayer"] = { }, } } +skills["SupportFeedingFrenzyPlayerTwo"] = { + name = "Feeding Frenzy II", + color = 3, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "FeedingFrenzy",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Feeding Frenzy II", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["feeding_frenzy_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + ["feeding_frenzy_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, + }, + baseFlags = { + }, + constantStats = { + { "feeding_frenzy_minion_damage_taken_+%_final", 15 }, + { "feeding_frenzy_minion_damage_+%_final", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportFieryDeathPlayer"] = { name = "Fiery Death", description = "Supports any skill that Hits enemies, causing enemies it Ignites to have a chance to explode on death.", @@ -1967,6 +2469,7 @@ skills["SupportFieryDeathPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + gemFamily = { "FieryDeath",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -1987,7 +2490,8 @@ skills["SupportFieryDeathPlayer"] = { }, }, } -}skills["TriggeredFieryDeathPlayer"] = { +} +skills["TriggeredFieryDeathPlayer"] = { name = "Fiery Death", hidden = true, skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Fire] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Area] = true, }, @@ -2026,12 +2530,13 @@ skills["SupportFieryDeathPlayer"] = { } skills["SupportFireMasteryPlayer"] = { name = "Fire Mastery", - description = "Supports Fire skills, granting them an additional level.", + description = "Supports Fire skills, granting them an additional level. Does not support skills which do not have levels.", color = 3, support = true, requireSkillTypes = { SkillType.Fire, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2061,6 +2566,7 @@ skills["SupportFlukePlayer"] = { requireSkillTypes = { SkillType.Triggers, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Fluke",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -2093,6 +2599,7 @@ skills["SupportFocusedCursePlayer"] = { requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "FocussedCurse",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -2104,7 +2611,7 @@ skills["SupportFocusedCursePlayer"] = { baseFlags = { }, constantStats = { - { "base_curse_delay_+%", -30 }, + { "support_focus_curse_curse_delay_+%_final", -50 }, }, stats = { }, @@ -2116,12 +2623,13 @@ skills["SupportFocusedCursePlayer"] = { } skills["SupportManaFountainPlayer"] = { name = "Font of Mana", - description = "Supports Skills which create stationary objects. Objects created by supported Skills generate a Font of Mana, creating an Aura which grants Mana regeneration.", + description = "Supports Skills which create Totems. Totems created by supported Skills generate a Font of Mana which will Leech Mana to Allies within it.", color = 3, support = true, - requireSkillTypes = { SkillType.SupportedByFountains, SkillType.Orb, SkillType.SummonsTotem, SkillType.Offering, }, + requireSkillTypes = { SkillType.SummonsTotem, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + gemFamily = { "Font",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2138,8 +2646,8 @@ skills["SupportManaFountainPlayer"] = { baseFlags = { }, constantStats = { - { "support_mana_fountain_mana_regeneration_rate_+%", 40 }, - { "support_mana_fountain_radius", 30 }, + { "allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana", 12 }, + { "font_of_mana_radius", 40 }, }, stats = { }, @@ -2150,31 +2658,73 @@ skills["SupportManaFountainPlayer"] = { } } skills["SupportWallFortressPlayer"] = { - name = "Fortress", + name = "Fortress I", description = "Supports skills that create walls in a line, causing them to be created in a circle instead but deal less Hit damage.", color = 3, support = true, requireSkillTypes = { SkillType.Wall, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Fortress",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fortress I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_wall_fortress_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "wall_maximum_length_+%", 100 }, + { "support_wall_fortress_hit_damage_+%_final", -40 }, + }, + stats = { + "wall_is_created_in_a_circle_instead", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportWallFortressPlayerTwo"] = { + name = "Fortress II", + description = "Supports skills that create walls in a line, causing them to be created in a circle instead but deal less Hit damage and have lowered Area of Effect.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Wall, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Fortress",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fortress", + label = "Fortress II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_wall_fortress_hit_damage_+%_final"] = { mod("Damage", "MORE", nil), }, + ["support_wall_fortress_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), + }, }, baseFlags = { }, constantStats = { { "wall_maximum_length_+%", 100 }, - { "support_wall_fortress_hit_damage_+%_final", -50 }, + { "support_wall_fortress_hit_damage_+%_final", -30 }, + { "support_wall_fortress_area_of_effect_+%_final", -20 }, }, stats = { "wall_is_created_in_a_circle_instead", @@ -2185,6 +2735,36 @@ skills["SupportWallFortressPlayer"] = { }, } } +skills["SupportFreezePlayer"] = { + name = "Freeze", + description = "Supports any skill that Hits enemies, making it more effective at Freezing enemies.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Freeze",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Freeze", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_hypothermia_hit_damage_freeze_multiplier_+%_final", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportFreezeforkPlayer"] = { name = "Freezefork", description = "Supports Skills which can fire Projectiles. Projectiles from Supported Skills always Fork when the initial Projectile Hits Frozen Enemies, but Supported Skills cannot build up Freeze themselves.", @@ -2193,6 +2773,7 @@ skills["SupportFreezeforkPlayer"] = { requireSkillTypes = { SkillType.Projectile, }, addSkillTypes = { SkillType.SupportedByFreezefork, }, excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + gemFamily = { "Freezefork",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2221,8 +2802,9 @@ skills["SupportChillingIcePlayer"] = { color = 3, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, + addSkillTypes = { SkillType.CreatesGroundEffect, }, excludeSkillTypes = { }, + gemFamily = { "FrostNexus",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -2253,6 +2835,7 @@ skills["SupportFrostfirePlayer"] = { requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.SkillConsumesIgnite, SkillType.SupportedByElementalDischarge, }, + gemFamily = { "FrostFire",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2269,7 +2852,8 @@ skills["SupportFrostfirePlayer"] = { baseFlags = { }, constantStats = { - { "ignite_effect_+%_final_against_frozen_enemies", 100 }, + { "ignite_effect_+%_final_against_frozen_enemies", 50 }, + { "support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies", 25 }, }, stats = { "never_freeze", @@ -2281,26 +2865,32 @@ skills["SupportFrostfirePlayer"] = { }, } } -skills["SupportGlaciationPlayer"] = { - name = "Glaciation", - description = "Supports any skill that Hits enemies, making it more effective at Freezing enemies.", +skills["SupportGlacierPlayer"] = { + name = "Glacier", + description = "Supports any Skill which creates Ice Crystals, causing them to be created with higher Life.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.IceCrystal, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Glacier",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Glaciation", - incrementalEffectiveness = 0.092720001935959, + label = "Glacier", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_glacier_ice_crystal_maximum_life_+%_final"] = { + mod("IceCrystalLife", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_hypothermia_hit_damage_freeze_multiplier_+%_final", 50 }, + { "support_glacier_ice_crystal_maximum_life_+%_final", 100 }, }, stats = { }, @@ -2310,31 +2900,58 @@ skills["SupportGlaciationPlayer"] = { }, } } -skills["SupportGlacierPlayer"] = { - name = "Glacier", - description = "Supports any Skill which creates Ice Crystals, causing them to be created with higher Life.", +skills["SupportFleetingRemnantsPlayer"] = { + name = "Harmonic Remnants I", + description = "Supports Skills which create Remnants, allowing those Remnants to be collected from further away. ", color = 3, support = true, - requireSkillTypes = { SkillType.IceCrystal, }, + requireSkillTypes = { SkillType.GeneratesRemnants, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "HarmonicRemnants",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Glacier", + label = "Harmonic Remnants I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_glacier_ice_crystal_maximum_life_+%_final"] = { - mod("IceCrystalLife", "MORE", nil), - }, + baseFlags = { + }, + constantStats = { + { "remnant_pickup_range_+%", 100 }, + }, + stats = { }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFleetingRemnantsPlayerTwo"] = { + name = "Harmonic Remnants II", + description = "Supports Skills which create Remnants, allowing those Remnants to be collected from further away, with a chance to create an additional Remnant.", + color = 3, + support = true, + requireSkillTypes = { SkillType.GeneratesRemnants, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HarmonicRemnants",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Harmonic Remnants II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_glacier_ice_crystal_maximum_life_+%_final", 100 }, + { "remnant_pickup_range_+%", 100 }, + { "chance_%_to_create_additional_remnant", 20 }, }, stats = { }, @@ -2352,6 +2969,7 @@ skills["SupportCurseEffectPlayer"] = { requireSkillTypes = { SkillType.AppliesCurse, SkillType.IsBlasphemy, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "HeightenedCurse",}, levels = { [1] = { reservationMultiplier = 40, manaMultiplier = 40, levelRequirement = 0, }, }, @@ -2381,6 +2999,7 @@ skills["SupportHexBloomPlayer"] = { requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { SkillType.Area, }, excludeSkillTypes = { }, + gemFamily = { "HexBloom",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -2410,6 +3029,7 @@ skills["SupportHinderPlayer"] = { requireSkillTypes = { SkillType.Spell, SkillType.DamageOverTime, SkillType.Chaos, SkillType.AND, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Hinder",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -2437,7 +3057,8 @@ skills["SupportHourglassPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHourglass, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHourglass, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHourglass, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "GrantsCooldown",}, levels = { [1] = { storedUses = 1, levelRequirement = 0, cooldown = 10, }, }, @@ -2465,6 +3086,42 @@ skills["SupportHourglassPlayer"] = { }, } } +skills["SupportHulkingMinionsPlayer"] = { + name = "Hulking Minions", + description = "Supports Skills which summon Persistent Minions. Supported Minions are larger, have more Life, and deal more Damage, but cost significantly more Spirit.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HulkingMinions",}, + levels = { + [1] = { reservationMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Hulking Minions", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_titanblood_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + ["support_titanblood_minion_life_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), + }, + }, + baseFlags = { + }, + stats = { + "minions_are_gigantic", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportIceBitePlayer"] = { name = "Ice Bite", description = "Supports Attacks you use yourself. Freezing an enemy with supported skills infuses all of your Attacks with Cold damage for a short time.", @@ -2472,7 +3129,8 @@ skills["SupportIceBitePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "IceBite",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -2495,7 +3153,7 @@ skills["SupportIceBitePlayer"] = { baseFlags = { }, constantStats = { - { "support_ice_bite_buff_grant_%_added_cold_attack_damage", 35 }, + { "support_ice_bite_buff_grant_%_added_cold_attack_damage", 25 }, { "support_ice_bite_base_buff_duration", 5000 }, }, stats = { @@ -2514,6 +3172,7 @@ skills["SupportIciclePlayer"] = { requireSkillTypes = { SkillType.IceCrystal, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Icicle",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2547,7 +3206,8 @@ skills["ViciousHexSupportPlayer"] = { support = true, requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.Aura, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.Aura, }, + gemFamily = { "ImpendingDoom",}, levels = { [1] = { manaMultiplier = 30, levelRequirement = 0, }, }, @@ -2566,11 +3226,12 @@ skills["ViciousHexSupportPlayer"] = { }, }, } -}skills["DoomBlastPlayer"] = { +} +skills["DoomBlastPlayer"] = { name = "Doom Blast", hidden = true, description = "Deal Chaos damage in an area around the previously Cursed enemy.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Chaos] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, [SkillType.SkillGrantedBySupport] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Chaos] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.NoAttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -2581,8 +3242,8 @@ skills["ViciousHexSupportPlayer"] = { [1] = { label = "Doom Blast", baseEffectiveness = 1.7200000286102, - incrementalEffectiveness = 0.14000000059605, - damageIncrementalEffectiveness = 0.006800000090152, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, statDescriptionScope = "doom_blast", statMap = { ["impending_doom_base_added_chaos_damage_%_of_current_mana"] = { @@ -2612,35 +3273,6 @@ skills["ViciousHexSupportPlayer"] = { }, } } -skills["SupportImpetusPlayer"] = { - name = "Impetus", - description = "Supports Meta Skills. Supported Skills generate Energy significantly faster.", - color = 3, - support = true, - requireSkillTypes = { SkillType.GeneratesEnergy, }, - addSkillTypes = { }, - excludeSkillTypes = { }, - levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Impetus", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - baseFlags = { - }, - constantStats = { - { "energy_generated_+%", 40 }, - }, - stats = { - }, - levels = { - [1] = { actorLevel = 1, }, - }, - }, - } -} skills["SupportInevitableCriticalsPlayer"] = { name = "Inevitable Critical", description = "Supports any skill you use yourself that Hits enemies, causing it to accumulate Critical Hit chance over time. ", @@ -2648,7 +3280,8 @@ skills["SupportInevitableCriticalsPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "InevitableCritical",}, ignoreMinionTypes = true, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, @@ -2670,7 +3303,7 @@ skills["SupportInevitableCriticalsPlayer"] = { }, constantStats = { { "support_inevitable_criticals_critical_strike_chance_+%_per_second", 25 }, - { "support_inevitable_criticals_critical_strike_chance_+%_cap", 100 }, + { "support_inevitable_criticals_critical_strike_chance_+%_cap", 200 }, }, stats = { "supported_by_inevitable_criticals", @@ -2689,6 +3322,7 @@ skills["SupportIntenseAgonyPlayer"] = { requireSkillTypes = { SkillType.Spell, SkillType.DamageOverTime, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "IntenseAgony",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2719,26 +3353,161 @@ skills["SupportIntenseAgonyPlayer"] = { }, } } -skills["SupportLastGaspPlayer"] = { - name = "Last Gasp", - description = "Supports skills that create Persistent Minions, causing those Minions to fight on for a short duration before dying when they are fatally wounded.", +skills["SupportFlukePlayerTwo"] = { + name = "Ixchel's Torment", + description = "Supports Skills which Trigger other Skills. Skills Triggered by Supported Skills have their Damage, Area of Effect, and Projectile Speed randomly raised or lowered when Triggered, as well as recovering a random amount of their cost when Triggered.", color = 3, support = true, - requireSkillTypes = { SkillType.CreatesMinion, SkillType.Persistent, SkillType.AND, }, - addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + requireSkillTypes = { SkillType.Triggers, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Fluke",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Last Gasp", + label = "Ixchel's Torment", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_last_gasp_duration_ms", 4000 }, + { "support_randomise_lower_recover_%_cost_on_use", 0 }, + { "support_randomise_higher_recover_%_cost_on_use", 20 }, + { "support_randomise_lower_damage_+%_final", -40 }, + { "support_randomise_higher_damage_+%_final", 60 }, + { "support_randomise_higher_aoe_+%_final", 50 }, + { "support_randomise_lower_aoe_+%_final", -40 }, + { "support_randomise_higher_projectile_speed_+%_final", 50 }, + { "support_randomise_lower_projectile_speed_+%_final", -40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportKalisasCrescendoPlayer"] = { + name = "Kalisa's Crescendo", + description = "Supports Curse Skills. Enemies Cursed by Supported Skills are Pacified for the final portion of the Supported Curse's duration.", + color = 3, + support = true, + requireSkillTypes = { SkillType.AppliesCurse, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "KalisasCrescendo",}, + isLineage = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Kalisa's Crescendo", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "curse_pacify_for_final_%_of_duration", 30 }, + { "apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry", 8000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportKulemaksDominionPlayer"] = { + name = "Kulemak's Dominion", + description = "Supports Offering Skills, causing Spells that affect an area around you or a target location to also affect the area around Supported Offerings.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Offering, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "AbyssalLineageTwo",}, + isLineage = true, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Kulemak's Dominion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "cascadeable_offering_support_offering_casted_spell_damage_+%_final", -50 }, + }, + stats = { + "cascadeable_spells_occur_from_offering", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportKurgalsLeashPlayer"] = { + name = "Kurgal's Leash", + description = "Supports Commandable Minions causing you and the Supported Minion to gain Unholy Might when you Command them.", + color = 3, + support = true, + requireSkillTypes = { SkillType.CommandsMinions, SkillType.CommandableMinion, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "KurgalLineage",}, + isLineage = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Kurgal's Leash", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "gain_unholy_might_for_X_ms_on_command", 5000 }, + { "minion_gain_unholy_might_for_X_ms_on_command", 5000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLastGaspPlayer"] = { + name = "Last Gasp", + description = "Supports skills that create Persistent Minions, causing those Minions to fight on when they are fatally wounded, dying after a short duration or when they take further damage exceeding their maximum Life.", + color = 3, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, SkillType.Persistent, SkillType.AND, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "LastGasp",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Last Gasp", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_last_gasp_duration_ms", 4000 }, }, stats = { }, @@ -2750,12 +3519,13 @@ skills["SupportLastGaspPlayer"] = { } skills["SupportLightningMasteryPlayer"] = { name = "Lightning Mastery", - description = "Supports Lightning skills, granting them an additional level.", + description = "Supports Lightning skills, granting them an additional level. Does not support skills which do not have levels.", color = 3, support = true, requireSkillTypes = { SkillType.Lightning, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -2777,6 +3547,152 @@ skills["SupportLightningMasteryPlayer"] = { }, } } +skills["SupportLivingLightningPlayer"] = { + name = "Living Lightning", + description = "Supports Skills which cause Damaging Hits. Living Lightning Minions are created when dealing Lightning damage with Supported Skills - bundles of living electricity that target nearby enemies with Chaining Attacks. Enemies will not directly engage these Minions, and can pass through them. Does not modify skills used by Minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "LivingLightning",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Living Lightning", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "supported_skill_triggers_living_lightning_on_dealing_lightning_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredLivingLightningPlayer"] = { + name = "Living Lightning", + hidden = true, + minionList = { + "LivingLightning", + }, + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.Lightning] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.SingleLevelSkill] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesMinion] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { storedUses = 5, levelRequirement = 0, cooldown = 0.2, }, + }, + statSets = { + [1] = { + label = "Living Lightning", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_living_lightning", + baseFlags = { + minion = true, + }, + constantStats = { + { "chance_to_trigger_living_lightning_on_lightning_damage_%", 100 }, + { "base_skill_effect_duration", 30000 }, + { "base_number_of_living_lightning_allowed", 5 }, + { "living_lightning_maximum_number_of_attacks", 3 }, + { "minion_base_physical_damage_%_to_convert_to_lightning", 100 }, + { "living_lightning_beam_attack_time_ms", 140 }, + }, + stats = { + "display_minion_level_from_triggering_skill_level", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLivingLightningPlayerTwo"] = { + name = "Living Lightning II", + description = "Supports Skills which cause Damaging Hits. Living Lightning Minions are created when dealing Lightning damage with Supported Skills - bundles of living electricity that target nearby enemies with Chaining Attacks. Enemies will not directly engage these Minions, and can pass through them. Does not modify skills used by Minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "LivingLightning",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Living Lightning II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "supported_skill_triggers_living_lightning_on_dealing_lightning_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredLivingLightningPlayerTwo"] = { + name = "Living Lightning", + hidden = true, + minionList = { + "LivingLightning", + }, + skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.Lightning] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.SingleLevelSkill] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesMinion] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { storedUses = 5, levelRequirement = 0, cooldown = 0.2, }, + }, + statSets = { + [1] = { + label = "Living Lightning", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_living_lightning", + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent", div = 5 }) }), + div = 5, + }, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 10 }) }), + div = 10, + }, + }, + baseFlags = { + minion = true, + }, + constantStats = { + { "chance_to_trigger_living_lightning_on_lightning_damage_%", 100 }, + { "base_skill_effect_duration", 30000 }, + { "base_number_of_living_lightning_allowed", 8 }, + { "living_lightning_maximum_number_of_attacks", 3 }, + { "minion_base_physical_damage_%_to_convert_to_lightning", 100 }, + { "living_lightning_beam_attack_time_ms", 140 }, + { "minion_1%_damage_+%_per_X_player_strength", 5 }, + { "minion_1%_attack_speed_+%_per_X_player_dexterity", 10 }, + }, + stats = { + "display_minion_level_from_triggering_skill_level", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportLoyaltyPlayer"] = { name = "Loyalty", description = "Supports Skills that create Companions which can be damaged. Minions created by Supported Skills take a portion of Hit Damage you would otherwise have taken, but have lowered maximum Life.", @@ -2785,24 +3701,474 @@ skills["SupportLoyaltyPlayer"] = { requireSkillTypes = { SkillType.Companion, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "Loyalty",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Loyalty", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_trusty_companion_minion_life_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_trusty_companion_minion_life_+%_final", -30 }, + { "companion_takes_%_damage_before_you_from_support", 10 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMagneticRemnantsPlayer"] = { + name = "Magnetic Remnants", + description = "Supports Skills which create Remnants, allowing those Remnants to be collected from further away.", + color = 3, + support = true, + requireSkillTypes = { SkillType.GeneratesRemnants, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Magnetism",}, + levels = { + [1] = { spiritReservationFlat = 10, manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Magnetic Remnants", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "remnant_pickup_range_+%", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMagnifiedAreaPlayer"] = { + name = "Magnified Area I", + description = "Supports any skill with an area of effect, making it larger.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "IncreasedAreaOfEffect",}, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Magnified Area I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_skill_area_of_effect_+%", 35 }, + { "support_increased_area_damage_+%_final", 0 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMagnifiedAreaPlayerTwo"] = { + name = "Magnified Area II", + description = "Supports any skill with an area of effect, making it larger at the cost of damage.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "IncreasedAreaOfEffect",}, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Magnified Area II", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_area_concentrate_area_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Area), + }, + }, + baseFlags = { + }, + constantStats = { + { "base_skill_area_of_effect_+%", 45 }, + { "support_increased_area_damage_+%_final", -10 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportManaFlarePlayer"] = { + name = "Mana Flare", + description = "Supports any Spell that Hits enemies, causing it to trigger a Mana Flare on Critical Hit. The Mana Flare consumes your Mana to deal Fire damage. Cannot support the skills of Minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Damage, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + gemFamily = { "ManaFlare",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Support", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "support_trigger_mana_flare_on_crit", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredManaFlarePlayer"] = { + name = "Mana Flare", + hidden = true, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { critChance = 7, storedUses = 1, levelRequirement = 0, cooldown = 1, }, + }, + statSets = { + [1] = { + label = "Mana Flare", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_mana_flare", + statMap = { + ["support_mana_flare_%_of_current_mana_consumed"] = { + mod("FireMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percentVar = "CurrentManaPercentage" }), + mod("FireMax", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percentVar = "CurrentManaPercentage" }), + div = 100, + }, + }, + baseFlags = { + spell = true, + area = true, + }, + baseMods = { + skill("currentManaPercentage", true), + }, + constantStats = { + { "triggered_by_mana_flare_support_%", 100 }, + { "support_mana_flare_%_of_current_mana_consumed", 25 }, + { "active_skill_base_area_of_effect_radius", 20 }, + }, + stats = { + "is_area_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportManaLeechPlayer"] = { + name = "Mana Leech", + description = "Supports Attacks, causing their Physical damage to Leech Mana.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ManaLeech",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Mana Leech", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_mana_leech_from_physical_attack_damage_permyriad", 800 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMinionInstabilityPlayer"] = { + name = "Minion Instability", + description = "Supports skills which create Minions, causing them to violently explode when reduced to Low Life.", + color = 3, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "MinionInstability",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Minion Instability", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["explode_on_low_life_%_maximum_life_to_deal"] = { + mod("MinionModifier", "LIST", { mod = mod("Multiplier:MinionInstabilityBaseDamage", "BASE", nil) }), + mod("ExtraMinionSkill", "LIST", { skillId = "MinionInstability" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "explode_on_low_life_%_maximum_life_to_deal", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMinionMasteryPlayer"] = { + name = "Minion Mastery", + description = "Supports Minion skills, granting them an additional level. Does not support skills which do not have levels.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Minion, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Minion Mastery", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "supported_minion_skill_gem_level_+", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMinionPactPlayer"] = { + name = "Minion Pact I", + description = "Supports damaging skills you use yourself, draining the life from one of your Minions on use in order to boost the skill's damage. Only takes effect if you have a Minion with enough life to drain the full amount.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Persistent, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "MinionPact",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Minion Pact I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_minion_pact_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_minion_pact_user_life_%_removed_from_nearby_minion", 100 }, + { "support_minion_pact_damage_+%_final", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMinionPactPlayerTwo"] = { + name = "Minion Pact II", + description = "Supports damaging skills you use yourself, draining the life from one of your Minions on use in order to boost the skill's damage. Only takes effect if you have a Minion with enough life to drain the full amount.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Persistent, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "MinionPact",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Minion Pact II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_minion_pact_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_minion_pact_user_life_%_removed_from_nearby_minion", 150 }, + { "support_minion_pact_damage_+%_final", 35 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMusterPlayer"] = { + name = "Muster", + description = "Supports Skills which summon Minions. Supported Minions deal more Damage the more different kinds of Reviving Minions you have summoned.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Minion, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Muster",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Muster", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "PersistentMinionTypes" }) }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_varied_troops_damage_+%_final_per_different_persistent_ominion", 7 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMysticismPlayer"] = { + name = "Mysticism I", + description = "Supports Persistent Buff Skills, causing you to deal increased Spell Damage while on full Energy Shield while the Supported Skill is active.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Mysticism",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Mysticism I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"] = { + mod("Damage", "INC", nil, ModFlag.Spell, 0, { type = "Condition", var = "FullEnergyShield" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Mysticism" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMysticismPlayerTwo"] = { + name = "Mysticism II", + description = "Supports Persistent Buff Skills, causing you to deal increased Spell Damage while on full Energy Shield while the Supported Skill is active.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Mysticism",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Loyalty", + label = "Mysticism II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_trusty_companion_minion_life_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), + ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"] = { + mod("Damage", "INC", nil, ModFlag.Spell, 0, { type = "Condition", var = "FullEnergyShield" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Mysticism" }), }, }, baseFlags = { }, constantStats = { - { "support_trusty_companion_minion_life_+%_final", -30 }, - { "companion_takes_%_damage_before_you_from_support", 10 }, + { "support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield", 40 }, }, stats = { }, @@ -2812,26 +4178,28 @@ skills["SupportLoyaltyPlayer"] = { }, } } -skills["SupportMagnetismPlayer"] = { - name = "Magnetism", - description = "Supports Skills which create Remnants, allowing those Remnants to be collected from further away.", +skills["SupportNadirPlayer"] = { + name = "Nadir", + description = "Supports Skills which gain Stages or Seals. Supported Skills have lower Maximum Stage or Seal count, but have a Minimum Stage or Seal count they cannot fall below.", color = 3, support = true, - requireSkillTypes = { SkillType.GeneratesRemnants, }, + requireSkillTypes = { SkillType.GainsStages, SkillType.HasSeals, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Nadir",}, levels = { - [1] = { spiritReservationFlat = 10, manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Magnetism", + label = "Nadir", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "remnant_pickup_range_+%", 100 }, + { "skill_X_fewer_maximum_stages", 1 }, + { "skill_X_minimum_stages", 1 }, }, stats = { }, @@ -2841,28 +4209,27 @@ skills["SupportMagnetismPlayer"] = { }, } } -skills["SupportIncreasedAreaOfEffectPlayer"] = { - name = "Magnified Effect", - description = "Supports any skill with an area of effect, making it larger.", +skills["SupportPhysicalMasteryPlayer"] = { + name = "Physical Mastery", + description = "Supports Physical skills, granting them an additional level. Does not support skills which do not have levels.", color = 3, support = true, - requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, }, + requireSkillTypes = { SkillType.Physical, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Magnified Effect", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Physical Mastery", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_area_of_effect_+%_final", 30 }, - { "support_increased_area_damage_+%_final", 0 }, + { "supported_physical_skill_gem_level_+", 1 }, }, stats = { }, @@ -2872,69 +4239,70 @@ skills["SupportIncreasedAreaOfEffectPlayer"] = { }, } } -skills["SupportManaFlarePlayer"] = { - name = "Mana Flare", - description = "Supports any Spell that Hits enemies, causing it to trigger a Mana Flare on Critical Hit. The Mana Flare consumes your Mana to deal Fire damage. Cannot support the skills of Minions.", +skills["SupportPinpointCriticalPlayer"] = { + name = "Pinpoint Critical", + description = "Supports any skill that Hits Enemies, causing it to Critically Hit more often but deal less damage with Critical Hits.", color = 3, support = true, - requireSkillTypes = { SkillType.Spell, SkillType.Damage, SkillType.AND, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, - ignoreMinionTypes = true, + excludeSkillTypes = { }, + gemFamily = { "PinpointCritical",}, levels = { [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Support", + label = "Pinpoint Critical", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_pinpoint_critical_strike_chance_+%_final"] = { + mod("CritChance", "MORE", nil), + }, + ["support_pinpoint_critical_strike_multiplier_+%_final"] = { + mod("CritMultiplier", "MORE", nil), + }, + }, baseFlags = { }, + constantStats = { + { "support_pinpoint_critical_strike_chance_+%_final", 60 }, + { "support_pinpoint_critical_strike_multiplier_+%_final", -30 }, + }, stats = { - "support_trigger_mana_flare_on_crit", }, levels = { [1] = { actorLevel = 1, }, }, }, } -}skills["TriggeredManaFlarePlayer"] = { - name = "Mana Flare", - hidden = true, - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, }, - castTime = 1, - qualityStats = { - }, +} +skills["SupportPotentExposurePlayer"] = { + name = "Potent Exposure", + description = "Supports Skills which apply Exposure to Enemies, increasing the effect of applied Exposure.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Spell, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "PotentExposure",}, levels = { - [1] = { critChance = 7, storedUses = 1, levelRequirement = 0, cooldown = 1, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Mana Flare", + label = "Potent Exposure", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "triggered_mana_flare", - statMap = { - ["support_mana_flare_%_of_current_mana_consumed"] = { - mod("FireMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percentVar = "CurrentManaPercentage" }), - mod("FireMax", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percentVar = "CurrentManaPercentage" }), - div = 100, - }, - }, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { - spell = true, - area = true, - }, - baseMods = { - skill("currentManaPercentage", true), }, constantStats = { - { "triggered_by_mana_flare_support_%", 100 }, - { "support_mana_flare_%_of_current_mana_consumed", 25 }, - { "active_skill_base_area_of_effect_radius", 20 }, + { "exposure_effect_+%", 20 }, }, stats = { - "is_area_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -2942,34 +4310,35 @@ skills["SupportManaFlarePlayer"] = { }, } } -skills["SupportMinionInstabilityPlayer"] = { - name = "Minion Instability", - description = "Supports skills which create Minions, causing them to violently explode when reduced to Low Life.", +skills["SupportPotentialPlayer"] = { + name = "Potential", + description = "Supports Skills that you use yourself. Supported Skills will consume a Power Charge on use if possible, and will be much more likely to Critically Hit if they do. Supported Skills cannot generate Power Charges.", color = 3, support = true, - requireSkillTypes = { SkillType.CreatesMinion, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, + addSkillTypes = { SkillType.SupportedByPotential, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesPowerChargesOnUse, SkillType.SupportedByPotential, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Potential",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Minion Instability", + label = "Potential", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["explode_on_low_life_%_maximum_life_to_deal"] = { - mod("MinionModifier", "LIST", { mod = mod("Multiplier:MinionInstabilityBaseDamage", "BASE", nil) }), - mod("ExtraMinionSkill", "LIST", { skillId = "MinionInstability" }), + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge", limit = 1 }), }, }, baseFlags = { }, constantStats = { - { "explode_on_low_life_%_maximum_life_to_deal", 15 }, + { "skill_consume_power_charge_to_gain_critical_strike_chance_+%_final", 40 }, }, stats = { + "skill_cannot_generate_power_charges", }, levels = { [1] = { actorLevel = 1, }, @@ -2977,26 +4346,30 @@ skills["SupportMinionInstabilityPlayer"] = { }, } } -skills["SupportMinionMasteryPlayer"] = { - name = "Minion Mastery", - description = "Supports Minion skills, granting them an additional level.", +skills["SupportProfanityPlayer"] = { + name = "Profanity I", + description = "Supports Skills you use yourself. Supported Skills consume a Corpse on use, dealing more Chaos Damage if they do. Cannot support Triggered Skills or Reservation Skills.", color = 3, support = true, - requireSkillTypes = { SkillType.Minion, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.HasReservation, SkillType.Triggered, SkillType.Meta, }, + gemFamily = { "Profanity",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Minion Mastery", + label = "Profanity I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "supported_minion_skill_gem_level_+", 1 }, + { "support_chaos_damage_+%_final_if_corpse_consumed_on_use", 30 }, + { "skill_consume_corpse_within_X_units_on_use", 50 }, + { "skill_consume_up_to_X_corpses_on_use", 1 }, }, stats = { }, @@ -3006,33 +4379,30 @@ skills["SupportMinionMasteryPlayer"] = { }, } } -skills["SupportMinionPactPlayer"] = { - name = "Minion Pact", - description = "Supports damaging skills you use yourself, draining the life from one of your Minions on use in order to boost the skill's damage. Only takes effect if you have a Minion with enough life to drain the full amount.", +skills["SupportProfanityPlayerTwo"] = { + name = "Profanity II", + description = "Supports Skills you use yourself. Supported Skills consume many Corpses on use, dealing more Chaos Damage per Corpse consumed. Cannot support Triggered Skills or Reservation Skills.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Persistent, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.HasReservation, SkillType.Triggered, SkillType.Meta, }, + gemFamily = { "Profanity",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Minion Pact", + label = "Profanity II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_minion_pact_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_minion_pact_user_life_%_removed_from_nearby_minion", 100 }, - { "support_minion_pact_damage_+%_final", 30 }, + { "skill_consume_corpse_within_X_units_on_use", 50 }, + { "skill_consume_up_to_X_corpses_on_use", 10 }, + { "support_chaos_damage_+%_final_per_corpse_consumed_on_use", 5 }, }, stats = { }, @@ -3042,31 +4412,28 @@ skills["SupportMinionPactPlayer"] = { }, } } -skills["SupportMusterPlayer"] = { - name = "Muster", - description = "Supports Skills which summon Minions. Supported Minions deal more Damage the more different kinds of Persistent Minions you have summoned.", +skills["SupportRapidCastingPlayer"] = { + name = "Rapid Casting I", + description = "Supports Spells, causing them to cast faster.", color = 3, support = true, - requireSkillTypes = { SkillType.Minion, }, + requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Instant, SkillType.FixedCastTime, SkillType.NoAttackOrCastTime, }, + gemFamily = { "RapidCasting",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Muster", - incrementalEffectiveness = 0.054999999701977, + label = "Rapid Casting I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "PersistentMinionTypes" }) }), - }, - }, baseFlags = { }, constantStats = { - { "support_varied_troops_damage_+%_final_per_different_persistent_ominion", 7 }, + { "base_cast_speed_+%", 15 }, }, stats = { }, @@ -3076,31 +4443,28 @@ skills["SupportMusterPlayer"] = { }, } } -skills["SupportMysticismPlayer"] = { - name = "Mysticism", - description = "Supports Persistent Buff Skills, causing you to deal increased Spell Damage while on full Energy Shield while the Supported Skill is active.", +skills["SupportRapidCastingPlayerTwo"] = { + name = "Rapid Casting II", + description = "Supports Spells, causing them to cast faster.", color = 3, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Instant, SkillType.FixedCastTime, SkillType.NoAttackOrCastTime, }, + gemFamily = { "RapidCasting",}, levels = { - [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Mysticism", - incrementalEffectiveness = 0.054999999701977, + label = "Rapid Casting II", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"] = { - mod("Damage", "INC", nil, ModFlag.Spell, 0, { type = "Condition", var = "FullEnergyShield" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Mysticism" }), - }, - }, baseFlags = { }, constantStats = { - { "support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield", 30 }, + { "base_cast_speed_+%", 20 }, }, stats = { }, @@ -3110,27 +4474,28 @@ skills["SupportMysticismPlayer"] = { }, } } -skills["SupportNadirPlayer"] = { - name = "Nadir", - description = "Supports Skills which gain Stages or Seals. Supported Skills have lower Maximum Stage or Seal count, but have a Minimum Stage or Seal count they cannot fall below.", +skills["SupportRapidCastingPlayerThree"] = { + name = "Rapid Casting III", + description = "Supports Spells, causing them to cast faster for each different Spell you've cast Recently.", color = 3, support = true, - requireSkillTypes = { SkillType.GainsStages, }, + requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Instant, SkillType.FixedCastTime, SkillType.NoAttackOrCastTime, }, + gemFamily = { "RapidCasting",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Nadir", - incrementalEffectiveness = 0.054999999701977, + label = "Rapid Casting III", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "skill_X_fewer_maximum_stages", 1 }, - { "skill_X_minimum_stages", 1 }, + { "cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds", 10 }, }, stats = { }, @@ -3140,26 +4505,28 @@ skills["SupportNadirPlayer"] = { }, } } -skills["SupportPhysicalMasteryPlayer"] = { - name = "Physical Mastery", - description = "Supports Physical skills, granting them an additional level.", +skills["SupportRimePlayer"] = { + name = "Rime", + description = "Supports Skills which create Ground Surfaces, causing Enemies Chilled by those Surfaces to be more easily Frozen, but at the cost of some Chill magnitude.", color = 3, support = true, - requireSkillTypes = { SkillType.Physical, }, + requireSkillTypes = { SkillType.CreatesGroundEffect, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Rime",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Physical Mastery", + label = "Rime", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "supported_physical_skill_gem_level_+", 1 }, + { "chilled_ground_applies_%_freeze_multiplier_taken", -20 }, + { "support_winterblast_chill_effect_+%_final", -30 }, }, stats = { }, @@ -3169,37 +4536,32 @@ skills["SupportPhysicalMasteryPlayer"] = { }, } } -skills["SupportPinpointCriticalPlayer"] = { - name = "Pinpoint Critical", - description = "Supports any skill that Hits Enemies, causing it to Critically Hit more often but deal less damage with Critical Hits.", +skills["SupportTempestuousTempoPlayer"] = { + name = "Rising Tempest", + description = "Supports Skills which deal Damage, raising Elemental Damage dealt for each Skill used Recently of a different Elemental type. Cannot support Minion Skills.", color = 3, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, }, + gemFamily = { "RisingTempest",}, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Pinpoint Critical", + label = "Rising Tempest", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_pinpoint_critical_strike_chance_+%_final"] = { - mod("CritChance", "MORE", nil), - }, - ["support_pinpoint_critical_strike_multiplier_+%_final"] = { - mod("CritMultiplier", "MORE", nil), + ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"] = { + mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "DifferentElementalSkillUsedRecently" }), }, }, baseFlags = { }, constantStats = { - { "support_pinpoint_critical_strike_chance_+%_final", 60 }, - { "support_pinpoint_critical_strike_multiplier_+%_final", -30 }, + { "support_elemental_damage_+%_final_per_different_elemental_skill_used_recently", 12 }, }, stats = { }, @@ -3209,34 +4571,30 @@ skills["SupportPinpointCriticalPlayer"] = { }, } } -skills["SupportPotentialPlayer"] = { - name = "Potential", - description = "Supports Skills that you use yourself. Supported Skills will consume a Power Charge on use if possible, and will be much more likely to Critically Hit if they do. Supported Skills cannot generate Power Charges.", +skills["SupportRitualisticCursePlayer"] = { + name = "Ritualistic Curse", + description = "Supports Curse skills, causing them to cover a larger area but take longer to Curse enemies.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, - addSkillTypes = { SkillType.SupportedByPotential, }, - excludeSkillTypes = { SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesPowerChargesOnUse, SkillType.SupportedByPotential, SkillType.NOT, SkillType.AND, }, + requireSkillTypes = { SkillType.AppliesCurse, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "RitualisticCurse",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Potential", + label = "Ritualistic Curse", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"] = { - mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge", limit = 1 }), - }, - }, baseFlags = { }, constantStats = { - { "skill_consume_power_charge_to_gain_critical_strike_chance_+%_final", 40 }, + { "support_ritual_curse_curse_delay_+%_final", 30 }, + { "curse_area_of_effect_+%", 50 }, }, stats = { - "skill_cannot_generate_power_charges", }, levels = { [1] = { actorLevel = 1, }, @@ -3244,29 +4602,30 @@ skills["SupportPotentialPlayer"] = { }, } } -skills["SupportProfanityPlayer"] = { - name = "Profanity", - description = "Supports Skills you use yourself. Supported Skills consume a Corpse on use, dealing more Chaos Damage if they do. Cannot support Triggered Skills or Reservation Skills.", +skills["SupportSacrificialLambPlayer"] = { + name = "Sacrificial Lamb I", + description = "Supports skills which create Minions, causing your skills which can target Minions to prioritise targeting Minions from the Supported Skill.", color = 3, support = true, - requireSkillTypes = { }, + requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.Triggered, SkillType.HasReservation, }, + excludeSkillTypes = { }, + gemFamily = { "SacrificialLamb",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Profanity", + label = "Sacrificial Lamb I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_chaos_damage_+%_final_if_corpse_consumed_on_use", 30 }, - { "skill_consume_corpse_within_X_units_on_use", 50 }, + { "support_sacrificial_lamb_base_radius", 60 }, }, stats = { + "support_sacrificial_lamb", }, levels = { [1] = { actorLevel = 1, }, @@ -3274,29 +4633,31 @@ skills["SupportProfanityPlayer"] = { }, } } -skills["SupportRimePlayer"] = { - name = "Rime", - description = "Supports Skills which create Ground Surfaces, causing Enemies Chilled by those Surfaces to be more easily Frozen, but at the cost of some Chill magnitude.", +skills["SupportSacrificialLambPlayerTwo"] = { + name = "Sacrificial Lamb II", + description = "Supports skills which create Minions, causing your skills which can target Minions to prioritise targeting Minions from the Supported Skill, as well as causing them to always be considered Detonatable.", color = 3, support = true, - requireSkillTypes = { SkillType.CreatesGroundEffect, }, + requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "SacrificialLamb",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rime", + label = "Sacrificial Lamb II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "chilled_ground_applies_%_freeze_multiplier_taken", -20 }, - { "support_winterblast_chill_effect_+%_final", -30 }, + { "support_sacrificial_lamb_base_radius", 60 }, }, stats = { + "support_sacrificial_lamb", + "sacrificial_lamb_minion_always_detonatable", }, levels = { [1] = { actorLevel = 1, }, @@ -3304,31 +4665,34 @@ skills["SupportRimePlayer"] = { }, } } -skills["SupportTempestuousTempoPlayer"] = { - name = "Rising Tempest", - description = "Supports Skills which deal Damage, raising Elemental Damage dealt for each Skill used Recently of a different Elemental type. Cannot support Minion Skills.", +skills["SupportSacrificalOfferingPlayer"] = { + name = "Sacrificial Offering", + description = "Supports Offering Skills. Supported Skills Sacrifice a portion of your life on use, but deal much more damage and have more powerful Buffs in return.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Offering, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, }, + excludeSkillTypes = { }, + gemFamily = { "SacrificalOffering",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rising Tempest", + label = "Sacrificial Offering", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"] = { - mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "DifferentElementalSkillUsedRecently" }), + ["support_ablation_offering_skill_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Offering }), }, }, baseFlags = { }, constantStats = { - { "support_elemental_damage_+%_final_per_different_elemental_skill_used_recently", 12 }, + { "support_ablation_offering_skill_damage_+%_final", 30 }, + { "offering_spells_effect_+%", 30 }, + { "sacrifice_%_life_on_skill_use", 15 }, }, stats = { }, @@ -3338,27 +4702,28 @@ skills["SupportTempestuousTempoPlayer"] = { }, } } -skills["SupportRitualisticCursePlayer"] = { - name = "Ritualistic Curse", - description = "Supports Curse skills, causing them to cover a larger area but take longer to Curse enemies.", +skills["SupportShockConductionPlayer"] = { + name = "Shock Conduction", + description = "Supports any skill that Hits enemies, giving it a chance to also Shock nearby enemies when you Shock an enemy.", color = 3, support = true, - requireSkillTypes = { SkillType.AppliesCurse, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ShockConduction",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ritualistic Curse", + label = "Shock Conduction", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "base_curse_delay_+%", 30 }, - { "curse_area_of_effect_+%", 50 }, + { "support_%_chance_to_shock_nearby_enemy_on_shock", 50 }, + { "shock_nearby_enemy_base_area_of_effect_radius", 25 }, }, stats = { }, @@ -3376,6 +4741,7 @@ skills["SupportEnergyShieldOnShockKillPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ShockSiphon",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -3403,27 +4769,30 @@ skills["SupportEnergyShieldOnShockKillPlayer"] = { }, } } -skills["SupportManaLeechPlayer"] = { - name = "Soul Thief", - description = "Supports Attacks, causing their Physical damage to Leech Mana.", +skills["SupportWildshardsPlayerThree"] = { + name = "Sione's Temper", + description = "Supports Projectile Spells. Supported Spells have an increasingly higher chance to fire many additional Projectiles in a circle, resetting when they do.", color = 3, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Spell, SkillType.Projectile, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, }, + gemFamily = { "AdditionalProjectiles",}, + isLineage = true, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Soul Thief", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Sione's Temper", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "base_mana_leech_from_physical_attack_damage_permyriad", 800 }, + { "gain_X_wildshard_stacks_on_cast", 1 }, + { "spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack", 20 }, }, stats = { }, @@ -3441,6 +4810,7 @@ skills["SupportSpellCascadePlayer"] = { requireSkillTypes = { SkillType.Cascadable, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Channel, SkillType.Attack, }, + gemFamily = { "SpellCascade",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -3461,7 +4831,7 @@ skills["SupportSpellCascadePlayer"] = { }, constantStats = { { "support_spell_cascade_number_of_cascades_per_side", 1 }, - { "support_spell_cascade_area_of_effect_+%_per_cascade", -20 }, + { "support_spell_cascade_area_of_effect_+%_for_cascade", -20 }, { "support_spell_cascade_area_of_effect_+%_final", -20 }, { "support_spell_cascade_damage_+%_final", -30 }, }, @@ -3481,6 +4851,7 @@ skills["SupportSpellEchoPlayer"] = { requireSkillTypes = { SkillType.Cascadable, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Channel, SkillType.Attack, SkillType.Triggered, }, + gemFamily = { "SpellEcho",}, levels = { [1] = { manaMultiplier = 50, levelRequirement = 0, }, }, @@ -3493,8 +4864,8 @@ skills["SupportSpellEchoPlayer"] = { ["support_multicast_cast_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Cast), }, - ["support_spell_echo_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), + ["support_spell_echo_area_of_effect_+%"] = { + mod("AreaOfEffect", "INC", nil), }, }, baseFlags = { @@ -3503,7 +4874,7 @@ skills["SupportSpellEchoPlayer"] = { { "support_spell_echo_cascade_delay_ms", 500 }, { "support_multicast_cast_speed_+%_final", -30 }, { "support_spell_echo_number_of_echo_cascades", 1 }, - { "support_spell_echo_area_of_effect_+%_final", 30 }, + { "support_spell_echo_area_of_effect_+%", 40 }, }, stats = { }, @@ -3521,6 +4892,7 @@ skills["SupportStormfirePlayer"] = { requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "StormFire",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -3540,35 +4912,6 @@ skills["SupportStormfirePlayer"] = { }, } } -skills["SupportStripAwayPlayer"] = { - name = "Strip Away", - description = "Supports Skills which apply Exposure to Enemies, increasing the effect of applied Exposure.", - color = 3, - support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Spell, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, - addSkillTypes = { }, - excludeSkillTypes = { }, - levels = { - [1] = { levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Strip Away", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - baseFlags = { - }, - constantStats = { - { "support_exposure_effect_+%", 20 }, - }, - stats = { - }, - levels = { - [1] = { actorLevel = 1, }, - }, - }, - } -} skills["SupportStrongHeartedPlayer"] = { name = "Strong Hearted", description = "Supports Persistent Buff Skills, causing Shock applied to you to last for a shorter duration while the Supported Skill is active.", @@ -3577,6 +4920,8 @@ skills["SupportStrongHeartedPlayer"] = { requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "StrongHearted",}, + isLineage = true, levels = { [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, }, @@ -3603,27 +4948,34 @@ skills["SupportStrongHeartedPlayer"] = { }, } } -skills["SupportSuffusePlayer"] = { - name = "Suffuse", - description = "Supports Skills that create Ground Surfaces, causing those Surfaces to grow over time, up to a limit.", +skills["SupportIncreasedCriticalDamagePlayer"] = { + name = "Supercritical", + description = "Supports any skill that Hits enemies, causing it to deal more damage with Critical Hits but have less Critical Hit chance.", color = 3, support = true, - requireSkillTypes = { SkillType.CreatesGroundEffect, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Supercritical",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Suffuse", - incrementalEffectiveness = 0.054999999701977, + label = "Supercritical", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_critical_damage_critical_strike_chance_+%_final"] = { + mod("CritChance", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_ground_effect_area_of_effect_+%_final_per_second", 20 }, - { "support_ground_effect_area_of_effect_+%_final_per_second_max", 100 }, + { "base_critical_strike_multiplier_+", 100 }, + { "support_critical_damage_critical_strike_chance_+%_final", -20 }, }, stats = { }, @@ -3633,35 +4985,32 @@ skills["SupportSuffusePlayer"] = { }, } } -skills["SupportIncreasedCriticalDamagePlayer"] = { - name = "Supercritical", - description = "Supports any skill that Hits enemies, causing it to deal more damage with Critical Hits but have less Critical Hit chance.", +skills["SupportTecrodsRevengePlayer"] = { + name = "Tecrod's Revenge", + description = "Supports skills that create Persistent Minions, causing those Minions to fight on when they are fatally wounded, dying after a short duration or when they take further damage exceeding their maximum Life. Minions from Supported Skills gain Soul Eater and a burst of speed on entering this state.", color = 3, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.CreatesMinion, SkillType.Persistent, SkillType.AND, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "LastGasp",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Supercritical", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Tecrod's Revenge", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_critical_damage_critical_strike_chance_+%_final"] = { - mod("CritChance", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "base_critical_strike_multiplier_+", 100 }, - { "support_critical_damage_critical_strike_chance_+%_final", -20 }, + { "support_last_gasp_duration_ms", 10000 }, + { "support_last_gasp_attack_and_cast_speed_+%_while_undying", 20 }, }, stats = { + "support_last_gasp_minion_soul_eater_while_undying", }, levels = { [1] = { actorLevel = 1, }, @@ -3676,7 +5025,8 @@ skills["SupportUnbendingPlayer"] = { support = true, requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, SkillType.Triggered, }, + gemFamily = { "Unbending",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -3703,9 +5053,10 @@ skills["SupportUnleashPlayer"] = { description = "Supports Spells you cast yourself, making their effect reoccur when cast. Cannot support Channelling Skills or Skills with a Cooldown.", color = 3, support = true, - requireSkillTypes = { SkillType.CanRapidFire, SkillType.Spell, SkillType.AND, }, + requireSkillTypes = { SkillType.Unleashable, SkillType.Spell, SkillType.AND, }, addSkillTypes = { SkillType.HasSeals, SkillType.SupportedByUnleash, }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, SkillType.Cooldown, SkillType.Attack, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, SkillType.Cooldown, SkillType.Attack, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Unleash",}, levels = { [1] = { PvPDamageMultiplier = -40, levelRequirement = 0, manaMultiplier = 50, }, }, @@ -3744,19 +5095,21 @@ skills["SupportUnleashPlayer"] = { } } skills["SupportUpwellingPlayer"] = { - name = "Upwelling", + name = "Upwelling I", description = "Supports Persistent Buff Skills, causing your Minions to deal increased Damage while you are not on full Mana while the Supported Skill is active.", color = 3, support = true, requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Upwellling",}, + isLineage = true, levels = { [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Upwelling", + label = "Upwelling I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -3772,6 +5125,68 @@ skills["SupportUpwellingPlayer"] = { }, } } +skills["SupportUpwellingPlayerTwo"] = { + name = "Upwelling II", + description = "Supports Persistent Buff Skills, causing your Minions to deal increased Damage while you are not on full Mana while the Supported Skill is active.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Upwellling",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Upwelling II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportVarashtasBlessingPlayer"] = { + name = "Varashta's Blessing", + description = "Supports any Skill that can deal Damage, causing it to deal more Damage per different Command Skill used.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.DegenOnlySpellDamage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "VarashtasBlessing",}, + isLineage = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Varashta's Blessing", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds", 10 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportVerglasPlayer"] = { name = "Verglas", description = "Supports Skills you use yourself which can Hit Enemies. Supported Skills Gain a percentage of their Damage as Cold Damage when you destroy Ice Crystals.", @@ -3779,7 +5194,8 @@ skills["SupportVerglasPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.DegenOnlySpellDamage, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.DegenOnlySpellDamage, SkillType.Triggered, }, + gemFamily = { "Verglas",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, @@ -3802,6 +5218,37 @@ skills["SupportVerglasPlayer"] = { }, } } +skills["SupportVilentasPropulsionPlayer"] = { + name = "Vilenta's Propulsion", + description = "Supports Spell Skills that fire Projectiles, causing increases and reductions to cast speed to also apply to Projectile speed.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Projectile, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.FixedSpeedProjectile, }, + gemFamily = { "ProjectileSpeed",}, + isLineage = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Vilenta's Propulsion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportVolatilePowerPlayer"] = { name = "Volatile Power", description = "Supports Skills which you use yourself. On using Supported Skills while they are Empowered, you gain Volatility.", @@ -3809,7 +5256,8 @@ skills["SupportVolatilePowerPlayer"] = { support = true, requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.Triggered, SkillType.Meta, SkillType.Persistent, }, + excludeSkillTypes = { SkillType.UsedByTotem, SkillType.Triggered, SkillType.Meta, SkillType.Persistent, SkillType.Triggered, }, + gemFamily = { "VolatilePower",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, @@ -3839,7 +5287,9 @@ skills["SupportVolatilityPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + gemFamily = { "Volatility",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -3869,6 +5319,7 @@ skills["SupportWildfirePlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Area, }, excludeSkillTypes = { }, + gemFamily = { "Wildfire",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, [2] = { manaMultiplier = 20, levelRequirement = 3, }, @@ -3930,19 +5381,20 @@ skills["SupportWildfirePlayer"] = { } } skills["SupportWildshardsPlayer"] = { - name = "Wildshards", - description = "Supports Spell Skills that fire Projectiles. Supported Skills have a chance to fire many additional Projectiles in a circle.", + name = "Wildshards I", + description = "Supports Projectile Spells. Supported Spells have a chance to fire many additional Projectiles in a circle.", color = 3, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Projectile, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, }, + gemFamily = { "AdditionalProjectiles",}, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Wildshards", + label = "Wildshards I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -3958,6 +5410,36 @@ skills["SupportWildshardsPlayer"] = { }, } } +skills["SupportWildshardsPlayerTwo"] = { + name = "Wildshards II", + description = "Supports Projectile Spells. Supported Spells have a chance to fire many additional Projectiles in a circle.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Projectile, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.ProjectilesNumberModifiersNotApplied, }, + gemFamily = { "AdditionalProjectiles",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Wildshards II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova", 25 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportWitheringTouchPlayer"] = { name = "Withering Touch", description = "Supports any skill that Hits enemies, giving it a chance to Wither enemies on Hit.", @@ -3966,6 +5448,7 @@ skills["SupportWitheringTouchPlayer"] = { requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Duration, }, excludeSkillTypes = { }, + gemFamily = { "WitheringTouch",}, levels = { [1] = { levelRequirement = 0, }, }, @@ -3995,27 +5478,92 @@ skills["SupportWitheringTouchPlayer"] = { }, } } +skills["SupportZarokhsRefrainPlayer"] = { + name = "Zarokh's Refrain", + description = "Supports Spells that affect an area around you or a target location. Supported Spells echo twice, causing their effects to happen again after a short delay, but Supported Skills are given a short Cooldown. Cannot support Channelling skills, Remote skills, skills which already have a Cooldown, or skills which are Triggered.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Cascadable, }, + addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByZarokh, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByZarokh, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Channel, SkillType.Attack, SkillType.Triggered, }, + gemFamily = { "SpellEcho",}, + isLineage = true, + levels = { + [1] = { storedUses = 1, cooldown = 5, levelRequirement = 0, manaMultiplier = 30, }, + }, + statSets = { + [1] = { + label = "Zarokh's Refrain", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_spell_echo_number_of_echo_cascades", 2 }, + { "support_spell_echo_cascade_delay_ms", 500 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportZenithPlayer"] = { - name = "Zenith", - description = "Supports Spell Skills. Supported Skills deal more damage while you are above 90% of your Maximum Mana. Does not Support Skills used by Minions.", + name = "Zenith I", + description = "Supports Spell Skills. Supported Skills deal more damage while you are above 90% of your Maximum Mana. Does not modify Skills used by Minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Damage, SkillType.AND, SkillType.DegenOnlySpellDamage, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Zenith",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Zenith I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_spell_damage_+%_final_while_above_90%_maximum_mana", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportZenithPlayerTwo"] = { + name = "Zenith II", + description = "Supports Spell Skills. Supported Skills deal more damage while you are above 90% of your Maximum Mana, and Recoup a portion of Skill costs as Mana. Does not modify Skills used by Minions.", color = 3, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Damage, SkillType.AND, SkillType.DegenOnlySpellDamage, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Zenith",}, ignoreMinionTypes = true, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Zenith", + label = "Zenith II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { { "support_spell_damage_+%_final_while_above_90%_maximum_mana", 30 }, + { "recoup_%_of_spell_cost_as_mana_on_cast", 25 }, }, stats = { }, diff --git a/src/Data/Skills/sup_str.lua b/src/Data/Skills/sup_str.lua index cf7d5fa32e..2956037cee 100644 --- a/src/Data/Skills/sup_str.lua +++ b/src/Data/Skills/sup_str.lua @@ -6,19 +6,21 @@ -- local skills, mod, flag, skill = ... skills["SupportAftershockChancePlayer"] = { - name = "Aftershock", + name = "Aftershock I", description = "Supports Slams you use yourself, giving them a chance to create an Aftershock.", color = 1, support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "Aftershock",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Aftershock", + label = "Aftershock I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -34,28 +36,28 @@ skills["SupportAftershockChancePlayer"] = { }, } } -skills["SupportAncestralAidPlayer"] = { - name = "Ancestral Aid", - description = "Supports Strikes you use yourself. Supported Skills cannot be used until you have Blocked a certain number of Hits, but will be Ancestrally Boosted when used. After use, this Blocked Hit counter will reset. Cannot Support Channelled Skills or Skills which already have a Condition for use.", +skills["SupportAftershockChancePlayerTwo"] = { + name = "Aftershock II", + description = "Supports Slams you use yourself, giving them a chance to create an Aftershock.", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, - addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, }, - excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, SkillType.NOT, SkillType.AND, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "Aftershock",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ancestral Aid", + label = "Aftershock II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "ancestral_aid_X_spirit_strikes_on_reaching_block_count", 2 }, - { "ancestral_aid_required_count_of_recent_blocks", 3 }, + { "slam_aftershock_chance_%", 35 }, }, stats = { }, @@ -65,28 +67,29 @@ skills["SupportAncestralAidPlayer"] = { }, } } -skills["SupportAncestralCallPlayer"] = { - name = "Ancestral Call", - description = "Supports Strikes you use yourself, providing a powerful Ancestral Boost every few seconds. Cannot Support Channelled Skills.", +skills["SupportAftershockChancePlayerThree"] = { + name = "Aftershock III", + description = "Supports Slam Skills. Supported Skills a chance to create an Aftershock as well as increased chance to cause Aftershocks the longer their Attack time", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, + requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "Aftershock",}, ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ancestral Call", + label = "Aftershock III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_ancestral_call_X_spirit_strikes", 2 }, - { "ancestral_call_spirit_strike_interval_ms", 6000 }, + { "chance_to_aftershock_+%_per_250_ms_attack_time", 15 }, + { "slam_aftershock_chance_%", 15 }, }, stats = { }, @@ -96,26 +99,28 @@ skills["SupportAncestralCallPlayer"] = { }, } } -skills["SupportAncestralUrgencyPlayer"] = { - name = "Ancestral Urgency", - description = "Supports Skills which place Totems, causing those skills to place Totems much more quickly.", +skills["SupportAmanamusTithePlayer"] = { + name = "Amanamu's Tithe", + description = "Supports Persistent Minion Skills, granting a chance when Supported Minions die for you to gain an Abyssal Monster Modifier.", color = 1, support = true, - requireSkillTypes = { SkillType.SummonsTotem, }, + requireSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "AmanamusTithe",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ancestral Urgency", + label = "Amanamu's Tithe", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "summon_totem_cast_speed_+%", 80 }, + { "chance_%_to_gain_abyssal_modifier_on_minion_death", 50 }, }, stats = { }, @@ -125,57 +130,63 @@ skills["SupportAncestralUrgencyPlayer"] = { }, } } -skills["SupportArmourExplosionPlayer"] = { - name = "Armour Explosion", - description = "Supports Attacks, causing them to trigger a Fiery explosion when they Fully Break an enemy's Armour.", +skills["SupportAncestralAidPlayer"] = { + name = "Ancestral Aid", + description = "Supports Strikes you use yourself. Supported Skills cannot be used until you have Blocked a certain number of Hits, but will be Ancestrally Boosted when used. After use, this Blocked Hit counter will reset. Cannot Support Channelled Skills or Skills which already have a Condition for use.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, SkillType.NOT, SkillType.AND, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "AncestralCall",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Support", + label = "Ancestral Aid", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "ancestral_aid_required_count_of_recent_blocks", 3 }, + }, stats = { - "support_armour_explosion", + "strikes_are_ancestrally_boosted", }, levels = { [1] = { actorLevel = 1, }, }, }, } -}skills["ArmourExplosionPlayer"] = { - name = "", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.NoAttackOrCastTime] = true, }, - castTime = 1, - qualityStats = { - }, +} +skills["SupportAncestralCallPlayer"] = { + name = "Ancestral Call I", + description = "Supports Strikes you use yourself, providing a powerful Ancestral Boost every few seconds. Cannot Support Channelled Skills and does not modify Skills used by Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "AncestralCall",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Explosion", + label = "Ancestral Call I", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "armour_explosion", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "active_skill_base_area_of_effect_radius", 14 }, - { "trigger_on_armour_break_%_chance", 100 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + { "ancestral_call_spirit_strike_interval_ms", 5000 }, }, stats = { - "is_area_damage", - "cannot_break_armour", + "support_ancestral_call_strike_is_ancestral_boosted", }, levels = { [1] = { actorLevel = 1, }, @@ -183,33 +194,31 @@ skills["SupportArmourExplosionPlayer"] = { }, } } -skills["SupportArmsLengthPlayer"] = { - name = "Arms Length", - description = "Supports Skills which Hit Enemies, causing Knockback from those Hits to be significantly more effective.", +skills["SupportAncestralCallPlayerTwo"] = { + name = "Ancestral Call II", + description = "Supports Strikes you use yourself, providing a powerful Ancestral Boost every few seconds. Cannot Support Channelled Skills and does not modify Skills used by Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "AncestralCall",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Arms Length", + label = "Ancestral Call II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_arms_length_knockback_distance_+%_final"] = { - mod("EnemyKnockbackDistance", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_arms_length_knockback_distance_+%_final", 40 }, + { "ancestral_call_spirit_strike_interval_ms", 3000 }, }, stats = { + "support_ancestral_call_strike_is_ancestral_boosted", }, levels = { [1] = { actorLevel = 1, }, @@ -217,26 +226,32 @@ skills["SupportArmsLengthPlayer"] = { }, } } -skills["SupportAutoReloadPlayer"] = { - name = "Auto Reload", - description = "Supports Crossbow Ammunition Skills, causing them to automatically reload when they Heavy Stun an enemy.", +skills["SupportAncestralCallPlayerThree"] = { + name = "Ancestral Call III", + description = "Supports Strikes you use yourself, providing a powerful Ancestral Boost every second, at the cost of a damage penalty. Cannot Support Channelled Skills and does not modify Skills used by Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "AncestralCall",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Auto Reload", + label = "Ancestral Call III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "ancestral_call_spirit_strike_interval_ms", 1000 }, + { "support_ancestral_call_damage_+%_final", -30 }, + }, stats = { - "crossbow_reload_on_heavy_stun", + "support_ancestral_call_strike_is_ancestral_boosted", }, levels = { [1] = { actorLevel = 1, }, @@ -244,26 +259,27 @@ skills["SupportAutoReloadPlayer"] = { }, } } -skills["SupportBarbsPlayer"] = { - name = "Barbs", - description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit after you've Retaliated with Thorns Damage.", +skills["SupportArmourBreakPlayer"] = { + name = "Armour Break I", + description = "Supports Skills that Hit Enemies, causing those Hits to Break Armour based on a portion of Physical Damage dealt.", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ArmourBreak",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Barbs", + label = "Armour Break I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger", 4 }, + { "armour_break_physical_damage_%_dealt_as_armour_break", 15 }, }, stats = { }, @@ -273,49 +289,30 @@ skills["SupportBarbsPlayer"] = { }, } } -skills["SupportBattershoutPlayer"] = { - name = "Battershout", - description = "Supports Warcry Skills. Supported Skills Consume Fully Broken Armour to trigger Physical Damage explosions on Enemies within their range but cannot themselves Break Armour. ", +skills["SupportArmourBreakPlayerTwo"] = { + name = "Armour Break II", + description = "Supports Skills that Hit Enemies, causing those Hits to Break Armour based on a portion of Physical Damage dealt. On Fully Breaking Armour with Supported Skills, you have a chance to gain an Endurance Charge.", color = 1, support = true, - requireSkillTypes = { SkillType.Warcry, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ArmourBreak",}, levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Battershout", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - baseFlags = { - }, - stats = { - "cannot_break_armour", - "consume_armour_break_to_trigger_battershout_explosion", - }, - levels = { - [1] = { actorLevel = 1, }, - }, - }, - [2] = { - label = "Battershout", + label = "Armour Break II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_battershout_physical_damage_equal_to_%_of_broken_armour", 20 }, - { "active_skill_base_area_of_effect_radius", 20 }, - { "triggered_by_battershout_support_%", 100 }, - { "additional_base_critical_strike_chance", 500 }, + { "armour_break_physical_damage_%_dealt_as_armour_break", 15 }, + { "chance_to_gain_endurance_charge_on_armour_break_%", 15 }, }, stats = { - "cannot_break_armour", - "consume_armour_break_to_trigger_battershout_explosion", - "is_area_damage", - "is_warcry", }, levels = { [1] = { actorLevel = 1, }, @@ -323,26 +320,28 @@ skills["SupportBattershoutPlayer"] = { }, } } -skills["SupportBeheadPlayer"] = { - name = "Behead", - description = "Supports Strike skills, causing them to steal Modifiers from Rare monsters they kill.", +skills["SupportArmourBreakPlayerThree"] = { + name = "Armour Break III", + description = "Supports Skills that Hit Enemies, causing those Hits to Break Armour based on a portion of Physical Damage dealt. On Fully Breaking Armour with Supported Skills, you gain an Endurance Charge.", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ArmourBreak",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Behead", - incrementalEffectiveness = 0.092720001935959, + label = "Armour Break III", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_executioner_gain_one_rare_monster_mod_on_kill_ms", 20000 }, + { "armour_break_physical_damage_%_dealt_as_armour_break", 20 }, + { "chance_to_gain_endurance_charge_on_armour_break_%", 20 }, }, stats = { }, @@ -352,34 +351,34 @@ skills["SupportBeheadPlayer"] = { }, } } -skills["SupportBloodlustPlayer"] = { - name = "Bloodlust", - description = "Supports Melee Attacks, causing them to deal more damage against Bleeding enemies, but preventing them from inflicting Bleeding.", +skills["SupportArmourDemolisherPlayer"] = { + name = "Armour Demolisher I", + description = "Supports any skill, causing Armour Break it inflicts to be stronger.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, }, + requireSkillTypes = { SkillType.Spell, SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, SkillType.NonDamageArmourBreak, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ArmourDemolisher",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Bloodlust", - incrementalEffectiveness = 0.092720001935959, + label = "Armour Demolisher I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"] = { - mod("PhysicalDamage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }), + ["support_increased_armour_break_armour_break_amount_+%_final"] = { + mod("ArmourBreakEffect", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies", 30 }, + { "support_increased_armour_break_armour_break_amount_+%_final", 50 }, }, stats = { - "cannot_cause_bleeding", }, levels = { [1] = { actorLevel = 1, }, @@ -387,30 +386,34 @@ skills["SupportBloodlustPlayer"] = { }, } } -skills["SupportKnockbackPlayer"] = { - name = "Bludgeon", - description = "Supports any skill that Hits enemies, causing it to Knock Back enemies.", +skills["SupportArmourDemolisherPlayerTwo"] = { + name = "Armour Demolisher II", + description = "Supports any skill, causing Armour Break it inflicts to be stronger.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Spell, SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, SkillType.NonDamageArmourBreak, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ArmourDemolisher",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Bludgeon", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Armour Demolisher II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_increased_armour_break_armour_break_amount_+%_final"] = { + mod("ArmourBreakEffect", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "generic_knockback_distance_limit", 30 }, + { "support_increased_armour_break_armour_break_amount_+%_final", 70 }, }, stats = { - "global_knockback", }, levels = { [1] = { actorLevel = 1, }, @@ -418,28 +421,27 @@ skills["SupportKnockbackPlayer"] = { }, } } -skills["SupportEnduranceChargeOnArmourBreak"] = { - name = "Break Endurance", - description = "Supports any skill that Hits enemies, giving it a chance to gain an Endurance Charge when it Fully Breaks an enemy's Armour.", +skills["SupportArmourExplosionPlayer"] = { + name = "Armour Explosion", + description = "Supports Attacks, causing them to trigger a Fiery explosion when they Fully Break an enemy's Armour.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ArmourExplosion",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Break Endurance", + label = "Support", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "chance_to_gain_endurance_charge_on_armour_break_%", 40 }, - }, stats = { + "support_armour_explosion", }, levels = { [1] = { actorLevel = 1, }, @@ -447,34 +449,34 @@ skills["SupportEnduranceChargeOnArmourBreak"] = { }, } } -skills["SupportBrinkPlayer"] = { - name = "Brink", - description = "Supports Melee Attack Skills. Supported Skills deal more Damage against Heavily Stunned Enemies, but cannot themselves Stun.", - color = 1, - support = true, - requireSkillTypes = { SkillType.Melee, }, - addSkillTypes = { }, - excludeSkillTypes = { }, +skills["ArmourExplosionPlayer"] = { + name = "Armour Explosion", + hidden = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 1, + qualityStats = { + }, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Brink", + label = "Explosion", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_brink_damage_+%_final_vs_heavy_stunned_target"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "HeavyStunned" }), - }, - }, + statDescriptionScope = "armour_explosion", baseFlags = { + attack = true, + area = true, }, constantStats = { - { "support_brink_damage_+%_final_vs_heavy_stunned_target", 20 }, + { "active_skill_base_area_of_effect_radius", 14 }, + { "trigger_on_armour_break_%_chance", 100 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + { "active_skill_has_%_standard_scaling_attack_damage", 30 }, }, stats = { - "cannot_cause_stun_but_allow_stun_buildup", + "is_area_damage", + "cannot_break_armour", }, levels = { [1] = { actorLevel = 1, }, @@ -482,35 +484,34 @@ skills["SupportBrinkPlayer"] = { }, } } -skills["SupportBrutalityPlayer"] = { - name = "Brutality", - description = "Supports any skill that deals damage, boosting its Physical damage at the expense of all other Damage Types.", +skills["SupportArmsLengthPlayer"] = { + name = "Arms Length", + description = "Supports Skills which Hit Enemies, causing Knockback from those Hits to be significantly more effective.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + gemFamily = { "ArmsLength",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Brutality", - incrementalEffectiveness = 0.092720001935959, + label = "Arms Length", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_brutality_physical_damage_+%_final"] = { - mod("PhysicalDamage", "MORE", nil), + ["support_arms_length_knockback_distance_+%_final"] = { + mod("EnemyKnockbackDistance", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_brutality_physical_damage_+%_final", 25 }, + { "support_arms_length_knockback_distance_+%_final", 40 }, }, stats = { - "deal_no_elemental_damage", - "base_deal_no_chaos_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -518,31 +519,30 @@ skills["SupportBrutalityPlayer"] = { }, } } -skills["SupportCannibalismPlayer"] = { - name = "Cannibalism", - description = "Supports Persistent Buff Skills, causing you to recover Life on kill while the Skill is active.", +skills["SupportAtaluiBloodlettingPlayer"] = { + name = "Atalui's Bloodletting", + description = "Supports any Skill, turning a portion of its Mana cost into a Life cost. Does not support Skills which reserve Spirit. Supported Skills Gain a portion of their Life cost as extra Physical Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Blessing, SkillType.Persistent, }, + gemFamily = { "Lifetap",}, + isLineage = true, levels = { - [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + [1] = { manaMultiplier = 50, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Cannibalism", + label = "Atalui's Bloodletting", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_cannibalism_recover_%_maximum_life_on_kill"] = { - mod("LifeOnKill", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Cannibalism" }), - }, - }, baseFlags = { }, constantStats = { - { "support_cannibalism_recover_%_maximum_life_on_kill", 2 }, + { "blood_magic_skill_life_cost_+%_final", 0 }, + { "base_skill_cost_life_instead_of_mana_%", 100 }, + { "gain_%_of_damage_as_physical_per_10_life_cost", 2 }, }, stats = { }, @@ -552,35 +552,3663 @@ skills["SupportCannibalismPlayer"] = { }, } } -skills["SupportClashPlayer"] = { - name = "Clash", - description = "Supports Melee Attack Skills. Supported Skills deal more Damage while you have a lower percentage of your Life remaining than the target struck, but less Damage when the reverse is true.", +skills["SupportAutoReloadPlayer"] = { + name = "Auto Reload", + description = "Supports Crossbow Ammunition Skills, causing them to automatically reload when they Heavy Stun an enemy.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { }, + gemFamily = { "AutoReload",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Clash", + label = "Auto Reload", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "crossbow_reload_on_heavy_stun", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBarbsPlayer"] = { + name = "Barbs I", + description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit after you've Retaliated with Thorns Damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Barbs",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Barbs I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger", 4 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBarbsPlayerTwo"] = { + name = "Barbs II", + description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit after you've Retaliated with Thorns Damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Barbs",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Barbs II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger", 6 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBarbsPlayerThree"] = { + name = "Barbs III", + description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit twice after you've Retaliated with Thorns Damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Barbs",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Barbs III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBattershoutPlayer"] = { + name = "Battershout", + description = "Supports Warcry Skills. Supported Skills Consume Fully Broken Armour to trigger Physical Damage explosions on Enemies within their range but cannot themselves Break Armour. ", + color = 1, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Battershout",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Battershout", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "cannot_break_armour", + "consume_armour_break_to_trigger_battershout_explosion", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredBattershoutExplosionPlayer"] = { + name = "Battershout", + hidden = true, + description = "Deal Physical Area Damage based off of the Broken Armour of the target which this explosion was Triggered from.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.SkillGrantedBySupport] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Battershout", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_battershout_explosion", + baseFlags = { + }, + constantStats = { + { "support_battershout_physical_damage_equal_to_%_of_broken_armour", 40 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "triggered_by_battershout_support_%", 100 }, + { "additional_base_critical_strike_chance", 500 }, + { "active_skill_damage_+%_final_vs_unique_enemies", 50 }, + }, + stats = { + "is_area_damage", + "cannot_break_armour", + "is_warcry", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBeheadPlayer"] = { + name = "Behead I", + description = "Supports Strike skills, causing them to steal a Modifier from Rare monsters they kill.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Behead",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Behead I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_executioner_gain_one_rare_monster_mod_on_kill_ms", 20000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBeheadPlayerTwo"] = { + name = "Behead II", + description = "Supports Strike skills, causing them to steal two Modifiers from Rare monsters they kill.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Behead",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Behead II", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_executioner_gain_two_rare_monster_mod_on_kill_ms", 20000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBleedPlayer"] = { + name = "Bleed I", + description = "Supports any skill that Hits enemies, giving it a chance to inflict Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bleed",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bleed I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_chance_to_inflict_bleeding_%", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBleedPlayerTwo"] = { + name = "Bleed II", + description = "Supports any skill that Hits enemies, giving it a chance to inflict Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bleed",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bleed II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_chance_to_inflict_bleeding_%", 75 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBleedPlayerThree"] = { + name = "Bleed III", + description = "Supports any skill that Hits enemies, causing it to inflict Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bleed",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bleed III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_chance_to_inflict_bleeding_%", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBleedPlayerFour"] = { + name = "Bleed IV", + description = "Supports any skill that Hits enemies, causing it to deal more Melee Physical Damage to Bleeding Enemies, but be unable to inflict Bleeding itself. Supported Skills also inflict Incision on Hit.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bleed",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bleed IV", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "apply_X_incision_on_hit", 1 }, + { "support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies", 30 }, + }, + stats = { + "cannot_cause_bleeding", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBloodlustPlayer"] = { + name = "Bloodlust", + description = "Supports Melee Attacks, causing them to deal more damage against Bleeding enemies, but preventing them from inflicting Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Bloodlust",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Bloodlust", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"] = { + mod("PhysicalDamage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies", 30 }, + }, + stats = { + "cannot_cause_bleeding", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBranchingFissuresPlayer"] = { + name = "Branching Fissures I", + description = "Supports Melee Attacks which create Fissures in the ground, causing them to create additional secondary Fissures which branch off from the primary fissure, with lowered area of effect and Damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesFissure, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Fissures",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Branching Fissures I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "number_of_branching_fissures", 2 }, + { "branching_fissure_area_of_effect_+%_final", -35 }, + { "branching_fissure_damage_+%_final", -40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBranchingFissuresPlayerTwo"] = { + name = "Branching Fissures II", + description = "Supports Melee Attacks which create Fissures in the ground, causing them to create additional secondary Fissures which branch off from the primary fissure, with lowered area of effect and Damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesFissure, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Fissures",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Branching Fissures II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "number_of_branching_fissures", 2 }, + { "branching_fissure_area_of_effect_+%_final", -35 }, + { "branching_fissure_damage_+%_final", -30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEnduranceChargeOnArmourBreak"] = { + name = "Break Endurance", + description = "Supports any skill that Hits enemies, giving it a chance to gain an Endurance Charge when it Fully Breaks an enemy's Armour.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BreakEndurance",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Break Endurance", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_to_gain_endurance_charge_on_armour_break_%", 40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrinkPlayer"] = { + name = "Brink I", + description = "Supports Melee Attack Skills. Supported Skills build up Heavy Stun more quickly, but cannot themselves Heavy Stun.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Brink",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brink I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_brink_hit_damage_stun_multiplier_+%_final", 30 }, + }, + stats = { + "cannot_cause_stun_but_allow_stun_buildup", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrinkPlayerTwo"] = { + name = "Brink II", + description = "Supports Melee Attack Skills. Supported Skills build up Stun more quickly, but cannot themselves Stun.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Brink",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brink II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_brink_hit_damage_stun_multiplier_+%_final", 50 }, + }, + stats = { + "cannot_cause_stun_but_allow_stun_buildup", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrutalityPlayer"] = { + name = "Brutality I", + description = "Supports any skill that deals damage, boosting its Physical damage at the expense of all other Damage Types.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Brutality",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brutality I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_brutality_physical_damage_+%_final"] = { + mod("PhysicalDamage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_brutality_physical_damage_+%_final", 25 }, + }, + stats = { + "deal_no_elemental_damage", + "base_deal_no_chaos_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrutalityPlayerTwo"] = { + name = "Brutality II", + description = "Supports any skill that deals damage, boosting its Physical damage at the expense of all other Damage Types.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Brutality",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brutality II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_brutality_physical_damage_+%_final"] = { + mod("PhysicalDamage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_brutality_physical_damage_+%_final", 30 }, + }, + stats = { + "deal_no_elemental_damage", + "base_deal_no_chaos_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrutalityPlayerThree"] = { + name = "Brutality III", + description = "Supports any skill that deals damage, boosting its Physical damage at the expense of all other Damage Types, as well as giving Hits from that skill a chance to ignore Physical Damage reduction.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Brutality",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brutality III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_brutality_physical_damage_+%_final"] = { + mod("PhysicalDamage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_brutality_physical_damage_+%_final", 30 }, + { "hits_ignore_enemy_monster_physical_damage_reduction_%_chance", 20 }, + }, + stats = { + "deal_no_elemental_damage", + "base_deal_no_chaos_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBrutusBrainPlayer"] = { + name = "Brutus' Brain", + description = "Supports skills which create Minions, causing those Minions to be unable to deal or take Damage. Cannot support skills which create undamageable Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, }, + addSkillTypes = { SkillType.MinionsAreUndamagable, }, + excludeSkillTypes = { }, + gemFamily = { "MeatShield",}, + isLineage = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Brutus' Brain", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_minion_defensive_stance_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + ["support_meat_shield_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_minion_defensive_stance_minion_damage_taken_+%_final", -100 }, + { "support_meat_shield_minion_damage_+%_final", -100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCannibalismPlayer"] = { + name = "Cannibalism I", + description = "Supports Persistent Buff Skills, causing you to recover Life on kill while the Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Cannibalism",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cannibalism I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_cannibalism_recover_%_maximum_life_on_kill"] = { + mod("LifeOnKill", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Cannibalism" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_cannibalism_recover_%_maximum_life_on_kill", 2 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCannibalismPlayerTwo"] = { + name = "Cannibalism II", + description = "Supports Persistent Buff Skills, causing you to recover Life on kill while the Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Cannibalism",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cannibalism II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_cannibalism_recover_%_maximum_life_on_kill", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportClashPlayer"] = { + name = "Clash", + description = "Supports Melee Attack Skills. Supported Skills deal more Damage while you have a lower percentage of your Life remaining than the target struck, but less Damage when the reverse is true.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + gemFamily = { "Clash",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Clash", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_melee_damage_+%_final_vs_higher_percent_life_target"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "EnemyHigherLifePercent" }), + }, + ["support_melee_damage_+%_final_vs_lower_percent_life_target"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "EnemyHigherLifePercent", neg = true }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_melee_damage_+%_final_vs_higher_percent_life_target", 40 }, + { "support_melee_damage_+%_final_vs_lower_percent_life_target", -20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["CompressedDurationSupportPlayer"] = { + name = "Compressed Duration I", + description = "Supports any skill that has a duration making that duration shorter.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Duration, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CompressedDuration",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Compressed Duration I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_reduced_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_reduced_duration_skill_effect_duration_+%_final", -30 }, + { "support_reduced_duration_damage_+%_final", 0 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["CompressedDurationSupportPlayerTwo"] = { + name = "Compressed Duration II", + description = "Supports any skill that has a duration making that duration shorter.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Duration, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CompressedDuration",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Compressed Duration II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_reduced_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_reduced_duration_skill_effect_duration_+%_final", -35 }, + { "support_reduced_duration_damage_+%_final", 0 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportConcoctPlayer"] = { + name = "Concoct I", + description = "Supports Skills you use yourself which Damage enemies with Hits. Supported Skills consume a percentage of your maximum Life Flask charges, inflicting more powerful Bleeding based on Life Flask charges consumed.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + gemFamily = { "Concoct",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Concoct I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["consume_%_of_maximum_life_flask_charges_on_skill_use"] = { + mod("Multiplier:LifeFlaskMaxChargesPercent", "BASE", nil), + }, + ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Multiplier", var = "LifeFlaskChargeConsumed"}), + }, + }, + baseFlags = { + }, + baseMods = { + mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask1MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }), + mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask2MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }), + }, + constantStats = { + { "consume_%_of_maximum_life_flask_charges_on_skill_use", 20 }, + { "support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportConcoctPlayerTwo"] = { + name = "Concoct II", + description = "Supports Skills you use yourself which Damage enemies with Hits. Supported Skills consume a percentage of your maximum Life Flask charges, inflicting more powerful Bleeding based on Life Flask charges consumed.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + gemFamily = { "Concoct",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Concoct II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["consume_%_of_maximum_life_flask_charges_on_skill_use"] = { + mod("Multiplier:LifeFlaskMaxChargesPercent", "BASE", nil), + }, + ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Multiplier", var = "LifeFlaskChargeConsumed"}), + }, + }, + baseFlags = { + }, + baseMods = { + mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask1MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }), + mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask2MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }), + }, + constantStats = { + { "consume_%_of_maximum_life_flask_charges_on_skill_use", 30 }, + { "support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCoolheadedPlayer"] = { + name = "Cool Headed", + description = "Supports Persistent Buff Skills, causing Ignite applied to you to last for a shorter duration while the Supported Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "CoolHeaded",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Cool Headed", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"] = { + mod("SelfIgniteDuration", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Cool Headed" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final", -50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCorruptingCryPlayer"] = { + name = "Corrupting Cry I", + description = "Supports Warcries, causing them to inflict Corrupted Blood on enemies in their area of effect.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { SkillType.DamageOverTime, SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "CorruptingCry",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Corrupting Cry I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { + skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + div = 60, + }, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, + ["support_corrupting_cry_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil, 0, KeywordFlag.Warcry) + }, + ["support_corrupting_cry_corrupted_blood_duration_ms"] = { + skill("durationSecondary", nil), + div = 1000, + }, + ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + -- Display only + }, + }, + baseFlags = { + }, + baseMods = { + skill("debuff", true), + flag("dotIsCorruptingBlood"), + mod("Multiplier:CorruptingCryMaxStages", "BASE", 10), + mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst"}), + }, + constantStats = { + { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 1 }, + { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, + { "support_corrupting_cry_area_of_effect_+%_final", -30 }, + { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCorruptingCryPlayerTwo"] = { + name = "Corrupting Cry II", + description = "Supports Warcries, causing them to inflict Corrupted Blood on enemies in their area of effect.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { SkillType.DamageOverTime, SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "CorruptingCry",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Corrupting Cry II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { + skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + div = 60, + }, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, + ["support_corrupting_cry_corrupted_blood_duration_ms"] = { + skill("durationSecondary", nil), + div = 1000, + }, + ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + -- Display only + }, + }, + baseFlags = { + }, + baseMods = { + skill("debuff", true), + flag("dotIsCorruptingBlood"), + mod("Multiplier:CorruptingCryMaxStages", "BASE", 10), + mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst"}), + }, + constantStats = { + { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 1 }, + { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, + { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportCraterPlayer"] = { + name = "Crater", + description = "Supports Melee Skills that leap into the air, causing them to create Fissures when you land. Cannot Support Totem Skills, and does not modify Skills used by Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Melee, SkillType.Jumping, SkillType.AND, }, + addSkillTypes = { SkillType.CreatesFissure, }, + excludeSkillTypes = { SkillType.UsedByTotem, SkillType.SummonsTotem, }, + gemFamily = { "Crater",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Crater", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_fissure_on_landing_create_X_fissures_on_impact", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredCraterPlayer"] = { + name = "Crater", + hidden = true, + description = "Creates multiple Fissures when landing with Supported Skill.", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.CreatesFissure] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.Limit] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fissures", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_fissure_on_landing", + baseFlags = { + attack = true, + area = true, + melee = true, + duration = true, + }, + constantStats = { + { "triggered_by_fissure_on_landing_support_%", 100 }, + { "support_fissure_on_landing_maximum_fissure_count", 9 }, + { "active_skill_has_%_standard_scaling_attack_damage", 35 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "base_skill_effect_duration", 6000 }, + }, + stats = { + "is_area_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDaressosPassionPlayer"] = { + name = "Daresso's Passion", + description = "Supports Banner Skills, causing them to require significantly less Glory to use.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Banner, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DaressoLineage",}, + isLineage = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Daresso's Passion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_glory_required_+%_final", -50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDauntlessPlayer"] = { + name = "Dauntless", + description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills cannot be used unless you have been stationary for a certain duration, but deal increasingly more damage the longer you are stationary. Cannot support Skills which have a reservation, are Triggered, have a cooldown or have another usage Condition.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, SkillType.NOT, SkillType.AND, SkillType.DegenOnlySpellDamage, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Cooldown, SkillType.Triggered, }, + gemFamily = { "Dauntless",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Dauntless", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_unmoving_damage_+%_final_per_250_ms_stationary"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "Stationary" }, { type = "Multiplier", var = "StationarySeconds", div = 0.25, limitVar = "DauntlessMaxDamage", limitTotal = true }), + }, + ["support_unmoving_damage_multiplier_cap"] = { + mod("Multiplier:DauntlessMaxDamage", "BASE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "skill_cannot_be_used_unless_stationary_for_X_ms", 1500 }, + { "support_unmoving_damage_+%_final_per_250_ms_stationary", 3 }, + { "support_unmoving_damage_multiplier_cap", 45 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDazingCryPlayer"] = { + name = "Dazing Cry", + description = "Supports Warcries, causing them to Daze Enemies on use.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DazingCry",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Dazing Cry", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_dazed_cry_duration_ms", 4000 }, + }, + stats = { + "support_apply_daze_on_warcry", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDeepCutsPlayer"] = { + name = "Deep Cuts I", + description = "Supports any skill that Hits enemies, causing it to deal less damage but inflict more potent Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DeepCuts",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Deep Cuts I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_deep_cuts_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_deep_cuts_bleeding_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_deep_cuts_hit_damage_+%_final", -25 }, + { "support_deep_cuts_bleeding_effect_+%_final", 75 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDeepCutsPlayerTwo"] = { + name = "Deep Cuts II", + description = "Supports any skill that Hits enemies, causing it to deal less damage but inflict more potent Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DeepCuts",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Deep Cuts II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_deep_cuts_hit_damage_+%_final", -30 }, + { "support_deep_cuts_bleeding_effect_+%_final", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDefyPlayer"] = { + name = "Defy I", + description = "Supports Attack Skills you use yourself. Hit Damage from Supported Skills is Lucky if you are Surrounded.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "Defy",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Defy I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "attack_damage_is_lucky_if_surrounded", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDefyPlayerTwo"] = { + name = "Defy II", + description = "Supports Attack Skills you use yourself. Hit Damage from Supported Skills is Lucky and Insufficient Mana doesn't prevent Supported Skills from being used if you are Surrounded.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "Defy",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Defy II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "attack_damage_is_lucky_if_surrounded", + "melee_attacks_usable_without_mana_cost_while_surrounded", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDesperationPlayer"] = { + name = "Desperation", + description = "Supports Melee Attack Skills you use yourself. Insufficient Mana doesn't prevent Supported Skills from being used while Surrounded.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Minion, SkillType.Triggered, }, + gemFamily = { "Desperation",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Desperation", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "melee_attacks_usable_without_mana_cost_while_surrounded", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDevastatePlayer"] = { + name = "Devastate", + description = "Supports any skill that Hits enemies, causing them to apply Broken Armour to enemies when causing a Heavy Stun to enemies.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Devastate",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Devastate", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["fully_break_enemies_armour_on_heavy_stun"] = { + flag("Condition:CanArmourBreak", { type = "GlobalEffect", effectType = "Buff", effectName = "ArmourBreak" } ), + }, + }, + baseFlags = { + }, + stats = { + "fully_break_enemies_armour_on_heavy_stun", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDirestrikePlayer"] = { + name = "Direstrike I", + description = "Supports Persistent Buff Skills, causing you to deal increased Attack Damage while on Low Life while the Supported Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Direstrike",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Direstrike I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"] = { + mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Direstrike" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_attack_damage_spirit_cost_attack_damage_+%_on_low_life", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDirestrikePlayerTwo"] = { + name = "Direstrike II", + description = "Supports Persistent Buff Skills, causing you to deal increased Attack Damage while on Low Life while the Supported Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Direstrike",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 40, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Direstrike II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"] = { + mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Direstrike" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_attack_damage_spirit_cost_attack_damage_+%_on_low_life", 70 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDoubleBarrelPlayer"] = { + name = "Double Barrel I", + description = "Supports Crossbow Ammunition Skills, causing them to load an extra bolt at the cost of reload speed.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DoubleBarrel",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Double Barrel I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil), + }, + ["support_double_barrel_crossbow_reload_speed_-%_final"] = { + mod("ReloadSpeed", "MORE", nil), + mult = -1 + }, + }, + baseFlags = { + }, + constantStats = { + { "support_double_barrel_number_of_crossbow_bolts_+", 1 }, + { "support_double_barrel_crossbow_reload_speed_-%_final", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDoubleBarrelPlayerTwo"] = { + name = "Double Barrel II", + description = "Supports Crossbow Ammunition Skills, causing them to load an extra bolt at the cost of reload speed.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DoubleBarrel",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Double Barrel II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil), + }, + ["support_double_barrel_crossbow_reload_speed_-%_final"] = { + mod("ReloadSpeed", "MORE", nil), + mult = -1 + }, + }, + baseFlags = { + }, + constantStats = { + { "support_double_barrel_number_of_crossbow_bolts_+", 1 }, + { "support_double_barrel_crossbow_reload_speed_-%_final", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportDoubleBarrelPlayerThree"] = { + name = "Double Barrel III", + description = "Supports Crossbow Ammunition Skills, causing them to load an extra bolt at the cost of reload speed. Supported Skills will also automatically reload when they Heavy Stun an enemy.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "DoubleBarrel",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Double Barrel III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil), + }, + ["support_double_barrel_crossbow_reload_speed_-%_final"] = { + mod("ReloadSpeed", "MORE", nil), + mult = -1 + }, + }, + baseFlags = { + }, + constantStats = { + { "support_double_barrel_number_of_crossbow_bolts_+", 1 }, + { "support_double_barrel_crossbow_reload_speed_-%_final", 20 }, + }, + stats = { + "crossbow_reload_on_heavy_stun", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEfficiencyPlayer"] = { + name = "Efficiency I", + description = "Supports any skill, making it cost less to use. Cannot support skills which reserve Spirit.", + color = 1, + support = true, + requireSkillTypes = { }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, }, + gemFamily = { "Efficiency",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Efficiency I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_inspiration_cost_+%_final"] = { + mod("Cost", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_inspiration_cost_+%_final", -30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEfficiencyPlayerTwo"] = { + name = "Efficiency II", + description = "Supports any skill, making it cost less to use. Cannot support skills which reserve Spirit.", + color = 1, + support = true, + requireSkillTypes = { }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, }, + gemFamily = { "Efficiency",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Efficiency II", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_inspiration_cost_+%_final"] = { + mod("Cost", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_inspiration_cost_+%_final", -40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEinharsBeastritePlayer"] = { + name = "Einhar's Beastrite", + description = "Supports Melee Strike skills, causing them to steal a Modifier from Rare monsters they kill for a lengthy duration, while being unable to damage enemies not on low Life. Does not modify skills used by Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Behead",}, + isLineage = true, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Einhar's Beastrite", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_executioner_gain_two_rare_monster_mod_on_kill_ms", 40000 }, + }, + stats = { + "can_only_damage_low_life_enemies", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportElementalArmamentPlayer"] = { + name = "Elemental Armament I", + description = "Supports Attacks, causing them to deal more Elemental damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ElementalArmament",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Elemental Armament I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_attack_skills_elemental_damage_+%_final"] = { + mod("ElementalDamage", "MORE", nil, 0, KeywordFlag.Attack), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_attack_skills_elemental_damage_+%_final", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportElementalArmamentPlayerTwo"] = { + name = "Elemental Armament II", + description = "Supports Attacks, causing them to deal more Elemental damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ElementalArmament",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Elemental Armament II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_attack_skills_elemental_damage_+%_final"] = { + mod("ElementalDamage", "MORE", nil, 0, KeywordFlag.Attack), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_attack_skills_elemental_damage_+%_final", 25 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportElementalArmamentPlayerThree"] = { + name = "Elemental Armament III", + description = "Supports Attacks, causing them to deal more Damage for each Elemental Ailment on Enemies they Hit. Supported Skills cannot themselves inflict Elemental Ailments.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ElementalArmament",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Elemental Armament III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target", 12 }, + }, + stats = { + "cannot_inflict_elemental_ailments", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHeavyStunEndurancePlayerOne"] = { + name = "Enduring Impact I", + description = "Supports any skill that Hits enemies, giving it a chance to gain an Endurance Charge when causing a Heavy Stun. ", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EnduringImpact",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Enduring Impact I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%", 30 }, + { "gain_x_endurance_charges_on_heavy_stunning_unique_enemy", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHeavyStunEndurancePlayerTwo"] = { + name = "Enduring Impact II", + description = "Supports any skill that Hits enemies, giving it a chance to gain an Endurance Charge when causing a Heavy Stun. ", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EnduringImpact",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Enduring Impact II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%", 30 }, + { "gain_x_endurance_charges_on_heavy_stunning_unique_enemy", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEnragedWarcryPlayer"] = { + name = "Enraged Warcry I", + description = "Supports Warcries, causing them to expend Rage to bypass their usual Cooldown.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { SkillType.ConsumesRage, }, + excludeSkillTypes = { }, + gemFamily = { "EnragedWarcry",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Enraged Warcry I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportEnragedWarcryPlayerTwo"] = { + name = "Enraged Warcry II", + description = "Supports Warcries, causing them to expend Rage to bypass their usual Cooldown.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EnragedWarcry",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Enraged Warcry II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIgniteDurationPlayer"] = { + name = "Eternal Flame I", + description = "Supports any skill that Hits enemies, causing its Ignites to be inflicted less often but last longer.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EternalFlame",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Eternal Flame I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_eternal_flame_chance_to_ignite_+%_final"] = { + mod("EnemyIgniteChance", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "ignite_duration_+%", 100 }, + { "support_eternal_flame_chance_to_ignite_+%_final", -25 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIgniteDurationPlayerTwo"] = { + name = "Eternal Flame II", + description = "Supports any skill that Hits enemies, causing its Ignites to last longer.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EternalFlame",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Eternal Flame II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "ignite_duration_+%", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIgniteDurationPlayerThree"] = { + name = "Eternal Flame III", + description = "Supports any skill that Hits enemies, causing it to refresh Ignites on Critical Hit.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "EternalFlame",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Eternal Flame III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "refresh_ignite_duration_on_critical_strike_chance_%", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportExecutePlayer"] = { + name = "Execute I", + description = "Supports any skill that Hits enemies, causing it to deal more damage against enemies on Low Life.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Execute",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Execute I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "LowLife"}) + }, + }, + baseFlags = { + }, + constantStats = { + { "support_executioner_damage_vs_enemies_on_low_life_+%_final", 40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportExecutePlayerTwo"] = { + name = "Execute II", + description = "Supports any skill that Hits enemies, causing it to deal more damage against enemies on Low Life.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Execute",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Execute II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_executioner_damage_vs_enemies_on_low_life_+%_final", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportExecutePlayerThree"] = { + name = "Execute III", + description = "Supports any skill that Hits enemies, causing it to deal more damage against enemies on Low Life, as well as dealing more damage while you are on Low Life.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Execute",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Execute III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_executioner_damage_vs_enemies_on_low_life_+%_final", 30 }, + { "support_executioner_damage_+%_final_while_on_low_life", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportExploitWeaknessPlayer"] = { + name = "Exploit Weakness", + description = "Supports any skill that Hits enemies, causing them to deal more Damage against enemies with Broken Armour but preventing them from Breaking Armour themselves. Cannot support skills that Consume Broken Armour.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.ConsumesFullyBrokenArmour, }, + gemFamily = { "ExploitWeakness",}, + levels = { + [1] = { manaMultiplier = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Exploit Weakness", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "ArmourFullyBroken"}) + }, + }, + baseFlags = { + }, + constantStats = { + { "support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final", 40 }, + }, + stats = { + "cannot_break_armour", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportAddedFireDamagePlayer"] = { + name = "Fire Attunement", + description = "Supports Attacks, causing them to Gain Fire Damage but deal less Cold and Lightning Damage.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "FireAttunement",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fire Attunement", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_cold_and_lightning_damage_+%_final"] = { + mod("ColdDamage", "MORE", nil), + mod("LightningDamage", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "non_skill_base_all_damage_%_to_gain_as_fire_with_attacks", 25 }, + { "support_cold_and_lightning_damage_+%_final", -50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFireExposurePlayer"] = { + name = "Fire Exposure", + description = "Supports any skill that Hits enemies, causing it to inflict Exposure when Igniting.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "FireExposure",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fire Exposure", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["inflict_fire_exposure_for_x_ms_on_ignite"] = { + mod("FireExposureChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited"}), + }, + }, + baseFlags = { + }, + constantStats = { + { "inflict_exposure_for_x_ms_on_ignite", 8000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFirePenetrationPlayer"] = { + name = "Fire Penetration I", + description = "Supports any skill that Hits enemies, making those Hits Penetrate enemy Fire resistance.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "FirePenetration",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fire Penetration I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_reduce_enemy_fire_resistance_%", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFirePenetrationPlayerTwo"] = { + name = "Fire Penetration II", + description = "Supports any skill that Hits enemies, making those Hits ignore enemy Fire resistance.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "FirePenetration",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fire Penetration II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "hits_ignore_enemy_fire_resistance", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFirstBloodPlayer"] = { + name = "First Blood", + description = "Supports Attacks. Supported Skills are far more likely to inflict Bleeding on Hitting full Life Enemies.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "FirstBlood",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "First Blood", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "bleed_chance_+%_vs_full_life_enemy", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["FistOfWarSupportPlayer"] = { + name = "Fist of War I", + description = "Supports Slams you use yourself, providing a powerful Ancestral Boost every few seconds.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "FistOfWar",}, + levels = { + [1] = { manaMultiplier = 50, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fist of War I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["ancestral_slam_interval_duration"] = { + mod("FistOfWarCooldown", "BASE", nil), + div = 1000, + }, + }, + baseFlags = { + }, + baseMods = { + mod("FistOfWarDamageMultiplier", "BASE", 30), + mod("FistOfWarMOREAoE", "BASE", 25), + }, + constantStats = { + { "support_ancestral_slam_big_hit_max_count", 1 }, + { "ancestral_slam_interval_duration", 6000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["FistOfWarSupportPlayerTwo"] = { + name = "Fist of War II", + description = "Supports Slams you use yourself, providing a powerful Ancestral Boost every few seconds.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "FistOfWar",}, + levels = { + [1] = { manaMultiplier = 50, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fist of War II", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["ancestral_slam_interval_duration"] = { + mod("FistOfWarCooldown", "BASE", nil), + div = 1000, + }, + }, + baseFlags = { + }, + baseMods = { + mod("FistOfWarDamageMultiplier", "BASE", 30), + mod("FistOfWarMOREAoE", "BASE", 25), + }, + constantStats = { + { "support_ancestral_slam_big_hit_max_count", 1 }, + { "ancestral_slam_interval_duration", 4000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["FistOfWarSupportPlayerThree"] = { + name = "Fist of War III", + description = "Supports Slams you use yourself, providing a very powerful Ancestral Boost infrequently.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "FistOfWar",}, + levels = { + [1] = { manaMultiplier = 100, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fist of War III", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["ancestral_slam_interval_duration"] = { + mod("FistOfWarCooldown", "BASE", nil), + div = 1000, + }, + ["double_ancestral_boost_effect"] = { + -- Accounted for in base mod + }, + }, + baseFlags = { + }, + baseMods = { + mod("FistOfWarDamageMultiplier", "BASE", 60), + mod("FistOfWarMOREAoE", "BASE", 50), + }, + constantStats = { + { "support_ancestral_slam_big_hit_max_count", 1 }, + { "ancestral_slam_interval_duration", 14000 }, + }, + stats = { + "double_ancestral_boost_effect", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFlamePillarPlayer"] = { + name = "Flame Pillar", + description = "Supports any Skill you use yourself which can cause Damaging Hits. Supported Skills Consume Ignite on Hit to create pillars of flame, but cannot themselves inflict Ignite. Cannot Support Skills which already Consume Ignite, and does not modify the Skills of Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.SkillConsumesIgnite, SkillType.SupportedByFlamePillar, }, + excludeSkillTypes = { SkillType.SkillConsumesIgnite, SkillType.SupportedByFlamePillar, SkillType.NOT, SkillType.AND, SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, }, + gemFamily = { "FlamePillar",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Flame Pillar", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "flame_pillar_support_maximum_pillars_per_skill_use", 10 }, + { "pillar_of_flame_consume_ignite_to_create_X_pillars", 1 }, + { "pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite", 0 }, + }, + stats = { + "never_ignite", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredFlamePillarPlayer"] = { + name = "Flame Pillar", + hidden = true, + description = "Deal Fire Damage in an Area based on a percentage of the expected Damage of the Consumed Ignite.", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Fire] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Flame Pillar", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_pillar_of_flame", + baseFlags = { + }, + constantStats = { + { "triggered_by_flame_pillar_support_%", 100 }, + { "support_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage", 25 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "pillar_of_flame_creation_radius", 10 }, + { "base_skill_effect_duration", 1500 }, + }, + stats = { + "never_ignite", + "is_area_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFlamepiercePlayer"] = { + name = "Flamepierce", + description = "Supports Skills which can fire Projectiles. Initial Projectile created by Supported Skills will always Pierce Ignited Enemies, but Supported Skills cannot inflict Ignite themselves.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Projectile, }, + addSkillTypes = { SkillType.SupportedByFlamepierce, }, + excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + gemFamily = { "Flamepierce",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Flamepierce", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "chance_to_pierce_ignited_enemy_%", 100 }, + }, + stats = { + "never_ignite", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportBloodFountainPlayer"] = { + name = "Font of Blood", + description = "Supports Skills which create Totems. Totems created by supported Skills generate a Font of Blood which will Leech Life to Allies within it.", + color = 1, + support = true, + requireSkillTypes = { SkillType.SummonsTotem, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + gemFamily = { "Font",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Font of Blood", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_blood_fountain_life_regeneration_rate_per_minute_%"] = { + mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), + div = 60, + }, + }, + baseFlags = { + }, + constantStats = { + { "allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life", 12 }, + { "font_of_blood_radius", 40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportRageFountainPlayer"] = { + name = "Font of Rage", + description = "Supports Skills which create Totems. Totems created by supported Skills generate a Font of Rage which will Leech Rage to Allies within it.", + color = 1, + support = true, + requireSkillTypes = { SkillType.SummonsTotem, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + gemFamily = { "Font",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Font of Rage", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_rage_fountain_rage_regeneration_per_minute"] = { + mod("RageRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), + div = 60, + }, + }, + baseFlags = { + }, + constantStats = { + { "allies_in_font_of_rage_radius_leech_permyriad_of_my_physical_damage_as_rage", 80 }, + { "font_of_rage_radius", 40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFreshClipPlayer"] = { + name = "Fresh Clip I", + description = "Supports Crossbow Skills, granting them more damage for each bolt reloaded by that Skill in the last 6 seconds.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "FreshClip",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fresh Clip I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "BoltsReloadedPastSixSeconds" } ), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportFreshClipPlayerTwo"] = { + name = "Fresh Clip II", + description = "Supports Crossbow Skills, granting them more damage for each bolt reloaded by that Skill in the last 8 seconds.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "FreshClip",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Fresh Clip II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "BoltsReloadedPastEightSeconds" } ), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportGreatwoodPlayer"] = { + name = "Greatwood I", + description = "Supports Skills which create Totems, limiting their active Totem count to one but granting significant benefits for supported Totems based on what their Totem Limit would have been without this restriction. Does not Support Skills used by Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UnlimitedTotems, }, + gemFamily = { "Greatwood",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Greatwood I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_greatwood_totem_damage_+%_final_per_totem_allowed", 10 }, + { "support_greatwood_totem_damage_+%_final_cap", 40 }, + { "support_greatwood_totem_area_of_effect_+%_per_totem_allowed", 5 }, + { "support_greatwood_totem_area_of_effect_+%_cap", 20 }, + { "support_greatwood_totem_life_+%_final_per_totem_allowed", 10 }, + { "support_greatwood_totem_life_+%_final_cap", 40 }, + { "support_greatwood_totem_actor_scale_+%_per_totem_allowed", 10 }, + { "support_greatwood_totem_actor_scale_+%_cap", 40 }, + }, + stats = { + "number_of_totems_allowed_is_1", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportGreatwoodPlayerTwo"] = { + name = "Greatwood II", + description = "Supports Skills which create Totems, limiting their active Totem count to one but granting significant benefits for supported Totems based on what their Totem Limit would have been without this restriction. Does not Support Skills used by Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UnlimitedTotems, }, + gemFamily = { "Greatwood",}, + ignoreMinionTypes = true, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Greatwood II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_greatwood_totem_damage_+%_final_per_totem_allowed", 15 }, + { "support_greatwood_totem_damage_+%_final_cap", 60 }, + { "support_greatwood_totem_life_+%_final_per_totem_allowed", 15 }, + { "support_greatwood_totem_life_+%_final_cap", 60 }, + { "support_greatwood_totem_actor_scale_+%_per_totem_allowed", 10 }, + { "support_greatwood_totem_actor_scale_+%_cap", 40 }, + { "support_greatwood_totem_area_of_effect_+%_per_totem_allowed", 5 }, + { "support_greatwood_totem_area_of_effect_+%_cap", 20 }, + }, + stats = { + "number_of_totems_allowed_is_1", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHaemocrystalsPlayer"] = { + name = "Haemocrystals", + description = "Supports Attack Skills you use yourself which can cause Damaging Hits. Supported Skills Consume Bleeding on Hit to create explosive blood-filled crystals, but cannot themselves inflict Bleeding. Cannot Support Skills which already Consume Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { SkillType.SkillConsumesBleeding, SkillType.SupportedByHaemoCrystals, }, + excludeSkillTypes = { SkillType.SkillConsumesBleeding, SkillType.SupportedByHaemoCrystals, SkillType.NOT, SkillType.AND, SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, }, + gemFamily = { "Haemocrystals",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Haemocrystals", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "consume_bleed_to_create_X_haemocrystals", 4 }, + { "support_haemocrystals_maximum_allowed_crystals", 20 }, + { "haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed", 2 }, + }, + stats = { + "cannot_cause_bleeding", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredHaemocrystalsPlayer"] = { + name = "Haemocrystals", + hidden = true, + description = "Deal Physical Damage in an Area based on a percentage of the expected Damage of the Consumed Bleed.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.SkillGrantedBySupport] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Haemocrystals", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_haemocrystals", + baseFlags = { + hit = true, + area = true, + }, + constantStats = { + { "consume_bleed_to_create_X_haemocrystals", 4 }, + { "support_haemocrystals_maximum_allowed_crystals", 20 }, + { "haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed", 2 }, + }, + stats = { + "cannot_cause_bleeding", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHardyTotemsPlayer"] = { + name = "Hardy Totems I", + description = "Supports Skills which create Totems, causing those Totems to have more Life.", + color = 1, + support = true, + requireSkillTypes = { SkillType.SummonsTotem, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HardyTotems",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Hardy Totems I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_totem_life_+%_final", 40 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHardyTotemsPlayerTwo"] = { + name = "Hardy Totems II", + description = "Supports Skills which create Totems, causing those Totems to have more Life.", + color = 1, + support = true, + requireSkillTypes = { SkillType.SummonsTotem, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HardyTotems",}, + levels = { + [1] = { manaMultiplier = 10, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Hardy Totems II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_totem_life_+%_final", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMeleePhysicalDamagePlayer"] = { + name = "Heavy Swing", + description = "Supports Melee Attacks, boosting their Physical damage at the cost of Attack Speed.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HeavySwing",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Heavy Swing", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_melee_physical_damage_+%_final"] = { + mod("PhysicalDamage", "MORE", nil, ModFlag.Melee), + }, + ["support_melee_physical_damage_attack_speed_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_melee_physical_damage_+%_final", 35 }, + { "support_melee_physical_damage_attack_speed_+%_final", -10 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHeftPlayer"] = { + name = "Heft", + description = "Supports Skills which deal Damage, increasing the maximum Physical Damage of their Hits.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Heft",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Heft", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_heft_maximum_physical_damage_+%_final"] = { + mod("MaxPhysicalDamage", "MORE", nil, ModFlag.Hit), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_heft_maximum_physical_damage_+%_final", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHerbalismPlayer"] = { + name = "Herbalism I", + description = "Supports Persistent Buff Skills, causing you to gain increased Life recovery from Flasks while the Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Herbalism",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Herbalism I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_herbalism_life_recovery_+%_from_life_flasks"] = { + mod("FlaskLifeRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Herbalism" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_herbalism_life_recovery_+%_from_life_flasks", 30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHerbalismPlayerTwo"] = { + name = "Herbalism II", + description = "Supports Persistent Buff Skills, causing you to gain increased Life recovery from Flasks while the Skill is active.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Herbalism",}, + isLineage = true, + levels = { + [1] = { spiritReservationFlat = 30, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Herbalism II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_herbalism_life_recovery_+%_from_life_flasks"] = { + mod("FlaskLifeRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Herbalism" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_herbalism_life_recovery_+%_from_life_flasks", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHolyDescentPlayer"] = { + name = "Holy Descent", + description = "Supports Skills that leap into the air, causing them to create Consecrated Ground when you land", + color = 1, + support = true, + requireSkillTypes = { SkillType.Jumping, }, + addSkillTypes = { SkillType.CreatesGroundEffect, SkillType.Area, SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "HolyDescent",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Holy Descent", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_holy_descent_consecrated_ground_on_landing"] = { + -- Display only + }, + ["support_holy_descent_consecrated_ground_base_duration_ms"] = { + -- Display only + }, + }, + baseFlags = { + }, + constantStats = { + { "support_holy_descent_consecrated_ground_base_duration_ms", 4000 }, + { "support_holy_descent_consecrated_ground_on_landing_radius", 22 }, + }, + stats = { + "support_holy_descent_consecrated_ground_on_landing", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIgnitePlayer"] = { + name = "Ignite I", + description = "Supports any skill that Hits enemies, making it more likely to Ignite.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Ignite",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ignite I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_ignition_chance_to_ignite_+%_final"] = { + mod("EnemyIgniteChance", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_ignition_chance_to_ignite_+%_final", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIgnitePlayerTwo"] = { + name = "Ignite II", + description = "Supports any skill that Hits enemies, making it more likely to Ignite.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Ignite",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ignite II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_ignition_chance_to_ignite_+%_final"] = { + mod("EnemyIgniteChance", "MORE", nil), + }, + }, + baseFlags = { + }, + constantStats = { + { "support_ignition_chance_to_ignite_+%_final", 150 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIgnitePlayerThree"] = { + name = "Ignite III", + description = "Supports any skill that Hits enemies, making it more likely to Ignite and causing inflicted Ignites to deal their damage more quickly.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Ignite",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ignite III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_ignition_chance_to_ignite_+%_final", 200 }, + { "faster_burn_%", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportImmolatePlayer"] = { + name = "Immolate", + description = "Supports Attacks, granting them extra Fire damage against Ignited enemies but making them unable to Ignite enemies themselves.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Immolate",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Immolate", + baseEffectiveness = 0.88889998197556, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies", 30 }, + }, + stats = { + "never_ignite", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["ImpactShockwaveSupportPlayer"] = { + name = "Impact Shockwave", + description = "Supports Melee Strike skills, causing them to create an Aftershock that damages enemies around the target when they Heavy Stun an enemy.", + color = 1, + support = true, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ImpactShockwave",}, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + }, + statSets = { + [1] = { + label = "Impact Shockwave", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_impact_shockwave_base_splash_radius", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportIncisionPlayer"] = { + name = "Incision", + description = "Supports Attack Skills. Supported Skills inflict Incision on Hit, which causes Enemies to be increasingly more likely to be inflicted with Bleeding. All Incision is removed from a target on inflicting it with Bleeding.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Incision",}, + levels = { + [1] = { manaMultiplier = 15, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Incision", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_melee_damage_+%_final_vs_higher_percent_life_target"] = { - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "EnemyHigherLifePercent" }), + ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Multiplier", var = "IncisionConsumedRecently", limit = 30, limitTotal = true }), }, - ["support_melee_damage_+%_final_vs_lower_percent_life_target"] = { - mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "EnemyHigherLifePercent", neg = true }), + }, + baseFlags = { + }, + constantStats = { + { "apply_X_incision_on_hit", 1 }, + { "support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportInfernalLegionPlayer"] = { + name = "Infernal Legion I", + description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, }, + addSkillTypes = { SkillType.CausesBurning, }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "InfernalLegion",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Infernal Legion I", + baseEffectiveness = 5.9082999229431, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("FireDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life" }, { type = "GlobalEffect", effectType = "Buff" }) }), + div = 6000, + }, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("Multiplier:InfernalLegionBaseDamage", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }) }), + div = 60, + mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), }, }, baseFlags = { }, constantStats = { - { "support_melee_damage_+%_final_vs_higher_percent_life_target", 40 }, - { "support_melee_damage_+%_final_vs_lower_percent_life_target", -20 }, + { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1200 }, + { "support_minions_ignite_for_%_max_life", 20 }, + { "infernal_legion_minion_burning_effect_radius", 15 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportInfernalLegionPlayerTwo"] = { + name = "Infernal Legion II", + description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, }, + addSkillTypes = { SkillType.CausesBurning, }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "InfernalLegion",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Infernal Legion II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("FireDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life" }, { type = "GlobalEffect", effectType = "Buff" }) }), + div = 6000, + }, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("Multiplier:InfernalLegionBaseDamage", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }) }), + div = 60, + mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1200 }, + { "support_minions_ignite_for_%_max_life", 20 }, + { "infernal_legion_minion_burning_effect_radius", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportInfernalLegionPlayerThree"] = { + name = "Infernal Legion III", + description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesMinion, }, + addSkillTypes = { SkillType.CausesBurning, }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "InfernalLegion",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Infernal Legion III", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("FireDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life" }, { type = "GlobalEffect", effectType = "Buff" }) }), + div = 6000, + }, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("Multiplier:InfernalLegionBaseDamage", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }) }), + div = 60, + mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1800 }, + { "support_minions_ignite_for_%_max_life", 25 }, + { "infernal_legion_minion_burning_effect_radius", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportJaggedGroundPlayer"] = { + name = "Jagged Ground I", + description = "Supports Slam skills. Supported Skills will consume Endurance Charges on use to create Jagged Ground.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { SkillType.Duration, SkillType.Area, SkillType.CreatesGroundEffect, }, + excludeSkillTypes = { SkillType.CannotCreateJaggedGround, }, + gemFamily = { "JaggedGround",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Jagged Ground I", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_jagged_ground_base_duration_ms", 4000 }, + { "support_create_jagged_ground_if_consumed_endurance_charge", 1 }, + }, + stats = { + "can_create_jagged_ground", + "support_consume_X_endurance_charges_on_use", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportJaggedGroundPlayerTwo"] = { + name = "Jagged Ground II", + description = "Supports Slam skills. Aftershocks caused by Supported Slam Skills always create patches of Jagged Ground.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { SkillType.Duration, SkillType.Area, SkillType.CreatesGroundEffect, }, + excludeSkillTypes = { SkillType.CannotCreateJaggedGround, }, + gemFamily = { "JaggedGround",}, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Jagged Ground II", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "can_create_jagged_ground", + "aftershocks_create_jagged_ground", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportKaomsMadnessPlayer"] = { + name = "Kaom's Madness", + description = "Supports Melee Attacks which create fissures in the ground, causing them to create many additional fissures at the cost of damage, attack speed, and area of effect.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesFissure, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Fissures",}, + isLineage = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Kaom's Madness", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_number_of_additional_fissures", 3 }, + { "support_additional_fissures_damage_+%_final", -40 }, + { "support_additional_fissures_attack_speed_+%_final", -20 }, + { "support_upheaval_area_of_effect_+%_final", -30 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportKnockbackPlayer"] = { + name = "Knockback", + description = "Supports any skill that Hits enemies, causing it to Knock Back enemies.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Knockback",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Knockback", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "generic_knockback_distance_limit", 30 }, + { "support_arms_length_knockback_distance_+%_final", 40 }, + }, + stats = { + "global_knockback", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportLastingGroundPlayer"] = { + name = "Lasting Ground", + description = "Supports Skills that create Ground Surfaces, causing those surfaces to last longer.", + color = 1, + support = true, + requireSkillTypes = { SkillType.CreatesGroundEffect, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "LastingGround",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Support", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "ground_effect_duration_+%", 50 }, }, stats = { }, @@ -590,39 +4218,28 @@ skills["SupportClashPlayer"] = { }, } } -skills["SupportConcoctPlayer"] = { - name = "Concoct", - description = "Supports Skills you use yourself which Damage enemies with Hits. Supported Skills consume a percentage of your maximum Life Flask charges, inflicting more powerful Bleeding based on Life Flask charges consumed.", +skills["SupportLifeLeechPlayer"] = { + name = "Life Leech I", + description = "Supports Attacks, causing their Physical damage to Leech Life.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { }, + gemFamily = { "LifeLeech",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Concoct", - incrementalEffectiveness = 0.054999999701977, + label = "Life Leech I", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["consume_%_of_maximum_life_flask_charges_on_skill_use"] = { - mod("Multiplier:LifeFlaskMaxChargesPercent", "BASE", nil), - }, - ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Multiplier", var = "LifeFlaskChargeConsumed"}), - }, - }, baseFlags = { }, - baseMods = { - mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask1MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }), - mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask2MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }), - }, constantStats = { - { "consume_%_of_maximum_life_flask_charges_on_skill_use", 20 }, - { "support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed", 3 }, + { "base_life_leech_from_physical_attack_damage_permyriad", 1200 }, }, stats = { }, @@ -632,31 +4249,28 @@ skills["SupportConcoctPlayer"] = { }, } } -skills["SupportCoolheadedPlayer"] = { - name = "Cool Headed", - description = "Supports Persistent Buff Skills, causing Ignite applied to you to last for a shorter duration while the Supported Skill is active.", +skills["SupportLifeLeechPlayerTwo"] = { + name = "Life Leech II", + description = "Supports Attacks, causing their Physical damage to Leech Life.", color = 1, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "LifeLeech",}, levels = { - [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Cool Headed", - incrementalEffectiveness = 0.054999999701977, + label = "Life Leech II", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"] = { - mod("SelfIgniteDuration", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Cool Headed" }), - }, - }, baseFlags = { }, constantStats = { - { "support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final", -50 }, + { "base_life_leech_from_physical_attack_damage_permyriad", 1600 }, }, stats = { }, @@ -666,56 +4280,31 @@ skills["SupportCoolheadedPlayer"] = { }, } } -skills["SupportCorruptingCryPlayer"] = { - name = "Corrupting Cry", - description = "Supports Warcries, causing them to inflict Corrupted Blood on enemies in their area of effect.", +skills["SupportLifeLeechPlayerThree"] = { + name = "Life Leech III", + description = "Supports Attacks, causing their Physical damage to Leech Life and preventing Leech gained this way from being removed at full Life.", color = 1, support = true, - requireSkillTypes = { SkillType.Warcry, }, - addSkillTypes = { SkillType.DamageOverTime, SkillType.Duration, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "LifeLeech",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Corrupting Cry", - incrementalEffectiveness = 0.054999999701977, + label = "Life Leech III", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, - }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { - mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) - }, - ["support_corrupting_cry_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil, 0, KeywordFlag.Warcry) - }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { - -- Display only - }, - }, baseFlags = { }, - baseMods = { - skill("debuff", true), - flag("dotIsCorruptingBlood"), - mod("Multiplier:CorruptingCryMaxStages", "BASE", 10), - mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst"}), - }, constantStats = { - { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 1 }, - { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, - { "support_corrupting_cry_area_of_effect_+%_final", -30 }, - { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, + { "base_life_leech_from_physical_attack_damage_permyriad", 1600 }, }, stats = { + "life_leech_from_source_not_removed_at_full_life", }, levels = { [1] = { actorLevel = 1, }, @@ -723,37 +4312,28 @@ skills["SupportCorruptingCryPlayer"] = { }, } } -skills["SupportDauntlessPlayer"] = { - name = "Dauntless", - description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills cannot be used unless you have been stationary for a certain duration, but deal increasingly more damage the longer you are stationary. Cannot support Skills which have a reservation, are Triggered, have a cooldown or have another usage Condition.", +skills["SupportBloodMagicPlayer"] = { + name = "Lifetap", + description = "Supports any Skill, turning a portion of its Mana cost into a Life cost. Does not support Skills which reserve Spirit.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, }, - excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, SkillType.NOT, SkillType.AND, SkillType.DegenOnlySpellDamage, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Cooldown, }, - ignoreMinionTypes = true, + requireSkillTypes = { }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Blessing, SkillType.Persistent, }, + gemFamily = { "Lifetap",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Dauntless", - incrementalEffectiveness = 0.054999999701977, + label = "Lifetap", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_unmoving_damage_+%_final_per_250_ms_stationary"] = { - mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "Stationary" }, { type = "Multiplier", var = "StationarySeconds", div = 0.25, limitVar = "DauntlessMaxDamage", limitTotal = true }), - }, - ["support_unmoving_damage_multiplier_cap"] = { - mod("Multiplier:DauntlessMaxDamage", "BASE", nil), - }, - }, baseFlags = { }, constantStats = { - { "skill_cannot_be_used_unless_stationary_for_X_ms", 1500 }, - { "support_unmoving_damage_+%_final_per_250_ms_stationary", 3 }, - { "support_unmoving_damage_multiplier_cap", 45 }, + { "blood_magic_skill_life_cost_+%_final", 0 }, + { "base_skill_cost_life_instead_of_mana_%", 100 }, }, stats = { }, @@ -763,29 +4343,31 @@ skills["SupportDauntlessPlayer"] = { }, } } -skills["SupportDazingCryPlayer"] = { - name = "Dazing Cry", - description = "Supports Warcries, causing them to Daze Enemies on use.", +skills["SupportLongFusePlayer"] = { + name = "Long Fuse I", + description = "Supports Skills which have a Detonation Time, causing those Skills to have much higher Detonation Time and detonation damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Warcry, }, + requireSkillTypes = { SkillType.DetonatesAfterTime, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "LongFuse",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Dazing Cry", + label = "Long Fuse I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_dazed_cry_duration_ms", 4000 }, + { "support_long_fuse_detonation_damage_+%_final", 30 }, + { "skill_detonation_time_+%", 50 }, }, stats = { - "support_apply_daze_on_warcry", + "skill_grenade_detonate_only_at_end_of_duration", }, levels = { [1] = { actorLevel = 1, }, @@ -793,37 +4375,31 @@ skills["SupportDazingCryPlayer"] = { }, } } -skills["SupportDeepCutsPlayer"] = { - name = "Deep Cuts", - description = "Supports any skill that Hits enemies, causing it to deal less damage but inflict more potent Bleeding.", +skills["SupportLongFusePlayerTwo"] = { + name = "Long Fuse II", + description = "Supports Skills which have a Detonation Time, causing those Skills to have much higher Detonation Time and detonation damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.DetonatesAfterTime, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "LongFuse",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Deep Cuts", + label = "Long Fuse II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_deep_cuts_hit_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, - ["support_deep_cuts_bleeding_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed), - }, - }, baseFlags = { }, constantStats = { - { "support_deep_cuts_hit_damage_+%_final", -25 }, - { "support_deep_cuts_bleeding_effect_+%_final", 75 }, + { "support_long_fuse_detonation_damage_+%_final", 35 }, + { "skill_detonation_time_+%", 70 }, }, stats = { + "skill_grenade_detonate_only_at_end_of_duration", }, levels = { [1] = { actorLevel = 1, }, @@ -831,26 +4407,38 @@ skills["SupportDeepCutsPlayer"] = { }, } } -skills["SupportDefyPlayer"] = { - name = "Defy", - description = "Supports Attack Skills you use yourself. Hit Damage from Supported Skills is Lucky if you are Surrounded.", +skills["SupportMeatShieldPlayer"] = { + name = "Meat Shield I", + description = "Supports skills which create Minions, granting them less damage taken but making them deal less damage. Cannot support skills which create undamageable Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "MeatShield",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Defy", - incrementalEffectiveness = 0.054999999701977, + label = "Meat Shield I", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_minion_defensive_stance_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, + ["support_meat_shield_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + }, baseFlags = { }, + constantStats = { + { "support_minion_defensive_stance_minion_damage_taken_+%_final", -35 }, + { "support_meat_shield_minion_damage_+%_final", -35 }, + }, stats = { - "attack_damage_is_lucky_if_surrounded", }, levels = { [1] = { actorLevel = 1, }, @@ -858,31 +4446,36 @@ skills["SupportDefyPlayer"] = { }, } } -skills["SupportIncreasedArmourBreakPlayer"] = { - name = "Demolisher", - description = "Supports any skill, causing Armour Break it inflicts to be stronger.", +skills["SupportMeatShieldPlayerTwo"] = { + name = "Meat Shield II", + description = "Supports skills which create Minions, granting them less damage taken but making them deal less damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Spell, SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, }, + requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + gemFamily = { "MeatShield",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Demolisher", - incrementalEffectiveness = 0.054999999701977, + label = "Meat Shield II", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_increased_armour_break_armour_break_amount_+%_final"] = { - mod("ArmourBreakEffect", "MORE", nil), + ["support_minion_defensive_stance_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, + ["support_meat_shield_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), }, }, baseFlags = { }, constantStats = { - { "support_increased_armour_break_armour_break_amount_+%_final", 50 }, + { "support_minion_defensive_stance_minion_damage_taken_+%_final", -40 }, + { "support_meat_shield_minion_damage_+%_final", -40 }, }, stats = { }, @@ -892,27 +4485,56 @@ skills["SupportIncreasedArmourBreakPlayer"] = { }, } } -skills["SupportDesperationPlayer"] = { - name = "Desperation", - description = "Supports Melee Attack Skills you use yourself. Insufficient Mana doesn't prevent Supported Skills from being used while Surrounded.", +skills["SupportCorruptingCryPlayerThree"] = { + name = "Paquate's Pact", + description = "Supports Warcries, causing them to inflict massive amounts of Corrupted Blood on enemies in their area of effect, at the cost of your Life.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Minion, }, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { SkillType.DamageOverTime, SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "CorruptingCry",}, + isLineage = true, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Desperation", + label = "Paquate's Pact", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { + skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + div = 60, + }, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, + ["support_corrupting_cry_corrupted_blood_duration_ms"] = { + skill("durationSecondary", nil), + div = 1000, + }, + ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + -- Display only + }, + }, baseFlags = { }, + baseMods = { + skill("debuff", true), + flag("dotIsCorruptingBlood"), + mod("Multiplier:CorruptingCryMaxStages", "BASE", 10), + mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst"}), + }, + constantStats = { + { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 5 }, + { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, + { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, + { "support_corrupting_cry_%_life_lost_per_corrupting_blood_applied", 2 }, + }, stats = { - "melee_attacks_usable_without_mana_cost_while_surrounded", }, levels = { [1] = { actorLevel = 1, }, @@ -920,20 +4542,21 @@ skills["SupportDesperationPlayer"] = { }, } } -skills["SupportGroundEffectDurationPlayer"] = { - name = "Despoiler", - description = "Supports Skills that create Ground Surfaces, causing those surfaces to last longer.", +skills["SupportPersistentGroundPlayer"] = { + name = "Persistent Ground I", + description = "Supports Skills which create Ground Surfaces, causing created Surfaces to last much longer.", color = 1, support = true, - requireSkillTypes = { SkillType.CreatesGroundEffect, SkillType.Duration, SkillType.AND, }, + requireSkillTypes = { SkillType.CreatesGroundEffect, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "PersistentGround",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Support", + label = "Persistent Ground I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -949,31 +4572,30 @@ skills["SupportGroundEffectDurationPlayer"] = { }, } } -skills["SupportDevastatePlayer"] = { - name = "Devastate", - description = "Supports any skill that Hits enemies, causing them to apply Broken Armour to enemies when causing a Heavy Stun to enemies.", +skills["SupportPersistentGroundPlayerTwo"] = { + name = "Persistent Ground II", + description = "Supports Skills which create Ground Surfaces, causing created Surfaces to last much longer and only end when their duration expires.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.CreatesGroundEffect, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "PersistentGround",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Devastate", + label = "Persistent Ground II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["fully_break_enemies_armour_on_heavy_stun"] = { - flag("Condition:CanArmourBreak", { type = "GlobalEffect", effectType = "Buff", effectName = "ArmourBreak" } ), - }, - }, baseFlags = { }, + constantStats = { + { "ground_effect_duration_+%", 50 }, + }, stats = { - "fully_break_enemies_armour_on_heavy_stun", + "ground_effects_cannot_trigger", }, levels = { [1] = { actorLevel = 1, }, @@ -981,33 +4603,31 @@ skills["SupportDevastatePlayer"] = { }, } } -skills["SupportDirestrikePlayer"] = { - name = "Direstrike", - description = "Supports Persistent Buff Skills, causing you to deal increased Attack Damage while on Low Life while the Supported Skill is active.", +skills["SupportPersistentGroundPlayerThree"] = { + name = "Persistent Ground III", + description = "Supports Skills which create Ground Surfaces, causing created Surfaces to last much longer as well as lowering the Cooldown Recovery Speed of affected Enemies. Ground Surfaces from Supported Skills only end when their duration expires.", color = 1, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { SkillType.CreatesGroundEffect, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "PersistentGround",}, levels = { - [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Direstrike", + label = "Persistent Ground III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"] = { - mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Direstrike" }), - }, - }, baseFlags = { }, constantStats = { - { "support_attack_damage_spirit_cost_attack_damage_+%_on_low_life", 50 }, + { "ground_effect_duration_+%", 50 }, + { "ground_effects_apply_cooldown_speed_+%_final", -30 }, }, stats = { + "ground_effects_cannot_trigger", }, levels = { [1] = { actorLevel = 1, }, @@ -1015,26 +4635,34 @@ skills["SupportDirestrikePlayer"] = { }, } } -skills["SupportDomainPlayer"] = { - name = "Domain", - description = "Supports Skills which create Ground Surfaces, causing created Surfaces to only end when their duration expires.", +skills["SupportEmpoweredDamagePlayer"] = { + name = "Premeditation", + description = "Supports skills that can Empower skills other than themselves, causing skills they Empower to deal more damage.", color = 1, support = true, - requireSkillTypes = { SkillType.CreatesGroundEffect, }, + requireSkillTypes = { SkillType.EmpowersOtherSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Premeditation",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 30, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Domain", + label = "Premeditation", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_empowered_damage_+%_final"] = { + mod("ExtraEmpowerMod", "LIST", { mod = mod("Damage", "MORE", nil) }), + } + }, baseFlags = { }, + constantStats = { + { "support_empowered_damage_+%_final", 15 }, + }, stats = { - "ground_effects_cannot_trigger", }, levels = { [1] = { actorLevel = 1, }, @@ -1042,36 +4670,34 @@ skills["SupportDomainPlayer"] = { }, } } -skills["SupportDoubleBarrelPlayer"] = { - name = "Double Barrel", - description = "Supports Crossbow Ammunition Skills, causing them to load an extra bolt at the cost of reload speed.", +skills["ProlongedDurationSupportPlayer"] = { + name = "Prolonged Duration I", + description = "Supports any skill that has a duration, making that duration longer.", color = 1, support = true, - requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + requireSkillTypes = { SkillType.Duration, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ProlongedDuration",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [2] = { manaMultiplier = 20, levelRequirement = 3, }, + [3] = { manaMultiplier = 20, levelRequirement = 6, }, }, statSets = { [1] = { - label = "Double Barrel", - incrementalEffectiveness = 0.054999999701977, + label = "Prolonged Duration I", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_double_barrel_number_of_crossbow_bolts_+"] = { - mod("CrossbowBoltCount", "BASE", nil), - }, - ["support_double_barrel_crossbow_reload_speed_-%_final"] = { - mod("ReloadSpeed", "MORE", nil), - mult = -1 + ["support_more_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_double_barrel_number_of_crossbow_bolts_+", 1 }, - { "support_double_barrel_crossbow_reload_speed_-%_final", 30 }, + { "support_more_duration_skill_effect_duration_+%_final", 30 }, }, stats = { }, @@ -1081,27 +4707,32 @@ skills["SupportDoubleBarrelPlayer"] = { }, } } -skills["SupportEnragedWarcryPlayer"] = { - name = "Enraged Warcry", - description = "Supports Warcries, causing them to consume Rage to further boost Empowered Attacks.", +skills["ProlongedDurationSupportPlayerTwo"] = { + name = "Prolonged Duration II", + description = "Supports any skill that has a duration, making that duration longer.", color = 1, support = true, - requireSkillTypes = { SkillType.Warcry, }, + requireSkillTypes = { SkillType.Duration, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ProlongedDuration",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Enraged Warcry", - incrementalEffectiveness = 0.054999999701977, + label = "Prolonged Duration II", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_more_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_warcry_consumes_up_to_X_rage", 10 }, - { "support_enraged_warcry_+%_damage_final_for_exerted_attacks", 30 }, + { "support_more_duration_skill_effect_duration_+%_final", 35 }, }, stats = { }, @@ -1111,32 +4742,32 @@ skills["SupportEnragedWarcryPlayer"] = { }, } } -skills["SupportIgniteDurationPlayer"] = { - name = "Eternal Flame", - description = "Supports any skill that Hits enemies, causing its Ignites to be inflicted less often but last longer.", +skills["ProlongedDurationSupportPlayerThree"] = { + name = "Prolonged Duration III", + description = "Supports any skill that has a duration, making that duration significantly longer while applying a cooldown. Cannot support Skills which already have a cooldown.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Duration, }, + addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByDurationThree, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByDurationThree, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + gemFamily = { "ProlongedDuration",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 16, }, }, statSets = { [1] = { - label = "Eternal Flame", - incrementalEffectiveness = 0.054999999701977, + label = "Prolonged Duration III", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_eternal_flame_chance_to_ignite_+%_final"] = { - mod("EnemyIgniteChance", "MORE", nil), + ["support_more_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "ignite_duration_+%", 100 }, - { "support_eternal_flame_chance_to_ignite_+%_final", -25 }, + { "support_more_duration_skill_effect_duration_+%_final", 60 }, }, stats = { }, @@ -1146,31 +4777,28 @@ skills["SupportIgniteDurationPlayer"] = { }, } } -skills["SupportExecutePlayer"] = { - name = "Execute", - description = "Supports any skill that Hits enemies, causing it to deal more damage against enemies on Low Life.", +skills["SupportQuillburstPlayer"] = { + name = "Quill Burst", + description = "Supports Melee Attack Skills. Supported Skills trigger Quill Burst, which deals your Thorns Damage in an Area around the target struck. Quill Burst can only be triggered on Hit after you've\nRetaliated with Thorns Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + gemFamily = { "QuillBurst",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Execute", + label = "Quill Burst", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "LowLife"}) - }, - }, baseFlags = { }, constantStats = { - { "support_executioner_damage_vs_enemies_on_low_life_+%_final", 50 }, + { "trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger", 3 }, }, stats = { }, @@ -1180,28 +4808,31 @@ skills["SupportExecutePlayer"] = { }, } } -skills["SupportExpeditePlayer"] = { - name = "Expedite", - description = "Supports Skills which Detonate after some amount of time has elapsed, shortening the time before Detonation. ", - color = 1, - support = true, - requireSkillTypes = { SkillType.DetonatesAfterTime, }, - addSkillTypes = { }, - excludeSkillTypes = { }, +skills["TriggeredQuillburstPlayer"] = { + name = "Quill Burst", + hidden = true, + description = "Deal your Thorns Damage in an Area. Cannot Hit the target this was Triggered from.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.SkillGrantedBySupport] = true, }, + castTime = 1, + qualityStats = { + }, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.15, }, }, statSets = { [1] = { - label = "Expedite", + label = "Quill Burst", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", + statDescriptionScope = "triggered_spiked_gauntlets", baseFlags = { }, constantStats = { - { "support_fast_forward_detonation_time_+%_final", -40 }, + { "triggered_by_spiked_gauntlets_support_%", 100 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { + "is_area_damage", + "display_skill_deals_thorns_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -1209,34 +4840,34 @@ skills["SupportExpeditePlayer"] = { }, } } -skills["SupportExploitWeaknessPlayer"] = { - name = "Exploit Weakness", - description = "Supports any skill that Hits enemies, causing them to deal more Damage against enemies with Broken Armour but preventing them from Breaking Armour themselves. Cannot support skills that Consume Broken Armour.", +skills["SupportRagePlayer"] = { + name = "Rage I", + description = "Supports Melee Attacks, causing them to grant Rage on Hit.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ConsumesFullyBrokenArmour, }, + excludeSkillTypes = { }, + gemFamily = { "Rage",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, }, statSets = { [1] = { - label = "Exploit Weakness", - incrementalEffectiveness = 0.054999999701977, + label = "Rage I", + baseEffectiveness = 0.18000000715256, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "ArmourFullyBroken"}) - }, - }, baseFlags = { }, constantStats = { - { "support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final", 40 }, + { "gain_x_rage_on_melee_hit", 3 }, + { "support_rage_attack_damage_+%_final", 0 }, }, stats = { - "cannot_break_armour", }, levels = { [1] = { actorLevel = 1, }, @@ -1244,32 +4875,30 @@ skills["SupportExploitWeaknessPlayer"] = { }, } } -skills["LessDurationSupportPlayer"] = { - name = "Fast Forward", - description = "Supports any skill that has a duration making that duration shorter.", +skills["SupportRagePlayerTwo"] = { + name = "Rage II", + description = "Supports Melee Attacks, causing them to grant Rage on Hit.", color = 1, support = true, - requireSkillTypes = { SkillType.Duration, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Rage",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fast Forward", + label = "Rage II", + baseEffectiveness = 0.18000000715256, incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_reduced_duration_skill_effect_duration_+%_final"] = { - mod("Duration", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_reduced_duration_skill_effect_duration_+%_final", -30 }, - { "support_reduced_duration_damage_+%_final", 0 }, + { "gain_x_rage_on_melee_hit", 5 }, + { "support_rage_attack_damage_+%_final", 0 }, }, stats = { }, @@ -1279,26 +4908,33 @@ skills["LessDurationSupportPlayer"] = { }, } } -skills["SupportFigureheadPlayer"] = { - name = "Figurehead", - description = "Supports Skills that generate Remnants, causing those Remnants to affect Allies in your Presence when collected instead of you.", +skills["SupportRagePlayerThree"] = { + name = "Rage III", + description = "Supports Melee Attacks, causing them to grant Rage on Hit. Supported Skills have signficantly higher Attack speed while you are not at maximum Rage.", color = 1, support = true, - requireSkillTypes = { SkillType.GeneratesRemnants, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Rage",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Figurehead", - incrementalEffectiveness = 0.054999999701977, + label = "Rage III", + baseEffectiveness = 0.18000000715256, + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "gain_x_rage_on_melee_hit", 5 }, + { "support_rage_attack_damage_+%_final", 0 }, + { "support_rage_attack_speed_+%_final_while_not_at_maximum_rage", 15 }, + }, stats = { - "remnants_affect_allies_in_presence_instead", }, levels = { [1] = { actorLevel = 1, }, @@ -1306,31 +4942,29 @@ skills["SupportFigureheadPlayer"] = { }, } } -skills["SupportFireExposurePlayer"] = { - name = "Fire Exposure", - description = "Supports any skill that Hits enemies, causing it to inflict Fire Exposure when Igniting.", +skills["SupportRageforgedPlayer"] = { + name = "Rageforged I", + description = "Supports any damaging skill that you use or trigger yourself, causing it to consume Rage to deal more damage. If you don't have enough Rage to consume, the damage bonus will not apply.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.ConsumesRage, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, }, + gemFamily = { "RageForged",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fire Exposure", + label = "Rageforged I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["inflict_fire_exposure_for_x_ms_on_ignite"] = { - mod("FireExposureChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited"}), - }, - }, baseFlags = { }, constantStats = { - { "inflict_fire_exposure_for_x_ms_on_ignite", 8000 }, + { "support_rageforged_consumes_X_rage_to_enrage_skill_use", 10 }, + { "support_rageforged_enraged_damage_+%_final", 35 }, }, stats = { }, @@ -1340,34 +4974,30 @@ skills["SupportFireExposurePlayer"] = { }, } } -skills["SupportAddedFireDamagePlayer"] = { - name = "Fire Infusion", - description = "Supports Attacks, causing them to Gain Fire Damage but deal less Cold and Lightning Damage.", +skills["SupportRageforgedPlayerTwo"] = { + name = "Rageforged II", + description = "Supports any damaging skill that you use or trigger yourself, causing it to consume Rage to deal more damage, with a chance to skip consuming Rage while still benefitting as though it had. If you don't have enough Rage to consume, the damage bonus will not apply.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { SkillType.ConsumesRage, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, }, + gemFamily = { "RageForged",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fire Infusion", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Rageforged II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_cold_and_lightning_damage_+%_final"] = { - mod("ColdDamage", "MORE", nil), - mod("LightningDamage", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "non_skill_base_all_damage_%_to_gain_as_fire_with_attacks", 25 }, - { "support_cold_and_lightning_damage_+%_final", -50 }, + { "support_rageforged_consumes_X_rage_to_enrage_skill_use", 10 }, + { "support_rageforged_enraged_damage_+%_final", 35 }, + { "rage_skip_consume_chance_%", 30 }, }, stats = { }, @@ -1377,26 +5007,27 @@ skills["SupportAddedFireDamagePlayer"] = { }, } } -skills["SupportFirePenetrationPlayer"] = { - name = "Fire Penetration", - description = "Supports any skill that Hits enemies, making those Hits Penetrate enemy Fire resistance.", +skills["SupportRagingCryPlayer"] = { + name = "Raging Cry", + description = "Supports Warcry skills, causing them to grant you Rage on use depending on counted monster Power.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Warcry, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "RagingCry",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fire Penetration", - incrementalEffectiveness = 0.092720001935959, + label = "Raging Cry", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "base_reduce_enemy_fire_resistance_%", 30 }, + { "warcry_grant_X_rage_per_5_power", 4 }, }, stats = { }, @@ -1406,28 +5037,30 @@ skills["SupportFirePenetrationPlayer"] = { }, } } -skills["SupportFirstBloodPlayer"] = { - name = "First Blood", - description = "Supports Attacks. Supported Skills are far more likely to inflict Bleeding on Hitting full Life Enemies.", +skills["SupportRallyPlayer"] = { + name = "Rally", + description = "Supports Melee Attacks you use yourself. Supported Skills Consume all Endurance Charge on use, causing you to restore a percentage of your maximum Life for each Charge Consumed.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { SkillType.ConsumesCharges, SkillType.SupportedByRally, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesEnduranceChargesOnUse, SkillType.SupportedByRally, SkillType.NOT, SkillType.AND, }, + gemFamily = { "Rally",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "First Blood", + label = "Rally", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "bleed_chance_+%_vs_full_life_enemy", 100 }, + { "consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge", 10 }, }, stats = { + "skill_cannot_generate_endurance_charges", }, levels = { [1] = { actorLevel = 1, }, @@ -1435,37 +5068,34 @@ skills["SupportFirstBloodPlayer"] = { }, } } -skills["FistOfWarSupportPlayer"] = { - name = "Fist of War", - description = "Supports Slams you use yourself, providing a powerful Ancestral Boost every few seconds.", +skills["SupportRefractionPlayer"] = { + name = "Refraction I", + description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which causes Armour to partially apply to Elemental Hit Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Slam, }, + requireSkillTypes = { SkillType.Banner, SkillType.Persistent, SkillType.Buff, SkillType.AND, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, }, + excludeSkillTypes = { }, + gemFamily = { "Refraction",}, levels = { - [1] = { manaMultiplier = 50, levelRequirement = 0, }, + [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fist of War", - incrementalEffectiveness = 0.092720001935959, + label = "Refraction I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["ancestral_slam_interval_duration"] = { - mod("FistOfWarCooldown", "BASE", nil), - div = 1000, + ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"] = { + mod("ArmourAppliesToFireDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, }, baseFlags = { }, - baseMods = { - mod("FistOfWarDamageMultiplier", "BASE", 20), - mod("FistOfWarMOREAoE", "BASE", 20), - }, constantStats = { - { "support_ancestral_slam_big_hit_max_count", 1 }, - { "ancestral_slam_interval_duration", 6000 }, + { "support_tempered_valour_%_armour_to_apply_to_elemental_damage", 20 }, }, stats = { }, @@ -1475,29 +5105,36 @@ skills["FistOfWarSupportPlayer"] = { }, } } -skills["SupportFlamepiercePlayer"] = { - name = "Flamepierce", - description = "Supports Skills which can fire Projectiles. Initial Projectile created by Supported Skills will always Pierce Ignited Enemies, but Supported Skills cannot inflict Ignite themselves.", +skills["SupportRefractionPlayerTwo"] = { + name = "Refraction II", + description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which causes Armour to partially apply to Elemental Hit Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Projectile, }, - addSkillTypes = { SkillType.SupportedByFlamepierce, }, - excludeSkillTypes = { SkillType.ProjectileNoCollision, }, + requireSkillTypes = { SkillType.Banner, SkillType.Persistent, SkillType.Buff, SkillType.AND, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Refraction",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Flamepierce", + label = "Refraction II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"] = { + mod("ArmourAppliesToFireDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + }, + }, baseFlags = { }, constantStats = { - { "chance_to_pierce_ignited_enemy_%", 100 }, + { "support_tempered_valour_%_armour_to_apply_to_elemental_damage", 30 }, }, stats = { - "never_ignite", }, levels = { [1] = { actorLevel = 1, }, @@ -1505,33 +5142,27 @@ skills["SupportFlamepiercePlayer"] = { }, } } -skills["SupportBloodFountainPlayer"] = { - name = "Font of Blood", - description = "Supports Skills which create stationary objects. Objects created by supported Skills generate a Font of Blood, creating an Aura which grants Life regeneration.", +skills["SupportRefractionPlayerThree"] = { + name = "Refraction III", + description = "Supports Banner Skills, causing Enemies within their area to gain Refractive Dissolution, a Debuff which lowers Elemental Resistances.", color = 1, support = true, - requireSkillTypes = { SkillType.SupportedByFountains, SkillType.Orb, SkillType.SummonsTotem, SkillType.Offering, }, + requireSkillTypes = { SkillType.Banner, SkillType.Persistent, SkillType.Buff, SkillType.AND, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + excludeSkillTypes = { }, + gemFamily = { "Refraction",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Font of Blood", + label = "Refraction III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_blood_fountain_life_regeneration_rate_per_minute_%"] = { - mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 60, - }, - }, baseFlags = { }, constantStats = { - { "support_blood_fountain_life_regeneration_rate_per_minute_%", 120 }, - { "support_blood_fountain_radius", 30 }, + { "support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour", 2 }, }, stats = { }, @@ -1541,33 +5172,28 @@ skills["SupportBloodFountainPlayer"] = { }, } } -skills["SupportRageFountainPlayer"] = { - name = "Font of Rage", - description = "Supports Skills which create stationary objects. Objects created by supported Skills generate a Font of Rage, creating an Aura which grants Rage over time, as well as preventing Rage loss.", +skills["SupportReinforcedTotemsPlayer"] = { + name = "Reinforced Totems I", + description = "Supports Skills which create Totems. Totems created by Supported Skills have additional Elemental Resistances.", color = 1, support = true, - requireSkillTypes = { SkillType.SupportedByFountains, SkillType.Orb, SkillType.SummonsTotem, SkillType.Offering, }, + requireSkillTypes = { SkillType.SummonsTotem, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.Persistent, SkillType.AND, }, + excludeSkillTypes = { }, + gemFamily = { "ReinforcedTotems",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Font of Rage", + label = "Reinforced Totems I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_rage_fountain_rage_regeneration_per_minute"] = { - mod("RageRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 60, - }, - }, baseFlags = { }, constantStats = { - { "support_rage_fountain_rage_regeneration_per_minute", 120 }, - { "support_rage_fountain_radius", 30 }, + { "totem_elemental_resistance_%", 40 }, + { "totem_maximum_all_elemental_resistances_%", 0 }, }, stats = { }, @@ -1577,31 +5203,28 @@ skills["SupportRageFountainPlayer"] = { }, } } -skills["SupportFreshClipPlayer"] = { - name = "Fresh Clip", - description = "Supports Crossbow Skills, granting them more damage for each bolt reloaded by that Skill in the last 6 seconds.", +skills["SupportReinforcedTotemsPlayerTwo"] = { + name = "Reinforced Totems II", + description = "Supports Skills which create Totems. Totems created by Supported Skills have additional Elemental Resistances.", color = 1, support = true, - requireSkillTypes = { SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, + requireSkillTypes = { SkillType.SummonsTotem, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ReinforcedTotems",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Fresh Clip", + label = "Reinforced Totems II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "BoltsReloadedPastSixSeconds" } ), - }, - }, baseFlags = { }, constantStats = { - { "support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds", 1 }, + { "totem_elemental_resistance_%", 40 }, + { "totem_maximum_all_elemental_resistances_%", 10 }, }, stats = { }, @@ -1611,33 +5234,29 @@ skills["SupportFreshClipPlayer"] = { }, } } -skills["SupportGreatwoodPlayer"] = { - name = "Greatwood", - description = "Supports Totem Skills, limiting their active Totem count to one but granting significant benefits for supported Totems based on what their Totem Limit would have been without this restriction. Does not Support Skills used by Minions.", +skills["SupportRelentlessRagePlayer"] = { + name = "Relentless Rage", + description = "Supports Skills which can consume Rage, giving them a chance to not remove that Rage while still gaining benefits as though they had.", color = 1, support = true, - requireSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, }, + requireSkillTypes = { SkillType.ConsumesRage, }, addSkillTypes = { }, excludeSkillTypes = { }, - ignoreMinionTypes = true, + gemFamily = { "Grudge",}, levels = { [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Greatwood", + label = "Relentless Rage", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_greatwood_totem_damage_+%_final_per_totem_allowed", 10 }, - { "support_greatwood_totem_area_of_effect_+%_final_per_totem_allowed", 5 }, - { "support_greatwood_totem_life_+%_final_per_totem_allowed", 10 }, - { "support_greatwood_totem_actor_scale_+%_per_totem_allowed", 10 }, + { "rage_skip_consume_chance_%", 35 }, }, stats = { - "number_of_totems_allowed_is_1", }, levels = { [1] = { actorLevel = 1, }, @@ -1645,30 +5264,29 @@ skills["SupportGreatwoodPlayer"] = { }, } } -skills["SupportHaemocrystalsPlayer"] = { - name = "Haemocrystals", - description = "Supports Attack Skills you use yourself which can cause Damaging Hits. Supported Skills Consume Bleeding on Hit to create explosive blood-filled crystals, but cannot themselves inflict Bleeding.", +skills["SupportInterludePlayer"] = { + name = "Remnant Potency I", + description = "Supports Skills which create Remnants, making those Remnants more powerful.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.GeneratesRemnants, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { }, + gemFamily = { "RemnantPower",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Haemocrystals", + label = "Remnant Potency I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "consume_bleed_to_create_X_haemocrystals", 4 }, - { "support_haemocrystals_maximum_allowed_crystals", 20 }, + { "remnant_effect_+%", 20 }, }, stats = { - "cannot_cause_bleeding", }, levels = { [1] = { actorLevel = 1, }, @@ -1676,32 +5294,30 @@ skills["SupportHaemocrystalsPlayer"] = { }, } } -skills["TriggeredHaemocrystalsPlayer"] = { - name = "Haemocrystals", - hidden = true, - description = "Deal Physical Area Damage based on a percentage of the expected Damage of the Consumed Bleed. ", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.SkillGrantedBySupport] = true, }, - castTime = 1, - qualityStats = { - }, +skills["SupportInterludePlayerTwo"] = { + name = "Remnant Potency II", + description = "Supports Skills which create Remnants, making those Remnants more powerful, but delaying their effect.", + color = 1, + support = true, + requireSkillTypes = { SkillType.GeneratesRemnants, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "RemnantPower",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Haemocrystals", + label = "Remnant Potency II", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "triggered_haemocrystals", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { - hit = true, - area = true, }, constantStats = { - { "consume_bleed_to_create_X_haemocrystals", 4 }, - { "support_haemocrystals_maximum_allowed_crystals", 20 }, + { "remnant_delay_X_ms", 4000 }, + { "remnant_effect_+%", 30 }, }, stats = { - "cannot_cause_bleeding", }, levels = { [1] = { actorLevel = 1, }, @@ -1709,36 +5325,28 @@ skills["TriggeredHaemocrystalsPlayer"] = { }, } } -skills["SupportMeleePhysicalDamagePlayer"] = { - name = "Heavy Swing", - description = "Supports Melee Attacks, boosting their Physical damage at the cost of Attack Speed.", +skills["SupportInterludePlayerThree"] = { + name = "Remnant Potency III", + description = "Supports Skills which create Remnants, making those Remnants more powerful, but delaying their effect.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, }, + requireSkillTypes = { SkillType.GeneratesRemnants, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "RemnantPower",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Heavy Swing", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Remnant Potency III", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_melee_physical_damage_+%_final"] = { - mod("PhysicalDamage", "MORE", nil, ModFlag.Melee), - }, - ["support_melee_physical_damage_attack_speed_+%_final"] = { - mod("Speed", "MORE", nil, ModFlag.Attack), - }, - }, baseFlags = { }, constantStats = { - { "support_melee_physical_damage_+%_final", 35 }, - { "support_melee_physical_damage_attack_speed_+%_final", -10 }, + { "remnant_effect_+%", 40 }, + { "remnant_delay_X_ms", 3000 }, }, stats = { }, @@ -1748,31 +5356,28 @@ skills["SupportMeleePhysicalDamagePlayer"] = { }, } } -skills["SupportHeftPlayer"] = { - name = "Heft", - description = "Supports Skills which deal Damage, increasing the maximum Physical Damage of their Hits.", +skills["SupportRetaliatePlayer"] = { + name = "Retaliate I", + description = "Supports Melee Attack Skills you use yourself. Supported Skills gain much more damage the closer you are to being Heavily Stunned.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Meta, SkillType.Triggered, }, + gemFamily = { "Retaliate",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Heft", + label = "Retaliate I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_heft_maximum_physical_damage_+%_final"] = { - mod("MaxPhysicalDamage", "MORE", nil, ModFlag.Hit), - }, - }, baseFlags = { }, constantStats = { - { "support_heft_maximum_physical_damage_+%_final", 30 }, + { "support_max_attack_damage_+%_final_from_current_poise", 40 }, }, stats = { }, @@ -1782,31 +5387,29 @@ skills["SupportHeftPlayer"] = { }, } } -skills["SupportHerbalismPlayer"] = { - name = "Herbalism", - description = "Supports Persistent Buff Skills, causing you to gain increased Life recovery from Flasks while the Skill is active.", +skills["SupportRetaliatePlayerTwo"] = { + name = "Retaliate II", + description = "Supports Melee Attack Skills you use yourself. Supported Skills gain much more damage and are more capable of Stunning Enemies the closer you are to being Heavily Stunned.", color = 1, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Meta, SkillType.Triggered, }, + gemFamily = { "Retaliate",}, + ignoreMinionTypes = true, levels = { - [1] = { spiritReservationFlat = 15, levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Herbalism", + label = "Retaliate II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_herbalism_life_recovery_+%_from_life_flasks"] = { - mod("FlaskLifeRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Herbalism" }), - }, - }, baseFlags = { }, constantStats = { - { "support_herbalism_life_recovery_+%_from_life_flasks", 30 }, + { "support_max_attack_damage_+%_final_from_current_poise", 40 }, + { "support_hit_damage_stun_multiplier_+%_final_from_current_poise", 100 }, }, stats = { }, @@ -1816,38 +5419,29 @@ skills["SupportHerbalismPlayer"] = { }, } } -skills["SupportHolyDescentPlayer"] = { - name = "Holy Descent", - description = "Supports Skills that leap into the air, causing them to create Consecrated Ground when you land", +skills["SupportReveberatePlayer"] = { + name = "Reverberate", + description = "Supports Slam Skills. Supported Skills that have a chance to Aftershock have increased chance to cause Aftershocks the longer their Attack time.", color = 1, support = true, - requireSkillTypes = { SkillType.Jumping, }, - addSkillTypes = { SkillType.CreatesGroundEffect, SkillType.Area, SkillType.Duration, }, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Reverberate",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Holy Descent", + label = "Reverberate", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_holy_descent_consecrated_ground_on_landing"] = { - -- Display only - }, - ["support_holy_descent_consecrated_ground_base_duration_ms"] = { - -- Display only - }, - }, baseFlags = { }, constantStats = { - { "support_holy_descent_consecrated_ground_base_duration_ms", 4000 }, - { "support_holy_descent_consecrated_ground_on_landing_radius", 14 }, + { "chance_to_aftershock_+%_per_250_ms_attack_time", 15 }, }, stats = { - "support_holy_descent_consecrated_ground_on_landing", }, levels = { [1] = { actorLevel = 1, }, @@ -1855,31 +5449,32 @@ skills["SupportHolyDescentPlayer"] = { }, } } -skills["SupportChanceToIgnitePlayer"] = { - name = "Ignition", - description = "Supports any skill that Hits enemies, making it more likely to Ignite.", +skills["SupportRipPlayer"] = { + name = "Rip", + description = "Supports Melee Attack Skills you use yourself or that you Trigger. Killing Blows with Supported Skills on Bleeding enemies create a Blood Remnant. Blood Remnants increase your Life regeneration rate for a short while after being collected.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { SkillType.GeneratesRemnants, SkillType.Duration, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + gemFamily = { "Rip",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ignition", + label = "Rip", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_ignition_chance_to_ignite_+%_final"] = { - mod("EnemyIgniteChance", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_ignition_chance_to_ignite_+%_final", 100 }, + { "create_life_remnant_on_melee_kill_bleeding_enemy_%", 100 }, + { "rip_support_life_remnant_creation_radius", 15 }, + { "base_remnant_duration_ms", 8000 }, + { "rip_support_buff_base_duration", 5000 }, + { "rip_support_life_regeneration_rate_+%", 10 }, }, stats = { }, @@ -1889,30 +5484,27 @@ skills["SupportChanceToIgnitePlayer"] = { }, } } -skills["SupportImmolatePlayer"] = { - name = "Immolate", - description = "Supports Attacks, granting them extra Fire damage against Ignited enemies but making them unable to Ignite enemies themselves.", +skills["SupportRupturePlayer"] = { + name = "Rupture", + description = "Supports skills that Hit Enemies. Supported skills Aggravate Bleeding on Hitting Heavily Stunned Enemies.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Rupture",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Immolate", - baseEffectiveness = 0.88889998197556, - incrementalEffectiveness = 0.092720001935959, + label = "Rupture", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies", 30 }, - }, stats = { - "never_ignite", + "support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy", }, levels = { [1] = { actorLevel = 1, }, @@ -1920,29 +5512,27 @@ skills["SupportImmolatePlayer"] = { }, } } -skills["ImpactShockwaveSupportPlayer"] = { - name = "Impact Shockwave", - description = "Supports Melee Strike skills, causing them to create an Aftershock that damages enemies around the target when they Heavy Stun an enemy.", +skills["SupportRustedSpikesPlayer"] = { + name = "Rusted Spikes", + description = "Supports Skills which deal Damage with Hits. When Supported Skills Pin an Enemy, they also Aggravate Bleeding on that Enemy.", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + gemFamily = { "RustedSpikes",}, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Impact Shockwave", - incrementalEffectiveness = 0.092720001935959, + label = "Rusted Spikes", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_impact_shockwave_base_splash_radius", 15 }, + { "aggravate_bleeding_on_pin_chance_%", 100 }, }, stats = { }, @@ -1952,32 +5542,28 @@ skills["ImpactShockwaveSupportPlayer"] = { }, } } -skills["SupportIncisionPlayer"] = { - name = "Incision", - description = "Supports Attack Skills. Supported Skills inflict Incision on Hit, which causes Enemies to be increasingly more likely to be inflicted with Bleeding. All Incision is removed from a target on inflicting it with Bleeding.", +skills["RuthlessSupportPlayer"] = { + name = "Ruthless", + description = "Supports Attacks, causing repeated uses to be more effective at Stunning enemies.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Ruthless",}, levels = { - [1] = { manaMultiplier = 15, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Incision", - incrementalEffectiveness = 0.054999999701977, + label = "Ruthless", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Multiplier", var = "IncisionConsumedRecently", limit = 30, limitTotal = true }), - }, - }, baseFlags = { }, constantStats = { - { "apply_X_incision_on_hit", 1 }, - { "support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%", 3 }, + { "support_ruthless_big_hit_max_count", 5 }, + { "support_ruthless_big_hit_stun_damage_+%_final", 500 }, }, stats = { }, @@ -1987,40 +5573,36 @@ skills["SupportIncisionPlayer"] = { }, } } -skills["SupportInfernalLegionPlayer"] = { - name = "Infernal Legion", - description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", +skills["SupportDeadlyIgnitesPlayer"] = { + name = "Searing Flame I", + description = "Supports any skill that Hits enemies, causing inflicted Ignites to deal more damage but its Hits to deal less damage.", color = 1, support = true, - requireSkillTypes = { SkillType.CreatesMinion, }, - addSkillTypes = { SkillType.CausesBurning, }, - excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "SearingFlame",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Infernal Legion", - baseEffectiveness = 5.9082999229431, - incrementalEffectiveness = 0.092720001935959, + label = "Searing Flame I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life" }, { type = "GlobalEffect", effectType = "Buff" }) }), - div = 6000, + ["support_stronger_ignites_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), }, - ["support_minion_instability_minion_base_fire_area_damage_per_minute"] = { - mod("MinionModifier", "LIST", { mod = mod("Multiplier:InfernalLegionBaseDamage", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }) }), - div = 60, - mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), + ["support_stronger_ignites_ignite_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Ignite), }, }, baseFlags = { }, constantStats = { - { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1200 }, - { "support_minions_ignite_for_%_max_life", 20 }, - { "infernal_legion_minion_burning_effect_radius", 15 }, + { "support_stronger_ignites_hit_damage_+%_final", -25 }, + { "support_stronger_ignites_ignite_effect_+%_final", 75 }, }, stats = { }, @@ -2030,32 +5612,36 @@ skills["SupportInfernalLegionPlayer"] = { }, } } -skills["SupportInspirationPlayer"] = { - name = "Inspiration", - description = "Supports any skill, making it cost less to use. Cannot support skills which reserve Spirit.", +skills["SupportDeadlyIgnitesPlayerTwo"] = { + name = "Searing Flame II", + description = "Supports any skill that Hits enemies, causing inflicted Ignites to deal more damage but its Hits to deal less damage.", color = 1, support = true, - requireSkillTypes = { }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, }, + excludeSkillTypes = { }, + gemFamily = { "SearingFlame",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Inspiration", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Searing Flame II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_inspiration_cost_+%_final"] = { - mod("Cost", "MORE", nil), + ["support_stronger_ignites_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_stronger_ignites_ignite_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Ignite), }, }, baseFlags = { }, constantStats = { - { "support_inspiration_cost_+%_final", -30 }, + { "support_stronger_ignites_hit_damage_+%_final", -30 }, + { "support_stronger_ignites_ignite_effect_+%_final", 100 }, }, stats = { }, @@ -2065,27 +5651,29 @@ skills["SupportInspirationPlayer"] = { }, } } -skills["SupportInterludePlayer"] = { - name = "Interlude", - description = "Supports Skills that generate Remnants, causing effects of those Remnants to be more powerful, but at the cost of a delay.", +skills["SupportSeeRedPlayer"] = { + name = "See Red", + description = "Supports Attack Skills. Bleeding inflicted with Supported Skills lasts significantly longer, but enemies you inflict Bleeding onto with Supported Skills will move and Attack faster.", color = 1, support = true, - requireSkillTypes = { SkillType.GeneratesRemnants, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "SeeRed",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Interlude", + label = "See Red", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "remnant_effect_+%", 25 }, - { "remnant_delay_X_ms", 3000 }, + { "bleeding_monsters_movement_velocity_+%", 15 }, + { "base_bleed_duration_+%", 50 }, + { "bleeding_monsters_attack_speed_+%", 15 }, }, stats = { }, @@ -2095,29 +5683,27 @@ skills["SupportInterludePlayer"] = { }, } } -skills["SupportIronwoodPlayer"] = { - name = "Ironwood", - description = "Supports Skills which create Totems. Totems created by Supported Skills have additional Elemental Resistances.", +skills["SupportSelflessRemnantsPlayer"] = { + name = "Selfless Remnants", + description = "Supports Skills that generate Remnants, causing those Remnants to affect Allies in your Presence when collected instead of you.", color = 1, support = true, - requireSkillTypes = { SkillType.SummonsTotem, }, + requireSkillTypes = { SkillType.GeneratesRemnants, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.RemnantCannotBeShared, }, + gemFamily = { "SelflessRemnants",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ironwood", + label = "Selfless Remnants", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "totem_elemental_resistance_%", 40 }, - { "totem_maximum_all_elemental_resistances_%", 10 }, - }, stats = { + "remnants_affect_allies_in_presence_instead", }, levels = { [1] = { actorLevel = 1, }, @@ -2125,30 +5711,29 @@ skills["SupportIronwoodPlayer"] = { }, } } -skills["SupportJaggedGroundPlayer"] = { - name = "Jagged Ground", - description = "Supports Slam skills, granting them a chance to create patches of Jagged Ground.", +skills["SupportShortFusePlayer"] = { + name = "Short Fuse I", + description = "Supports Skills which Detonate after some amount of time has elapsed, shortening the time before Detonation. ", color = 1, support = true, - requireSkillTypes = { SkillType.Slam, }, - addSkillTypes = { SkillType.Duration, SkillType.Area, SkillType.CreatesGroundEffect, }, + requireSkillTypes = { SkillType.DetonatesAfterTime, }, + addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ShortFuse",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Jagged Ground", - incrementalEffectiveness = 0.092720001935959, + label = "Short Fuse I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_jagged_ground_base_duration_ms", 4000 }, - { "support_jagged_ground_chance_%", 50 }, + { "support_fast_forward_detonation_time_+%_final", -40 }, }, stats = { - "can_create_jagged_ground", }, levels = { [1] = { actorLevel = 1, }, @@ -2156,26 +5741,33 @@ skills["SupportJaggedGroundPlayer"] = { }, } } -skills["SupportChanceToBleedPlayer"] = { - name = "Lacerate", - description = "Supports any skill that Hits enemies, giving it a chance to inflict Bleeding.", +skills["SupportShortFusePlayerTwo"] = { + name = "Short Fuse II", + description = "Supports Skills which Detonate after some amount of time has elapsed, massively shortening the time before Detonation at the cost of Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.DetonatesAfterTime, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "ShortFuse",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 15, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lacerate", - incrementalEffectiveness = 0.092720001935959, + label = "Short Fuse II", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_short_fuse_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "base_chance_to_inflict_bleeding_%", 50 }, + { "support_fast_forward_detonation_time_+%_final", -80 }, + { "support_short_fuse_damage_+%_final", -30 }, }, stats = { }, @@ -2185,27 +5777,30 @@ skills["SupportChanceToBleedPlayer"] = { }, } } -skills["SupportLifeLeechPlayer"] = { - name = "Life Thief", - description = "Supports Attacks, causing their Physical damage to Leech Life.", +skills["SupportSkitteringStonePlayer"] = { + name = "Skittering Stone I", + description = "Supports Skills which create shatterable earthen objects. After killing enough Enemies in range of these objects, they will shatter, releasing skittering stone Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.CanCreateStoneElementals, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "SkitteringStone",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Life Thief", - baseEffectiveness = 0, - incrementalEffectiveness = 0.092720001935959, + label = "Skittering Stone I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "base_life_leech_from_physical_attack_damage_permyriad", 800 }, + { "support_hatching_elementals_hatch_after_X_deaths_in_radius", 5 }, + { "support_hatching_elementals_base_radius", 40 }, + { "support_chance_to_trigger_hatching_elementals_%", 100 }, }, stats = { }, @@ -2215,29 +5810,39 @@ skills["SupportLifeLeechPlayer"] = { }, } } -skills["SupportBloodMagicPlayer"] = { - name = "Lifetap", - description = "Supports any Skill, turning a portion of its Mana cost into a Life cost. Does not support Skills which reserve Spirit.", - color = 1, - support = true, - requireSkillTypes = { }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.Blessing, SkillType.Persistent, }, +skills["TriggeredSkitteringStonePlayer"] = { + name = "Skittering Stone", + hidden = true, + description = "Creates Skittering Stone Minions from shattered objects created by Supported Skill.", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.CreatesMinion] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, }, + castTime = 1, + qualityStats = { + }, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Lifetap", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "gem_stat_descriptions", + label = "Skittering Stone", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_hatching_elementals", + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + }, baseFlags = { }, constantStats = { - { "blood_magic_skill_life_cost_+%_final", 0 }, - { "base_skill_cost_life_instead_of_mana_%", 100 }, + { "triggered_by_support_hatching_elementals_%", 100 }, + { "base_skill_effect_duration", 10000 }, + { "support_hatching_elementals_number_of_elementals_per_hatch", 1 }, + { "maximum_hatching_elementals_allowed", 8 }, + { "minion_1%_damage_+%_per_X_player_strength", 1 }, }, stats = { + "display_minion_level_from_triggering_skill_level", }, levels = { [1] = { actorLevel = 1, }, @@ -2245,30 +5850,32 @@ skills["SupportBloodMagicPlayer"] = { }, } } -skills["SupportLongFusePlayer"] = { - name = "Long Fuse", - description = "Supports Skills which fire Grenades, causing those Grenades to have much higher Detonation Time and damage.", +skills["SupportSkitteringStonePlayerTwo"] = { + name = "Skittering Stone II", + description = "Supports Skills which create shatterable earthen objects. After killing enough Enemies in range of these objects, they will shatter, releasing skittering stone Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.Grenade, }, + requireSkillTypes = { SkillType.CanCreateStoneElementals, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "SkitteringStone",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Long Fuse", + label = "Skittering Stone II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_grenade_damage_+%_final", 30 }, - { "skill_detonation_time_+%", 50 }, + { "support_hatching_elementals_hatch_after_X_deaths_in_radius", 5 }, + { "support_hatching_elementals_base_radius", 40 }, + { "support_chance_to_trigger_hatching_elementals_%", 100 }, }, stats = { - "skill_grenade_detonate_only_at_end_of_duration", }, levels = { [1] = { actorLevel = 1, }, @@ -2276,37 +5883,39 @@ skills["SupportLongFusePlayer"] = { }, } } -skills["SupportMeatShieldPlayer"] = { - name = "Meat Shield", - description = "Supports skills which create Minions, granting them less damage taken but making them deal less damage. Cannot support skills which create undamageable Minions.", - color = 1, - support = true, - requireSkillTypes = { SkillType.CreatesMinion, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.MinionsAreUndamagable, }, +skills["TriggeredSkitteringStonePlayerTwo"] = { + name = "Skittering Stone", + hidden = true, + description = "Creates Skittering Stone Minions from shattered objects created by Supported Skill.", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.CreatesMinion] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, }, + castTime = 1, + qualityStats = { + }, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Meat Shield", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "gem_stat_descriptions", + label = "Skittering Stone", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_hatching_elementals", statMap = { - ["support_minion_defensive_stance_minion_damage_taken_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), - }, - ["support_meat_shield_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), }, }, baseFlags = { }, constantStats = { - { "support_minion_defensive_stance_minion_damage_taken_+%_final", -35 }, - { "support_meat_shield_minion_damage_+%_final", -35 }, + { "triggered_by_support_hatching_elementals_%", 100 }, + { "base_skill_effect_duration", 20000 }, + { "support_hatching_elementals_number_of_elementals_per_hatch", 2 }, + { "maximum_hatching_elementals_allowed", 12 }, + { "minion_1%_damage_+%_per_X_player_strength", 1 }, }, stats = { + "display_minion_level_from_triggering_skill_level", }, levels = { [1] = { actorLevel = 1, }, @@ -2314,31 +5923,27 @@ skills["SupportMeatShieldPlayer"] = { }, } } -skills["SupportOverpowerPlayer"] = { - name = "Overpower", - description = "Supports any skill that hits enemies, causing it to build up Stun more quickly.", +skills["SupportSparPlayer"] = { + name = "Spar", + description = "Supports Melee Attack Skills. Supported Skills are more capable of Stunning Enemies the closer you are to being Heavily Stunned.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Spar",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Overpower", + label = "Spar", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { - mod("StunBuildup", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_overpower_hit_damage_stun_multiplier_+%_final", 50 }, + { "support_hit_damage_stun_multiplier_+%_final_from_current_poise", 100 }, }, stats = { }, @@ -2348,33 +5953,28 @@ skills["SupportOverpowerPlayer"] = { }, } } -skills["MoreDurationSupportPlayer"] = { - name = "Persistence", - description = "Supports any skill that has a duration, making that duration longer.", +skills["SupportSteadfastPlayer"] = { + name = "Steadfast I", + description = "Supports Channelling Skills you use yourself, granting you higher Stun Threshold while Channelling them.", color = 1, support = true, - requireSkillTypes = { SkillType.Duration, }, + requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Steadfast",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, - [2] = { manaMultiplier = 20, levelRequirement = 3, }, - [3] = { manaMultiplier = 20, levelRequirement = 6, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Persistence", - incrementalEffectiveness = 0.092720001935959, + label = "Steadfast I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_more_duration_skill_effect_duration_+%_final"] = { - mod("Duration", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_more_duration_skill_effect_duration_+%_final", 40 }, + { "support_steadfast_stun_threshold_+%_final_while_channelling", 50 }, }, stats = { }, @@ -2384,31 +5984,29 @@ skills["MoreDurationSupportPlayer"] = { }, } } -skills["SupportEmpoweredDamagePlayer"] = { - name = "Premeditation", - description = "Supports skills that can Empower skills other than themselves, causing skills they Empower to deal more damage.", +skills["SupportSteadfastPlayerTwo"] = { + name = "Steadfast II", + description = "Supports Channelling Skills you use yourself, granting you higher Stun Threshold and Ailment Threshold while Channelling them.", color = 1, support = true, - requireSkillTypes = { SkillType.EmpowersOtherSkill, }, + requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Steadfast",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Premeditation", + label = "Steadfast II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_empowered_damage_+%_final"] = { - mod("ExtraEmpowerMod", "LIST", { mod = mod("Damage", "MORE", nil) }), - } - }, baseFlags = { }, constantStats = { - { "support_empowered_damage_+%_final", 15 }, + { "support_steadfast_ailment_threshold_+%_final_while_channelling", 100 }, + { "support_steadfast_stun_threshold_+%_final_while_channelling", 50 }, }, stats = { }, @@ -2418,33 +6016,31 @@ skills["SupportEmpoweredDamagePlayer"] = { }, } } -skills["SupportWeaponElementalDamagePlayer"] = { - name = "Primal Armament", - description = "Supports Attacks that use a weapon, causing them to deal more weapon Elemental damage.", +skills["SupportStoicismPlayer"] = { + name = "Stoicism I", + description = "Supports Attack Skills you use yourself. Supported Skills steadily gain more Damage, up to a cap. This Damage bonus is reset if you Dodge Roll or use a Travel Skill.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.NonWeaponAttack, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, }, + gemFamily = { "Stoicism",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Primal Armament", + label = "Stoicism I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_weapon_elemental_damage_+%_final"] = { - mod("ElementalDamage", "MORE", nil, 0, KeywordFlag.Attack), - }, - }, baseFlags = { }, constantStats = { - { "support_weapon_elemental_damage_+%_final", 25 }, + { "support_no_fear_damage_+%_final_per_second_up_to_30%", 1 }, }, stats = { + "skill_using_no_fear", }, levels = { [1] = { actorLevel = 1, }, @@ -2452,48 +6048,107 @@ skills["SupportWeaponElementalDamagePlayer"] = { }, } } -skills["SupportQuillburstPlayer"] = { - name = "Quill Burst", - description = "Supports Melee Attack Skills. Supported Skills trigger Quill Burst, which deals your Thorns Damage in an Area around the target struck. Quill Burst can only be triggered on Hit after you've\nRetaliated with Thorns Damage.", +skills["SupportStoicismPlayerTwo"] = { + name = "Stoicism II", + description = "Supports Attack Skills you use yourself. Supported Skills steadily gain more Damage, up to a cap. This Damage bonus is reset if you Dodge Roll or use a Travel Skill.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SkillGrantedBySupport, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, }, + gemFamily = { "Stoicism",}, ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Quill Burst", + label = "Stoicism II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger", 3 }, + { "support_no_fear_damage_+%_final_per_second_up_to_30%", 2 }, }, stats = { + "skill_using_no_fear", }, levels = { [1] = { actorLevel = 1, }, }, }, - [2] = { - label = "Quill Burst", + } +} +skills["SupportStompingGroundPlayer"] = { + name = "Stomping Ground", + description = "Supports Travel skills, causing your footsteps to crack the earth and emit damaging shockwaves while using the skill.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Travel, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "StompingGround",}, + weaponTypes = { + ["Two Handed Mace"] = true, + }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Support", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + stats = { + "support_stomping_ground", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["StompingGroundShockwavePlayer"] = { + name = "Stomping Ground Shockwave", + hidden = true, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.NoAttackOrCastTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Shockwave", + baseEffectiveness = 0, + statDescriptionScope = "stomping_ground_shockwave", + statMap = { + ["attack_minimum_added_physical_damage_as_%_of_strength"] = { + skill("PhysicalMin", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + }, + ["attack_maximum_added_physical_damage_as_%_of_strength"] = { + skill("PhysicalMax", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + }, + }, + baseFlags = { + attack = true, + area = true, + melee = true, + }, + baseMods = { + skill("showAverage", true), + }, constantStats = { - { "trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger", 3 }, - { "triggered_by_spiked_gauntlets_support_%", 100 }, - { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "stomping_ground_trigger_on_footstep_%_chance", 100 }, + { "active_skill_has_%_standard_scaling_attack_damage", 50 }, }, stats = { "is_area_damage", - "display_skill_deals_thorns_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -2501,31 +6156,32 @@ skills["SupportQuillburstPlayer"] = { }, } } -skills["SupportRagePlayer"] = { - name = "Rage", - description = "Supports Melee Attacks, causing them to grant Rage on Hit.", +skills["SupportStunPlayer"] = { + name = "Stun I", + description = "Supports any skill that Hits Enemies, causing it to build up Stun more quickly.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, - ignoreMinionTypes = true, + gemFamily = { "Stun",}, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rage", - baseEffectiveness = 0.18000000715256, - incrementalEffectiveness = 0.092720001935959, + label = "Stun I", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { + mod("StunBuildup", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "gain_x_rage_on_melee_hit", 3 }, - { "support_rage_attack_damage_+%_final", 0 }, + { "support_overpower_hit_damage_stun_multiplier_+%_final", 50 }, }, stats = { }, @@ -2535,27 +6191,32 @@ skills["SupportRagePlayer"] = { }, } } -skills["SupportRageforgedPlayer"] = { - name = "Rageforged", - description = "Supports any damaging skill that you use or trigger yourself, causing it to consume Rage to deal more damage. If you don't have enough Rage to consume, the damage bonus will not apply.", +skills["SupportStunPlayerTwo"] = { + name = "Stun II", + description = "Supports any skill that Hits Enemies, causing it to build up Stun more quickly.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, }, + excludeSkillTypes = { }, + gemFamily = { "Stun",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rageforged", + label = "Stun II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { + mod("StunBuildup", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_rageforged_consumes_X_rage_to_enrage_skill_use", 10 }, - { "support_rageforged_enraged_damage_+%_final", 35 }, + { "support_overpower_hit_damage_stun_multiplier_+%_final", 70 }, }, stats = { }, @@ -2565,26 +6226,36 @@ skills["SupportRageforgedPlayer"] = { }, } } -skills["SupportRagingCryPlayer"] = { - name = "Raging Cry", - description = "Supports Warcry skills, causing them to grant you Rage on use depending on counted monster Power.", +skills["SupportStunPlayerThree"] = { + name = "Stun III", + description = "Supports any skill that Hits Enemies, causing it to build up Stun significantly more quickly, at the cost of Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Warcry, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Stun",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Raging Cry", + label = "Stun III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { + mod("StunBuildup", "MORE", nil), + }, + ["support_overpower_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "warcry_grant_X_rage_per_5_power", 4 }, + { "support_overpower_hit_damage_stun_multiplier_+%_final", 300 }, + { "support_overpower_damage_+%_final", -50 }, }, stats = { }, @@ -2594,29 +6265,29 @@ skills["SupportRagingCryPlayer"] = { }, } } -skills["SupportRallyPlayer"] = { - name = "Rally", - description = "Supports Melee Attacks you use yourself. Supported Skills Consume all Endurance Charge on use, causing you to restore a percentage of your maximum Life for each Charge Consumed.", +skills["SupportSyzygyPlayer"] = { + name = "Syzygy", + description = "Supports Slam Skills you use yourself. Hits from Supported Skills are considered Crushing Blows against Enemies which are both Ignited and Fully Armour Broken. Hits with Supported Skills that Heavily Stun Ignited and Fully Armour Broken Enemies will Intimidate them.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, }, - addSkillTypes = { SkillType.ConsumesCharges, SkillType.SupportedByRally, }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesEnduranceChargesOnUse, SkillType.SupportedByRally, SkillType.NOT, SkillType.AND, }, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + gemFamily = { "Syzygy",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rally", + label = "Syzygy", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge", 10 }, - }, stats = { - "skill_cannot_generate_endurance_charges", + "crushing_blow_vs_ignited_and_fully_armour_broken", + "intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken", + "active_skill_show_stars_aligned", }, levels = { [1] = { actorLevel = 1, }, @@ -2624,37 +6295,34 @@ skills["SupportRallyPlayer"] = { }, } } -skills["SupportRefractionPlayer"] = { - name = "Refraction", - description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which causes Armour to partially apply to Elemental Hit Damage.", +skills["SupportHardyTotemsPlayerThree"] = { + name = "Tawhoa's Tending", + description = "Supports Skills which create Totems, causing those Totems to have more Life. Totems created by Supported Skills explode on death, dealing Physical damage based on their Life.", color = 1, support = true, - requireSkillTypes = { SkillType.Banner, SkillType.Persistent, SkillType.Buff, SkillType.AND, SkillType.AND, }, + requireSkillTypes = { SkillType.SummonsTotem, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "HardyTotems",}, + isLineage = true, levels = { - [1] = { spiritReservationFlat = 10, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Refraction", + label = "Tawhoa's Tending", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"] = { - mod("ArmourAppliesToFireDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), - mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), - mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), - }, - ["support_tempered_valour_minimum_valour_to_apply_buff"] = { - mod("Multiplier:RefractionMinimumValour", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff"}), + ["support_totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), }, }, baseFlags = { }, constantStats = { - { "support_tempered_valour_%_armour_to_apply_to_elemental_damage", 20 }, - { "support_tempered_valour_minimum_valour_to_apply_buff", 25 }, + { "support_totem_life_+%_final", 50 }, + { "support_hardy_totems_trigger_splinter_explosion_on_death_chance_%", 100 }, }, stats = { }, @@ -2664,28 +6332,34 @@ skills["SupportRefractionPlayer"] = { }, } } -skills["SupportRetaliatePlayer"] = { - name = "Retaliate", - description = "Supports Melee Attack Skills you use yourself. Supported Skills gain much more damage the closer you are to being Heavily Stunned.", - color = 1, - support = true, - requireSkillTypes = { SkillType.Melee, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Meta, }, +skills["TriggeredSplinterExplosionHardyTotems"] = { + name = "Tawhoa's Vengeance", + hidden = true, + description = "Deals Physical Damage in an area, based on Totem Life.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Physical] = true, }, + castTime = 1, + qualityStats = { + }, levels = { - [1] = { manaMultiplier = 30, levelRequirement = 0, }, + [1] = { critChance = 5, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Retaliate", + label = "Tawhoa's Vengeance", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", + statDescriptionScope = "triggered_splinter_explosion", baseFlags = { + area = true, }, constantStats = { - { "support_max_attack_damage_+%_final_from_current_poise", 40 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "triggered_on_death_%", 100 }, + { "base_physical_damage_equal_to_%_of_totem_life", 10 }, + { "skill_disabled_unless_cloned", 1 }, }, stats = { + "is_area_damage", + "base_skill_is_totemified", }, levels = { [1] = { actorLevel = 1, }, @@ -2693,26 +6367,28 @@ skills["SupportRetaliatePlayer"] = { }, } } -skills["SupportReveberatePlayer"] = { - name = "Reverberate", - description = "Supports Slam Skills. Supported Skills have increased chance to cause Aftershocks the longer their Attack time.", +skills["SupportTearPlayer"] = { + name = "Tear", + description = "Supports Melee Attacks you use yourself or that you Trigger. On-Kill effects caused by Killing Blows with Supported Skills on Bleeding enemies have a chance to occur twice.", color = 1, support = true, - requireSkillTypes = { SkillType.Slam, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + gemFamily = { "Tear",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Reverberate", + label = "Tear", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "chance_to_aftershock_+%_per_250_ms_attack_time", 15 }, + { "on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies", 50 }, }, stats = { }, @@ -2722,31 +6398,32 @@ skills["SupportReveberatePlayer"] = { }, } } -skills["SupportRipPlayer"] = { - name = "Rip", - description = "Supports Melee Attack Skills you use yourself. Killing Blows with Supported Skills on Bleeding enemies create a Blood Remnant. Blood Remnants increase your Life regeneration rate for a short while after being collected.", +skills["SupportThornskinPlayer"] = { + name = "Thornskin I", + description = "Supports Persistent Buff Skills, causing you to deal increased Thorns Damage while the Supported Skill is active.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, }, - addSkillTypes = { SkillType.GeneratesRemnants, SkillType.Duration, }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, - ignoreMinionTypes = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Thornskin",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rip", + label = "Thornskin I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_thorns_spirit_cost_thorns_damage_+%"] = { + mod("ThornsDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Thornskin" }), + }, + }, baseFlags = { }, constantStats = { - { "create_life_remnant_on_melee_kill_bleeding_enemy_%", 100 }, - { "rip_support_life_remnant_creation_radius", 15 }, - { "base_remnant_duration_ms", 8000 }, - { "rip_support_buff_base_duration", 5000 }, - { "rip_support_life_regeneration_rate_+%", 10 }, + { "support_thorns_spirit_cost_thorns_damage_+%", 40 }, }, stats = { }, @@ -2756,26 +6433,34 @@ skills["SupportRipPlayer"] = { }, } } -skills["SupportRupturePlayer"] = { - name = "Rupture", - description = "Supports skills that Hit Enemies. Supported skills Aggravate Bleeding on Hitting Heavily Stunned Enemies.", +skills["SupportThornskinPlayerTwo"] = { + name = "Thornskin II", + description = "Supports Persistent Buff Skills, causing you to deal increased Thorns Damage while the Supported Skill is active.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Thornskin",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { spiritReservationFlat = 40, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rupture", + label = "Thornskin II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_thorns_spirit_cost_thorns_damage_+%"] = { + mod("ThornsDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Thornskin" }), + }, + }, baseFlags = { }, + constantStats = { + { "support_thorns_spirit_cost_thorns_damage_+%", 70 }, + }, stats = { - "support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy", }, levels = { [1] = { actorLevel = 1, }, @@ -2783,26 +6468,28 @@ skills["SupportRupturePlayer"] = { }, } } -skills["SupportRustedSpikesPlayer"] = { - name = "Rusted Spikes", - description = "Supports Skills which deal Damage with Hits. When Supported Skills Pin an Enemy, they also Aggravate Bleeding on that Enemy.", +skills["SupportTirelessPlayer"] = { + name = "Tireless", + description = "Supports Warcry Skills. Attacks Empowered by Supported Skills have a chance not to lower the Empowerment count of Supported Skills when they are used.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Warcry, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.DegenOnlySpellDamage, }, + excludeSkillTypes = { }, + gemFamily = { "Tireless",}, + ignoreMinionTypes = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Rusted Spikes", + label = "Tireless", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "aggravate_bleeding_on_pin_chance_%", 100 }, + { "chance_for_exerted_attacks_to_not_reduce_count_%", 25 }, }, stats = { }, @@ -2812,27 +6499,35 @@ skills["SupportRustedSpikesPlayer"] = { }, } } -skills["RuthlessSupportPlayer"] = { - name = "Ruthless", - description = "Supports Attacks, causing repeated uses to be more effective at Stunning enemies.", +skills["SupportTremorsPlayer"] = { + name = "Tremors", + description = "Supports Slam Skills you use yourself. Supported Skills gain multiple independent chances to cause Aftershocks, but deal less Damage.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "Tremors",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Ruthless", - incrementalEffectiveness = 0.092720001935959, + label = "Tremors", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_unstable_earth_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "support_ruthless_big_hit_max_count", 5 }, - { "support_ruthless_big_hit_stun_damage_+%_final", 500 }, + { "support_slam_chance_for_one_additional_aftershock_%", 30 }, + { "support_slam_chance_for_two_additional_aftershocks_%", 15 }, + { "support_slam_chance_for_three_additional_aftershocks_%", 10 }, + { "support_unstable_earth_damage_+%_final", -35 }, }, stats = { }, @@ -2842,35 +6537,28 @@ skills["RuthlessSupportPlayer"] = { }, } } -skills["SupportDeadlyIgnitesPlayer"] = { - name = "Searing Flame", - description = "Supports any skill that Hits enemies, causing inflicted Ignites to deal more damage but its Hits to deal less damage.", +skills["SupportUhtredAuguryPlayer"] = { + name = "Uhtred's Augury", + description = "Supports Skills which can gain levels, granting them many additional levels provided exactly two other supports are used with the supported Skill. Does not support skills which do not have levels.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "UhtredLineage",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Searing Flame", + label = "Uhtred's Augury", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_stronger_ignites_hit_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, - ["support_stronger_ignites_ignite_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Ignite), - }, - }, baseFlags = { }, constantStats = { - { "support_stronger_ignites_hit_damage_+%_final", -25 }, - { "support_stronger_ignites_ignite_effect_+%_final", 75 }, + { "supported_active_skill_gem_level_+_if_two_other_supports", 3 }, }, stats = { }, @@ -2880,28 +6568,28 @@ skills["SupportDeadlyIgnitesPlayer"] = { }, } } -skills["SupportSeeRedPlayer"] = { - name = "See Red", - description = "Supports Attack Skills. Bleeding inflicted with Supported Skills lasts significantly longer, but enemies you inflict Bleeding onto with Supported Skills will move and Attack faster.", +skills["SupportUhtredExodusPlayer"] = { + name = "Uhtred's Exodus", + description = "Supports Skills which can gain levels, granting them many additional levels provided no other supports are used with the supported Skill. Does not support skills which do not have levels.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "UhtredLineage",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "See Red", + label = "Uhtred's Exodus", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "bleeding_monsters_movement_velocity_+%", 15 }, - { "base_bleed_duration_+%", 50 }, - { "bleeding_monsters_attack_speed_+%", 15 }, + { "supported_active_skill_gem_level_+_if_no_other_supports", 3 }, }, stats = { }, @@ -2911,26 +6599,28 @@ skills["SupportSeeRedPlayer"] = { }, } } -skills["SupportSparPlayer"] = { - name = "Spar", - description = "Supports Melee Attack Skills. Supported Skills are more capable of Stunning Enemies the closer you are to being Heavily Stunned.", +skills["SupportUhtredOmenPlayer"] = { + name = "Uhtred's Omen", + description = "Supports Skills which can gain levels, granting them many additional levels provided exactly one other support is used with the supported Skill. Does not support skills which do not have levels.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "UhtredLineage",}, + isLineage = true, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Spar", + label = "Uhtred's Omen", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "support_hit_damage_stun_multiplier_+%_final_from_current_poise", 100 }, + { "supported_active_skill_gem_level_+_if_one_other_support", 3 }, }, stats = { }, @@ -2940,26 +6630,28 @@ skills["SupportSparPlayer"] = { }, } } -skills["SupportArmourBreakPlayer"] = { - name = "Splinter", - description = "Supports Skills that Hit Enemies, causing those Hits to Break Armour based on a portion of Physical Damage dealt.", +skills["SupportUnabatingPlayer"] = { + name = "Unabating", + description = "Supports Attack Skills you use yourself. While using Supported Skills, you gain increased Armour, with the increase scaling higher the longer the Attack time of the supported Skill. Cannot Support Channelling Skills.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, SkillType.Triggered, }, + gemFamily = { "Unabating",}, + ignoreMinionTypes = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Splinter", + label = "Unabating", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "armour_break_physical_damage_%_dealt_as_armour_break", 15 }, + { "armour_+%_while_performing_action_per_250_ms_attack_time", 25 }, }, stats = { }, @@ -2969,27 +6661,33 @@ skills["SupportArmourBreakPlayer"] = { }, } } -skills["SupportSteadfastPlayer"] = { - name = "Steadfast", - description = "Supports Channelling Skills you use yourself, granting you increased Ailment Threshold while Channelling them.", +skills["UnbreakableSupportPlayer"] = { + name = "Unbreakable", + description = "Supports any skill that you can use, making you harder to Stun while using it.", color = 1, support = true, - requireSkillTypes = { SkillType.Channel, }, + requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, }, - ignoreMinionTypes = true, + excludeSkillTypes = { SkillType.Instant, SkillType.Persistent, }, + gemFamily = { "Unbreakable",}, levels = { [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Steadfast", - incrementalEffectiveness = 0.054999999701977, + label = "Unbreakable", + incrementalEffectiveness = 0.092720001935959, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_unbreakable_stun_threshold_+%_final_while_performing_action"] = { + mod("StunThreshold", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + }, baseFlags = { }, constantStats = { - { "ailment_threshold_+%_while_channelling", 100 }, + { "support_unbreakable_light_stun_threshold_+%_final_while_performing_action", 200 }, + { "support_stability_heavy_stun_threshold_+%_final_while_performing_action", 30 }, }, stats = { }, @@ -2999,26 +6697,30 @@ skills["SupportSteadfastPlayer"] = { }, } } -skills["SupportStompingGroundPlayer"] = { - name = "Stomping Ground", - description = "Supports Travel skills, causing your footsteps to crack the earth and emit damaging shockwaves while using the skill.", +skills["SupportUnderminePlayer"] = { + name = "Undermine", + description = "Supports Attack Skills. Supported Skills Consume Maim on hit, Breaking a percentage of the Maimed target's Armour in doing so. Supported Skills cannot themselves inflict Maim.", color = 1, support = true, - requireSkillTypes = { SkillType.Travel, }, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Undermine",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Support", + label = "Undermine", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "consume_maim_on_hit_to_break_%_armour", 35 }, + }, stats = { - "support_stomping_ground", + "cannot_inflict_maim", }, levels = { [1] = { actorLevel = 1, }, @@ -3026,45 +6728,32 @@ skills["SupportStompingGroundPlayer"] = { }, } } -skills["StompingGroundShockwavePlayer"] = { - name = "Stomping Ground Shockwave", - hidden = true, - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, }, - castTime = 1, - qualityStats = { - }, +skills["SupportUnsteadyTempoPlayer"] = { + name = "Unsteady Tempo", + description = "Supports Melee Attack Skills you use yourself. Attacking with Supported Skills will cycle through various effects, with the first Attack in sequence inflicting Hobble on you. The second and third Attacks in sequence will powerfully scale chance to Critically Hit and overall damage, respectively, at which point the cycle will reset. Cannot Support Channelling Skills.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Channel, }, + gemFamily = { "UnsteadyTempo",}, + ignoreMinionTypes = true, levels = { - [1] = { critChance = 5, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Shockwave", + label = "Unsteady Tempo", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "stomping_ground_shockwave", - statMap = { - ["attack_minimum_added_physical_damage_as_%_of_strength"] = { - skill("PhysicalMin", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - }, - ["attack_maximum_added_physical_damage_as_%_of_strength"] = { - skill("PhysicalMax", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - }, - }, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { - nonWeaponAttack = true, - area = true, - melee = true, - }, - baseMods = { - skill("showAverage", true), }, constantStats = { - { "active_skill_base_area_of_effect_radius", 20 }, - { "stomping_ground_trigger_on_footstep_%_chance", 100 }, - { "attack_minimum_added_physical_damage_as_%_of_strength", 100 }, - { "attack_maximum_added_physical_damage_as_%_of_strength", 150 }, + { "unsteady_tempo_evasion_broken_as_%_of_life_on_first_hit", 40 }, + { "unsteady_tempo_critical_strike_chance_+%_final_on_second_hit", 30 }, + { "unsteady_tempo_damage_+%_final_on_third_hit", 20 }, }, stats = { - "is_area_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -3072,28 +6761,29 @@ skills["StompingGroundShockwavePlayer"] = { }, } } -skills["SupportSyzygyPlayer"] = { - name = "Syzygy", - description = "Supports Slam Skills you use yourself. Hits from Supported Skills are considered Crushing Blows against Enemies which are both Ignited and Fully Armour Broken. Hits with Supported Skills that Heavily Stun Ignited and Fully Armour Broken Enemies will Intimidate them.", +skills["SupportUnyieldingPlayer"] = { + name = "Unyielding", + description = "Supports Melee Attack Skills you use yourself. While using Supported Skills, a percentage of Damage taken is Recouped as Life, with the percentage scaling higher the longer the Attack time of the Supported Skill. Cannot Support Channelling Skills.", color = 1, support = true, - requireSkillTypes = { SkillType.Slam, }, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, SkillType.Triggered, }, + gemFamily = { "Unyielding",}, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Syzygy", + label = "Unyielding", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, + constantStats = { + { "damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time", 8 }, + }, stats = { - "crushing_blow_vs_ignited_and_fully_armour_broken", - "intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken", - "active_skill_show_stars_aligned", }, levels = { [1] = { actorLevel = 1, }, @@ -3101,27 +6791,37 @@ skills["SupportSyzygyPlayer"] = { }, } } -skills["SupportTearPlayer"] = { - name = "Tear", - description = "Supports Melee Attacks you use yourself. On-Kill effects caused by Killing Blows with Supported Skills on Bleeding enemies have a chance to occur twice.", +skills["SupportUpheavalPlayer"] = { + name = "Upheaval I", + description = "Supports Melee Attacks which create fissures in the ground, causing them to create an additional fissure at the cost of damage and attack speed.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, }, + requireSkillTypes = { SkillType.CreatesFissure, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, - ignoreMinionTypes = true, + excludeSkillTypes = { }, + gemFamily = { "Fissures",}, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Tear", + label = "Upheaval I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_additional_fissures_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_additional_fissures_attack_speed_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack), + }, + }, baseFlags = { }, constantStats = { - { "on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies", 50 }, + { "base_number_of_additional_fissures", 1 }, + { "support_additional_fissures_damage_+%_final", -20 }, + { "support_additional_fissures_attack_speed_+%_final", -20 }, }, stats = { }, @@ -3131,31 +6831,37 @@ skills["SupportTearPlayer"] = { }, } } -skills["SupportThornskinPlayer"] = { - name = "Thornskin", - description = "Supports Persistent Buff Skills, causing you to deal increased Thorns Damage while the Supported Skill is active.", +skills["SupportUpheavalPlayerTwo"] = { + name = "Upheaval II", + description = "Supports Melee Attacks which create fissures in the ground, causing them to create additional fissures at the cost of damage and attack speed.", color = 1, support = true, - requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + requireSkillTypes = { SkillType.CreatesFissure, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Fissures",}, levels = { - [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Thornskin", + label = "Upheaval II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_thorns_spirit_cost_thorns_damage_+%"] = { - mod("ThornsDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Thornskin" }), + ["support_additional_fissures_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_additional_fissures_attack_speed_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack), }, }, baseFlags = { }, constantStats = { - { "support_thorns_spirit_cost_thorns_damage_+%", 40 }, + { "base_number_of_additional_fissures", 2 }, + { "support_additional_fissures_damage_+%_final", -40 }, + { "support_additional_fissures_attack_speed_+%_final", -20 }, }, stats = { }, @@ -3165,26 +6871,27 @@ skills["SupportThornskinPlayer"] = { }, } } -skills["SupportTirelessPlayer"] = { - name = "Tireless", - description = "Supports Warcry Skills. Attacks Empowered by Supported Skills have a chance not to lower the Empowerment count of Supported Skills when they are used.", +skills["SupportUrgentTotemsPlayer"] = { + name = "Urgent Totems I", + description = "Supports Skills which create Totems, causing those Skills to place Totems much more quickly.", color = 1, support = true, - requireSkillTypes = { SkillType.Warcry, }, + requireSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "UrgentTotems",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Tireless", + label = "Urgent Totems I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "chance_for_exerted_attacks_to_not_reduce_count_%", 30 }, + { "summon_totem_cast_speed_+%", 80 }, }, stats = { }, @@ -3194,34 +6901,27 @@ skills["SupportTirelessPlayer"] = { }, } } -skills["SupportTremorsPlayer"] = { - name = "Tremors", - description = "Supports Slam Skills you use yourself. Supported Skills gain multiple independent chances to cause Aftershocks, but deal less Damage.", +skills["SupportUrgentTotemsPlayerTwo"] = { + name = "Urgent Totems II", + description = "Supports Skills which create Totems, causing those Skills to place Totems much more quickly.", color = 1, support = true, - requireSkillTypes = { SkillType.Slam, }, + requireSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, }, + excludeSkillTypes = { }, + gemFamily = { "UrgentTotems",}, levels = { [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Tremors", + label = "Urgent Totems II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_unstable_earth_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, - }, baseFlags = { }, constantStats = { - { "support_slam_chance_for_one_additional_aftershock_%", 30 }, - { "support_slam_chance_for_two_additional_aftershocks_%", 15 }, - { "support_slam_chance_for_three_additional_aftershocks_%", 10 }, - { "support_unstable_earth_damage_+%_final", -35 }, + { "summon_totem_cast_speed_+%", 100 }, }, stats = { }, @@ -3231,27 +6931,29 @@ skills["SupportTremorsPlayer"] = { }, } } -skills["SupportUnabatingPlayer"] = { - name = "Unabating", - description = "Supports Attack Skills you use yourself. While using Supported Skills, you gain increased Armour, with the increase scaling higher the longer the Attack time of the supported Skill. Cannot Support Channelling Skills.", +skills["SupportUrgentTotemsPlayerThree"] = { + name = "Urgent Totems III", + description = "Supports Skills which create Totems, causing those Skills to place Totems much more quickly. Totems created by Supported Skills have increased Attack and Cast Speed.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, }, + requireSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, }, - ignoreMinionTypes = true, + excludeSkillTypes = { }, + gemFamily = { "UrgentTotems",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Unabating", + label = "Urgent Totems III", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "armour_+%_while_performing_action_per_250_ms_attack_time", 25 }, + { "summon_totem_cast_speed_+%", 100 }, + { "totem_skill_cast_speed_+%", 20 }, + { "totem_skill_attack_speed_+%", 20 }, }, stats = { }, @@ -3261,32 +6963,29 @@ skills["SupportUnabatingPlayer"] = { }, } } -skills["UnbreakableSupportPlayer"] = { - name = "Unbreakable", - description = "Supports any skill that you can use, making you harder to Stun while using it.", +skills["SupportUruksSmeltingPlayer"] = { + name = "Uruk's Smelting", + description = "Supports any skill, causing Armour Break it inflicts to be stronger. Fully Breaking Armour with Supported Skills permanently increases the Physical Damage taken by those affected, up to a cap.", color = 1, support = true, - requireSkillTypes = { }, + requireSkillTypes = { SkillType.Spell, SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, SkillType.NonDamageArmourBreak, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Instant, SkillType.Persistent, }, + excludeSkillTypes = { }, + gemFamily = { "ArmourDemolisher",}, + isLineage = true, levels = { - [1] = { manaMultiplier = 10, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Unbreakable", - incrementalEffectiveness = 0.092720001935959, + label = "Uruk's Smelting", + incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_unbreakable_stun_threshold_+%_final_while_performing_action"] = { - mod("StunThreshold", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - }, baseFlags = { }, constantStats = { - { "support_unbreakable_light_stun_threshold_+%_final_while_performing_action", 200 }, - { "support_stability_heavy_stun_threshold_+%_final_while_performing_action", 30 }, + { "support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%", 2 }, + { "support_increased_armour_break_armour_break_amount_+%_final", 70 }, }, stats = { }, @@ -3296,29 +6995,31 @@ skills["UnbreakableSupportPlayer"] = { }, } } -skills["SupportUnderminePlayer"] = { - name = "Undermine", - description = "Supports Attack Skills. Supported Skills Consume Maim on hit, Breaking a percentage of the Maimed target's Armour in doing so. Supported Skills cannot themselves inflict Maim.", +skills["SupportUulNetolsEmbracePlayer"] = { + name = "Uul-Netol's Embrace", + description = "Supports Skills that can cause Damaging Hits, granting extra Chaos damage and causing Chaos damage to Break Armour.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "BreachLineage",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { manaMultiplier = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Undermine", + label = "Uul-Netol's Embrace", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "consume_maim_on_hit_to_break_%_armour", 35 }, + { "non_skill_base_physical_damage_%_to_gain_as_chaos", 20 }, + { "chaos_damage_%_dealt_as_armour_break", 20 }, }, stats = { - "cannot_inflict_maim", }, levels = { [1] = { actorLevel = 1, }, @@ -3326,29 +7027,29 @@ skills["SupportUnderminePlayer"] = { }, } } -skills["SupportUnsteadyTempoPlayer"] = { - name = "Unsteady Tempo", - description = "Supports Melee Attack Skills you use yourself. Attacking with Supported Skills will cycle through various effects, with the first Attack in sequence inflicting Hobble on you. The second and third Attacks in sequence will powerfully scale chance to Critically Hit and overall damage, respectively, at which point the cycle will reset. Cannot Support Channelling Skills.", +skills["SupportVanguardPlayer"] = { + name = "Vanguard I", + description = "Supports Shield Skills, causing you to gain Guard on Stunning Enemies with the Supported Skill.", color = 1, support = true, - requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, + requireSkillTypes = { SkillType.Attack, SkillType.RequiresShield, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, }, - ignoreMinionTypes = true, + excludeSkillTypes = { }, + gemFamily = { "Vanguard",}, levels = { [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Unsteady Tempo", + label = "Vanguard I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "unsteady_tempo_evasion_broken_as_%_of_life_on_first_hit", 40 }, - { "unsteady_tempo_critical_strike_chance_+%_final_on_second_hit", 30 }, - { "unsteady_tempo_damage_+%_final_on_third_hit", 20 }, + { "gain_X_guard_on_heavy_stun_per_10_strength", 4 }, + { "gain_X_guard_on_stun_per_10_strength", 2 }, + { "guard_on_stun_guard_duration_ms", 4000 }, }, stats = { }, @@ -3358,26 +7059,29 @@ skills["SupportUnsteadyTempoPlayer"] = { }, } } -skills["SupportUnyieldingPlayer"] = { - name = "Unyielding", - description = "Supports Melee Attack Skills you use yourself. While using Supported Skills, a percentage of Damage taken is Recouped as Life, with the percentage scaling higher the longer the Attack time of the Supported Skill. Cannot Support Channelling Skills.", +skills["SupportVanguardPlayerTwo"] = { + name = "Vanguard II", + description = "Supports Shield Skills, causing you to gain Guard on Stunning Enemies with the Supported Skill.", color = 1, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + requireSkillTypes = { SkillType.Attack, SkillType.RequiresShield, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, }, + excludeSkillTypes = { }, + gemFamily = { "Vanguard",}, levels = { - [1] = { manaMultiplier = 20, levelRequirement = 0, }, + [1] = { manaMultiplier = 10, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Unyielding", + label = "Vanguard II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time", 8 }, + { "gain_X_guard_on_heavy_stun_per_10_strength", 6 }, + { "gain_X_guard_on_stun_per_10_strength", 2 }, + { "guard_on_stun_guard_duration_ms", 4000 }, }, stats = { }, @@ -3387,36 +7091,34 @@ skills["SupportUnyieldingPlayer"] = { }, } } -skills["SupportUpheavalPlayer"] = { - name = "Upheaval", - description = "Supports Melee Attacks which create fissures in the ground, causing them to create additional fissures at the cost of damage and attack speed.", +skills["SupportVitalityPlayer"] = { + name = "Vitality I", + description = "Supports Persistent Buff Skills, causing you to gain Life Regeneration while the Skill is active.", color = 1, support = true, - requireSkillTypes = { SkillType.CreatesFissure, }, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Vitality",}, + isLineage = true, levels = { - [1] = { levelRequirement = 0, }, + [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Upheaval", + label = "Vitality I", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_additional_fissures_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, - ["support_additional_fissures_attack_speed_+%_final"] = { - mod("Speed", "MORE", nil, ModFlag.Attack), + ["support_vitality_life_regeneration_rate_per_minute_%"] = { + mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Vitality" }), + div = 60, }, }, baseFlags = { }, constantStats = { - { "base_number_of_additional_fissures", 2 }, - { "support_additional_fissures_damage_+%_final", -40 }, - { "support_additional_fissures_attack_speed_+%_final", -20 }, + { "support_vitality_life_regeneration_rate_per_minute_%", 60 }, }, stats = { }, @@ -3426,20 +7128,22 @@ skills["SupportUpheavalPlayer"] = { }, } } -skills["SupportVitalityPlayer"] = { - name = "Vitality", +skills["SupportVitalityPlayerTwo"] = { + name = "Vitality II", description = "Supports Persistent Buff Skills, causing you to gain Life Regeneration while the Skill is active.", color = 1, support = true, requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, addSkillTypes = { }, excludeSkillTypes = { }, + gemFamily = { "Vitality",}, + isLineage = true, levels = { - [1] = { spiritReservationFlat = 20, levelRequirement = 0, }, + [1] = { spiritReservationFlat = 40, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Vitality", + label = "Vitality II", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -3451,7 +7155,7 @@ skills["SupportVitalityPlayer"] = { baseFlags = { }, constantStats = { - { "support_vitality_life_regeneration_rate_per_minute_%", 60 }, + { "support_vitality_life_regeneration_rate_per_minute_%", 120 }, }, stats = { }, @@ -3468,7 +7172,8 @@ skills["SupportVolcanicEruptionPlayer"] = { support = true, requireSkillTypes = { SkillType.MeleeSingleTarget, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, }, + gemFamily = { "VolcanicEruption",}, ignoreMinionTypes = true, levels = { [1] = { manaMultiplier = 20, levelRequirement = 0, }, @@ -3500,7 +7205,7 @@ skills["TriggeredVolcanicEruptionPlayer"] = { qualityStats = { }, levels = { - [1] = { baseMultiplier = 0.4, storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, + [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.4, }, }, statSets = { [1] = { @@ -3518,9 +7223,43 @@ skills["TriggeredVolcanicEruptionPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, { "skill_mortar_minimum_projectile_distance", 5 }, { "skill_mortar_maximum_projectile_distance", 15 }, + { "active_skill_has_%_standard_scaling_attack_damage", 20 }, }, stats = { "base_is_projectile", + "is_area_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportXophsPyrePlayer"] = { + name = "Xoph's Pyre", + description = "Supports Skills that can cause Damaging Hits, granting extra Chaos damage and causing Chaos damage to Contribute to Ignites.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "BreachLineage",}, + isLineage = true, + levels = { + [1] = { manaMultiplier = 20, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Xoph's Pyre", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "non_skill_base_fire_damage_%_to_gain_as_chaos", 20 }, + }, + stats = { + "base_chaos_damage_can_ignite", }, levels = { [1] = { actorLevel = 1, }, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/advancing_strike.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/advancing_strike.lua index 1eead04881..f6ef8f8eba 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/advancing_strike.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/advancing_strike.lua @@ -99,11 +99,11 @@ return { [2]="#" } }, - text="Deals {0}% of Consumed Blood Loss as additional unscalable Physical Attack Damage" + text="Enemies lose Life equal to {0}% of Consumed Blood Loss" } }, stats={ - [1]="blood_hunt_explosion_%_blood_loss_to_deal_unscalable" + [1]="blood_hunt_explosion_%_blood_loss_to_deal_as_life_loss" } }, [5]={ @@ -130,7 +130,7 @@ return { ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, ["blood_hunt_X_blood_loss_consumed_for_skill_area_of_effect_+%_final"]=5, - ["blood_hunt_explosion_%_blood_loss_to_deal_unscalable"]=4, + ["blood_hunt_explosion_%_blood_loss_to_deal_as_life_loss"]=4, ["blood_hunt_skill_area_of_effect_+%_final_per_X_blood_loss_consumed_up_to_500%"]=5, ["cannot_cause_bleeding"]=1, parent="skill_stat_descriptions", diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_projectile.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_projectile.lua new file mode 100644 index 0000000000..45381d409b --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_projectile.lua @@ -0,0 +1,131 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="skill_empower_limitation_specifier_for_stat_description" + } + }, + [2]={ + stats={ + [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" + } + }, + [3]={ + stats={ + [1]="non_spell_cast_duration_ms" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact Radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact Radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Converts {0}% of Physical damage to Fire damage" + } + }, + stats={ + [1]="ancestral_cry_non_skill_physical_to_fire_convert_%" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + }, + text="Fires {0:+d} Molten Projectile" + }, + [2]={ + limit={ + }, + text="Fires {0:+d} Molten Projectiles" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} Molten Projectile" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} Molten Projectiles" + } + }, + stats={ + [1]="base_number_of_projectiles", + [2]="skill_can_fire_arrows", + [3]="quality_display_base_number_of_projectiles_is_gem" + } + }, + ["active_skill_base_area_of_effect_radius"]=4, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=2, + ["ancestral_cry_non_skill_physical_to_fire_convert_%"]=5, + ["base_number_of_projectiles"]=6, + ["non_spell_cast_duration_ms"]=3, + parent="skill_stat_descriptions", + ["quality_display_base_number_of_projectiles_is_gem"]=6, + ["skill_can_fire_arrows"]=6, + ["skill_empower_limitation_specifier_for_stat_description"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_shockwave.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_shockwave.lua new file mode 100644 index 0000000000..0f4c1f0f86 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_shockwave.lua @@ -0,0 +1,83 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="skill_empower_limitation_specifier_for_stat_description" + } + }, + [2]={ + stats={ + [1]="base_number_of_projectiles" + } + }, + [3]={ + stats={ + [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Slam radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Slam radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Converts {0}% of Physical damage to Fire damage" + } + }, + stats={ + [1]="active_skill_base_physical_damage_%_to_convert_to_fire" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["active_skill_base_physical_damage_%_to_convert_to_fire"]=6, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=3, + ["base_number_of_projectiles"]=2, + parent="skill_stat_descriptions", + ["skill_empower_limitation_specifier_for_stat_description"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_statset_0.lua new file mode 100644 index 0000000000..4fd944f1af --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_statset_0.lua @@ -0,0 +1,170 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="skill_empower_limitation_specifier_for_stat_description" + } + }, + [2]={ + stats={ + [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" + } + }, + [3]={ + stats={ + [1]="attack_duration_ms" + } + }, + [4]={ + stats={ + [1]="hundred_times_attacks_per_second" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Warcry radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcry radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Knocks back and interrupts enemies in a smaller area" + } + }, + stats={ + [1]="warcries_knock_back_enemies" + } + }, + [8]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Warcry duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcry duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% increased Warcry duration per Endurance Charge consumed" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Consumes all Endurance Charges to increase Warcry duration by {0}% per charge" + } + }, + stats={ + [1]="ancestral_cry_duration_+%_final_per_removable_endurance_charge" + } + }, + [10]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Converts {0}% of Physical Damage to Fire damage with Boosted Attacks" + } + }, + stats={ + [1]="ancestral_cry_non_skill_physical_to_fire_convert_%" + } + }, + [11]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=5, + ["active_skill_base_area_of_effect_radius"]=6, + ["ancestral_cry_duration_+%_final_per_removable_endurance_charge"]=9, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=2, + ["ancestral_cry_non_skill_physical_to_fire_convert_%"]=10, + ["attack_duration_ms"]=3, + ["base_skill_effect_duration"]=8, + ["hundred_times_attacks_per_second"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=11, + ["skill_empower_limitation_specifier_for_stat_description"]=1, + ["warcries_knock_back_enemies"]=7 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_statset_1.lua new file mode 100644 index 0000000000..ca6ea5b09f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancestral_cry_statset_1.lua @@ -0,0 +1,70 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="skill_empower_limitation_specifier_for_stat_description" + } + }, + [2]={ + stats={ + [1]="base_number_of_projectiles" + } + }, + [3]={ + stats={ + [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" + } + }, + [4]={ + stats={ + [1]="attack_duration_ms" + } + }, + [5]={ + stats={ + [1]="hundred_times_attacks_per_second" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Footstep radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Footstep radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_base_area_of_effect_radius"]=6, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=3, + ["attack_duration_ms"]=4, + ["base_number_of_projectiles"]=2, + ["hundred_times_attacks_per_second"]=5, + parent="skill_stat_descriptions", + ["skill_empower_limitation_specifier_for_stat_description"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/apply_rimeshield.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/apply_rimeshield.lua new file mode 100644 index 0000000000..301160aa01 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/apply_rimeshield.lua @@ -0,0 +1,143 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Ice Armour radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ice Armour radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Ice Armour duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ice Armour duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Ice Armour grants {0}% reduced damage taken from Hits" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ice Armour grants {0}% increased damage taken from Hits" + } + }, + stats={ + [1]="rime_damage_taken_+%_final" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Ice Armour deals {0} to {1} Cold damage to enemies" + } + }, + stats={ + [1]="spell_minimum_added_cold_damage", + [2]="spell_maximum_added_cold_damage" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["rime_damage_taken_+%_final"]=4, + ["skill_effect_duration"]=5, + ["spell_maximum_added_cold_damage"]=6, + ["spell_minimum_added_cold_damage"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/awakened_forest.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/awakened_forest.lua new file mode 100644 index 0000000000..8df09f2410 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/awakened_forest.lua @@ -0,0 +1,125 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + [2]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="DNT Vines impact in a {0}x{1} metre rectangle" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Vines spawn within a {0} metre radius of the targeting area" + } + }, + stats={ + [1]="active_skill_base_tertiary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_tertiary_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Targeting area moves {0} metres per second" + } + }, + stats={ + [1]="awakened_forest_move_targeting_area_X_units_per_second" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Spawn {0} vine per cast time" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Spawn {0} vines per cast time" + } + }, + stats={ + [1]="awakened_forest_spawn_X_vines_per_cast_time" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=2, + ["active_skill_base_tertiary_area_of_effect_radius"]=3, + ["active_skill_secondary_area_of_effect_radius"]=4, + ["active_skill_tertiary_area_of_effect_radius"]=5, + ["awakened_forest_move_targeting_area_X_units_per_second"]=6, + ["awakened_forest_spawn_X_vines_per_cast_time"]=7, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_0.lua new file mode 100644 index 0000000000..c74db996e4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_0.lua @@ -0,0 +1,105 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bolt range@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Bolts target enemies within {0:+d} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Bolts target enemies within {0:+d} metres" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Bolts target enemies within {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Bolts target enemies within {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_1.lua new file mode 100644 index 0000000000..ed0ad12ac7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_1.lua @@ -0,0 +1,97 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Fire-Infused explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire-Infused explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Creates Ignited Ground every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Creates Ignited Ground every {0} seconds" + } + }, + stats={ + [1]="ball_lightning_infused_burning_ground_interval_ms" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Fire-Infused explosion deals {0} to {1} Fire damage" + } + }, + stats={ + [1]="spell_minimum_base_fire_damage", + [2]="spell_maximum_base_fire_damage" + } + }, + ["active_skill_base_secondary_area_of_effect_radius"]=1, + ["ball_lightning_infused_burning_ground_interval_ms"]=2, + parent="skill_stat_descriptions", + ["spell_maximum_base_fire_damage"]=3, + ["spell_minimum_base_fire_damage"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_2.lua new file mode 100644 index 0000000000..655f6860d7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ball_lightning_statset_2.lua @@ -0,0 +1,144 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metre to Ignited Ground radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metres to Ignited Ground radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Ignited Ground radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignited Ground radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_tertiary_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignited Ground radius@{0}m" + } + }, + stats={ + [1]="active_skill_tertiary_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Ignited Ground duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignited Ground duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Ignites as though dealing {0} to {1} Fire damage" + } + }, + stats={ + [1]="spell_minimum_base_fire_damage", + [2]="spell_maximum_base_fire_damage" + } + }, + ["active_skill_base_tertiary_area_of_effect_radius"]=1, + ["active_skill_tertiary_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4, + ["spell_maximum_base_fire_damage"]=5, + ["spell_minimum_base_fire_damage"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ballistic_ice_projectile.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ballistic_ice_projectile.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ballistic_ice_projectile.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bear_slam.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bear_slam.lua new file mode 100644 index 0000000000..43f4c2fc51 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bear_slam.lua @@ -0,0 +1,126 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Jagged Ground duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Jagged Ground duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Consumes {0} Rage to perform enraged slam if possible" + } + }, + stats={ + [1]="bear_slam_spend_X_rage_for_stronger_slam", + [2]="stronger_bear_slam_X_rage_requirement" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_ground_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["bear_slam_spend_X_rage_for_stronger_slam"]=4, + parent="skill_stat_descriptions", + ["skill_ground_effect_duration"]=5, + ["stronger_bear_slam_X_rage_requirement"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/black_powder_blitz.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/black_powder_blitz.lua new file mode 100644 index 0000000000..610521f8a5 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/black_powder_blitz.lua @@ -0,0 +1,18 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="spell_cast_time_cannot_be_modified" + } + }, + [2]={ + stats={ + [1]="dodge_roll_base_travel_distance" + } + }, + ["dodge_roll_base_travel_distance"]=2, + parent="skill_stat_descriptions", + ["spell_cast_time_cannot_be_modified"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_0.lua index 6ee17f76c3..832af3483a 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_0.lua @@ -3,6 +3,21 @@ return { [1]={ + stats={ + [1]="spell_minimum_base_fire_damage" + } + }, + [2]={ + stats={ + [1]="spell_maximum_base_fire_damage" + } + }, + [3]={ + stats={ + [1]="ember_fusillade_damage_+%_final_per_ember_fired" + } + }, + [4]={ [1]={ [1]={ [1]={ @@ -35,7 +50,7 @@ return { [1]="base_skill_effect_duration" } }, - [2]={ + [5]={ [1]={ [1]={ limit={ @@ -51,23 +66,26 @@ return { [1]="blazing_cluster_maximum_number_of_projectiles_allowed" } }, - [3]={ + [6]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, - [4]={ + [7]={ [1]={ }, stats={ [1]="total_number_of_projectiles_to_fire" } }, - ["base_skill_effect_duration"]=1, - ["blazing_cluster_maximum_number_of_projectiles_allowed"]=2, + ["base_skill_effect_duration"]=4, + ["blazing_cluster_maximum_number_of_projectiles_allowed"]=5, + ["ember_fusillade_damage_+%_final_per_ember_fired"]=3, parent="skill_stat_descriptions", - ["skill_effect_duration"]=3, - ["total_number_of_projectiles_to_fire"]=4 + ["skill_effect_duration"]=6, + ["spell_maximum_base_fire_damage"]=2, + ["spell_minimum_base_fire_damage"]=1, + ["total_number_of_projectiles_to_fire"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_1.lua index 361299ccdb..2ef185ab66 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_1.lua @@ -8,6 +8,11 @@ return { } }, [2]={ + stats={ + [1]="blazing_cluster_maximum_number_of_projectiles_allowed" + } + }, + [3]={ [1]={ [1]={ [1]={ @@ -27,7 +32,7 @@ return { [1]="active_skill_area_of_effect_radius" } }, - [3]={ + [4]={ [1]={ [1]={ [1]={ @@ -60,8 +65,9 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, - parent="specific_skill_stat_descriptions/blazing_cluster_statset_0", + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["blazing_cluster_maximum_number_of_projectiles_allowed"]=2, + parent="skill_stat_descriptions", ["total_number_of_projectiles_to_fire"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_2.lua new file mode 100644 index 0000000000..cc206c96ec --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blazing_cluster_statset_2.lua @@ -0,0 +1,12 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="total_number_of_projectiles_to_fire" + } + }, + parent="skill_stat_descriptions", + ["total_number_of_projectiles_to_fire"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bleeding_concoction.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bleeding_concoction.lua new file mode 100644 index 0000000000..ad1505781a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bleeding_concoction.lua @@ -0,0 +1,74 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to Aggravate Bleeding on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Aggravate Bleeding on Hit" + } + }, + stats={ + [1]="base_aggravate_bleeding_on_attack_hit_chance_%" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_aggravate_bleeding_on_attack_hit_chance_%"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_cone.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_cone.lua index 72303d1e66..a5e764dfb3 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_cone.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_cone.lua @@ -132,16 +132,68 @@ return { } }, [4]={ + [1]={ + [1]={ + limit={ + }, + text="Minions have {0}% increased Movement Speed" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% increased Movement Speed" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced Movement Speed" + } + }, + stats={ + [1]="minion_movement_speed_+%" + } + }, + [5]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Reviving Minions can only create\n one Bone Construct per death" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, ["base_skill_effect_duration"]=3, + ["minion_movement_speed_+%"]=4, parent="skill_stat_descriptions", ["quality_display_base_skill_effect_duration_is_gem"]=3, - ["skill_effect_duration"]=4 + ["skill_effect_duration"]=5, + ["skill_specific_stat_description_mode"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_offering.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_offering.lua index 528fc1f0e1..d2e151372a 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_offering.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bone_offering.lua @@ -41,6 +41,51 @@ return { } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions take {0}% increased damage from Hits while shielded" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions take {0}% reduced damage from Hits while shielded" + } + }, + stats={ + [1]="bone_offering_damage_taken_+%_final" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Absorbs first Hit dealing over {0}% of Minion's maximum life" + } + }, + stats={ + [1]="bone_offering_hit_threshold_%_of_maximum_life" + } + }, + [5]={ [1]={ }, stats={ @@ -49,6 +94,8 @@ return { }, ["base_secondary_skill_effect_duration"]=1, ["base_skill_effect_duration"]=2, + ["bone_offering_damage_taken_+%_final"]=3, + ["bone_offering_hit_threshold_%_of_maximum_life"]=4, parent="skill_stat_descriptions", - ["skill_effect_duration"]=3 + ["skill_effect_duration"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/boneshatter.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/boneshatter.lua index 7f777f166c..987a94c686 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/boneshatter.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/boneshatter.lua @@ -55,7 +55,37 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for Shockwaves originating\nfrom a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for Shockwaves originating\nfrom a Unique enemy" + } + }, + stats={ + [1]="boneshatter_damage_+%_final_if_created_from_unique" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, + ["boneshatter_damage_+%_final_if_created_from_unique"]=3, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/brute_warcry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/brute_warcry.lua new file mode 100644 index 0000000000..e0b05aa90d --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/brute_warcry.lua @@ -0,0 +1,122 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Warcry radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcry radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Frozen explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Frozen explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Indimidation duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Indimidation duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["active_skill_base_secondary_area_of_effect_radius"]=4, + ["base_skill_effect_duration"]=5, + ["never_freeze"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_incendiary.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_incendiary.lua index 3cfff76863..d107a31d55 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_incendiary.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_incendiary.lua @@ -8,13 +8,23 @@ return { } }, [2]={ + stats={ + [1]="projectiles_can_shotgun" + } + }, + [3]={ + stats={ + [1]="base_knockback_distance" + } + }, + [4]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [3]={ + [5]={ [1]={ [1]={ [1]={ @@ -34,7 +44,7 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [4]={ + [6]={ [1]={ [1]={ limit={ @@ -55,27 +65,34 @@ return { [2]="skill_can_fire_arrows" } }, - [5]={ + [7]={ [1]={ [1]={ + limit={ + }, + text="{0:+d}% increased Ignite duration for each Fragment in a single hit" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Multiple fragments can Hit the same target\nMultiple Fragments hitting a target simultaneously will combine their damage into a single Hit" + text="{0}% increased Ignite duration for each Fragment in a single hit" } }, stats={ - [1]="projectiles_can_shotgun" + [1]="ignite_duration_+%_per_shotgun_pellet_hit" } }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, - ["base_number_of_projectiles"]=4, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["base_knockback_distance"]=3, + ["base_number_of_projectiles"]=6, + ["ignite_duration_+%_per_shotgun_pellet_hit"]=7, parent="skill_stat_descriptions", - ["projectiles_can_shotgun"]=5, + ["projectiles_can_shotgun"]=2, ["quality_display_base_number_of_projectiles_is_gem"]=1, - ["skill_can_fire_arrows"]=4 + ["skill_can_fire_arrows"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_permafrost.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_permafrost.lua index 9372fb23b5..e5a2d99d77 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_permafrost.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_permafrost.lua @@ -3,13 +3,23 @@ return { [1]={ + stats={ + [1]="base_knockback_distance" + } + }, + [2]={ + stats={ + [1]="projectiles_can_shotgun" + } + }, + [3]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [2]={ + [4]={ [1]={ [1]={ [1]={ @@ -29,7 +39,7 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [3]={ + [5]={ [1]={ [1]={ limit={ @@ -72,27 +82,12 @@ return { [3]="quality_display_base_number_of_projectiles_is_gem" } }, - [4]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Multiple fragments can Hit the same target\nMultiple Fragments hitting a target simultaneously will combine their damage into a single Hit" - } - }, - stats={ - [1]="projectiles_can_shotgun" - } - }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, - ["base_number_of_projectiles"]=3, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["base_knockback_distance"]=1, + ["base_number_of_projectiles"]=5, parent="skill_stat_descriptions", - ["projectiles_can_shotgun"]=4, - ["quality_display_base_number_of_projectiles_is_gem"]=3, - ["skill_can_fire_arrows"]=3 + ["projectiles_can_shotgun"]=2, + ["quality_display_base_number_of_projectiles_is_gem"]=5, + ["skill_can_fire_arrows"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_piercing_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_piercing_statset_0.lua new file mode 100644 index 0000000000..d93d883cea --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_piercing_statset_0.lua @@ -0,0 +1,83 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + stats={ + [1]="quality_display_base_number_of_projectiles_is_gem" + } + }, + [3]={ + stats={ + [1]="base_knockback_distance" + } + }, + [4]={ + stats={ + [1]="projectiles_can_shotgun" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} fragments per shot" + } + }, + stats={ + [1]="base_number_of_projectiles", + [2]="skill_can_fire_arrows" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Bolts Pierce {0} Target" + }, + [2]={ + [1]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Bolts Pierce {0} Targets" + } + }, + stats={ + [1]="projectile_base_number_of_targets_to_pierce" + } + }, + ["base_knockback_distance"]=3, + ["base_number_of_projectiles"]=5, + ["never_freeze"]=1, + parent="skill_stat_descriptions", + ["projectile_base_number_of_targets_to_pierce"]=6, + ["projectiles_can_shotgun"]=4, + ["quality_display_base_number_of_projectiles_is_gem"]=2, + ["skill_can_fire_arrows"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_piercing_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_piercing_statset_1.lua new file mode 100644 index 0000000000..8f46f42f6b --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_piercing_statset_1.lua @@ -0,0 +1,113 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + stats={ + [1]="quality_display_base_number_of_projectiles_is_gem" + } + }, + [3]={ + stats={ + [1]="base_knockback_distance" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for explosions originating\nfrom a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for explosions originating\nfrom a Unique enemy" + } + }, + stats={ + [1]="frag_rounds_damage_+%_final_if_created_from_unique" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Consumes Freeze on enemies Hit to\ntrigger a secondary explosion at their location\nSecondary explosions cannot Consume Freeze" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["base_knockback_distance"]=3, + ["frag_rounds_damage_+%_final_if_created_from_unique"]=6, + ["never_freeze"]=1, + parent="skill_stat_descriptions", + ["quality_display_base_number_of_projectiles_is_gem"]=2, + ["skill_specific_stat_description_mode"]=7 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_stormblast.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_stormblast.lua index 87f03be4db..f556819557 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_stormblast.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/burst_shot_stormblast.lua @@ -13,6 +13,16 @@ return { } }, [3]={ + stats={ + [1]="projectiles_can_shotgun" + } + }, + [4]={ + stats={ + [1]="base_knockback_distance" + } + }, + [5]={ [1]={ [1]={ limit={ @@ -33,7 +43,7 @@ return { [2]="skill_can_fire_arrows" } }, - [4]={ + [6]={ [1]={ [1]={ limit={ @@ -58,27 +68,12 @@ return { [1]="number_of_chains" } }, - [5]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Multiple fragments can Hit the same target\nMultiple Fragments hitting a target simultaneously will combine their damage into a single Hit" - } - }, - stats={ - [1]="projectiles_can_shotgun" - } - }, - ["base_number_of_projectiles"]=3, + ["base_knockback_distance"]=4, + ["base_number_of_projectiles"]=5, ["base_projectiles_cannot_chain"]=1, - ["number_of_chains"]=4, + ["number_of_chains"]=6, parent="skill_stat_descriptions", - ["projectiles_can_shotgun"]=5, + ["projectiles_can_shotgun"]=3, ["quality_display_base_number_of_projectiles_is_gem"]=2, - ["skill_can_fire_arrows"]=3 + ["skill_can_fire_arrows"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_stampede_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_stampede_statset_2.lua index f84384046a..946a9246a9 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_stampede_statset_2.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_stampede_statset_2.lua @@ -15,7 +15,7 @@ return { [2]="#" } }, - text="Detonates Jagged Ground within {0} metre radius of Slam and each patch of Jagged Ground detonated" + text="Explodes Jagged Ground within {0} metre radius of Slam and each patch of Jagged Ground exploded" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_slam_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_slam_statset_0.lua index 8f5d8fa8f1..aab0905c7a 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_slam_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_slam_statset_0.lua @@ -123,11 +123,19 @@ return { [2]="quality_display_supercharged_slam_is_gem" } }, + [6]={ + [1]={ + }, + stats={ + [1]="virtual_channelled_slam_max_stages" + } + }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, ["base_skill_effect_duration"]=1, ["channelled_slam_damage_+%_final_per_stage"]=4, ["channelled_slam_max_stages"]=5, parent="skill_stat_descriptions", - ["quality_display_supercharged_slam_is_gem"]=5 + ["quality_display_supercharged_slam_is_gem"]=5, + ["virtual_channelled_slam_max_stages"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_0.lua new file mode 100644 index 0000000000..f999110706 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_0.lua @@ -0,0 +1,77 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + stats={ + [1]="cannot_stun" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifers to Attack speed also affect this skill's cost" + } + }, + stats={ + [1]="attack_speed_modifiers_apply_to_over_time_cost" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["attack_speed_modifiers_apply_to_over_time_cost"]=5, + ["cannot_stun"]=2, + ["never_freeze"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_1.lua new file mode 100644 index 0000000000..3faeaa3919 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_1.lua @@ -0,0 +1,66 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + stats={ + [1]="attack_speed_modifiers_apply_to_over_time_cost" + } + }, + [3]={ + stats={ + [1]="cannot_stun" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["attack_speed_modifiers_apply_to_over_time_cost"]=2, + ["cannot_stun"]=3, + ["never_freeze"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_2.lua new file mode 100644 index 0000000000..3faeaa3919 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_2.lua @@ -0,0 +1,66 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + stats={ + [1]="attack_speed_modifiers_apply_to_over_time_cost" + } + }, + [3]={ + stats={ + [1]="cannot_stun" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["attack_speed_modifiers_apply_to_over_time_cost"]=2, + ["cannot_stun"]=3, + ["never_freeze"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_3.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_3.lua new file mode 100644 index 0000000000..4c83492328 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channelled_snipe_statset_3.lua @@ -0,0 +1,96 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + stats={ + [1]="attack_speed_modifiers_apply_to_over_time_cost" + } + }, + [3]={ + stats={ + [1]="cannot_stun" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for explosions originating\nfrom a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for explosions originating\nfrom a Unique enemy" + } + }, + stats={ + [1]="snipe_damage_+%_final_if_created_from_unique" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["attack_speed_modifiers_apply_to_over_time_cost"]=2, + ["cannot_stun"]=3, + ["never_freeze"]=1, + parent="skill_stat_descriptions", + ["snipe_damage_+%_final_if_created_from_unique"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/circle_of_power.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/circle_of_power.lua index 3f7b9e60ed..0d59f8978b 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/circle_of_power.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/circle_of_power.lua @@ -157,6 +157,13 @@ return { [1]="skill_effect_duration" } }, + [9]={ + [1]={ + }, + stats={ + [1]="virtual_circle_of_power_max_stages" + } + }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, ["base_circle_of_power_mana_%_spend_per_upgrade"]=4, @@ -164,5 +171,6 @@ return { ["circle_of_power_max_stages"]=6, ["circle_of_power_spell_damage_+%_final_per_stage"]=7, parent="skill_stat_descriptions", - ["skill_effect_duration"]=8 + ["skill_effect_duration"]=8, + ["virtual_circle_of_power_max_stages"]=9 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua index 319c5998fb..fdfd171445 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua @@ -8,13 +8,18 @@ return { } }, [2]={ + stats={ + [1]="projectiles_nova" + } + }, + [3]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [3]={ + [4]={ [1]={ [1]={ [1]={ @@ -47,7 +52,7 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [4]={ + [5]={ [1]={ [1]={ [1]={ @@ -80,17 +85,18 @@ return { [1]="base_skill_effect_duration" } }, - [5]={ + [6]={ [1]={ }, stats={ [1]="grenade_fuse_duration" } }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, ["active_skill_base_secondary_area_of_effect_radius"]=1, - ["base_skill_effect_duration"]=4, - ["grenade_fuse_duration"]=5, - parent="skill_stat_descriptions" + ["base_skill_effect_duration"]=5, + ["grenade_fuse_duration"]=6, + parent="skill_stat_descriptions", + ["projectiles_nova"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cold_weakness.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cold_weakness.lua index 78b4d9b18d..8cd146cae3 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cold_weakness.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cold_weakness.lua @@ -102,14 +102,14 @@ return { [1]={ }, stats={ - [1]="skill_effect_duration" + [1]="curse_effect_duration" } }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, ["base_skill_buff_cold_damage_resistance_%_to_apply"]=3, ["base_skill_effect_duration"]=4, + ["curse_effect_duration"]=6, parent="skill_stat_descriptions", - ["skill_curse_cold_damage_resistance_%_magnitude_to_apply"]=5, - ["skill_effect_duration"]=6 + ["skill_curse_cold_damage_resistance_%_magnitude_to_apply"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/convalescence_active.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/convalescence_active.lua index d63b6376c8..599847dbc3 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/convalescence_active.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/convalescence_active.lua @@ -3,6 +3,22 @@ return { [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cooldown is {0} seconds" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + [2]={ [1]={ [1]={ [1]={ @@ -78,7 +94,7 @@ return { [2]="quality_display_base_skill_effect_duration_is_gem" } }, - [2]={ + [3]={ [1]={ [1]={ limit={ @@ -94,16 +110,17 @@ return { [1]="display_this_skill_cooldown_does_not_recover_during_buff" } }, - [3]={ + [4]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, - ["base_skill_effect_duration"]=1, - ["display_this_skill_cooldown_does_not_recover_during_buff"]=2, + ["base_skill_effect_duration"]=2, + ["display_this_skill_cooldown_does_not_recover_during_buff"]=3, parent="skill_stat_descriptions", - ["quality_display_base_skill_effect_duration_is_gem"]=1, - ["skill_effect_duration"]=3 + ["quality_display_base_skill_effect_duration_is_gem"]=2, + ["skill_effect_duration"]=4, + ["skill_specific_stat_description_mode"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/corpse_beetles.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/corpse_beetles.lua new file mode 100644 index 0000000000..9095ec7774 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/corpse_beetles.lua @@ -0,0 +1,53 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0} second duration between Corpse consumptions" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Maximum {0} Corpse Beetle" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Maximum {0} Corpse Beetles" + } + }, + stats={ + [1]="maximum_corpse_beetles_allowed" + } + }, + ["base_secondary_skill_effect_duration"]=1, + ["maximum_corpse_beetles_allowed"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/create_mirage.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/create_mirage.lua new file mode 100644 index 0000000000..7d94af871f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/create_mirage.lua @@ -0,0 +1,87 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Cannot create a new Mirage if a Mirage has expired or\n you have dodge rolled in the past second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot create a new Mirage if a Mirage has expired or\n you have dodge rolled in the past {0} seconds" + } + }, + stats={ + [1]="base_lingering_mirage_cooldown_ms" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} seconds to Mirage duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Mirage duration is {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mirage duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_lingering_mirage_cooldown_ms"]=1, + ["base_skill_effect_duration"]=2, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/create_void_illusion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/create_void_illusion.lua new file mode 100644 index 0000000000..86981f4c5d --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/create_void_illusion.lua @@ -0,0 +1,134 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Illusion duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Illusion duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=2, + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_effigy_projectile.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_effigy_projectile.lua index a32dcd19d9..a8c1a6579f 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_effigy_projectile.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_effigy_projectile.lua @@ -10,6 +10,24 @@ return { [2]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metre to Impact radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metres to Impact radius" + }, + [3]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 @@ -22,7 +40,7 @@ return { }, text="Impact radius is {0} metre" }, - [2]={ + [4]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_tempest.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_tempest.lua new file mode 100644 index 0000000000..579f0e8f3c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dark_tempest.lua @@ -0,0 +1,124 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Buff causes Lightning Spells that cost Mana to Chain an additional time" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Buff causes Lightning Spells that cost Mana to Chain {0} additional times" + } + }, + stats={ + [1]="mana_costing_lightning_spells_number_of_additional_beam_chains" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Buff causes Lightning Spells that cost Mana to also Chain to {0:+d} target when Chaining, but not Chain further from them" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff causes Lightning Spells that cost Mana to also Chain to {0:+d} targets when Chaining, but not Chain further from them" + } + }, + stats={ + [1]="mana_costing_lightning_spells_number_of_additional_beam_splits" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles from Empowered Lightning Spells Fork" + } + }, + stats={ + [1]="mana_costing_lightning_spells_projectiles_fork" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Empowered Spells Split to {0} additional target" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Empowered Spells Split to {0} additional targets" + } + }, + stats={ + [1]="mana_tempest_empowered_spells_split_to_X_additional_targets" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Mana and Life spent while in the storm is\nadded to this Skill's Mana Cost per Second" + } + }, + stats={ + [1]="mana_tempest_mana_cost_%_to_add_to_cost_per_second" + } + }, + ["active_skill_base_area_of_effect_radius"]=1, + ["mana_costing_lightning_spells_number_of_additional_beam_chains"]=2, + ["mana_costing_lightning_spells_number_of_additional_beam_splits"]=3, + ["mana_costing_lightning_spells_projectiles_fork"]=4, + ["mana_tempest_empowered_spells_split_to_X_additional_targets"]=5, + ["mana_tempest_mana_cost_%_to_add_to_cost_per_second"]=6, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/defiance_banner.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/defiance_banner.lua index 3787bc95aa..e2b6900639 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/defiance_banner.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/defiance_banner.lua @@ -113,7 +113,7 @@ return { [2]=1000 } }, - text="Banner duration is {0} second, or until you leave the Aura" + text="Banner duration is {0} second" }, [2]={ [1]={ @@ -126,7 +126,7 @@ return { [2]="#" } }, - text="Banner duration is {0} seconds, or until you leave the Aura" + text="Banner duration is {0} seconds" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/demon_transformation.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/demon_transformation.lua index 055a85b747..749837e7f0 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/demon_transformation.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/demon_transformation.lua @@ -96,7 +96,7 @@ return { [2]="#" } }, - text="Deal {0}% increased Spell damage per Demonflame" + text="Deal {0}% more Spell damage per Demonflame" }, [2]={ limit={ @@ -105,11 +105,11 @@ return { [2]=-1 } }, - text="Deal {0}% reduced Spell damage per Demonflame" + text="Deal {0}% less Spell damage per Demonflame" } }, stats={ - [1]="demon_form_spell_damage_+%_per_stack" + [1]="demon_form_spell_damage_+%_final_per_stack" } }, [6]={ @@ -123,7 +123,7 @@ return { ["demon_form_grants_spell_gem_level_+"]=2, ["demon_form_life_loss_%_per_minute_per_stack"]=3, ["demon_form_life_loss_per_minute_per_stack"]=4, - ["demon_form_spell_damage_+%_per_stack"]=5, + ["demon_form_spell_damage_+%_final_per_stack"]=5, ["max_demon_form_stacks"]=6, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonating_arrow.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonating_arrow.lua index ef07bf4b4b..cc9c234e8e 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonating_arrow.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonating_arrow.lua @@ -42,7 +42,15 @@ return { [1]="active_skill_secondary_area_of_effect_radius" } }, + [3]={ + [1]={ + }, + stats={ + [1]="virtual_detonating_arrow_max_number_of_stages" + } + }, ["active_skill_base_secondary_area_of_effect_radius"]=1, ["active_skill_secondary_area_of_effect_radius"]=2, - parent="skill_stat_descriptions" + parent="skill_stat_descriptions", + ["virtual_detonating_arrow_max_number_of_stages"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_explosive_teleport.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_explosive_teleport.lua new file mode 100644 index 0000000000..469a776163 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_explosive_teleport.lua @@ -0,0 +1,91 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Explosion Radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Deals {0}% more Damage per previous teleportation in sequence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT Deals {0}% less Damage per previous teleportation in sequence" + } + }, + stats={ + [1]="djinn_damage_+%_final_per_teleport_in_sequence" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["djinn_damage_+%_final_per_teleport_in_sequence"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_fire_rune.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_fire_rune.lua new file mode 100644 index 0000000000..0c94f6ff11 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_fire_rune.lua @@ -0,0 +1,291 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Runes are created within@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Runes are created within {0} metre of Djinn" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Runes are created within {0} metres of Djinn" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Runes trigger radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Runes trigger radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Tornado radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Tornado radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_tertiary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Tornado duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Tornado duration is {0} seconds" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Rune duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Rune duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Tornados deal damage once every second while active" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Tornados deal damage once every {0} seconds while active" + } + }, + stats={ + [1]="fire_djinn_flame_rune_tick_rate_ms" + } + }, + [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Limit {0} Rune" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Limit {0} Runes" + } + }, + stats={ + [1]="fire_djinn_maximum_flame_runes_allowed" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Create {0} Rune" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Create {0} Runes" + } + }, + stats={ + [1]="fire_djinn_number_of_flame_runes_placed" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["active_skill_base_tertiary_area_of_effect_radius"]=4, + ["base_secondary_skill_effect_duration"]=5, + ["base_skill_effect_duration"]=6, + ["fire_djinn_flame_rune_tick_rate_ms"]=7, + ["fire_djinn_maximum_flame_runes_allowed"]=8, + ["fire_djinn_number_of_flame_runes_placed"]=9, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=10 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_fire_slice.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_fire_slice.lua new file mode 100644 index 0000000000..9a231f8d1c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_fire_slice.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Slash Radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Slash Radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_force_recharge.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_force_recharge.lua new file mode 100644 index 0000000000..c77b5aafa8 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_force_recharge.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="curse_effect_duration" + } + }, + ["base_skill_effect_duration"]=1, + ["curse_effect_duration"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_ground_burst.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_ground_burst.lua new file mode 100644 index 0000000000..a7862d90a7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_ground_burst.lua @@ -0,0 +1,95 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Detonates Chilling Areas within@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Detonates Chilling Areas within {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Detonates Chilling Areas within {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Chilling Ground Detonation burst radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Chilling Ground Detonation burst radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_knife_throw.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_knife_throw.lua new file mode 100644 index 0000000000..829b48bf72 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_knife_throw.lua @@ -0,0 +1,121 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Erupting blade creation radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Erupting blades are created within {0} metre of initial impact" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Erupting blades are created within {0} metres of initial impact" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Erupting blade radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Erupting blade radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Creates {0} erupting blade" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Creates {0} erupting blades" + } + }, + stats={ + [1]="djinn_knife_throw_number_of_knives_created" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["djinn_knife_throw_number_of_knives_created"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_mass_fusillade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_mass_fusillade.lua new file mode 100644 index 0000000000..d461c470e9 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_mass_fusillade.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Ember Explosion Radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Ember Explosion Radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Ember Explosion Radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="DNT Creates {0} flaming embers" + } + }, + stats={ + [1]="base_number_of_projectiles", + [2]="skill_can_fire_arrows", + [3]="quality_display_base_number_of_projectiles_is_gem" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_number_of_projectiles"]=3, + parent="skill_stat_descriptions", + ["quality_display_base_number_of_projectiles_is_gem"]=3, + ["skill_can_fire_arrows"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_meteor.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_meteor.lua new file mode 100644 index 0000000000..5cdc3048e3 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_meteor.lua @@ -0,0 +1,61 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Impact Radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Impact Radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Impact Radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_triggered_wave.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_triggered_wave.lua new file mode 100644 index 0000000000..680af6cea7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/djinn_triggered_wave.lua @@ -0,0 +1,103 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Wave radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Wave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Wave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="curse_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["curse_effect_duration"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dread_banner.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dread_banner.lua index 73be0fd266..70262d7f16 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dread_banner.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/dread_banner.lua @@ -43,6 +43,51 @@ return { } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Aura grants {0:+d}% to all Maximum Elemental Resistances" + } + }, + stats={ + [1]="base_skill_buff_additional_maximum_all_elemental_resistances_%_to_apply" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Aura grants {0}% more Elemental Ailment Threshold" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Aura grants {0}% less Elemental Ailment Threshold" + } + }, + stats={ + [1]="base_skill_buff_ailment_threshold_+%_final_to_apply" + } + }, + [5]={ [1]={ [1]={ [1]={ @@ -62,7 +107,7 @@ return { [1]="base_skill_buff_flask_charge_per_min_to_apply" } }, - [4]={ + [6]={ [1]={ [1]={ limit={ @@ -91,7 +136,7 @@ return { [1]="base_skill_buff_stun_and_ailment_threshold_+%_final_to_apply" } }, - [5]={ + [7]={ [1]={ [1]={ [1]={ @@ -104,7 +149,7 @@ return { [2]=1000 } }, - text="Banner duration is {0} second, or until you leave the Aura" + text="Banner duration is {0} second" }, [2]={ [1]={ @@ -117,28 +162,42 @@ return { [2]="#" } }, - text="Banner duration is {0} seconds, or until you leave the Aura" + text="Banner duration is {0} seconds" } }, stats={ [1]="base_skill_effect_duration" } }, - [6]={ + [8]={ + [1]={ + }, + stats={ + [1]="skill_aura_buff_additional_maximum_all_elemental_resistances_%_magnitude_to_apply" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="skill_aura_buff_ailment_threshold_+%_final_magnitude_to_apply" + } + }, + [10]={ [1]={ }, stats={ [1]="skill_aura_buff_flask_charge_per_min_magnitude_to_apply" } }, - [7]={ + [11]={ [1]={ }, stats={ [1]="skill_aura_buff_stun_and_ailment_threshold_+%_final_magnitude_to_apply" } }, - [8]={ + [12]={ [1]={ }, stats={ @@ -147,11 +206,15 @@ return { }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - ["base_skill_buff_flask_charge_per_min_to_apply"]=3, - ["base_skill_buff_stun_and_ailment_threshold_+%_final_to_apply"]=4, - ["base_skill_effect_duration"]=5, + ["base_skill_buff_additional_maximum_all_elemental_resistances_%_to_apply"]=3, + ["base_skill_buff_ailment_threshold_+%_final_to_apply"]=4, + ["base_skill_buff_flask_charge_per_min_to_apply"]=5, + ["base_skill_buff_stun_and_ailment_threshold_+%_final_to_apply"]=6, + ["base_skill_effect_duration"]=7, parent="skill_stat_descriptions", - ["skill_aura_buff_flask_charge_per_min_magnitude_to_apply"]=6, - ["skill_aura_buff_stun_and_ailment_threshold_+%_final_magnitude_to_apply"]=7, - ["skill_effect_duration"]=8 + ["skill_aura_buff_additional_maximum_all_elemental_resistances_%_magnitude_to_apply"]=8, + ["skill_aura_buff_ailment_threshold_+%_final_magnitude_to_apply"]=9, + ["skill_aura_buff_flask_charge_per_min_magnitude_to_apply"]=10, + ["skill_aura_buff_stun_and_ailment_threshold_+%_final_magnitude_to_apply"]=11, + ["skill_effect_duration"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua index f8583238c1..85e9c68b9f 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua @@ -8,6 +8,54 @@ return { } }, [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Chain" + } + }, + stats={ + [1]="base_projectiles_cannot_chain" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Pierce" + } + }, + stats={ + [1]="cannot_pierce" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits against targets with attached Rods gain {0}% of Damage as extra Lightning Damage" + } + }, + stats={ + [1]="electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target" + } + }, + [5]={ [1]={ [1]={ [1]={ @@ -83,7 +131,7 @@ return { [2]="quality_display_base_skill_effect_duration_is_gem" } }, - [3]={ + [6]={ [1]={ }, stats={ @@ -91,8 +139,11 @@ return { } }, ["active_skill_base_secondary_area_of_effect_radius"]=1, - ["base_skill_effect_duration"]=2, + ["base_projectiles_cannot_chain"]=2, + ["base_skill_effect_duration"]=5, + ["cannot_pierce"]=3, + ["electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target"]=4, parent="skill_stat_descriptions", - ["quality_display_base_skill_effect_duration_is_gem"]=2, - ["skill_effect_duration"]=3 + ["quality_display_base_skill_effect_duration_is_gem"]=5, + ["skill_effect_duration"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_power.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_power.lua index 8fdf41c359..091198e445 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_power.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_power.lua @@ -48,7 +48,7 @@ return { [2]="#" } }, - text="{0}% more Elemental Damage per Power Charge Consumed\nBuff causes all Elemental Damage to Contribute to Ignite chance and Magnitude, Shock chance, and Freeze buildup" + text="{0}% more Elemental Damage per Power Charge Consumed\nBuff causes all Elemental Damage to Contribute to Flammability and Ignite Magnitudes, Shock chance, and Freeze buildup" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_0.lua new file mode 100644 index 0000000000..902ea11596 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_0.lua @@ -0,0 +1,78 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="quality_display_base_number_of_projectiles_is_gem" + } + }, + [2]={ + stats={ + [1]="skill_can_fire_arrows" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to Trigger Fiery Explosion, Arcing Bolt, or Icy Wave on Melee Critical Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Triggers Fiery Explosion, Arcing Bolt, or Icy Wave on Melee Critical Hit" + } + }, + stats={ + [1]="chance_to_be_trigger_elemental_expression_%" + } + }, + ["active_skill_base_area_of_effect_radius"]=3, + ["chance_to_be_trigger_elemental_expression_%"]=4, + parent="skill_stat_descriptions", + ["quality_display_base_number_of_projectiles_is_gem"]=1, + ["skill_can_fire_arrows"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_1.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_1.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_2.lua new file mode 100644 index 0000000000..a12ea08b52 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_2.lua @@ -0,0 +1,38 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="quality_display_base_number_of_projectiles_is_gem" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fires {0} Projectile" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} Projectiles" + } + }, + stats={ + [1]="base_number_of_projectiles" + } + }, + ["base_number_of_projectiles"]=2, + parent="skill_stat_descriptions", + ["quality_display_base_number_of_projectiles_is_gem"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_3.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_3.lua new file mode 100644 index 0000000000..15847ddddb --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_strike_trigger_statset_3.lua @@ -0,0 +1,32 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Chains {0} time" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chains {0} times" + } + }, + stats={ + [1]="number_of_chains" + } + }, + ["number_of_chains"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_weakness.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_weakness.lua new file mode 100644 index 0000000000..0ee883fbf4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/elemental_weakness.lua @@ -0,0 +1,115 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Curse radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse inflicts {0:+d}% to Elemental Resistances" + } + }, + stats={ + [1]="base_skill_buff_all_elements_resistance_%_to_apply" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Curse duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_curse_all_elements_resistance_%_magnitude_to_apply" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_buff_all_elements_resistance_%_to_apply"]=3, + ["base_skill_effect_duration"]=4, + parent="skill_stat_descriptions", + ["skill_curse_all_elements_resistance_%_magnitude_to_apply"]=5, + ["skill_effect_duration"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/emergency_reload.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/emergency_reload.lua index 2dd6c82cb3..ac25d53421 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/emergency_reload.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/emergency_reload.lua @@ -15,7 +15,7 @@ return { [2]=1000 } }, - text="Maximum Buff duration is {0} second" + text="Buff duration is {0} second or until your Empowered bolts are expended" }, [2]={ [1]={ @@ -28,7 +28,7 @@ return { [2]="#" } }, - text="Maximum Buff duration is {0} seconds" + text="Buff duration is {0} seconds or until your Empowered bolts are expended" } }, stats={ @@ -44,7 +44,7 @@ return { [2]="#" } }, - text="Buff Empowers loaded bolts with {0}% more damage" + text="Buff Empowers bolts with {0}% more damage" }, [2]={ [1]={ @@ -57,7 +57,7 @@ return { [2]=-1 } }, - text="Buff Empowers loaded bolts with {0}% less damage" + text="Buff Empowers bolts with {0}% less damage" } }, stats={ @@ -71,8 +71,25 @@ return { [1]="skill_effect_duration" } }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Number of each clip's Empowered bolts is equal to the maximum Ammunition of the clip" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, ["base_skill_effect_duration"]=1, ["emergency_reload_damage_+%_final"]=2, parent="skill_stat_descriptions", - ["skill_effect_duration"]=3 + ["skill_effect_duration"]=3, + ["skill_specific_stat_description_mode"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/enfeeble.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/enfeeble.lua index 6fd07d952f..0bc6364bd1 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/enfeeble.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/enfeeble.lua @@ -51,7 +51,7 @@ return { [2]="#" } }, - text="Curse makes Non-Unique targets deal {0}% more Damage" + text="Curse makes targets deal {0}% more Damage" }, [2]={ [1]={ @@ -68,7 +68,7 @@ return { [2]=-1 } }, - text="Curse makes Non-Unique targets deal {0}% less Damage" + text="Curse makes targets deal {0}% less Damage" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/entangle_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/entangle_statset_0.lua new file mode 100644 index 0000000000..ae285820a8 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/entangle_statset_0.lua @@ -0,0 +1,200 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Root length is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Root length is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Attaches Vines to enemies within {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attaches Vines to enemies within {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Root" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Roots" + } + }, + stats={ + [1]="base_number_of_entangle_roots_allowed" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Root duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Root duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Attaches a Vine every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attaches a Vine every {0} seconds" + } + }, + stats={ + [1]="entangle_apply_vines_every_X_ms" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="number_of_entangle_roots_allowed" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["active_skill_secondary_area_of_effect_radius"]=4, + ["base_number_of_entangle_roots_allowed"]=5, + ["base_skill_effect_duration"]=6, + ["entangle_apply_vines_every_X_ms"]=7, + ["number_of_entangle_roots_allowed"]=8, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=9 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/entangle_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/entangle_statset_1.lua new file mode 100644 index 0000000000..cd90ecd1ad --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/entangle_statset_1.lua @@ -0,0 +1,82 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Vines can stretch to a {0} metre length before breaking" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Each attached Vine Slows enemy by {0}%" + } + }, + stats={ + [1]="entangle_base_movement_speed_+%_final_per_applied_stack" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can attach {0} Vine to each enemy" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can attach up to {0} Vines to each enemy" + } + }, + stats={ + [1]="entangle_vines_maximum_number_of_vines_allowed" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["entangle_base_movement_speed_+%_final_per_applied_stack"]=3, + ["entangle_vines_maximum_number_of_vines_allowed"]=4, + parent="specific_skill_stat_descriptions/blazing_cluster_statset_0" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_concoction.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_concoction.lua new file mode 100644 index 0000000000..e472f9c1e7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_concoction.lua @@ -0,0 +1,82 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Throw additional Projectiles at up to {0} Ignited Enemies" + } + }, + stats={ + [1]="explosive_concoction_number_of_secondary_projectiles" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot Ignite" + } + }, + stats={ + [1]="never_ignite" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["explosive_concoction_number_of_secondary_projectiles"]=3, + ["never_ignite"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/extract_elements_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/extract_elements_statset_1.lua index bdfd404a0a..5be1e5a7ec 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/extract_elements_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/extract_elements_statset_1.lua @@ -85,8 +85,38 @@ return { [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" } }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for pulses originating\nfrom a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for pulses originating\nfrom a Unique enemy" + } + }, + stats={ + [1]="elemental_sundering_damage_+%_final_if_created_from_unique" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, + ["elemental_sundering_damage_+%_final_if_created_from_unique"]=3, parent="skill_stat_descriptions", ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua index e4e6e6bf9c..114f8acb7d 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua @@ -18,6 +18,36 @@ return { [1]="eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type" } }, + [2]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Each use of this Skill deals {0}% less damage with its\nfirst Hit against each enemy" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Each use of this Skill deals {0}% more damage with its\nfirst Hit against each enemy" + } + }, + stats={ + [1]="eye_of_winter_first_hit_damage_+%_final" + } + }, ["eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type"]=1, + ["eye_of_winter_first_hit_damage_+%_final"]=2, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/feast_of_flesh.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/feast_of_flesh.lua new file mode 100644 index 0000000000..5f66db0f42 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/feast_of_flesh.lua @@ -0,0 +1,138 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Corpse Consumption radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Corpse Consumption radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1000, + [2]=1000 + } + }, + text="Recover {0} Life and {1} Mana over {2} second per Corpse Consumed" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0} Life and {1} Mana over {2} seconds per Corpse Consumed" + } + }, + stats={ + [1]="base_life_recovery_per_minute", + [2]="base_mana_recovery_per_minute", + [3]="feast_of_flesh_regeneration_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + }, + text="Consumes {0:+d} Corpse" + }, + [2]={ + limit={ + }, + text="Consumes {0:+d} Corpses" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Consumes up to 1 Corpse" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Consumes up to {0} Corpses" + } + }, + stats={ + [1]="feast_of_flesh_number_of_corpses" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_life_recovery_per_minute"]=3, + ["base_mana_recovery_per_minute"]=3, + ["feast_of_flesh_number_of_corpses"]=4, + ["feast_of_flesh_regeneration_duration"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_0.lua new file mode 100644 index 0000000000..b22c8b1583 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_0.lua @@ -0,0 +1,329 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_ignite" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to impact radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metres to impact radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Storm radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Storm radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Storm duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Storm duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="One impact every {0} seconds" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="{1} Bolts" + } + }, + stats={ + [1]="fire_storm_fireball_delay_ms", + [2]="vaal_firestorm_number_of_meteors" + } + }, + [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Fire Infusion grants {0}% increased bolt frequency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Fire Infusion grants {0}% reduced bolt frequency" + } + }, + stats={ + [1]="firestorm_bolt_frequency_+%_if_consumed_fire_infusion" + } + }, + [9]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Fire Infusion grants {0:+d} metre to storm radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire Infusion grants {0:+d} metres to storm radius" + } + }, + stats={ + [1]="firestorm_secondary_radius_+_if_consumed_fire_infusion" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [11]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Firestorm Limit@{0}" + } + }, + stats={ + [1]="virtual_firestorm_max_number_of_storms" + } + }, + [12]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Firestorm" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Firestorms" + } + }, + stats={ + [1]="firestorm_max_number_of_storms" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["active_skill_base_secondary_area_of_effect_radius"]=4, + ["active_skill_secondary_area_of_effect_radius"]=5, + ["base_skill_effect_duration"]=6, + ["fire_storm_fireball_delay_ms"]=7, + ["firestorm_bolt_frequency_+%_if_consumed_fire_infusion"]=8, + ["firestorm_max_number_of_storms"]=12, + ["firestorm_secondary_radius_+_if_consumed_fire_infusion"]=9, + ["never_ignite"]=1, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=3, + ["skill_effect_duration"]=10, + ["vaal_firestorm_number_of_meteors"]=7, + ["virtual_firestorm_max_number_of_storms"]=11 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_1.lua new file mode 100644 index 0000000000..af9bc0e6dd --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_1.lua @@ -0,0 +1,138 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_ignite" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to impact radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metres to impact radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="One impact every {0} seconds" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="{1} Bolts" + } + }, + stats={ + [1]="fire_storm_fireball_delay_ms", + [2]="vaal_firestorm_number_of_meteors" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["fire_storm_fireball_delay_ms"]=4, + ["never_ignite"]=1, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=3, + ["vaal_firestorm_number_of_meteors"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_2.lua new file mode 100644 index 0000000000..af9bc0e6dd --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fire_storm_statset_2.lua @@ -0,0 +1,138 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_ignite" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to impact radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metres to impact radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="One impact every {0} seconds" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="{1} Bolts" + } + }, + stats={ + [1]="fire_storm_fireball_delay_ms", + [2]="vaal_firestorm_number_of_meteors" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["fire_storm_fireball_delay_ms"]=4, + ["never_ignite"]=1, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=3, + ["vaal_firestorm_number_of_meteors"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/firewall.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/firewall.lua index b7c0484afe..a041a509ff 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/firewall.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/firewall.lua @@ -110,6 +110,27 @@ return { } }, [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles which pass through the Infused wall deal {0} to {1} Added Lightning Damage" + } + }, + stats={ + [1]="flame_wall_minimum_added_lightning_damage_to_add_to_projectile", + [2]="flame_wall_maximum_added_lightning_damage_to_add_to_projectile" + } + }, + [6]={ [1]={ [1]={ limit={ @@ -125,7 +146,7 @@ return { [1]="flame_wall_projectiles_gain_all_damage_%_as_fire" } }, - [6]={ + [7]={ [1]={ [1]={ [1]={ @@ -145,7 +166,7 @@ return { [1]="secondary_base_fire_damage_to_deal_per_minute" } }, - [7]={ + [8]={ [1]={ [1]={ [1]={ @@ -165,21 +186,21 @@ return { [1]="secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [8]={ + [9]={ [1]={ }, stats={ [1]="secondary_skill_effect_duration" } }, - [9]={ + [10]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, - [10]={ + [11]={ [1]={ [1]={ limit={ @@ -204,13 +225,15 @@ return { ["base_secondary_skill_effect_duration"]=2, ["base_skill_effect_duration"]=3, ["flame_wall_maximum_added_fire_damage"]=4, + ["flame_wall_maximum_added_lightning_damage_to_add_to_projectile"]=5, ["flame_wall_minimum_added_fire_damage"]=4, - ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=5, + ["flame_wall_minimum_added_lightning_damage_to_add_to_projectile"]=5, + ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6, parent="skill_stat_descriptions", - ["secondary_base_fire_damage_to_deal_per_minute"]=6, - ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=7, - ["secondary_skill_effect_duration"]=8, - ["skill_effect_duration"]=9, - ["spell_maximum_base_fire_damage"]=10, - ["spell_minimum_base_fire_damage"]=10 + ["secondary_base_fire_damage_to_deal_per_minute"]=7, + ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=8, + ["secondary_skill_effect_duration"]=9, + ["skill_effect_duration"]=10, + ["spell_maximum_base_fire_damage"]=11, + ["spell_minimum_base_fire_damage"]=11 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/foresight.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/foresight.lua new file mode 100644 index 0000000000..bacf61f7d4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/foresight.lua @@ -0,0 +1,73 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants each of Hindsight, Foresight, and\nSight Beyond Sight, in sequence\nHindsight lasts for a {0} second duration" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} seconds to Beyond Sight duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foresight prevents Dodge Roll from Avoiding Hits and lasts until immediately before you are Hit while Dodge Rolling\nSight Beyond Sight makes you unable to die and lasts for a {0} second duration\nFully recover Life when you gain Sight Beyond Sight" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="secondary_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_secondary_skill_effect_duration"]=2, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions", + ["secondary_skill_effect_duration"]=3, + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_0.lua new file mode 100644 index 0000000000..8d39da2b44 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_0.lua @@ -0,0 +1,107 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hammer duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hammer duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cooldown does not recover while the hammer is lodged" + } + }, + stats={ + [1]="display_this_skill_cooldown_does_not_recover_during_buff" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["display_this_skill_cooldown_does_not_recover_during_buff"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_1.lua new file mode 100644 index 0000000000..b7a18cef89 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_1.lua @@ -0,0 +1,81 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fissure duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fissure duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Fissure" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Fissures" + } + }, + stats={ + [1]="forge_hammer_base_maximum_number_of_fissures" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="forge_hammer_base_maximum_number_of_fissures" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_skill_effect_duration"]=1, + ["forge_hammer_base_maximum_number_of_fissures"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_2.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/forge_hammer_statset_2.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_mark_nova.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_mark_nova.lua index 64dff1b640..9635431c03 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_mark_nova.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_mark_nova.lua @@ -27,7 +27,7 @@ return { [2]=10 } }, - text="Nova radius is {0} metre" + text="Explosion radius is {0} metre" }, [2]={ [1]={ @@ -40,7 +40,7 @@ return { [2]="#" } }, - text="Nova radius is {0} metres" + text="Explosion radius is {0} metres" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua index eeb99d5065..90e28ea3af 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua @@ -107,11 +107,19 @@ return { [1]="freezing_salvo_seals_gain_interval_ms" } }, + [6]={ + [1]={ + }, + stats={ + [1]="virtual_freezing_salvo_maximum_number_of_seals" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, ["freezing_salvo_maximum_number_of_seals"]=3, ["freezing_salvo_seals_gain_base_interval_ms"]=4, ["freezing_salvo_seals_gain_interval_ms"]=5, parent="skill_stat_descriptions", - ["quality_display_freezing_salvo_is_gem"]=4 + ["quality_display_freezing_salvo_is_gem"]=4, + ["virtual_freezing_salvo_maximum_number_of_seals"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bolt.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bolt.lua index 6c7b19b426..81854f3e4e 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bolt.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bolt.lua @@ -82,51 +82,9 @@ return { [1]="active_skill_secondary_area_of_effect_radius" } }, - [5]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Chilled Ground duration is {0} second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Chilled Ground duration is {0} seconds" - } - }, - stats={ - [1]="base_skill_effect_duration" - } - }, - [6]={ - [1]={ - }, - stats={ - [1]="skill_chilled_ground_effect_duration_ms" - } - }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, ["active_skill_base_secondary_area_of_effect_radius"]=3, ["active_skill_secondary_area_of_effect_radius"]=4, - ["base_skill_effect_duration"]=5, - parent="skill_stat_descriptions", - ["skill_chilled_ground_effect_duration_ms"]=6 + parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bomb.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bomb.lua index 3c7b695c93..c35beec616 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bomb.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_bomb.lua @@ -4,12 +4,43 @@ return { [1]={ [1]={ + [1]={ + limit={ + }, + text="{2:+d}% maximum Elemental Exposure applied" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Initially applies {0}% Elemental Exposure and {1}% Exposure per pulse, up to a maximum of {2}%" + } }, stats={ - [1]="active_skill_area_of_effect_radius" + [1]="active_skill_all_elemental_exposure_magnitude", + [2]="active_skill_all_elemental_exposure_compounding_magnitude", + [3]="active_skill_all_elemental_exposure_compounding_magnitude_cap" } }, [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ [1]={ [1]={ [1]={ @@ -42,7 +73,23 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [3]={ + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Limit {0} Frost Bomb" + } + }, + stats={ + [1]="base_maximum_number_of_frost_bombs" + } + }, + [5]={ [1]={ [1]={ [1]={ @@ -75,7 +122,7 @@ return { [1]="base_secondary_skill_effect_duration" } }, - [4]={ + [6]={ [1]={ [1]={ [1]={ @@ -108,25 +155,63 @@ return { [1]="base_skill_effect_duration" } }, - [5]={ + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="Cannot apply Exposure to enemies of level higher than {0}" + } + }, + stats={ + [1]="frost_bomb_exposure_does_not_apply_to_enemies_of_level_higher_than_X" + } + }, + [8]={ [1]={ }, stats={ [1]="secondary_skill_effect_duration" } }, - [6]={ + [9]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, - ["base_secondary_skill_effect_duration"]=3, - ["base_skill_effect_duration"]=4, + [10]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Frost Bomb Limit@{0}" + } + }, + stats={ + [1]="virtual_maximum_number_of_frost_bombs" + } + }, + ["active_skill_all_elemental_exposure_compounding_magnitude"]=1, + ["active_skill_all_elemental_exposure_compounding_magnitude_cap"]=1, + ["active_skill_all_elemental_exposure_magnitude"]=1, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_maximum_number_of_frost_bombs"]=4, + ["base_secondary_skill_effect_duration"]=5, + ["base_skill_effect_duration"]=6, + ["frost_bomb_exposure_does_not_apply_to_enemies_of_level_higher_than_X"]=7, parent="skill_stat_descriptions", - ["secondary_skill_effect_duration"]=5, - ["skill_effect_duration"]=6 + ["secondary_skill_effect_duration"]=8, + ["skill_effect_duration"]=9, + ["virtual_maximum_number_of_frost_bombs"]=10 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_1.lua new file mode 100644 index 0000000000..2bb022a0ed --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_1.lua @@ -0,0 +1,74 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Each explosion creates an Ice Chunk" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Each explosion creates {0} Ice Chunks" + } + }, + stats={ + [1]="frost_darts_explode_creates_X_mortars" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["frost_darts_explode_creates_X_mortars"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_2.lua new file mode 100644 index 0000000000..3adcb73719 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_2.lua @@ -0,0 +1,82 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="random_projectile_direction" + } + }, + [2]={ + stats={ + [1]="modifiers_to_projectile_count_do_not_apply" + } + }, + [3]={ + stats={ + [1]="base_number_of_projectiles" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Each dart creates {0} ice chunks" + } + }, + stats={ + [1]="base_number_of_projectiles" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["base_number_of_projectiles"]=6, + ["modifiers_to_projectile_count_do_not_apply"]=2, + parent="skill_stat_descriptions", + ["random_projectile_direction"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_0.lua new file mode 100644 index 0000000000..6188a5c3a1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_0.lua @@ -0,0 +1,160 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Ice Crystal duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ice Crystal duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Ice Crystals have {0} maximum Life" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Ice Crystal has {0} maximum Life" + } + }, + stats={ + [1]="frost_wall_maximum_life", + [2]="frozen_locus_crystal_display_stat" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Wall is {0} metre long" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Wall is {0} metres long" + } + }, + stats={ + [1]="wall_maximum_length" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["frost_wall_maximum_life"]=4, + ["frozen_locus_crystal_display_stat"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=5, + ["wall_maximum_length"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua new file mode 100644 index 0000000000..5e3d1b5914 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua @@ -0,0 +1,78 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="wall_maximum_length" + } + }, + [2]={ + stats={ + [1]="skill_effect_duration" + } + }, + [3]={ + stats={ + [1]="frost_wall_maximum_life" + } + }, + [4]={ + stats={ + [1]="active_skill_hit_damage_freeze_multiplier_+%_final" + } + }, + [5]={ + stats={ + [1]="ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + ["active_skill_base_secondary_area_of_effect_radius"]=7, + ["active_skill_hit_damage_freeze_multiplier_+%_final"]=4, + ["active_skill_secondary_area_of_effect_radius"]=6, + ["frost_wall_maximum_life"]=3, + ["ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=5, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=2, + ["wall_maximum_length"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fulminating_concoction.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fulminating_concoction.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fulminating_concoction.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gale_strike.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gale_strike.lua index e6ce6c71dd..7e1611fc19 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gale_strike.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gale_strike.lua @@ -42,7 +42,33 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Dazes on Hit" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Daze on Hit" + } + }, + stats={ + [1]="base_chance_to_daze_%" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, + ["base_chance_to_daze_%"]=3, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/galvanic_field.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/galvanic_field.lua new file mode 100644 index 0000000000..50185c7843 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/galvanic_field.lua @@ -0,0 +1,202 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Field radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Field radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fires a bolt every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fires a bolt every {0} seconds" + } + }, + stats={ + [1]="base_galvanic_field_beam_delay_ms" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Orb duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Orb duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="galvanic_field_beam_delay_ms" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Galvanic Field" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Galvanic Fields" + } + }, + stats={ + [1]="galvanic_field_maximum_number_of_spheres" + } + }, + [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% more Chance to Shock" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% less Chance to Shock" + } + }, + stats={ + [1]="galvanic_field_shock_chance_+%_final" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="virtual_galvanic_field_maximum_number_of_spheres" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_galvanic_field_beam_delay_ms"]=4, + ["base_secondary_skill_effect_duration"]=1, + ["base_skill_effect_duration"]=5, + ["galvanic_field_beam_delay_ms"]=6, + ["galvanic_field_maximum_number_of_spheres"]=7, + ["galvanic_field_shock_chance_+%_final"]=8, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=9, + ["virtual_galvanic_field_maximum_number_of_spheres"]=10 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghostfuse_arrow.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghostfuse_arrow.lua new file mode 100644 index 0000000000..f3a9c612b0 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghostfuse_arrow.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Arrow duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Arrow duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_feast.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_feast.lua index f4ca737bbd..d1c095c9f2 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_feast.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_feast.lua @@ -7,15 +7,15 @@ return { [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Grim Remnants recover {0} Energy Shield" + text="Remnants store {0}% of Minion maximum Life" } }, stats={ - [1]="grim_feast_energy_shield_gain_per_globe" + [1]="grim_remnant_health_stored_in_globe_%" } }, [2]={ @@ -23,52 +23,18 @@ return { [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Grim Remnants from Minions grant {0}% more Energy Shield" + text="You can store up to {0} collected Minion Life" } }, stats={ - [1]="grim_feast_energy_shield_gain_+%_final_from_minions" + [1]="grim_remnant_max_health_stored" } }, - [3]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to spawn a Remnant when an enemy or Reviving Minion dies in your Presence" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Spawn a Remnant when an enemy or Reviving Minion dies in your Presence" - } - }, - stats={ - [1]="grim_remnant_chance_to_spawn_orb_on_enemy_and_minion_death_in_presence_%" - } - }, - [4]={ - [1]={ - }, - stats={ - [1]="virtual_grim_feast_energy_shield_gain_per_globe" - } - }, - ["grim_feast_energy_shield_gain_+%_final_from_minions"]=2, - ["grim_feast_energy_shield_gain_per_globe"]=1, - ["grim_remnant_chance_to_spawn_orb_on_enemy_and_minion_death_in_presence_%"]=3, - parent="skill_stat_descriptions", - ["virtual_grim_feast_energy_shield_gain_per_globe"]=4 + ["grim_remnant_health_stored_in_globe_%"]=1, + ["grim_remnant_max_health_stored"]=2, + parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_0.lua new file mode 100644 index 0000000000..d1883b2348 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_0.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + stats={ + [1]="active_skill_requires_X_glory" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="While Dual Wielding, fires twice as many Projectiles with {0}% more attack speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="While Dual Wielding, fires twice as many Projectiles with {0}% less attack speed" + } + }, + stats={ + [1]="active_skill_attack_speed_+%_final_while_dual_wielding" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_attack_speed_+%_final_while_dual_wielding"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["active_skill_requires_X_glory"]=2, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua new file mode 100644 index 0000000000..008af61cd4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua @@ -0,0 +1,26 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + stats={ + [1]="active_skill_requires_X_glory" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="total_number_of_projectiles_to_fire" + } + }, + ["active_skill_requires_X_glory"]=2, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions", + ["total_number_of_projectiles_to_fire"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_2.lua new file mode 100644 index 0000000000..f7109c1541 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_2.lua @@ -0,0 +1,134 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to impact radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metres to impact radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hammerfall duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hammerfall duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=2, + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hand_of_chayula.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hand_of_chayula.lua index 6c24ed4d63..1f7c31fea7 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hand_of_chayula.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hand_of_chayula.lua @@ -2,5 +2,110 @@ -- Item data (c) Grinding Gear Games return { + [1]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% increased duration of socketed Curses" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased duration of socketed Curses" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced duration of socketed Curses" + } + }, + stats={ + [1]="base_curse_duration_+%" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% increased Magnitudes of socketed Curses" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Curse Magnitudes" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Curse Magnitudes" + } + }, + stats={ + [1]="curse_effect_+%" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% increased Effect of Socketed Marks" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Socketed Marks" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Socketed Marks" + } + }, + stats={ + [1]="mark_effect_+%" + } + }, + ["base_curse_duration_+%"]=1, + ["curse_effect_+%"]=2, + ["mark_effect_+%"]=3, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hexblast.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hexblast.lua index 257f18977a..579a80b8d3 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hexblast.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hexblast.lua @@ -55,7 +55,7 @@ return { [2]="#" } }, - text="Detonates a Curse on enemies in a {0} metre radius" + text="Explodes a Curse on enemies in a {0} metre radius" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_ambush_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_ambush_statset_2.lua new file mode 100644 index 0000000000..b8659b0f0a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_ambush_statset_2.lua @@ -0,0 +1,72 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="frost_wall_maximum_life" + } + }, + [2]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + stats={ + [1]="skill_ground_effect_duration" + } + }, + [4]={ + stats={ + [1]="base_number_of_frozen_locus_allowed" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=5, + ["active_skill_base_area_of_effect_radius"]=6, + ["base_number_of_frozen_locus_allowed"]=4, + ["base_skill_effect_duration"]=2, + ["frost_wall_maximum_life"]=1, + parent="specific_skill_stat_descriptions/ice_ambush_statset_0", + ["skill_ground_effect_duration"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_ambush_statset_3.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_ambush_statset_3.lua new file mode 100644 index 0000000000..5c98d36672 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_ambush_statset_3.lua @@ -0,0 +1,72 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="frost_wall_maximum_life" + } + }, + [2]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + stats={ + [1]="skill_ground_effect_duration" + } + }, + [4]={ + stats={ + [1]="base_number_of_frozen_locus_allowed" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Chilled Ground radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chilled Ground radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=5, + ["active_skill_base_area_of_effect_radius"]=6, + ["base_number_of_frozen_locus_allowed"]=4, + ["base_skill_effect_duration"]=2, + ["frost_wall_maximum_life"]=1, + parent="specific_skill_stat_descriptions/ice_ambush_statset_0", + ["skill_ground_effect_duration"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_0.lua new file mode 100644 index 0000000000..568b584291 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_0.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Nova radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Nova radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_1.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_1.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_2.lua new file mode 100644 index 0000000000..fe3752c6ad --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_nova_statset_2.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion and Chilled Ground radius are {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion and Chilled Ground radius are {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Chilled Ground duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chilled Ground duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_chilled_ground_effect_duration_ms" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_chilled_ground_effect_duration_ms"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/igneous_shield.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/igneous_shield.lua new file mode 100644 index 0000000000..a596d2e7f1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/igneous_shield.lua @@ -0,0 +1,126 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fully imbues Shield in {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fully imbues Shield in {0} seconds" + } + }, + stats={ + [1]="igneous_shield_charge_up_time_ms" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + }, + text="{0}% reduced Imbuement time" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Imbuement time" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Imbuement time" + } + }, + stats={ + [1]="igneous_shield_charge_up_time_+%" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% increased Block chance" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Grants {0}% increased Block chance" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Grants {0}% reduced Block chance" + } + }, + stats={ + [1]="skill_igneous_shield_grants_block_chance_+%" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="virtual_igneous_shield_charge_up_time_ms" + } + }, + ["igneous_shield_charge_up_time_+%"]=2, + ["igneous_shield_charge_up_time_ms"]=1, + parent="skill_stat_descriptions", + ["skill_igneous_shield_grants_block_chance_+%"]=3, + ["virtual_igneous_shield_charge_up_time_ms"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/igneous_shield_explosion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/igneous_shield_explosion.lua new file mode 100644 index 0000000000..9f042dde9d --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/igneous_shield_explosion.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Magma Spray radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Magma Spray radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua index ea377c7948..95af7a8dea 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua @@ -76,6 +76,64 @@ return { } }, [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gains {0} second of fuel per Mana spent" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains {0} milliseconds of fuel per Mana spent" + } + }, + stats={ + [1]="incinerate_fuel_gain_per_mana_spent" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Can store up to {0} second of fuel" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can store up to {0} seconds of fuel" + } + }, + stats={ + [1]="incinerate_maximum_fuel" + } + }, + [6]={ [1]={ [1]={ limit={ @@ -91,7 +149,40 @@ return { [1]="incinerate_damage_+%_final_per_stage" } }, - [5]={ + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gains a stage every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains a stage every {0} seconds" + } + }, + stats={ + [1]="incinerate_gain_stage_every_x_ms" + } + }, + [8]={ [1]={ [1]={ limit={ @@ -112,7 +203,7 @@ return { [2]="incinerate_maximum_exposure_magnitude" } }, - [6]={ + [9]={ [1]={ [1]={ limit={ @@ -128,14 +219,14 @@ return { [1]="incinerate_maximum_stages" } }, - [7]={ + [10]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, - [8]={ + [11]={ [1]={ [1]={ limit={ @@ -156,15 +247,26 @@ return { [2]="spell_maximum_base_fire_damage" } }, + [12]={ + [1]={ + }, + stats={ + [1]="virtual_incinerate_maximum_stages" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, ["base_skill_effect_duration"]=3, - ["incinerate_buff_exposure_-_to_total_fire_resistance_per_stack"]=5, - ["incinerate_damage_+%_final_per_stage"]=4, - ["incinerate_maximum_exposure_magnitude"]=5, - ["incinerate_maximum_stages"]=6, + ["incinerate_buff_exposure_-_to_total_fire_resistance_per_stack"]=8, + ["incinerate_damage_+%_final_per_stage"]=6, + ["incinerate_fuel_gain_per_mana_spent"]=4, + ["incinerate_gain_stage_every_x_ms"]=7, + ["incinerate_maximum_exposure_magnitude"]=8, + ["incinerate_maximum_fuel"]=5, + ["incinerate_maximum_stages"]=9, parent="skill_stat_descriptions", - ["skill_effect_duration"]=7, - ["spell_maximum_base_fire_damage"]=8, - ["spell_minimum_base_fire_damage"]=8 + ["skill_effect_duration"]=10, + ["spell_maximum_base_fire_damage"]=11, + ["spell_minimum_base_fire_damage"]=11, + ["virtual_incinerate_maximum_stages"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/infernal_cry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/infernal_cry.lua index a1d64c1521..b361dc0332 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/infernal_cry.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/infernal_cry.lua @@ -9,12 +9,28 @@ return { }, [2]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Empowered Attacks Gain {0}% of damage as extra Fire damage" + } }, stats={ - [1]="active_skill_area_of_effect_radius" + [1]="infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_%" } }, [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ [1]={ [1]={ [1]={ @@ -47,7 +63,7 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [4]={ + [5]={ [1]={ [1]={ [1]={ @@ -80,8 +96,9 @@ return { [1]="base_skill_effect_duration" } }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, - ["base_skill_effect_duration"]=4, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["base_skill_effect_duration"]=5, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_%"]=2, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/killing_palm.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/killing_palm.lua new file mode 100644 index 0000000000..c806e37661 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/killing_palm.lua @@ -0,0 +1,154 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Culling a monster grants {2} Power Charge" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Power Charge\nRare monsters grant {1} Power Charge\nUnique monsters grant {2} Power Charges" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Normal and Magic monsters grant {0} Power Charge\nRare monsters grant {1} Power Charges\nUnique monsters grant {2} Power Charge" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Normal and Magic monsters grant {0} Power Charges\nRare monsters grant {1} Power Charge\nUnique monsters grant {2} Power Charge" + }, + [5]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Power Charges\nRare monsters grant {1} Power Charge\nUnique monsters grant {2} Power Charges" + }, + [6]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Normal and Magic monsters grant {0} Power Charges\nRare monsters grant {1} Power Charges\nUnique monsters grant {2} Power Charge" + }, + [7]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Power Charge\nRare monsters grant {1} Power Charges\nUnique monsters grant {2} Power Charges" + }, + [8]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Power Charges\nRare monsters grant {1} Power Charges\nUnique monsters grant {2} Power Charges" + } + }, + stats={ + [1]="skill_grant_X_power_charges_against_normal_and_magic_monsters", + [2]="skill_grant_X_power_charges_against_rare_monsters", + [3]="skill_grant_X_power_charges_against_unique_monsters" + } + }, + parent="skill_stat_descriptions", + ["skill_grant_X_power_charges_against_normal_and_magic_monsters"]=1, + ["skill_grant_X_power_charges_against_rare_monsters"]=1, + ["skill_grant_X_power_charges_against_unique_monsters"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/life_remnants.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/life_remnants.lua index f30a2f42bf..cae55de078 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/life_remnants.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/life_remnants.lua @@ -57,6 +57,35 @@ return { } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Spawn a Remnant on Hitting a target, no more than once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spawn a Remnant on Hitting a target, no more than once every {0} seconds" + } + }, + stats={ + [1]="life_remnants_spawn_remnant_on_hit_vs_enemy_every_X_ms" + } + }, + [4]={ [1]={ [1]={ limit={ @@ -72,7 +101,7 @@ return { [1]="life_remnants_gain_per_globe" } }, - [4]={ + [5]={ [1]={ }, stats={ @@ -80,8 +109,9 @@ return { } }, ["life_remnants_chance_to_spawn_orb_on_killing_enemy_%"]=1, - ["life_remnants_gain_per_globe"]=3, + ["life_remnants_gain_per_globe"]=4, ["life_remnants_spawn_remnant_on_crit_vs_enemy_every_X_ms"]=2, + ["life_remnants_spawn_remnant_on_hit_vs_enemy_every_X_ms"]=3, parent="skill_stat_descriptions", - ["virtual_life_remnants_gain_per_globe"]=4 + ["virtual_life_remnants_gain_per_globe"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_conduit.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_conduit.lua index 71e96b7ee3..9a0df5bfe8 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_conduit.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_conduit.lua @@ -56,7 +56,7 @@ return { [2]=1 } }, - text="{0} additional bolt hits targets if at least one Shock Consumed" + text="{0} additional bolt if a Shocked enemy is in the target area" }, [2]={ limit={ @@ -65,7 +65,7 @@ return { [2]="#" } }, - text="{0} additional bolts hit targets if at least one Shock Consumed" + text="{0} additional bolts if a Shocked enemy is in the target area" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_rod_rain.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_rod_rain.lua index a8a7db17e5..1cd78501f9 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_rod_rain.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_rod_rain.lua @@ -149,6 +149,31 @@ return { } }, [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to cause an additional Burst on impact" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Causes an additional Burst on impact" + } + }, + stats={ + [1]="lightning_rod_%_chance_for_additional_burst_on_landing" + } + }, + [7]={ [1]={ [1]={ limit={ @@ -173,20 +198,29 @@ return { [1]="number_of_lightning_rods_allowed" } }, - [7]={ + [8]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, + [9]={ + [1]={ + }, + stats={ + [1]="virtual_lightning_rod_number_of_chains_allowed" + } + }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, ["active_skill_base_secondary_area_of_effect_radius"]=1, ["base_skill_effect_duration"]=4, + ["lightning_rod_%_chance_for_additional_burst_on_landing"]=6, ["lightning_rod_number_of_chains_allowed"]=5, - ["number_of_lightning_rods_allowed"]=6, + ["number_of_lightning_rods_allowed"]=7, parent="skill_stat_descriptions", ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=3, - ["skill_effect_duration"]=7 + ["skill_effect_duration"]=8, + ["virtual_lightning_rod_number_of_chains_allowed"]=9 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lingering_mirage.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lingering_mirage.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lingering_mirage.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/living_bomb_player.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/living_bomb_player.lua index 881645ef6c..7e0fc600a5 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/living_bomb_player.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/living_bomb_player.lua @@ -102,12 +102,28 @@ return { }, [5]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explodes after enemy is dealt damage equal to {0}% of its Ailment Threshold" + } }, stats={ - [1]="living_bomb_number_of_bombs_allowed" + [1]="living_bomb_damage_threshold_%_of_ailment_threshold" } }, [6]={ + [1]={ + }, + stats={ + [1]="living_bomb_number_of_bombs_allowed" + } + }, + [7]={ [1]={ }, stats={ @@ -118,7 +134,8 @@ return { ["active_skill_base_area_of_effect_radius"]=2, ["base_skill_effect_duration"]=3, ["living_bomb_base_number_of_bombs_allowed"]=4, - ["living_bomb_number_of_bombs_allowed"]=5, + ["living_bomb_damage_threshold_%_of_ailment_threshold"]=5, + ["living_bomb_number_of_bombs_allowed"]=6, parent="skill_stat_descriptions", - ["skill_effect_duration"]=6 + ["skill_effect_duration"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mana_tempest.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mana_tempest.lua index 50f945ecc6..579f0e8f3c 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mana_tempest.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mana_tempest.lua @@ -107,7 +107,7 @@ return { [2]="#" } }, - text="{0}% of Mana Spent while in the storm is\nadded to this Skill's Mana Cost per Second" + text="{0}% of Mana and Life spent while in the storm is\nadded to this Skill's Mana Cost per Second" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_arcane_archery.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_arcane_archery.lua new file mode 100644 index 0000000000..90ec55dced --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_arcane_archery.lua @@ -0,0 +1,27 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Gains {0} Energy per ten Mana spent on ranged Attacks" + } + }, + stats={ + [1]="arcane_archery_gain_X_centienergy_per_10_mana_cost_of_ranged_attack" + } + }, + ["arcane_archery_gain_X_centienergy_per_10_mana_cost_of_ranged_attack"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_deadeye_marks.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_deadeye_marks.lua new file mode 100644 index 0000000000..4a2e90777a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_deadeye_marks.lua @@ -0,0 +1,74 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Applies a socketed Mark to {0} Enemy every five seconds" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Applies a socketed Mark to {0} Enemies every five seconds" + } + }, + stats={ + [1]="deadeye_meta_marks_number_of_enemies_to_mark" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Applies socketed Marks to Enemies within {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Applies socketed Marks to Enemies within {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=3, + ["deadeye_meta_marks_number_of_enemies_to_mark"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_mantra_of_illusions.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_mantra_of_illusions.lua new file mode 100644 index 0000000000..0435ebc729 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_mantra_of_illusions.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Maximum Illusion spawn radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Maximum Illusion spawn radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_freeze.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_freeze.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_freeze.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_ignite.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_ignite.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_ignite.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_shock.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_shock.lua new file mode 100644 index 0000000000..6c24ed4d63 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/meta_ranged_attack_on_shock.lua @@ -0,0 +1,6 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_shock_nova.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_shock_nova.lua new file mode 100644 index 0000000000..44a1237d4f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_shock_nova.lua @@ -0,0 +1,162 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ring outer radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Ring outer radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ring outer radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Ring inner radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ring inner radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ring inner radius@{0}m" + } + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies Hit receive Electrocution buildup from\nLightning damage for {0} second duration" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals more damage to enemies based on distance from\nyou, up to {0}% to enemies on the far edge of the ring" + } + }, + stats={ + [1]="new_shock_nova_distance_based_damage_+%_final" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["active_skill_secondary_area_of_effect_radius"]=4, + ["base_skill_effect_duration"]=5, + ["new_shock_nova_distance_based_damage_+%_final"]=6, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=7 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_sunder_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_sunder_statset_0.lua index 52986f3aea..de24874629 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_sunder_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_sunder_statset_0.lua @@ -48,6 +48,13 @@ return { } }, [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ [1]={ [1]={ limit={ @@ -63,9 +70,48 @@ return { [1]="sunder_shockwave_limit_per_cascade" } }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Inflicts Sundered Armour on hitting\nFully Armour Broken targets, causing {0}% additional\nincreased Physical damage taken" + } + }, + stats={ + [1]="sunder_armor_break_extra_magnitude" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Sundered Armour has {0} second duration, or until Fully Broken Armour is removed" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_effect_duration"]=7, ["cannot_break_armour"]=1, parent="skill_stat_descriptions", - ["sunder_shockwave_limit_per_cascade"]=4 + ["skill_effect_duration"]=4, + ["sunder_armor_break_extra_magnitude"]=6, + ["sunder_shockwave_limit_per_cascade"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua index 0ff50260b3..d4c5267677 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua @@ -3,6 +3,39 @@ return { [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Can Block Damage from enemies within {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Block Damage from enemies within {0} metres" + } + }, + stats={ + [1]="base_maximum_active_block_distance" + } + }, + [2]={ [1]={ [1]={ limit={ @@ -31,7 +64,7 @@ return { [1]="base_parry_buff_damage_taken_+%_final_to_apply" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -90,7 +123,14 @@ return { [2]="quality_display_base_skill_effect_duration_is_gem" } }, - [3]={ + [4]={ + [1]={ + }, + stats={ + [1]="maximum_active_block_distance" + } + }, + [5]={ [1]={ [1]={ limit={ @@ -111,76 +151,36 @@ return { [2]="off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating" } }, - [4]={ - [1]={ - [1]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=10, - [2]=10 - } - }, - text="Can Parry Projectiles fired from within {0} metre" - }, - [2]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Can Parry Projectiles fired from within {0} metres" - } - }, - stats={ - [1]="parry_blocked_projectile_distance" - } - }, - [5]={ - [1]={ - }, - stats={ - [1]="parry_buff_attack_damage_taken_+%_final_magnitude_to_apply" - } - }, [6]={ [1]={ }, stats={ - [1]="parry_buff_spell_damage_taken_+%_final_magnitude_to_apply" + [1]="parry_buff_attack_damage_taken_+%_final_magnitude_to_apply" } }, [7]={ [1]={ }, stats={ - [1]="skill_effect_duration" + [1]="parry_buff_spell_damage_taken_+%_final_magnitude_to_apply" } }, [8]={ [1]={ }, stats={ - [1]="virtual_parry_blocked_projectile_distance" + [1]="skill_effect_duration" } }, - ["base_parry_buff_damage_taken_+%_final_to_apply"]=1, - ["base_skill_effect_duration"]=2, - ["off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating"]=3, - ["off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating"]=3, + ["base_maximum_active_block_distance"]=1, + ["base_parry_buff_damage_taken_+%_final_to_apply"]=2, + ["base_skill_effect_duration"]=3, + ["maximum_active_block_distance"]=4, + ["off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating"]=5, + ["off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating"]=5, parent="skill_stat_descriptions", - ["parry_blocked_projectile_distance"]=4, - ["parry_buff_attack_damage_taken_+%_final_magnitude_to_apply"]=5, - ["parry_buff_spell_damage_taken_+%_final_magnitude_to_apply"]=6, - ["quality_display_base_skill_effect_duration_is_gem"]=2, - ["skill_effect_duration"]=7, - ["virtual_parry_blocked_projectile_distance"]=8 + ["parry_buff_attack_damage_taken_+%_final_magnitude_to_apply"]=6, + ["parry_buff_spell_damage_taken_+%_final_magnitude_to_apply"]=7, + ["quality_display_base_skill_effect_duration_is_gem"]=3, + ["skill_effect_duration"]=8 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/plague_bearer_nova.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/plague_bearer_nova.lua new file mode 100644 index 0000000000..557d8d0520 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/plague_bearer_nova.lua @@ -0,0 +1,69 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Nova radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Nova radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="multiply_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Stored Poison grants up to {0}% more Area of Effect" + } + }, + stats={ + [1]="plague_bearer_nova_area_+%_final_per_incubation_%" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["plague_bearer_nova_area_+%_final_per_incubation_%"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_0.lua index baa838fc3d..74c81d6986 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_0.lua @@ -4,27 +4,139 @@ return { [1]={ stats={ - [1]="active_skill_base_secondary_area_of_effect_radius" + [1]="poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison" } }, [2]={ stats={ - [1]="poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison" + [1]="poisonbloom_arrow_max_additional_burst_base_radius_+" } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Fires {0:+d} Pustule" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Fires {0:+d} Pustules" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} Pustule" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} Pustules" + } + }, stats={ - [1]="poisonbloom_arrow_max_additional_burst_base_radius_+" + [1]="base_number_of_projectiles", + [2]="skill_can_fire_arrows", + [3]="quality_display_base_number_of_projectiles_is_gem" } }, [4]={ + [1]={ + [1]={ + limit={ + }, + text="Limit {0:+d} pustule" + }, + [2]={ + limit={ + }, + text="Limit {0:+d} pustules" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} pustule" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} pustules" + } + }, + stats={ + [1]="number_of_poisonbloom_arrow_bloom_allowed" + } + }, + [5]={ + [1]={ + }, stats={ - [1]="base_skill_detonation_time" + [1]="virtual_poisonbloom_arrow_bloom_limit" } }, - ["active_skill_base_secondary_area_of_effect_radius"]=1, - ["base_skill_detonation_time"]=4, + ["base_number_of_projectiles"]=3, + ["number_of_poisonbloom_arrow_bloom_allowed"]=4, parent="skill_stat_descriptions", - ["poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison"]=2, - ["poisonbloom_arrow_max_additional_burst_base_radius_+"]=3 + ["poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison"]=1, + ["poisonbloom_arrow_max_additional_burst_base_radius_+"]=2, + ["quality_display_base_number_of_projectiles_is_gem"]=3, + ["skill_can_fire_arrows"]=3, + ["virtual_poisonbloom_arrow_bloom_limit"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_1.lua index a438be805a..5aa3223330 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonbloom_arrow_statset_1.lua @@ -8,140 +8,40 @@ return { } }, [2]={ - [1]={ - }, stats={ - [1]="active_skill_area_of_effect_radius" + [1]="base_skill_detonation_time" } }, [3]={ - [1]={ - [1]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=10, - [2]=10 - } - }, - text="Explosion radius is {0} metre" - }, - [2]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Explosion radius is {0} metres" - } - }, stats={ - [1]="active_skill_base_area_of_effect_radius" + [1]="skill_detonation_time" } }, [4]={ [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - }, - [2]={ - [1]="#", - [2]="#" - }, - [3]={ - [1]=0, - [2]=0 - } - }, - text="Fires {0:+d} Pustule" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - }, - [3]={ - [1]=0, - [2]=0 - } - }, - text="Fires {0:+d} Pustules" - }, - [3]={ - limit={ - [1]={ - [1]=1, - [2]=1 - }, - [2]={ - [1]="#", - [2]="#" - }, - [3]={ - [1]="#", - [2]="#" - } - }, - text="Fires {0} Pustule" - }, - [4]={ - limit={ - [1]={ - [1]=2, - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - }, - [3]={ - [1]="#", - [2]="#" - } - }, - text="Fires {0} Pustules" - } }, stats={ - [1]="base_number_of_projectiles", - [2]="skill_can_fire_arrows", - [3]="quality_display_base_number_of_projectiles_is_gem" + [1]="active_skill_area_of_effect_radius" } }, [5]={ [1]={ [1]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="divide_by_ten_1dp_if_required", v=1 }, limit={ [1]={ - [1]=1000, - [2]=1000 + [1]=10, + [2]=10 } }, - text="Maximum pustule duration is {0} second" + text="Explosion radius is {0} metre" }, [2]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="divide_by_ten_1dp_if_required", v=1 }, limit={ @@ -150,11 +50,11 @@ return { [2]="#" } }, - text="Maximum pustule duration is {0} seconds" + text="Explosion radius is {0} metres" } }, stats={ - [1]="base_skill_effect_duration" + [1]="active_skill_base_area_of_effect_radius" } }, [6]={ @@ -162,49 +62,22 @@ return { [1]={ limit={ [1]={ - [1]=1, - [2]=1 - } - }, - text="Limit {0} pustule" - }, - [2]={ - limit={ - [1]={ - [1]=2, + [1]="#", [2]="#" } }, - text="Limit {0} pustules" + text="Pustules store expected damage of Poisons inflicted on them" } }, stats={ - [1]="number_of_poisonbloom_arrow_bloom_allowed" - } - }, - [7]={ - [1]={ - }, - stats={ - [1]="skill_effect_duration" - } - }, - [8]={ - [1]={ - }, - stats={ - [1]="virtual_poisonbloom_arrow_bloom_limit" + [1]="skill_specific_stat_description_mode" } }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, ["active_skill_base_secondary_area_of_effect_radius"]=1, - ["base_number_of_projectiles"]=4, - ["base_skill_effect_duration"]=5, - ["number_of_poisonbloom_arrow_bloom_allowed"]=6, + ["base_skill_detonation_time"]=2, parent="skill_stat_descriptions", - ["quality_display_base_number_of_projectiles_is_gem"]=4, - ["skill_can_fire_arrows"]=4, - ["skill_effect_duration"]=7, - ["virtual_poisonbloom_arrow_bloom_limit"]=8 + ["skill_detonation_time"]=3, + ["skill_specific_stat_description_mode"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonous_concoction.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonous_concoction.lua new file mode 100644 index 0000000000..e14d6df672 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/poisonous_concoction.lua @@ -0,0 +1,155 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Burst radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Burst radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot Poison" + } + }, + stats={ + [1]="cannot_poison" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Enemies lose Life equal to the expected remaining Damage of the Consumed Poison" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies lose Life equal to {0}% of the expected remaining Damage of the Consumed Poison" + } + }, + stats={ + [1]="poison_concoction_poison_burst_physical_damage_equal_to_%_of_strongest_active_poison" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Area of Effect per Poison affecting the Enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Area of Effect per Poison affecting the Enemy" + } + }, + stats={ + [1]="poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["cannot_poison"]=4, + parent="skill_stat_descriptions", + ["poison_concoction_poison_burst_physical_damage_equal_to_%_of_strongest_active_poison"]=5, + ["poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_incendiary.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_incendiary.lua index 2268ce0602..819db3fdd2 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_incendiary.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_incendiary.lua @@ -3,13 +3,18 @@ return { [1]={ + stats={ + [1]="base_knockback_distance" + } + }, + [2]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -42,7 +47,8 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_knockback_distance"]=1, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_permafrost.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_permafrost.lua index 6beecbe7a0..aec12e38cc 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_permafrost.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_permafrost.lua @@ -3,13 +3,18 @@ return { [1]={ + stats={ + [1]="base_knockback_distance" + } + }, + [2]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -42,7 +47,7 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [3]={ + [4]={ [1]={ [1]={ [1]={ @@ -75,7 +80,7 @@ return { [1]="base_skill_effect_duration" } }, - [4]={ + [5]={ [1]={ [1]={ limit={ @@ -109,10 +114,11 @@ return { [2]="frozen_locus_crystal_display_stat" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, - ["base_skill_effect_duration"]=3, - ["frost_wall_maximum_life"]=4, - ["frozen_locus_crystal_display_stat"]=4, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_knockback_distance"]=1, + ["base_skill_effect_duration"]=4, + ["frost_wall_maximum_life"]=5, + ["frozen_locus_crystal_display_stat"]=5, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_piercing.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_piercing.lua index 092fa6d998..9ba9ffce83 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_piercing.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_piercing.lua @@ -8,6 +8,16 @@ return { } }, [2]={ + stats={ + [1]="base_knockback_distance" + } + }, + [3]={ + stats={ + [1]="exploit_debuff_attack_damage_to_convert_to_magnitude_%" + } + }, + [4]={ [1]={ [1]={ limit={ @@ -36,7 +46,64 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Applies Riven Armour on Hit\nRiven Armour has {0} second duration, or until Fully\nBroken Armour is removed" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Deals {0}% less damage to Unique enemies" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals {0}% more damage to Unique enemies" + } + }, + stats={ + [1]="active_skill_damage_+%_final_vs_unique_enemies" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_damage_+%_final_vs_unique_enemies"]=6, + ["base_knockback_distance"]=2, + ["base_skill_effect_duration"]=5, ["cannot_break_armour"]=1, + ["exploit_debuff_attack_damage_to_convert_to_magnitude_%"]=3, parent="skill_stat_descriptions", - ["projectile_base_number_of_targets_to_pierce"]=2 + ["projectile_base_number_of_targets_to_pierce"]=4, + ["skill_effect_duration"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_stormblast.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_stormblast.lua index 2268ce0602..819db3fdd2 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_stormblast.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/power_shot_stormblast.lua @@ -3,13 +3,18 @@ return { [1]={ + stats={ + [1]="base_knockback_distance" + } + }, + [2]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -42,7 +47,8 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_knockback_distance"]=1, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/quarterstaff_frost_burst.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/quarterstaff_frost_burst.lua index aa038db9c8..fd397fa0ef 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/quarterstaff_frost_burst.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/quarterstaff_frost_burst.lua @@ -3,13 +3,18 @@ return { [1]={ + stats={ + [1]="has_freeze_cull" + } + }, + [2]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -42,7 +47,8 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["has_freeze_cull"]=1, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_arrows_new.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_arrows_new.lua index f5ce971d09..a67cfcea77 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_arrows_new.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_arrows_new.lua @@ -115,6 +115,35 @@ return { } }, [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Arrows fall {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Arrows fall {0}% slower" + } + }, + stats={ + [1]="rain_of_arrows_arrow_speed_+%" + } + }, + [8]={ [1]={ [1]={ [1]={ @@ -134,7 +163,7 @@ return { [1]="rain_of_arrows_delay_per_arrow" } }, - [8]={ + [9]={ [1]={ [1]={ limit={ @@ -150,7 +179,7 @@ return { [1]="rain_of_arrows_projectile_count_multiplier_if_any_frenzy_charge_spent" } }, - [9]={ + [10]={ [1]={ [1]={ limit={ @@ -166,7 +195,7 @@ return { [1]="rain_of_arrows_projectile_count_multiplier_per_frenzy_charge" } }, - [10]={ + [11]={ [1]={ [1]={ limit={ @@ -182,7 +211,7 @@ return { [1]="skill_specific_stat_description_mode" } }, - [11]={ + [12]={ [1]={ }, stats={ @@ -196,9 +225,10 @@ return { ["base_number_of_arrow_rains_allowed"]=5, ["number_of_arrow_rains_allowed"]=6, parent="skill_stat_descriptions", - ["rain_of_arrows_delay_per_arrow"]=7, - ["rain_of_arrows_projectile_count_multiplier_if_any_frenzy_charge_spent"]=8, - ["rain_of_arrows_projectile_count_multiplier_per_frenzy_charge"]=9, - ["skill_specific_stat_description_mode"]=10, - ["virtual_rain_of_arrows_delay_per_arrow_display_ms"]=11 + ["rain_of_arrows_arrow_speed_+%"]=7, + ["rain_of_arrows_delay_per_arrow"]=8, + ["rain_of_arrows_projectile_count_multiplier_if_any_frenzy_charge_spent"]=9, + ["rain_of_arrows_projectile_count_multiplier_per_frenzy_charge"]=10, + ["skill_specific_stat_description_mode"]=11, + ["virtual_rain_of_arrows_delay_per_arrow_display_ms"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/raise_zombie.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/raise_zombie.lua index a13eeb0bd0..eaf34b554b 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/raise_zombie.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/raise_zombie.lua @@ -123,6 +123,35 @@ return { } }, [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased effect of Empowerment on Raised Zombies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced effect of Empowerment on Raised Zombies" + } + }, + stats={ + [1]="raise_zombie_empowerment_effect_+%" + } + }, + [6]={ [1]={ }, stats={ @@ -134,5 +163,6 @@ return { ["power_charged_zombie_damage_taken_-%_final"]=2, ["power_charged_zombie_hit_damage_+%_final"]=3, ["power_charged_zombie_movement_speed_+%_final"]=4, - ["skill_effect_duration"]=5 + ["raise_zombie_empowerment_effect_+%"]=5, + ["skill_effect_duration"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_incendiary.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_incendiary.lua index 5a2d76eaca..95f576e034 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_incendiary.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_incendiary.lua @@ -8,58 +8,15 @@ return { } }, [2]={ - [1]={ - }, stats={ - [1]="display_rapid_shot_charge_up_time_ms" + [1]="base_knockback_distance" } }, [3]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Rapid Shots Gain {0}% of Damage as extra Fire Damage per Heat" - } - }, - stats={ - [1]="rapid_shot_all_damage_%_to_gain_as_fire_per_stack" - } - }, - [4]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Charges for {0}% of Attack Time before firing if used when you have no Heat" - } - }, - stats={ - [1]="rapid_shot_charge_up_time_as_%_of_attack_time" - } - }, - [5]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=60, - [2]=60 - } - }, - text="Gain Heat once per second while firing" - }, - [2]={ [1]={ - k="per_minute_to_per_second_2dp_if_required", + k="milliseconds_to_seconds_2dp_if_required", v=1 }, limit={ @@ -68,34 +25,15 @@ return { [2]="#" } }, - text="Gain Heat {0} times per second while firing" - } - }, - stats={ - [1]="rapid_shot_heat_gained_per_minue_while_performing" - } - }, - [6]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Grenades Gain {0}% of Damage as extra Fire Damage per Heat" + text="Cannot fire or reload for {0} seconds on\nreaching maximum Heat" } }, stats={ - [1]="rapid_shot_next_grenade_all_damage_%_to_gain_as_fire_per_stack" + [1]="skill_specific_stat_description_mode" } }, + ["base_knockback_distance"]=2, ["base_skill_effect_duration"]=1, - ["display_rapid_shot_charge_up_time_ms"]=2, parent="skill_stat_descriptions", - ["rapid_shot_all_damage_%_to_gain_as_fire_per_stack"]=3, - ["rapid_shot_charge_up_time_as_%_of_attack_time"]=4, - ["rapid_shot_heat_gained_per_minue_while_performing"]=5, - ["rapid_shot_next_grenade_all_damage_%_to_gain_as_fire_per_stack"]=6 + ["skill_specific_stat_description_mode"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_permafrost.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_permafrost.lua index 8a03664a1f..225a8d7708 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_permafrost.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_permafrost.lua @@ -3,13 +3,23 @@ return { [1]={ + stats={ + [1]="base_knockback_distance" + } + }, + [2]={ + stats={ + [1]="ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + } + }, + [3]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [2]={ + [4]={ [1]={ [1]={ [1]={ @@ -42,9 +52,46 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [3]={ + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Shards arm after {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shards arm after {0} seconds" + } + }, + stats={ + [1]="permafrost_shard_arming_time_ms" + } + }, + [6]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, limit={ [1]={ [1]=1, @@ -53,12 +100,20 @@ return { [2]={ [1]="#", [2]="#" + }, + [3]={ + [1]="#", + [2]="#" } }, - text="Shards that have existed for at\nleast 0.5 seconds deal {0}% more Damage" + text="Shards deal up to {0}% more damage {2} seconds after arming" }, [2]={ [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + [2]={ k="negate", v=1 }, @@ -70,30 +125,31 @@ return { [2]={ [1]="#", [2]="#" + }, + [3]={ + [1]="#", + [2]="#" } }, - text="Shards that have existed for at\nleast 0.5 seconds deal {0}% less Damage" + text="Shards deal up to {0}% less damage {2} seconds after arming" }, [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } }, - text="Shards that have existed for at\nleast 0.5 seconds deal {0:+d}% more Damage" + text="Shards deal up to {0:+d}% more Damage after arming" } }, stats={ [1]="permafrost_shard_damage_+%_final_after_1_second", - [2]="quality_display_permafrost_shard_damage_+%_final_after_1_second_is_gem" + [2]="quality_display_permafrost_shard_damage_+%_final_after_1_second_is_gem", + [3]="permafrost_shard_bonus_damage_delay_ms" } }, - [4]={ + [7]={ [1]={ [1]={ limit={ @@ -118,10 +174,14 @@ return { [1]="permafrost_shard_limit" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["base_knockback_distance"]=1, + ["ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=2, parent="skill_stat_descriptions", - ["permafrost_shard_damage_+%_final_after_1_second"]=3, - ["permafrost_shard_limit"]=4, - ["quality_display_permafrost_shard_damage_+%_final_after_1_second_is_gem"]=3 + ["permafrost_shard_arming_time_ms"]=5, + ["permafrost_shard_bonus_damage_delay_ms"]=6, + ["permafrost_shard_damage_+%_final_after_1_second"]=6, + ["permafrost_shard_limit"]=7, + ["quality_display_permafrost_shard_damage_+%_final_after_1_second_is_gem"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_piercing.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_piercing.lua index 1f9d585c4b..21edc0df37 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_piercing.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_piercing.lua @@ -3,6 +3,11 @@ return { [1]={ + stats={ + [1]="base_knockback_distance" + } + }, + [2]={ [1]={ [1]={ limit={ @@ -31,6 +36,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, + ["base_knockback_distance"]=1, parent="skill_stat_descriptions", - ["projectile_base_number_of_targets_to_pierce"]=1 + ["projectile_base_number_of_targets_to_pierce"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem.lua index 738a972055..6f337dba1d 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem.lua @@ -8,13 +8,18 @@ return { } }, [2]={ + stats={ + [1]="base_knockback_distance" + } + }, + [3]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [3]={ + [4]={ [1]={ [1]={ [1]={ @@ -90,7 +95,7 @@ return { [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" } }, - [4]={ + [5]={ [1]={ [1]={ [1]={ @@ -110,18 +115,19 @@ return { [1]="active_skill_base_secondary_area_of_effect_radius" } }, - [5]={ + [6]={ [1]={ }, stats={ [1]="active_skill_secondary_area_of_effect_radius" } }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, - ["active_skill_base_secondary_area_of_effect_radius"]=4, - ["active_skill_secondary_area_of_effect_radius"]=5, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["active_skill_base_secondary_area_of_effect_radius"]=5, + ["active_skill_secondary_area_of_effect_radius"]=6, + ["base_knockback_distance"]=2, ["number_of_crossbow_bolts"]=1, parent="skill_stat_descriptions", - ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=3 + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem_ammo.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem_ammo.lua index 7e9f7e93a8..aaac363f68 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem_ammo.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rapid_shot_requiem_ammo.lua @@ -8,6 +8,11 @@ return { } }, [2]={ + stats={ + [1]="base_knockback_distance" + } + }, + [3]={ [1]={ [1]={ [1]={ @@ -40,7 +45,7 @@ return { [1]="rapidshot_requiem_active_duration_ms" } }, - [3]={ + [4]={ [1]={ [1]={ limit={ @@ -56,7 +61,7 @@ return { [1]="rapidshot_requiem_base_buff_count_requirement" } }, - [4]={ + [5]={ [1]={ [1]={ [1]={ @@ -76,9 +81,10 @@ return { [1]="rapidshot_requiem_number_of_stacks_per_minute" } }, + ["base_knockback_distance"]=2, ["number_of_crossbow_bolts"]=1, parent="skill_stat_descriptions", - ["rapidshot_requiem_active_duration_ms"]=2, - ["rapidshot_requiem_base_buff_count_requirement"]=3, - ["rapidshot_requiem_number_of_stacks_per_minute"]=4 + ["rapidshot_requiem_active_duration_ms"]=3, + ["rapidshot_requiem_base_buff_count_requirement"]=4, + ["rapidshot_requiem_number_of_stacks_per_minute"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua new file mode 100644 index 0000000000..17d3e994c8 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua @@ -0,0 +1,146 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metres to swarm Attack radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarms Attack enemies within {0} metre radius of you" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Swarm duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarm duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Spawn a new Swarm once every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spawn a new Swarm once every {0} seconds" + } + }, + stats={ + [1]="ravenous_swarm_create_new_swarm_every_X_ms" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} active Swarm" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} active Swarms" + } + }, + stats={ + [1]="ravenous_swarm_maximum_swarm_count" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["ravenous_swarm_create_new_swarm_every_X_ms"]=4, + ["ravenous_swarm_maximum_swarm_count"]=5, + ["skill_effect_duration"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/reap.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/reap.lua index 51191be96e..701c7a452c 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/reap.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/reap.lua @@ -5,6 +5,24 @@ return { [1]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + }, + text="Critical Weakness duration is {0:+d} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + }, + text="Critical Weakness duration is {0:+d} seconds" + }, + [3]={ [1]={ k="milliseconds_to_seconds_2dp_if_required", v=1 @@ -17,7 +35,7 @@ return { }, text="Critical Weakness duration is {0} second" }, - [2]={ + [4]={ [1]={ k="milliseconds_to_seconds_2dp_if_required", v=1 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rip_from_time.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rip_from_time.lua new file mode 100644 index 0000000000..c63b5a264d --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rip_from_time.lua @@ -0,0 +1,100 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Time Ripped immunity duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Time Ripped immunity duration is {0} seconds" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Time Ripped Clone duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Time Ripped Clone duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="DNT Damage Dealt to Time Ripped Clone is also dealt to the original target" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT {0}% of Damage Dealt to Time Ripped Clone is also dealt to the original target" + } + }, + stats={ + [1]="time_rip_damage_share_%" + } + }, + ["base_secondary_skill_effect_duration"]=1, + ["base_skill_effect_duration"]=2, + parent="skill_stat_descriptions", + ["time_rip_damage_share_%"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua new file mode 100644 index 0000000000..f0c4b2061e --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua @@ -0,0 +1,101 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_number_of_projectiles" + } + }, + [2]={ + stats={ + [1]="total_number_of_projectiles_to_fire" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Bolt impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bolt impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Modifiers to number of Projectiles fired instead apply\nto number of Hits per salvo" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Hits {0} times per salvo\nModifiers to number of Projectiles fired instead apply\nto number of Hits per salvo" + } + }, + stats={ + [1]="base_number_of_projectiles" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits per salvo@{0}" + } + }, + stats={ + [1]="total_number_of_projectiles_to_fire" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["base_number_of_projectiles"]=5, + parent="skill_stat_descriptions", + ["total_number_of_projectiles_to_fire"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua new file mode 100644 index 0000000000..b985616b0d --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua @@ -0,0 +1,100 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Minimum of {0} second between each backlash" + } + }, + stats={ + [1]="runic_tempering_backlash_cooldown_ms" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% increase Damage taken while you have runes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% decrease Damage taken while you have runes" + } + }, + stats={ + [1]="runic_tempering_damage_taken_+%" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Each rune can backlash {0} time" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Each rune can backlash {0} times" + } + }, + stats={ + [1]="runic_tempering_hit_per_rune" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Maximum {0} Runes" + } + }, + stats={ + [1]="runic_tempering_max_runes" + } + }, + parent="skill_stat_descriptions", + ["runic_tempering_backlash_cooldown_ms"]=1, + ["runic_tempering_damage_taken_+%"]=2, + ["runic_tempering_hit_per_rune"]=3, + ["runic_tempering_max_runes"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sandstorm_swipe.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sandstorm_swipe.lua index 57bf416c17..ad9e209890 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sandstorm_swipe.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sandstorm_swipe.lua @@ -42,7 +42,28 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}m to Radius per additional stage" + } + }, + stats={ + [1]="sandstorm_swipe_storm_radius_+_per_stage" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - parent="skill_stat_descriptions" + parent="skill_stat_descriptions", + ["sandstorm_swipe_storm_radius_+_per_stage"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua new file mode 100644 index 0000000000..ef50db9ac8 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua @@ -0,0 +1,126 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hover duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hover duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Can accumulate up to {0} Wellsprites\nModifiers to number of Projectiles instead\napply to number of Wellsprites accumulated" + } + }, + stats={ + [1]="blazing_cluster_maximum_number_of_projectiles_allowed" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d}% more Damage for each previous Wellsprite fired in sequence" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Damage for each previous Wellsprite fired in sequence" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0}% less Damage for each previous Wellsprite fired in sequence" + } + }, + stats={ + [1]="ember_fusillade_damage_+%_final_per_ember_fired", + [2]="quality_display_ember_fusilade_is_gem" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="total_number_of_projectiles_to_fire" + } + }, + ["base_skill_effect_duration"]=1, + ["blazing_cluster_maximum_number_of_projectiles_allowed"]=2, + ["ember_fusillade_damage_+%_final_per_ember_fired"]=3, + parent="skill_stat_descriptions", + ["quality_display_ember_fusilade_is_gem"]=3, + ["skill_effect_duration"]=4, + ["total_number_of_projectiles_to_fire"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua new file mode 100644 index 0000000000..da2ba9f835 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua @@ -0,0 +1,73 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="total_number_of_projectiles_to_fire" + } + }, + [2]={ + stats={ + [1]="blazing_cluster_maximum_number_of_projectiles_allowed" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["blazing_cluster_maximum_number_of_projectiles_allowed"]=2, + parent="specific_skill_stat_descriptions/blazing_cluster_statset_0", + ["total_number_of_projectiles_to_fire"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/screaming_devastation.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/screaming_devastation.lua new file mode 100644 index 0000000000..9ea72f45c4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/screaming_devastation.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Withering Ground duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Withering Ground duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/seismic_cry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/seismic_cry.lua index 683f386147..ec25ff3fc3 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/seismic_cry.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/seismic_cry.lua @@ -47,8 +47,74 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Attack Aftershocks deal {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Attack Aftershocks deal {0}% less damage" + } + }, + stats={ + [1]="seismic_cry_slam_skill_aftershock_damage_+%_final" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Empowers one Slam per enemy Power in\nrange, counting up to {1} Power" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Empowers one Slam per {0} enemy Power in\nrange, counting up to {1} Power" + } + }, + stats={ + [1]="warcry_empowers_per_X_monster_power", + [2]="warcry_empowers_per_X_monster_power_mp_cap" + } + }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, ["base_skill_effect_duration"]=1, - parent="skill_stat_descriptions" + parent="skill_stat_descriptions", + ["seismic_cry_slam_skill_aftershock_damage_+%_final"]=4, + ["warcry_empowers_per_X_monster_power"]=5, + ["warcry_empowers_per_X_monster_power_mp_cap"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shard_despoiler.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shard_despoiler.lua index 80eb3a3cbb..1500f9c4bc 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shard_despoiler.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shard_despoiler.lua @@ -5,17 +5,13 @@ return { [1]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ [1]=1000, [2]=1000 } }, - text="Buff duration is {0} second" + text="Instantly reloads your Crossbow and restores one cooldown use for your Grenades upon Consuming\nFreeze, Shock, Ignite, or Fully Broken Armour\nMinimum duration between consumptions is {0} second" }, [2]={ [1]={ @@ -28,23 +24,27 @@ return { [2]="#" } }, - text="Buff duration is {0} seconds" + text="Instantly reloads your Crossbow and restores one cooldown use for your Grenades upon Consuming\nFreeze, Shock, Ignite, or Fully Broken Armour\nMinimum duration between consumptions is {0} seconds" } }, stats={ - [1]="base_skill_effect_duration" + [1]="base_secondary_skill_effect_duration" } }, [2]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, limit={ [1]={ [1]=1000, [2]=1000 } }, - text="Instantly reloads your Crossbow and restores one cooldown use for your Grenades upon Consuming\nFreeze, Shock, Ignite, or Fully Broken Armour, no more than\nonce per second" + text="Buff duration is {0} second" }, [2]={ [1]={ @@ -57,22 +57,30 @@ return { [2]="#" } }, - text="Instantly reloads your Crossbow and restores one cooldown use for your Grenades upon Consuming\nFreeze, Shock, Ignite, or Fully Broken Armour, no more than\nonce every {0} seconds" + text="Buff duration is {0} seconds" } }, stats={ - [1]="reload_ammo_on_effect_consume_with_x_ms_cooldown" + [1]="base_skill_effect_duration" } }, [3]={ + [1]={ + }, + stats={ + [1]="secondary_skill_effect_duration" + } + }, + [4]={ [1]={ }, stats={ [1]="skill_effect_duration" } }, - ["base_skill_effect_duration"]=1, + ["base_secondary_skill_effect_duration"]=1, + ["base_skill_effect_duration"]=2, parent="skill_stat_descriptions", - ["reload_ammo_on_effect_consume_with_x_ms_cooldown"]=2, - ["skill_effect_duration"]=3 + ["secondary_skill_effect_duration"]=3, + ["skill_effect_duration"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shatter.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shatter.lua index 757e52660b..a6171dd3d6 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shatter.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shatter.lua @@ -13,13 +13,33 @@ return { } }, [3]={ + stats={ + [1]="never_shock" + } + }, + [4]={ + stats={ + [1]="base_consume_enemy_shock_on_hit" + } + }, + [5]={ + stats={ + [1]="never_ignite" + } + }, + [6]={ + stats={ + [1]="consume_ignite_on_hit" + } + }, + [7]={ [1]={ }, stats={ [1]="active_skill_area_of_effect_radius" } }, - [4]={ + [8]={ [1]={ [1]={ [1]={ @@ -32,7 +52,7 @@ return { [2]=10 } }, - text="Explosion radius is {0} metre" + text="Enemy explosion radius is {0} metre" }, [2]={ [1]={ @@ -45,16 +65,122 @@ return { [2]="#" } }, - text="Explosion radius is {0} metres" + text="Enemy explosion radius is {0} metres" } }, stats={ [1]="active_skill_base_area_of_effect_radius" } }, - ["active_skill_area_of_effect_radius"]=3, - ["active_skill_base_area_of_effect_radius"]=4, + [9]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Frostbolt explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Frostbolt explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [11]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Orb explosions" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Orb explosions" + } + }, + stats={ + [1]="shatter_damage_+%_final_when_exploding_orbs" + } + }, + [12]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for blasts originating\nfrom a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for blasts originating\nfrom a Unique enemy" + } + }, + stats={ + [1]="snap_damage_+%_final_if_created_from_unique" + } + }, + ["active_skill_area_of_effect_radius"]=7, + ["active_skill_base_area_of_effect_radius"]=8, + ["active_skill_base_secondary_area_of_effect_radius"]=9, + ["active_skill_secondary_area_of_effect_radius"]=10, ["base_consume_enemy_freeze_on_hit"]=2, + ["base_consume_enemy_shock_on_hit"]=4, + ["consume_ignite_on_hit"]=6, ["never_freeze"]=1, - parent="skill_stat_descriptions" + ["never_ignite"]=5, + ["never_shock"]=3, + parent="skill_stat_descriptions", + ["shatter_damage_+%_final_when_exploding_orbs"]=11, + ["snap_damage_+%_final_if_created_from_unique"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_concoction.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_concoction.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_concoction.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shearing_bolts.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shearing_bolts.lua new file mode 100644 index 0000000000..d87f55d831 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shearing_bolts.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Maximum Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Empowers {0} Attacks" + } + }, + stats={ + [1]="shearing_bolts_number_of_empowered_attacks" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions", + ["shearing_bolts_number_of_empowered_attacks"]=2, + ["skill_effect_duration"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_barricade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_barricade.lua index be6e75ee7d..35b94420ab 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_barricade.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_barricade.lua @@ -22,7 +22,7 @@ return { [2]=10 } }, - text="Explosion radius is {0} metre" + text="Explosion length is {0} metre" }, [2]={ [1]={ @@ -35,7 +35,7 @@ return { [2]="#" } }, - text="Explosion radius is {0} metres" + text="Explosion length is {0} metres" } }, stats={ @@ -43,6 +43,22 @@ return { } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Gains added damage equal to {0}% of Main Hand Weapon Damage" + } + }, + stats={ + [1]="base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%" + } + }, + [4]={ [1]={ [1]={ [1]={ @@ -75,7 +91,7 @@ return { [1]="base_skill_effect_duration" } }, - [4]={ + [5]={ [1]={ [1]={ limit={ @@ -109,7 +125,7 @@ return { [2]="shield_wall_segment_display_stat" } }, - [5]={ + [6]={ [1]={ }, stats={ @@ -118,9 +134,10 @@ return { }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - ["base_skill_effect_duration"]=3, + ["base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%"]=3, + ["base_skill_effect_duration"]=4, parent="skill_stat_descriptions", - ["shield_wall_maximum_life"]=4, - ["shield_wall_segment_display_stat"]=4, - ["skill_effect_duration"]=5 + ["shield_wall_maximum_life"]=5, + ["shield_wall_segment_display_stat"]=5, + ["skill_effect_duration"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shielding_cry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shielding_cry.lua new file mode 100644 index 0000000000..a7007d6b19 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shielding_cry.lua @@ -0,0 +1,149 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Warcry radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcry radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Guard duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Guard duration is {0} seconds" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="secondary_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Can Trigger Shield Wave once per enemy Power in\nrange, counting up to {1} Power" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Can Trigger Shield Wave once per {0} enemy Power in\nrange, counting up to {1} Power" + } + }, + stats={ + [1]="shielding_cry_an_additional_empowered_attack_per_X_mp", + [2]="shielding_cry_an_additional_empowered_attack_per_X_mp_mp_cap" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Grants {0} Guard for every 5 enemy Power in\nrange, counting up to {1} Power" + } + }, + stats={ + [1]="shielding_cry_grant_X_guard_per_5_mp", + [2]="shielding_cry_grant_X_guard_per_5_mp_mp_cap" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_secondary_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["secondary_skill_effect_duration"]=4, + ["shielding_cry_an_additional_empowered_attack_per_X_mp"]=5, + ["shielding_cry_an_additional_empowered_attack_per_X_mp_mp_cap"]=5, + ["shielding_cry_grant_X_guard_per_5_mp"]=6, + ["shielding_cry_grant_X_guard_per_5_mp_mp_cap"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shielding_cry_shockwave.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shielding_cry_shockwave.lua new file mode 100644 index 0000000000..25c9dc1529 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shielding_cry_shockwave.lua @@ -0,0 +1,88 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Attack is Triggered by Fortifying Cry and counts as Empowered by it" + } + }, + stats={ + [1]="skill_triggered_manually_by_other_skill" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Damage with Warcries affect this Skill" + } + }, + stats={ + [1]="modifiers_to_warcry_damage_also_apply_to_this" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["base_skill_effect_duration"]=1, + ["modifiers_to_warcry_damage_also_apply_to_this"]=5, + parent="skill_stat_descriptions", + ["skill_triggered_manually_by_other_skill"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shock_grenade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shock_grenade.lua index a2021d5417..43a994f3b9 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shock_grenade.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shock_grenade.lua @@ -4,9 +4,35 @@ return { [1]={ [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fuse duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fuse duration is {0} seconds" + } }, stats={ - [1]="active_skill_area_of_effect_radius" + [1]="base_skill_effect_duration" } }, [2]={ @@ -43,6 +69,67 @@ return { } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Converts {0}% of Physical Damage to Lightning Damage" + } + }, + stats={ + [1]="active_skill_base_physical_damage_%_to_convert_to_lightning" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lightning damage from Hits with this skill Contributes to Electrocution Buildup" + } + }, + stats={ + [1]="base_lightning_damage_can_electrocute" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Electrocution buildup from Hits with this skill" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Electrocution buildup from Hits with this skill" + } + }, + stats={ + [1]="active_skill_electrocutes_as_though_dealt_damage_+%_final" + } + }, + [6]={ [1]={ [1]={ [1]={ @@ -55,7 +142,7 @@ return { [2]=1000 } }, - text="Fuse duration is {0} second" + text="Electrocution buildup Debuff duration is {0} second" }, [2]={ [1]={ @@ -68,23 +155,34 @@ return { [2]="#" } }, - text="Fuse duration is {0} seconds" + text="Electrocution buildup Debuff duration is {0} seconds" } }, stats={ - [1]="base_skill_effect_duration" + [1]="base_secondary_skill_effect_duration" } }, - [4]={ + [7]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [8]={ [1]={ }, stats={ [1]="grenade_fuse_duration" } }, - ["active_skill_area_of_effect_radius"]=1, + ["active_skill_area_of_effect_radius"]=7, ["active_skill_base_area_of_effect_radius"]=2, - ["base_skill_effect_duration"]=3, - ["grenade_fuse_duration"]=4, + ["active_skill_base_physical_damage_%_to_convert_to_lightning"]=3, + ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=5, + ["base_lightning_damage_can_electrocute"]=4, + ["base_secondary_skill_effect_duration"]=6, + ["base_skill_effect_duration"]=1, + ["grenade_fuse_duration"]=8, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sorcery_ward.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sorcery_ward.lua index a32c864fe5..dc7985181e 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sorcery_ward.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sorcery_ward.lua @@ -35,6 +35,11 @@ return { [4]={ [1]={ [1]={ + limit={ + }, + text="Barrier can take Elemental Damage up to an additional {0:+d}% of your Armour and Evasion Rating" + }, + [2]={ limit={ [1]={ [1]=1, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spark_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spark_statset_0.lua new file mode 100644 index 0000000000..f5a498bb15 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spark_statset_0.lua @@ -0,0 +1,82 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Projectile duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectile duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Projectiles fired at the same time can Hit the same\ntarget no more than once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles fired at the same time can Hit the same\ntarget no more than once every {0} seconds" + } + }, + stats={ + [1]="spark_min_time_between_target_clearing_ms" + } + }, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=2, + ["spark_min_time_between_target_clearing_ms"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spark_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spark_statset_1.lua new file mode 100644 index 0000000000..4d29b6abbe --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spark_statset_1.lua @@ -0,0 +1,138 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="projectiles_nova" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Fires {0} Projectiles in a circle" + } + }, + stats={ + [1]="base_number_of_projectiles", + [2]="skill_can_fire_arrows", + [3]="quality_display_base_number_of_projectiles_is_gem" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Projectile duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectile duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} seconds to Cast Time" + } + }, + stats={ + [1]="base_spell_cast_time_ms" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Projectiles fired at the same time can Hit the same\ntarget no more than once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles fired at the same time can Hit the same\ntarget no more than once every {0} seconds" + } + }, + stats={ + [1]="spark_min_time_between_target_clearing_ms" + } + }, + ["base_number_of_projectiles"]=2, + ["base_skill_effect_duration"]=3, + ["base_spell_cast_time_ms"]=4, + parent="skill_stat_descriptions", + ["projectiles_nova"]=1, + ["quality_display_base_number_of_projectiles_is_gem"]=2, + ["skill_can_fire_arrows"]=2, + ["skill_effect_duration"]=5, + ["spark_min_time_between_target_clearing_ms"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spectral_bell_carried.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spectral_bell_carried.lua new file mode 100644 index 0000000000..2697b75b29 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spectral_bell_carried.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spectral_bells.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spectral_bells.lua new file mode 100644 index 0000000000..f0d0c125bf --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/spectral_bells.lua @@ -0,0 +1,163 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Spectral Bells can appear within {0} metre of you" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Spectral Bells can appear within {0} metres of you" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Spectral Bells linger for {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Spectral Bells linger for {0} seconds" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0} second duration between Spectral Bells appearing" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Maximum {0} active Spectral Bell" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Maximum {0} active Spectral Bells" + } + }, + stats={ + [1]="spectral_bells_maximum_active_bells" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["base_secondary_skill_effect_duration"]=4, + ["base_skill_effect_duration"]=5, + parent="skill_stat_descriptions", + ["spectral_bells_maximum_active_bells"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/synchronisation_of_pain.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/synchronisation_of_pain.lua new file mode 100644 index 0000000000..4a2b94d043 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/synchronisation_of_pain.lua @@ -0,0 +1,115 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Curse radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Curse duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cursed targets take {0}% of Hit Damage dealt to them while Cursed again when Curse expires\nTaking Damage again this way cannot inflict Ailments on the Cursed target" + } + }, + stats={ + [1]="curse_pain_synchronisation_base_recorded_damage_%_to_apply" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="curse_pain_synchronisation_recorded_damage_%_to_apply" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["curse_pain_synchronisation_base_recorded_damage_%_to_apply"]=4, + ["curse_pain_synchronisation_recorded_damage_%_to_apply"]=5, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua index 3290f48c8d..380345a092 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua @@ -81,10 +81,18 @@ return { [2]="quality_display_tempest_bell_is_gem" } }, + [5]={ + [1]={ + }, + stats={ + [1]="virtual_tempest_bell_hit_limit" + } + }, ["base_secondary_skill_effect_duration"]=1, ["base_skill_effect_duration"]=2, parent="skill_stat_descriptions", ["quality_display_tempest_bell_is_gem"]=4, ["skill_effect_duration"]=3, - ["tempest_bell_hit_limit"]=4 + ["tempest_bell_hit_limit"]=4, + ["virtual_tempest_bell_hit_limit"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_flawed_edict.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_flawed_edict.lua new file mode 100644 index 0000000000..76164c0763 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_flawed_edict.lua @@ -0,0 +1,109 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Cannot generate Edict Declaration" + } + }, + stats={ + [1]="cannot_generate_edict_declaration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="DNT {0}% chance when hitting a Rare Monster with this attack to disable one of its Modifiers" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="DNT Hitting a Rare Monster with this attack disable one of its Modifiers" + } + }, + stats={ + [1]="disable_rare_mod_on_hit_%_chance" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% less Damage for each Second spent channelling" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% more Damage for each Second spent channelling" + } + }, + stats={ + [1]="the_flawed_edict_damage_+%_final_to_add_each_second" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT {0}% of Life Spent while channelling is\nadded to this Skill's Life Cost per Second" + } + }, + stats={ + [1]="the_flawed_edict_life_cost_%_to_add_to_cost_per_second" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Requires Edict Declaration to be charged at 100% to use" + } + }, + stats={ + [1]="the_flawed_edict_required_declaration" + } + }, + ["cannot_generate_edict_declaration"]=1, + ["disable_rare_mod_on_hit_%_chance"]=2, + parent="skill_stat_descriptions", + ["the_flawed_edict_damage_+%_final_to_add_each_second"]=3, + ["the_flawed_edict_life_cost_%_to_add_to_cost_per_second"]=4, + ["the_flawed_edict_required_declaration"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thunderfist_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thunderfist_statset_0.lua new file mode 100644 index 0000000000..23ffb56c1a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thunderfist_statset_0.lua @@ -0,0 +1,12 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="herald_of_thunder_storm_max_hits" + } + }, + ["herald_of_thunder_storm_max_hits"]=1, + parent="specific_skill_stat_descriptions/herald_of_thunder_statset_0" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thunderfist_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thunderfist_statset_1.lua new file mode 100644 index 0000000000..24602f9876 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thunderfist_statset_1.lua @@ -0,0 +1,124 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="herald_of_thunder_storm_max_hits" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + }, + text="-{1} seconds to bolt cooldown" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Creates a bolt of lightning when you Hit with Unarmed Melee damage, no more than {0} time every {1} seconds" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Creates a bolt of lightning when you Hit with Unarmed Melee damage, no more than {0} times every {1} seconds" + } + }, + stats={ + [1]="thunderfist_number_of_bolts_delays", + [2]="thunderfist_bolt_delay_ms" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Bolt impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bolt impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Bolt Physical Damage\nConverted to Lightning Damage" + } + }, + stats={ + [1]="active_skill_base_physical_damage_%_to_convert_to_lightning" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["active_skill_base_physical_damage_%_to_convert_to_lightning"]=5, + ["herald_of_thunder_storm_max_hits"]=1, + parent="specific_skill_stat_descriptions/herald_of_thunder_statset_0", + ["thunderfist_bolt_delay_ms"]=2, + ["thunderfist_number_of_bolts_delays"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua index b978ce4a26..072e46a245 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua @@ -208,6 +208,13 @@ return { [1]="total_number_of_projectiles_to_fire" } }, + [12]={ + [1]={ + }, + stats={ + [1]="virtual_tornado_shot_number_of_hits_allowed" + } + }, ["active_skill_base_area_of_effect_radius"]=1, ["base_number_of_projectiles"]=3, ["base_number_of_tornado_shots_allowed"]=4, @@ -221,5 +228,6 @@ return { ["tornado_shot_number_of_hits_allowed"]=8, ["tornado_shot_projectile_damage_+%_final"]=9, ["tornado_shot_projectile_range"]=10, - ["total_number_of_projectiles_to_fire"]=11 + ["total_number_of_projectiles_to_fire"]=11, + ["virtual_tornado_shot_number_of_hits_allowed"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua new file mode 100644 index 0000000000..45e788ae29 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua @@ -0,0 +1,231 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_detonation_time" + } + }, + [2]={ + stats={ + [1]="skill_detonation_time" + } + }, + [3]={ + stats={ + [1]="local_poison_on_hit" + } + }, + [4]={ + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + stats={ + [1]="toxic_domain_max_damage_+%_final_from_stored_poison" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metre to Toxic Bloom radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metres to Toxic Bloom radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Toxic Bloom Radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Toxic Bloom Radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [8]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Toxic Bloom duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Toxic Bloom duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [10]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Each enemy can have up to 1 Pustule attached" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + [11]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Regenerate {0} life per second" + } + }, + stats={ + [1]="toxic_domain_healing_per_minute_+" + } + }, + [12]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Skill costs are decreased by {0}%" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skill costs are increased by {0}%" + } + }, + stats={ + [1]="toxic_domain_mana_cost_+%" + } + }, + [13]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Projectile Hits attach a Pustule" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Projectile Hits to attach a Pustule" + } + }, + stats={ + [1]="toxic_domain_pustule_chance_%" + } + }, + ["active_skill_area_of_effect_radius"]=6, + ["active_skill_base_area_of_effect_radius"]=7, + ["base_skill_detonation_time"]=1, + ["base_skill_effect_duration"]=8, + ["local_poison_on_hit"]=3, + parent="skill_stat_descriptions", + ["skill_detonation_time"]=2, + ["skill_effect_duration"]=9, + ["skill_specific_stat_description_mode"]=10, + ["toxic_domain_healing_per_minute_+"]=11, + ["toxic_domain_mana_cost_+%"]=12, + ["toxic_domain_max_damage_+%_final_from_stored_poison"]=5, + ["toxic_domain_pustule_chance_%"]=13 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_1.lua new file mode 100644 index 0000000000..2a0487729b --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_1.lua @@ -0,0 +1,166 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metre to Pustule Detonation radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + }, + text="{0:+d} metres to Pustule Detonation radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Pustule Detonation radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pustule Detonation radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Pustule Detonates after {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pustule Detonates after {0} seconds" + } + }, + stats={ + [1]="base_skill_detonation_time" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits always Poison" + } + }, + stats={ + [1]="local_poison_on_hit" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Stored Poison grants up to {1}% more explosion Damage" + } + }, + stats={ + [1]="toxic_domain_+1%_final_more_damage_per_x_stored_poison", + [2]="toxic_domain_max_damage_+%_final_from_stored_poison" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pustules store expected damage of Poisons inflicted on them and will Detonate early after storing {0} Poison damage" + } + }, + stats={ + [1]="toxic_domain_pustule_poison_explode_threshold" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_detonation_time"]=4, + ["local_poison_on_hit"]=5, + parent="skill_stat_descriptions", + ["toxic_domain_+1%_final_more_damage_per_x_stored_poison"]=6, + ["toxic_domain_max_damage_+%_final_from_stored_poison"]=6, + ["toxic_domain_pustule_poison_explode_threshold"]=7 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/trigger_elemental_infusion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/trigger_elemental_infusion.lua index 58f4b175fb..8216669fb0 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/trigger_elemental_infusion.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/trigger_elemental_infusion.lua @@ -58,8 +58,25 @@ return { [1]="base_is_projectile" } }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="No more than once per Skill use" + } + }, + stats={ + [1]="surge_can_apply_to_X_number_of_projectiles_per_skill_use" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, ["base_is_projectile"]=3, - parent="skill_stat_descriptions" + parent="skill_stat_descriptions", + ["surge_can_apply_to_X_number_of_projectiles_per_skill_use"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_briar_patch.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_briar_patch.lua new file mode 100644 index 0000000000..5884a98243 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_briar_patch.lua @@ -0,0 +1,124 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Bramble radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bramble radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Bramble duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bramble duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Bramble" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Brambles" + } + }, + stats={ + [1]="maximum_briarpatches_allowed" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="virtual_maximum_briarpatches_allowed" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["maximum_briarpatches_allowed"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=5, + ["virtual_maximum_briarpatches_allowed"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_curse_zone_hazard_explosion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_curse_zone_hazard_explosion.lua new file mode 100644 index 0000000000..a212fdfb60 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_curse_zone_hazard_explosion.lua @@ -0,0 +1,74 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Explosion applies Supported Curse for {0} second on Hit" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion applies Supported Curse for {0} seconds on Hit" + } + }, + stats={ + [1]="curse_zone_explosion_apply_supported_curse_for_base_ms_on_hit" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Explosion radius is equal to that of the Cursed Ground" + } + }, + stats={ + [1]="display_skill_area_of_effect_radius_from_curse" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Explosion deals base Chaos Damage equal to {0}% of your Intelligence" + } + }, + stats={ + [1]="skill_base_chaos_damage_%_of_intelligence" + } + }, + ["curse_zone_explosion_apply_supported_curse_for_base_ms_on_hit"]=1, + ["display_skill_area_of_effect_radius_from_curse"]=2, + parent="skill_stat_descriptions", + ["skill_base_chaos_damage_%_of_intelligence"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fissure_on_landing.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fissure_on_landing.lua new file mode 100644 index 0000000000..61bcebd89b --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fissure_on_landing.lua @@ -0,0 +1,116 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Fissure length is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fissure length is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fissure duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fissure duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Fissure allowed" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Fissures allowed" + } + }, + stats={ + [1]="support_fissure_on_landing_maximum_fissure_count" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4, + ["support_fissure_on_landing_maximum_fissure_count"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_grounding_shocks.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_grounding_shocks.lua new file mode 100644 index 0000000000..f970598c94 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_grounding_shocks.lua @@ -0,0 +1,116 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Grounding Shocks targets enemies within {0} metre of attached target" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Grounding Shocks targets enemies within {0} metres of attached target" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Grounding Shocks attached duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Grounding Shocks attached duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Maximum {0} attached Grounding Shock" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Maximum {0} attached Grounding Shocks" + } + }, + stats={ + [1]="maximum_grounding_shocks_allowed" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["maximum_grounding_shocks_allowed"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_haemocrystals.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_haemocrystals.lua index 9225974e80..81511a8b39 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_haemocrystals.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_haemocrystals.lua @@ -55,7 +55,7 @@ return { [2]=1000 } }, - text="Haemocrystals detonate after {0} second" + text="Haemocrystals explode after {0} second" }, [2]={ [1]={ @@ -68,7 +68,7 @@ return { [2]="#" } }, - text="Haemocrystals detonate after {0} seconds" + text="Haemocrystals explode after {0} seconds" } }, stats={ @@ -117,7 +117,7 @@ return { [2]=100 } }, - text="Haemocrystals deal Damage equal to the expected remaining Damage of the Consumed Bleeding" + text="Haemocrystals deal Damage equal to the highest expected remaining Damage of the Consumed Bleeding" }, [2]={ limit={ @@ -126,7 +126,7 @@ return { [2]="#" } }, - text="Haemocrystals deal Damage equal to {0}% of the expected remaining Damage of the Consumed Bleeding" + text="Haemocrystals deal Damage equal to {0}% of the highest expected remaining Damage of the Consumed Bleeding" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_hatching_elementals.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_hatching_elementals.lua new file mode 100644 index 0000000000..ef36604984 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_hatching_elementals.lua @@ -0,0 +1,109 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Skittering Stone" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Skittering Stones" + } + }, + stats={ + [1]="support_hatching_elementals_number_of_elementals_per_hatch" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Level of Minions is based on Level of Triggering Skill" + } + }, + stats={ + [1]="display_minion_level_from_triggering_skill_level" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Minion duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Skittering Stone" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Skittering Stones" + } + }, + stats={ + [1]="maximum_hatching_elementals_allowed" + } + }, + ["base_skill_effect_duration"]=3, + ["display_minion_level_from_triggering_skill_level"]=2, + ["maximum_hatching_elementals_allowed"]=4, + parent="skill_stat_descriptions", + ["support_hatching_elementals_number_of_elementals_per_hatch"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_living_lightning.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_living_lightning.lua new file mode 100644 index 0000000000..2c9e15e96a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_living_lightning.lua @@ -0,0 +1,186 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="This Skill is Triggered on dealing Lightning Damage with Supported Skill" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0} chance to Trigger this Skill on dealing Lightning Damage with Supported Skill" + } + }, + stats={ + [1]="chance_to_trigger_living_lightning_on_lightning_damage_%" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Creates 1 Minion\nLevel of Minions is based on Level of Triggering Skill" + } + }, + stats={ + [1]="display_minion_level_from_triggering_skill_level" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Minion duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Minion" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Minions" + } + }, + stats={ + [1]="base_number_of_living_lightning_allowed" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions convert {0}% of Physical damage to Lightning damage" + } + }, + stats={ + [1]="minion_base_physical_damage_%_to_convert_to_lightning" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Minions Attack every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions Attack every {0} seconds" + } + }, + stats={ + [1]="living_lightning_beam_attack_time_ms" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Minions disperse after {0} Attack" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Minions disperse after {0} Attacks" + } + }, + stats={ + [1]="living_lightning_maximum_number_of_attacks" + } + }, + ["base_number_of_living_lightning_allowed"]=4, + ["base_skill_effect_duration"]=3, + ["chance_to_trigger_living_lightning_on_lightning_damage_%"]=1, + ["display_minion_level_from_triggering_skill_level"]=2, + ["living_lightning_beam_attack_time_ms"]=6, + ["living_lightning_maximum_number_of_attacks"]=7, + ["minion_base_physical_damage_%_to_convert_to_lightning"]=5, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_pillar_of_flame.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_pillar_of_flame.lua new file mode 100644 index 0000000000..7dddb64ba0 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_pillar_of_flame.lua @@ -0,0 +1,91 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Pillar radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pillar radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot Ignite" + } + }, + stats={ + [1]="never_ignite" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Flame Pillars deal Damage equal to the highest expected remaining Damage of the Consumed Ignites" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Flame Pillars deal Damage equal to {0}% of the highest expected remaining Damage of the Consumed Ignites" + } + }, + stats={ + [1]="support_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["never_ignite"]=3, + parent="skill_stat_descriptions", + ["support_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_shocking_rift.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_shocking_rift.lua new file mode 100644 index 0000000000..2f1778771a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_shocking_rift.lua @@ -0,0 +1,234 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Shocking Rift radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Shocking Rift radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Shocking Rift pull radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Shocking Rift pull radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Limit {0} Shocking Rift" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Limit {0} Shocking Rifts" + } + }, + stats={ + [1]="number_of_shocking_rifts_allowed" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% more Damage per pulse performed" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% less Damage per pulse performed" + } + }, + stats={ + [1]="shocking_rift_damage_+%_final_per_pulse_performed" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Pulses apply Hinder for {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Pulses apply Hinder {0} seconds" + } + }, + stats={ + [1]="shocking_rift_hinder_ms" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="DNT Shocking Rift pulses every second, up to {1} times" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="DNT Shocking Rift pulses every {0} seconds, up to {1} times" + } + }, + stats={ + [1]="shocking_rift_pulse_interval_ms", + [2]="shocking_rift_number_of_pulses" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% increased Pulse Speed for each Shock Consumed during the Shocking Rift" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% reduced Pulse Speed for each Shock Consumed during the Shocking Rift" + } + }, + stats={ + [1]="shocking_rift_speed_+%_per_shock_consumed" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="virtual_shocking_rift_limit" + } + }, + ["active_skill_base_area_of_effect_radius"]=1, + ["active_skill_base_secondary_area_of_effect_radius"]=2, + ["number_of_shocking_rifts_allowed"]=3, + parent="skill_stat_descriptions", + ["shocking_rift_damage_+%_final_per_pulse_performed"]=4, + ["shocking_rift_hinder_ms"]=5, + ["shocking_rift_number_of_pulses"]=6, + ["shocking_rift_pulse_interval_ms"]=6, + ["shocking_rift_speed_+%_per_shock_consumed"]=7, + ["virtual_shocking_rift_limit"]=8 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_splinter_explosion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_splinter_explosion.lua new file mode 100644 index 0000000000..d890bed1c3 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_splinter_explosion.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Explosion deals base Physical Damage equal to {0}% of Totem's maximum Life" + } + }, + stats={ + [1]="base_physical_damage_equal_to_%_of_totem_life" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_physical_damage_equal_to_%_of_totem_life"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_support_from_the_grave_ice_fragment.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_support_from_the_grave_ice_fragment.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_support_from_the_grave_ice_fragment.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_support_frozen_spite_ice_fragment.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_support_frozen_spite_ice_fragment.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_support_frozen_spite_ice_fragment.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua new file mode 100644 index 0000000000..f5b62a524c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua @@ -0,0 +1,80 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_ignite" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Pillar radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pillar radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Flame Pillars deal Damage equal to the highest expected remaining Damage of the Consumed Ignites" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Flame Pillars deal Damage equal to {0}% of the highest expected remaining Damage of the Consumed Ignites" + } + }, + stats={ + [1]="support_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["never_ignite"]=1, + parent="skill_stat_descriptions", + ["support_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/valakos_luck.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/valakos_luck.lua new file mode 100644 index 0000000000..5477469caf --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/valakos_luck.lua @@ -0,0 +1,82 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="cast_on_damage_taken_threshold" + } + }, + [2]={ + stats={ + [1]="cast_on_damage_taken_%" + } + }, + [3]={ + stats={ + [1]="virtual_cast_when_damage_taken_threshold" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Triggers after you take a total of {0} Lightning Hit Damage" + } + }, + stats={ + [1]="cast_on_damage_taken_threshold" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Can target Enemies within {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can target Enemies within {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=5, + ["active_skill_base_area_of_effect_radius"]=6, + ["cast_on_damage_taken_%"]=2, + ["cast_on_damage_taken_threshold"]=4, + parent="skill_stat_descriptions", + ["virtual_cast_when_damage_taken_threshold"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vaulting_impact_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vaulting_impact_statset_0.lua new file mode 100644 index 0000000000..a32516e482 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vaulting_impact_statset_0.lua @@ -0,0 +1,80 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_freeze" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Consumes Daze on enemies to deal {0}% more damage" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Consumes Daze on enemies to deal {0}% less damage" + } + }, + stats={ + [1]="consume_enemy_dazed_to_gain_damage_+%_final" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["consume_enemy_dazed_to_gain_damage_+%_final"]=4, + ["never_freeze"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vaulting_impact_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vaulting_impact_statset_1.lua new file mode 100644 index 0000000000..9888ab5b98 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vaulting_impact_statset_1.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="total_attack_time_+_ms" + } + }, + [2]={ + stats={ + [1]="attack_maximum_action_distance_+" + } + }, + [3]={ + stats={ + [1]="vaulting_impact_short_animation_maximum_range" + } + }, + [4]={ + stats={ + [1]="cannot_daze" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Applies Broken Stance on Hit against Dazed enemies" + } + }, + stats={ + [1]="exploit_debuff_attack_damage_to_convert_to_magnitude_%" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Broken Stance has {0} second duration, or until Daze is removed" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["attack_maximum_action_distance_+"]=2, + ["base_skill_effect_duration"]=6, + ["cannot_daze"]=4, + ["exploit_debuff_attack_damage_to_convert_to_magnitude_%"]=5, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=7, + ["total_attack_time_+_ms"]=1, + ["vaulting_impact_short_animation_maximum_range"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vile_disruption.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vile_disruption.lua new file mode 100644 index 0000000000..0583927e76 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vile_disruption.lua @@ -0,0 +1,54 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="spells_impale_on_hit_%_chance" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + parent="skill_stat_descriptions", + ["spells_impale_on_hit_%_chance"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vivid_stags.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vivid_stags.lua new file mode 100644 index 0000000000..65af425983 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vivid_stags.lua @@ -0,0 +1,100 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="DNT Stag Hoofbeat radius is {0} Metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Stag Hoofbeat radius is {0} Metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Stags charge for {0} Hoofbeat" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Stags charge for {0} Hoofbeats" + } + }, + stats={ + [1]="ascendancy_vivid_stag_cascade_number_of_damaging_areas" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Maximum {0} Vivid Stag wisp" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Maximum {0} Vivid Stag wisps" + } + }, + stats={ + [1]="ascendancy_vivid_stag_maximum_stag_wisps_allowed" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["ascendancy_vivid_stag_cascade_number_of_damaging_areas"]=3, + ["ascendancy_vivid_stag_maximum_stag_wisps_allowed"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua new file mode 100644 index 0000000000..2268ce0602 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua new file mode 100644 index 0000000000..4dff986c65 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua @@ -0,0 +1,100 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignites enemies within {0} metre radius" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Core duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Core duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Ignites as though dealing {0} to {1} Fire damage" + } + }, + stats={ + [1]="spell_minimum_base_fire_damage", + [2]="spell_maximum_base_fire_damage" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4, + ["spell_maximum_base_fire_damage"]=5, + ["spell_minimum_base_fire_damage"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_mark.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_mark.lua new file mode 100644 index 0000000000..508179c792 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_mark.lua @@ -0,0 +1,114 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Mark duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mark duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits against Marked enemy have\n{0}% more chance to Shock" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Hits against Marked enemy have\n{0}% less chance to Shock" + } + }, + stats={ + [1]="thaumaturgist_mark_enemies_shocked_chance_+%_final" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Shock has {0}% increased effect on Marked enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Shock has {0}% reduced effect on Marked enemy" + } + }, + stats={ + [1]="thaumaturgist_mark_enemy_shock_effect_+%_taken" + } + }, + ["base_secondary_skill_effect_duration"]=1, + ["base_skill_effect_duration"]=2, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=3, + ["thaumaturgist_mark_enemies_shocked_chance_+%_final"]=4, + ["thaumaturgist_mark_enemy_shock_effect_+%_taken"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_mark_nova.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_mark_nova.lua new file mode 100644 index 0000000000..9635431c03 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_mark_nova.lua @@ -0,0 +1,54 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_secondary_skill_effect_duration"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/war_banner.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/war_banner.lua index d50659caca..f68461e347 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/war_banner.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/war_banner.lua @@ -101,6 +101,35 @@ return { } }, [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Aura grants {0}% increased Attack Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Aura grants {0}% reduced Attack Speed" + } + }, + stats={ + [1]="base_skill_buff_banner_attack_speed_+%_to_apply" + } + }, + [6]={ [1]={ [1]={ [1]={ @@ -113,7 +142,7 @@ return { [2]=1000 } }, - text="Banner duration is {0} second, or until you leave the Aura" + text="Banner duration is {0} second" }, [2]={ [1]={ @@ -126,28 +155,35 @@ return { [2]="#" } }, - text="Banner duration is {0} seconds, or until you leave the Aura" + text="Banner duration is {0} seconds" } }, stats={ [1]="base_skill_effect_duration" } }, - [6]={ + [7]={ [1]={ }, stats={ [1]="skill_aura_buff_attack_damage_+%_final_magnitude_to_apply" } }, - [7]={ + [8]={ [1]={ }, stats={ [1]="skill_aura_buff_banner_accuracy_+%_magnitude_to_apply" } }, - [8]={ + [9]={ + [1]={ + }, + stats={ + [1]="skill_aura_buff_banner_attack_speed_+%_magnitude_to_apply" + } + }, + [10]={ [1]={ }, stats={ @@ -158,9 +194,11 @@ return { ["active_skill_base_area_of_effect_radius"]=2, ["base_skill_buff_attack_damage_+%_final_to_apply"]=3, ["base_skill_buff_banner_accuracy_+%_to_apply"]=4, - ["base_skill_effect_duration"]=5, + ["base_skill_buff_banner_attack_speed_+%_to_apply"]=5, + ["base_skill_effect_duration"]=6, parent="skill_stat_descriptions", - ["skill_aura_buff_attack_damage_+%_final_magnitude_to_apply"]=6, - ["skill_aura_buff_banner_accuracy_+%_magnitude_to_apply"]=7, - ["skill_effect_duration"]=8 + ["skill_aura_buff_attack_damage_+%_final_magnitude_to_apply"]=7, + ["skill_aura_buff_banner_accuracy_+%_magnitude_to_apply"]=8, + ["skill_aura_buff_banner_attack_speed_+%_magnitude_to_apply"]=9, + ["skill_effect_duration"]=10 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/warding_steel_nova.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/warding_steel_nova.lua new file mode 100644 index 0000000000..5dcb355b2c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/warding_steel_nova.lua @@ -0,0 +1,69 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Nova radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Nova radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="multiply_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Stored damage grants up to {0}% more Area of Effect" + } + }, + stats={ + [1]="warding_steel_area_of_effect_+%_final_per_charge_%" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["warding_steel_area_of_effect_+%_final_per_charge_%"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_dancer.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_dancer.lua index 61e16eb6ec..15ed347419 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_dancer.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_dancer.lua @@ -3,6 +3,13 @@ return { [1]={ + [1]={ + }, + stats={ + [1]="virtual_wind_dancer_maximum_number_of_stages" + } + }, + [2]={ [1]={ [1]={ limit={ @@ -18,7 +25,7 @@ return { [1]="wind_dancer_maximum_number_of_stages" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -38,7 +45,7 @@ return { [1]="wind_dancer_stages_gained_every_x_ms" } }, - [3]={ + [4]={ [1]={ [1]={ limit={ @@ -68,7 +75,8 @@ return { } }, parent="skill_stat_descriptions", - ["wind_dancer_evasion_rating_+%_final_per_stage"]=3, - ["wind_dancer_maximum_number_of_stages"]=1, - ["wind_dancer_stages_gained_every_x_ms"]=2 + ["virtual_wind_dancer_maximum_number_of_stages"]=1, + ["wind_dancer_evasion_rating_+%_final_per_stage"]=4, + ["wind_dancer_maximum_number_of_stages"]=2, + ["wind_dancer_stages_gained_every_x_ms"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_palm.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_palm.lua index 21ae7c2b02..84ea3426b9 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_palm.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wind_palm.lua @@ -42,7 +42,41 @@ return { [1]="skill_effect_duration" } }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Maximum Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Buff duration is {0} seconds" + } + }, + stats={ + [1]="staggering_palm_buff_max_duration_ms" + } + }, ["base_skill_effect_duration"]=1, parent="skill_stat_descriptions", - ["skill_effect_duration"]=2 + ["skill_effect_duration"]=2, + ["staggering_palm_buff_max_duration_ms"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/windstorm_lance.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/windstorm_lance.lua index c8f91f07b2..cc3bc955bf 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/windstorm_lance.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/windstorm_lance.lua @@ -93,12 +93,32 @@ return { }, [5]={ [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}m to Radius per additional stage" + } }, stats={ - [1]="skill_effect_duration" + [1]="sandstorm_swipe_storm_radius_+_per_stage" } }, [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [7]={ [1]={ [1]={ limit={ @@ -123,7 +143,7 @@ return { [1]="windstorm_base_maximum_number_of_storms" } }, - [7]={ + [8]={ [1]={ }, stats={ @@ -134,8 +154,9 @@ return { ["active_skill_base_area_of_effect_radius"]=3, ["base_skill_effect_duration"]=4, parent="skill_stat_descriptions", - ["skill_effect_duration"]=5, + ["sandstorm_swipe_storm_radius_+_per_stage"]=5, + ["skill_effect_duration"]=6, ["skill_specific_stat_description_mode"]=1, - ["windstorm_base_maximum_number_of_storms"]=6, - ["windstorm_maximum_number_of_storms"]=7 + ["windstorm_base_maximum_number_of_storms"]=7, + ["windstorm_maximum_number_of_storms"]=8 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/winnowing_flame.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/winnowing_flame.lua new file mode 100644 index 0000000000..c86164e8c4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/winnowing_flame.lua @@ -0,0 +1,12 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="never_ignite" + } + }, + ["never_ignite"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/witch_hunter_mark.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/witch_hunter_mark.lua new file mode 100644 index 0000000000..609b2be47e --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/witch_hunter_mark.lua @@ -0,0 +1,175 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="DNT {0}% chance for Marked Enemies to generate a Hunters' Remnant when Critically Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="DNT Marked Enemies generate a Hunters' Remnant when Critically Hit" + } + }, + stats={ + [1]="witchhunter_mark_chance_%_to_create_remnant_on_crit_vs_marked_target" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="DNT Buff granted by Remnants from Humanoid Enemies grants {0}% increased Movement Speed and {1}% increased Attack and Cast Speed" + } + }, + stats={ + [1]="witch_hunter_mark_base_movement_velocity_+%", + [2]="witch_hunter_mark_attack_and_cast_speed_+%" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Buff granted by Remnants from Constructed Enemies grants {0}% of Evasion gained as Armour" + } + }, + stats={ + [1]="witch_hunter_mark_evasion_rating_%_to_gain_as_armour" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Remnants from Beastial Enemies restore {0} Flask and Charm charges when collected" + } + }, + stats={ + [1]="witch_hunter_mark_flask_and_charm_charges_to_grant" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Buff granted by Remnants from Demonic Enemies grants {0}% of Life regenerated per second" + } + }, + stats={ + [1]="witch_hunter_mark_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Buff granted by Remnants from Undead Enemies prevents your Life from being reduced to 0" + } + }, + stats={ + [1]="witch_hunter_mark_cannot_die" + } + }, + [8]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Mark duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mark duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_secondary_skill_effect_duration"]=1, + ["base_skill_effect_duration"]=8, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=9, + ["witch_hunter_mark_attack_and_cast_speed_+%"]=3, + ["witch_hunter_mark_base_movement_velocity_+%"]=3, + ["witch_hunter_mark_cannot_die"]=7, + ["witch_hunter_mark_evasion_rating_%_to_gain_as_armour"]=4, + ["witch_hunter_mark_flask_and_charm_charges_to_grant"]=5, + ["witch_hunter_mark_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%"]=6, + ["witchhunter_mark_chance_%_to_create_remnant_on_crit_vs_marked_target"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wolf_warcry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wolf_warcry.lua new file mode 100644 index 0000000000..683f386147 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wolf_warcry.lua @@ -0,0 +1,54 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Warcry radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcry radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wrath_aura.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wrath_aura.lua new file mode 100644 index 0000000000..badbddc7fd --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wrath_aura.lua @@ -0,0 +1,66 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot inflict Shock" + } + }, + stats={ + [1]="never_shock" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits up to 8 enemies" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + }, + text="Additional Hits deal {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Additional Hits deal {0}% less damage\nAdditional Hits convert 100% of Physical and\nElemental damage to Lightning" + } + }, + stats={ + [1]="skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence" + } + }, + ["never_shock"]=1, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=2, + ["skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua index c516c720c2..5ff9e31256 100644 --- a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua @@ -3,6 +3,27 @@ return { [1]={ + stats={ + [1]="active_skill_cannot_manually_reload" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attack Damage of this skill is {0}% of Default Attack Damage" + } + }, + stats={ + [1]="active_skill_has_%_standard_scaling_attack_damage" + } + }, + [3]={ [1]={ [1]={ limit={ @@ -23,7 +44,7 @@ return { [2]="off_hand_weapon_maximum_physical_damage" } }, - [2]={ + [4]={ [1]={ [1]={ limit={ @@ -44,7 +65,28 @@ return { [2]="off_hand_maximum_added_fire_damage_per_15_shield_armour" } }, - [3]={ + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} Added Fire Damage per 15 Evasion on Shield" + } + }, + stats={ + [1]="off_hand_minimum_added_fire_damage_per_15_shield_evasion", + [2]="off_hand_maximum_added_fire_damage_per_15_shield_evasion" + } + }, + [6]={ [1]={ [1]={ limit={ @@ -65,7 +107,7 @@ return { [2]="off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating" } }, - [4]={ + [7]={ [1]={ [1]={ [1]={ @@ -85,7 +127,7 @@ return { [1]="off_hand_base_weapon_attack_duration_ms" } }, - [5]={ + [8]={ [1]={ [1]={ limit={ @@ -106,7 +148,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [6]={ + [9]={ [1]={ [1]={ limit={ @@ -127,7 +169,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [7]={ + [10]={ [1]={ [1]={ limit={ @@ -148,7 +190,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [8]={ + [11]={ [1]={ [1]={ limit={ @@ -169,7 +211,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [9]={ + [12]={ [1]={ [1]={ limit={ @@ -190,7 +232,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [10]={ + [13]={ [1]={ [1]={ limit={ @@ -219,7 +261,7 @@ return { [1]="active_skill_attack_damage_+%_final" } }, - [11]={ + [14]={ [1]={ [1]={ limit={ @@ -248,7 +290,7 @@ return { [1]="supplementary_stat_container_attack_speed_+%_final" } }, - [12]={ + [15]={ [1]={ [1]={ [1]={ @@ -281,7 +323,7 @@ return { [1]="active_skill_attack_damage_final_permyriad" } }, - [13]={ + [16]={ [1]={ [1]={ limit={ @@ -310,7 +352,7 @@ return { [1]="active_skill_damage_+%_final" } }, - [14]={ + [17]={ [1]={ [1]={ limit={ @@ -326,7 +368,7 @@ return { [1]="active_skill_minion_damage_+%_final" } }, - [15]={ + [18]={ [1]={ [1]={ [1]={ @@ -346,7 +388,7 @@ return { [1]="active_skill_minion_physical_damage_+%_final" } }, - [16]={ + [19]={ [1]={ [1]={ limit={ @@ -375,7 +417,7 @@ return { [1]="active_skill_physical_damage_+%_final" } }, - [17]={ + [20]={ [1]={ [1]={ limit={ @@ -404,7 +446,7 @@ return { [1]="physical_damage_+%_per_frenzy_charge" } }, - [18]={ + [21]={ [1]={ [1]={ limit={ @@ -429,7 +471,7 @@ return { [1]="base_number_of_zombies_allowed" } }, - [19]={ + [22]={ [1]={ [1]={ limit={ @@ -454,7 +496,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [20]={ + [23]={ [1]={ [1]={ limit={ @@ -479,7 +521,7 @@ return { [1]="base_number_of_skeletons_allowed" } }, - [21]={ + [24]={ [1]={ [1]={ limit={ @@ -504,7 +546,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [22]={ + [25]={ [1]={ [1]={ limit={ @@ -533,7 +575,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [23]={ + [26]={ [1]={ [1]={ limit={ @@ -562,7 +604,7 @@ return { [1]="aura_effect_+%" } }, - [24]={ + [27]={ [1]={ [1]={ limit={ @@ -578,7 +620,7 @@ return { [1]="tornado_maximum_number_of_hits" } }, - [25]={ + [28]={ [1]={ [1]={ [1]={ @@ -598,7 +640,7 @@ return { [1]="offering_skill_effect_duration_per_corpse" } }, - [26]={ + [29]={ [1]={ [1]={ [1]={ @@ -618,7 +660,7 @@ return { [1]="base_buff_duration_ms_+_per_removable_endurance_charge" } }, - [27]={ + [30]={ [1]={ [1]={ limit={ @@ -647,7 +689,7 @@ return { [1]="buff_duration_+%" } }, - [28]={ + [31]={ [1]={ [1]={ limit={ @@ -676,7 +718,7 @@ return { [1]="skill_effect_duration_+%" } }, - [29]={ + [32]={ [1]={ [1]={ limit={ @@ -692,7 +734,7 @@ return { [1]="display_minion_base_maximum_life" } }, - [30]={ + [33]={ [1]={ [1]={ limit={ @@ -721,7 +763,7 @@ return { [1]="active_skill_area_damage_+%_final" } }, - [31]={ + [34]={ [1]={ [1]={ limit={ @@ -746,7 +788,7 @@ return { [1]="base_spell_repeat_count" } }, - [32]={ + [35]={ [1]={ [1]={ limit={ @@ -771,7 +813,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [33]={ + [36]={ [1]={ [1]={ limit={ @@ -787,7 +829,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [34]={ + [37]={ [1]={ [1]={ limit={ @@ -812,7 +854,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [35]={ + [38]={ [1]={ [1]={ limit={ @@ -828,7 +870,7 @@ return { [1]="eye_of_winter_base_explosion_shards" } }, - [36]={ + [39]={ [1]={ [1]={ [1]={ @@ -861,7 +903,7 @@ return { [1]="base_sigil_repeat_frequency_ms" } }, - [37]={ + [40]={ [1]={ [1]={ limit={ @@ -890,7 +932,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [38]={ + [41]={ [1]={ [1]={ limit={ @@ -906,7 +948,7 @@ return { [1]="additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency" } }, - [39]={ + [42]={ [1]={ [1]={ limit={ @@ -931,7 +973,7 @@ return { [1]="base_melee_attack_repeat_count" } }, - [40]={ + [43]={ [1]={ [1]={ limit={ @@ -965,7 +1007,7 @@ return { [2]="animate_item_maximum_level_requirement" } }, - [41]={ + [44]={ [1]={ [1]={ limit={ @@ -981,7 +1023,7 @@ return { [1]="accuracy_rating" } }, - [42]={ + [45]={ [1]={ [1]={ limit={ @@ -1010,7 +1052,7 @@ return { [1]="accuracy_rating_+%" } }, - [43]={ + [46]={ [1]={ [1]={ limit={ @@ -1039,7 +1081,7 @@ return { [1]="active_skill_attack_damage_+%_final_with_two_handed_weapon" } }, - [44]={ + [47]={ [1]={ [1]={ limit={ @@ -1068,7 +1110,7 @@ return { [1]="active_skill_attack_speed_+%_final_with_two_handed_weapon" } }, - [45]={ + [48]={ [1]={ [1]={ limit={ @@ -1084,7 +1126,7 @@ return { [1]="active_skill_base_cold_damage_%_to_convert_to_fire" } }, - [46]={ + [49]={ [1]={ [1]={ limit={ @@ -1100,7 +1142,7 @@ return { [1]="active_skill_base_fire_damage_%_to_convert_to_chaos" } }, - [47]={ + [50]={ [1]={ [1]={ limit={ @@ -1116,7 +1158,7 @@ return { [1]="active_skill_base_lightning_damage_%_to_convert_to_chaos" } }, - [48]={ + [51]={ [1]={ [1]={ limit={ @@ -1132,7 +1174,7 @@ return { [1]="active_skill_base_physical_damage_%_to_gain_as_cold" } }, - [49]={ + [52]={ [1]={ [1]={ limit={ @@ -1148,7 +1190,7 @@ return { [1]="active_skill_base_physical_damage_%_to_convert_to_chaos" } }, - [50]={ + [53]={ [1]={ [1]={ limit={ @@ -1169,7 +1211,7 @@ return { [2]="active_skill_display_suppress_physical_to_cold_damage_conversion" } }, - [51]={ + [54]={ [1]={ [1]={ limit={ @@ -1185,7 +1227,7 @@ return { [1]="active_skill_base_physical_damage_%_to_convert_to_fire" } }, - [52]={ + [55]={ [1]={ [1]={ limit={ @@ -1201,7 +1243,7 @@ return { [1]="active_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [53]={ + [56]={ [1]={ [1]={ limit={ @@ -1226,7 +1268,7 @@ return { [1]="active_skill_base_stored_corpse_cost" } }, - [54]={ + [57]={ [1]={ [1]={ limit={ @@ -1251,7 +1293,7 @@ return { [1]="active_skill_brands_allowed_on_enemy_+" } }, - [55]={ + [58]={ [1]={ [1]={ limit={ @@ -1276,7 +1318,7 @@ return { [1]="active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [56]={ + [59]={ [1]={ [1]={ limit={ @@ -1305,7 +1347,7 @@ return { [1]="active_skill_cast_speed_+%_final" } }, - [57]={ + [60]={ [1]={ [1]={ limit={ @@ -1334,7 +1376,7 @@ return { [1]="active_skill_critical_strike_chance_+%_final" } }, - [58]={ + [61]={ [1]={ [1]={ limit={ @@ -1367,7 +1409,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [59]={ + [62]={ [1]={ [1]={ limit={ @@ -1396,7 +1438,7 @@ return { [1]="active_skill_quality_damage_+%_final" } }, - [60]={ + [63]={ [1]={ [1]={ limit={ @@ -1425,7 +1467,7 @@ return { [1]="active_skill_quality_duration_+%_final" } }, - [61]={ + [64]={ [1]={ [1]={ limit={ @@ -1441,7 +1483,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [62]={ + [65]={ [1]={ [1]={ [1]={ @@ -1461,7 +1503,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [63]={ + [66]={ [1]={ [1]={ limit={ @@ -1477,7 +1519,7 @@ return { [1]="additive_mine_duration_modifiers_apply_to_buff_effect_duration" } }, - [64]={ + [67]={ [1]={ [1]={ [1]={ @@ -1510,7 +1552,7 @@ return { [1]="alt_attack_container_main_hand_base_weapon_attack_duration_ms" } }, - [65]={ + [68]={ [1]={ [1]={ [1]={ @@ -1530,7 +1572,7 @@ return { [1]="alt_attack_container_main_hand_weapon_critical_strike_chance" } }, - [66]={ + [69]={ [1]={ [1]={ limit={ @@ -1551,7 +1593,7 @@ return { [2]="alt_attack_container_main_hand_weapon_maximum_cold_damage" } }, - [67]={ + [70]={ [1]={ [1]={ limit={ @@ -1572,7 +1614,7 @@ return { [2]="alt_attack_container_main_hand_weapon_maximum_lightning_damage" } }, - [68]={ + [71]={ [1]={ [1]={ limit={ @@ -1593,7 +1635,7 @@ return { [2]="alt_attack_container_main_hand_weapon_maximum_physical_damage" } }, - [69]={ + [72]={ [1]={ [1]={ limit={ @@ -1622,7 +1664,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [70]={ + [73]={ [1]={ [1]={ limit={ @@ -1651,7 +1693,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [71]={ + [74]={ [1]={ [1]={ limit={ @@ -1680,7 +1722,7 @@ return { [1]="arc_chain_hit_damage_+%_final" } }, - [72]={ + [75]={ [1]={ [1]={ limit={ @@ -1709,7 +1751,7 @@ return { [1]="area_damage_+%" } }, - [73]={ + [76]={ [1]={ [1]={ limit={ @@ -1738,7 +1780,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [74]={ + [77]={ [1]={ [1]={ limit={ @@ -1772,7 +1814,7 @@ return { [2]="quality_display_arsonist_is_gem" } }, - [75]={ + [78]={ [1]={ [1]={ limit={ @@ -1801,7 +1843,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [76]={ + [79]={ [1]={ [1]={ limit={ @@ -1830,7 +1872,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [77]={ + [80]={ [1]={ [1]={ limit={ @@ -1851,7 +1893,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [78]={ + [81]={ [1]={ [1]={ limit={ @@ -1872,7 +1914,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [79]={ + [82]={ [1]={ [1]={ limit={ @@ -1893,7 +1935,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [80]={ + [83]={ [1]={ [1]={ limit={ @@ -1914,7 +1956,7 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [81]={ + [84]={ [1]={ [1]={ limit={ @@ -1935,7 +1977,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [82]={ + [85]={ [1]={ [1]={ limit={ @@ -1964,7 +2006,7 @@ return { [1]="attack_speed_+%" } }, - [83]={ + [86]={ [1]={ [1]={ limit={ @@ -1993,7 +2035,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [84]={ + [87]={ [1]={ [1]={ limit={ @@ -2018,7 +2060,7 @@ return { [1]="attacks_chance_to_blind_on_hit_%" } }, - [85]={ + [88]={ [1]={ [1]={ limit={ @@ -2043,7 +2085,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [86]={ + [89]={ [1]={ [1]={ [1]={ @@ -2063,7 +2105,7 @@ return { [1]="ball_lightning_base_hit_frequency_ms" } }, - [87]={ + [90]={ [1]={ [1]={ limit={ @@ -2088,7 +2130,7 @@ return { [1]="base_added_cooldown_count" } }, - [88]={ + [91]={ [1]={ [1]={ limit={ @@ -2117,7 +2159,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [89]={ + [92]={ [1]={ [1]={ [1]={ @@ -2150,7 +2192,7 @@ return { [1]="base_blackhole_tick_rate_ms" } }, - [90]={ + [93]={ [1]={ [1]={ [1]={ @@ -2170,7 +2212,7 @@ return { [1]="base_blade_vortex_hit_rate_ms" } }, - [91]={ + [94]={ [1]={ [1]={ limit={ @@ -2199,7 +2241,7 @@ return { [1]="base_bleed_duration_+%" } }, - [92]={ + [95]={ [1]={ [1]={ limit={ @@ -2228,7 +2270,7 @@ return { [1]="base_cast_speed_+%" } }, - [93]={ + [96]={ [1]={ [1]={ limit={ @@ -2275,32 +2317,7 @@ return { [2]="always_freeze" } }, - [94]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Ignite" - } - }, - stats={ - [1]="base_chance_to_ignite_%" - } - }, - [95]={ + [97]={ [1]={ [1]={ limit={ @@ -2325,7 +2342,7 @@ return { [1]="base_chance_to_shock_%" } }, - [96]={ + [98]={ [1]={ [1]={ limit={ @@ -2354,7 +2371,7 @@ return { [1]="base_cost_+%" } }, - [97]={ + [99]={ [1]={ [1]={ limit={ @@ -2383,7 +2400,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [98]={ + [100]={ [1]={ [1]={ limit={ @@ -2412,40 +2429,7 @@ return { [1]="base_curse_duration_+%" } }, - [99]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Fires a beam every {0} second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Fires a beam every {0} seconds" - } - }, - stats={ - [1]="base_galvanic_field_beam_delay_ms" - } - }, - [100]={ + [101]={ [1]={ [1]={ limit={ @@ -2461,7 +2445,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [101]={ + [102]={ [1]={ [1]={ limit={ @@ -2490,7 +2474,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [102]={ + [103]={ [1]={ [1]={ limit={ @@ -2506,7 +2490,7 @@ return { [1]="base_knockback_distance" } }, - [103]={ + [104]={ [1]={ [1]={ limit={ @@ -2535,7 +2519,7 @@ return { [1]="base_life_cost_+%" } }, - [104]={ + [105]={ [1]={ [1]={ limit={ @@ -2564,7 +2548,7 @@ return { [1]="base_life_gain_per_target" } }, - [105]={ + [106]={ [1]={ [1]={ limit={ @@ -2593,7 +2577,7 @@ return { [1]="base_life_reservation_+%" } }, - [106]={ + [107]={ [1]={ [1]={ limit={ @@ -2622,7 +2606,7 @@ return { [1]="base_mana_cost_-%" } }, - [107]={ + [108]={ [1]={ [1]={ limit={ @@ -2651,7 +2635,7 @@ return { [1]="base_mana_reservation_+%" } }, - [108]={ + [109]={ [1]={ [1]={ [1]={ @@ -2671,7 +2655,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [109]={ + [110]={ [1]={ [1]={ limit={ @@ -2687,7 +2671,7 @@ return { [1]="base_number_of_arrows" } }, - [110]={ + [111]={ [1]={ [1]={ limit={ @@ -2712,7 +2696,7 @@ return { [1]="base_number_of_bone_offerings_allowed" } }, - [111]={ + [112]={ [1]={ [1]={ limit={ @@ -2737,7 +2721,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [112]={ + [113]={ [1]={ [1]={ limit={ @@ -2762,7 +2746,7 @@ return { [1]="base_number_of_pain_offerings_allowed" } }, - [113]={ + [114]={ [1]={ [1]={ limit={ @@ -2787,7 +2771,7 @@ return { [1]="base_number_of_power_offerings_allowed" } }, - [114]={ + [115]={ [1]={ [1]={ limit={ @@ -2812,7 +2796,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [115]={ + [116]={ [1]={ [1]={ limit={ @@ -2837,7 +2821,7 @@ return { [1]="base_number_of_skeletal_constructs_allowed" } }, - [116]={ + [117]={ [1]={ [1]={ limit={ @@ -2866,7 +2850,7 @@ return { [1]="base_poison_duration_+%" } }, - [117]={ + [118]={ [1]={ [1]={ limit={ @@ -2895,7 +2879,7 @@ return { [1]="base_projectile_speed_+%" } }, - [118]={ + [119]={ [1]={ [1]={ limit={ @@ -2911,7 +2895,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [119]={ + [120]={ [1]={ [1]={ limit={ @@ -2927,7 +2911,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [120]={ + [121]={ [1]={ [1]={ limit={ @@ -2943,7 +2927,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [121]={ + [122]={ [1]={ [1]={ limit={ @@ -2972,7 +2956,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [122]={ + [123]={ [1]={ [1]={ limit={ @@ -3001,7 +2985,7 @@ return { [1]="base_reservation_+%" } }, - [123]={ + [124]={ [1]={ [1]={ limit={ @@ -3030,7 +3014,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [124]={ + [125]={ [1]={ [1]={ limit={ @@ -3059,7 +3043,7 @@ return { [1]="base_stun_duration_+%" } }, - [125]={ + [126]={ [1]={ [1]={ limit={ @@ -3075,7 +3059,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [126]={ + [127]={ [1]={ [1]={ limit={ @@ -3104,7 +3088,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [127]={ + [128]={ [1]={ [1]={ [1]={ @@ -3124,7 +3108,7 @@ return { [1]="base_weapon_trap_total_rotation_%" } }, - [128]={ + [129]={ [1]={ [1]={ limit={ @@ -3140,7 +3124,7 @@ return { [1]="berserk_base_rage_loss_per_second" } }, - [129]={ + [130]={ [1]={ [1]={ limit={ @@ -3165,7 +3149,7 @@ return { [1]="bladefall_blade_left_in_ground_for_every_X_volleys" } }, - [130]={ + [131]={ [1]={ [1]={ limit={ @@ -3190,7 +3174,7 @@ return { [1]="bladefall_number_of_volleys" } }, - [131]={ + [132]={ [1]={ [1]={ limit={ @@ -3219,7 +3203,7 @@ return { [1]="blades_left_in_ground_+%_final_if_not_hand_cast" } }, - [132]={ + [133]={ [1]={ [1]={ limit={ @@ -3235,7 +3219,7 @@ return { [1]="blasphemy_base_spirit_reservation_per_socketed_curse" } }, - [133]={ + [134]={ [1]={ [1]={ limit={ @@ -3264,7 +3248,7 @@ return { [1]="blind_duration_+%" } }, - [134]={ + [135]={ [1]={ [1]={ limit={ @@ -3280,7 +3264,7 @@ return { [1]="blood_spears_additional_number_of_spears_if_changed_stance_recently" } }, - [135]={ + [136]={ [1]={ [1]={ limit={ @@ -3309,7 +3293,7 @@ return { [1]="blood_spears_base_number_of_spears" } }, - [136]={ + [137]={ [1]={ [1]={ limit={ @@ -3338,7 +3322,7 @@ return { [1]="blood_spears_damage_+%_final_in_blood_stance" } }, - [137]={ + [138]={ [1]={ [1]={ limit={ @@ -3359,7 +3343,7 @@ return { [2]="bone_spear_maximum_added_attack_physical_damage_taken" } }, - [138]={ + [139]={ [1]={ [1]={ limit={ @@ -3380,7 +3364,7 @@ return { [2]="bone_spear_maximum_damage_threshold" } }, - [139]={ + [140]={ [1]={ [1]={ limit={ @@ -3409,7 +3393,7 @@ return { [1]="burn_damage_+%" } }, - [140]={ + [141]={ [1]={ [1]={ limit={ @@ -3434,7 +3418,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [141]={ + [142]={ [1]={ [1]={ limit={ @@ -3450,7 +3434,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [142]={ + [143]={ [1]={ [1]={ limit={ @@ -3466,7 +3450,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [143]={ + [144]={ [1]={ [1]={ limit={ @@ -3491,7 +3475,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [144]={ + [145]={ [1]={ [1]={ limit={ @@ -3516,7 +3500,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [145]={ + [146]={ [1]={ [1]={ limit={ @@ -3532,7 +3516,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [146]={ + [147]={ [1]={ [1]={ limit={ @@ -3557,7 +3541,7 @@ return { [1]="chance_to_scorch_%" } }, - [147]={ + [148]={ [1]={ [1]={ limit={ @@ -3586,7 +3570,7 @@ return { [1]="chaos_damage_+%" } }, - [148]={ + [149]={ [1]={ [1]={ limit={ @@ -3615,7 +3599,7 @@ return { [1]="chill_duration_+%" } }, - [149]={ + [150]={ [1]={ [1]={ limit={ @@ -3644,7 +3628,7 @@ return { [1]="chill_effect_+%" } }, - [150]={ + [151]={ [1]={ [1]={ limit={ @@ -3673,7 +3657,7 @@ return { [1]="circle_of_power_skill_cost_mana_cost_+%" } }, - [151]={ + [152]={ [1]={ [1]={ limit={ @@ -3702,7 +3686,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [152]={ + [153]={ [1]={ [1]={ limit={ @@ -3731,7 +3715,7 @@ return { [1]="cold_damage_+%" } }, - [153]={ + [154]={ [1]={ [1]={ limit={ @@ -3747,7 +3731,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [154]={ + [155]={ [1]={ [1]={ limit={ @@ -3776,7 +3760,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [155]={ + [156]={ [1]={ [1]={ limit={ @@ -3805,7 +3789,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [156]={ + [157]={ [1]={ [1]={ limit={ @@ -3830,7 +3814,7 @@ return { [1]="contagion_spread_on_hit_affected_enemy_%" } }, - [157]={ + [158]={ [1]={ [1]={ limit={ @@ -3859,7 +3843,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [158]={ + [159]={ [1]={ [1]={ limit={ @@ -3888,7 +3872,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [159]={ + [160]={ [1]={ [1]={ limit={ @@ -3904,7 +3888,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [160]={ + [161]={ [1]={ [1]={ limit={ @@ -3933,7 +3917,7 @@ return { [1]="cremation_fires_projectiles_faster_+%_final" } }, - [161]={ + [162]={ [1]={ [1]={ limit={ @@ -3962,7 +3946,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [162]={ + [163]={ [1]={ [1]={ limit={ @@ -3978,7 +3962,7 @@ return { [1]="critical_multiplier_+%_per_100_max_es_on_shield" } }, - [163]={ + [164]={ [1]={ [1]={ limit={ @@ -4007,7 +3991,7 @@ return { [1]="critical_strike_chance_+%" } }, - [164]={ + [165]={ [1]={ [1]={ limit={ @@ -4036,7 +4020,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [165]={ + [166]={ [1]={ [1]={ limit={ @@ -4065,7 +4049,7 @@ return { [1]="damage_over_time_+%" } }, - [166]={ + [167]={ [1]={ [1]={ limit={ @@ -4094,7 +4078,7 @@ return { [1]="damage_+%" } }, - [167]={ + [168]={ [1]={ [1]={ limit={ @@ -4123,7 +4107,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [168]={ + [169]={ [1]={ [1]={ limit={ @@ -4152,7 +4136,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [169]={ + [170]={ [1]={ [1]={ limit={ @@ -4181,7 +4165,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [170]={ + [171]={ [1]={ [1]={ limit={ @@ -4210,7 +4194,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [171]={ + [172]={ [1]={ [1]={ limit={ @@ -4239,7 +4223,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [172]={ + [173]={ [1]={ [1]={ limit={ @@ -4268,7 +4252,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [173]={ + [174]={ [1]={ [1]={ limit={ @@ -4297,7 +4281,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [174]={ + [175]={ [1]={ [1]={ limit={ @@ -4326,7 +4310,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [175]={ + [176]={ [1]={ [1]={ limit={ @@ -4355,7 +4339,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [176]={ + [177]={ [1]={ [1]={ limit={ @@ -4384,7 +4368,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [177]={ + [178]={ [1]={ [1]={ limit={ @@ -4400,7 +4384,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [178]={ + [179]={ [1]={ [1]={ [1]={ @@ -4420,7 +4404,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [179]={ + [180]={ [1]={ [1]={ [1]={ @@ -4440,7 +4424,7 @@ return { [1]="display_base_intensity_loss" } }, - [180]={ + [181]={ [1]={ [1]={ limit={ @@ -4456,7 +4440,7 @@ return { [1]="display_consume_corpse_storage_limit" } }, - [181]={ + [182]={ [1]={ [1]={ limit={ @@ -4472,7 +4456,7 @@ return { [1]="display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed" } }, - [182]={ + [183]={ [1]={ [1]={ limit={ @@ -4488,7 +4472,7 @@ return { [1]="divine_tempest_base_number_of_nearby_enemies_to_zap" } }, - [183]={ + [184]={ [1]={ [1]={ limit={ @@ -4504,7 +4488,7 @@ return { [1]="dot_multiplier_+" } }, - [184]={ + [185]={ [1]={ [1]={ limit={ @@ -4533,7 +4517,7 @@ return { [1]="elemental_damage_+%" } }, - [185]={ + [186]={ [1]={ [1]={ limit={ @@ -4645,7 +4629,7 @@ return { [2]="empower_barrage_number_of_barrage_repeats_per_frenzy_charge" } }, - [186]={ + [187]={ [1]={ [1]={ [1]={ @@ -4700,7 +4684,7 @@ return { [2]="quality_display_barrage_is_gem" } }, - [187]={ + [188]={ [1]={ [1]={ limit={ @@ -4716,7 +4700,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [188]={ + [189]={ [1]={ [1]={ limit={ @@ -4741,7 +4725,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [189]={ + [190]={ [1]={ [1]={ limit={ @@ -4757,7 +4741,7 @@ return { [1]="faster_bleed_%" } }, - [190]={ + [191]={ [1]={ [1]={ limit={ @@ -4766,7 +4750,7 @@ return { [2]="#" } }, - text="Ignites you inflict deal Damage {0}% faster" + text="Ignites you inflict with this skill deal Damage {0}% faster" }, [2]={ [1]={ @@ -4779,14 +4763,14 @@ return { [2]=-1 } }, - text="Ignites you inflict deal Damage {0}% slower" + text="Ignites you inflict with this skill deal Damage {0}% slower" } }, stats={ [1]="faster_burn_%" } }, - [191]={ + [192]={ [1]={ [1]={ limit={ @@ -4802,7 +4786,7 @@ return { [1]="faster_poison_%" } }, - [192]={ + [193]={ [1]={ [1]={ limit={ @@ -4831,7 +4815,7 @@ return { [1]="fire_damage_+%" } }, - [193]={ + [194]={ [1]={ [1]={ limit={ @@ -4860,7 +4844,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [194]={ + [195]={ [1]={ [1]={ limit={ @@ -4881,7 +4865,7 @@ return { [2]="flame_link_maximum_fire_damage" } }, - [195]={ + [196]={ [1]={ [1]={ limit={ @@ -4897,7 +4881,7 @@ return { [1]="flame_link_added_fire_damage_from_life_%" } }, - [196]={ + [197]={ [1]={ [1]={ limit={ @@ -4926,7 +4910,7 @@ return { [1]="fortify_duration_+%" } }, - [197]={ + [198]={ [1]={ [1]={ limit={ @@ -4955,7 +4939,7 @@ return { [1]="freeze_duration_+%" } }, - [198]={ + [199]={ [1]={ [1]={ limit={ @@ -4971,7 +4955,7 @@ return { [1]="freezing_bolt_chill_maximum_magnitude_override" } }, - [199]={ + [200]={ [1]={ [1]={ limit={ @@ -4996,7 +4980,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [200]={ + [201]={ [1]={ [1]={ limit={ @@ -5021,7 +5005,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [201]={ + [202]={ [1]={ [1]={ limit={ @@ -5037,7 +5021,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [202]={ + [203]={ [1]={ [1]={ limit={ @@ -5058,7 +5042,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [203]={ + [204]={ [1]={ [1]={ limit={ @@ -5079,7 +5063,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [204]={ + [205]={ [1]={ [1]={ limit={ @@ -5100,7 +5084,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [205]={ + [206]={ [1]={ [1]={ limit={ @@ -5121,7 +5105,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [206]={ + [207]={ [1]={ [1]={ limit={ @@ -5142,22 +5126,6 @@ return { [2]="global_maximum_added_physical_damage" } }, - [207]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% reduced Enemy Block Chance" - } - }, - stats={ - [1]="global_reduce_enemy_block_%" - } - }, [208]={ [1]={ [1]={ @@ -6172,13 +6140,32 @@ return { [249]={ [1]={ [1]={ + limit={ + }, + text="Chains an additional time" + }, + [2]={ + limit={ + }, + text="Chains {0:+d} additional times" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Chains {0} time" + }, + [4]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Chains {0} Times" + text="Chains {0} times" } }, stats={ @@ -6415,7 +6402,7 @@ return { [2]=1000 } }, - text="Fires a bolt every second, and when you use a Lightning Skill near the Orb" + text="Fires a bolt every second, and when you\ncast a Spell near the Orb" }, [2]={ [1]={ @@ -6428,7 +6415,7 @@ return { [2]="#" } }, - text="Fires a bolt every {0} seconds, and when you use a Lightning Skill near the Orb" + text="Fires a bolt every {0} seconds, and when you\ncast a Spell near the Orb" } }, stats={ @@ -6911,22 +6898,6 @@ return { } }, [279]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% reduced Enemy chance to Dodge" - } - }, - stats={ - [1]="reduce_enemy_dodge_%" - } - }, - [280]={ [1]={ [1]={ limit={ @@ -6942,7 +6913,7 @@ return { [1]="regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [281]={ + [280]={ [1]={ [1]={ limit={ @@ -6958,7 +6929,7 @@ return { [1]="ritual_of_power_maximum_number_of_rituals" } }, - [282]={ + [281]={ [1]={ [1]={ limit={ @@ -6987,7 +6958,7 @@ return { [1]="seismic_trap_frequency_+%" } }, - [283]={ + [282]={ [1]={ [1]={ [1]={ @@ -7020,7 +6991,7 @@ return { [1]="shapeshift_to_bear_added_attack_time_ms" } }, - [284]={ + [283]={ [1]={ [1]={ [1]={ @@ -7053,7 +7024,7 @@ return { [1]="shapeshift_to_bear_added_cast_time_ms" } }, - [285]={ + [284]={ [1]={ [1]={ limit={ @@ -7082,7 +7053,7 @@ return { [1]="shock_duration_+%" } }, - [286]={ + [285]={ [1]={ [1]={ limit={ @@ -7098,7 +7069,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_energy_shield" } }, - [287]={ + [286]={ [1]={ [1]={ limit={ @@ -7114,7 +7085,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_life" } }, - [288]={ + [287]={ [1]={ [1]={ [1]={ @@ -7134,7 +7105,7 @@ return { [1]="skill_raging_spirit_per_x_radius" } }, - [289]={ + [288]={ [1]={ [1]={ limit={ @@ -7159,7 +7130,7 @@ return { [1]="skill_raging_spirits_max_per_action" } }, - [290]={ + [289]={ [1]={ [1]={ limit={ @@ -7175,7 +7146,7 @@ return { [1]="snapping_adder_chance_to_release_projectile_when_hit_%" } }, - [291]={ + [290]={ [1]={ [1]={ limit={ @@ -7196,7 +7167,7 @@ return { [2]="soulfeast_take_%_maximum_energy_shield_as_chaos_damage" } }, - [292]={ + [291]={ [1]={ [1]={ [1]={ @@ -7229,7 +7200,7 @@ return { [1]="spear_wall_cm_per_spear" } }, - [293]={ + [292]={ [1]={ [1]={ limit={ @@ -7254,7 +7225,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [294]={ + [293]={ [1]={ [1]={ [1]={ @@ -7274,7 +7245,7 @@ return { [1]="spell_cast_time_added_to_cooldown_if_triggered" } }, - [295]={ + [294]={ [1]={ [1]={ limit={ @@ -7303,7 +7274,7 @@ return { [1]="spell_damage_+%" } }, - [296]={ + [295]={ [1]={ [1]={ limit={ @@ -7319,7 +7290,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [297]={ + [296]={ [1]={ [1]={ limit={ @@ -7350,7 +7321,7 @@ return { [4]="storm_blade_maximum_lightning_damage_from_es_%" } }, - [298]={ + [297]={ [1]={ [1]={ limit={ @@ -7366,7 +7337,7 @@ return { [1]="storm_blade_damage_+%_final_with_two_hand_weapon" } }, - [299]={ + [298]={ [1]={ [1]={ limit={ @@ -7382,7 +7353,7 @@ return { [1]="active_skill_display_does_intensity_stuff" } }, - [300]={ + [299]={ [1]={ [1]={ limit={ @@ -7411,7 +7382,7 @@ return { [1]="support_trap_damage_+%_final" } }, - [301]={ + [300]={ [1]={ [1]={ limit={ @@ -7440,7 +7411,7 @@ return { [1]="tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback" } }, - [302]={ + [301]={ [1]={ [1]={ limit={ @@ -7456,7 +7427,7 @@ return { [1]="tempest_bell_physical_damage_%_as_elemental_per_ailment" } }, - [303]={ + [302]={ [1]={ [1]={ limit={ @@ -7485,7 +7456,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [304]={ + [303]={ [1]={ [1]={ limit={ @@ -7510,7 +7481,7 @@ return { [1]="tornado_shot_num_of_secondary_projectiles" } }, - [305]={ + [304]={ [1]={ [1]={ [1]={ @@ -7594,7 +7565,7 @@ return { [2]="leap_slam_added_attack_time_by_distance_ms" } }, - [306]={ + [305]={ [1]={ [1]={ [1]={ @@ -7627,7 +7598,7 @@ return { [1]="total_cast_time_+_ms" } }, - [307]={ + [306]={ [1]={ [1]={ limit={ @@ -7643,7 +7614,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [308]={ + [307]={ [1]={ [1]={ [1]={ @@ -7663,7 +7634,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [309]={ + [308]={ [1]={ [1]={ limit={ @@ -7692,7 +7663,7 @@ return { [1]="trap_damage_+%" } }, - [310]={ + [309]={ [1]={ [1]={ limit={ @@ -7721,7 +7692,7 @@ return { [1]="trap_duration_+%" } }, - [311]={ + [310]={ [1]={ [1]={ limit={ @@ -7750,7 +7721,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [312]={ + [311]={ [1]={ [1]={ limit={ @@ -7779,7 +7750,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [313]={ + [312]={ [1]={ [1]={ limit={ @@ -7795,7 +7766,7 @@ return { [1]="unearth_base_corpse_level" } }, - [314]={ + [313]={ [1]={ [1]={ limit={ @@ -7820,7 +7791,7 @@ return { [1]="vaal_lightning_arrow_number_of_redirects" } }, - [315]={ + [314]={ [1]={ [1]={ limit={ @@ -7836,7 +7807,7 @@ return { [1]="vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects" } }, - [316]={ + [315]={ [1]={ [1]={ [1]={ @@ -7869,7 +7840,7 @@ return { [1]="vaal_storm_call_base_delay_ms" } }, - [317]={ + [316]={ [1]={ [1]={ limit={ @@ -7885,7 +7856,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [318]={ + [317]={ [1]={ [1]={ limit={ @@ -7901,7 +7872,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [319]={ + [318]={ [1]={ [1]={ limit={ @@ -7926,7 +7897,7 @@ return { [1]="volcanic_fissure_base_maximum_number_of_fissures" } }, - [320]={ + [319]={ [1]={ [1]={ limit={ @@ -7955,7 +7926,7 @@ return { [1]="warcry_speed_+%" } }, - [321]={ + [320]={ [1]={ [1]={ limit={ @@ -7984,7 +7955,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [322]={ + [321]={ [1]={ [1]={ limit={ @@ -8013,7 +7984,7 @@ return { [1]="weapon_trap_rotation_speed_+%_if_dual_wielding" } }, - [323]={ + [322]={ [1]={ [1]={ [1]={ @@ -8033,220 +8004,219 @@ return { [1]="weapon_trap_total_rotation_%_if_dual_wielding" } }, - ["accuracy_rating"]=41, - ["accuracy_rating_+%"]=42, + ["accuracy_rating"]=44, + ["accuracy_rating_+%"]=45, ["active_skill_additional_projectiles_description_mode"]=248, - ["active_skill_area_damage_+%_final"]=30, - ["active_skill_attack_damage_+%_final"]=10, - ["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=43, - ["active_skill_attack_damage_final_permyriad"]=12, - ["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=44, - ["active_skill_base_cold_damage_%_to_convert_to_fire"]=45, - ["active_skill_base_fire_damage_%_to_convert_to_chaos"]=46, - ["active_skill_base_lightning_damage_%_to_convert_to_chaos"]=47, - ["active_skill_base_physical_damage_%_to_convert_to_chaos"]=49, - ["active_skill_base_physical_damage_%_to_convert_to_cold"]=50, - ["active_skill_base_physical_damage_%_to_convert_to_fire"]=51, - ["active_skill_base_physical_damage_%_to_convert_to_lightning"]=52, - ["active_skill_base_physical_damage_%_to_gain_as_cold"]=48, - ["active_skill_base_stored_corpse_cost"]=53, - ["active_skill_brands_allowed_on_enemy_+"]=54, - ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=55, - ["active_skill_cast_speed_+%_final"]=56, - ["active_skill_critical_strike_chance_+%_final"]=57, - ["active_skill_damage_+%_final"]=13, - ["active_skill_display_does_intensity_stuff"]=299, - ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=50, - ["active_skill_minion_damage_+%_final"]=14, - ["active_skill_minion_physical_damage_+%_final"]=15, - ["active_skill_physical_damage_+%_final"]=16, - ["active_skill_poison_duration_+%_final"]=58, - ["active_skill_quality_damage_+%_final"]=59, - ["active_skill_quality_duration_+%_final"]=60, - ["add_power_charge_on_kill_%_chance"]=61, - ["additional_base_critical_strike_chance"]=62, - ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=38, - ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=63, - ["alt_attack_container_main_hand_base_weapon_attack_duration_ms"]=64, - ["alt_attack_container_main_hand_weapon_critical_strike_chance"]=65, - ["alt_attack_container_main_hand_weapon_maximum_cold_damage"]=66, - ["alt_attack_container_main_hand_weapon_maximum_lightning_damage"]=67, - ["alt_attack_container_main_hand_weapon_maximum_physical_damage"]=68, - ["alt_attack_container_main_hand_weapon_minimum_cold_damage"]=66, - ["alt_attack_container_main_hand_weapon_minimum_lightning_damage"]=67, - ["alt_attack_container_main_hand_weapon_minimum_physical_damage"]=68, - ["always_freeze"]=93, - ["ancestor_totem_buff_effect_+%"]=69, - ["ancestor_totem_parent_activation_range_+%"]=70, - ["animate_item_maximum_level_requirement"]=40, - ["arc_chain_hit_damage_+%_final"]=71, - ["area_damage_+%"]=72, - ["area_of_effect_+%_while_dead"]=73, - ["arsonist_destructive_link_%_of_life_as_fire_damage"]=74, - ["attack_and_cast_speed_+%"]=75, - ["attack_and_cast_speed_+%_during_onslaught"]=76, - ["attack_maximum_added_chaos_damage"]=77, - ["attack_maximum_added_cold_damage"]=78, - ["attack_maximum_added_fire_damage"]=79, - ["attack_maximum_added_lightning_damage"]=80, - ["attack_maximum_added_physical_damage"]=81, - ["attack_minimum_added_chaos_damage"]=77, - ["attack_minimum_added_cold_damage"]=78, - ["attack_minimum_added_fire_damage"]=79, - ["attack_minimum_added_lightning_damage"]=80, - ["attack_minimum_added_physical_damage"]=81, - ["attack_skills_additional_ballista_totems_allowed"]=33, - ["attack_speed_+%"]=82, - ["attack_speed_+%_granted_from_skill"]=83, - ["attacks_chance_to_blind_on_hit_%"]=84, - ["aura_effect_+%"]=23, - ["avoid_interruption_while_using_this_skill_%"]=85, - ["ball_lightning_base_hit_frequency_ms"]=86, - ["base_added_cooldown_count"]=87, - ["base_aura_area_of_effect_+%"]=88, - ["base_blackhole_tick_rate_ms"]=89, - ["base_blade_vortex_hit_rate_ms"]=90, - ["base_bleed_duration_+%"]=91, - ["base_buff_duration_ms_+_per_removable_endurance_charge"]=26, - ["base_cast_speed_+%"]=92, - ["base_chance_to_freeze_%"]=93, - ["base_chance_to_ignite_%"]=94, - ["base_chance_to_shock_%"]=95, - ["base_cost_+%"]=96, - ["base_critical_strike_multiplier_+"]=97, - ["base_curse_duration_+%"]=98, - ["base_galvanic_field_beam_delay_ms"]=99, - ["base_global_chance_to_knockback_%"]=100, - ["base_killed_monster_dropped_item_rarity_+%"]=101, - ["base_knockback_distance"]=102, - ["base_life_cost_+%"]=103, - ["base_life_gain_per_target"]=104, - ["base_life_reservation_+%"]=105, - ["base_mana_cost_-%"]=106, - ["base_mana_reservation_+%"]=107, - ["base_melee_attack_repeat_count"]=39, - ["base_mine_detonation_time_ms"]=108, - ["base_number_of_arrows"]=109, - ["base_number_of_bone_offerings_allowed"]=110, - ["base_number_of_champions_of_light_allowed"]=111, - ["base_number_of_golems_allowed"]=32, - ["base_number_of_pain_offerings_allowed"]=112, - ["base_number_of_power_offerings_allowed"]=113, - ["base_number_of_raging_spirits_allowed"]=21, + ["active_skill_area_damage_+%_final"]=33, + ["active_skill_attack_damage_+%_final"]=13, + ["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=46, + ["active_skill_attack_damage_final_permyriad"]=15, + ["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=47, + ["active_skill_base_cold_damage_%_to_convert_to_fire"]=48, + ["active_skill_base_fire_damage_%_to_convert_to_chaos"]=49, + ["active_skill_base_lightning_damage_%_to_convert_to_chaos"]=50, + ["active_skill_base_physical_damage_%_to_convert_to_chaos"]=52, + ["active_skill_base_physical_damage_%_to_convert_to_cold"]=53, + ["active_skill_base_physical_damage_%_to_convert_to_fire"]=54, + ["active_skill_base_physical_damage_%_to_convert_to_lightning"]=55, + ["active_skill_base_physical_damage_%_to_gain_as_cold"]=51, + ["active_skill_base_stored_corpse_cost"]=56, + ["active_skill_brands_allowed_on_enemy_+"]=57, + ["active_skill_cannot_manually_reload"]=1, + ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=58, + ["active_skill_cast_speed_+%_final"]=59, + ["active_skill_critical_strike_chance_+%_final"]=60, + ["active_skill_damage_+%_final"]=16, + ["active_skill_display_does_intensity_stuff"]=298, + ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=53, + ["active_skill_has_%_standard_scaling_attack_damage"]=2, + ["active_skill_minion_damage_+%_final"]=17, + ["active_skill_minion_physical_damage_+%_final"]=18, + ["active_skill_physical_damage_+%_final"]=19, + ["active_skill_poison_duration_+%_final"]=61, + ["active_skill_quality_damage_+%_final"]=62, + ["active_skill_quality_duration_+%_final"]=63, + ["add_power_charge_on_kill_%_chance"]=64, + ["additional_base_critical_strike_chance"]=65, + ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=41, + ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=66, + ["alt_attack_container_main_hand_base_weapon_attack_duration_ms"]=67, + ["alt_attack_container_main_hand_weapon_critical_strike_chance"]=68, + ["alt_attack_container_main_hand_weapon_maximum_cold_damage"]=69, + ["alt_attack_container_main_hand_weapon_maximum_lightning_damage"]=70, + ["alt_attack_container_main_hand_weapon_maximum_physical_damage"]=71, + ["alt_attack_container_main_hand_weapon_minimum_cold_damage"]=69, + ["alt_attack_container_main_hand_weapon_minimum_lightning_damage"]=70, + ["alt_attack_container_main_hand_weapon_minimum_physical_damage"]=71, + ["always_freeze"]=96, + ["ancestor_totem_buff_effect_+%"]=72, + ["ancestor_totem_parent_activation_range_+%"]=73, + ["animate_item_maximum_level_requirement"]=43, + ["arc_chain_hit_damage_+%_final"]=74, + ["area_damage_+%"]=75, + ["area_of_effect_+%_while_dead"]=76, + ["arsonist_destructive_link_%_of_life_as_fire_damage"]=77, + ["attack_and_cast_speed_+%"]=78, + ["attack_and_cast_speed_+%_during_onslaught"]=79, + ["attack_maximum_added_chaos_damage"]=80, + ["attack_maximum_added_cold_damage"]=81, + ["attack_maximum_added_fire_damage"]=82, + ["attack_maximum_added_lightning_damage"]=83, + ["attack_maximum_added_physical_damage"]=84, + ["attack_minimum_added_chaos_damage"]=80, + ["attack_minimum_added_cold_damage"]=81, + ["attack_minimum_added_fire_damage"]=82, + ["attack_minimum_added_lightning_damage"]=83, + ["attack_minimum_added_physical_damage"]=84, + ["attack_skills_additional_ballista_totems_allowed"]=36, + ["attack_speed_+%"]=85, + ["attack_speed_+%_granted_from_skill"]=86, + ["attacks_chance_to_blind_on_hit_%"]=87, + ["aura_effect_+%"]=26, + ["avoid_interruption_while_using_this_skill_%"]=88, + ["ball_lightning_base_hit_frequency_ms"]=89, + ["base_added_cooldown_count"]=90, + ["base_aura_area_of_effect_+%"]=91, + ["base_blackhole_tick_rate_ms"]=92, + ["base_blade_vortex_hit_rate_ms"]=93, + ["base_bleed_duration_+%"]=94, + ["base_buff_duration_ms_+_per_removable_endurance_charge"]=29, + ["base_cast_speed_+%"]=95, + ["base_chance_to_freeze_%"]=96, + ["base_chance_to_shock_%"]=97, + ["base_cost_+%"]=98, + ["base_critical_strike_multiplier_+"]=99, + ["base_curse_duration_+%"]=100, + ["base_global_chance_to_knockback_%"]=101, + ["base_killed_monster_dropped_item_rarity_+%"]=102, + ["base_knockback_distance"]=103, + ["base_life_cost_+%"]=104, + ["base_life_gain_per_target"]=105, + ["base_life_reservation_+%"]=106, + ["base_mana_cost_-%"]=107, + ["base_mana_reservation_+%"]=108, + ["base_melee_attack_repeat_count"]=42, + ["base_mine_detonation_time_ms"]=109, + ["base_number_of_arrows"]=110, + ["base_number_of_bone_offerings_allowed"]=111, + ["base_number_of_champions_of_light_allowed"]=112, + ["base_number_of_golems_allowed"]=35, + ["base_number_of_pain_offerings_allowed"]=113, + ["base_number_of_power_offerings_allowed"]=114, + ["base_number_of_raging_spirits_allowed"]=24, ["base_number_of_reapers_allowed"]=255, - ["base_number_of_relics_allowed"]=114, - ["base_number_of_skeletal_constructs_allowed"]=115, - ["base_number_of_skeletons_allowed"]=20, - ["base_number_of_spectres_allowed"]=19, - ["base_number_of_totems_allowed"]=34, - ["base_number_of_zombies_allowed"]=18, - ["base_poison_duration_+%"]=116, - ["base_projectile_speed_+%"]=117, - ["base_reduce_enemy_cold_resistance_%"]=118, - ["base_reduce_enemy_fire_resistance_%"]=119, - ["base_reduce_enemy_lightning_resistance_%"]=120, - ["base_reservation_+%"]=122, - ["base_reservation_efficiency_+%"]=121, - ["base_sigil_repeat_frequency_ms"]=36, - ["base_skill_area_of_effect_+%"]=123, - ["base_spell_repeat_count"]=31, - ["base_stun_duration_+%"]=124, - ["base_use_life_in_place_of_mana"]=125, - ["base_weapon_trap_rotation_speed_+%"]=126, - ["base_weapon_trap_total_rotation_%"]=127, - ["berserk_base_rage_loss_per_second"]=128, - ["bladefall_blade_left_in_ground_for_every_X_volleys"]=129, - ["bladefall_number_of_volleys"]=130, - ["blades_left_in_ground_+%_final_if_not_hand_cast"]=131, - ["blasphemy_base_spirit_reservation_per_socketed_curse"]=132, - ["blind_duration_+%"]=133, - ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=134, - ["blood_spears_base_number_of_spears"]=135, - ["blood_spears_damage_+%_final_in_blood_stance"]=136, - ["bone_spear_maximum_added_attack_physical_damage_taken"]=137, - ["bone_spear_maximum_damage_threshold"]=138, - ["bone_spear_minimum_added_attack_physical_damage_taken"]=137, - ["bone_spear_minimum_damage_threshold"]=138, - ["buff_duration_+%"]=27, - ["burn_damage_+%"]=139, - ["chance_%_when_poison_to_also_poison_another_enemy"]=140, - ["chance_to_double_stun_duration_%"]=141, - ["chance_to_fork_extra_projectile_%"]=142, - ["chance_to_fortify_on_melee_hit_+%"]=143, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=144, - ["chance_to_place_an_additional_mine_%"]=145, - ["chance_to_scorch_%"]=146, - ["chaos_damage_+%"]=147, - ["chill_duration_+%"]=148, - ["chill_effect_+%"]=149, - ["circle_of_power_skill_cost_mana_cost_+%"]=150, - ["cold_ailment_effect_+%"]=151, - ["cold_damage_+%"]=152, - ["consecrated_ground_area_+%"]=155, - ["consecrated_ground_effect_+%"]=153, - ["consecrated_ground_enemy_damage_taken_+%"]=154, - ["contagion_spread_on_hit_affected_enemy_%"]=156, - ["conversation_trap_converted_enemy_damage_+%"]=157, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=158, - ["corpse_erruption_base_maximum_number_of_geyers"]=159, - ["cremation_fires_projectiles_faster_+%_final"]=160, - ["critical_hit_damaging_ailment_effect_+%"]=161, - ["critical_multiplier_+%_per_100_max_es_on_shield"]=162, - ["critical_strike_chance_+%"]=163, - ["cyclone_max_stages_movement_speed_+%"]=164, - ["damage_+%"]=166, - ["damage_+%_on_full_energy_shield"]=173, - ["damage_+%_per_endurance_charge"]=167, - ["damage_+%_per_frenzy_charge"]=168, - ["damage_+%_per_power_charge"]=169, - ["damage_+%_vs_enemies_on_full_life"]=170, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=171, - ["damage_+%_vs_frozen_enemies"]=172, - ["damage_+%_when_on_full_life"]=174, - ["damage_+%_when_on_low_life"]=175, - ["damage_over_time_+%"]=165, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=176, - ["damage_vs_enemies_on_low_life_+%"]=177, - ["dash_grants_phasing_after_use_ms"]=178, - ["display_base_intensity_loss"]=179, - ["display_consume_corpse_storage_limit"]=180, - ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=181, - ["display_minion_base_maximum_life"]=29, - ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=182, - ["dot_multiplier_+"]=183, - ["elemental_damage_+%"]=184, - ["empower_barrage_base_number_of_barrage_repeats"]=185, - ["empower_barrage_damage_-%_final_with_repeated_projectiles"]=186, - ["empower_barrage_number_of_barrage_repeats_per_frenzy_charge"]=185, - ["enemy_phys_reduction_%_penalty_vs_hit"]=187, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=188, - ["eye_of_winter_base_explosion_shards"]=35, - ["faster_bleed_%"]=189, - ["faster_burn_%"]=190, - ["faster_poison_%"]=191, - ["fire_damage_+%"]=192, - ["firestorm_explosion_area_of_effect_+%"]=193, - ["flame_link_added_fire_damage_from_life_%"]=195, - ["flame_link_maximum_fire_damage"]=194, - ["flame_link_minimum_fire_damage"]=194, - ["fortify_duration_+%"]=196, - ["freeze_duration_+%"]=197, - ["freezing_bolt_chill_maximum_magnitude_override"]=198, + ["base_number_of_relics_allowed"]=115, + ["base_number_of_skeletal_constructs_allowed"]=116, + ["base_number_of_skeletons_allowed"]=23, + ["base_number_of_spectres_allowed"]=22, + ["base_number_of_totems_allowed"]=37, + ["base_number_of_zombies_allowed"]=21, + ["base_poison_duration_+%"]=117, + ["base_projectile_speed_+%"]=118, + ["base_reduce_enemy_cold_resistance_%"]=119, + ["base_reduce_enemy_fire_resistance_%"]=120, + ["base_reduce_enemy_lightning_resistance_%"]=121, + ["base_reservation_+%"]=123, + ["base_reservation_efficiency_+%"]=122, + ["base_sigil_repeat_frequency_ms"]=39, + ["base_skill_area_of_effect_+%"]=124, + ["base_spell_repeat_count"]=34, + ["base_stun_duration_+%"]=125, + ["base_use_life_in_place_of_mana"]=126, + ["base_weapon_trap_rotation_speed_+%"]=127, + ["base_weapon_trap_total_rotation_%"]=128, + ["berserk_base_rage_loss_per_second"]=129, + ["bladefall_blade_left_in_ground_for_every_X_volleys"]=130, + ["bladefall_number_of_volleys"]=131, + ["blades_left_in_ground_+%_final_if_not_hand_cast"]=132, + ["blasphemy_base_spirit_reservation_per_socketed_curse"]=133, + ["blind_duration_+%"]=134, + ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=135, + ["blood_spears_base_number_of_spears"]=136, + ["blood_spears_damage_+%_final_in_blood_stance"]=137, + ["bone_spear_maximum_added_attack_physical_damage_taken"]=138, + ["bone_spear_maximum_damage_threshold"]=139, + ["bone_spear_minimum_added_attack_physical_damage_taken"]=138, + ["bone_spear_minimum_damage_threshold"]=139, + ["buff_duration_+%"]=30, + ["burn_damage_+%"]=140, + ["chance_%_when_poison_to_also_poison_another_enemy"]=141, + ["chance_to_double_stun_duration_%"]=142, + ["chance_to_fork_extra_projectile_%"]=143, + ["chance_to_fortify_on_melee_hit_+%"]=144, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=145, + ["chance_to_place_an_additional_mine_%"]=146, + ["chance_to_scorch_%"]=147, + ["chaos_damage_+%"]=148, + ["chill_duration_+%"]=149, + ["chill_effect_+%"]=150, + ["circle_of_power_skill_cost_mana_cost_+%"]=151, + ["cold_ailment_effect_+%"]=152, + ["cold_damage_+%"]=153, + ["consecrated_ground_area_+%"]=156, + ["consecrated_ground_effect_+%"]=154, + ["consecrated_ground_enemy_damage_taken_+%"]=155, + ["contagion_spread_on_hit_affected_enemy_%"]=157, + ["conversation_trap_converted_enemy_damage_+%"]=158, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=159, + ["corpse_erruption_base_maximum_number_of_geyers"]=160, + ["cremation_fires_projectiles_faster_+%_final"]=161, + ["critical_hit_damaging_ailment_effect_+%"]=162, + ["critical_multiplier_+%_per_100_max_es_on_shield"]=163, + ["critical_strike_chance_+%"]=164, + ["cyclone_max_stages_movement_speed_+%"]=165, + ["damage_+%"]=167, + ["damage_+%_on_full_energy_shield"]=174, + ["damage_+%_per_endurance_charge"]=168, + ["damage_+%_per_frenzy_charge"]=169, + ["damage_+%_per_power_charge"]=170, + ["damage_+%_vs_enemies_on_full_life"]=171, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=172, + ["damage_+%_vs_frozen_enemies"]=173, + ["damage_+%_when_on_full_life"]=175, + ["damage_+%_when_on_low_life"]=176, + ["damage_over_time_+%"]=166, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=177, + ["damage_vs_enemies_on_low_life_+%"]=178, + ["dash_grants_phasing_after_use_ms"]=179, + ["display_base_intensity_loss"]=180, + ["display_consume_corpse_storage_limit"]=181, + ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=182, + ["display_minion_base_maximum_life"]=32, + ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=183, + ["dot_multiplier_+"]=184, + ["elemental_damage_+%"]=185, + ["empower_barrage_base_number_of_barrage_repeats"]=186, + ["empower_barrage_damage_-%_final_with_repeated_projectiles"]=187, + ["empower_barrage_number_of_barrage_repeats_per_frenzy_charge"]=186, + ["enemy_phys_reduction_%_penalty_vs_hit"]=188, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=189, + ["eye_of_winter_base_explosion_shards"]=38, + ["faster_bleed_%"]=190, + ["faster_burn_%"]=191, + ["faster_poison_%"]=192, + ["fire_damage_+%"]=193, + ["firestorm_explosion_area_of_effect_+%"]=194, + ["flame_link_added_fire_damage_from_life_%"]=196, + ["flame_link_maximum_fire_damage"]=195, + ["flame_link_minimum_fire_damage"]=195, + ["fortify_duration_+%"]=197, + ["freeze_duration_+%"]=198, + ["freezing_bolt_chill_maximum_magnitude_override"]=199, ["frozen_locus_stat_suppression"]=213, - ["galvanic_field_beam_frequency_+%"]=199, - ["galvanic_field_maximum_number_of_spheres"]=200, - ["global_chance_to_blind_on_hit_%"]=201, - ["global_maximum_added_chaos_damage"]=202, - ["global_maximum_added_cold_damage"]=203, - ["global_maximum_added_fire_damage"]=204, - ["global_maximum_added_lightning_damage"]=205, - ["global_maximum_added_physical_damage"]=206, - ["global_minimum_added_chaos_damage"]=202, - ["global_minimum_added_cold_damage"]=203, - ["global_minimum_added_fire_damage"]=204, - ["global_minimum_added_lightning_damage"]=205, - ["global_minimum_added_physical_damage"]=206, - ["global_reduce_enemy_block_%"]=207, + ["galvanic_field_beam_frequency_+%"]=200, + ["galvanic_field_maximum_number_of_spheres"]=201, + ["global_chance_to_blind_on_hit_%"]=202, + ["global_maximum_added_chaos_damage"]=203, + ["global_maximum_added_cold_damage"]=204, + ["global_maximum_added_fire_damage"]=205, + ["global_maximum_added_lightning_damage"]=206, + ["global_maximum_added_physical_damage"]=207, + ["global_minimum_added_chaos_damage"]=203, + ["global_minimum_added_cold_damage"]=204, + ["global_minimum_added_fire_damage"]=205, + ["global_minimum_added_lightning_damage"]=206, + ["global_minimum_added_physical_damage"]=207, ["golem_buff_effect_+%"]=208, ["herald_of_thunder_bolt_base_frequency"]=209, ["hit_damage_+%"]=210, @@ -8259,7 +8229,7 @@ return { ["intensity_loss_frequency_while_moving_+%"]=217, ["kinetic_wand_base_number_of_zig_zags"]=218, ["knockback_distance_+%"]=219, - ["leap_slam_added_attack_time_by_distance_ms"]=305, + ["leap_slam_added_attack_time_by_distance_ms"]=304, ["lightning_ailment_effect_+%"]=220, ["lightning_damage_+%"]=221, ["lightning_storm_max_number_of_storms"]=222, @@ -8300,27 +8270,29 @@ return { ["number_of_animated_weapons_allowed"]=253, ["number_of_chains"]=249, ["number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed"]=254, - ["off_hand_base_weapon_attack_duration_ms"]=4, - ["off_hand_maximum_added_fire_damage_per_15_shield_armour"]=2, + ["off_hand_base_weapon_attack_duration_ms"]=7, + ["off_hand_maximum_added_fire_damage_per_15_shield_armour"]=4, + ["off_hand_maximum_added_fire_damage_per_15_shield_evasion"]=5, ["off_hand_maximum_added_physical_damage_per_15_shield_armour"]=256, - ["off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=3, + ["off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=6, ["off_hand_maximum_added_physical_damage_per_5_shield_armour"]=257, - ["off_hand_minimum_added_fire_damage_per_15_shield_armour"]=2, + ["off_hand_minimum_added_fire_damage_per_15_shield_armour"]=4, + ["off_hand_minimum_added_fire_damage_per_15_shield_evasion"]=5, ["off_hand_minimum_added_physical_damage_per_15_shield_armour"]=256, - ["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=3, + ["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=6, ["off_hand_minimum_added_physical_damage_per_5_shield_armour"]=257, ["off_hand_weapon_maximum_fire_damage"]=258, - ["off_hand_weapon_maximum_physical_damage"]=1, + ["off_hand_weapon_maximum_physical_damage"]=3, ["off_hand_weapon_minimum_fire_damage"]=258, - ["off_hand_weapon_minimum_physical_damage"]=1, - ["offering_skill_effect_duration_per_corpse"]=25, + ["off_hand_weapon_minimum_physical_damage"]=3, + ["offering_skill_effect_duration_per_corpse"]=28, ["orb_of_storms_base_bolt_frequency_ms"]=259, ["orb_of_storms_base_channelling_bolt_frequency_ms"]=260, ["orb_of_storms_base_maximum_number_of_orbs"]=261, parent="gem_stat_descriptions", ["phys_cascade_trap_base_interval_duration_ms"]=262, ["physical_damage_+%"]=263, - ["physical_damage_+%_per_frenzy_charge"]=17, + ["physical_damage_+%_per_frenzy_charge"]=20, ["placing_traps_cooldown_recovery_+%"]=264, ["poison_duration_is_skill_duration"]=265, ["precision_grants_area_of_effect_+%_final"]=266, @@ -8332,8 +8304,8 @@ return { ["projectile_return_%_chance"]=273, ["projectiles_fork"]=272, ["projectiles_return"]=273, - ["quality_display_arsonist_is_gem"]=74, - ["quality_display_barrage_is_gem"]=186, + ["quality_display_arsonist_is_gem"]=77, + ["quality_display_barrage_is_gem"]=187, ["quick_guard_damage_absorb_limit"]=274, ["quick_guard_damage_absorbed_%"]=274, ["rain_of_arrows_additional_sequences"]=275, @@ -8341,57 +8313,56 @@ return { ["reaver_enrage_base_life_%_degen_per_minute"]=277, ["reaver_enrage_decay_rate_increase_+%_final"]=277, ["reduce_enemy_chaos_resistance_%"]=278, - ["reduce_enemy_dodge_%"]=279, - ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=280, - ["ritual_of_power_maximum_number_of_rituals"]=281, - ["seismic_trap_frequency_+%"]=282, - ["shapeshift_to_bear_added_attack_time_ms"]=283, - ["shapeshift_to_bear_added_cast_time_ms"]=284, - ["shock_duration_+%"]=285, - ["sigil_repeat_frequency_+%"]=37, - ["skill_base_chaos_damage_%_maximum_energy_shield"]=286, - ["skill_base_chaos_damage_%_maximum_life"]=287, - ["skill_effect_duration_+%"]=28, - ["skill_raging_spirit_per_x_radius"]=288, - ["skill_raging_spirits_max_per_action"]=289, - ["snapping_adder_chance_to_release_projectile_when_hit_%"]=290, - ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=291, - ["soulfeast_take_%_maximum_life_as_chaos_damage"]=291, - ["spear_wall_cm_per_spear"]=292, - ["spectral_spiral_weapon_base_number_of_bounces"]=293, - ["spell_cast_time_added_to_cooldown_if_triggered"]=294, - ["spell_damage_+%"]=295, - ["static_strike_number_of_beam_targets"]=296, - ["storm_blade_damage_+%_final_with_two_hand_weapon"]=298, - ["storm_blade_maximum_lightning_damage"]=297, - ["storm_blade_maximum_lightning_damage_from_es_%"]=297, - ["storm_blade_minimum_lightning_damage"]=297, - ["storm_blade_minimum_lightning_damage_from_es_%"]=297, - ["supplementary_stat_container_attack_speed_+%_final"]=11, - ["support_trap_damage_+%_final"]=300, - ["tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback"]=301, - ["tempest_bell_physical_damage_%_as_elemental_per_ailment"]=302, - ["tornado_maximum_number_of_hits"]=24, - ["tornado_only_primary_duration_+%"]=303, - ["tornado_shot_num_of_secondary_projectiles"]=304, - ["total_attack_time_+_ms"]=305, - ["total_cast_time_+_ms"]=306, - ["totems_explode_on_death_for_%_life_as_physical"]=307, - ["totems_regenerate_%_life_per_minute"]=308, - ["trap_damage_+%"]=309, - ["trap_duration_+%"]=310, - ["trap_throwing_speed_+%"]=311, - ["trap_trigger_radius_+%"]=312, - ["unearth_base_corpse_level"]=313, - ["vaal_animate_weapon_minimum_level_requirement"]=40, - ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=315, - ["vaal_lightning_arrow_number_of_redirects"]=314, - ["vaal_storm_call_base_delay_ms"]=316, - ["volatile_dead_base_number_of_corpses_to_consume"]=317, - ["volatile_dead_max_cores_allowed"]=318, - ["volcanic_fissure_base_maximum_number_of_fissures"]=319, - ["warcry_speed_+%"]=320, - ["weapon_elemental_damage_+%"]=321, - ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=322, - ["weapon_trap_total_rotation_%_if_dual_wielding"]=323 + ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=279, + ["ritual_of_power_maximum_number_of_rituals"]=280, + ["seismic_trap_frequency_+%"]=281, + ["shapeshift_to_bear_added_attack_time_ms"]=282, + ["shapeshift_to_bear_added_cast_time_ms"]=283, + ["shock_duration_+%"]=284, + ["sigil_repeat_frequency_+%"]=40, + ["skill_base_chaos_damage_%_maximum_energy_shield"]=285, + ["skill_base_chaos_damage_%_maximum_life"]=286, + ["skill_effect_duration_+%"]=31, + ["skill_raging_spirit_per_x_radius"]=287, + ["skill_raging_spirits_max_per_action"]=288, + ["snapping_adder_chance_to_release_projectile_when_hit_%"]=289, + ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=290, + ["soulfeast_take_%_maximum_life_as_chaos_damage"]=290, + ["spear_wall_cm_per_spear"]=291, + ["spectral_spiral_weapon_base_number_of_bounces"]=292, + ["spell_cast_time_added_to_cooldown_if_triggered"]=293, + ["spell_damage_+%"]=294, + ["static_strike_number_of_beam_targets"]=295, + ["storm_blade_damage_+%_final_with_two_hand_weapon"]=297, + ["storm_blade_maximum_lightning_damage"]=296, + ["storm_blade_maximum_lightning_damage_from_es_%"]=296, + ["storm_blade_minimum_lightning_damage"]=296, + ["storm_blade_minimum_lightning_damage_from_es_%"]=296, + ["supplementary_stat_container_attack_speed_+%_final"]=14, + ["support_trap_damage_+%_final"]=299, + ["tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback"]=300, + ["tempest_bell_physical_damage_%_as_elemental_per_ailment"]=301, + ["tornado_maximum_number_of_hits"]=27, + ["tornado_only_primary_duration_+%"]=302, + ["tornado_shot_num_of_secondary_projectiles"]=303, + ["total_attack_time_+_ms"]=304, + ["total_cast_time_+_ms"]=305, + ["totems_explode_on_death_for_%_life_as_physical"]=306, + ["totems_regenerate_%_life_per_minute"]=307, + ["trap_damage_+%"]=308, + ["trap_duration_+%"]=309, + ["trap_throwing_speed_+%"]=310, + ["trap_trigger_radius_+%"]=311, + ["unearth_base_corpse_level"]=312, + ["vaal_animate_weapon_minimum_level_requirement"]=43, + ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=314, + ["vaal_lightning_arrow_number_of_redirects"]=313, + ["vaal_storm_call_base_delay_ms"]=315, + ["volatile_dead_base_number_of_corpses_to_consume"]=316, + ["volatile_dead_max_cores_allowed"]=317, + ["volcanic_fissure_base_maximum_number_of_fissures"]=318, + ["warcry_speed_+%"]=319, + ["weapon_elemental_damage_+%"]=320, + ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=321, + ["weapon_trap_total_rotation_%_if_dual_wielding"]=322 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua b/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua index 09114e204a..9cd8997d0b 100644 --- a/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua +++ b/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua @@ -502,6 +502,111 @@ return { } }, text="Remembrancing {1} songworthy deeds by the line of Olroth(Vorana-Olroth)\nPassives in radius are Conquered by the Kalguur" + }, + [24]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Amanamu(Amanamu-Ulaman)\nPassives in radius are Conquered by the Abyssals" + }, + [25]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=2, + [2]=2 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Kulemak(Amanamu-Ulaman)\nPassives in radius are Conquered by the Abyssals" + }, + [26]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=3, + [2]=3 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Kurgal(Amanamu-Ulaman)\nPassives in radius are Conquered by the Abyssals" + }, + [27]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=4, + [2]=4 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Tecrod(Amanamu-Ulaman)\nPassives in radius are Conquered by the Abyssals" + }, + [28]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=5, + [2]=5 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Ulaman(Amanamu-Ulaman)\nPassives in radius are Conquered by the Abyssals" } }, stats={ diff --git a/src/Data/StatDescriptions/gem_stat_descriptions.lua b/src/Data/StatDescriptions/gem_stat_descriptions.lua index efef169fc5..90b6bd65b4 100644 --- a/src/Data/StatDescriptions/gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/gem_stat_descriptions.lua @@ -177,7 +177,7 @@ return { [2]="#" } }, - text="Supported Attack Skills deal {0}% more Elemental Damage" + text="Supported Skills deal {0}% more Elemental Attack damage" }, [2]={ [1]={ @@ -190,7 +190,7 @@ return { [2]=-1 } }, - text="Supported Attack Skills deal {0}% less Elemental Damage" + text="Supported Skills deal {0}% less Elemental Attack damage" } }, stats={ @@ -1724,7 +1724,7 @@ return { limit={ [1]={ [1]=1, - [2]=1 + [2]="#" } }, text="Supported Skills Chain {0}% more times" @@ -1967,7 +1967,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage with Hits for each Poison on the Enemy, up to {1}" + text="Supported Skills deal {0}% more Damage with Hits for each Poison on the Enemy, up to {1}%" }, [2]={ [1]={ @@ -1984,7 +1984,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% less Damage with Hits for each Poison on the Enemy, up to {1}" + text="Supported Skills deal {0}% less Damage with Hits for each Poison on the Enemy, up to {1}%" } }, stats={ @@ -4073,39 +4073,6 @@ return { } }, [159]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Withered lasts {0} second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Withered lasts {0} seconds" - } - }, - stats={ - [1]="active_skill_withered_base_duration_ms" - } - }, - [160]={ [1]={ [1]={ [1]={ @@ -4138,7 +4105,7 @@ return { [1]="support_withered_base_duration_ms" } }, - [161]={ + [160]={ [1]={ [1]={ limit={ @@ -4224,7 +4191,77 @@ return { [2]="support_ruthless_big_hit_stun_damage_+%_final" } }, + [161]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies affected by Curses from Supported Skills are Pacified for the final {0}% of Supported Curse's duration" + } + }, + stats={ + [1]="curse_pacify_for_final_%_of_duration" + } + }, [162]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills Consume Ignite on Enemies they Hit, creating a Flame Pillar" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills Consume Ignite on Enemies they Hit, creating {0} Flame Pillars" + } + }, + stats={ + [1]="pillar_of_flame_consume_ignite_to_create_X_pillars" + } + }, + [163]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Totems created by Supported\nSkills have {0}% more maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Totems created by Supported\nSkills have {0}% less maximum Life" + } + }, + stats={ + [1]="support_totem_life_+%_final" + } + }, + [164]={ [1]={ [1]={ limit={ @@ -4249,7 +4286,7 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [163]={ + [165]={ [1]={ [1]={ limit={ @@ -4278,7 +4315,7 @@ return { [1]="chill_effect_+%" } }, - [164]={ + [166]={ [1]={ [1]={ limit={ @@ -4307,7 +4344,7 @@ return { [1]="chill_duration_+%" } }, - [165]={ + [167]={ [1]={ [1]={ limit={ @@ -4336,7 +4373,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [166]={ + [168]={ [1]={ [1]={ limit={ @@ -4365,7 +4402,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [167]={ + [169]={ [1]={ [1]={ limit={ @@ -4381,7 +4418,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [168]={ + [170]={ [1]={ [1]={ limit={ @@ -4397,7 +4434,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [169]={ + [171]={ [1]={ [1]={ limit={ @@ -4413,7 +4450,123 @@ return { [1]="totem_maximum_all_elemental_resistances_%" } }, - [170]={ + [172]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Attack Speed if\nused in Weapon Set I" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Attack Speed if\nused in Seapon Set I" + } + }, + stats={ + [1]="support_rigwald_attack_speed_+%_final_in_weapon_set_one" + } + }, + [173]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage if\nused in Weapon Set I" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage if\nused in Weapon Set I" + } + }, + stats={ + [1]="support_rigwald_damage_+%_final_in_weapon_set_one" + } + }, + [174]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Attack Speed if\nused in Weapon Set II" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Attack Speed if\nused in Weapon Set II" + } + }, + stats={ + [1]="support_rigwald_attack_speed_+%_final_in_weapon_set_two" + } + }, + [175]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage if\nused in Weapon Set II" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage if\nused in Weapon Set II" + } + }, + stats={ + [1]="support_rigwald_damage_+%_final_in_weapon_set_two" + } + }, + [176]={ [1]={ [1]={ [1]={ @@ -4433,7 +4586,7 @@ return { [1]="minion_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [171]={ + [177]={ [1]={ [1]={ limit={ @@ -4462,7 +4615,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [172]={ + [178]={ [1]={ [1]={ [1]={ @@ -4482,7 +4635,7 @@ return { [1]="support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute" } }, - [173]={ + [179]={ [1]={ [1]={ limit={ @@ -4498,7 +4651,7 @@ return { [1]="infernal_legion_minions_have_burning_effect_radius_+" } }, - [174]={ + [180]={ [1]={ [1]={ [1]={ @@ -4518,7 +4671,7 @@ return { [1]="ancestral_slam_interval_duration" } }, - [175]={ + [181]={ [1]={ [1]={ limit={ @@ -4547,7 +4700,7 @@ return { [1]="support_ancestral_slam_big_hit_hit_damage_+%_final" } }, - [176]={ + [182]={ [1]={ [1]={ limit={ @@ -4576,7 +4729,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [177]={ + [183]={ [1]={ [1]={ limit={ @@ -4592,7 +4745,7 @@ return { [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [178]={ + [184]={ [1]={ [1]={ limit={ @@ -4621,7 +4774,7 @@ return { [1]="elemental_damage_+%_final_per_5_lowest_resonance" } }, - [179]={ + [185]={ [1]={ [1]={ limit={ @@ -4637,7 +4790,7 @@ return { [1]="damage_penetrates_%_elemental_resistances_while_all_resonance_is_25" } }, - [180]={ + [186]={ [1]={ [1]={ limit={ @@ -4666,7 +4819,7 @@ return { [1]="attack_and_cast_speed_+%_while_all_resonance_is_at_least_25" } }, - [181]={ + [187]={ [1]={ [1]={ limit={ @@ -4682,23 +4835,106 @@ return { [1]="hits_grant_cruelty" } }, - [182]={ + [188]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, + [2]=1 + } + }, + text="Supported Skills' Fissures branch branch {1} time" + }, + [2]={ + limit={ + [1]={ + [1]=2, [2]="#" } }, - text="Supported Skills Cost {0:+d} Mana" + text="Supported Skills' Fissures branch {0} times" } }, stats={ - [1]="base_mana_cost_+" + [1]="number_of_branching_fissures" } }, - [183]={ + [189]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills' Branched Fissures deal {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills' Branched Fissures deal {0}% less damage" + } + }, + stats={ + [1]="branching_fissure_damage_+%_final" + } + }, + [190]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills' Branched Fissures have {0}% more area of effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills' Branched Fissures have {0}% less area of effect" + } + }, + stats={ + [1]="branching_fissure_area_of_effect_+%_final" + } + }, + [191]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Cost {0:+d} Mana" + } + }, + stats={ + [1]="base_mana_cost_+" + } + }, + [192]={ [1]={ [1]={ limit={ @@ -4714,7 +4950,23 @@ return { [1]="global_cannot_crit" } }, - [184]={ + [193]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Projectiles from Supported Skills Pierce all Targets" + } + }, + stats={ + [1]="always_pierce" + } + }, + [194]={ [1]={ [1]={ limit={ @@ -4730,7 +4982,23 @@ return { [1]="skill_uncapped_combo_counter" } }, - [185]={ + [195]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills indicate one of four directions\nIndicated direction changes when an Attack with Supported Skill matches indicated direction" + } + }, + stats={ + [1]="support_called_shots_enable_directional_buff" + } + }, + [196]={ [1]={ [1]={ limit={ @@ -4755,7 +5023,7 @@ return { [1]="unsteady_tempo_evasion_broken_as_%_of_life_on_first_hit" } }, - [186]={ + [197]={ [1]={ [1]={ limit={ @@ -4784,7 +5052,7 @@ return { [1]="unsteady_tempo_critical_strike_chance_+%_final_on_second_hit" } }, - [187]={ + [198]={ [1]={ [1]={ limit={ @@ -4800,7 +5068,7 @@ return { [1]="never_ignite" } }, - [188]={ + [199]={ [1]={ [1]={ limit={ @@ -4816,7 +5084,39 @@ return { [1]="never_shock" } }, - [189]={ + [200]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spells Cast by Totems created by Supported Skills have {0}% increased Cast Speed" + } + }, + stats={ + [1]="totem_skill_cast_speed_+%" + } + }, + [201]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attacks used by Totems created by Supported Skills have {0}% increased Attack Speed" + } + }, + stats={ + [1]="totem_skill_attack_speed_+%" + } + }, + [202]={ [1]={ [1]={ limit={ @@ -4845,7 +5145,7 @@ return { [1]="mark_effect_+%" } }, - [190]={ + [203]={ [1]={ [1]={ limit={ @@ -4874,7 +5174,23 @@ return { [1]="unsteady_tempo_damage_+%_final_on_third_hit" } }, - [191]={ + [204]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chaos Damage from Hits with Supported Skills also Contributes to Shock Chance" + } + }, + stats={ + [1]="chaos_damage_can_shock" + } + }, + [205]={ [1]={ [1]={ limit={ @@ -4890,7 +5206,7 @@ return { [1]="accuracy_rating" } }, - [192]={ + [206]={ [1]={ [1]={ limit={ @@ -4919,7 +5235,7 @@ return { [1]="accuracy_rating_+%" } }, - [193]={ + [207]={ [1]={ [1]={ limit={ @@ -4944,7 +5260,7 @@ return { [1]="active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value" } }, - [194]={ + [208]={ [1]={ [1]={ limit={ @@ -4960,7 +5276,23 @@ return { [1]="active_skill_can_overload" } }, - [195]={ + [209]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Crossbow Ammunition Skills cannot reload" + } + }, + stats={ + [1]="active_skill_cannot_manually_reload" + } + }, + [210]={ [1]={ [1]={ limit={ @@ -4976,7 +5308,7 @@ return { [1]="active_skill_never_freeze_shock_ignite" } }, - [196]={ + [211]={ [1]={ [1]={ limit={ @@ -5001,7 +5333,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [197]={ + [212]={ [1]={ [1]={ limit={ @@ -5017,7 +5349,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [198]={ + [213]={ [1]={ [1]={ limit={ @@ -5046,7 +5378,7 @@ return { [1]="added_damage_+%_final" } }, - [199]={ + [214]={ [1]={ [1]={ [1]={ @@ -5066,7 +5398,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [200]={ + [215]={ [1]={ [1]={ limit={ @@ -5082,7 +5414,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [201]={ + [216]={ [1]={ [1]={ limit={ @@ -5107,7 +5439,7 @@ return { [1]="additional_combo_gain_chance_%" } }, - [202]={ + [217]={ [1]={ [1]={ [1]={ @@ -5127,7 +5459,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [203]={ + [218]={ [1]={ [1]={ [1]={ @@ -5147,7 +5479,23 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [204]={ + [219]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Modifiers granting additional Projectiles instead cause Projectiles from Supported Skills to Chain an additional time from terrain per Projectile they would have gained" + } + }, + stats={ + [1]="additional_projectiles_instead_applies_to_number_of_terrain_chains" + } + }, + [220]={ [1]={ [1]={ limit={ @@ -5194,7 +5542,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [205]={ + [221]={ [1]={ [1]={ limit={ @@ -5223,7 +5571,23 @@ return { [1]="aftershock_area_of_effect_+%_final" } }, - [206]={ + [222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Aftershocks caused by Supported Skills create Jagged Ground" + } + }, + stats={ + [1]="aftershocks_create_jagged_ground" + } + }, + [223]={ [1]={ [1]={ limit={ @@ -5248,7 +5612,7 @@ return { [1]="aggravate_bleeding_on_pin_chance_%" } }, - [207]={ + [224]={ [1]={ [1]={ limit={ @@ -5257,7 +5621,7 @@ return { [2]="#" } }, - text="Ailments inflicted by Supported Skills have {0}% increased Magnitude if you are afflicted with that Ailment when inflicting it" + text="Ailments inflicted by Supported Skills have {0}% more Magnitude if you are afflicted with that Ailment when inflicting it" }, [2]={ [1]={ @@ -5270,14 +5634,14 @@ return { [2]=-1 } }, - text="Ailments inflicted by Supported Skills have {0}% reduced Magnitude if you are afflicted with that Ailment when inflicting it" + text="Ailments inflicted by Supported Skills have {0}% less Magnitude if you are afflicted with that Ailment when inflicting it" } }, stats={ - [1]="ailment_effect_+%_while_afflicted_by_relevant_ailment" + [1]="support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment" } }, - [208]={ + [225]={ [1]={ [1]={ limit={ @@ -5286,7 +5650,7 @@ return { [2]="#" } }, - text="You have {0}% increased Ailment Threshold while Channelling Supported Skills" + text="Ailments inflicted by Supported Skills have {0}% increased Magnitude if you are afflicted with that Ailment when inflicting it" }, [2]={ [1]={ @@ -5299,59 +5663,138 @@ return { [2]=-1 } }, - text="You have {0}% reduced Ailment Threshold while Channelling Supported Skills" + text="Ailments inflicted by Supported Skills have {0}% reduced Magnitude if you are afflicted with that Ailment when inflicting it" } }, stats={ - [1]="ailment_threshold_+%_while_channelling" + [1]="ailment_effect_+%_while_afflicted_by_relevant_ailment" } }, - [209]={ + [226]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="If Supported Skills would gain extra Damage of any Type other than Cold, they gain extra Cold Damage instead" - } - }, - stats={ - [1]="all_damage_gained_as_cold_instead" - } - }, - [210]={ - [1]={ - [1]={ - limit={ + text="You have {0}% increased Ailment Threshold while Channelling Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You have {0}% reduced Ailment Threshold while Channelling Supported Skills" + } + }, + stats={ + [1]="ailment_threshold_+%_while_channelling" + } + }, + [227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="If Supported Skills would gain extra Damage of any Type other than Cold, they gain extra Cold Damage instead" + } + }, + stats={ + [1]="all_damage_gained_as_cold_instead" + } + }, + [228]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]="#", + [2]="#" } }, - text="{0}% increased Effect of Ancestor Totem Buff" - }, - [2]={ + text="Totems created by Supported Skills create a Blood Font with a radius of {1} metres\nAllies in Blood Fonts Leech Life equal to {0}% of Physical Damage dealt by Supported Totem" + } + }, + stats={ + [1]="allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life", + [2]="font_of_blood_radius" + } + }, + [229]={ + [1]={ + [1]={ [1]={ - k="negate", + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Totems created by Supported Skills create a Mana Font with a radius of {1} metres\nAllies in Mana Fonts Leech Mana equal to {0}% of Physical Damage dealt by Supported Totem" + } + }, + stats={ + [1]="allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana", + [2]="font_of_mana_radius" + } + }, + [230]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", v=1 }, + [2]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, limit={ [1]={ + [1]=1, + [2]="#" + }, + [2]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Effect of Ancestor Totem Buff" + text="Totems created by Supported Skills create a Rage Font with a radius of {1} metres\nAllies in Rage Fonts Leech Rage equal to {0}% of Physical Damage dealt by Supported Totem" } }, stats={ - [1]="ancestor_totem_buff_effect_+%" + [1]="allies_in_font_of_rage_radius_leech_permyriad_of_my_physical_damage_as_rage", + [2]="font_of_rage_radius" } }, - [211]={ + [231]={ [1]={ [1]={ limit={ @@ -5360,7 +5803,7 @@ return { [2]="#" } }, - text="{0}% increased Area of Effect with Melee Skills while Totem is Active" + text="{0}% increased Effect of Ancestor Totem Buff" }, [2]={ [1]={ @@ -5373,30 +5816,43 @@ return { [2]=-1 } }, - text="{0}% increased Area of Effect with Melee Skills while Totem is Active" + text="{0}% reduced Effect of Ancestor Totem Buff" } }, stats={ - [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" + [1]="ancestor_totem_buff_effect_+%" } }, - [212]={ + [232]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Strikes are Ancestrally Boosted" + text="{0}% increased Area of Effect with Melee Skills while Totem is Active" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% increased Area of Effect with Melee Skills while Totem is Active" } }, stats={ - [1]="ancestral_aid_X_spirit_strikes_on_reaching_block_count" + [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [213]={ + [233]={ [1]={ [1]={ limit={ @@ -5412,7 +5868,7 @@ return { [1]="ancestral_aid_required_count_of_recent_blocks" } }, - [214]={ + [234]={ [1]={ [1]={ [1]={ @@ -5445,7 +5901,7 @@ return { [1]="ancestral_call_spirit_strike_interval_ms" } }, - [215]={ + [235]={ [1]={ [1]={ limit={ @@ -5474,7 +5930,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [216]={ + [236]={ [1]={ [1]={ limit={ @@ -5490,7 +5946,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_chill" } }, - [217]={ + [237]={ [1]={ [1]={ limit={ @@ -5506,7 +5962,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_freeze" } }, - [218]={ + [238]={ [1]={ [1]={ limit={ @@ -5531,7 +5987,7 @@ return { [1]="apply_X_incision_on_hit" } }, - [219]={ + [239]={ [1]={ [1]={ limit={ @@ -5547,23 +6003,40 @@ return { [1]="apply_attack_projectile_weakness_%_per_1m_knockback" } }, - [220]={ + [240]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Enemies Pacified this way cannot be Pacified again for {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Overpowered applies -{0}% chance to Block Attack and Spell Damage" + text="Enemies Pacified this way cannot be Pacified again for {0} seconds" } }, stats={ - [1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%" + [1]="apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry" } }, - [221]={ + [241]={ [1]={ [1]={ limit={ @@ -5592,7 +6065,7 @@ return { [1]="area_damage_+%" } }, - [222]={ + [242]={ [1]={ [1]={ limit={ @@ -5608,7 +6081,7 @@ return { [1]="armour_break_for_%_of_poison_damage_over_poison_duration" } }, - [223]={ + [243]={ [1]={ [1]={ limit={ @@ -5624,7 +6097,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [224]={ + [244]={ [1]={ [1]={ limit={ @@ -5640,7 +6113,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies" } }, - [225]={ + [245]={ [1]={ [1]={ limit={ @@ -5656,7 +6129,7 @@ return { [1]="armour_+%_while_performing_action_per_250_ms_attack_time" } }, - [226]={ + [246]={ [1]={ [1]={ limit={ @@ -5677,7 +6150,7 @@ return { [2]="attack_maximum_added_physical_damage_as_%_of_strength" } }, - [227]={ + [247]={ [1]={ [1]={ limit={ @@ -5706,7 +6179,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [228]={ + [248]={ [1]={ [1]={ limit={ @@ -5735,7 +6208,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [229]={ + [249]={ [1]={ [1]={ limit={ @@ -5764,7 +6237,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [230]={ + [250]={ [1]={ [1]={ limit={ @@ -5780,7 +6253,7 @@ return { [1]="attack_damage_is_lucky_if_surrounded" } }, - [231]={ + [251]={ [1]={ [1]={ limit={ @@ -5809,7 +6282,7 @@ return { [1]="attack_damage_+%" } }, - [232]={ + [252]={ [1]={ [1]={ limit={ @@ -5838,7 +6311,7 @@ return { [1]="attack_damage_+%_per_1000_accuracy_rating" } }, - [233]={ + [253]={ [1]={ [1]={ limit={ @@ -5859,7 +6332,7 @@ return { [2]="attack_maximum_added_physical_damage_per_10_rage" } }, - [234]={ + [254]={ [1]={ [1]={ limit={ @@ -5880,7 +6353,7 @@ return { [2]="attack_maximum_added_physical_damage_with_at_least_10_rage" } }, - [235]={ + [255]={ [1]={ [1]={ limit={ @@ -5901,7 +6374,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [236]={ + [256]={ [1]={ [1]={ limit={ @@ -5930,7 +6403,7 @@ return { [1]="attack_speed_+%" } }, - [237]={ + [257]={ [1]={ [1]={ limit={ @@ -5959,7 +6432,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [238]={ + [258]={ [1]={ [1]={ limit={ @@ -5968,7 +6441,7 @@ return { [2]="#" } }, - text="{0}% increased Attack speed while total Resonance is over 250" + text="Supported Skills have {0}% increased Attack Speed while you have at least 20 Rage" }, [2]={ [1]={ @@ -5981,68 +6454,55 @@ return { [2]=-1 } }, - text="{0}% reduced Attack speed while total Resonance is over 250" + text="Supported Skills have {0}% reduced Attack Speed while you have at least 20 Rage" } }, stats={ - [1]="trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant" + [1]="attack_speed_+%_with_atleast_20_rage" } }, - [239]={ + [259]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" + [2]=99 } }, - text="Supported Skills have {0}% increased Attack Speed while you have at least 20 Rage" + text="Supported Skills have {0}% chance to Impale Enemies on Hit" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]=100, + [2]="#" } }, - text="Supported Skills have {0}% reduced Attack Speed while you have at least 20 Rage" + text="Supported Skills always Impale Enemies on Hit" } }, stats={ - [1]="attack_speed_+%_with_atleast_20_rage" + [1]="attacks_impale_on_hit_%_chance" } }, - [240]={ + [260]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=99 - } - }, - text="Supported Skills have {0}% chance to Impale Enemies on Hit" - }, - [2]={ - limit={ - [1]={ - [1]=100, [2]="#" } }, - text="Supported Skills always Impale Enemies on Hit" + text="Attack Critical Hit Chance with Supported Skills Bifurcates" } }, stats={ - [1]="attacks_impale_on_hit_%_chance" + [1]="attacks_roll_crits_twice" } }, - [241]={ + [261]={ [1]={ [1]={ limit={ @@ -6067,7 +6527,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [242]={ + [262]={ [1]={ [1]={ limit={ @@ -6096,7 +6556,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [243]={ + [263]={ [1]={ [1]={ limit={ @@ -6125,7 +6585,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [244]={ + [264]={ [1]={ [1]={ limit={ @@ -6141,7 +6601,7 @@ return { [1]="base_bleed_chance_is_poison_chance_instead" } }, - [245]={ + [265]={ [1]={ [1]={ limit={ @@ -6170,7 +6630,7 @@ return { [1]="base_bleed_duration_+%" } }, - [246]={ + [266]={ [1]={ [1]={ limit={ @@ -6199,7 +6659,7 @@ return { [1]="base_cast_speed_+%" } }, - [247]={ + [267]={ [1]={ [1]={ limit={ @@ -6215,7 +6675,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [248]={ + [268]={ [1]={ [1]={ limit={ @@ -6262,48 +6722,23 @@ return { [2]="always_freeze" } }, - [249]={ + [269]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=99 - } - }, - text="Supported Skills have {0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, + [1]="#", [2]="#" } }, - text="Supported Skills always Ignite" + text="Supported Skills have {}% chance to inflict Bleeding" } }, stats={ - [1]="base_chance_to_ignite_%" + [1]="base_chance_to_inflict_bleeding_%" } }, - [250]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills have {}% chance to inflict Bleeding" - } - }, - stats={ - [1]="base_chance_to_inflict_bleeding_%" - } - }, - [251]={ + [270]={ [1]={ [1]={ limit={ @@ -6328,7 +6763,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [252]={ + [271]={ [1]={ [1]={ limit={ @@ -6353,7 +6788,23 @@ return { [1]="base_chance_to_shock_%" } }, - [253]={ + [272]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chaos Damage from Hits with Supported Skills also Contributes to Flammability and Ignite Magnitudes" + } + }, + stats={ + [1]="base_chaos_damage_can_ignite" + } + }, + [273]={ [1]={ [1]={ [1]={ @@ -6386,7 +6837,7 @@ return { [1]="base_combo_stacks_decay_delay_ms" } }, - [254]={ + [274]={ [1]={ [1]={ limit={ @@ -6402,7 +6853,7 @@ return { [1]="base_consume_enemy_freeze_on_hit" } }, - [255]={ + [275]={ [1]={ [1]={ limit={ @@ -6418,7 +6869,7 @@ return { [1]="base_consume_enemy_shock_on_hit" } }, - [256]={ + [276]={ [1]={ [1]={ [1]={ @@ -6438,7 +6889,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [257]={ + [277]={ [1]={ [1]={ limit={ @@ -6467,7 +6918,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [258]={ + [278]={ [1]={ [1]={ limit={ @@ -6496,7 +6947,7 @@ return { [1]="base_cooldown_speed_+%_final" } }, - [259]={ + [279]={ [1]={ [1]={ limit={ @@ -6525,7 +6976,7 @@ return { [1]="base_curse_delay_+%" } }, - [260]={ + [280]={ [1]={ [1]={ limit={ @@ -6554,7 +7005,7 @@ return { [1]="base_curse_duration_+%" } }, - [261]={ + [281]={ [1]={ [1]={ limit={ @@ -6583,7 +7034,7 @@ return { [1]="base_damage_+%_while_an_ailment_on_you" } }, - [262]={ + [282]={ [1]={ [1]={ limit={ @@ -6599,7 +7050,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [263]={ + [283]={ [1]={ [1]={ limit={ @@ -6628,7 +7079,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [264]={ + [284]={ [1]={ [1]={ limit={ @@ -6644,7 +7095,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [265]={ + [285]={ [1]={ [1]={ limit={ @@ -6669,7 +7120,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [266]={ + [286]={ [1]={ [1]={ limit={ @@ -6694,7 +7145,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [267]={ + [287]={ [1]={ [1]={ limit={ @@ -6703,7 +7154,7 @@ return { [2]=99 } }, - text="Supported Skills have {0}% chance to inflict Lightning Exposure on Hit" + text="Supported Skills have {0}% chance to inflict Exposure on Hit" }, [2]={ limit={ @@ -6712,14 +7163,14 @@ return { [2]="#" } }, - text="Supported Skills Inflict Lightning Exposure on Hit" + text="Supported Skills Inflict Exposure on Hit" } }, stats={ [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [268]={ + [288]={ [1]={ [1]={ limit={ @@ -6748,7 +7199,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [269]={ + [289]={ [1]={ [1]={ limit={ @@ -6777,7 +7228,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [270]={ + [290]={ [1]={ [1]={ [1]={ @@ -6797,7 +7248,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [271]={ + [291]={ [1]={ [1]={ limit={ @@ -6826,7 +7277,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [272]={ + [292]={ [1]={ [1]={ limit={ @@ -6855,7 +7306,7 @@ return { [1]="base_life_reservation_+%" } }, - [273]={ + [293]={ [1]={ [1]={ limit={ @@ -6871,7 +7322,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [274]={ + [294]={ [1]={ [1]={ limit={ @@ -6887,7 +7338,7 @@ return { [1]="base_limit_+" } }, - [275]={ + [295]={ [1]={ [1]={ [1]={ @@ -6907,7 +7358,7 @@ return { [1]="base_mana_leech_from_physical_attack_damage_permyriad" } }, - [276]={ + [296]={ [1]={ [1]={ limit={ @@ -6936,7 +7387,7 @@ return { [1]="base_mana_reservation_+%" } }, - [277]={ + [297]={ [1]={ [1]={ [1]={ @@ -6956,7 +7407,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [278]={ + [298]={ [1]={ [1]={ limit={ @@ -6981,7 +7432,7 @@ return { [1]="base_number_of_additional_fissures" } }, - [279]={ + [299]={ [1]={ [1]={ limit={ @@ -7006,7 +7457,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [280]={ + [300]={ [1]={ [1]={ [1]={ @@ -7039,7 +7490,7 @@ return { [1]="base_overkill_icy_vortex_duration_ms" } }, - [281]={ + [301]={ [1]={ [1]={ limit={ @@ -7055,7 +7506,7 @@ return { [1]="base_poison_chance_is_bleed_chance_instead" } }, - [282]={ + [302]={ [1]={ [1]={ limit={ @@ -7084,7 +7535,7 @@ return { [1]="base_poison_duration_+%" } }, - [283]={ + [303]={ [1]={ [1]={ limit={ @@ -7113,7 +7564,7 @@ return { [1]="base_projectile_speed_+%" } }, - [284]={ + [304]={ [1]={ [1]={ [1]={ @@ -7146,7 +7597,7 @@ return { [1]="base_remnant_duration_ms" } }, - [285]={ + [305]={ [1]={ [1]={ limit={ @@ -7175,7 +7626,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [286]={ + [306]={ [1]={ [1]={ limit={ @@ -7204,7 +7655,7 @@ return { [1]="base_reservation_+%" } }, - [287]={ + [307]={ [1]={ [1]={ limit={ @@ -7220,7 +7671,7 @@ return { [1]="base_skill_no_reservation" } }, - [288]={ + [308]={ [1]={ [1]={ limit={ @@ -7249,7 +7700,7 @@ return { [1]="base_spell_cooldown_speed_+%" } }, - [289]={ + [309]={ [1]={ [1]={ limit={ @@ -7278,7 +7729,7 @@ return { [1]="base_stun_duration_+%" } }, - [290]={ + [310]={ [1]={ [1]={ limit={ @@ -7307,7 +7758,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [291]={ + [311]={ [1]={ [1]={ limit={ @@ -7323,7 +7774,7 @@ return { [1]="bleed_chance_%_vs_full_life_enemy" } }, - [292]={ + [312]={ [1]={ [1]={ limit={ @@ -7352,7 +7803,7 @@ return { [1]="bleed_chance_+%_vs_full_life_enemy" } }, - [293]={ + [313]={ [1]={ [1]={ limit={ @@ -7429,7 +7880,7 @@ return { [3]="cannot_cause_bleeding" } }, - [294]={ + [314]={ [1]={ [1]={ limit={ @@ -7458,7 +7909,7 @@ return { [1]="bleeding_monsters_attack_speed_+%" } }, - [295]={ + [315]={ [1]={ [1]={ limit={ @@ -7487,7 +7938,36 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [296]={ + [316]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Blind inflicted with Supported Skills has {0}% increased Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Blind inflicted with Supported Skills has {0}% reduced Effect" + } + }, + stats={ + [1]="blind_effect_+%" + } + }, + [317]={ [1]={ [1]={ limit={ @@ -7516,7 +7996,7 @@ return { [1]="blood_magic_skill_life_cost_+%_final" } }, - [297]={ + [318]={ [1]={ [1]={ limit={ @@ -7532,7 +8012,7 @@ return { [1]="blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life" } }, - [298]={ + [319]={ [1]={ [1]={ limit={ @@ -7557,7 +8037,7 @@ return { [1]="break_armour_equal_to_%_of_dexterity_vs_parried_enemies" } }, - [299]={ + [320]={ [1]={ [1]={ limit={ @@ -7586,7 +8066,23 @@ return { [1]="burn_damage_+%" } }, - [300]={ + [321]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills can only Damage Low Life Enemies" + } + }, + stats={ + [1]="can_only_damage_low_life_enemies" + } + }, + [322]={ [1]={ [1]={ limit={ @@ -7602,7 +8098,7 @@ return { [1]="cannot_break_armour" } }, - [301]={ + [323]={ [1]={ [1]={ limit={ @@ -7618,7 +8114,7 @@ return { [1]="cannot_cause_stun_but_allow_stun_buildup" } }, - [302]={ + [324]={ [1]={ [1]={ limit={ @@ -7634,7 +8130,23 @@ return { [1]="cannot_consume_impale" } }, - [303]={ + [325]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills cannot consume Infusions" + } + }, + stats={ + [1]="cannot_consume_infusions" + } + }, + [326]={ [1]={ [1]={ limit={ @@ -7650,7 +8162,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [304]={ + [327]={ [1]={ [1]={ limit={ @@ -7659,14 +8171,14 @@ return { [2]="#" } }, - text="Supported Skills cannot inflict Daze buildup\nSupported Skills cannot Daze" + text="Supported Skills cannot inflict Daze" } }, stats={ [1]="cannot_daze" } }, - [305]={ + [328]={ [1]={ [1]={ limit={ @@ -7682,7 +8194,7 @@ return { [1]="cannot_inflict_blind" } }, - [306]={ + [329]={ [1]={ [1]={ limit={ @@ -7698,7 +8210,39 @@ return { [1]="cannot_inflict_maim" } }, - [307]={ + [330]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills cannot kill Enemies with Hits" + } + }, + stats={ + [1]="cannot_kill_enemies_with_hits" + } + }, + [331]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Always Hit Enemies on full Life" + } + }, + stats={ + [1]="cannot_miss_against_full_life_enemies" + } + }, + [332]={ [1]={ [1]={ limit={ @@ -7714,36 +8258,45 @@ return { [1]="cannot_pin" } }, - [308]={ + [333]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Supported Skills require {0}% increased amount of Damage taken to Trigger" + text="Spells you cast which affect an area around you or a targeted location also affect an area around Supported Offerings\nSpells deal {1}% more Damage when affecting areas around Offerings this way" }, [2]={ [1]={ k="negate", - v=1 + v=2 }, limit={ [1]={ + [1]=1, + [2]="#" + }, + [2]={ [1]="#", [2]=-1 } }, - text="Supported Skills require {0}% reduced amount of Damage taken to Trigger" + text="Spells you cast which affect an area around you or a targeted location also also affect an area around Supported Offerings\nSpells deal {1}% less Damage when affecting areas around Offerings this way" } }, stats={ - [1]="cast_when_damage_taken_trigger_threshold_+%" + [1]="cascadeable_spells_occur_from_offering", + [2]="cascadeable_offering_support_offering_casted_spell_damage_+%_final" } }, - [309]={ + [334]={ [1]={ [1]={ limit={ @@ -7752,7 +8305,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased Chaining range" + text="Supported Skills have {0}% increased Cast Speed for each different Spell you've Cast in the last eight seconds" }, [2]={ [1]={ @@ -7765,55 +8318,165 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% reduced Chaining range" + text="Supported Skills have {0}% reduced Cast Speed for each different Spell you've Cast in the last eight seconds" } }, stats={ - [1]="chaining_range_+%" + [1]="cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds" } }, - [310]={ + [335]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Skills have {}% chance for Coin Shower on Kill" - } - }, - stats={ - [1]="chance_for_coin_shower_on_kill_%" - } - }, - [311]={ + text="Supported Skills have {0}% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% reduced Cast Speed for each different Non-Instant Spell you've Cast Recently" + } + }, + stats={ + [1]="cast_speed_+%_per_num_unique_spells_cast_recently" + } + }, + [336]={ [1]={ [1]={ limit={ [1]={ - [1]=100, - [2]=100 + [1]=1, + [2]="#" + } + }, + text="{0}% of increases and reductions to Cast speed also apply to Projectile Speed for Supported Skills" + } + }, + stats={ + [1]="cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value" + } + }, + [337]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills require {0}% increased amount of Damage taken to Trigger" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills require {0}% reduced amount of Damage taken to Trigger" + } + }, + stats={ + [1]="cast_when_damage_taken_trigger_threshold_+%" + } + }, + [338]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" } }, - text="Attacks Empowered by Supported Skills do not lower Empowerment count" + text="Supported Skills have {0}% increased Chaining range" }, [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% reduced Chaining range" + } + }, + stats={ + [1]="chaining_range_+%" + } + }, + [339]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to gain a Power Charge when expending Combo with Supported Skills per Combo expended\nThis chance can Exceed 100%" + } + }, + stats={ + [1]="chance_%_to_gain_power_charges_per_combo_spent" + } + }, + [340]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills have {}% chance for Coin Shower on Kill" + } + }, + stats={ + [1]="chance_for_coin_shower_on_kill_%" + } + }, + [341]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Attacks Empowered by Supported Skills have {0}% chance to not lower Empowerment count" + text="Supported Skills have {0}% chance to not count Attacks they Empower" } }, stats={ [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [312]={ + [342]={ [1]={ [1]={ limit={ @@ -7838,7 +8501,23 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [313]={ + [343]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for Supported Skills to create an additional Remnant" + } + }, + stats={ + [1]="chance_%_to_create_additional_remnant" + } + }, + [344]={ [1]={ [1]={ limit={ @@ -7863,7 +8542,57 @@ return { [1]="chance_%_to_double_effect_of_removing_charges" } }, - [314]={ + [345]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="DNT {0}% chance to gain an Abyssal Monster Modifier when a Minion from Supported Skills dies\nMaximum 3 Abyssal Monster Modifiers gained this way" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="DNT Gain an Abyssal Monster Modifier when a Minion from Supported Skills dies\nMaximum 3 Abyssal Monster Modifiers gained this way" + } + }, + stats={ + [1]="chance_%_to_gain_abyssal_modifier_on_minion_death" + } + }, + [346]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to gain Flame Archon on Igniting an Enemy with Supported Skills" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Gain Flame Archon on Igniting an Enemy with Supported Skills" + } + }, + stats={ + [1]="gain_archon_fire_when_you_ignite_enemy_chance_%" + } + }, + [347]={ [1]={ [1]={ limit={ @@ -7892,7 +8621,7 @@ return { [1]="chance_to_aftershock_+%_per_250_ms_attack_time" } }, - [315]={ + [348]={ [1]={ [1]={ limit={ @@ -7908,7 +8637,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [316]={ + [349]={ [1]={ [1]={ limit={ @@ -7933,7 +8662,7 @@ return { [1]="chance_to_chain_from_shocked_enemy_%" } }, - [317]={ + [350]={ [1]={ [1]={ limit={ @@ -7958,7 +8687,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [318]={ + [351]={ [1]={ [1]={ limit={ @@ -7974,7 +8703,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [319]={ + [352]={ [1]={ [1]={ limit={ @@ -7990,7 +8719,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [320]={ + [353]={ [1]={ [1]={ limit={ @@ -8015,7 +8744,7 @@ return { [1]="chance_to_fork_from_frozen_enemy_%" } }, - [321]={ + [354]={ [1]={ [1]={ limit={ @@ -8040,7 +8769,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [322]={ + [355]={ [1]={ [1]={ limit={ @@ -8049,7 +8778,7 @@ return { [2]=99 } }, - text="Supported Skills have {0}% chance to Freeze, Shock and Ignite" + text="Supported Skills have {0}% chance to\ngrant an additional Charge" }, [2]={ limit={ @@ -8058,14 +8787,14 @@ return { [2]="#" } }, - text="Supported Skills always Freeze, Shock and Ignite" + text="Supported Skills grant an additional Charge" } }, stats={ - [1]="chance_to_freeze_shock_ignite_%" + [1]="chance_to_gain_1_more_charge_%" } }, - [323]={ + [356]={ [1]={ [1]={ limit={ @@ -8074,7 +8803,7 @@ return { [2]=99 } }, - text="Supported Skills have {0}% chance to\ngrant an additional Charge" + text="Supported Skills have {0}% chance to\ngrant an additional random Charge" }, [2]={ limit={ @@ -8083,14 +8812,14 @@ return { [2]="#" } }, - text="Supported Skills grant an additional Charge" + text="Supported Skills grant an additional random Charge" } }, stats={ - [1]="chance_to_gain_1_more_charge_%" + [1]="chance_to_gain_1_more_random_charge_%" } }, - [324]={ + [357]={ [1]={ [1]={ limit={ @@ -8115,7 +8844,7 @@ return { [1]="chance_to_gain_endurance_charge_on_armour_break_%" } }, - [325]={ + [358]={ [1]={ [1]={ limit={ @@ -8124,7 +8853,7 @@ return { [2]=99 } }, - text="Supported Skills have {0}% chance to gain a Frenzy Charge on Killing a Frozen Enemy" + text="{0}% chance to gain an Endurance Charge when Heavily Stunning a non-Unique Enemy with Supported Skills" }, [2]={ limit={ @@ -8133,46 +8862,39 @@ return { [2]="#" } }, - text="Supported Skills gain a Frenzy Charge on Killing a Frozen Enemy" + text="Gain an Endurance Charge when Heavily Stunning a non-Unique Enemy with Supported Skills" } }, stats={ - [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" + [1]="chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%" } }, - [326]={ + [359]={ [1]={ [1]={ limit={ [1]={ - [1]="#", - [2]="#" + [1]=1, + [2]=99 } }, - text="Hexes applied by Supported Curse Skills have {0}% chance to affect Hexproof Enemies" - } - }, - stats={ - [1]="chance_to_ignore_hexproof_%" - } - }, - [327]={ - [1]={ - [1]={ + text="{0}% chance to gain an Endurance Charge when hitting an Enemy with Supported Skill when Perfectly Timed" + }, + [2]={ limit={ [1]={ - [1]="#", + [1]=100, [2]="#" } }, - text="Supported Skills have {0}% chance to inflict an additional Impale on Enemies they Impale" + text="Gain an Endurance Charge when hitting an Enemy with Supported Skill when Perfectly Timed" } }, stats={ - [1]="chance_to_inflict_additional_impale_%" + [1]="chance_to_gain_endurance_charge_on_perfect_timing_hit_%" } }, - [328]={ + [360]={ [1]={ [1]={ limit={ @@ -8181,7 +8903,7 @@ return { [2]=99 } }, - text="Supported Skills have {0}% chance to Intimidate Enemies for 4 seconds on Hit" + text="Supported Skills have {0}% chance to gain a Frenzy Charge on Killing a Frozen Enemy" }, [2]={ limit={ @@ -8190,39 +8912,112 @@ return { [2]="#" } }, - text="Supported Skills Intimidate Enemies for 4 seconds on Hit" + text="Supported Skills gain a Frenzy Charge on Killing a Frozen Enemy" } }, stats={ - [1]="chance_to_intimidate_on_hit_%" + [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [329]={ + [361]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=99 - } - }, - text="Corpses consumed by Supported Skills have {0}% chance to not be destroyed" - }, - [2]={ - limit={ - [1]={ - [1]=100, + [1]="#", [2]="#" } }, - text="Corpses consumed by Supported Skills are not destroyed" + text="Hexes applied by Supported Curse Skills have {0}% chance to affect Hexproof Enemies" + } + }, + stats={ + [1]="chance_to_ignore_hexproof_%" + } + }, + [362]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills have {0}% chance to inflict an additional Impale on Enemies they Impale" + } + }, + stats={ + [1]="chance_to_inflict_additional_impale_%" + } + }, + [363]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance to Intimidate Enemies for 4 seconds on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills Intimidate Enemies for 4 seconds on Hit" + } + }, + stats={ + [1]="chance_to_intimidate_on_hit_%" + } + }, + [364]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to load a bolt into all Crossbow skills on dealing a Killing Blow with Supported Skill" + } + }, + stats={ + [1]="chance_to_load_a_bolt_on_killing_an_enemy_%" + } + }, + [365]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Corpses consumed by Supported Skills have {0}% chance to not be destroyed" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Corpses consumed by Supported Skills are not destroyed" } }, stats={ [1]="base_chance_to_not_consume_corpse_%" } }, - [330]={ + [366]={ [1]={ [1]={ limit={ @@ -8247,7 +9042,7 @@ return { [1]="chance_to_pierce_ignited_enemy_%" } }, - [331]={ + [367]={ [1]={ [1]={ limit={ @@ -8263,7 +9058,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [332]={ + [368]={ [1]={ [1]={ limit={ @@ -8288,7 +9083,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [333]={ + [369]={ [1]={ [1]={ limit={ @@ -8313,7 +9108,23 @@ return { [1]="chance_to_trigger_fiery_death_on_ignited_enemy_death_%" } }, - [334]={ + [370]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Living Lightning on dealing Lightning Damage with Supported Skill" + } + }, + stats={ + [1]="supported_skill_triggers_living_lightning_on_dealing_lightning_damage" + } + }, + [371]={ [1]={ [1]={ limit={ @@ -8338,7 +9149,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [335]={ + [372]={ [1]={ [1]={ limit={ @@ -8367,7 +9178,39 @@ return { [1]="channelled_skill_damage_+%" } }, - [336]={ + [373]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Break Armour equal to {0}% of Chaos Damage dealt by Supported Skills" + } + }, + stats={ + [1]="chaos_damage_%_dealt_as_armour_break" + } + }, + [374]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chaos Damage from Hits with Supported Skills also Contributes to Freeze Buildup" + } + }, + stats={ + [1]="chaos_damage_can_freeze" + } + }, + [375]={ [1]={ [1]={ limit={ @@ -8396,7 +9239,7 @@ return { [1]="chaos_damage_+%" } }, - [337]={ + [376]={ [1]={ [1]={ limit={ @@ -8412,7 +9255,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [338]={ + [377]={ [1]={ [1]={ limit={ @@ -8441,7 +9284,7 @@ return { [1]="chilled_ground_applies_%_freeze_multiplier_taken" } }, - [339]={ + [378]={ [1]={ [1]={ [1]={ @@ -8461,7 +9304,7 @@ return { [1]="chilling_ice_create_chilled_ground_on_freeze_base_duration_ms" } }, - [340]={ + [379]={ [1]={ [1]={ limit={ @@ -8490,7 +9333,23 @@ return { [1]="cold_ailment_effect_+%" } }, - [341]={ + [380]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills determine Impale Magnitude from Cold damage as well as Physical damage" + } + }, + stats={ + [1]="cold_damage_can_impale" + } + }, + [381]={ [1]={ [1]={ limit={ @@ -8519,7 +9378,7 @@ return { [1]="cold_damage_+%" } }, - [342]={ + [382]={ [1]={ [1]={ limit={ @@ -8548,7 +9407,7 @@ return { [1]="combat_rush_effect_+%" } }, - [343]={ + [383]={ [1]={ [1]={ limit={ @@ -8577,7 +9436,7 @@ return { [1]="combo_falloff_speed_+%" } }, - [344]={ + [384]={ [1]={ [1]={ limit={ @@ -8593,7 +9452,7 @@ return { [1]="companion_takes_%_damage_before_you_from_support" } }, - [345]={ + [385]={ [1]={ [1]={ [1]={ @@ -8669,7 +9528,7 @@ return { [2]="conditional_skill_additional_usages_duration_ms" } }, - [346]={ + [386]={ [1]={ [1]={ limit={ @@ -8685,7 +9544,7 @@ return { [1]="consume_armour_break_to_trigger_battershout_explosion" } }, - [347]={ + [387]={ [1]={ [1]={ limit={ @@ -8710,7 +9569,7 @@ return { [1]="consume_bleed_to_create_X_haemocrystals" } }, - [348]={ + [388]={ [1]={ [1]={ limit={ @@ -8726,7 +9585,7 @@ return { [1]="consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge" } }, - [349]={ + [389]={ [1]={ [1]={ limit={ @@ -8742,7 +9601,7 @@ return { [1]="consume_enemy_daze_to_always_hit" } }, - [350]={ + [390]={ [1]={ [1]={ limit={ @@ -8758,7 +9617,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [351]={ + [391]={ [1]={ [1]={ limit={ @@ -8774,7 +9633,7 @@ return { [1]="consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge" } }, - [352]={ + [392]={ [1]={ [1]={ limit={ @@ -8790,7 +9649,7 @@ return { [1]="consume_ignite_on_hit" } }, - [353]={ + [393]={ [1]={ [1]={ limit={ @@ -8815,7 +9674,7 @@ return { [1]="consume_maim_on_hit_to_break_%_armour" } }, - [354]={ + [394]={ [1]={ [1]={ limit={ @@ -8840,7 +9699,7 @@ return { [1]="consume_parry_debuff_on_hit_to_gain_X_frenzy_charges" } }, - [355]={ + [395]={ [1]={ [1]={ limit={ @@ -8865,7 +9724,7 @@ return { [1]="cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence" } }, - [356]={ + [396]={ [1]={ [1]={ limit={ @@ -8894,7 +9753,7 @@ return { [1]="cooldown_speed_+%_per_different_ailment_inflicted_recently" } }, - [357]={ + [397]={ [1]={ [1]={ limit={ @@ -8910,7 +9769,7 @@ return { [1]="cooldown_speed_+%_per_highest_power_of_recently_heavy_stunned_enemy" } }, - [358]={ + [398]={ [1]={ [1]={ limit={ @@ -8926,7 +9785,32 @@ return { [1]="cooldown_speed_+%_per_recent_block_up_to_40%" } }, - [359]={ + [399]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Slams create {0} Brambles" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Slams create {0} Brambles" + } + }, + stats={ + [1]="create_X_briar_thorns_on_slam" + } + }, + [400]={ [1]={ [1]={ [1]={ @@ -8977,7 +9861,7 @@ return { [3]="rip_support_buff_base_duration" } }, - [360]={ + [401]={ [1]={ [1]={ limit={ @@ -9006,7 +9890,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [361]={ + [402]={ [1]={ [1]={ limit={ @@ -9035,7 +9919,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [362]={ + [403]={ [1]={ [1]={ limit={ @@ -9064,7 +9948,7 @@ return { [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [363]={ + [404]={ [1]={ [1]={ limit={ @@ -9080,7 +9964,32 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo" } }, - [364]={ + [405]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills Load {0} bolt when you Dodge" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills Load {0} bolts when you Dodge" + } + }, + stats={ + [1]="crossbow_load_x_bolts_on_dodge" + } + }, + [406]={ [1]={ [1]={ limit={ @@ -9089,14 +9998,14 @@ return { [2]="#" } }, - text="Supported Skills reload automatically on\nHeavy Stunning an enemy" + text="Supported Skills reload automatically when Heavy Stunning an enemy with them" } }, stats={ [1]="crossbow_reload_on_heavy_stun" } }, - [365]={ + [407]={ [1]={ [1]={ limit={ @@ -9125,7 +10034,7 @@ return { [1]="cruelty_effect_+%" } }, - [366]={ + [408]={ [1]={ [1]={ limit={ @@ -9150,7 +10059,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [367]={ + [409]={ [1]={ [1]={ limit={ @@ -9166,7 +10075,7 @@ return { [1]="crushing_blow_vs_ignited_and_fully_armour_broken" } }, - [368]={ + [410]={ [1]={ [1]={ limit={ @@ -9182,7 +10091,7 @@ return { [1]="cull_frozen_enemies_on_hit" } }, - [369]={ + [411]={ [1]={ [1]={ limit={ @@ -9191,14 +10100,14 @@ return { [2]="#" } }, - text="Supported Skills create Cursed Ground\nEnemies on the Cursed Ground from a Supported Skill are Cursed while within it\nMaximum 1 area of Cursed Ground" + text="Supported Skills create Cursed Ground\nEnemies on the Cursed Ground from a Supported Skill are Cursed while within it" } }, stats={ [1]="curse_apply_as_curse_zone" } }, - [370]={ + [412]={ [1]={ [1]={ limit={ @@ -9227,7 +10136,55 @@ return { [1]="curse_area_of_effect_+%" } }, - [371]={ + [413]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curses inflicted by Supported Skills ignore Curse limit" + } + }, + stats={ + [1]="curse_ignores_curse_limit" + } + }, + [414]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cursed Ground created by Supported Skills counts as a Hazard" + } + }, + stats={ + [1]="curse_zones_are_hazards" + } + }, + [415]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curses inflicted by Supported Skills are reflected back to you" + } + }, + stats={ + [1]="curses_reflected_to_self" + } + }, + [416]={ [1]={ [1]={ limit={ @@ -9256,7 +10213,7 @@ return { [1]="damage_over_time_+%" } }, - [372]={ + [417]={ [1]={ [1]={ limit={ @@ -9285,7 +10242,7 @@ return { [1]="damage_+%" } }, - [373]={ + [418]={ [1]={ [1]={ limit={ @@ -9314,7 +10271,7 @@ return { [1]="damage_+%_for_non_minions" } }, - [374]={ + [419]={ [1]={ [1]={ limit={ @@ -9343,7 +10300,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [375]={ + [420]={ [1]={ [1]={ limit={ @@ -9372,7 +10329,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [376]={ + [421]={ [1]={ [1]={ limit={ @@ -9401,7 +10358,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [377]={ + [422]={ [1]={ [1]={ limit={ @@ -9430,7 +10387,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [378]={ + [423]={ [1]={ [1]={ limit={ @@ -9459,7 +10416,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [379]={ + [424]={ [1]={ [1]={ limit={ @@ -9488,7 +10445,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [380]={ + [425]={ [1]={ [1]={ limit={ @@ -9517,7 +10474,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [381]={ + [426]={ [1]={ [1]={ limit={ @@ -9546,7 +10503,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [382]={ + [427]={ [1]={ [1]={ limit={ @@ -9575,7 +10532,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [383]={ + [428]={ [1]={ [1]={ limit={ @@ -9604,7 +10561,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [384]={ + [429]={ [1]={ [1]={ limit={ @@ -9633,7 +10590,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [385]={ + [430]={ [1]={ [1]={ limit={ @@ -9662,7 +10619,7 @@ return { [1]="damage_+%_while_an_ailment_on_you" } }, - [386]={ + [431]={ [1]={ [1]={ limit={ @@ -9691,7 +10648,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [387]={ + [432]={ [1]={ [1]={ limit={ @@ -9720,7 +10677,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [388]={ + [433]={ [1]={ [1]={ limit={ @@ -9736,7 +10693,7 @@ return { [1]="damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time" } }, - [389]={ + [434]={ [1]={ [1]={ limit={ @@ -9752,7 +10709,7 @@ return { [1]="damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time" } }, - [390]={ + [435]={ [1]={ [1]={ limit={ @@ -9781,7 +10738,7 @@ return { [1]="damage_taken_+%_per_250_ms_buff_uptime" } }, - [391]={ + [436]={ [1]={ [1]={ limit={ @@ -9810,7 +10767,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [392]={ + [437]={ [1]={ [1]={ limit={ @@ -9826,7 +10783,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [393]={ + [438]={ [1]={ [1]={ limit={ @@ -9842,7 +10799,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [394]={ + [439]={ [1]={ [1]={ [1]={ @@ -9875,7 +10832,7 @@ return { [1]="daze_self_on_critical_hit_for_X_ms" } }, - [395]={ + [440]={ [1]={ [1]={ limit={ @@ -9891,7 +10848,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [396]={ + [441]={ [1]={ [1]={ limit={ @@ -9907,7 +10864,7 @@ return { [1]="deal_no_elemental_damage" } }, - [397]={ + [442]={ [1]={ [1]={ limit={ @@ -9932,7 +10889,32 @@ return { [1]="deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger" } }, - [398]={ + [443]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills deal your Thorns Damage twice on their next Hit after you Retaliate with Thorns" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills deal your Thorns Damage twice on their next {0} Hits after you Retaliate with Thorns" + } + }, + stats={ + [1]="deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger" + } + }, + [444]={ [1]={ [1]={ limit={ @@ -9961,7 +10943,7 @@ return { [1]="deathmark_minion_damage_+%_final" } }, - [399]={ + [445]={ [1]={ [1]={ limit={ @@ -9990,7 +10972,7 @@ return { [1]="difficulty_of_meeting_conditional_requirement_+%" } }, - [400]={ + [446]={ [1]={ [1]={ [1]={ @@ -10010,23 +10992,7 @@ return { [1]="display_base_intensity_loss" } }, - [401]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Totems cannot gain Infusion" - } - }, - stats={ - [1]="display_totems_no_infusion" - } - }, - [402]={ + [447]={ [1]={ [1]={ limit={ @@ -10064,7 +11030,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [403]={ + [448]={ [1]={ [1]={ limit={ @@ -10080,7 +11046,23 @@ return { [1]="dot_multiplier_+" } }, - [404]={ + [449]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ancestral Boost has double effect on Supported Skills" + } + }, + stats={ + [1]="double_ancestral_boost_effect" + } + }, + [450]={ [1]={ [1]={ limit={ @@ -10096,7 +11078,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [405]={ + [451]={ [1]={ [1]={ limit={ @@ -10125,7 +11107,7 @@ return { [1]="elemental_damage_+%" } }, - [406]={ + [452]={ [1]={ [1]={ limit={ @@ -10154,7 +11136,7 @@ return { [1]="elusive_effect_+%" } }, - [407]={ + [453]={ [1]={ [1]={ limit={ @@ -10187,7 +11169,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [408]={ + [454]={ [1]={ [1]={ limit={ @@ -10216,7 +11198,7 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [409]={ + [455]={ [1]={ [1]={ limit={ @@ -10232,7 +11214,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [410]={ + [456]={ [1]={ [1]={ limit={ @@ -10261,7 +11243,7 @@ return { [1]="energy_generated_+%" } }, - [411]={ + [457]={ [1]={ [1]={ limit={ @@ -10277,7 +11259,7 @@ return { [1]="evasion_+%_while_performing_action_per_250_ms_attack_time" } }, - [412]={ + [458]={ [1]={ [1]={ limit={ @@ -10293,7 +11275,36 @@ return { [1]="explode_on_low_life_%_maximum_life_to_deal" } }, - [413]={ + [459]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Exposure applied by Supported Skills has {0}% increased effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Exposure applied by Supported Skills has {0}% reduced effect" + } + }, + stats={ + [1]="exposure_effect_+%" + } + }, + [460]={ [1]={ [1]={ limit={ @@ -10309,7 +11320,7 @@ return { [1]="faster_bleed_%" } }, - [414]={ + [461]={ [1]={ [1]={ limit={ @@ -10338,7 +11349,7 @@ return { [1]="faster_burn_%" } }, - [415]={ + [462]={ [1]={ [1]={ limit={ @@ -10354,7 +11365,23 @@ return { [1]="faster_poison_%" } }, - [416]={ + [463]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Poisons from Supported Skills deal Damage {0}% faster per Rage" + } + }, + stats={ + [1]="faster_poison_%_per_current_rage" + } + }, + [464]={ [1]={ [1]={ limit={ @@ -10383,7 +11410,7 @@ return { [1]="feeding_frenzy_minion_damage_+%_final" } }, - [417]={ + [465]={ [1]={ [1]={ limit={ @@ -10412,7 +11439,23 @@ return { [1]="feeding_frenzy_minion_damage_taken_+%_final" } }, - [418]={ + [466]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Final Strike of Supported Skill is Ancestrally Boosted" + } + }, + stats={ + [1]="final_strike_is_ancestrally_boosted" + } + }, + [467]={ [1]={ [1]={ limit={ @@ -10441,7 +11484,7 @@ return { [1]="fire_damage_+%" } }, - [419]={ + [468]={ [1]={ [1]={ limit={ @@ -10457,7 +11500,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [420]={ + [469]={ [1]={ [1]={ [1]={ @@ -10477,7 +11520,7 @@ return { [1]="firestorm_drop_burning_ground_duration_ms" } }, - [421]={ + [470]={ [1]={ [1]={ limit={ @@ -10486,7 +11529,23 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased Fortification Duration" + text="Maximum {0} Flame Pillars" + } + }, + stats={ + [1]="flame_pillar_support_maximum_pillars_per_skill_use" + } + }, + [471]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% increased Fortification Duration" }, [2]={ [1]={ @@ -10506,7 +11565,7 @@ return { [1]="fortify_duration_+%" } }, - [422]={ + [472]={ [1]={ [1]={ limit={ @@ -10522,7 +11581,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [423]={ + [473]={ [1]={ [1]={ limit={ @@ -10551,7 +11610,7 @@ return { [1]="freeze_duration_ms_+" } }, - [424]={ + [474]={ [1]={ [1]={ limit={ @@ -10580,7 +11639,7 @@ return { [1]="freeze_duration_+%" } }, - [425]={ + [475]={ [1]={ [1]={ [1]={ @@ -10600,7 +11659,7 @@ return { [1]="base_freezing_enemy_chills_enemies_in_radius" } }, - [426]={ + [476]={ [1]={ [1]={ limit={ @@ -10616,7 +11675,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [427]={ + [477]={ [1]={ [1]={ limit={ @@ -10645,7 +11704,7 @@ return { [1]="frost_bomb_damage_+%_final_per_100ms_duration" } }, - [428]={ + [478]={ [1]={ [1]={ limit={ @@ -10661,7 +11720,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun" } }, - [429]={ + [479]={ [1]={ [1]={ [1]={ @@ -10678,10 +11737,10 @@ return { } }, stats={ - [1]="fully_broken_armour_duration_ms_+" + [1]="fully_broken_armour_and_sundered_armour_duration_ms_+" } }, - [430]={ + [480]={ [1]={ [1]={ [1]={ @@ -10701,7 +11760,7 @@ return { [1]="fully_broken_armour_duration_ms_removed_on_hit" } }, - [431]={ + [481]={ [1]={ [1]={ limit={ @@ -10717,7 +11776,7 @@ return { [1]="gain_%_of_base_wand_damage_as_added_spell_damage" } }, - [432]={ + [482]={ [1]={ [1]={ limit={ @@ -10733,7 +11792,58 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [433]={ + [483]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]=1000, + [2]=1000 + } + }, + text="Gain {1} Guard per ten Strength when you Stun an Enemy\nGain an additional {0} Guard per ten Strength if Heavily Stunning\nGuard duration is {2} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Gain {1} Guard per ten Strength when you Stun an Enemy\nGain an additional {0} Guard per ten Strength if Heavily Stunning\nGuard duration is {2} seconds" + } + }, + stats={ + [1]="gain_X_guard_on_heavy_stun_per_10_strength", + [2]="gain_X_guard_on_stun_per_10_strength", + [3]="guard_on_stun_guard_duration_ms" + } + }, + [484]={ [1]={ [1]={ limit={ @@ -10749,7 +11859,7 @@ return { [1]="gain_X_perfection_on_successful_perfect_timing" } }, - [434]={ + [485]={ [1]={ [1]={ limit={ @@ -10765,7 +11875,32 @@ return { [1]="gain_X_volatility_on_empowered_skill_use" } }, - [435]={ + [486]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Gain {0} Wildshard on casting Supported Spells" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Gain {0} Wildshards on casting Supported Spells" + } + }, + stats={ + [1]="gain_X_wildshard_stacks_on_cast" + } + }, + [487]={ [1]={ [1]={ limit={ @@ -10812,7 +11947,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [436]={ + [488]={ [1]={ [1]={ limit={ @@ -10828,7 +11963,7 @@ return { [1]="gain_energy_shield_cost_equal_to_intelligence" } }, - [437]={ + [489]={ [1]={ [1]={ limit={ @@ -10844,7 +11979,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [438]={ + [490]={ [1]={ [1]={ limit={ @@ -10860,7 +11995,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [439]={ + [491]={ [1]={ [1]={ limit={ @@ -10881,7 +12016,39 @@ return { [2]="consume_%_of_maximum_mana_flask_charges_on_skill_use" } }, - [440]={ + [492]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Gain {0}% of Damage as extra Physical Damage per 10 Life cost" + } + }, + stats={ + [1]="gain_%_of_damage_as_physical_per_10_life_cost" + } + }, + [493]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Releasing Supported Skills with Perfect Timing grants Deflection Rating equal to {0}% of Evasion Rating for 8 seconds" + } + }, + stats={ + [1]="gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds" + } + }, + [494]={ [1]={ [1]={ limit={ @@ -10897,7 +12064,7 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [441]={ + [495]={ [1]={ [1]={ limit={ @@ -10922,7 +12089,40 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [442]={ + [496]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gain Unholy Might for {0} second on Commanding Minions from Supported Skills" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Unholy Might for {0} seconds on Commanding Minions from Supported Skills" + } + }, + stats={ + [1]="gain_unholy_might_for_X_ms_on_command" + } + }, + [497]={ [1]={ [1]={ [1]={ @@ -10942,23 +12142,32 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [443]={ + [498]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, + [2]=1 + } + }, + text="Gain {0} Endurance Charge on Heavily Stunning a Unique Enemy with Supported Skill" + }, + [2]={ + limit={ + [1]={ + [1]=2, [2]="#" } }, - text="Supported Skills grant {0} Rage on Melee Hit" + text="Gain {0} Endurance Charges on Heavily Stunning a Unique Enemy with Supported Skill" } }, stats={ - [1]="gain_x_rage_on_melee_hit" + [1]="gain_x_endurance_charges_on_heavy_stunning_unique_enemy" } }, - [444]={ + [499]={ [1]={ [1]={ limit={ @@ -10967,35 +12176,30 @@ return { [2]="#" } }, - text="Quality has no effect" + text="Supported Skills grant {0} Rage on Melee Hit" } }, stats={ - [1]="gem_display_quality_has_no_effect" + [1]="gain_x_rage_on_melee_hit" } }, - [445]={ + [500]={ [1]={ [1]={ limit={ [1]={ [1]="#", [2]="#" - }, - [2]={ - [1]="#", - [2]="#" } }, - text="Triggers socketed Bow Attacks on reaching full Mana\nAfter Triggering socketed Skills this way, cannot do so again until reaching {0}% of maximum Mana" + text="Quality has no effect" } }, stats={ - [1]="generic_ongoing_trigger_triggered_on_reaching_full_mana", - [2]="generic_ongoing_trigger_retriggerable_on_reaching_%_mana" + [1]="gem_display_quality_has_no_effect" } }, - [446]={ + [501]={ [1]={ [1]={ limit={ @@ -11011,7 +12215,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [447]={ + [502]={ [1]={ [1]={ limit={ @@ -11027,7 +12231,7 @@ return { [1]="global_knockback" } }, - [448]={ + [503]={ [1]={ [1]={ limit={ @@ -11048,7 +12252,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [449]={ + [504]={ [1]={ [1]={ limit={ @@ -11069,7 +12273,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [450]={ + [505]={ [1]={ [1]={ limit={ @@ -11090,7 +12294,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [451]={ + [506]={ [1]={ [1]={ limit={ @@ -11111,7 +12315,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [452]={ + [507]={ [1]={ [1]={ limit={ @@ -11132,23 +12336,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [453]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills have {0}% reduced Enemy Block Chance" - } - }, - stats={ - [1]="global_reduce_enemy_block_%" - } - }, - [454]={ + [508]={ [1]={ [1]={ limit={ @@ -11177,22 +12365,38 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [455]={ + [509]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=99 - } - }, - text="Grenades fired by Supported Skills have {0}% chance to activate a second time" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]=100 + [1]="#", + [2]="#" + } + }, + text="Grenades from Supported Skills cannot explode unless Detonated by a Detonator" + } + }, + stats={ + [1]="grenade_only_detonate_from_detonators" + } + }, + [510]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Grenades fired by Supported Skills have {0}% chance to activate a second time" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 } }, text="Grenades fired by Supported Skills activate a second time" @@ -11202,7 +12406,36 @@ return { [1]="grenade_skill_%_chance_to_explode_twice" } }, - [456]={ + [511]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Grenade Skills have {0}% increased Cooldown Recovery Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Grenade Skills have {0}% reduced Cooldown Recovery Rate" + } + }, + stats={ + [1]="grenade_skill_cooldown_speed_+%" + } + }, + [512]={ [1]={ [1]={ limit={ @@ -11218,7 +12451,36 @@ return { [1]="grenade_skill_does_not_bounce_off_ground" } }, - [457]={ + [513]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ground Surfaces from Supported Skills apply Suppressive Ground\nSuppressive Ground grants {0}% more Cooldown Recovery Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Ground Surfaces from Supported Skills apply Suppressive Ground\nSuppressive Ground inflicts {0}% less Cooldown Recovery Rate" + } + }, + stats={ + [1]="ground_effects_apply_cooldown_speed_+%_final" + } + }, + [514]={ [1]={ [1]={ limit={ @@ -11234,7 +12496,57 @@ return { [1]="ground_effects_cannot_trigger" } }, - [458]={ + [515]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="DNT Supported Skills have {0}% chance to Trigger Grounding Shocks when inflicting Shock" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="DNT Supported Skills Trigger Grounding Shocks when inflicting Shock" + } + }, + stats={ + [1]="grounding_shocks_chance_%_to_create_orb_on_shocking_enemy" + } + }, + [516]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills create {0} additional Haemocrystal when Consuming Aggravated Bleeding" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills create {0} additional Haemocrystals when Consuming Aggravated Bleeding" + } + }, + stats={ + [1]="haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed" + } + }, + [517]={ [1]={ [1]={ limit={ @@ -11259,7 +12571,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [459]={ + [518]={ [1]={ [1]={ limit={ @@ -11275,7 +12587,7 @@ return { [1]="hazards_trigger_at_end_of_duration_instead" } }, - [460]={ + [519]={ [1]={ [1]={ limit={ @@ -11304,7 +12616,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [461]={ + [520]={ [1]={ [1]={ limit={ @@ -11333,7 +12645,7 @@ return { [1]="hex_transfer_on_death_range_+%" } }, - [462]={ + [521]={ [1]={ [1]={ limit={ @@ -11362,7 +12674,71 @@ return { [1]="hit_damage_+%" } }, - [463]={ + [522]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits from Supported Skills ignore enemy Fire Resistance" + } + }, + stats={ + [1]="hits_ignore_enemy_fire_resistance" + } + }, + [523]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits with Supported Skills have {0}% chance to ignore Enemy Physical Damage reduction" + } + }, + stats={ + [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" + } + }, + [524]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ice Crystals created by Supported Skills can Impale with Cold Damage as though it was Physical" + } + }, + stats={ + [1]="ice_crystal_explosion_cold_damage_can_impale" + } + }, + [525]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ice Crystals created by Supported Skills have {0}% chance to Impale" + } + }, + stats={ + [1]="ice_crystal_explosion_impale_chance_%" + } + }, + [526]={ [1]={ [1]={ limit={ @@ -11391,7 +12767,7 @@ return { [1]="ignite_duration_+%" } }, - [464]={ + [527]={ [1]={ [1]={ limit={ @@ -11420,7 +12796,7 @@ return { [1]="ignite_effect_+%_final_against_frozen_enemies" } }, - [465]={ + [528]={ [1]={ [1]={ limit={ @@ -11436,7 +12812,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [466]={ + [529]={ [1]={ [1]={ limit={ @@ -11465,7 +12841,7 @@ return { [1]="impale_magnitude_+%" } }, - [467]={ + [530]={ [1]={ [1]={ limit={ @@ -11490,7 +12866,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [468]={ + [531]={ [1]={ [1]={ limit={ @@ -11506,7 +12882,7 @@ return { [1]="impale_support_physical_damage_+%_final" } }, - [469]={ + [532]={ [1]={ [1]={ limit={ @@ -11535,7 +12911,7 @@ return { [1]="inc_aoe_plus_more_area_damage_+%_final" } }, - [470]={ + [533]={ [1]={ [1]={ [1]={ @@ -11548,7 +12924,7 @@ return { [2]=1000 } }, - text="Supported Skills inflict Cold Exposure for {0} second on Critical Hit with Cold Damage" + text="Supported Skills inflict Exposure for {0} second on Critical Hit with Cold Damage" }, [2]={ [1]={ @@ -11561,14 +12937,14 @@ return { [2]="#" } }, - text="Supported Skills inflict Cold Exposure for {0} seconds on Critical Hit with Cold Damage" + text="Supported Skills inflict Exposure for {0} seconds on Critical Hit with Cold Damage" } }, stats={ - [1]="inflict_cold_exposure_for_x_ms_on_cold_crit" + [1]="inflict_exposure_for_x_ms_on_cold_crit" } }, - [471]={ + [534]={ [1]={ [1]={ [1]={ @@ -11581,7 +12957,7 @@ return { [2]=1000 } }, - text="Supported Skills inflict Fire Exposure for {0} second on Igniting a target" + text="Supported Skills inflict Exposure for {0} second on Igniting a target" }, [2]={ [1]={ @@ -11594,14 +12970,14 @@ return { [2]="#" } }, - text="Supported Skills inflict Fire Exposure for {0} seconds on Igniting a target" + text="Supported Skills inflict Exposure for {0} seconds on Igniting a target" } }, stats={ - [1]="inflict_fire_exposure_for_x_ms_on_ignite" + [1]="inflict_exposure_for_x_ms_on_ignite" } }, - [472]={ + [535]={ [1]={ [1]={ [1]={ @@ -11614,7 +12990,7 @@ return { [2]=1000 } }, - text="Supported Skills inflict Lightning Exposure for {0} second on Shocking a target" + text="Supported Skills inflict Exposure for {0} second on Shocking a target" }, [2]={ [1]={ @@ -11627,50 +13003,14 @@ return { [2]="#" } }, - text="Supported Skills inflict Lightning Exposure for {0} seconds on Shocking a target" - } - }, - stats={ - [1]="inflict_lightning_exposure_for_x_ms_on_shock" - } - }, - [473]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Infusion granted by Supported Skills grants {0}% of Damage Gained as Extra of the matching Elemental Damage Type when Consumed" - } - }, - stats={ - [1]="infusion_all_damage_%_to_gain_as_infusion_type" - } - }, - [474]={ - [1]={ - [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Infusion grants {}% of maximum Life Regenerated per second" + text="Supported Skills inflict Exposure for {0} seconds on Shocking a target" } }, stats={ - [1]="infusion_grants_life_regeneration_rate_per_minute_%" + [1]="inflict_exposure_for_x_ms_on_shock" } }, - [475]={ + [536]={ [1]={ [1]={ limit={ @@ -11699,7 +13039,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [476]={ + [537]={ [1]={ [1]={ limit={ @@ -11724,7 +13064,7 @@ return { [1]="instability_on_critical_%_chance" } }, - [477]={ + [538]={ [1]={ [1]={ limit={ @@ -11733,13 +13073,29 @@ return { [2]="#" } }, - text="Supported Spells lose Intensity with {0}% increased frequency while moving" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Infusion granted by Supported Skills grants {0}% of Damage Gained as Extra of the matching Elemental Damage Type when Consumed" + } + }, + stats={ + [1]="instilling_all_damage_%_to_gain_as_instilling_type" + } + }, + [539]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Spells lose Intensity with {0}% increased frequency while moving" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", @@ -11753,7 +13109,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [478]={ + [540]={ [1]={ [1]={ limit={ @@ -11769,7 +13125,57 @@ return { [1]="intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken" } }, - [479]={ + [541]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="DNT Modifiers to Melee damage apply to Projectile Attack damage for the supported skill at {0}% effectiveness" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="DNT Modifiers to Melee damage also apply to Projectile Attack damage for the supported skill" + } + }, + stats={ + [1]="iron_grip_damage_modifier_effectiveness_%" + } + }, + [542]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="DNT Modifiers to Melee damage apply to Spell damage for the supported skill at {0}% effectiveness" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="DNT Modifiers to Melee damage also apply to Spell damage for the supported skill" + } + }, + stats={ + [1]="iron_will_damage_modifier_effectiveness_%" + } + }, + [543]={ [1]={ [1]={ limit={ @@ -11785,7 +13191,7 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [480]={ + [544]={ [1]={ [1]={ limit={ @@ -11801,7 +13207,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [481]={ + [545]={ [1]={ [1]={ limit={ @@ -11830,7 +13236,23 @@ return { [1]="knockback_distance_+%" } }, - [482]={ + [546]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Life Leeched by Supported Skills is not removed at full Life" + } + }, + stats={ + [1]="life_leech_from_source_not_removed_at_full_life" + } + }, + [547]={ [1]={ [1]={ limit={ @@ -11859,7 +13281,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [483]={ + [548]={ [1]={ [1]={ limit={ @@ -11888,7 +13310,7 @@ return { [1]="lightning_damage_+%" } }, - [484]={ + [549]={ [1]={ [1]={ limit={ @@ -11917,7 +13339,7 @@ return { [1]="local_gem_dex_requirement_+%" } }, - [485]={ + [550]={ [1]={ [1]={ limit={ @@ -11946,7 +13368,7 @@ return { [1]="local_gem_int_requirement_+%" } }, - [486]={ + [551]={ [1]={ [1]={ limit={ @@ -11975,7 +13397,23 @@ return { [1]="local_gem_str_requirement_+%" } }, - [487]={ + [552]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You Recoup {0}% of Damage taken by Supported Minions this way as Life" + } + }, + stats={ + [1]="loyalty_%_of_redirected_damage_recouped_as_life_for_owner" + } + }, + [553]={ [1]={ [1]={ limit={ @@ -12004,7 +13442,7 @@ return { [1]="maim_effect_+%" } }, - [488]={ + [554]={ [1]={ [1]={ limit={ @@ -12029,7 +13467,7 @@ return { [1]="maim_on_hit_%" } }, - [489]={ + [555]={ [1]={ [1]={ limit={ @@ -12067,7 +13505,7 @@ return { [2]="manaweave_added_lightning_damage_%_cost_if_payable" } }, - [490]={ + [556]={ [1]={ [1]={ limit={ @@ -12083,7 +13521,7 @@ return { [1]="manaweave_added_cold_damage_%_cost_if_payable" } }, - [491]={ + [557]={ [1]={ [1]={ limit={ @@ -12099,7 +13537,61 @@ return { [1]="marked_target_%_physical_damage_taken_as_armour_break" } }, - [492]={ + [558]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Melee Physical Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Melee Physical Damage" + } + }, + stats={ + [1]="support_melee_physical_damage_+%_final" + } + }, + [559]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} area of Cursed Ground" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} areas of Cursed Ground" + } + }, + stats={ + [1]="maximum_curse_zones_allowed" + } + }, + [560]={ [1]={ [1]={ limit={ @@ -12115,7 +13607,7 @@ return { [1]="maximum_intensify_stacks" } }, - [493]={ + [561]={ [1]={ [1]={ limit={ @@ -12131,7 +13623,7 @@ return { [1]="melee_attacks_usable_without_mana_cost_while_surrounded" } }, - [494]={ + [562]={ [1]={ [1]={ limit={ @@ -12160,7 +13652,7 @@ return { [1]="melee_damage_+%" } }, - [495]={ + [563]={ [1]={ [1]={ limit={ @@ -12189,7 +13681,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [496]={ + [564]={ [1]={ [1]={ limit={ @@ -12218,7 +13710,7 @@ return { [1]="melee_physical_damage_+%" } }, - [497]={ + [565]={ [1]={ [1]={ limit={ @@ -12234,7 +13726,7 @@ return { [1]="melee_range_+" } }, - [498]={ + [566]={ [1]={ [1]={ limit={ @@ -12263,7 +13755,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [499]={ + [567]={ [1]={ [1]={ limit={ @@ -12292,7 +13784,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [500]={ + [568]={ [1]={ [1]={ limit={ @@ -12321,7 +13813,7 @@ return { [1]="mine_laying_speed_+%" } }, - [501]={ + [569]={ [1]={ [1]={ limit={ @@ -12350,7 +13842,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [502]={ + [570]={ [1]={ [1]={ limit={ @@ -12371,7 +13863,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [503]={ + [571]={ [1]={ [1]={ limit={ @@ -12387,7 +13879,7 @@ return { [1]="minimum_power_from_quality" } }, - [504]={ + [572]={ [1]={ [1]={ limit={ @@ -12416,7 +13908,7 @@ return { [1]="minion_actor_scale_+%" } }, - [505]={ + [573]={ [1]={ [1]={ limit={ @@ -12432,7 +13924,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [506]={ + [574]={ [1]={ [1]={ limit={ @@ -12461,7 +13953,7 @@ return { [1]="minion_attack_speed_+%" } }, - [507]={ + [575]={ [1]={ [1]={ limit={ @@ -12477,7 +13969,7 @@ return { [1]="minion_block_%" } }, - [508]={ + [576]={ [1]={ [1]={ limit={ @@ -12506,7 +13998,7 @@ return { [1]="minion_burning_damage_+%" } }, - [509]={ + [577]={ [1]={ [1]={ limit={ @@ -12535,7 +14027,7 @@ return { [1]="minion_cast_speed_+%" } }, - [510]={ + [578]={ [1]={ [1]={ limit={ @@ -12551,7 +14043,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [511]={ + [579]={ [1]={ [1]={ limit={ @@ -12567,7 +14059,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [512]={ + [580]={ [1]={ [1]={ limit={ @@ -12596,7 +14088,7 @@ return { [1]="minion_command_skill_cooldown_speed_+%" } }, - [513]={ + [581]={ [1]={ [1]={ limit={ @@ -12625,7 +14117,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [514]={ + [582]={ [1]={ [1]={ limit={ @@ -12654,7 +14146,7 @@ return { [1]="minion_damage_+%" } }, - [515]={ + [583]={ [1]={ [1]={ limit={ @@ -12683,7 +14175,40 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [516]={ + [584]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Minions from Supported Skills gain Unholy Might for {0} second when Commanded" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions from Supported Skills gain Unholy Might for {0} seconds when Commanded" + } + }, + stats={ + [1]="minion_gain_unholy_might_for_X_ms_on_command" + } + }, + [585]={ [1]={ [1]={ limit={ @@ -12699,7 +14224,7 @@ return { [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" } }, - [517]={ + [586]={ [1]={ [1]={ limit={ @@ -12728,7 +14253,7 @@ return { [1]="minion_maximum_life_+%" } }, - [518]={ + [587]={ [1]={ [1]={ limit={ @@ -12757,7 +14282,7 @@ return { [1]="minion_movement_speed_+%" } }, - [519]={ + [588]={ [1]={ [1]={ [1]={ @@ -12782,7 +14307,7 @@ return { [2]="minion_on_death_heal_radius" } }, - [520]={ + [589]={ [1]={ [1]={ limit={ @@ -12811,7 +14336,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [521]={ + [590]={ [1]={ [1]={ limit={ @@ -12827,7 +14352,23 @@ return { [1]="minion_recover_%_maximum_life_on_hit" } }, - [522]={ + [591]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions from Supported Skills are Gigantic" + } + }, + stats={ + [1]="minions_are_gigantic" + } + }, + [592]={ [1]={ [1]={ limit={ @@ -12852,7 +14393,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [523]={ + [593]={ [1]={ [1]={ limit={ @@ -12868,7 +14409,65 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [524]={ + [594]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Bleeding inflicted by Supported Skills against Poisoned Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Bleeding inflicted by Supported Skills against Poisoned Enemies" + } + }, + stats={ + [1]="mixed_maladies_bleed_effect_+%_final_vs_poisoned" + } + }, + [595]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Poison inflicted by Supported Skills against Bleeding Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Poison inflicted by Supported Skills against Bleeding Enemies" + } + }, + stats={ + [1]="mixed_maladies_poison_effect_+%_final_vs_bleeding" + } + }, + [596]={ [1]={ [1]={ limit={ @@ -12897,7 +14496,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [525]={ + [597]={ [1]={ [1]={ limit={ @@ -12926,7 +14525,7 @@ return { [1]="multistrike_area_of_effect_+%_per_repeat" } }, - [526]={ + [598]={ [1]={ [1]={ limit={ @@ -12955,7 +14554,7 @@ return { [1]="multistrike_damage_+%_final_on_first_repeat" } }, - [527]={ + [599]={ [1]={ [1]={ limit={ @@ -12984,7 +14583,7 @@ return { [1]="multistrike_damage_+%_final_on_second_repeat" } }, - [528]={ + [600]={ [1]={ [1]={ limit={ @@ -13013,7 +14612,7 @@ return { [1]="multistrike_damage_+%_final_on_third_repeat" } }, - [529]={ + [601]={ [1]={ [1]={ limit={ @@ -13029,7 +14628,7 @@ return { [1]="never_freeze" } }, - [530]={ + [602]={ [1]={ [1]={ limit={ @@ -13045,7 +14644,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [531]={ + [603]={ [1]={ [1]={ limit={ @@ -13061,7 +14660,7 @@ return { [1]="no_cost" } }, - [532]={ + [604]={ [1]={ [1]={ limit={ @@ -13090,7 +14689,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [533]={ + [605]={ [1]={ [1]={ limit={ @@ -13119,7 +14718,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [534]={ + [606]={ [1]={ [1]={ limit={ @@ -13135,7 +14734,7 @@ return { [1]="non_reviving_minion_%_chance_to_revive" } }, - [535]={ + [607]={ [1]={ [1]={ limit={ @@ -13151,7 +14750,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [536]={ + [608]={ [1]={ [1]={ limit={ @@ -13167,7 +14766,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [537]={ + [609]={ [1]={ [1]={ limit={ @@ -13183,7 +14782,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_attacks" } }, - [538]={ + [610]={ [1]={ [1]={ limit={ @@ -13199,7 +14798,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks" } }, - [539]={ + [611]={ [1]={ [1]={ limit={ @@ -13215,7 +14814,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies" } }, - [540]={ + [612]={ [1]={ [1]={ limit={ @@ -13231,7 +14830,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks" } }, - [541]={ + [613]={ [1]={ [1]={ limit={ @@ -13247,7 +14846,23 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_fire" } }, - [542]={ + [614]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Gain {0}% of Cold Damage as Extra Chaos Damage" + } + }, + stats={ + [1]="non_skill_base_cold_damage_%_to_gain_as_chaos" + } + }, + [615]={ [1]={ [1]={ limit={ @@ -13263,7 +14878,39 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_fire" } }, - [543]={ + [616]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Gain {0}% of Fire Damage as Extra Chaos Damage" + } + }, + stats={ + [1]="non_skill_base_fire_damage_%_to_gain_as_chaos" + } + }, + [617]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Gain {0}% of Lightning Damage as Extra Chaos Damage" + } + }, + stats={ + [1]="non_skill_base_lightning_damage_%_to_gain_as_chaos" + } + }, + [618]={ [1]={ [1]={ limit={ @@ -13279,7 +14926,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos" } }, - [544]={ + [619]={ [1]={ [1]={ limit={ @@ -13295,7 +14942,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold" } }, - [545]={ + [620]={ [1]={ [1]={ limit={ @@ -13311,7 +14958,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire" } }, - [546]={ + [621]={ [1]={ [1]={ limit={ @@ -13327,7 +14974,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [547]={ + [622]={ [1]={ [1]={ limit={ @@ -13343,7 +14990,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [548]={ + [623]={ [1]={ [1]={ limit={ @@ -13352,14 +14999,14 @@ return { [2]="#" } }, - text="Supported Skills gain {0}% of Physical Damage as Extra Chaos Damage" + text="Supported Skills Gain {0}% of Physical Damage as Extra Chaos Damage" } }, stats={ [1]="non_skill_base_physical_damage_%_to_gain_as_chaos" } }, - [549]={ + [624]={ [1]={ [1]={ limit={ @@ -13375,7 +15022,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_fire" } }, - [550]={ + [625]={ [1]={ [1]={ limit={ @@ -13391,7 +15038,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning" } }, - [551]={ + [626]={ [1]={ [1]={ limit={ @@ -13407,7 +15054,7 @@ return { [1]="nova_skills_cast_at_target_location" } }, - [552]={ + [627]={ [1]={ [1]={ limit={ @@ -13432,7 +15079,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [553]={ + [628]={ [1]={ [1]={ limit={ @@ -13457,7 +15104,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [554]={ + [629]={ [1]={ [1]={ limit={ @@ -13473,7 +15120,7 @@ return { [1]="number_of_additional_poison_stacks" } }, - [555]={ + [630]={ [1]={ [1]={ limit={ @@ -13507,7 +15154,7 @@ return { [2]="number_of_additional_projectiles" } }, - [556]={ + [631]={ [1]={ [1]={ limit={ @@ -13532,7 +15179,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [557]={ + [632]={ [1]={ [1]={ limit={ @@ -13557,7 +15204,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [558]={ + [633]={ [1]={ [1]={ limit={ @@ -13573,7 +15220,7 @@ return { [1]="number_of_totems_allowed_is_1" } }, - [559]={ + [634]={ [1]={ [1]={ limit={ @@ -13602,7 +15249,7 @@ return { [1]="offering_spells_effect_+%" } }, - [560]={ + [635]={ [1]={ [1]={ limit={ @@ -13631,7 +15278,7 @@ return { [1]="offering_spells_effect_+%_if_consumed_additional_skeleton" } }, - [561]={ + [636]={ [1]={ [1]={ limit={ @@ -13656,7 +15303,7 @@ return { [1]="on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies" } }, - [562]={ + [637]={ [1]={ [1]={ [1]={ @@ -13676,36 +15323,49 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [563]={ + [638]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]=1000, + [2]=1000 } }, - text="Supported Skills have {}% increased Overpowered Effect" + text="Supported Skills Reserve {0}% of your maximum Life on use\nLife Reserved this way is Reserved for {1} second" }, [2]={ [1]={ - k="negate", - v=1 + k="milliseconds_to_seconds_2dp_if_required", + v=2 }, limit={ [1]={ + [1]=1, + [2]="#" + }, + [2]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Skills have {}% reduced Overpowered Effect" + text="Supported Skills Reserve {0}% of your maximum Life on use\nLife Reserved this way is Reserved for {1} seconds" } }, stats={ - [1]="overpowered_effect_+%" + [1]="overabundance_reserve_%_life_on_skill_use", + [2]="overabundance_life_reserved_for_x_ms" } }, - [564]={ + [639]={ [1]={ [1]={ limit={ @@ -13721,7 +15381,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [565]={ + [640]={ [1]={ [1]={ limit={ @@ -13746,7 +15406,7 @@ return { [1]="palm_skill_number_of_spirit_strikes" } }, - [566]={ + [641]={ [1]={ [1]={ limit={ @@ -13775,7 +15435,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [567]={ + [642]={ [1]={ [1]={ limit={ @@ -13800,7 +15460,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [568]={ + [643]={ [1]={ [1]={ limit={ @@ -13825,7 +15485,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [569]={ + [644]={ [1]={ [1]={ limit={ @@ -13850,7 +15510,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [570]={ + [645]={ [1]={ [1]={ limit={ @@ -13875,7 +15535,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [571]={ + [646]={ [1]={ [1]={ limit={ @@ -13904,7 +15564,7 @@ return { [1]="perfect_timing_window_ms_+%" } }, - [572]={ + [647]={ [1]={ [1]={ limit={ @@ -13920,7 +15580,7 @@ return { [1]="physical_damage_%_dealt_as_evasion_break_vs_bleeding" } }, - [573]={ + [648]={ [1]={ [1]={ limit={ @@ -13949,32 +15609,57 @@ return { [1]="physical_damage_+%" } }, - [574]={ + [649]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, + [2]=1 + } + }, + text="Supported Skills create {0} additional Flame Pillar when Consuming Aggravated Ignite" + }, + [2]={ + limit={ + [1]={ + [1]=2, [2]="#" } }, - text="Supported Skills Pin Enemies which are Primed for Pinning" + text="Supported Skills create {0} additional Flame Pillars when Consuming Aggravated Ignite" } }, stats={ - [1]="pin_almost_pinned_enemies" + [1]="pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite" } }, - [575]={ + [650]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Supported Skills have {0}% increased Cooldown Recovery Rate for throwing Traps" + text="Supported Skills Pin Enemies which are Primed for Pinning" + } + }, + stats={ + [1]="pin_almost_pinned_enemies" + } + }, + [651]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% increased Cooldown Recovery Rate for throwing Traps" }, [2]={ [1]={ @@ -13994,7 +15679,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [576]={ + [652]={ [1]={ [1]={ limit={ @@ -14010,7 +15695,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [577]={ + [653]={ [1]={ [1]={ limit={ @@ -14035,7 +15720,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [578]={ + [654]={ [1]={ [1]={ limit={ @@ -14064,7 +15749,7 @@ return { [1]="projectile_damage_+%" } }, - [579]={ + [655]={ [1]={ [1]={ limit={ @@ -14093,7 +15778,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [580]={ + [656]={ [1]={ [1]={ limit={ @@ -14109,7 +15794,23 @@ return { [1]="projectile_randomly_fork_chain_or_pierce" } }, - [581]={ + [657]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Increases and reductions to Projectile speed also apply to Projectile Damage with Supported Skills" + } + }, + stats={ + [1]="projectile_speed_additive_modifiers_also_apply_to_projectile_damage" + } + }, + [658]={ [1]={ [1]={ limit={ @@ -14138,7 +15839,23 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [582]={ + [659]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills fire Projectiles in a circle" + } + }, + stats={ + [1]="projectiles_nova" + } + }, + [660]={ [1]={ [1]={ limit={ @@ -14154,7 +15871,48 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [583]={ + [661]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Supported Skills fire Projectiles in a spiral" + } + }, + stats={ + [1]="projectiles_spiral" + } + }, + [662]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance to not remove Rage but still gain benefits as though they had" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills do not remove Rage but still gain benefits as though they had" + } + }, + stats={ + [1]="rage_skip_consume_chance_%" + } + }, + [663]={ [1]={ [1]={ limit={ @@ -14170,7 +15928,55 @@ return { [1]="random_projectile_direction" } }, - [584]={ + [664]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Inflicts a random Curse on you when you use Supported Skills, ignoring Curse limit" + } + }, + stats={ + [1]="randomly_curse_self_on_skill_use" + } + }, + [665]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recoup {0}% of your maximum Mana when a Persistent Reviving Minion created by Supported Skill dies" + } + }, + stats={ + [1]="recoup_mana_%_on_minion_death" + } + }, + [666]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Supported Skills costs are Recouped as Mana" + } + }, + stats={ + [1]="recoup_%_of_spell_cost_as_mana_on_cast" + } + }, + [667]={ [1]={ [1]={ limit={ @@ -14186,7 +15992,7 @@ return { [1]="recover_mana_%_on_minion_death" } }, - [585]={ + [668]={ [1]={ [1]={ [1]={ @@ -14206,7 +16012,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [586]={ + [669]={ [1]={ [1]={ limit={ @@ -14222,7 +16028,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [587]={ + [670]={ [1]={ [1]={ limit={ @@ -14238,7 +16044,7 @@ return { [1]="recover_%_maximum_mana_on_cull" } }, - [588]={ + [671]={ [1]={ [1]={ [1]={ @@ -14258,7 +16064,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [589]={ + [672]={ [1]={ [1]={ limit={ @@ -14274,23 +16080,32 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [590]={ + [673]={ [1]={ [1]={ limit={ [1]={ [1]=1, + [2]=99 + } + }, + text="Supported Skills have {}% chance to refresh Bleeding Duration on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, [2]="#" } }, - text="Enemies have {0}% reduced chance to Dodge Hits from Supported Skills" + text="Supported Skills refresh Bleeding Duration on Hit" } }, stats={ - [1]="reduce_enemy_dodge_%" + [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [591]={ + [674]={ [1]={ [1]={ limit={ @@ -14299,7 +16114,7 @@ return { [2]=99 } }, - text="Supported Skills have {}% chance to refresh Bleeding Duration on Hit" + text="Supported Skills have {0}% chance to refresh Ignite duration on Critical Hit" }, [2]={ limit={ @@ -14308,14 +16123,14 @@ return { [2]="#" } }, - text="Supported Skills refresh Bleeding Duration on Hit" + text="Supported Skills refresh Ignite duration on Critical Hit" } }, stats={ - [1]="refresh_bleeding_duration_on_hit_%_chance" + [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [592]={ + [675]={ [1]={ [1]={ limit={ @@ -14331,7 +16146,7 @@ return { [1]="regenerate_%_life_over_1_second_on_skill_use" } }, - [593]={ + [676]={ [1]={ [1]={ limit={ @@ -14360,7 +16175,7 @@ return { [1]="reload_speed_+%" } }, - [594]={ + [677]={ [1]={ [1]={ [1]={ @@ -14393,7 +16208,7 @@ return { [1]="remnant_delay_X_ms" } }, - [595]={ + [678]={ [1]={ [1]={ limit={ @@ -14422,7 +16237,7 @@ return { [1]="remnant_effect_+%" } }, - [596]={ + [679]={ [1]={ [1]={ limit={ @@ -14451,7 +16266,7 @@ return { [1]="remnant_pickup_range_+%" } }, - [597]={ + [680]={ [1]={ [1]={ limit={ @@ -14467,7 +16282,7 @@ return { [1]="remnants_affect_allies_in_presence_instead" } }, - [598]={ + [681]={ [1]={ [1]={ [1]={ @@ -14500,7 +16315,7 @@ return { [1]="remnants_vanish_after_X_ms" } }, - [599]={ + [682]={ [1]={ [1]={ limit={ @@ -14516,7 +16331,7 @@ return { [1]="remote_mined_by_support" } }, - [600]={ + [683]={ [1]={ [1]={ limit={ @@ -14532,7 +16347,7 @@ return { [1]="remove_ailment_when_applying_relevant_ailment" } }, - [601]={ + [684]={ [1]={ [1]={ limit={ @@ -14548,7 +16363,7 @@ return { [1]="remove_freeze_on_ignite" } }, - [602]={ + [685]={ [1]={ [1]={ limit={ @@ -14564,7 +16379,23 @@ return { [1]="repeat_last_step_of_combo_attack" } }, - [603]={ + [686]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Restore {0}% of maximum Life on use per one second cooldown of Supported Skills" + } + }, + stats={ + [1]="restore_%_life_on_skill_use_per_1000_ms_cooldown" + } + }, + [687]={ [1]={ [1]={ limit={ @@ -14580,7 +16411,7 @@ return { [1]="return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling" } }, - [604]={ + [688]={ [1]={ [1]={ [1]={ @@ -14600,7 +16431,7 @@ return { [1]="rip_support_life_remnant_creation_radius" } }, - [605]={ + [689]={ [1]={ [1]={ limit={ @@ -14616,7 +16447,7 @@ return { [1]="sacrifice_%_life_on_skill_use" } }, - [606]={ + [690]={ [1]={ [1]={ limit={ @@ -14625,27 +16456,14 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased chance to Shock" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Supported Skills have {0}% reduced chance to Shock" + text="Minions created by Supported Skills are always considered to be Detonatable" } }, stats={ - [1]="shock_chance_+%" + [1]="sacrificial_lamb_minion_always_detonatable" } }, - [607]={ + [691]={ [1]={ [1]={ limit={ @@ -14654,7 +16472,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased Shock Duration" + text="Supported Skills have {0}% increased chance to Shock" }, [2]={ [1]={ @@ -14667,14 +16485,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% reduced Shock Duration" + text="Supported Skills have {0}% reduced chance to Shock" } }, stats={ - [1]="shock_duration_+%" + [1]="shock_chance_+%" } }, - [608]={ + [692]={ [1]={ [1]={ limit={ @@ -14683,7 +16501,7 @@ return { [2]="#" } }, - text="{0}% increased Magnitude of Shocks inflicted with Supported Skills" + text="Supported Skills have {0}% increased Shock Duration" }, [2]={ [1]={ @@ -14696,14 +16514,14 @@ return { [2]=-1 } }, - text="{0}% reduced Magnitude of Shocks inflicted with Supported Skills" + text="Supported Skills have {0}% reduced Shock Duration" } }, stats={ - [1]="shock_effect_+%" + [1]="shock_duration_+%" } }, - [609]={ + [693]={ [1]={ [1]={ limit={ @@ -14712,7 +16530,7 @@ return { [2]="#" } }, - text="{0}% increased Magnitude of Shocks inflicted by Damaging Hits with Supported Skills" + text="{0}% increased Magnitude of Shocks inflicted with Supported Skills" }, [2]={ [1]={ @@ -14725,14 +16543,14 @@ return { [2]=-1 } }, - text="{0}% reduced Magnitude of Shocks inflicted by Damaging Hits with Supported Skills" + text="{0}% reduced Magnitude of Shocks inflicted with Supported Skills" } }, stats={ - [1]="shock_effect_+%_from_damaging_hits" + [1]="shock_effect_+%" } }, - [610]={ + [694]={ [1]={ [1]={ limit={ @@ -14748,7 +16566,7 @@ return { [1]="shocks_reflected_to_self" } }, - [611]={ + [695]={ [1]={ [1]={ limit={ @@ -14777,7 +16595,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [612]={ + [696]={ [1]={ [1]={ limit={ @@ -14793,7 +16611,7 @@ return { [1]="skill_is_blessing_skill" } }, - [613]={ + [697]={ [1]={ [1]={ limit={ @@ -14809,7 +16627,7 @@ return { [1]="skill_X_fewer_maximum_stages" } }, - [614]={ + [698]={ [1]={ [1]={ limit={ @@ -14825,7 +16643,7 @@ return { [1]="skill_X_minimum_stages" } }, - [615]={ + [699]={ [1]={ [1]={ limit={ @@ -14841,7 +16659,7 @@ return { [1]="skill_aura_also_disables_non_blessing_mana_reservation_skills" } }, - [616]={ + [700]={ [1]={ [1]={ limit={ @@ -14870,7 +16688,7 @@ return { [1]="skill_buff_effect_+%" } }, - [617]={ + [701]={ [1]={ [1]={ limit={ @@ -14886,7 +16704,7 @@ return { [1]="skill_can_own_mirage_archers" } }, - [618]={ + [702]={ [1]={ [1]={ [1]={ @@ -14919,7 +16737,7 @@ return { [1]="skill_cannot_be_used_unless_stationary_for_X_ms" } }, - [619]={ + [703]={ [1]={ [1]={ limit={ @@ -14935,7 +16753,7 @@ return { [1]="skill_cannot_generate_endurance_charges" } }, - [620]={ + [704]={ [1]={ [1]={ limit={ @@ -14951,7 +16769,7 @@ return { [1]="skill_cannot_generate_frenzy_charges" } }, - [621]={ + [705]={ [1]={ [1]={ limit={ @@ -14967,7 +16785,7 @@ return { [1]="skill_cannot_generate_power_charges" } }, - [622]={ + [706]={ [1]={ [1]={ limit={ @@ -14983,7 +16801,49 @@ return { [1]="skill_conditional_requires_X_volatility" } }, - [623]={ + [707]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills consume a Corpse within {0} metres\non use, if possible" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills consume up to {1} Corpses within {0} metres\non use, if possible" + } + }, + stats={ + [1]="skill_consume_corpse_within_X_units_on_use", + [2]="skill_consume_up_to_X_corpses_on_use" + } + }, + [708]={ [1]={ [1]={ limit={ @@ -14999,7 +16859,7 @@ return { [1]="skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage" } }, - [624]={ + [709]={ [1]={ [1]={ limit={ @@ -15028,27 +16888,7 @@ return { [1]="skill_consume_frenzy_charge_to_gain_skill_speed_+%_final" } }, - [625]={ - [1]={ - [1]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills consume a Corpse within {0} metres\non use, if possible" - } - }, - stats={ - [1]="skill_consume_corpse_within_X_units_on_use" - } - }, - [626]={ + [710]={ [1]={ [1]={ limit={ @@ -15077,7 +16917,7 @@ return { [1]="skill_consume_power_charge_to_gain_critical_strike_chance_+%_final" } }, - [627]={ + [711]={ [1]={ [1]={ limit={ @@ -15086,14 +16926,14 @@ return { [2]="#" } }, - text="Using Supported Skills will detonate a random amount of Volatility on you" + text="Using Supported Skills will explode a random amount of Volatility on you" } }, stats={ [1]="skill_detonate_random_volatility_amount_on_use" } }, - [628]={ + [712]={ [1]={ [1]={ limit={ @@ -15122,7 +16962,7 @@ return { [1]="skill_detonation_time_+%" } }, - [629]={ + [713]={ [1]={ [1]={ limit={ @@ -15151,7 +16991,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [630]={ + [714]={ [1]={ [1]={ limit={ @@ -15180,7 +17020,7 @@ return { [1]="skill_effect_duration_+%" } }, - [631]={ + [715]={ [1]={ [1]={ limit={ @@ -15209,7 +17049,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [632]={ + [716]={ [1]={ [1]={ limit={ @@ -15238,7 +17078,7 @@ return { [1]="skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%" } }, - [633]={ + [717]={ [1]={ [1]={ limit={ @@ -15247,14 +17087,30 @@ return { [2]="#" } }, - text="Supported Grenade Skills cannot explode before the end of their Detonation Time" + text="Grenades from Supported Skills cannot explode before the end of their Detonation Time" } }, stats={ [1]="skill_grenade_detonate_only_at_end_of_duration" } }, - [634]={ + [718]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Limits of Supported Skills are doubled" + } + }, + stats={ + [1]="skill_has_double_limit" + } + }, + [719]={ [1]={ [1]={ limit={ @@ -15270,7 +17126,23 @@ return { [1]="skill_has_spectral_arrows" } }, - [635]={ + [720]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Supported Skills do not have a Cooldown" + } + }, + stats={ + [1]="skill_ignores_cooldown" + } + }, + [721]={ [1]={ [1]={ limit={ @@ -15299,7 +17171,7 @@ return { [1]="skill_maximum_energy_+%" } }, - [636]={ + [722]={ [1]={ [1]={ limit={ @@ -15315,7 +17187,7 @@ return { [1]="skill_offering_targets_an_additional_skeleton" } }, - [637]={ + [723]={ [1]={ [1]={ [1]={ @@ -15348,7 +17220,36 @@ return { [1]="skill_presence_effects_linger_for_X_ms" } }, - [638]={ + [724]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Skill Speed while total Resonance is over 250" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Skill Speed while total Resonance is over 250" + } + }, + stats={ + [1]="trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant" + } + }, + [725]={ [1]={ [1]={ [1]={ @@ -15368,7 +17269,23 @@ return { [1]="skill_unusable_until_moved_X_distance" } }, - [639]={ + [726]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wolf Pack size {0}" + } + }, + stats={ + [1]="skill_wolf_pack_size" + } + }, + [727]={ [1]={ [1]={ limit={ @@ -15384,7 +17301,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [640]={ + [728]={ [1]={ [1]={ limit={ @@ -15413,7 +17330,7 @@ return { [1]="snipe_triggered_skill_damage_+%_final" } }, - [641]={ + [729]={ [1]={ [1]={ [1]={ @@ -15433,7 +17350,7 @@ return { [1]="solar_orb_base_pulse_frequency_ms" } }, - [642]={ + [730]={ [1]={ [1]={ limit={ @@ -15462,7 +17379,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [643]={ + [731]={ [1]={ [1]={ limit={ @@ -15491,7 +17408,7 @@ return { [1]="spell_damage_+%" } }, - [644]={ + [732]={ [1]={ [1]={ limit={ @@ -15507,7 +17424,7 @@ return { [1]="spell_echo_plus_chance_double_damage_%_final" } }, - [645]={ + [733]={ [1]={ [1]={ limit={ @@ -15523,7 +17440,23 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [646]={ + [734]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have a {0}% chance to fire 8 additional Projectiles in a circle per Wildshard\nAll Wildshards are lost when Supported Skills fire Projectiles in a circle" + } + }, + stats={ + [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack" + } + }, + [735]={ [1]={ [1]={ [1]={ @@ -15556,7 +17489,7 @@ return { [1]="static_strike_base_zap_frequency_ms" } }, - [647]={ + [736]={ [1]={ [1]={ limit={ @@ -15572,7 +17505,27 @@ return { [1]="static_strike_zap_speed_+%" } }, - [648]={ + [737]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Infusion grants {}% of maximum Life Regenerated per second" + } + }, + stats={ + [1]="storm_barrier_grants_life_regeneration_rate_per_minute_%" + } + }, + [738]={ [1]={ [1]={ limit={ @@ -15588,7 +17541,23 @@ return { [1]="stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets" } }, - [649]={ + [739]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Strikes are Ancestrally Boosted" + } + }, + stats={ + [1]="strikes_are_ancestrally_boosted" + } + }, + [740]={ [1]={ [1]={ limit={ @@ -15604,7 +17573,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [650]={ + [741]={ [1]={ [1]={ limit={ @@ -15633,7 +17602,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [651]={ + [742]={ [1]={ [1]={ [1]={ @@ -15663,7 +17632,7 @@ return { [3]="shock_nearby_enemy_base_area_of_effect_radius" } }, - [652]={ + [743]={ [1]={ [1]={ limit={ @@ -15692,7 +17661,7 @@ return { [1]="support_ablation_offering_skill_damage_+%_final" } }, - [653]={ + [744]={ [1]={ [1]={ limit={ @@ -15721,7 +17690,7 @@ return { [1]="support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [654]={ + [745]={ [1]={ [1]={ limit={ @@ -15746,7 +17715,7 @@ return { [1]="support_added_cooldown_count_if_not_instant" } }, - [655]={ + [746]={ [1]={ [1]={ limit={ @@ -15775,7 +17744,7 @@ return { [1]="support_additional_accurary_rating_+%_final" } }, - [656]={ + [747]={ [1]={ [1]={ limit={ @@ -15804,7 +17773,7 @@ return { [1]="support_additional_fissures_attack_speed_+%_final" } }, - [657]={ + [748]={ [1]={ [1]={ limit={ @@ -15833,7 +17802,7 @@ return { [1]="support_additional_fissures_damage_+%_final" } }, - [658]={ + [749]={ [1]={ [1]={ limit={ @@ -15849,7 +17818,36 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [659]={ + [750]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Melee Damage if you have Damaged an Enemy with a Projectile Attack Hit in the last two seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Melee Damage if you have Damaged an Enemy with a Projectile Attack Hit in the last two seconds" + } + }, + stats={ + [1]="support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds" + } + }, + [751]={ [1]={ [1]={ limit={ @@ -15878,7 +17876,7 @@ return { [1]="support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds" } }, - [660]={ + [752]={ [1]={ [1]={ limit={ @@ -15916,7 +17914,7 @@ return { [1]="support_advancing_assault_projectile_damage_+%_final" } }, - [661]={ + [753]={ [1]={ [1]={ limit={ @@ -15945,7 +17943,7 @@ return { [1]="support_ailment_cooldown_ailment_chance_+%_final" } }, - [662]={ + [754]={ [1]={ [1]={ limit={ @@ -15954,7 +17952,7 @@ return { [2]="#" } }, - text="Supported Skill has {0}% more Critical Hit Chance against Enemies that are on Full Life" + text="Ailments inflicted by Supported Skills have {0}% more Magnitude if you are afflicted with that Ailment when inflicting it" }, [2]={ [1]={ @@ -15967,14 +17965,14 @@ return { [2]=-1 } }, - text="Supported Skill has {0}% less Critical Hit Chance against Enemies that are on Full Life" + text="Ailments inflicted by Supported Skills have {0}% less Magnitude if you are afflicted with that Ailment when inflicting it" } }, stats={ - [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" + [1]="support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment" } }, - [663]={ + [755]={ [1]={ [1]={ limit={ @@ -15983,7 +17981,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Attack Speed" + text="Supported Skill has {0}% more Critical Hit Chance against Enemies that are on Full Life" }, [2]={ [1]={ @@ -15996,14 +17994,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Attack Speed" + text="Supported Skill has {0}% less Critical Hit Chance against Enemies that are on Full Life" } }, stats={ - [1]="support_ancestor_slam_totem_attack_speed_+%_final" + [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [664]={ + [756]={ [1]={ [1]={ limit={ @@ -16012,7 +18010,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased Seal gain frequency" + text="Supported Skills have {0}% more Reload speed" }, [2]={ [1]={ @@ -16025,14 +18023,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% reduced Seal gain frequency" + text="Supported Skills have {0}% less Reload speed" } }, stats={ - [1]="support_anticipation_charge_gain_frequency_+%" + [1]="support_ammo_conservation_crossbow_reload_speed_+%_final" } }, - [665]={ + [757]={ [1]={ [1]={ limit={ @@ -16041,7 +18039,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Area of Effect" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -16054,46 +18052,43 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Area of Effect" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_aoe_cooldown_aoe_+%_final" + [1]="support_ancestral_call_damage_+%_final" } }, - [666]={ + [758]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Skills apply Daze when fully Breaking Armour" - } - }, - stats={ - [1]="support_apply_daze_on_armour_break" - } - }, - [667]={ - [1]={ - [1]={ + text="{0}% more Totem Attack Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Supported Skills Daze Enemies" + text="{0}% less Totem Attack Speed" } }, stats={ - [1]="support_apply_daze_on_warcry" + [1]="support_ancestral_warrior_totem_attack_speed_+%_final" } }, - [668]={ + [759]={ [1]={ [1]={ limit={ @@ -16102,7 +18097,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Spell Damage while you have Arcane Surge" + text="Supported Skills have {0}% increased Seal gain frequency" }, [2]={ [1]={ @@ -16115,14 +18110,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Spell Damage while you have Arcane Surge" + text="Supported Skills have {0}% reduced Seal gain frequency" } }, stats={ - [1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge" + [1]="support_anticipation_charge_gain_frequency_+%" } }, - [669]={ + [760]={ [1]={ [1]={ limit={ @@ -16148,10 +18143,10 @@ return { } }, stats={ - [1]="support_area_of_effect_+%_final" + [1]="support_aoe_cooldown_aoe_+%_final" } }, - [670]={ + [761]={ [1]={ [1]={ limit={ @@ -16160,14 +18155,30 @@ return { [2]="#" } }, - text="Supported Skills trigger an Explosion when they Fully Break an enemy's Armour" + text="Supported Skills apply Daze when fully Breaking Armour" } }, stats={ - [1]="support_armour_explosion" + [1]="support_apply_daze_on_armour_break" } }, - [671]={ + [762]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Daze Enemies" + } + }, + stats={ + [1]="support_apply_daze_on_warcry" + } + }, + [763]={ [1]={ [1]={ limit={ @@ -16176,7 +18187,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Knockback Distance" + text="DNT Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -16189,14 +18200,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Knockback Distance" + text="DNT Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_arms_length_knockback_distance_+%_final" + [1]="support_arcane_archery_damage_+%_final" } }, - [672]={ + [764]={ [1]={ [1]={ limit={ @@ -16205,7 +18216,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Area of Effect" + text="Supported Skills deal {0}% more Spell Damage while you have Arcane Surge" }, [2]={ [1]={ @@ -16218,14 +18229,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Area of Effect" + text="Supported Skills deal {0}% less Spell Damage while you have Arcane Surge" } }, stats={ - [1]="support_astral_projection_aoe_+%_final" + [1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge" } }, - [673]={ + [765]={ [1]={ [1]={ limit={ @@ -16234,7 +18245,7 @@ return { [2]="#" } }, - text="Deal {0}% increased Attack Damage while on Low Life while a Supported Skill is active" + text="Supported Skills have {0}% more Area of Effect" }, [2]={ [1]={ @@ -16247,34 +18258,30 @@ return { [2]=-1 } }, - text="Deal {0}% reduced Attack Damage while on Low Life while a Supported Skill is active" + text="Supported Skills have {0}% less Area of Effect" } }, stats={ - [1]="support_attack_damage_spirit_cost_attack_damage_+%_on_low_life" + [1]="support_area_of_effect_+%_final" } }, - [674]={ + [766]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp", - v=1 - }, limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Auras from Supported Skills have a base duration of {0} seconds" + text="Supported Skills trigger an Explosion when they Fully Break an enemy's Armour" } }, stats={ - [1]="support_aura_duration_base_buff_duration" + [1]="support_armour_explosion" } }, - [675]={ + [767]={ [1]={ [1]={ limit={ @@ -16283,7 +18290,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Attack Time per Projectile" + text="Supported Skills have {0}% more Knockback Distance" }, [2]={ [1]={ @@ -16296,14 +18303,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Attack Time per Projectile" + text="Supported Skills have {0}% less Knockback Distance" } }, stats={ - [1]="support_barrage_attack_time_+%_per_projectile_fired" + [1]="support_arms_length_knockback_distance_+%_final" } }, - [676]={ + [768]={ [1]={ [1]={ limit={ @@ -16312,7 +18319,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Trap and Mine Throwing Time per Projectile" + text="Supported Skills have {0}% more Area of Effect" }, [2]={ [1]={ @@ -16325,54 +18332,43 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Trap and Mine Throwing Time per Projectile" + text="Supported Skills have {0}% less Area of Effect" } }, stats={ - [1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired" + [1]="support_astral_projection_aoe_+%_final" } }, - [677]={ + [769]={ [1]={ [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Fonts of Blood from Supported Skills grant {0}% Life Regeneration per second to You and Your Allies" - } - }, - stats={ - [1]="support_blood_fountain_life_regeneration_rate_per_minute_%" - } - }, - [678]={ - [1]={ - [1]={ + text="Deal {0}% increased Attack Damage while on Low Life while a Supported Skill is active" + }, + [2]={ [1]={ - k="divide_by_ten_1dp_if_required", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Objects created by Supported Skills create a Font of Blood with a {0} metre radius" + text="Deal {0}% reduced Attack Damage while on Low Life while a Supported Skill is active" } }, stats={ - [1]="support_blood_fountain_radius" + [1]="support_attack_damage_spirit_cost_attack_damage_+%_on_low_life" } }, - [679]={ + [770]={ [1]={ [1]={ limit={ @@ -16381,7 +18377,7 @@ return { [2]="#" } }, - text="Supported Attacks deal {0}% more Damage" + text="Supported Skills have {0}% more Curse Effect" }, [2]={ [1]={ @@ -16394,55 +18390,34 @@ return { [2]=-1 } }, - text="Supported Attacks deal {0}% less Damage" + text="Supported Skills have {0}% less Curse Effect" } }, stats={ - [1]="support_blood_thirst_damage_+%_final" + [1]="support_atziri_curse_effect_+%_final" } }, - [680]={ + [771]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Supported Skills have a {0}% chance to Trigger Shockwave on Melee Hit" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 }, - text="Supported Skills will Trigger Shockwave on Melee Hit" - } - }, - stats={ - [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" - } - }, - [681]={ - [1]={ - [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Deals {0}% of Pinned target's Maximum Life as Physical Damage" + text="Auras from Supported Skills have a base duration of {0} seconds" } }, stats={ - [1]="support_bone_shrapnel_physical_damage_equal_to_%_monster_life" + [1]="support_aura_duration_base_buff_duration" } }, - [682]={ + [772]={ [1]={ [1]={ limit={ @@ -16451,7 +18426,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Area of Effect" + text="Supported Skills have {0}% more Attack speed" }, [2]={ [1]={ @@ -16464,14 +18439,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Area of Effect" + text="Supported Skills have {0}% less Attack speed" } }, stats={ - [1]="support_brand_area_of_effect_+%_final" + [1]="support_auto_shotgun_attack_speed_+%_final" } }, - [683]={ + [773]={ [1]={ [1]={ limit={ @@ -16497,10 +18472,10 @@ return { } }, stats={ - [1]="support_brand_damage_+%_final" + [1]="support_auto_shotgun_damage_+%_final" } }, - [684]={ + [774]={ [1]={ [1]={ limit={ @@ -16509,7 +18484,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage to Heavy Stunned Enemies" + text="Supported Skills fire {0}% more Projectiles" }, [2]={ [1]={ @@ -16522,14 +18497,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage to Heavy Stunned Enemies" + text="Supported Skills fire {0}% less Projectiles" } }, stats={ - [1]="support_brink_damage_+%_final_vs_heavy_stunned_target" + [1]="support_auto_shotgun_projectile_count_+%_final" } }, - [685]={ + [775]={ [1]={ [1]={ limit={ @@ -16538,7 +18513,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Burning Damage" + text="Supported Skills have {0}% more reload speed" }, [2]={ [1]={ @@ -16551,67 +18526,72 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Burning Damage" + text="Supported Skills have {0}% less reload speed" } }, stats={ - [1]="support_burning_damage_+%_final" + [1]="support_auto_shotgun_reload_speed_+%_final" } }, - [686]={ + [776]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Create Ignited Ground, Igniting enemies as though dealing Fire Damage equal to {0}% of your Maximum Mana" + text="Supported Skills have {0}% more Attack Time per Projectile" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Attack Time per Projectile" } }, stats={ - [1]="support_burning_runes_base_fire_damage_equal_to_%_maximum_mana" + [1]="support_barrage_attack_time_+%_per_projectile_fired" } }, - [687]={ + [777]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" - }, - [2]={ - [1]=1, - [2]="#" } }, - text="Poison from Supported Skills also adds {0}% of Damage per Second to Enemy as Plague, up to a maximum of {1}% of Enemy's maximum Life" - } - }, - stats={ - [1]="support_bursting_plague_store_%_poison_applied_magnitude_towards_burst", - [2]="support_bursting_plague_max_value_%_of_max_life" - } - }, - [688]={ - [1]={ - [1]={ + text="Supported Skills have {0}% more Trap and Mine Throwing Time per Projectile" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Supported Skills indicate one of four directions\nIndicated direction changes when an Attack with Supported Skill matches indicated direction" + text="Supported Skills have {0}% less Trap and Mine Throwing Time per Projectile" } }, stats={ - [1]="support_called_shots_enable_directional_buff" + [1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired" } }, - [689]={ + [778]={ [1]={ [1]={ limit={ @@ -16620,7 +18600,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Projectile Damage when Attacking in indicated direction" + text="Supported Skills deal {0}% more damage to Frozen Unique enemies" }, [2]={ [1]={ @@ -16633,30 +18613,34 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Projectile Damage when Attacking in indicated direction" + text="Supported Skills deal {0}% less damage to Frozen Unique enemies" } }, stats={ - [1]="support_called_shots_projectile_damage_+%_final_when_matching_direction" + [1]="support_biting_frost_damage_+%_final_vs_frozen_unique_enemies" } }, - [690]={ + [779]={ [1]={ [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0}% of maximum Life recovered on Kill while a Supported Skill is active" + text="Fonts of Blood from Supported Skills grant {0}% Life Regeneration per second to You and Your Allies" } }, stats={ - [1]="support_cannibalism_recover_%_maximum_life_on_kill" + [1]="support_blood_fountain_life_regeneration_rate_per_minute_%" } }, - [691]={ + [780]={ [1]={ [1]={ limit={ @@ -16665,7 +18649,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Attack Damage" + text="Supported Attacks deal {0}% more Damage" }, [2]={ [1]={ @@ -16678,43 +18662,55 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Attack Damage" + text="Supported Attacks deal {0}% less Damage" } }, stats={ - [1]="support_cast_on_crit_quality_attack_damage_+%_final" + [1]="support_blood_thirst_damage_+%_final" } }, - [692]={ + [781]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" + [2]=99 } }, - text="Supported Triggered Spells have {0}% increased Effect of Non-Damaging Ailments" + text="Supported Skills have a {0}% chance to Trigger Shockwave on Melee Hit" }, [2]={ - [1]={ - k="negate", - v=1 + limit={ + [1]={ + [1]=100, + [2]="#" + } }, + text="Supported Skills will Trigger Shockwave on Melee Hit" + } + }, + stats={ + [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" + } + }, + [782]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Triggered Spells have {0}% reduced Effect of Non-Damaging Ailments" + text="Deals {0}% of Pinned target's Maximum Life as Physical Damage" } }, stats={ - [1]="support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%" + [1]="support_bone_shrapnel_physical_damage_equal_to_%_monster_life" } }, - [693]={ + [783]={ [1]={ [1]={ limit={ @@ -16723,7 +18719,7 @@ return { [2]="#" } }, - text="{0}% more Magnitude of Bleeding inflicted with Supported Attacks" + text="Supported Skills have {0}% more Area of Effect" }, [2]={ [1]={ @@ -16736,56 +18732,43 @@ return { [2]=-1 } }, - text="{0}% less Magnitude of Bleeding inflicted with Supported Attacks" + text="Supported Skills have {0}% less Area of Effect" } }, stats={ - [1]="support_chance_to_bleed_bleeding_effect_+%_final" + [1]="support_brand_area_of_effect_+%_final" } }, - [694]={ + [784]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" - }, - [2]={ - [1]=1, - [2]="#" } }, - text="Supported Skills deal {0}% more Damage per second spent Channelling, up to {1}%" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ k="negate", v=1 }, - [2]={ - k="negate", - v=2 - }, limit={ [1]={ [1]="#", [2]=-1 - }, - [2]={ - [1]="#", - [2]=-1 } }, - text="Supported Skills deal {0}% less Damage per second spent Channelling, up to {1}%" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_chanelling_damage_+%_final_per_second_channelling", - [2]="support_channelling_damage_cap" + [1]="support_brand_damage_+%_final" } }, - [695]={ + [785]={ [1]={ [1]={ limit={ @@ -16794,7 +18777,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Chaos Damage" + text="Supported Skills deal {0}% more Damage to Heavy Stunned Enemies" }, [2]={ [1]={ @@ -16807,14 +18790,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Chaos Damage" + text="Supported Skills deal {0}% less Damage to Heavy Stunned Enemies" } }, stats={ - [1]="support_chaos_attacks_damage_+%_final" + [1]="support_brink_damage_+%_final_vs_heavy_stunned_target" } }, - [696]={ + [786]={ [1]={ [1]={ limit={ @@ -16823,7 +18806,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more\nChaos Damage if consuming a Corpse" + text="Hits with Supported Skills cause {0}% more Stun buildup" }, [2]={ [1]={ @@ -16836,14 +18819,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less\nChaos Damage if consuming a Corpse" + text="Hits with Supported Skills cause {0}% less Stun buildup" } }, stats={ - [1]="support_chaos_damage_+%_final_if_corpse_consumed_on_use" + [1]="support_brink_hit_damage_stun_multiplier_+%_final" } }, - [697]={ + [787]={ [1]={ [1]={ limit={ @@ -16852,7 +18835,7 @@ return { [2]="#" } }, - text="Supported Attacks deal {0}% more non-Chaos Damage" + text="Supported Skills deal {0}% more Burning Damage" }, [2]={ [1]={ @@ -16865,14 +18848,14 @@ return { [2]=-1 } }, - text="Supported Attacks deal {0}% less non-Chaos Damage" + text="Supported Skills deal {0}% less Burning Damage" } }, stats={ - [1]="support_chaos_support_non_chaos_damage_+%_final" + [1]="support_burning_damage_+%_final" } }, - [698]={ + [788]={ [1]={ [1]={ limit={ @@ -16881,100 +18864,80 @@ return { [2]="#" } }, - text="Damage over time with non-Ailment Debuffs inflicted on full-life enemies by Supported Skills deal {0}% more damage" + text="Create Ignited Ground, Igniting enemies as though dealing Fire Damage equal to {0}% of your Maximum Mana" } }, stats={ - [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" + [1]="support_burning_runes_base_fire_damage_equal_to_%_maximum_mana" } }, - [699]={ + [789]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Supported Skills have {0}% more Skill Effect Duration" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Supported Skills have {0}% less Skill Effect Duration" + text="Poison from Supported Skills also adds {0}% of Damage per Second to Enemy as Plague, up to a maximum of {1}% of Enemy's maximum Life" } }, stats={ - [1]="support_chaotic_assassination_skill_effect_duration_+%_final" + [1]="support_bursting_plague_store_%_poison_applied_magnitude_towards_burst", + [2]="support_bursting_plague_max_value_%_of_max_life" } }, - [700]={ + [790]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Chaos damage Contributes to Freeze buildup for Hits against targets taking damage over time from Supported Skills" + text="Supported Skills fire {0} additional Projectiles when Attacking in indicated direction" } }, stats={ - [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" + [1]="support_called_shots_additional_projectiles_when_matching_indicated_direction" } }, - [701]={ + [791]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=1 + [2]="#" } }, - text="Every shot with Supported Skills is a Charged Shot" + text="Supported Skills deal {0}% more Projectile Damage when Attacking in indicated direction" }, [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + [1]={ + k="negate", + v=1 }, - text="One in every {0} shots with Supported Skills is a Charged Shot" - } - }, - stats={ - [1]="support_charged_shots_applies_every_X_shots" - } - }, - [702]={ - [1]={ - [1]={ limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Charged Shots with Supported Skills Gain {0}% of Damage as extra Lightning Damage" + text="Supported Skills deal {0}% less Projectile Damage when Attacking in indicated direction" } }, stats={ - [1]="support_charged_shots_%_damage_to_gain_as_lightning" + [1]="support_called_shots_projectile_damage_+%_final_when_matching_direction" } }, - [703]={ + [792]={ [1]={ [1]={ limit={ @@ -16983,14 +18946,14 @@ return { [2]="#" } }, - text="Charged Shots with Supported Skills recover {0}% of their Mana cost when used" + text="{0}% of maximum Life recovered on Kill while a Supported Skill is active" } }, stats={ - [1]="support_charged_shots_recover_%_mana_cost_on_use" + [1]="support_cannibalism_recover_%_maximum_life_on_kill" } }, - [704]={ + [793]={ [1]={ [1]={ limit={ @@ -16999,7 +18962,7 @@ return { [2]="#" } }, - text="Enemies killed by Hits from Supported Skills grant {0}% more Charm charges" + text="Supported Skills deal {0}% more Attack Damage" }, [2]={ [1]={ @@ -17012,14 +18975,14 @@ return { [2]=-1 } }, - text="Enemies killed by Hits from Supported Skills grant {0}% less Charm charges" + text="Supported Skills deal {0}% less Attack Damage" } }, stats={ - [1]="support_charm_charges_gained_+%_final_from_killing_blow" + [1]="support_cast_on_crit_quality_attack_damage_+%_final" } }, - [705]={ + [794]={ [1]={ [1]={ limit={ @@ -17028,7 +18991,7 @@ return { [2]="#" } }, - text="Chilled Ground created by Supported Skills has {0}% more duration" + text="Supported Triggered Spells have {0}% increased Effect of Non-Damaging Ailments" }, [2]={ [1]={ @@ -17041,14 +19004,14 @@ return { [2]=-1 } }, - text="Chilled Ground created by Supported Skills has {0}% less duration" + text="Supported Triggered Spells have {0}% reduced Effect of Non-Damaging Ailments" } }, stats={ - [1]="support_chilled_ground_effect_duration_+%_final" + [1]="support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%" } }, - [706]={ + [795]={ [1]={ [1]={ limit={ @@ -17057,7 +19020,7 @@ return { [2]="#" } }, - text="{0}% Increased Mana Regeneration Rate while a Supported Skill is active" + text="{0}% more Magnitude of Bleeding inflicted with Supported Attacks" }, [2]={ [1]={ @@ -17070,59 +19033,56 @@ return { [2]=-1 } }, - text="{0}% Reduced Mana Regeneration Rate while a Supported Skill is active" + text="{0}% less Magnitude of Bleeding inflicted with Supported Attacks" } }, stats={ - [1]="support_clarity_mana_regeneration_rate_+%" + [1]="support_chance_to_bleed_bleeding_effect_+%_final" } }, - [707]={ + [796]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" - } - }, - text="Supported Skills deal {0}% more Attack Damage to \nenemies within 1 metre of you, scaling down to\nno bonus at 3.5 metres or further" - } - }, - stats={ - [1]="support_close_combat_attack_damage_+%_final_from_distance" - } - }, - [708]={ - [1]={ - [1]={ - limit={ - [1]={ + }, + [2]={ [1]=1, [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Supported Skills deal {0}% more Damage per second spent Channelling, up to {1}%" }, [2]={ [1]={ k="negate", v=1 }, + [2]={ + k="negate", + v=2 + }, limit={ [1]={ [1]="#", [2]=-1 + }, + [2]={ + [1]="#", + [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Supported Skills deal {0}% less Damage per second spent Channelling, up to {1}%" } }, stats={ - [1]="support_clustertrap_damage_+%_final" + [1]="support_chanelling_damage_+%_final_per_second_channelling", + [2]="support_channelling_damage_cap" } }, - [709]={ + [797]={ [1]={ [1]={ limit={ @@ -17131,7 +19091,7 @@ return { [2]="#" } }, - text="Supported Attacks deal {0}% more Cold and Fire Damage" + text="Supported Skills deal {0}% more Chaos Damage" }, [2]={ [1]={ @@ -17144,14 +19104,14 @@ return { [2]=-1 } }, - text="Supported Attacks deal {0}% less Cold and Fire Damage" + text="Supported Skills deal {0}% less Chaos Damage" } }, stats={ - [1]="support_cold_and_fire_damage_+%_final" + [1]="support_chaos_attacks_damage_+%_final" } }, - [710]={ + [798]={ [1]={ [1]={ limit={ @@ -17160,7 +19120,7 @@ return { [2]="#" } }, - text="Supported Attacks deal {0}% more Cold and Lightning Damage" + text="Supported Skills deal {0}% more\nChaos Damage if consuming a Corpse" }, [2]={ [1]={ @@ -17173,14 +19133,14 @@ return { [2]=-1 } }, - text="Supported Attacks deal {0}% less Cold and Lightning Damage" + text="Supported Skills deal {0}% less\nChaos Damage if consuming a Corpse" } }, stats={ - [1]="support_cold_and_lightning_damage_+%_final" + [1]="support_chaos_damage_+%_final_if_corpse_consumed_on_use" } }, - [711]={ + [799]={ [1]={ [1]={ limit={ @@ -17189,7 +19149,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Supported Skills deal {0}% more\nChaos Damage for each Corpse consumed this way" }, [2]={ [1]={ @@ -17202,14 +19162,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Supported Skills deal {0}% less\nChaos Damage for each Corpse consumed this way" } }, stats={ - [1]="support_cold_exposure_damage_+%_final" + [1]="support_chaos_damage_+%_final_per_corpse_consumed_on_use" } }, - [712]={ + [800]={ [1]={ [1]={ limit={ @@ -17218,7 +19178,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Supported Attacks deal {0}% more non-Chaos Damage" }, [2]={ [1]={ @@ -17231,30 +19191,30 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Supported Attacks deal {0}% less non-Chaos Damage" } }, stats={ - [1]="support_combo_finisher_damage_+%_final" + [1]="support_chaos_support_non_chaos_damage_+%_final" } }, - [713]={ + [801]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Supported Skills require {0} Combo to use" + text="Damage over time with non-Ailment Debuffs inflicted on full-life enemies by Supported Skills deal {0}% more damage" } }, stats={ - [1]="support_combo_finisher_required_number_of_combo_stacks" + [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" } }, - [714]={ + [802]={ [1]={ [1]={ limit={ @@ -17263,7 +19223,7 @@ return { [2]="#" } }, - text="Supported Minions' Command Skills deal {0}% more Damage" + text="Supported Skills have {0}% more Skill Effect Duration" }, [2]={ [1]={ @@ -17276,81 +19236,87 @@ return { [2]=-1 } }, - text="Supported Minions' Command Skills deal {0}% less Damage" + text="Supported Skills have {0}% less Skill Effect Duration" } }, stats={ - [1]="support_command_skill_damage_+%_final" + [1]="support_chaotic_assassination_skill_effect_duration_+%_final" } }, - [715]={ + [803]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]="#" - }, - [2]={ [1]="#", [2]="#" } }, - text="Supported Skills consume {1}% of your maximum Life Flask charges on use\nSupported Skills have {0}% more Magnitude of Bleeding they inflict per Life Flask charge consumed" + text="Chaos damage Contributes to Freeze buildup for Hits against targets taking damage over time from Supported Skills" + } + }, + stats={ + [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" + } + }, + [804]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Every shot with Supported Skills is a Charged Shot" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ - [1]="#", - [2]=-1 - }, - [2]={ [1]="#", [2]="#" } }, - text="Supported Skills consume {1}% of your maximum Life Flask charges on use\nSupported Skills have {0}% less Magnitude of Bleeding they inflict per Life Flask charge consumed" + text="One in every {0} shots with Supported Skills is a Charged Shot" } }, stats={ - [1]="support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed", - [2]="consume_%_of_maximum_life_flask_charges_on_skill_use" + [1]="support_charged_shots_applies_every_X_shots" } }, - [716]={ + [805]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Supported Skills have {0}% more chance to Shock" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Charged Shots with Supported Skills Gain {0}% of Damage as extra Lightning Damage" + } + }, + stats={ + [1]="support_charged_shots_%_damage_to_gain_as_lightning" + } + }, + [806]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Skills have {0}% less chance to Shock" + text="Charged Shots with Supported Skills recover {0}% of their Mana cost when used" } }, stats={ - [1]="support_conduction_chance_to_shock_+%_final" + [1]="support_charged_shots_recover_%_mana_cost_on_use" } }, - [717]={ + [807]={ [1]={ [1]={ limit={ @@ -17359,7 +19325,7 @@ return { [2]="#" } }, - text="Supported Skills consume a Power Charge on use\nSupported Skills have {0}% more duration when consuming a Power Charge" + text="Enemies killed by Hits from Supported Skills grant {0}% more Charm charges" }, [2]={ [1]={ @@ -17372,14 +19338,14 @@ return { [2]=-1 } }, - text="Supported Skills consume a Power Charge on use\nSupported Skills have {0}% less duration when consuming a Power Charge" + text="Enemies killed by Hits from Supported Skills grant {0}% less Charm charges" } }, stats={ - [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" + [1]="support_charm_charges_gained_+%_final_from_killing_blow" } }, - [718]={ + [808]={ [1]={ [1]={ limit={ @@ -17388,7 +19354,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased cooldown recovery rate" + text="Chilled Ground created by Supported Skills has {0}% more duration" }, [2]={ [1]={ @@ -17401,14 +19367,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% reduced cooldown recovery rate" + text="Chilled Ground created by Supported Skills has {0}% less duration" } }, stats={ - [1]="support_cooldown_reduction_cooldown_recovery_+%" + [1]="support_chilled_ground_effect_duration_+%_final" } }, - [719]={ + [809]={ [1]={ [1]={ limit={ @@ -17417,7 +19383,7 @@ return { [2]="#" } }, - text="Supported Warcries have {0}% more Area of Effect" + text="{0}% Increased Mana Regeneration Rate while a Supported Skill is active" }, [2]={ [1]={ @@ -17430,92 +19396,88 @@ return { [2]=-1 } }, - text="Supported Warcries have {0}% less Area of Effect" + text="{0}% Reduced Mana Regeneration Rate while a Supported Skill is active" } }, stats={ - [1]="support_corrupting_cry_area_of_effect_+%_final" + [1]="support_clarity_mana_regeneration_rate_+%" } }, - [720]={ + [810]={ [1]={ [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, limit={ [1]={ [1]=1, [2]="#" } }, - text="Corrupted Blood deals {0}% of your Strength as\nPhysical Damage per second" + text="Supported Skills deal {0}% more Attack Damage to \nenemies within 1 metre of you, scaling down to\nno bonus at 3.5 metres or further" } }, stats={ - [1]="support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength" + [1]="support_close_combat_attack_damage_+%_final_from_distance" } }, - [721]={ + [811]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ - [1]=1000, - [2]=1000 + [1]=1, + [2]="#" } }, - text="Corrupted Blood duration is {0} second" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Corrupted Blood duration is {0} seconds" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_corrupting_cry_corrupted_blood_duration_ms" + [1]="support_clustertrap_damage_+%_final" } }, - [722]={ + [812]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=1 + [2]="#" } }, - text="Supported Warcries inflict Corrupted Blood" + text="Supported Attacks deal {0}% more Cold and Fire Damage" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ - [1]=2, - [2]="#" + [1]="#", + [2]=-1 } }, - text="Supported Warcries inflict {0} Corrupted Blood Debuffs" + text="Supported Attacks deal {0}% less Cold and Fire Damage" } }, stats={ - [1]="support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood" + [1]="support_cold_and_fire_damage_+%_final" } }, - [723]={ + [813]={ [1]={ [1]={ limit={ @@ -17524,7 +19486,7 @@ return { [2]="#" } }, - text="Supported Minions deal {0}% more Damage if they have Revived Recently" + text="Supported Attacks deal {0}% more Cold and Lightning Damage" }, [2]={ [1]={ @@ -17537,14 +19499,14 @@ return { [2]=-1 } }, - text="Supported Minions deal {0}% less Damage if they have Revived Recently" + text="Supported Attacks deal {0}% less Cold and Lightning Damage" } }, stats={ - [1]="support_crazed_minions_minion_damage_+%_final_if_revived_recently" + [1]="support_cold_and_lightning_damage_+%_final" } }, - [724]={ + [814]={ [1]={ [1]={ limit={ @@ -17553,7 +19515,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more chance to Critically Hit" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -17566,14 +19528,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less chance to Critically Hit" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_crit_cooldown_crit_chance_+%_final" + [1]="support_cold_exposure_damage_+%_final" } }, - [725]={ + [815]={ [1]={ [1]={ limit={ @@ -17582,7 +19544,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Critical Hit chance" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -17595,14 +19557,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Critical Hit chance" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_critical_damage_critical_strike_chance_+%_final" + [1]="support_combo_finisher_damage_+%_final" } }, - [726]={ + [816]={ [1]={ [1]={ limit={ @@ -17611,7 +19573,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage with Hits" + text="Supported Skills deal {0}% more Damage per Combo" }, [2]={ [1]={ @@ -17624,43 +19586,98 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage with Hits" + text="Supported Skills deal {0}% less Damage per Combo" } }, stats={ - [1]="support_critical_damage_hit_damage_+%_final" + [1]="support_combo_finisher_damage_+%_final_per_combo" } }, - [727]={ + [817]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds", - v=1 - }, limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Enemies Stunned by Supported Skills are also Crushed for {0} seconds" + text="After expending Combo, next use of Supported Skill requires {0} additional Combo" } }, stats={ - [1]="support_crushing_stuns_crush_on_stun_ms" + [1]="support_combo_finisher_next_use_requires_x_additional_combo" } }, - [728]={ + [818]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=2 + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Supported Skills require {0} Combo to use" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills require {0} Combo for first use\nCombo requirement resets to {0} after expending {1} Combo" + } + }, + stats={ + [1]="support_combo_finisher_required_number_of_combo_stacks", + [2]="support_combo_finisher_max_combo_required" + } + }, + [819]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Minions' Command Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="Supported Minions' Command Skills deal {0}% less Damage" + } + }, + stats={ + [1]="support_command_skill_damage_+%_final" + } + }, + [820]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" }, [2]={ @@ -17668,31 +19685,916 @@ return { [2]="#" } }, - text="Destroying an Ice Crystal grants Supported Skills {0}% of Damage Gained as extra Cold for {1} seconds, per two thousand maximum Life of the destroyed Ice Crystal" + text="Supported Skills consume {1}% of your maximum Life Flask charges on use\nSupported Skills have {0}% more Magnitude of Bleeding they inflict per Life Flask charge consumed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills consume {1}% of your maximum Life Flask charges on use\nSupported Skills have {0}% less Magnitude of Bleeding they inflict per Life Flask charge consumed" } }, stats={ - [1]="support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life", - [2]="support_crystalshatter_buff_duration" + [1]="support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed", + [2]="consume_%_of_maximum_life_flask_charges_on_skill_use" } }, - [729]={ + [821]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more chance to Shock" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less chance to Shock" + } + }, + stats={ + [1]="support_conduction_chance_to_shock_+%_final" + } + }, + [822]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills consume an Endurance Charge on Use" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills consume {0} Endurance Charges on Use" + } + }, + stats={ + [1]="support_consume_X_endurance_charges_on_use" + } + }, + [823]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills consume a Power Charge on use\nSupported Skills have {0}% more duration when consuming a Power Charge" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills consume a Power Charge on use\nSupported Skills have {0}% less duration when consuming a Power Charge" + } + }, + stats={ + [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" + } + }, + [824]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% increased cooldown recovery rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% reduced cooldown recovery rate" + } + }, + stats={ + [1]="support_cooldown_reduction_cooldown_recovery_+%" + } + }, + [825]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Warcries have {0}% more Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Warcries have {0}% less Area of Effect" + } + }, + stats={ + [1]="support_corrupting_cry_area_of_effect_+%_final" + } + }, + [826]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Corrupted Blood deals {0}% of your Strength as\nPhysical Damage per second" + } + }, + stats={ + [1]="support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength" + } + }, + [827]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Corrupted Blood duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Corrupted Blood duration is {0} seconds" + } + }, + stats={ + [1]="support_corrupting_cry_corrupted_blood_duration_ms" + } + }, + [828]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Lose {0}% of maximum Life per Corrupted Blood inflicted by Supported Skills" + } + }, + stats={ + [1]="support_corrupting_cry_%_life_lost_per_corrupting_blood_applied" + } + }, + [829]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Warcries inflict Corrupted Blood" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Warcries inflict {0} Corrupted Blood Debuffs" + } + }, + stats={ + [1]="support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood" + } + }, + [830]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Minions deal {0}% more Damage if they have Revived Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Minions deal {0}% less Damage if they have Revived Recently" + } + }, + stats={ + [1]="support_crazed_minions_minion_damage_+%_final_if_revived_recently" + } + }, + [831]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills create Jagged Ground when consuming an Endurance Charge" + } + }, + stats={ + [1]="support_create_jagged_ground_if_consumed_endurance_charge" + } + }, + [832]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks with Supported Skills that are not Final Strikes have {0}% more Attack Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Attacks with Supported Skills that are not Final Strikes have {0}% less Attack Speed" + } + }, + stats={ + [1]="support_crescendo_non_final_strike_attack_speed_+%_final" + } + }, + [833]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more chance to Critically Hit" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less chance to Critically Hit" + } + }, + stats={ + [1]="support_crit_cooldown_crit_chance_+%_final" + } + }, + [834]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Critical Hit chance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Critical Hit chance" + } + }, + stats={ + [1]="support_critical_damage_critical_strike_chance_+%_final" + } + }, + [835]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage with Hits" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage with Hits" + } + }, + stats={ + [1]="support_critical_damage_hit_damage_+%_final" + } + }, + [836]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies Stunned by Supported Skills are also Crushed for {0} seconds" + } + }, + stats={ + [1]="support_crushing_stuns_crush_on_stun_ms" + } + }, + [837]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Destroying an Ice Crystal grants Supported Skills {0}% of Damage Gained as extra Cold for {1} seconds, per two thousand maximum Life of the destroyed Ice Crystal" + } + }, + stats={ + [1]="support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life", + [2]="support_crystalshatter_buff_duration" + } + }, + [838]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills have Culling Strike against Rare or Unique Enemies" + } + }, + stats={ + [1]="support_culling_strike_vs_rare_or_unique_enemy" + } + }, + [839]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curse zones from Supported\nSkills erupt after {0}% more delay" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Curse zones from Supported\nSkills erupt after {0}% less delay" + } + }, + stats={ + [1]="support_focus_curse_curse_delay_+%_final" + } + }, + [840]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Curses have {0}% more Magnitudes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Curses have {0}% less Magnitudes" + } + }, + stats={ + [1]="support_curse_effect_+%_final" + } + }, + [841]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to trigger Doedre's Dark Design when Enemies enter Cursed Ground created by Supported Skills" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Cursed Ground created by Supported Skills triggers Doedre's Dark Design when Enemies enter" + } + }, + stats={ + [1]="support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%" + } + }, + [842]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage per Combo" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage per Combo" + } + }, + stats={ + [1]="support_damage_+%_final_per_combo_stack" + } + }, + [843]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Crossbow Skills deal {0}% more Damage for\neach bolt Reloaded by that skill in the past 6 seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Crossbow Skills deal {0}% less Damage for\neach bolt Reloaded by that skill in the past 6 seconds" + } + }, + stats={ + [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" + } + }, + [844]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Crossbow Skills deal {0}% more Damage for\neach bolt Reloaded by that skill in the past 8 seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Crossbow Skills deal {0}% less Damage for\neach bolt Reloaded by that skill in the past 8 seconds" + } + }, + stats={ + [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds" + } + }, + [845]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Offering Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Offering Skills deal {0}% less Damage" + } + }, + stats={ + [1]="support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton" + } + }, + [846]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=999 + } + }, + text="Daze lasts for {0} seconds" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Daze lasts for {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1001, + [2]="#" + } + }, + text="Daze lasts for {0} seconds" + } + }, + stats={ + [1]="support_daze_break_duration_ms" + } + }, + [847]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_1dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=999 + } + }, + text="Daze lasts for {0} seconds" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_1dp", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Daze lasts for {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_1dp", + v=1 + }, + limit={ + [1]={ + [1]=1001, + [2]="#" + } + }, + text="Daze lasts for {0} seconds" + } + }, + stats={ + [1]="support_dazed_cry_duration_ms" + } + }, + [848]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage with Hits" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage with Hits" + } + }, + stats={ + [1]="support_deadly_poison_hit_damage_+%_final" + } + }, + [849]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Poison inflicted with Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Poison inflicted with Supported Skills" + } + }, + stats={ + [1]="support_deadly_poison_poison_effect_+%_final" + } + }, + [850]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills inflict Decay, dealing {0}% of Intelligence as Chaos damage per second for 8 seconds" + } + }, + stats={ + [1]="support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds" + } + }, + [851]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Bleeding inflicted with Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Bleeding inflicted with Supported Skills" + } + }, + stats={ + [1]="support_deep_cuts_bleeding_effect_+%_final" + } + }, + [852]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage with Hits" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Supported Skills have Culling Strike against Rare or Unique Enemies" + text="Supported Skills deal {0}% less Damage with Hits" } }, stats={ - [1]="support_culling_strike_vs_rare_or_unique_enemy" + [1]="support_deep_cuts_hit_damage_+%_final" } }, - [730]={ + [853]={ [1]={ [1]={ limit={ @@ -17701,7 +20603,7 @@ return { [2]="#" } }, - text="Supported Curses have {0}% more Magnitudes" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -17714,14 +20616,14 @@ return { [2]=-1 } }, - text="Supported Curses have {0}% less Magnitudes" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_curse_effect_+%_final" + [1]="support_deliberation_damage_+%_final" } }, - [731]={ + [854]={ [1]={ [1]={ limit={ @@ -17730,7 +20632,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage per Combo" + text="{0}% more Movement Speed penalty while\nusing Supported Skills" }, [2]={ [1]={ @@ -17743,14 +20645,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage per Combo" + text="{0}% less Movement Speed penalty while\nusing Supported Skills" } }, stats={ - [1]="support_damage_+%_final_per_combo_stack" + [1]="support_deliberation_movement_speed_penalty_+%_final_while_performing_action" } }, - [732]={ + [855]={ [1]={ [1]={ limit={ @@ -17759,7 +20661,23 @@ return { [2]="#" } }, - text="Supported Crossbow Skills deal {0}% more Damage for\neach bolt Reloaded by that skill in the past 6 seconds" + text="Fully Breaking Armour with Supported Skills causes affected targets to permanently take {0}% increased Physical Damage, up to 20%" + } + }, + stats={ + [1]="support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%" + } + }, + [856]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Accuracy Rating if used while Empowered" }, [2]={ [1]={ @@ -17772,14 +20690,14 @@ return { [2]=-1 } }, - text="Supported Crossbow Skills deal {0}% less Damage for\neach bolt Reloaded by that skill in the past 6 seconds" + text="Supported Skills have {0}% less Accuracy Rating if used while Empowered" } }, stats={ - [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" + [1]="support_discount_accuracy_rating_+%_final_if_empowered" } }, - [733]={ + [857]={ [1]={ [1]={ limit={ @@ -17788,7 +20706,7 @@ return { [2]="#" } }, - text="Supported Offering Skills deal {0}% more Damage" + text="Supported Skills cost {0}% more if used while Empowered" }, [2]={ [1]={ @@ -17801,106 +20719,72 @@ return { [2]=-1 } }, - text="Supported Offering Skills deal {0}% less Damage" + text="Supported Skills cost {0}% less if used while Empowered" } }, stats={ - [1]="support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton" + [1]="support_discount_skill_cost_+%_final_if_empowered" } }, - [734]={ + [858]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ [1]=1, - [2]=999 + [2]="#" } }, - text="Daze lasts for {0} seconds" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Daze lasts for {0} second" - }, - [3]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="negate", v=1 }, limit={ [1]={ - [1]=1001, - [2]="#" + [1]="#", + [2]=-1 } }, - text="Daze lasts for {0} seconds" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_daze_break_duration_ms" + [1]="support_divine_cry_damage_+%_final" } }, - [735]={ + [859]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_1dp", - v=1 - }, limit={ [1]={ [1]=1, - [2]=999 + [2]="#" } }, - text="Daze lasts for {0} seconds" + text="Supported Skills deal {0}% more Damage for each different Command Skill used in the last 8 seconds" }, [2]={ [1]={ - k="milliseconds_to_seconds_1dp", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Daze lasts for {0} second" - }, - [3]={ - [1]={ - k="milliseconds_to_seconds_1dp", + k="negate", v=1 }, limit={ [1]={ - [1]=1001, - [2]="#" + [1]="#", + [2]=-1 } }, - text="Daze lasts for {0} seconds" + text="Supported Skills deal {0}% less Damage for each different Command Skill used in the last 8 seconds" } }, stats={ - [1]="support_dazed_cry_duration_ms" + [1]="support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds" } }, - [736]={ + [860]={ [1]={ [1]={ limit={ @@ -17909,7 +20793,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage with Hits" + text="Supported Skills have {0}% less Reload Speed" }, [2]={ [1]={ @@ -17922,63 +20806,71 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage with Hits" + text="Supported Skills have {0}% more Reload Speed" } }, stats={ - [1]="support_deadly_poison_hit_damage_+%_final" + [1]="support_double_barrel_crossbow_reload_speed_-%_final" } }, - [737]={ + [861]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" + [2]=1 } }, - text="{0}% more Magnitude of Poison inflicted with Supported Skills" + text="Supported Skills load an additional bolt" }, [2]={ - [1]={ - k="negate", - v=1 + limit={ + [1]={ + [1]=2, + [2]="#" + } }, + text="Supported Skills load {0} additional bolts" + } + }, + stats={ + [1]="support_double_barrel_number_of_crossbow_bolts_+" + } + }, + [862]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% less Magnitude of Poison inflicted with Supported Skills" + text="Supported Skills have twice as many Cooldown Uses" } }, stats={ - [1]="support_deadly_poison_poison_effect_+%_final" + [1]="support_double_number_of_cooldown_uses" } }, - [738]={ + [863]={ [1]={ [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Skills inflict Decay, dealing {0}% of Intelligence as Chaos damage per second for 8 seconds" + text="Supported Skills Consume all Ailments of a random type on the target when inflicting damage over time Debuffs, causing the Debuff to deal {0}% more damage if any Ailments were consumed" } }, stats={ - [1]="support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds" + [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" } }, - [739]={ + [864]={ [1]={ [1]={ limit={ @@ -17987,7 +20879,7 @@ return { [2]="#" } }, - text="{0}% more Magnitude of Bleeding inflicted with Supported Skills" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -18000,14 +20892,14 @@ return { [2]=-1 } }, - text="{0}% less Magnitude of Bleeding inflicted with Supported Skills" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_deep_cuts_bleeding_effect_+%_final" + [1]="support_electrocute_damage_+%_final" } }, - [740]={ + [865]={ [1]={ [1]={ limit={ @@ -18016,7 +20908,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage with Hits" + text="Supported Skills deal {0}% more Attack Damage for each Elemental Ailment on Enemies they Hit" }, [2]={ [1]={ @@ -18029,14 +20921,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage with Hits" + text="Supported Skills deal {0}% less Attack Damage for each Elemental Ailment on Enemies they Hit" } }, stats={ - [1]="support_deep_cuts_hit_damage_+%_final" + [1]="support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target" } }, - [741]={ + [866]={ [1]={ [1]={ limit={ @@ -18045,7 +20937,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Supported Skills deal {0}% more Melee Damage for each Elemental Ailment on Enemies they Hit" }, [2]={ [1]={ @@ -18058,14 +20950,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Supported Skills deal {0}% less Melee Damage for each Elemental Ailment on Enemies they Hit" } }, stats={ - [1]="support_deliberation_damage_+%_final" + [1]="support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target" } }, - [742]={ + [867]={ [1]={ [1]={ limit={ @@ -18074,7 +20966,7 @@ return { [2]="#" } }, - text="{0}% more Movement Speed penalty while\nusing Supported Skills" + text="Supported Skills deal {0}% more Elemental Damage for each\nSkill used Recently of a different Elemental type" }, [2]={ [1]={ @@ -18087,14 +20979,30 @@ return { [2]=-1 } }, - text="{0}% less Movement Speed penalty while\nusing Supported Skills" + text="Supported Skills deal {0}% less Elemental Damage for each\nSkill used Recently of a different Elemental type" } }, stats={ - [1]="support_deliberation_movement_speed_penalty_+%_final_while_performing_action" + [1]="support_elemental_damage_+%_final_per_different_elemental_skill_used_recently" } }, - [743]={ + [868]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills Empowered by Supported Skills have Culling Strike" + } + }, + stats={ + [1]="support_empowered_culling_strike" + } + }, + [869]={ [1]={ [1]={ limit={ @@ -18103,7 +21011,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Accuracy Rating if used while Empowered" + text="Skills Empowered by Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -18116,14 +21024,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Accuracy Rating if used while Empowered" + text="Skills Empowered by Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_discount_accuracy_rating_+%_final_if_empowered" + [1]="support_empowered_damage_+%_final" } }, - [744]={ + [870]={ [1]={ [1]={ limit={ @@ -18132,7 +21040,7 @@ return { [2]="#" } }, - text="Supported Skills cost {0}% more if used while Empowered" + text="Supported Skills have {0}% more Flammability Magnitude" }, [2]={ [1]={ @@ -18145,14 +21053,14 @@ return { [2]=-1 } }, - text="Supported Skills cost {0}% less if used while Empowered" + text="Supported Skills have {0}% less Flammability Magnitude" } }, stats={ - [1]="support_discount_skill_cost_+%_final_if_empowered" + [1]="support_eternal_flame_chance_to_ignite_+%_final" } }, - [745]={ + [871]={ [1]={ [1]={ limit={ @@ -18161,7 +21069,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Supported Skills deal {0}% more Damage with Hits while you are on Low Life" }, [2]={ [1]={ @@ -18174,14 +21082,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Supported Skills deal {0}% less Damage with Hits while you are on Low Life" } }, stats={ - [1]="support_divine_cry_damage_+%_final" + [1]="support_executioner_damage_+%_final_while_on_low_life" } }, - [746]={ + [872]={ [1]={ [1]={ limit={ @@ -18190,7 +21098,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% less Reload Speed" + text="Supported Skills deal {0}% more Damage with Hits against Enemies that are on Low Life" }, [2]={ [1]={ @@ -18203,55 +21111,70 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% more Reload Speed" + text="Supported Skills deal {0}% less Damage with Hits against Enemies that are on Low Life" + } + }, + stats={ + [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" + } + }, + [873]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_0dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Killing Blows from Supported Strike Skills against Rare monsters grant one of their Modifiers for {0} seconds" } }, stats={ - [1]="support_double_barrel_crossbow_reload_speed_-%_final" + [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [747]={ + [874]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + [1]={ + k="milliseconds_to_seconds_0dp", + v=1 }, - text="Supported Skills load an additional bolt" - }, - [2]={ limit={ [1]={ [1]=1, - [2]=1 + [2]="#" } }, - text="Supported Skills load {0} additional bolts" + text="Killing Blows from Supported Strike Skills against Rare monsters grant two of their Modifiers for {0} seconds" } }, stats={ - [1]="support_double_barrel_number_of_crossbow_bolts_+" + [1]="support_executioner_gain_two_rare_monster_mod_on_kill_ms" } }, - [748]={ + [875]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Skills have twice as many Cooldown Uses" + text="{0}% chance to refresh Duration of granted Modifier by up to 5 seconds when you Hit a Rare or Unique Enemy with Supported Skills" } }, stats={ - [1]="support_double_number_of_cooldown_uses" + [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [749]={ + [876]={ [1]={ [1]={ limit={ @@ -18260,14 +21183,14 @@ return { [2]="#" } }, - text="Supported Skills Consume all Ailments of a random type on the target when inflicting damage over time Debuffs, causing the Debuff to deal {0}% more damage if any Ailments were consumed" + text="Supported Skills deal {0}% more Attack Damage to \nenemies further than 7 metres from you, scaling down to\nno bonus at 3.5 metres or closer" } }, stats={ - [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" + [1]="support_far_combat_attack_damage_+%_final_from_distance" } }, - [750]={ + [877]={ [1]={ [1]={ limit={ @@ -18276,7 +21199,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Supported Skills have {0}% more Attack Speed" }, [2]={ [1]={ @@ -18289,14 +21212,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Supported Skills have {0}% less Attack Speed" } }, stats={ - [1]="support_electrocute_damage_+%_final" + [1]="support_faster_attacks_attack_speed_+%_final" } }, - [751]={ + [878]={ [1]={ [1]={ limit={ @@ -18305,7 +21228,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Melee Damage for each Elemental Ailment on Enemies they Hit" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -18318,14 +21241,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Melee Damage for each Elemental Ailment on Enemies they Hit" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target" + [1]="support_faster_attacks_damage_+%_final" } }, - [752]={ + [879]={ [1]={ [1]={ limit={ @@ -18334,7 +21257,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Elemental Damage for each\nSkill used Recently of a different Elemental type" + text="Supported Skills have {0}% more Cast Speed" }, [2]={ [1]={ @@ -18347,30 +21270,43 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Elemental Damage for each\nSkill used Recently of a different Elemental type" + text="Supported Skills have {0}% less Cast Speed" } }, stats={ - [1]="support_elemental_damage_+%_final_per_different_elemental_skill_used_recently" + [1]="support_faster_casting_cast_speed_+%_final" } }, - [753]={ + [880]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Skills Empowered by Supported Skills have Culling Strike" + text="Supported Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_empowered_culling_strike" + [1]="support_faster_casting_damage_+%_final" } }, - [754]={ + [881]={ [1]={ [1]={ limit={ @@ -18379,7 +21315,7 @@ return { [2]="#" } }, - text="Skills Empowered by Supported Skills deal {0}% more Damage" + text="Supported Skills have {0}% more Projectile Speed" }, [2]={ [1]={ @@ -18392,14 +21328,14 @@ return { [2]=-1 } }, - text="Skills Empowered by Supported Skills deal {0}% less Damage" + text="Supported Skills have {0}% less Projectile Speed" } }, stats={ - [1]="support_empowered_damage_+%_final" + [1]="support_faster_projectiles_projectile_speed_+%_final" } }, - [755]={ + [882]={ [1]={ [1]={ limit={ @@ -18408,7 +21344,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more chance to Ignite" + text="Supported Attacks deal {0}% more Fire and Lightning Damage" }, [2]={ [1]={ @@ -18421,14 +21357,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less chance to Ignite" + text="Supported Attacks deal {0}% less Fire and Lightning Damage" } }, stats={ - [1]="support_eternal_flame_chance_to_ignite_+%_final" + [1]="support_fire_and_lightning_damage_+%_final" } }, - [756]={ + [883]={ [1]={ [1]={ limit={ @@ -18437,7 +21373,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage with Hits against Enemies that are on Low Life" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -18450,50 +21386,39 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage with Hits against Enemies that are on Low Life" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" + [1]="support_fire_exposure_damage_+%_final" } }, - [757]={ + [884]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_0dp", - v=1 - }, limit={ [1]={ [1]=1, - [2]="#" + [2]=1 } }, - text="Killing Blows from Supported Strike Skills against Rare monsters grant one of their Modifiers for {0} seconds" - } - }, - stats={ - [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" - } - }, - [758]={ - [1]={ - [1]={ + text="Supported Skills create {0} Fissure on landing" + }, + [2]={ limit={ [1]={ - [1]=1, + [1]=2, [2]="#" } }, - text="{0}% chance to refresh Duration of granted Modifier by up to 5 seconds when you Hit a Rare or Unique Enemy with Supported Skills" + text="Supported Skills create {0} Fissures on landing" } }, stats={ - [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" + [1]="support_fissure_on_landing_create_X_fissures_on_impact" } }, - [759]={ + [885]={ [1]={ [1]={ limit={ @@ -18502,7 +21427,7 @@ return { [2]="#" } }, - text="Exposure applied by Supported Skills has {0}% increased effect" + text="Curse zones from Supported\nSkills erupt after {0}% more delay" }, [2]={ [1]={ @@ -18515,30 +21440,14 @@ return { [2]=-1 } }, - text="Exposure applied by Supported Skills has {0}% reduced effect" - } - }, - stats={ - [1]="support_exposure_effect_+%" - } - }, - [760]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills deal {0}% more Attack Damage to \nenemies further than 7 metres from you, scaling down to\nno bonus at 3.5 metres or closer" + text="Curse zones from Supported\nSkills erupt after {0}% less delay" } }, stats={ - [1]="support_far_combat_attack_damage_+%_final_from_distance" + [1]="support_focus_curse_curse_delay_+%_final" } }, - [761]={ + [886]={ [1]={ [1]={ limit={ @@ -18564,10 +21473,10 @@ return { } }, stats={ - [1]="support_faster_attacks_attack_speed_+%_final" + [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [762]={ + [887]={ [1]={ [1]={ limit={ @@ -18593,10 +21502,10 @@ return { } }, stats={ - [1]="support_faster_attacks_damage_+%_final" + [1]="support_focused_ballista_totem_damage_+%_final" } }, - [763]={ + [888]={ [1]={ [1]={ limit={ @@ -18605,7 +21514,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Cast Speed" + text="Supported Skills deal {0}% more Melee Damage" }, [2]={ [1]={ @@ -18618,14 +21527,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Cast Speed" + text="Supported Skills deal {0}% less Melee Damage" } }, stats={ - [1]="support_faster_casting_cast_speed_+%_final" + [1]="support_fortify_melee_damage_+%_final" } }, - [764]={ + [889]={ [1]={ [1]={ limit={ @@ -18634,7 +21543,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="{0}% more Freeze duration on you while a Supported Skill is active" }, [2]={ [1]={ @@ -18647,43 +21556,30 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="{0}% less Freeze duration on you while a Supported Skill is active" } }, stats={ - [1]="support_faster_casting_damage_+%_final" + [1]="support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final" } }, - [765]={ + [890]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills have {0}% more Projectile Speed" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Skills have {0}% less Projectile Speed" + text="DNT Deal Cold damage equal to {0}% of the killed Minion's maximum Life" } }, stats={ - [1]="support_faster_projectiles_projectile_speed_+%_final" + [1]="support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage" } }, - [766]={ + [891]={ [1]={ [1]={ limit={ @@ -18692,7 +21588,7 @@ return { [2]="#" } }, - text="Supported Attacks deal {0}% more Fire and Lightning Damage" + text="{0}% more Magnitude of Ignite inflicted on Frozen Unique enemies with Supported Skills" }, [2]={ [1]={ @@ -18705,14 +21601,14 @@ return { [2]=-1 } }, - text="Supported Attacks deal {0}% less Fire and Lightning Damage" + text="{0}% less Magnitude of Ignite inflicted on Frozen Unique enemies with Supported Skills" } }, stats={ - [1]="support_fire_and_lightning_damage_+%_final" + [1]="support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies" } }, - [767]={ + [892]={ [1]={ [1]={ limit={ @@ -18721,27 +21617,14 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Supported Skills deal {0}% less Damage" + text="Deals {0}% of Frozen target's Maximum Life as Cold Damage" } }, stats={ - [1]="support_fire_exposure_damage_+%_final" + [1]="support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage" } }, - [768]={ + [893]={ [1]={ [1]={ limit={ @@ -18750,7 +21633,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Attack Speed" + text="Supported Skills have {0}% more Skill Speed" }, [2]={ [1]={ @@ -18763,14 +21646,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Attack Speed" + text="Supported Skills have {0}% less Skill Speed" } }, stats={ - [1]="support_focused_ballista_totem_attack_speed_+%_final" + [1]="support_fusillade_skill_speed_+%_final" } }, - [769]={ + [894]={ [1]={ [1]={ limit={ @@ -18779,7 +21662,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage" + text="Projectiles from Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -18792,14 +21675,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage" + text="Projectiles from Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_focused_ballista_totem_damage_+%_final" + [1]="support_gambleshot_projectile_damage_+%_final" } }, - [770]={ + [895]={ [1]={ [1]={ limit={ @@ -18808,7 +21691,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Melee Damage" + text="Supported Skills Consume Enemy Fully Broken Armour to deal {0}% more Damage" }, [2]={ [1]={ @@ -18821,43 +21704,34 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Melee Damage" + text="Supported Skills Consume Enemy Fully Broken Armour to deal {0}% less Damage" } }, stats={ - [1]="support_fortify_melee_damage_+%_final" + [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [771]={ + [896]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more Freeze duration on you while a Supported Skill is active" - }, - [2]={ [1]={ - k="negate", + k="milliseconds_to_seconds", v=1 }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]=1, + [2]="#" } }, - text="{0}% less Freeze duration on you while a Supported Skill is active" + text="Phantasms last {0} seconds" } }, stats={ - [1]="support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final" + [1]="support_ghost_base_duration" } }, - [772]={ + [897]={ [1]={ [1]={ limit={ @@ -18866,7 +21740,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Skill Speed" + text="Ice Crystals created by Supported Skills have {0}% more Life" }, [2]={ [1]={ @@ -18879,14 +21753,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Skill Speed" + text="Ice Crystals created by Supported Skills have {0}% less Life" } }, stats={ - [1]="support_fusillade_skill_speed_+%_final" + [1]="support_glacier_ice_crystal_maximum_life_+%_final" } }, - [773]={ + [898]={ [1]={ [1]={ limit={ @@ -18895,7 +21769,7 @@ return { [2]="#" } }, - text="Projectiles from Supported Skills deal {0}% more Damage" + text="Supported Skills require {0}% more Glory to use" }, [2]={ [1]={ @@ -18908,14 +21782,14 @@ return { [2]=-1 } }, - text="Projectiles from Supported Skills deal {0}% less Damage" + text="Supported Skills require {0}% less Glory to use" } }, stats={ - [1]="support_gambleshot_projectile_damage_+%_final" + [1]="support_glory_required_+%_final" } }, - [774]={ + [899]={ [1]={ [1]={ limit={ @@ -18924,7 +21798,7 @@ return { [2]="#" } }, - text="Supported Skills Consume Enemy Fully Broken Armour to deal {0}% more Damage" + text="Supported Skills deal {0}% more Projectile Damage" }, [2]={ [1]={ @@ -18937,43 +21811,65 @@ return { [2]=-1 } }, - text="Supported Skills Consume Enemy Fully Broken Armour to deal {0}% less Damage" + text="Supported Skills deal {0}% less Projectile Damage" } }, stats={ - [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" + [1]="support_greater_projectile_intensity_projectile_damage_+%_final" } }, - [775]={ + [900]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Totem Limit instead grants {0}% increased Area of Effect for Totems per Limit to Supported Skills, up to {1}%" + }, + [2]={ [1]={ - k="milliseconds_to_seconds", + k="negate", v=1 }, limit={ [1]={ + [1]="#", + [2]=-1 + }, + [2]={ [1]=1, [2]="#" } }, - text="Phantasms last {0} seconds" + text="Totem Limit instead grants {0}% reduced Area of Effect for Totems per Limit to Supported Skills, up to {1}%" } }, stats={ - [1]="support_ghost_base_duration" + [1]="support_greatwood_totem_area_of_effect_+%_per_totem_allowed", + [2]="support_greatwood_totem_area_of_effect_+%_cap" } }, - [776]={ + [901]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Ice Crystals created by Supported Skills have {0}% more Life" + text="Totem Limit instead grants {0}% more Area of Effect for Totems per Limit to Supported Skills, up to {1}%" }, [2]={ [1]={ @@ -18984,25 +21880,34 @@ return { [1]={ [1]="#", [2]=-1 + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Ice Crystals created by Supported Skills have {0}% less Life" + text="Totem Limit instead grants {0}% less Area of Effect for Totems per Limit to Supported Skills, up to {1}%" } }, stats={ - [1]="support_glacier_ice_crystal_maximum_life_+%_final" + [1]="support_greatwood_totem_area_of_effect_+%_final_per_totem_allowed", + [2]="support_greatwood_totem_area_of_effect_+%_final_cap" } }, - [777]={ + [902]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Supported Skills deal {0}% more Projectile Damage" + text="Totem Limit instead grants {0}% more Totem Damage per Limit to Supported Skills, up to {1}%" }, [2]={ [1]={ @@ -19013,25 +21918,34 @@ return { [1]={ [1]="#", [2]=-1 + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Supported Skills deal {0}% less Projectile Damage" + text="Totem Limit instead grants {0}% less Totem Damage per Limit to Supported Skills, up to {1}%" } }, stats={ - [1]="support_greater_projectile_intensity_projectile_damage_+%_final" + [1]="support_greatwood_totem_damage_+%_final_per_totem_allowed", + [2]="support_greatwood_totem_damage_+%_final_cap" } }, - [778]={ + [903]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Totem Limit instead grants {0}% more Area of Effect for Totems per Limit to Supported Skills, up to 20%" + text="Totem Limit instead grants {0}% more Totem Life per Limit to Supported Skills, up to {1}%" }, [2]={ [1]={ @@ -19042,16 +21956,21 @@ return { [1]={ [1]="#", [2]=-1 + }, + [2]={ + [1]=1, + [2]="#" } }, - text="Totem Limit instead grants {0}% less Area of Effect for Totems per Limit to Supported Skills, up to 20%" + text="Totem Limit instead grants {0}% less Totem Life per Limit to Supported Skills, up to {1}%" } }, stats={ - [1]="support_greatwood_totem_area_of_effect_+%_final_per_totem_allowed" + [1]="support_greatwood_totem_life_+%_final_per_totem_allowed", + [2]="support_greatwood_totem_life_+%_final_cap" } }, - [779]={ + [904]={ [1]={ [1]={ limit={ @@ -19060,7 +21979,7 @@ return { [2]="#" } }, - text="Totem Limit instead grants {0}% more Totem Damage per Limit to Supported Skills, up to 40%" + text="Supported Skills have {0}% more Attack speed" }, [2]={ [1]={ @@ -19073,14 +21992,14 @@ return { [2]=-1 } }, - text="Totem Limit instead grants {0}% less Totem Damage per Limit to Supported Skills, up to 40%" + text="Supported Skills have {0}% less Attack speed" } }, stats={ - [1]="support_greatwood_totem_damage_+%_final_per_totem_allowed" + [1]="support_grenade_ballista_attack_speed_+%_final" } }, - [780]={ + [905]={ [1]={ [1]={ limit={ @@ -19089,7 +22008,7 @@ return { [2]="#" } }, - text="Totem Limit instead grants {0}% more Totem Life per Limit to Supported Skills, up to 40%" + text="Supported Grenade Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -19102,14 +22021,14 @@ return { [2]=-1 } }, - text="Totem Limit instead grants {0}% less Totem Life per Limit to Supported Skills, up to 40%" + text="Supported Grenade Skills deal {0}% less Damage" } }, stats={ - [1]="support_greatwood_totem_life_+%_final_per_totem_allowed" + [1]="support_grenade_ballista_damage_+%_final" } }, - [781]={ + [906]={ [1]={ [1]={ limit={ @@ -19138,7 +22057,7 @@ return { [1]="support_grenade_damage_+%_final" } }, - [782]={ + [907]={ [1]={ [1]={ limit={ @@ -19180,7 +22099,7 @@ return { [2]="support_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [783]={ + [908]={ [1]={ [1]={ limit={ @@ -19196,7 +22115,108 @@ return { [1]="support_haemocrystals_maximum_allowed_crystals" } }, - [784]={ + [909]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Totems created by Supported Skills have {0}% chance to trigger Tawhoa's Vengeance on death" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Totems created by Supported Skills trigger Tawhoa's Vengeance on death" + } + }, + stats={ + [1]="support_hardy_totems_trigger_splinter_explosion_on_death_chance_%" + } + }, + [910]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=10, + [2]=10 + } + }, + text="After {0} Enemy is killed within {1} metre of objects created by Supported Skills, they will shatter and Trigger Skittering Stones" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=10, + [2]=10 + } + }, + text="After {0} Enemies are killed within {1} metre of objects created by Supported Skills, they will shatter and Trigger Skittering Stones" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="After {0} Enemy is killed within {1} metres of objects created by Supported Skills, they will shatter and Trigger Skittering Stones" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="After {0} Enemies are killed within {1} metres of objects created by Supported Skills, they will shatter and Trigger Skittering Stones" + } + }, + stats={ + [1]="support_hatching_elementals_hatch_after_X_deaths_in_radius", + [2]="support_hatching_elementals_base_radius" + } + }, + [911]={ [1]={ [1]={ limit={ @@ -19225,7 +22245,7 @@ return { [1]="support_heft_maximum_physical_damage_+%_final" } }, - [785]={ + [912]={ [1]={ [1]={ limit={ @@ -19254,7 +22274,7 @@ return { [1]="support_herbalism_life_recovery_+%_from_life_flasks" } }, - [786]={ + [913]={ [1]={ [1]={ limit={ @@ -19270,7 +22290,7 @@ return { [1]="support_hinder_dots_also_apply_hinder" } }, - [787]={ + [914]={ [1]={ [1]={ limit={ @@ -19295,7 +22315,7 @@ return { [1]="support_hit_damage_stun_multiplier_+%_final_from_current_poise" } }, - [788]={ + [915]={ [1]={ [1]={ [1]={ @@ -19315,7 +22335,7 @@ return { [1]="support_holy_descent_consecrated_ground_base_duration_ms" } }, - [789]={ + [916]={ [1]={ [1]={ [1]={ @@ -19348,7 +22368,7 @@ return { [1]="support_holy_descent_consecrated_ground_on_landing_radius" } }, - [790]={ + [917]={ [1]={ [1]={ [1]={ @@ -19361,7 +22381,7 @@ return { [2]=1000 } }, - text="Supported Skills have {0:+d} second to Cooldown" + text="Supported Skills have a Cooldown of {0} second" }, [2]={ [1]={ @@ -19374,14 +22394,14 @@ return { [2]="#" } }, - text="Supported Skills have {0:+d} seconds to Cooldown" + text="Supported Skills have a Cooldown of {0} seconds" } }, stats={ [1]="support_hourglass_display_cooldown_time_ms" } }, - [791]={ + [918]={ [1]={ [1]={ limit={ @@ -19410,7 +22430,7 @@ return { [1]="support_hypothermia_cold_damage_over_time_+%_final" } }, - [792]={ + [919]={ [1]={ [1]={ limit={ @@ -19439,7 +22459,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [793]={ + [920]={ [1]={ [1]={ limit={ @@ -19468,7 +22488,7 @@ return { [1]="support_hypothermia_hit_damage_freeze_multiplier_+%_final" } }, - [794]={ + [921]={ [1]={ [1]={ [1]={ @@ -19493,7 +22513,7 @@ return { [2]="support_ice_bite_base_buff_duration" } }, - [795]={ + [922]={ [1]={ [1]={ limit={ @@ -19522,7 +22542,7 @@ return { [1]="support_icicle_ice_crystal_maximum_life_+%_final" } }, - [796]={ + [923]={ [1]={ [1]={ limit={ @@ -19551,7 +22571,7 @@ return { [1]="support_ignite_duration_ignite_effect_+%_final" } }, - [797]={ + [924]={ [1]={ [1]={ limit={ @@ -19580,7 +22600,7 @@ return { [1]="support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final" } }, - [798]={ + [925]={ [1]={ [1]={ limit={ @@ -19609,7 +22629,7 @@ return { [1]="support_ignited_ground_effect_duration_+%_final" } }, - [799]={ + [926]={ [1]={ [1]={ limit={ @@ -19618,7 +22638,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more chance to Ignite" + text="Supported Skills have {0}% more Flammability Magnitude" }, [2]={ [1]={ @@ -19631,14 +22651,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less chance to Ignite" + text="Supported Skills have {0}% less Flammability Magnitude" } }, stats={ [1]="support_ignition_chance_to_ignite_+%_final" } }, - [800]={ + [927]={ [1]={ [1]={ [1]={ @@ -19671,7 +22691,7 @@ return { [1]="support_impact_shockwave_base_splash_radius" } }, - [801]={ + [928]={ [1]={ [1]={ limit={ @@ -19687,7 +22707,7 @@ return { [1]="support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%" } }, - [802]={ + [929]={ [1]={ [1]={ limit={ @@ -19716,7 +22736,7 @@ return { [1]="support_increased_area_damage_+%_final" } }, - [803]={ + [930]={ [1]={ [1]={ limit={ @@ -19745,7 +22765,7 @@ return { [1]="support_increased_armour_break_armour_break_amount_+%_final" } }, - [804]={ + [931]={ [1]={ [1]={ limit={ @@ -19766,7 +22786,7 @@ return { [2]="support_inevitable_criticals_critical_strike_chance_+%_cap" } }, - [805]={ + [932]={ [1]={ [1]={ limit={ @@ -19788,14 +22808,43 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage per different type of Charge on you" + text="Supported Skills deal {0}% less Damage per different type of Charge on you" + } + }, + stats={ + [1]="support_inhibitor_damage_+%_final_per_charge_type" + } + }, + [933]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage per different type of Infusion on you" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage per different type of Infusion on you" } }, stats={ - [1]="support_inhibitor_damage_+%_final_per_charge_type" + [1]="support_inhibitor_damage_+%_final_per_infusion_type" } }, - [806]={ + [934]={ [1]={ [1]={ [1]={ @@ -19820,7 +22869,7 @@ return { [2]="support_innervate_buff_base_duration_ms" } }, - [807]={ + [935]={ [1]={ [1]={ limit={ @@ -19849,7 +22898,7 @@ return { [1]="support_inspiration_cost_+%_final" } }, - [808]={ + [936]={ [1]={ [1]={ limit={ @@ -19878,7 +22927,7 @@ return { [1]="support_jagged_ground_area_of_effect_+%_final" } }, - [809]={ + [937]={ [1]={ [1]={ [1]={ @@ -19898,7 +22947,7 @@ return { [1]="support_jagged_ground_base_duration_ms" } }, - [810]={ + [938]={ [1]={ [1]={ limit={ @@ -19914,7 +22963,7 @@ return { [1]="support_knockback_wave_on_stunned" } }, - [811]={ + [939]={ [1]={ [1]={ [1]={ @@ -19947,7 +22996,23 @@ return { [1]="support_last_gasp_duration_ms" } }, - [812]={ + [940]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions from Supported Skills gain Soul Eater when their Life is reduced to 0" + } + }, + stats={ + [1]="support_last_gasp_minion_soul_eater_while_undying" + } + }, + [941]={ [1]={ [1]={ limit={ @@ -19976,7 +23041,7 @@ return { [1]="support_lasting_shock_chance_to_shock_+%_final" } }, - [813]={ + [942]={ [1]={ [1]={ limit={ @@ -20005,7 +23070,7 @@ return { [1]="support_life_flask_charges_gained_+%_final_from_killing_blow" } }, - [814]={ + [943]={ [1]={ [1]={ limit={ @@ -20021,7 +23086,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [815]={ + [944]={ [1]={ [1]={ limit={ @@ -20050,7 +23115,7 @@ return { [1]="support_lifetap_damage_+%_final_while_buffed" } }, - [816]={ + [945]={ [1]={ [1]={ [1]={ @@ -20109,7 +23174,7 @@ return { [2]="quality_display_lifetap_is_gem" } }, - [817]={ + [946]={ [1]={ [1]={ limit={ @@ -20138,7 +23203,7 @@ return { [1]="support_lightning_exposure_damage_+%_final" } }, - [818]={ + [947]={ [1]={ [1]={ limit={ @@ -20167,7 +23232,7 @@ return { [1]="support_limit_skill_effect_duration_+%_final" } }, - [819]={ + [948]={ [1]={ [1]={ limit={ @@ -20176,7 +23241,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Pin Buildup against enemies within 2 metres of you, scaling to no change at 12 metres" + text="Mirage deal {0}% more Damage" }, [2]={ [1]={ @@ -20189,14 +23254,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Pin Buildup against enemies within 2 metres of you, scaling to no change at 12 metres" + text="Mirage deal {0}% less Damage" } }, stats={ - [1]="support_lockdown_distance_based_pin_damage_+%_final" + [1]="support_lingering_mirage_damage_+%_final" } }, - [820]={ + [949]={ [1]={ [1]={ limit={ @@ -20205,7 +23270,7 @@ return { [2]="#" } }, - text="Enemies Maimed by Supported Skills take {0}% increased Physical Damage" + text="Supported Skills have {0}% more Pin Buildup against enemies within 2 metres of you, scaling to no change at 12 metres" }, [2]={ [1]={ @@ -20218,30 +23283,43 @@ return { [2]=-1 } }, - text="Enemies Maimed by Supported Skills take {0}% reduced Physical Damage" + text="Supported Skills have {0}% less Pin Buildup against enemies within 2 metres of you, scaling to no change at 12 metres" } }, stats={ - [1]="support_maimed_enemies_physical_damage_taken_+%" + [1]="support_lockdown_distance_based_pin_damage_+%_final" } }, - [821]={ + [950]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Consumes {0}% of current Mana to deal that much Fire damage" + text="Detonations from supported Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Detonations from supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_mana_flare_%_of_current_mana_consumed" + [1]="support_long_fuse_detonation_damage_+%_final" } }, - [822]={ + [951]={ [1]={ [1]={ limit={ @@ -20250,7 +23328,7 @@ return { [2]="#" } }, - text="Enemies killed by Hits from Supported Skills grant {0}% more Mana Flask Charges" + text="Enemies Maimed by Supported Skills take {0}% increased Physical Damage" }, [2]={ [1]={ @@ -20263,14 +23341,30 @@ return { [2]=-1 } }, - text="Enemies killed by Hits from Supported Skills grant {0}% less Mana Flask Charges" + text="Enemies Maimed by Supported Skills take {0}% reduced Physical Damage" } }, stats={ - [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" + [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [823]={ + [952]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Consumes {0}% of current Mana to deal that much Fire damage" + } + }, + stats={ + [1]="support_mana_flare_%_of_current_mana_consumed" + } + }, + [953]={ [1]={ [1]={ limit={ @@ -20279,7 +23373,7 @@ return { [2]="#" } }, - text="Fonts of Mana from Supported Skills grant {0}% increased Mana Regeneration Rate to You and Your Allies" + text="Enemies killed by Hits from Supported Skills grant {0}% more Mana Flask Charges" }, [2]={ [1]={ @@ -20292,34 +23386,43 @@ return { [2]=-1 } }, - text="Fonts of Mana from Supported Skills grant {0}% reduced Mana Regeneration Rate to You and Your Allies" + text="Enemies killed by Hits from Supported Skills grant {0}% less Mana Flask Charges" } }, stats={ - [1]="support_mana_fountain_mana_regeneration_rate_+%" + [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" } }, - [824]={ + [954]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Fonts of Mana from Supported Skills grant {0}% increased Mana Regeneration Rate to You and Your Allies" + }, + [2]={ [1]={ - k="divide_by_ten_1dp_if_required", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Objects created by Supported Skills create a Font of Mana with a {0} metre radius" + text="Fonts of Mana from Supported Skills grant {0}% reduced Mana Regeneration Rate to You and Your Allies" } }, stats={ - [1]="support_mana_fountain_radius" + [1]="support_mana_fountain_mana_regeneration_rate_+%" } }, - [825]={ + [955]={ [1]={ [1]={ limit={ @@ -20348,7 +23451,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final" } }, - [826]={ + [956]={ [1]={ [1]={ limit={ @@ -20364,7 +23467,7 @@ return { [1]="support_manaforged_arrows_hit_damage_+%_final_per_mana_spent" } }, - [827]={ + [957]={ [1]={ [1]={ limit={ @@ -20393,7 +23496,7 @@ return { [1]="support_max_attack_damage_+%_final_from_current_poise" } }, - [828]={ + [958]={ [1]={ [1]={ limit={ @@ -20422,7 +23525,7 @@ return { [1]="support_measured_speed_attack_speed_+%_final_per_stack" } }, - [829]={ + [959]={ [1]={ [1]={ [1]={ @@ -20464,7 +23567,7 @@ return { [2]="support_measured_speed_disabled_ms" } }, - [830]={ + [960]={ [1]={ [1]={ limit={ @@ -20493,7 +23596,7 @@ return { [1]="support_meat_shield_minion_damage_+%_final" } }, - [831]={ + [961]={ [1]={ [1]={ limit={ @@ -20569,7 +23672,7 @@ return { [2]="support_melee_damage_+%_final_vs_lower_percent_life_target" } }, - [832]={ + [962]={ [1]={ [1]={ limit={ @@ -20598,7 +23701,7 @@ return { [1]="support_melee_physical_damage_attack_speed_+%_final" } }, - [833]={ + [963]={ [1]={ [1]={ limit={ @@ -20627,7 +23730,7 @@ return { [1]="support_minefield_mine_damage_+%_final" } }, - [834]={ + [964]={ [1]={ [1]={ limit={ @@ -20656,7 +23759,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [835]={ + [965]={ [1]={ [1]={ limit={ @@ -20677,7 +23780,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [836]={ + [966]={ [1]={ [1]={ limit={ @@ -20706,7 +23809,7 @@ return { [1]="support_minion_damage_+%_final" } }, - [837]={ + [967]={ [1]={ [1]={ limit={ @@ -20735,7 +23838,7 @@ return { [1]="support_minion_damage_minion_life_+%_final" } }, - [838]={ + [968]={ [1]={ [1]={ limit={ @@ -20764,7 +23867,7 @@ return { [1]="support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana" } }, - [839]={ + [969]={ [1]={ [1]={ limit={ @@ -20793,7 +23896,7 @@ return { [1]="support_minion_damage_with_non_command_skills_+%_final" } }, - [840]={ + [970]={ [1]={ [1]={ limit={ @@ -20822,7 +23925,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [841]={ + [971]={ [1]={ [1]={ limit={ @@ -20851,7 +23954,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [842]={ + [972]={ [1]={ [1]={ limit={ @@ -20880,7 +23983,7 @@ return { [1]="support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target" } }, - [843]={ + [973]={ [1]={ [1]={ limit={ @@ -20896,7 +23999,7 @@ return { [1]="support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target" } }, - [844]={ + [974]={ [1]={ [1]={ limit={ @@ -20925,7 +24028,7 @@ return { [1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target" } }, - [845]={ + [975]={ [1]={ [1]={ limit={ @@ -20954,7 +24057,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [846]={ + [976]={ [1]={ [1]={ limit={ @@ -20983,7 +24086,7 @@ return { [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" } }, - [847]={ + [977]={ [1]={ [1]={ limit={ @@ -21004,7 +24107,7 @@ return { [2]="support_minion_pact_damage_+%_final" } }, - [848]={ + [978]={ [1]={ [1]={ limit={ @@ -21033,7 +24136,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [849]={ + [979]={ [1]={ [1]={ limit={ @@ -21049,7 +24152,7 @@ return { [1]="support_minion_use_focussed_target" } }, - [850]={ + [980]={ [1]={ [1]={ [1]={ @@ -21074,7 +24177,7 @@ return { [2]="infernal_legion_minion_burning_effect_radius" } }, - [851]={ + [981]={ [1]={ [1]={ limit={ @@ -21103,7 +24206,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [852]={ + [982]={ [1]={ [1]={ [1]={ @@ -21123,7 +24226,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [853]={ + [983]={ [1]={ [1]={ limit={ @@ -21152,7 +24255,7 @@ return { [1]="support_mirage_archer_damage_+%_final" } }, - [854]={ + [984]={ [1]={ [1]={ limit={ @@ -21181,7 +24284,7 @@ return { [1]="support_mobile_assault_skill_speed_+%_final" } }, - [855]={ + [985]={ [1]={ [1]={ limit={ @@ -21210,7 +24313,7 @@ return { [1]="support_mobility_damage_+%_final" } }, - [856]={ + [986]={ [1]={ [1]={ limit={ @@ -21239,7 +24342,7 @@ return { [1]="support_mobility_movement_speed_penalty_+%_final_while_performing_action" } }, - [857]={ + [987]={ [1]={ [1]={ [1]={ @@ -21323,7 +24426,7 @@ return { [2]="support_momnetum_damage_+%_final_with_momentum" } }, - [858]={ + [988]={ [1]={ [1]={ limit={ @@ -21352,7 +24455,7 @@ return { [1]="support_more_duration_skill_effect_duration_+%_final" } }, - [859]={ + [989]={ [1]={ [1]={ limit={ @@ -21385,7 +24488,7 @@ return { [1]="support_multi_poison_poison_duration_+%_final" } }, - [860]={ + [990]={ [1]={ [1]={ limit={ @@ -21403,18 +24506,83 @@ return { }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Attack and Cast Speed" + } + }, + stats={ + [1]="support_multiple_attack_and_cast_speed_+%_final" + } + }, + [991]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Area of Effect" + } + }, + stats={ + [1]="support_multiple_orbs_area_of_effect_+%_final" + } + }, + [992]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Energy Shield Recharge begins immediately and is not interrupted by Damage for {0} seconds when Stunned while using Supported Skills" + } + }, + stats={ + [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" + } + }, + [993]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" } }, - text="Supported Skills have {0}% less Attack and Cast Speed" + text="Supported Skills gain {0}% more Damage\nevery second, up to 20%\nThis Damage Bonus resets if you\nDodge Roll or use a Travel Skill" } }, stats={ - [1]="support_multiple_attack_and_cast_speed_+%_final" + [1]="support_no_fear_damage_+%_final_per_second_up_to_30%" } }, - [861]={ + [994]={ [1]={ [1]={ limit={ @@ -21423,7 +24591,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Area of Effect" + text="Supported Skills deal {0}% more Damage" }, [2]={ [1]={ @@ -21436,34 +24604,39 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Area of Effect" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_multiple_orbs_area_of_effect_+%_final" + [1]="support_nova_projectiles_damage_+%_final" } }, - [862]={ + [995]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ [1]=1, + [2]=1 + } + }, + text="Objects created by Supported Skills can be Hit {0:+d} time" + }, + [2]={ + limit={ + [1]={ + [1]=2, [2]="#" } }, - text="Energy Shield Recharge begins immediately and is not interrupted by Damage for {0} seconds when Stunned while using Supported Skills" + text="Objects created by Supported Skills can be Hit {0:+d} times" } }, stats={ - [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" + [1]="support_number_of_additional_uses_before_expiry" } }, - [863]={ + [996]={ [1]={ [1]={ limit={ @@ -21492,7 +24665,7 @@ return { [1]="support_overextend_critical_strike_multiplier_+%_final" } }, - [864]={ + [997]={ [1]={ [1]={ limit={ @@ -21501,43 +24674,52 @@ return { [2]="#" } }, - text="Hits with Supported Skills cause {0}% more Stun buildup" + text="Supported Skills deal {0}% more Damage" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="Hits with Supported Skills cause {0}% less Stun buildup" + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_overpower_hit_damage_stun_multiplier_+%_final" + [1]="support_overpower_damage_+%_final" } }, - [865]={ + [998]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds", - v=1 + limit={ + [1]={ + [1]=1, + [2]="#" + } }, + text="Hits with Supported Skills cause {0}% more Stun buildup" + }, + [2]={ limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Supported Skills inflict Overpowered for {0} seconds when Blocked" + text="Hits with Supported Skills cause {0}% less Stun buildup" } }, stats={ - [1]="support_overpowered_base_duration_ms" + [1]="support_overpower_hit_damage_stun_multiplier_+%_final" } }, - [866]={ + [999]={ [1]={ [1]={ limit={ @@ -21562,7 +24744,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [867]={ + [1000]={ [1]={ [1]={ limit={ @@ -21591,7 +24773,7 @@ return { [1]="support_parallel_projectiles_damage_+%_final" } }, - [868]={ + [1001]={ [1]={ [1]={ limit={ @@ -21620,7 +24802,7 @@ return { [1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final" } }, - [869]={ + [1002]={ [1]={ [1]={ limit={ @@ -21649,7 +24831,7 @@ return { [1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final" } }, - [870]={ + [1003]={ [1]={ [1]={ limit={ @@ -21678,7 +24860,7 @@ return { [1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final" } }, - [871]={ + [1004]={ [1]={ [1]={ limit={ @@ -21694,7 +24876,36 @@ return { [1]="support_physical_damage_%_to_gain_as_daze_build_up" } }, - [872]={ + [1005]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Projectiles from Supported Skills deal {0}% more Damage for each Enemy they Pierce" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Projectiles from Supported Skills deal {0}% less Damage for each Enemy they Pierce" + } + }, + stats={ + [1]="support_pierce_damage_+%_final_per_pierced_target" + } + }, + [1006]={ [1]={ [1]={ limit={ @@ -21723,7 +24934,23 @@ return { [1]="support_pierce_projectile_damage_+%_final_if_pierced_enemy" } }, - [873]={ + [1007]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Modifiers to Stun Buildup for Supported Skills instead apply to Pin Buildup\nSupported Skills cannot cause Stun Buildup" + } + }, + stats={ + [1]="support_pin_buildup_pin_instead_of_stun" + } + }, + [1008]={ [1]={ [1]={ limit={ @@ -21761,7 +24988,7 @@ return { [1]="support_pin_hit_damage_stun_multiplier_+%_final" } }, - [874]={ + [1009]={ [1]={ [1]={ limit={ @@ -21777,7 +25004,65 @@ return { [1]="support_pin_physical_damage_can_pin" } }, - [875]={ + [1010]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits with Supported Skills cause {0}% more Pin buildup" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Hits with Supported Skills cause {0}% less Pin buildup" + } + }, + stats={ + [1]="support_pin_pin_buildup_+%_final" + } + }, + [1011]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Pin caused by Supported Skills has {0}% more duration" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Pin caused by Supported Skills has {0}% less duration" + } + }, + stats={ + [1]="support_pin_pin_duration_+%_final" + } + }, + [1012]={ [1]={ [1]={ limit={ @@ -21806,7 +25091,7 @@ return { [1]="support_pinpoint_critical_strike_chance_+%_final" } }, - [876]={ + [1013]={ [1]={ [1]={ limit={ @@ -21835,7 +25120,7 @@ return { [1]="support_pinpoint_critical_strike_multiplier_+%_final" } }, - [877]={ + [1014]={ [1]={ [1]={ limit={ @@ -21864,7 +25149,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [878]={ + [1015]={ [1]={ [1]={ limit={ @@ -21893,7 +25178,7 @@ return { [1]="support_precision_accuracy_rating_+%" } }, - [879]={ + [1016]={ [1]={ [1]={ limit={ @@ -21922,7 +25207,7 @@ return { [1]="support_projectile_attack_physical_damage_+%_final" } }, - [880]={ + [1017]={ [1]={ [1]={ limit={ @@ -21951,7 +25236,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [881]={ + [1018]={ [1]={ [1]={ limit={ @@ -21980,7 +25265,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [882]={ + [1019]={ [1]={ [1]={ limit={ @@ -22009,7 +25294,7 @@ return { [1]="support_pulverise_attack_speed_+%_final" } }, - [883]={ + [1020]={ [1]={ [1]={ limit={ @@ -22038,7 +25323,7 @@ return { [1]="support_pulverise_melee_area_damage_+%_final" } }, - [884]={ + [1021]={ [1]={ [1]={ limit={ @@ -22067,7 +25352,7 @@ return { [1]="support_pure_shock_shock_duration_+%_final" } }, - [885]={ + [1022]={ [1]={ [1]={ limit={ @@ -22096,7 +25381,7 @@ return { [1]="support_greater_volley_projectile_damage_+%_final" } }, - [886]={ + [1023]={ [1]={ [1]={ limit={ @@ -22125,27 +25410,36 @@ return { [1]="support_rage_attack_damage_+%_final" } }, - [887]={ + [1024]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Attack speed while you are not at maximum Rage" + }, + [2]={ [1]={ - k="divide_by_ten_1dp_if_required", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Objects created by Supported Skills create a Font of Rage with a {0} metre radius" + text="Supported Skills have {0}% less Attack speed while you are not at maximum Rage" } }, stats={ - [1]="support_rage_fountain_radius" + [1]="support_rage_attack_speed_+%_final_while_not_at_maximum_rage" } }, - [888]={ + [1025]={ [1]={ [1]={ [1]={ @@ -22165,7 +25459,7 @@ return { [1]="support_rage_fountain_rage_regeneration_per_minute" } }, - [889]={ + [1026]={ [1]={ [1]={ [1]={ @@ -22185,25 +25479,75 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [890]={ + [1027]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills consume {0} Rage if possible to\ndeal {1}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=2 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills consume {0} Rage if possible to\ndeal {1}% less Damage" + } + }, + stats={ + [1]="support_rageforged_consumes_X_rage_to_enrage_skill_use", + [2]="support_rageforged_enraged_damage_+%_final" + } + }, + [1028]={ [1]={ [1]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" }, [2]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Supported Skills consume {0} Rage if possible to\ndeal {1}% more Damage" - }, - [2]={ + text="Skills Triggered by Supported Skills have between {0}% less and {1}% more Area of Effect" + } + }, + stats={ + [1]="support_randomise_lower_aoe_+%_final", + [2]="support_randomise_higher_aoe_+%_final" + } + }, + [1029]={ + [1]={ + [1]={ [1]={ k="negate", - v=2 + v=1 }, limit={ [1]={ @@ -22212,18 +25556,18 @@ return { }, [2]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Skills consume {0} Rage if possible to\ndeal {1}% less Damage" + text="Skills Triggered by Supported Skills have between {0}% less and {1}% more Projectile Speed" } }, stats={ - [1]="support_rageforged_consumes_X_rage_to_enrage_skill_use", - [2]="support_rageforged_enraged_damage_+%_final" + [1]="support_randomise_lower_projectile_speed_+%_final", + [2]="support_randomise_higher_projectile_speed_+%_final" } }, - [891]={ + [1030]={ [1]={ [1]={ [1]={ @@ -22248,7 +25592,7 @@ return { [2]="support_randomise_higher_damage_+%_final" } }, - [892]={ + [1031]={ [1]={ [1]={ [1]={ @@ -22273,7 +25617,7 @@ return { [2]="support_randomise_higher_recover_%_cost_on_use" } }, - [893]={ + [1032]={ [1]={ [1]={ limit={ @@ -22302,7 +25646,7 @@ return { [1]="support_rapid_activation_brand_activation_rate_+%_final" } }, - [894]={ + [1033]={ [1]={ [1]={ limit={ @@ -22331,7 +25675,7 @@ return { [1]="support_reach_accuracy_within_2m_+%_final" } }, - [895]={ + [1034]={ [1]={ [1]={ limit={ @@ -22360,7 +25704,7 @@ return { [1]="support_reach_area_of_effect_+%_final" } }, - [896]={ + [1035]={ [1]={ [1]={ limit={ @@ -22376,23 +25720,7 @@ return { [1]="support_recover_%_maximum_energy_shield_killing_shocked_enemies" } }, - [897]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Enemies have -{0}% chance to Block Attack or Spell Damage from Supported Skills" - } - }, - stats={ - [1]="support_reduce_enemy_block_and_spell_block_%" - } - }, - [898]={ + [1036]={ [1]={ [1]={ limit={ @@ -22421,7 +25749,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [899]={ + [1037]={ [1]={ [1]={ limit={ @@ -22450,7 +25778,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [900]={ + [1038]={ [1]={ [1]={ limit={ @@ -22466,7 +25794,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [901]={ + [1039]={ [1]={ [1]={ [1]={ @@ -22486,7 +25814,7 @@ return { [1]="support_regenerate_mana_per_minute_on_shock" } }, - [902]={ + [1040]={ [1]={ [1]={ [1]={ @@ -22506,7 +25834,7 @@ return { [1]="support_remote_mine_2_base_mine_detonation_time_ms" } }, - [903]={ + [1041]={ [1]={ [1]={ limit={ @@ -22535,7 +25863,7 @@ return { [1]="support_remote_mine_2_damage_+%_final" } }, - [904]={ + [1042]={ [1]={ [1]={ limit={ @@ -22564,7 +25892,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [905]={ + [1043]={ [1]={ [1]={ limit={ @@ -22593,7 +25921,7 @@ return { [1]="support_remote_mine_hit_damage_+%_final" } }, - [906]={ + [1044]={ [1]={ [1]={ limit={ @@ -22631,7 +25959,36 @@ return { [1]="support_retreating_assault_melee_damage_+%_final" } }, - [907]={ + [1045]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last two seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last two seconds" + } + }, + stats={ + [1]="support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds" + } + }, + [1046]={ [1]={ [1]={ limit={ @@ -22660,7 +26017,36 @@ return { [1]="support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds" } }, - [908]={ + [1047]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curse zones from Supported\nSkills erupt after {0}% more delay" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Curse zones from Supported\nSkills erupt after {0}% less delay" + } + }, + stats={ + [1]="support_ritual_curse_curse_delay_+%_final" + } + }, + [1048]={ [1]={ [1]={ limit={ @@ -22676,7 +26062,7 @@ return { [1]="support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy" } }, - [909]={ + [1049]={ [1]={ [1]={ [1]={ @@ -22709,7 +26095,7 @@ return { [1]="support_sacrificial_lamb_base_radius" } }, - [910]={ + [1050]={ [1]={ [1]={ limit={ @@ -22734,7 +26120,7 @@ return { [1]="support_salvo_additional_projectiles_fired_per_seal" } }, - [911]={ + [1051]={ [1]={ [1]={ limit={ @@ -22750,7 +26136,7 @@ return { [1]="support_salvo_maximum_seals" } }, - [912]={ + [1052]={ [1]={ [1]={ [1]={ @@ -22783,7 +26169,36 @@ return { [1]="support_salvo_seals_gain_base_interval_ms" } }, - [913]={ + [1053]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Skill Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Skill Speed" + } + }, + stats={ + [1]="support_scattershot_skill_speed_+%_final" + } + }, + [1054]={ [1]={ [1]={ limit={ @@ -22812,7 +26227,7 @@ return { [1]="support_scion_onslaught_duration_+%" } }, - [914]={ + [1055]={ [1]={ [1]={ limit={ @@ -22833,7 +26248,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [915]={ + [1056]={ [1]={ [1]={ [1]={ @@ -22863,7 +26278,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [916]={ + [1057]={ [1]={ [1]={ limit={ @@ -22892,7 +26307,7 @@ return { [1]="support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence" } }, - [917]={ + [1058]={ [1]={ [1]={ limit={ @@ -22921,7 +26336,7 @@ return { [1]="support_shock_protection_spirit_cost_shock_duration_on_self_+%_final" } }, - [918]={ + [1059]={ [1]={ [1]={ limit={ @@ -22950,7 +26365,7 @@ return { [1]="support_shocked_ground_effect_duration_+%_final" } }, - [919]={ + [1060]={ [1]={ [1]={ [1]={ @@ -23042,7 +26457,36 @@ return { [2]="support_shocking_leap_shocked_ground_radius" } }, - [920]={ + [1061]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage" + } + }, + stats={ + [1]="support_short_fuse_damage_+%_final" + } + }, + [1062]={ [1]={ [1]={ [1]={ @@ -23075,7 +26519,7 @@ return { [1]="support_slashing_buff_base_duration_ms" } }, - [921]={ + [1063]={ [1]={ [1]={ limit={ @@ -23104,7 +26548,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [922]={ + [1064]={ [1]={ [1]={ limit={ @@ -23133,7 +26577,7 @@ return { [1]="support_slow_cast_cast_speed_+%_final" } }, - [923]={ + [1065]={ [1]={ [1]={ limit={ @@ -23162,7 +26606,7 @@ return { [1]="support_slow_cast_spell_damage_+%_final" } }, - [924]={ + [1066]={ [1]={ [1]={ limit={ @@ -23191,7 +26635,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [925]={ + [1067]={ [1]={ [1]={ limit={ @@ -23207,7 +26651,7 @@ return { [1]="support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage" } }, - [926]={ + [1068]={ [1]={ [1]={ [1]={ @@ -23240,7 +26684,7 @@ return { [1]="support_spectral_arrows_base_duration_ms" } }, - [927]={ + [1069]={ [1]={ [1]={ limit={ @@ -23269,7 +26713,7 @@ return { [1]="support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles" } }, - [928]={ + [1070]={ [1]={ [1]={ limit={ @@ -23298,7 +26742,7 @@ return { [1]="support_spectral_arrows_damage_+%_final_with_spectral_projectiles" } }, - [929]={ + [1071]={ [1]={ [1]={ limit={ @@ -23314,7 +26758,7 @@ return { [1]="support_spectral_arrows_maximum_spectral_arrows" } }, - [930]={ + [1072]={ [1]={ [1]={ limit={ @@ -23390,7 +26834,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [931]={ + [1073]={ [1]={ [1]={ limit={ @@ -23419,7 +26863,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [932]={ + [1074]={ [1]={ [1]={ limit={ @@ -23448,7 +26892,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [933]={ + [1075]={ [1]={ [1]={ limit={ @@ -23474,10 +26918,10 @@ return { } }, stats={ - [1]="support_spell_cascade_area_of_effect_+%_per_cascade" + [1]="support_spell_cascade_area_of_effect_+%_for_cascade" } }, - [934]={ + [1076]={ [1]={ [1]={ limit={ @@ -23506,7 +26950,7 @@ return { [1]="support_spell_cascade_damage_+%_final" } }, - [935]={ + [1077]={ [1]={ [1]={ limit={ @@ -23540,7 +26984,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [936]={ + [1078]={ [1]={ [1]={ limit={ @@ -23569,7 +27013,7 @@ return { [1]="support_spell_damage_+%_final_while_above_90%_maximum_mana" } }, - [937]={ + [1079]={ [1]={ [1]={ limit={ @@ -23598,7 +27042,36 @@ return { [1]="support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield" } }, - [938]={ + [1080]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Echoes from Supported Spells have {0}% increased Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Echoes from Supported Spells have {0}% reduced Area of Effect" + } + }, + stats={ + [1]="support_spell_echo_area_of_effect_+%" + } + }, + [1081]={ [1]={ [1]={ limit={ @@ -23627,7 +27100,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final" } }, - [939]={ + [1082]={ [1]={ [1]={ limit={ @@ -23656,7 +27129,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_0" } }, - [940]={ + [1083]={ [1]={ [1]={ limit={ @@ -23685,7 +27158,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_1" } }, - [941]={ + [1084]={ [1]={ [1]={ limit={ @@ -23714,7 +27187,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_2" } }, - [942]={ + [1085]={ [1]={ [1]={ limit={ @@ -23743,7 +27216,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_3" } }, - [943]={ + [1086]={ [1]={ [1]={ limit={ @@ -23772,7 +27245,7 @@ return { [1]="support_spell_echo_damage_+%_final" } }, - [944]={ + [1087]={ [1]={ [1]={ limit={ @@ -23801,7 +27274,7 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [945]={ + [1088]={ [1]={ [1]={ limit={ @@ -23830,7 +27303,23 @@ return { [1]="support_spellblade_cast_speed_+%_final" } }, - [946]={ + [1089]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Spells are Stored when cast instead of causing their usual effects" + } + }, + stats={ + [1]="support_spellblade_store_up_to_X_casts" + } + }, + [1090]={ [1]={ [1]={ limit={ @@ -23839,30 +27328,43 @@ return { [2]="#" } }, - text="Supported Spells are Stored when cast instead of causing their usual effects" + text="Spellcasts Stored with Supported Skills are Triggered on Melee Hit\nStored Spellcasts are expended when Triggered" } }, stats={ - [1]="support_spellblade_store_up_to_X_casts" + [1]="support_spellblade_trigger_stored_spells_on_melee_hit" } }, - [947]={ + [1091]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Spellcasts Stored with Supported Skills are Triggered on Melee Hit\nStored Spellcasts are expended when Triggered" + text="Supported Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage" } }, stats={ - [1]="support_spellblade_trigger_stored_spells_on_melee_hit" + [1]="support_spellslinger_damage_+%_final" } }, - [948]={ + [1092]={ [1]={ [1]={ limit={ @@ -23888,10 +27390,10 @@ return { } }, stats={ - [1]="support_spellslinger_damage_+%_final" + [1]="support_spiral_projectiles_damage_+%_final" } }, - [949]={ + [1093]={ [1]={ [1]={ limit={ @@ -23920,7 +27422,7 @@ return { [1]="support_spiritual_cry_damage_+%_final" } }, - [950]={ + [1094]={ [1]={ [1]={ limit={ @@ -23949,7 +27451,7 @@ return { [1]="support_stability_heavy_stun_threshold_+%_final_while_performing_action" } }, - [951]={ + [1095]={ [1]={ [1]={ limit={ @@ -23974,7 +27476,7 @@ return { [1]="support_static_charge_X_chains_per_10_charge" } }, - [952]={ + [1096]={ [1]={ [1]={ limit={ @@ -23990,7 +27492,65 @@ return { [1]="support_static_charge_%_damage_gained_as_lightning_per_10_charge" } }, - [953]={ + [1097]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You have {0}% more Ailment Threshold while Channelling Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You have {0}% less Ailment Threshold while Channelling Supported Skills" + } + }, + stats={ + [1]="support_steadfast_ailment_threshold_+%_final_while_channelling" + } + }, + [1098]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You have {0}% more Stun Threshold while Channelling Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You have {0}% less Stun Threshold while Channelling Supported Skills" + } + }, + stats={ + [1]="support_steadfast_stun_threshold_+%_final_while_channelling" + } + }, + [1099]={ [1]={ [1]={ limit={ @@ -24019,7 +27579,7 @@ return { [1]="support_sticky_grenade_damage_+%_final" } }, - [954]={ + [1100]={ [1]={ [1]={ limit={ @@ -24035,7 +27595,7 @@ return { [1]="support_stomping_ground" } }, - [955]={ + [1101]={ [1]={ [1]={ [1]={ @@ -24068,7 +27628,7 @@ return { [1]="support_storm_barrier_damage_buff_base_duration_ms" } }, - [956]={ + [1102]={ [1]={ [1]={ [1]={ @@ -24140,7 +27700,7 @@ return { [2]="support_storm_barrier_damage_buff_time_threshold_ms" } }, - [957]={ + [1103]={ [1]={ [1]={ limit={ @@ -24169,7 +27729,7 @@ return { [1]="support_storm_barrier_damage_+%_final" } }, - [958]={ + [1104]={ [1]={ [1]={ limit={ @@ -24198,7 +27758,7 @@ return { [1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final" } }, - [959]={ + [1105]={ [1]={ [1]={ limit={ @@ -24227,7 +27787,7 @@ return { [1]="support_storm_barrier_skill_type_damage_+%_final" } }, - [960]={ + [1106]={ [1]={ [1]={ [1]={ @@ -24247,7 +27807,7 @@ return { [1]="support_storm_barrier_skill_type_damage_taken_when_hit_+%_final" } }, - [961]={ + [1107]={ [1]={ [1]={ limit={ @@ -24276,7 +27836,7 @@ return { [1]="support_stronger_ignites_hit_damage_+%_final" } }, - [962]={ + [1108]={ [1]={ [1]={ limit={ @@ -24305,7 +27865,7 @@ return { [1]="support_stronger_ignites_ignite_effect_+%_final" } }, - [963]={ + [1109]={ [1]={ [1]={ limit={ @@ -24334,7 +27894,7 @@ return { [1]="support_sunblast_hazard_hazard_damage_+%_final" } }, - [964]={ + [1110]={ [1]={ [1]={ limit={ @@ -24363,7 +27923,36 @@ return { [1]="support_sunblast_hazard_hazard_duration_+%_final" } }, - [965]={ + [1111]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more non-Ailment damage over time if their duration is less than one second" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less non-Ailment damage over time if their duration is less than one second" + } + }, + stats={ + [1]="support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second" + } + }, + [1112]={ [1]={ [1]={ limit={ @@ -24392,7 +27981,23 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [966]={ + [1113]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Banners apply Refractive Dissolution to Enemies in their radius\nRefractive Dissolution applies {0}% Elemental Exposure per 1000 player Armour, up to 80%" + } + }, + stats={ + [1]="support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour" + } + }, + [1114]={ [1]={ [1]={ limit={ @@ -24408,7 +28013,7 @@ return { [1]="support_tempered_valour_%_armour_to_apply_to_elemental_damage" } }, - [967]={ + [1115]={ [1]={ [1]={ limit={ @@ -24437,7 +28042,7 @@ return { [1]="support_thorns_spirit_cost_thorns_damage_+%" } }, - [968]={ + [1116]={ [1]={ [1]={ limit={ @@ -24462,7 +28067,7 @@ return { [1]="support_timerot_stacks_gained_per_500_ms" } }, - [969]={ + [1117]={ [1]={ [1]={ limit={ @@ -24491,7 +28096,7 @@ return { [1]="support_titanblood_minion_damage_+%_final" } }, - [970]={ + [1118]={ [1]={ [1]={ limit={ @@ -24520,7 +28125,7 @@ return { [1]="support_titanblood_minion_life_+%_final" } }, - [971]={ + [1119]={ [1]={ [1]={ limit={ @@ -24549,7 +28154,7 @@ return { [1]="support_titanic_arrows_attack_speed_+%_final" } }, - [972]={ + [1120]={ [1]={ [1]={ limit={ @@ -24578,7 +28183,7 @@ return { [1]="support_titanic_arrows_projectile_speed_+%_final" } }, - [973]={ + [1121]={ [1]={ [1]={ limit={ @@ -24607,7 +28212,7 @@ return { [1]="support_trap_and_mine_damage_mine_throwing_speed_+%_final" } }, - [974]={ + [1122]={ [1]={ [1]={ limit={ @@ -24636,7 +28241,7 @@ return { [1]="support_trap_and_mine_damage_trap_throwing_speed_+%_final" } }, - [975]={ + [1123]={ [1]={ [1]={ limit={ @@ -24665,7 +28270,7 @@ return { [1]="support_trap_hit_damage_+%_final" } }, - [976]={ + [1124]={ [1]={ [1]={ limit={ @@ -24681,7 +28286,7 @@ return { [1]="support_trigger_mana_flare_on_crit" } }, - [977]={ + [1125]={ [1]={ [1]={ limit={ @@ -24697,7 +28302,7 @@ return { [1]="support_triple_number_of_cooldown_uses" } }, - [978]={ + [1126]={ [1]={ [1]={ limit={ @@ -24726,7 +28331,7 @@ return { [1]="support_trusty_companion_minion_life_+%_final" } }, - [979]={ + [1127]={ [1]={ [1]={ limit={ @@ -24755,7 +28360,7 @@ return { [1]="support_unbound_ailments_damaging_ailment_effect_+%_final" } }, - [980]={ + [1128]={ [1]={ [1]={ limit={ @@ -24784,7 +28389,7 @@ return { [1]="support_unbreakable_light_stun_threshold_+%_final_while_performing_action" } }, - [981]={ + [1129]={ [1]={ [1]={ limit={ @@ -24813,7 +28418,7 @@ return { [1]="support_unending_ailments_all_ailment_duration_+%_final" } }, - [982]={ + [1130]={ [1]={ [1]={ limit={ @@ -24851,7 +28456,7 @@ return { [2]="support_unmoving_damage_multiplier_cap" } }, - [983]={ + [1131]={ [1]={ [1]={ limit={ @@ -24880,7 +28485,7 @@ return { [1]="support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies" } }, - [984]={ + [1132]={ [1]={ [1]={ limit={ @@ -24909,7 +28514,36 @@ return { [1]="support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies" } }, - [985]={ + [1133]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Area of Effect" + } + }, + stats={ + [1]="support_upheaval_area_of_effect_+%_final" + } + }, + [1134]={ [1]={ [1]={ limit={ @@ -24918,7 +28552,7 @@ return { [2]="#" } }, - text="Supported Minions deal {0}% more Damage for each different type of Persistent Minion you have summoned" + text="Supported Minions deal {0}% more damage for each different type of Reviving Minion you have summoned" }, [2]={ [1]={ @@ -24931,14 +28565,14 @@ return { [2]=-1 } }, - text="Supported Minions deal {0}% less Damage for each different type of Persistent Minion you have summoned" + text="Supported Minions deal {0}% less damage for each different type of Reviving Minion you have summoned" } }, stats={ [1]="support_varied_troops_damage_+%_final_per_different_persistent_ominion" } }, - [986]={ + [1135]={ [1]={ [1]={ limit={ @@ -24967,7 +28601,7 @@ return { [1]="support_vicious_projectiles_physical_damage_+%_final" } }, - [987]={ + [1136]={ [1]={ [1]={ limit={ @@ -24996,7 +28630,7 @@ return { [1]="support_vicious_projectiles_chaos_damage_+%_final" } }, - [988]={ + [1137]={ [1]={ [1]={ [1]={ @@ -25016,7 +28650,7 @@ return { [1]="support_vitality_life_regeneration_rate_per_minute_%" } }, - [989]={ + [1138]={ [1]={ [1]={ limit={ @@ -25041,7 +28675,36 @@ return { [1]="support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies" } }, - [990]={ + [1139]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Area of Effect" + } + }, + stats={ + [1]="support_wall_fortress_area_of_effect_+%_final" + } + }, + [1140]={ [1]={ [1]={ limit={ @@ -25074,7 +28737,7 @@ return { [1]="support_wall_fortress_hit_damage_+%_final" } }, - [991]={ + [1141]={ [1]={ [1]={ limit={ @@ -25095,7 +28758,7 @@ return { [2]="support_enraged_warcry_+%_damage_final_for_exerted_attacks" } }, - [992]={ + [1142]={ [1]={ [1]={ limit={ @@ -25124,7 +28787,7 @@ return { [1]="support_window_of_opportunity_perfect_timing_damage_+%_final" } }, - [993]={ + [1143]={ [1]={ [1]={ limit={ @@ -25153,7 +28816,7 @@ return { [1]="support_winterblast_chill_effect_+%_final" } }, - [994]={ + [1144]={ [1]={ [1]={ limit={ @@ -25171,18 +28834,66 @@ return { }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]="#", + [2]=-1 + } + }, + text="Supported Skills deal {0}% less Damage" + } + }, + stats={ + [1]="support_withering_touch_damage_+%_final" + } + }, + [1145]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d} to level of Supported Skills if exactly one other Support is modifying them" + } + }, + stats={ + [1]="supported_active_skill_gem_level_+_if_one_other_support" + } + }, + [1146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d} to level of Supported Skills if exactly two other Supports are modifying them" + } + }, + stats={ + [1]="supported_active_skill_gem_level_+_if_two_other_supports" + } + }, + [1147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" } }, - text="Supported Skills deal {0}% less Damage" + text="{0:+d} to level of Supported Skills if no other Supports are modifying them" } }, stats={ - [1]="support_withering_touch_damage_+%_final" + [1]="supported_active_skill_gem_level_+_if_no_other_supports" } }, - [995]={ + [1148]={ [1]={ [1]={ limit={ @@ -25198,7 +28909,7 @@ return { [1]="supported_chaos_skill_gem_level_+" } }, - [996]={ + [1149]={ [1]={ [1]={ limit={ @@ -25214,7 +28925,7 @@ return { [1]="supported_curse_skill_gem_level_+" } }, - [997]={ + [1150]={ [1]={ [1]={ limit={ @@ -25230,7 +28941,7 @@ return { [1]="supported_elemental_skill_gem_level_+" } }, - [998]={ + [1151]={ [1]={ [1]={ limit={ @@ -25246,7 +28957,7 @@ return { [1]="supported_minion_skill_gem_level_+" } }, - [999]={ + [1152]={ [1]={ [1]={ limit={ @@ -25262,7 +28973,7 @@ return { [1]="supported_physical_skill_gem_level_+" } }, - [1000]={ + [1153]={ [1]={ [1]={ limit={ @@ -25278,7 +28989,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1001]={ + [1154]={ [1]={ [1]={ limit={ @@ -25294,7 +29005,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1002]={ + [1155]={ [1]={ [1]={ limit={ @@ -25310,7 +29021,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1003]={ + [1156]={ [1]={ [1]={ limit={ @@ -25326,7 +29037,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1004]={ + [1157]={ [1]={ [1]={ limit={ @@ -25342,7 +29053,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1005]={ + [1158]={ [1]={ [1]={ limit={ @@ -25358,7 +29069,7 @@ return { [1]="supported_strike_skill_gem_level_+" } }, - [1006]={ + [1159]={ [1]={ [1]={ limit={ @@ -25374,7 +29085,40 @@ return { [1]="totem_elemental_resistance_%" } }, - [1007]={ + [1160]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Totems created by Supported Skills gain Onslaught for {0} second after being summoned" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Totems created by Supported Skills gain Onslaught for {0} seconds after being summoned" + } + }, + stats={ + [1]="totem_gain_onslaught_for_x_ms_after_summon" + } + }, + [1161]={ [1]={ [1]={ limit={ @@ -25390,7 +29134,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [1008]={ + [1162]={ [1]={ [1]={ limit={ @@ -25406,7 +29150,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1009]={ + [1163]={ [1]={ [1]={ limit={ @@ -25435,7 +29179,7 @@ return { [1]="trap_damage_+%" } }, - [1010]={ + [1164]={ [1]={ [1]={ limit={ @@ -25464,7 +29208,7 @@ return { [1]="trap_spread_+%" } }, - [1011]={ + [1165]={ [1]={ [1]={ limit={ @@ -25493,7 +29237,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1012]={ + [1166]={ [1]={ [1]={ limit={ @@ -25522,7 +29266,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1013]={ + [1167]={ [1]={ [1]={ limit={ @@ -25551,7 +29295,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1014]={ + [1168]={ [1]={ [1]={ limit={ @@ -25580,7 +29324,48 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1015]={ + [1169]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Hits with Supported Skills have {0}% chance to treat Enemy Monster Elemental Resistance values as inverted" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Hits with Supported Skills treat Enemy Monster Elemental Resistance values as inverted" + } + }, + stats={ + [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" + } + }, + [1170]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills trigger Ice Fragments on killing Frozen Enemies" + } + }, + stats={ + [1]="trigger_ballistic_ice_chunks_on_killing_frozen_enemy" + } + }, + [1171]={ [1]={ [1]={ limit={ @@ -25596,7 +29381,7 @@ return { [1]="trigger_bone_shrapnel_explosion_on_killing_pinned_enemy" } }, - [1016]={ + [1172]={ [1]={ [1]={ limit={ @@ -25625,7 +29410,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1017]={ + [1173]={ [1]={ [1]={ limit={ @@ -25641,7 +29426,7 @@ return { [1]="trigger_caltrops_at_end_of_projectile_flight" } }, - [1018]={ + [1174]={ [1]={ [1]={ limit={ @@ -25657,7 +29442,7 @@ return { [1]="trigger_frozen_vortex_on_shattering_enemy" } }, - [1019]={ + [1175]={ [1]={ [1]={ limit={ @@ -25673,7 +29458,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1020]={ + [1176]={ [1]={ [1]={ limit={ @@ -25689,7 +29474,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1021]={ + [1177]={ [1]={ [1]={ limit={ @@ -25714,7 +29499,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1022]={ + [1178]={ [1]={ [1]={ limit={ @@ -25730,7 +29515,7 @@ return { [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [1023]={ + [1179]={ [1]={ [1]={ limit={ @@ -25755,7 +29540,7 @@ return { [1]="trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger" } }, - [1024]={ + [1180]={ [1]={ [1]={ limit={ @@ -25771,7 +29556,7 @@ return { [1]="trigger_titanic_arrows_on_impact" } }, - [1025]={ + [1181]={ [1]={ [1]={ limit={ @@ -25787,7 +29572,7 @@ return { [1]="triggered_by_brand_support" } }, - [1026]={ + [1182]={ [1]={ [1]={ limit={ @@ -25803,7 +29588,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1027]={ + [1183]={ [1]={ [1]={ limit={ @@ -25837,7 +29622,7 @@ return { [2]="support_manaforged_arrows_mana_cost_%_threshold" } }, - [1028]={ + [1184]={ [1]={ [1]={ limit={ @@ -25853,7 +29638,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1029]={ + [1185]={ [1]={ [1]={ limit={ @@ -25882,14 +29667,56 @@ return { [1]="triggered_skill_damage_+%" } }, - [1030]={ + [1186]={ [1]={ }, stats={ [1]="triggers_burning_runes_on_placing_ground_rune" } }, - [1031]={ + [1187]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + } + }, + text="DNT On Shocking an enemy where there are at least {1}\nShocked enemy within {0} metres that are not already\nin a Shocking Rift, Supported Skills Consume Shock of\nall enemies within {0} metres to trigger Shocking Rift" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=2, + [2]="#" + } + }, + text="DNT On Shocking an enemy where there are at least {1}\nShocked enemies within {0} metres that are not already\nin a Shocking Rift, Supported Skills Consume Shock of\nall enemies within {0} metres to trigger Shocking Rift" + } + }, + stats={ + [1]="try_consuming_shock_to_trigger_shocking_rift_in_radius_on_shocking_enemy", + [2]="consume_shock_of_X_enemies_to_trigger_shocking_rift" + } + }, + [1188]={ [1]={ [1]={ limit={ @@ -25920,7 +29747,7 @@ return { [4]="skill_max_unleash_seals" } }, - [1032]={ + [1189]={ [1]={ [1]={ limit={ @@ -25949,7 +29776,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_channelling" } }, - [1033]={ + [1190]={ [1]={ [1]={ limit={ @@ -25978,7 +29805,30 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" } }, - [1034]={ + [1191]={ + [1]={ + }, + stats={ + [1]="virtual_support_salvo_maximum_seals" + } + }, + [1192]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Walls from Supported Skills are created along a Fissure instead" + } + }, + stats={ + [1]="wall_is_created_along_a_fissure_instead" + } + }, + [1193]={ [1]={ [1]={ limit={ @@ -25994,7 +29844,23 @@ return { [1]="wall_is_created_in_a_circle_instead" } }, - [1035]={ + [1194]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Warcries expend {0} Rage to bypass their Cooldown, instead of an Endurance Charge" + } + }, + stats={ + [1]="warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge" + } + }, + [1195]={ [1]={ [1]={ limit={ @@ -26010,7 +29876,7 @@ return { [1]="warcry_grant_X_rage_per_5_power" } }, - [1036]={ + [1196]={ [1]={ [1]={ limit={ @@ -26039,7 +29905,7 @@ return { [1]="warcry_speed_+%" } }, - [1037]={ + [1197]={ [1]={ [1]={ limit={ @@ -26068,7 +29934,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1038]={ + [1198]={ [1]={ [1]={ limit={ @@ -26084,7 +29950,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1039]={ + [1199]={ [1]={ [1]={ limit={ @@ -26100,7 +29966,7 @@ return { [1]="wither_on_hit_chance_rollovercapped" } }, - [1040]={ + [1200]={ [1]={ [1]={ limit={ @@ -26125,7 +29991,7 @@ return { [1]="withered_on_chaos_damage_hit_chance_%" } }, - [1041]={ + [1201]={ [1]={ [1]={ [1]={ @@ -26145,7 +30011,32 @@ return { [1]="withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage" } }, - [1042]={ + [1202]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance to Mark another Enemy within 4 Metres of Marked Enemy when Consumed" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills will Mark another Enemy within 4 Metres of Marked Enemy when Consumed" + } + }, + stats={ + [1]="your_marks_spread_to_a_nearby_enemies_on_consume_%_chance" + } + }, + [1203]={ [1]={ [1]={ limit={ @@ -26174,7 +30065,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1043]={ + [1204]={ [1]={ [1]={ limit={ @@ -26190,7 +30081,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1044]={ + [1205]={ [1]={ [1]={ limit={ @@ -26206,7 +30097,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1045]={ + [1206]={ [1]={ [1]={ limit={ @@ -26222,7 +30113,7 @@ return { [1]="minions_are_defensive" } }, - [1046]={ + [1207]={ [1]={ [1]={ limit={ @@ -26238,7 +30129,7 @@ return { [1]="support_slam_chance_for_one_additional_aftershock_%" } }, - [1047]={ + [1208]={ [1]={ [1]={ limit={ @@ -26254,23 +30145,65 @@ return { [1]="support_slam_chance_for_two_additional_aftershocks_%" } }, - [1048]={ + [1209]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% increased Culling Strike Threshold for 20 seconds on Culling with Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="Gain {0}% reduced Culling Strike Threshold for 20 seconds on Culling with Supported Skills" + } + }, + stats={ + [1]="support_culling_strike_threshold_+%_on_cull_for_seconds_from_code" + } + }, + [1210]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Supported Skills have {0}% chance to cause\nthree additional Aftershocks" + text="Minions from Supported Skills gain {0}% increased Attack and Cast Speed when their Life is reduced to 0" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions from Supported Skills gain {0}% reduced Attack and Cast Speed when their Life is reduced to 0" } }, stats={ - [1]="support_slam_chance_for_three_additional_aftershocks_%" + [1]="support_last_gasp_attack_and_cast_speed_+%_while_undying" } }, - [1049]={ + [1211]={ [1]={ [1]={ limit={ @@ -26279,14 +30212,14 @@ return { [2]="#" } }, - text="Placed Banners must have a minimum of {0} Valour to grant Refractive Plating" + text="Supported Skills have {0}% chance to cause\nthree additional Aftershocks" } }, stats={ - [1]="support_tempered_valour_minimum_valour_to_apply_buff" + [1]="support_slam_chance_for_three_additional_aftershocks_%" } }, - [1050]={ + [1212]={ [1]={ [1]={ [1]={ @@ -26319,7 +30252,7 @@ return { [1]="support_timerot_reparation_duration_per_timerot_lost_ms" } }, - [1051]={ + [1213]={ [1]={ [1]={ limit={ @@ -26348,175 +30281,190 @@ return { [1]="support_unstable_earth_damage_+%_final" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=567, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=568, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=569, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=570, - ["accuracy_rating"]=191, - ["accuracy_rating_+%"]=192, - ["active_skill_additional_projectiles_description_mode"]=555, - ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=193, - ["active_skill_can_overload"]=194, - ["active_skill_never_freeze_shock_ignite"]=195, - ["active_skill_withered_base_duration_ms"]=159, - ["add_power_charge_on_critical_strike_%"]=196, - ["add_power_charge_on_kill_%_chance"]=197, - ["added_damage_+%_final"]=198, - ["additional_base_critical_strike_chance"]=199, - ["additional_chance_to_freeze_chilled_enemies_%"]=200, - ["additional_combo_gain_chance_%"]=201, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=203, - ["additional_critical_strike_chance_permyriad_while_dead"]=202, - ["additional_projectiles_per_intensity"]=204, - ["aftershock_area_of_effect_+%_final"]=205, - ["aggravate_bleeding_on_pin_chance_%"]=206, - ["ailment_effect_+%_while_afflicted_by_relevant_ailment"]=207, - ["ailment_threshold_+%_while_channelling"]=208, - ["all_damage_gained_as_cold_instead"]=209, - ["always_freeze"]=248, - ["ancestor_totem_buff_effect_+%"]=210, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=211, - ["ancestral_aid_X_spirit_strikes_on_reaching_block_count"]=212, - ["ancestral_aid_required_count_of_recent_blocks"]=213, - ["ancestral_call_spirit_strike_interval_ms"]=214, - ["ancestral_slam_interval_duration"]=174, - ["ancestral_slam_stun_threshold_reduction_+%"]=215, - ["apply_%_cold_exposure_for_4_seconds_on_chill"]=216, - ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=217, - ["apply_X_incision_on_hit"]=218, - ["apply_attack_projectile_weakness_%_per_1m_knockback"]=219, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=642, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=643, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=644, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=645, + ["accuracy_rating"]=205, + ["accuracy_rating_+%"]=206, + ["active_skill_additional_projectiles_description_mode"]=630, + ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=207, + ["active_skill_can_overload"]=208, + ["active_skill_cannot_manually_reload"]=209, + ["active_skill_never_freeze_shock_ignite"]=210, + ["add_power_charge_on_critical_strike_%"]=211, + ["add_power_charge_on_kill_%_chance"]=212, + ["added_damage_+%_final"]=213, + ["additional_base_critical_strike_chance"]=214, + ["additional_chance_to_freeze_chilled_enemies_%"]=215, + ["additional_combo_gain_chance_%"]=216, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=218, + ["additional_critical_strike_chance_permyriad_while_dead"]=217, + ["additional_projectiles_instead_applies_to_number_of_terrain_chains"]=219, + ["additional_projectiles_per_intensity"]=220, + ["aftershock_area_of_effect_+%_final"]=221, + ["aftershocks_create_jagged_ground"]=222, + ["aggravate_bleeding_on_pin_chance_%"]=223, + ["ailment_effect_+%_while_afflicted_by_relevant_ailment"]=225, + ["ailment_threshold_+%_while_channelling"]=226, + ["all_damage_gained_as_cold_instead"]=227, + ["allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life"]=228, + ["allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana"]=229, + ["allies_in_font_of_rage_radius_leech_permyriad_of_my_physical_damage_as_rage"]=230, + ["always_freeze"]=268, + ["always_pierce"]=193, + ["ancestor_totem_buff_effect_+%"]=231, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=232, + ["ancestral_aid_required_count_of_recent_blocks"]=233, + ["ancestral_call_spirit_strike_interval_ms"]=234, + ["ancestral_slam_interval_duration"]=180, + ["ancestral_slam_stun_threshold_reduction_+%"]=235, + ["apply_%_cold_exposure_for_4_seconds_on_chill"]=236, + ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=237, + ["apply_X_incision_on_hit"]=238, + ["apply_attack_projectile_weakness_%_per_1m_knockback"]=239, ["apply_linked_curses_on_hit_%"]=118, - ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=220, - ["area_damage_+%"]=221, + ["apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry"]=240, + ["area_damage_+%"]=241, ["area_of_effect_+%_while_dead"]=30, - ["armour_+%_while_performing_action_per_250_ms_attack_time"]=225, - ["armour_break_for_%_of_poison_damage_over_poison_duration"]=222, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=223, - ["armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies"]=224, - ["attack_and_cast_speed_+%"]=227, - ["attack_and_cast_speed_+%_during_onslaught"]=228, - ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=180, - ["attack_critical_strike_chance_+%"]=229, - ["attack_damage_+%"]=231, - ["attack_damage_+%_per_1000_accuracy_rating"]=232, - ["attack_damage_is_lucky_if_surrounded"]=230, - ["attack_maximum_added_physical_damage_as_%_of_strength"]=226, - ["attack_maximum_added_physical_damage_per_10_rage"]=233, - ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=234, - ["attack_maximum_added_physical_damage_with_weapons"]=235, - ["attack_minimum_added_physical_damage_as_%_of_strength"]=226, - ["attack_minimum_added_physical_damage_per_10_rage"]=233, - ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=234, - ["attack_minimum_added_physical_damage_with_weapons"]=235, + ["armour_+%_while_performing_action_per_250_ms_attack_time"]=245, + ["armour_break_for_%_of_poison_damage_over_poison_duration"]=242, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=243, + ["armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies"]=244, + ["attack_and_cast_speed_+%"]=247, + ["attack_and_cast_speed_+%_during_onslaught"]=248, + ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=186, + ["attack_critical_strike_chance_+%"]=249, + ["attack_damage_+%"]=251, + ["attack_damage_+%_per_1000_accuracy_rating"]=252, + ["attack_damage_is_lucky_if_surrounded"]=250, + ["attack_maximum_added_physical_damage_as_%_of_strength"]=246, + ["attack_maximum_added_physical_damage_per_10_rage"]=253, + ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=254, + ["attack_maximum_added_physical_damage_with_weapons"]=255, + ["attack_minimum_added_physical_damage_as_%_of_strength"]=246, + ["attack_minimum_added_physical_damage_per_10_rage"]=253, + ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=254, + ["attack_minimum_added_physical_damage_with_weapons"]=255, ["attack_skills_additional_ballista_totems_allowed"]=53, - ["attack_speed_+%"]=236, - ["attack_speed_+%_when_on_low_life"]=237, - ["attack_speed_+%_with_atleast_20_rage"]=239, - ["attacks_impale_on_hit_%_chance"]=240, - ["attacks_inflict_bleeding_on_hit"]=293, + ["attack_speed_+%"]=256, + ["attack_speed_+%_when_on_low_life"]=257, + ["attack_speed_+%_with_atleast_20_rage"]=258, + ["attacks_impale_on_hit_%_chance"]=259, + ["attacks_inflict_bleeding_on_hit"]=313, + ["attacks_roll_crits_twice"]=260, ["aura_can_affect_self"]=141, ["aura_effect_+%"]=32, - ["avoid_interruption_while_using_this_skill_%"]=241, - ["barrage_support_projectile_spread_+%"]=242, - ["base_all_ailment_duration_+%"]=243, + ["avoid_interruption_while_using_this_skill_%"]=261, + ["barrage_support_projectile_spread_+%"]=262, + ["base_all_ailment_duration_+%"]=263, ["base_aura_area_of_effect_+%"]=31, - ["base_bleed_chance_is_poison_chance_instead"]=244, - ["base_bleed_duration_+%"]=245, - ["base_cast_speed_+%"]=246, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=247, - ["base_chance_to_freeze_%"]=248, - ["base_chance_to_ignite_%"]=249, - ["base_chance_to_inflict_bleeding_%"]=250, - ["base_chance_to_not_consume_corpse_%"]=329, - ["base_chance_to_pierce_%"]=251, + ["base_bleed_chance_is_poison_chance_instead"]=264, + ["base_bleed_duration_+%"]=265, + ["base_cast_speed_+%"]=266, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=267, + ["base_chance_to_freeze_%"]=268, + ["base_chance_to_inflict_bleeding_%"]=269, + ["base_chance_to_not_consume_corpse_%"]=365, + ["base_chance_to_pierce_%"]=270, ["base_chance_to_poison_on_hit_%"]=150, - ["base_chance_to_shock_%"]=252, + ["base_chance_to_shock_%"]=271, + ["base_chaos_damage_can_ignite"]=272, ["base_chaos_damage_to_deal_per_minute"]=129, ["base_cold_damage_to_deal_per_minute"]=133, - ["base_combo_stacks_decay_delay_ms"]=253, - ["base_consume_enemy_freeze_on_hit"]=254, - ["base_consume_enemy_shock_on_hit"]=255, - ["base_cooldown_modifier_ms"]=256, - ["base_cooldown_speed_+%"]=257, - ["base_cooldown_speed_+%_final"]=258, + ["base_combo_stacks_decay_delay_ms"]=273, + ["base_consume_enemy_freeze_on_hit"]=274, + ["base_consume_enemy_shock_on_hit"]=275, + ["base_cooldown_modifier_ms"]=276, + ["base_cooldown_speed_+%"]=277, + ["base_cooldown_speed_+%_final"]=278, ["base_cost_+%"]=22, ["base_critical_strike_multiplier_+"]=64, - ["base_curse_delay_+%"]=259, - ["base_curse_duration_+%"]=260, - ["base_damage_+%_while_an_ailment_on_you"]=261, - ["base_deal_no_chaos_damage"]=262, - ["base_debuff_slow_magnitude_+%"]=263, + ["base_curse_delay_+%"]=279, + ["base_curse_duration_+%"]=280, + ["base_damage_+%_while_an_ailment_on_you"]=281, + ["base_deal_no_chaos_damage"]=282, + ["base_debuff_slow_magnitude_+%"]=283, ["base_fire_damage_to_deal_per_minute"]=130, - ["base_freezing_enemy_chills_enemies_in_radius"]=425, - ["base_global_chance_to_knockback_%"]=264, - ["base_inflict_cold_exposure_on_hit_%_chance"]=265, - ["base_inflict_fire_exposure_on_hit_%_chance"]=266, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=267, - ["base_killed_monster_dropped_item_quantity_+%"]=268, - ["base_killed_monster_dropped_item_rarity_+%"]=269, + ["base_freezing_enemy_chills_enemies_in_radius"]=475, + ["base_global_chance_to_knockback_%"]=284, + ["base_inflict_cold_exposure_on_hit_%_chance"]=285, + ["base_inflict_fire_exposure_on_hit_%_chance"]=286, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=287, + ["base_killed_monster_dropped_item_quantity_+%"]=288, + ["base_killed_monster_dropped_item_rarity_+%"]=289, ["base_life_cost_+%"]=23, ["base_life_gain_per_target"]=100, - ["base_life_leech_from_physical_attack_damage_permyriad"]=270, - ["base_life_reservation_+%"]=272, - ["base_life_reservation_efficiency_+%"]=271, - ["base_lightning_damage_can_electrocute"]=273, - ["base_limit_+"]=274, - ["base_mana_cost_+"]=182, + ["base_life_leech_from_physical_attack_damage_permyriad"]=290, + ["base_life_reservation_+%"]=292, + ["base_life_reservation_efficiency_+%"]=291, + ["base_lightning_damage_can_electrocute"]=293, + ["base_limit_+"]=294, + ["base_mana_cost_+"]=191, ["base_mana_cost_-%"]=24, - ["base_mana_leech_from_physical_attack_damage_permyriad"]=275, - ["base_mana_reservation_+%"]=276, + ["base_mana_leech_from_physical_attack_damage_permyriad"]=295, + ["base_mana_reservation_+%"]=296, ["base_melee_attack_repeat_count"]=105, - ["base_mine_detonation_time_ms"]=277, + ["base_mine_detonation_time_ms"]=297, ["base_mine_duration"]=51, - ["base_number_of_additional_fissures"]=278, + ["base_number_of_additional_fissures"]=298, ["base_number_of_remote_mines_allowed"]=57, - ["base_number_of_support_ghosts_allowed"]=279, + ["base_number_of_support_ghosts_allowed"]=299, ["base_number_of_totems_allowed"]=54, ["base_number_of_traps_allowed"]=56, - ["base_overkill_icy_vortex_duration_ms"]=280, + ["base_overkill_icy_vortex_duration_ms"]=300, ["base_physical_damage_to_deal_per_minute"]=131, - ["base_poison_chance_is_bleed_chance_instead"]=281, - ["base_poison_duration_+%"]=282, - ["base_projectile_speed_+%"]=283, + ["base_poison_chance_is_bleed_chance_instead"]=301, + ["base_poison_duration_+%"]=302, + ["base_projectile_speed_+%"]=303, ["base_reduce_enemy_cold_resistance_%"]=66, ["base_reduce_enemy_fire_resistance_%"]=65, ["base_reduce_enemy_lightning_resistance_%"]=68, - ["base_remnant_duration_ms"]=284, - ["base_reservation_+%"]=286, - ["base_reservation_efficiency_+%"]=285, + ["base_remnant_duration_ms"]=304, + ["base_reservation_+%"]=306, + ["base_reservation_efficiency_+%"]=305, ["base_skill_area_of_effect_+%"]=28, ["base_skill_cost_life_instead_of_mana"]=34, - ["base_skill_no_reservation"]=287, + ["base_skill_no_reservation"]=307, ["base_skill_reserve_life_instead_of_mana"]=35, - ["base_spell_cooldown_speed_+%"]=288, + ["base_spell_cooldown_speed_+%"]=308, ["base_spell_repeat_count"]=106, - ["base_stun_duration_+%"]=289, - ["base_stun_threshold_reduction_+%"]=290, + ["base_stun_duration_+%"]=309, + ["base_stun_threshold_reduction_+%"]=310, ["base_totem_duration"]=48, ["base_trap_duration"]=50, ["base_use_life_in_place_of_mana"]=36, - ["bleed_chance_%_vs_full_life_enemy"]=291, - ["bleed_chance_+%_vs_full_life_enemy"]=292, + ["bleed_chance_%_vs_full_life_enemy"]=311, + ["bleed_chance_+%_vs_full_life_enemy"]=312, ["bleed_on_hit_base_duration"]=140, - ["bleed_on_hit_with_attacks_%"]=293, - ["bleeding_monsters_attack_speed_+%"]=294, - ["bleeding_monsters_movement_velocity_+%"]=295, + ["bleed_on_hit_with_attacks_%"]=313, + ["bleeding_monsters_attack_speed_+%"]=314, + ["bleeding_monsters_movement_velocity_+%"]=315, ["blind_duration_+%"]=61, - ["blood_magic_skill_life_cost_+%_final"]=296, - ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=297, - ["break_armour_equal_to_%_of_dexterity_vs_parried_enemies"]=298, - ["burn_damage_+%"]=299, - ["cannot_break_armour"]=300, + ["blind_effect_+%"]=316, + ["blood_magic_skill_life_cost_+%_final"]=317, + ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=318, + ["branching_fissure_area_of_effect_+%_final"]=190, + ["branching_fissure_damage_+%_final"]=189, + ["break_armour_equal_to_%_of_dexterity_vs_parried_enemies"]=319, + ["burn_damage_+%"]=320, + ["can_only_damage_low_life_enemies"]=321, + ["cannot_break_armour"]=322, ["cannot_cast_curses"]=119, - ["cannot_cause_bleeding"]=293, - ["cannot_cause_stun_but_allow_stun_buildup"]=301, - ["cannot_consume_impale"]=302, - ["cannot_consume_power_frenzy_endurance_charges"]=303, - ["cannot_daze"]=304, - ["cannot_inflict_blind"]=305, + ["cannot_cause_bleeding"]=313, + ["cannot_cause_stun_but_allow_stun_buildup"]=323, + ["cannot_consume_impale"]=324, + ["cannot_consume_infusions"]=325, + ["cannot_consume_power_frenzy_endurance_charges"]=326, + ["cannot_daze"]=327, + ["cannot_inflict_blind"]=328, ["cannot_inflict_elemental_ailments"]=152, - ["cannot_inflict_maim"]=306, - ["cannot_pin"]=307, + ["cannot_inflict_maim"]=329, + ["cannot_kill_enemies_with_hits"]=330, + ["cannot_miss_against_full_life_enemies"]=331, + ["cannot_pin"]=332, + ["cascadeable_offering_support_offering_casted_spell_damage_+%_final"]=333, + ["cascadeable_spells_occur_from_offering"]=333, ["cast_linked_spells_on_attack_crit_%"]=120, ["cast_linked_spells_on_melee_kill_%"]=121, ["cast_on_damage_taken_%"]=127, @@ -26525,945 +30473,1105 @@ return { ["cast_on_death_%"]=124, ["cast_on_death_damage_+%_final_while_dead"]=113, ["cast_on_stunned_%"]=125, - ["cast_when_damage_taken_trigger_threshold_+%"]=308, + ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=334, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=335, + ["cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value"]=336, + ["cast_when_damage_taken_trigger_threshold_+%"]=337, ["cast_while_channelling_time_ms"]=128, - ["chaining_range_+%"]=309, + ["chaining_range_+%"]=338, ["chains_hit_X_more_times"]=70, - ["chance_%_to_double_effect_of_removing_charges"]=313, - ["chance_for_coin_shower_on_kill_%"]=310, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=311, - ["chance_for_extra_damage_roll_%"]=312, - ["chance_to_aftershock_+%_per_250_ms_attack_time"]=314, - ["chance_to_bleed_on_hit_%_vs_maimed"]=315, - ["chance_to_chain_from_shocked_enemy_%"]=316, - ["chance_to_crush_on_hit_%"]=317, - ["chance_to_double_stun_duration_%"]=318, - ["chance_to_fork_extra_projectile_%"]=319, - ["chance_to_fork_from_frozen_enemy_%"]=320, - ["chance_to_fortify_on_melee_hit_+%"]=321, - ["chance_to_freeze_shock_ignite_%"]=322, - ["chance_to_gain_1_more_charge_%"]=323, - ["chance_to_gain_endurance_charge_on_armour_break_%"]=324, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=325, - ["chance_to_ignore_hexproof_%"]=326, - ["chance_to_inflict_additional_impale_%"]=327, - ["chance_to_intimidate_on_hit_%"]=328, - ["chance_to_pierce_ignited_enemy_%"]=330, - ["chance_to_place_an_additional_mine_%"]=331, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=332, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=162, - ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=333, - ["chance_to_unnerve_on_hit_%"]=334, - ["channelled_skill_damage_+%"]=335, - ["chaos_damage_+%"]=336, - ["charge_skip_consume_chance_%"]=337, - ["chill_duration_+%"]=164, - ["chill_effect_+%"]=163, - ["chilled_ground_applies_%_freeze_multiplier_taken"]=338, - ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=339, - ["cold_ailment_effect_+%"]=340, - ["cold_damage_+%"]=341, - ["combat_rush_effect_+%"]=342, - ["combo_falloff_speed_+%"]=343, - ["companion_takes_%_damage_before_you_from_support"]=344, - ["conditional_skill_additional_usages_after_meeting_requirement"]=345, - ["conditional_skill_additional_usages_duration_ms"]=345, - ["consume_%_of_maximum_life_flask_charges_on_skill_use"]=715, - ["consume_%_of_maximum_mana_flask_charges_on_skill_use"]=439, - ["consume_armour_break_to_trigger_battershout_explosion"]=346, - ["consume_bleed_to_create_X_haemocrystals"]=347, - ["consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge"]=348, - ["consume_enemy_daze_to_always_hit"]=349, - ["consume_enemy_freeze_to_guarantee_crit"]=350, - ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=351, - ["consume_ignite_on_hit"]=352, - ["consume_maim_on_hit_to_break_%_armour"]=353, - ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=354, - ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=355, - ["cooldown_speed_+%_per_different_ailment_inflicted_recently"]=356, - ["cooldown_speed_+%_per_highest_power_of_recently_heavy_stunned_enemy"]=357, - ["cooldown_speed_+%_per_recent_block_up_to_40%"]=358, - ["create_life_remnant_on_melee_kill_bleeding_enemy_%"]=359, - ["critical_hit_damaging_ailment_effect_+%"]=360, + ["chance_%_to_create_additional_remnant"]=343, + ["chance_%_to_double_effect_of_removing_charges"]=344, + ["chance_%_to_gain_abyssal_modifier_on_minion_death"]=345, + ["chance_%_to_gain_power_charges_per_combo_spent"]=339, + ["chance_for_coin_shower_on_kill_%"]=340, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=341, + ["chance_for_extra_damage_roll_%"]=342, + ["chance_to_aftershock_+%_per_250_ms_attack_time"]=347, + ["chance_to_bleed_on_hit_%_vs_maimed"]=348, + ["chance_to_chain_from_shocked_enemy_%"]=349, + ["chance_to_crush_on_hit_%"]=350, + ["chance_to_double_stun_duration_%"]=351, + ["chance_to_fork_extra_projectile_%"]=352, + ["chance_to_fork_from_frozen_enemy_%"]=353, + ["chance_to_fortify_on_melee_hit_+%"]=354, + ["chance_to_gain_1_more_charge_%"]=355, + ["chance_to_gain_1_more_random_charge_%"]=356, + ["chance_to_gain_endurance_charge_on_armour_break_%"]=357, + ["chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%"]=358, + ["chance_to_gain_endurance_charge_on_perfect_timing_hit_%"]=359, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=360, + ["chance_to_ignore_hexproof_%"]=361, + ["chance_to_inflict_additional_impale_%"]=362, + ["chance_to_intimidate_on_hit_%"]=363, + ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=364, + ["chance_to_pierce_ignited_enemy_%"]=366, + ["chance_to_place_an_additional_mine_%"]=367, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=368, + ["chance_to_summon_support_ghost_on_killing_blow_%"]=164, + ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=369, + ["chance_to_unnerve_on_hit_%"]=371, + ["channelled_skill_damage_+%"]=372, + ["chaos_damage_%_dealt_as_armour_break"]=373, + ["chaos_damage_+%"]=375, + ["chaos_damage_can_freeze"]=374, + ["chaos_damage_can_shock"]=204, + ["charge_skip_consume_chance_%"]=376, + ["chill_duration_+%"]=166, + ["chill_effect_+%"]=165, + ["chilled_ground_applies_%_freeze_multiplier_taken"]=377, + ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=378, + ["cold_ailment_effect_+%"]=379, + ["cold_damage_+%"]=381, + ["cold_damage_can_impale"]=380, + ["combat_rush_effect_+%"]=382, + ["combo_falloff_speed_+%"]=383, + ["companion_takes_%_damage_before_you_from_support"]=384, + ["conditional_skill_additional_usages_after_meeting_requirement"]=385, + ["conditional_skill_additional_usages_duration_ms"]=385, + ["consume_%_of_maximum_life_flask_charges_on_skill_use"]=820, + ["consume_%_of_maximum_mana_flask_charges_on_skill_use"]=491, + ["consume_armour_break_to_trigger_battershout_explosion"]=386, + ["consume_bleed_to_create_X_haemocrystals"]=387, + ["consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge"]=388, + ["consume_enemy_daze_to_always_hit"]=389, + ["consume_enemy_freeze_to_guarantee_crit"]=390, + ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=391, + ["consume_ignite_on_hit"]=392, + ["consume_maim_on_hit_to_break_%_armour"]=393, + ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=394, + ["consume_shock_of_X_enemies_to_trigger_shocking_rift"]=1187, + ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=395, + ["cooldown_speed_+%_per_different_ailment_inflicted_recently"]=396, + ["cooldown_speed_+%_per_highest_power_of_recently_heavy_stunned_enemy"]=397, + ["cooldown_speed_+%_per_recent_block_up_to_40%"]=398, + ["create_X_briar_thorns_on_slam"]=399, + ["create_life_remnant_on_melee_kill_bleeding_enemy_%"]=400, + ["critical_hit_damaging_ailment_effect_+%"]=401, ["critical_strike_chance_+%"]=62, - ["critical_strike_chance_+%_per_righteous_charge"]=898, - ["critical_strike_chance_+%_vs_blinded_enemies"]=361, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=362, + ["critical_strike_chance_+%_per_righteous_charge"]=1036, + ["critical_strike_chance_+%_vs_blinded_enemies"]=402, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=403, ["critical_strike_multiplier_+_while_affected_by_elusive"]=154, - ["crossbow_attack_%_chance_to_not_consume_ammo"]=363, - ["crossbow_reload_on_heavy_stun"]=364, + ["crossbow_attack_%_chance_to_not_consume_ammo"]=404, + ["crossbow_load_x_bolts_on_dodge"]=405, + ["crossbow_reload_on_heavy_stun"]=406, ["cruelty_duration_+%"]=156, - ["cruelty_effect_+%"]=365, - ["crush_for_2_seconds_on_hit_%_chance"]=366, - ["crushing_blow_vs_ignited_and_fully_armour_broken"]=367, - ["cull_frozen_enemies_on_hit"]=368, + ["cruelty_effect_+%"]=407, + ["crush_for_2_seconds_on_hit_%_chance"]=408, + ["crushing_blow_vs_ignited_and_fully_armour_broken"]=409, + ["cull_frozen_enemies_on_hit"]=410, ["curse_apply_as_aura"]=2, - ["curse_apply_as_curse_zone"]=369, - ["curse_area_of_effect_+%"]=370, + ["curse_apply_as_curse_zone"]=411, + ["curse_area_of_effect_+%"]=412, ["curse_effect_+%"]=134, + ["curse_ignores_curse_limit"]=413, + ["curse_pacify_for_final_%_of_duration"]=161, ["curse_supported_by_blasphemy"]=2, - ["damage_+%"]=372, - ["damage_+%_for_non_minions"]=373, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=374, - ["damage_+%_on_full_energy_shield"]=382, - ["damage_+%_per_200_mana_spent_recently"]=375, - ["damage_+%_per_endurance_charge"]=376, - ["damage_+%_per_frenzy_charge"]=377, - ["damage_+%_per_power_charge"]=378, - ["damage_+%_vs_enemies_on_full_life"]=379, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=380, - ["damage_+%_vs_frozen_enemies"]=381, - ["damage_+%_when_on_full_life"]=383, - ["damage_+%_when_on_low_life"]=384, - ["damage_+%_while_an_ailment_on_you"]=385, - ["damage_+%_while_life_leeching"]=386, - ["damage_+%_while_mana_leeching"]=387, - ["damage_over_time_+%"]=371, - ["damage_penetrates_%_elemental_resistances_while_all_resonance_is_25"]=179, - ["damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=388, - ["damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=389, - ["damage_taken_+%_per_250_ms_buff_uptime"]=390, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=391, - ["damage_vs_enemies_on_low_life_+%"]=392, - ["damaging_ailments_deal_damage_+%_faster"]=393, - ["daze_self_on_critical_hit_for_X_ms"]=394, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=395, - ["deal_no_elemental_damage"]=396, - ["deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger"]=397, - ["deathmark_minion_damage_+%_final"]=398, - ["difficulty_of_meeting_conditional_requirement_+%"]=399, - ["display_base_intensity_loss"]=400, - ["display_totems_no_infusion"]=401, - ["distance_scaled_accuracy_rating_penalty_+%"]=402, - ["dot_multiplier_+"]=403, - ["elemental_damage_+%"]=405, - ["elemental_damage_+%_final_per_5_lowest_resonance"]=178, - ["elemental_damage_+%_final_per_righteous_charge"]=899, - ["elemental_damage_cannot_be_reflected"]=404, - ["elusive_effect_+%"]=406, - ["enemies_you_shock_movement_speed_+%"]=407, - ["enemies_you_shock_take_%_increased_physical_damage"]=408, - ["enemy_phys_reduction_%_penalty_vs_hit"]=409, - ["energy_generated_+%"]=410, - ["evasion_+%_while_performing_action_per_250_ms_attack_time"]=411, - ["explode_on_low_life_%_maximum_life_to_deal"]=412, + ["curse_zones_are_hazards"]=414, + ["curses_reflected_to_self"]=415, + ["damage_+%"]=417, + ["damage_+%_for_non_minions"]=418, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=419, + ["damage_+%_on_full_energy_shield"]=427, + ["damage_+%_per_200_mana_spent_recently"]=420, + ["damage_+%_per_endurance_charge"]=421, + ["damage_+%_per_frenzy_charge"]=422, + ["damage_+%_per_power_charge"]=423, + ["damage_+%_vs_enemies_on_full_life"]=424, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=425, + ["damage_+%_vs_frozen_enemies"]=426, + ["damage_+%_when_on_full_life"]=428, + ["damage_+%_when_on_low_life"]=429, + ["damage_+%_while_an_ailment_on_you"]=430, + ["damage_+%_while_life_leeching"]=431, + ["damage_+%_while_mana_leeching"]=432, + ["damage_over_time_+%"]=416, + ["damage_penetrates_%_elemental_resistances_while_all_resonance_is_25"]=185, + ["damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=433, + ["damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=434, + ["damage_taken_+%_per_250_ms_buff_uptime"]=435, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=436, + ["damage_vs_enemies_on_low_life_+%"]=437, + ["damaging_ailments_deal_damage_+%_faster"]=438, + ["daze_self_on_critical_hit_for_X_ms"]=439, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=440, + ["deal_no_elemental_damage"]=441, + ["deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger"]=442, + ["deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger"]=443, + ["deathmark_minion_damage_+%_final"]=444, + ["difficulty_of_meeting_conditional_requirement_+%"]=445, + ["display_base_intensity_loss"]=446, + ["distance_scaled_accuracy_rating_penalty_+%"]=447, + ["dot_multiplier_+"]=448, + ["double_ancestral_boost_effect"]=449, + ["elemental_damage_+%"]=451, + ["elemental_damage_+%_final_per_5_lowest_resonance"]=184, + ["elemental_damage_+%_final_per_righteous_charge"]=1037, + ["elemental_damage_cannot_be_reflected"]=450, + ["elusive_effect_+%"]=452, + ["enemies_you_shock_movement_speed_+%"]=453, + ["enemies_you_shock_take_%_increased_physical_damage"]=454, + ["enemy_phys_reduction_%_penalty_vs_hit"]=455, + ["energy_generated_+%"]=456, + ["evasion_+%_while_performing_action_per_250_ms_attack_time"]=457, + ["explode_on_low_life_%_maximum_life_to_deal"]=458, + ["exposure_effect_+%"]=459, ["extra_target_targeting_distance_+%"]=27, - ["faster_bleed_%"]=413, - ["faster_burn_%"]=414, - ["faster_poison_%"]=415, - ["feeding_frenzy_minion_damage_+%_final"]=416, - ["feeding_frenzy_minion_damage_taken_+%_final"]=417, - ["fire_damage_+%"]=418, - ["fire_dot_multiplier_+"]=419, - ["firestorm_drop_burning_ground_duration_ms"]=420, - ["fortify_duration_+%"]=421, - ["freeze_applies_cold_resistance_+"]=422, - ["freeze_duration_+%"]=424, - ["freeze_duration_ms_+"]=423, + ["faster_bleed_%"]=460, + ["faster_burn_%"]=461, + ["faster_poison_%"]=462, + ["faster_poison_%_per_current_rage"]=463, + ["feeding_frenzy_minion_damage_+%_final"]=464, + ["feeding_frenzy_minion_damage_taken_+%_final"]=465, + ["final_strike_is_ancestrally_boosted"]=466, + ["fire_damage_+%"]=467, + ["fire_dot_multiplier_+"]=468, + ["firestorm_drop_burning_ground_duration_ms"]=469, + ["flame_pillar_support_maximum_pillars_per_skill_use"]=470, + ["font_of_blood_radius"]=228, + ["font_of_mana_radius"]=229, + ["font_of_rage_radius"]=230, + ["fortify_duration_+%"]=471, + ["freeze_applies_cold_resistance_+"]=472, + ["freeze_duration_+%"]=474, + ["freeze_duration_ms_+"]=473, ["freeze_mine_cold_resistance_+_while_frozen"]=153, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=426, - ["frost_bomb_damage_+%_final_per_100ms_duration"]=427, - ["fully_break_enemies_armour_on_heavy_stun"]=428, - ["fully_broken_armour_duration_ms_+"]=429, - ["fully_broken_armour_duration_ms_removed_on_hit"]=430, - ["gain_%_damage_as_lighting_per_mana_flask_charge_consumed"]=439, - ["gain_%_of_base_wand_damage_as_added_spell_damage"]=431, - ["gain_1_rage_on_use_%_chance"]=432, - ["gain_X_perfection_on_successful_perfect_timing"]=433, - ["gain_X_volatility_on_empowered_skill_use"]=434, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=476, + ["frost_bomb_damage_+%_final_per_100ms_duration"]=477, + ["fully_break_enemies_armour_on_heavy_stun"]=478, + ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=479, + ["fully_broken_armour_duration_ms_removed_on_hit"]=480, + ["gain_%_damage_as_lighting_per_mana_flask_charge_consumed"]=491, + ["gain_%_of_base_wand_damage_as_added_spell_damage"]=481, + ["gain_%_of_damage_as_physical_per_10_life_cost"]=492, + ["gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds"]=493, + ["gain_1_rage_on_use_%_chance"]=482, + ["gain_X_guard_on_heavy_stun_per_10_strength"]=483, + ["gain_X_guard_on_stun_per_10_strength"]=483, + ["gain_X_perfection_on_successful_perfect_timing"]=484, + ["gain_X_volatility_on_empowered_skill_use"]=485, + ["gain_X_wildshard_stacks_on_cast"]=486, + ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=346, ["gain_elusive_on_crit_%_chance"]=148, - ["gain_endurance_charge_on_melee_stun"]=435, - ["gain_endurance_charge_on_melee_stun_%"]=435, - ["gain_energy_shield_cost_equal_to_intelligence"]=436, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=437, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=438, - ["gain_power_charge_on_kill_with_hit_%"]=440, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=177, - ["gain_righteous_charge_on_mana_spent_%"]=441, - ["gain_vaal_soul_on_hit_cooldown_ms"]=442, - ["gain_x_rage_on_melee_hit"]=443, - ["gem_display_quality_has_no_effect"]=444, - ["generic_ongoing_trigger_retriggerable_on_reaching_%_mana"]=445, - ["generic_ongoing_trigger_triggered_on_reaching_full_mana"]=445, - ["global_cannot_crit"]=183, + ["gain_endurance_charge_on_melee_stun"]=487, + ["gain_endurance_charge_on_melee_stun_%"]=487, + ["gain_energy_shield_cost_equal_to_intelligence"]=488, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=489, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=490, + ["gain_power_charge_on_kill_with_hit_%"]=494, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=183, + ["gain_righteous_charge_on_mana_spent_%"]=495, + ["gain_unholy_might_for_X_ms_on_command"]=496, + ["gain_vaal_soul_on_hit_cooldown_ms"]=497, + ["gain_x_endurance_charges_on_heavy_stunning_unique_enemy"]=498, + ["gain_x_rage_on_melee_hit"]=499, + ["gem_display_quality_has_no_effect"]=500, + ["global_cannot_crit"]=192, ["global_chance_to_blind_on_hit_%"]=60, - ["global_hit_causes_monster_flee_%"]=446, - ["global_knockback"]=447, - ["global_maximum_added_chaos_damage"]=448, - ["global_maximum_added_cold_damage"]=449, - ["global_maximum_added_fire_damage"]=450, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=835, - ["global_maximum_added_lightning_damage"]=451, - ["global_maximum_added_physical_damage"]=452, - ["global_minimum_added_chaos_damage"]=448, - ["global_minimum_added_cold_damage"]=449, - ["global_minimum_added_fire_damage"]=450, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=835, - ["global_minimum_added_lightning_damage"]=451, - ["global_minimum_added_physical_damage"]=452, + ["global_hit_causes_monster_flee_%"]=501, + ["global_knockback"]=502, + ["global_maximum_added_chaos_damage"]=503, + ["global_maximum_added_cold_damage"]=504, + ["global_maximum_added_fire_damage"]=505, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=965, + ["global_maximum_added_lightning_damage"]=506, + ["global_maximum_added_physical_damage"]=507, + ["global_minimum_added_chaos_damage"]=503, + ["global_minimum_added_cold_damage"]=504, + ["global_minimum_added_fire_damage"]=505, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=965, + ["global_minimum_added_lightning_damage"]=506, + ["global_minimum_added_physical_damage"]=507, ["global_poison_on_hit"]=149, - ["global_reduce_enemy_block_%"]=453, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=454, - ["grenade_skill_%_chance_to_explode_twice"]=455, - ["grenade_skill_does_not_bounce_off_ground"]=456, - ["ground_effects_cannot_trigger"]=457, - ["hazard_rearm_%_chance"]=458, - ["hazards_trigger_at_end_of_duration_instead"]=459, - ["herald_effect_on_self_+%"]=460, - ["hex_transfer_on_death_range_+%"]=461, - ["hit_damage_+%"]=462, - ["hits_grant_cruelty"]=181, - ["ignite_duration_+%"]=463, - ["ignite_effect_+%_final_against_frozen_enemies"]=464, - ["ignites_apply_fire_resistance_+"]=465, - ["impale_magnitude_+%"]=466, - ["impale_on_hit_%_chance"]=467, - ["impale_support_physical_damage_+%_final"]=468, - ["inc_aoe_plus_more_area_damage_+%_final"]=469, - ["infernal_legion_minion_burning_effect_radius"]=850, - ["infernal_legion_minions_have_burning_effect_radius_+"]=173, - ["inflict_cold_exposure_for_x_ms_on_cold_crit"]=470, - ["inflict_fire_exposure_for_x_ms_on_ignite"]=471, - ["inflict_lightning_exposure_for_x_ms_on_shock"]=472, - ["infusion_all_damage_%_to_gain_as_infusion_type"]=473, - ["infusion_grants_life_regeneration_rate_per_minute_%"]=474, - ["inspiration_charge_duration_+%"]=475, - ["instability_on_critical_%_chance"]=476, - ["intensity_loss_frequency_while_moving_+%"]=477, - ["intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken"]=478, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=508, + ["grenade_only_detonate_from_detonators"]=509, + ["grenade_skill_%_chance_to_explode_twice"]=510, + ["grenade_skill_cooldown_speed_+%"]=511, + ["grenade_skill_does_not_bounce_off_ground"]=512, + ["ground_effects_apply_cooldown_speed_+%_final"]=513, + ["ground_effects_cannot_trigger"]=514, + ["grounding_shocks_chance_%_to_create_orb_on_shocking_enemy"]=515, + ["guard_on_stun_guard_duration_ms"]=483, + ["haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed"]=516, + ["hazard_rearm_%_chance"]=517, + ["hazards_trigger_at_end_of_duration_instead"]=518, + ["herald_effect_on_self_+%"]=519, + ["hex_transfer_on_death_range_+%"]=520, + ["hit_damage_+%"]=521, + ["hits_grant_cruelty"]=187, + ["hits_ignore_enemy_fire_resistance"]=522, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=523, + ["ice_crystal_explosion_cold_damage_can_impale"]=524, + ["ice_crystal_explosion_impale_chance_%"]=525, + ["ignite_duration_+%"]=526, + ["ignite_effect_+%_final_against_frozen_enemies"]=527, + ["ignites_apply_fire_resistance_+"]=528, + ["impale_magnitude_+%"]=529, + ["impale_on_hit_%_chance"]=530, + ["impale_support_physical_damage_+%_final"]=531, + ["inc_aoe_plus_more_area_damage_+%_final"]=532, + ["infernal_legion_minion_burning_effect_radius"]=980, + ["infernal_legion_minions_have_burning_effect_radius_+"]=179, + ["inflict_exposure_for_x_ms_on_cold_crit"]=533, + ["inflict_exposure_for_x_ms_on_ignite"]=534, + ["inflict_exposure_for_x_ms_on_shock"]=535, + ["inspiration_charge_duration_+%"]=536, + ["instability_on_critical_%_chance"]=537, + ["instilling_all_damage_%_to_gain_as_instilling_type"]=538, + ["intensity_loss_frequency_while_moving_+%"]=539, + ["intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken"]=540, + ["iron_grip_damage_modifier_effectiveness_%"]=541, + ["iron_will_damage_modifier_effectiveness_%"]=542, ["is_remote_mine"]=42, ["keystone_point_blank"]=41, ["kill_enemy_on_hit_if_under_10%_life"]=40, - ["knockback_chance_%_at_close_range"]=480, - ["knockback_distance_+%"]=481, - ["lightning_ailment_effect_+%"]=482, - ["lightning_damage_+%"]=483, - ["local_gem_dex_requirement_+%"]=484, - ["local_gem_int_requirement_+%"]=485, - ["local_gem_str_requirement_+%"]=486, - ["lose_all_righteous_charges_on_mana_use_threshold"]=900, - ["maim_effect_+%"]=487, - ["maim_on_hit_%"]=488, + ["knockback_chance_%_at_close_range"]=544, + ["knockback_distance_+%"]=545, + ["life_leech_from_source_not_removed_at_full_life"]=546, + ["lightning_ailment_effect_+%"]=547, + ["lightning_damage_+%"]=548, + ["local_gem_dex_requirement_+%"]=549, + ["local_gem_int_requirement_+%"]=550, + ["local_gem_str_requirement_+%"]=551, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1038, + ["loyalty_%_of_redirected_damage_recouped_as_life_for_owner"]=552, + ["maim_effect_+%"]=553, + ["maim_on_hit_%"]=554, ["mana_gain_per_target"]=101, - ["manaweave_added_cold_damage_%_cost_if_payable"]=490, - ["manaweave_added_lightning_damage_%_cost_if_payable"]=489, - ["manaweave_cost_equals_%_unreserved_mana"]=489, - ["mark_effect_+%"]=189, - ["marked_target_%_physical_damage_taken_as_armour_break"]=491, - ["maximum_added_cold_damage_per_frenzy_charge"]=502, - ["maximum_intensify_stacks"]=492, + ["manaweave_added_cold_damage_%_cost_if_payable"]=556, + ["manaweave_added_lightning_damage_%_cost_if_payable"]=555, + ["manaweave_cost_equals_%_unreserved_mana"]=555, + ["mark_effect_+%"]=202, + ["marked_target_%_physical_damage_taken_as_armour_break"]=557, + ["maximum_added_cold_damage_per_frenzy_charge"]=570, + ["maximum_curse_zones_allowed"]=559, + ["maximum_intensify_stacks"]=560, ["melee_attack_number_of_spirit_strikes"]=25, - ["melee_attacks_usable_without_mana_cost_while_surrounded"]=493, - ["melee_damage_+%"]=494, - ["melee_damage_vs_bleeding_enemies_+%"]=495, - ["melee_physical_damage_+%"]=496, - ["melee_range_+"]=497, + ["melee_attacks_usable_without_mana_cost_while_surrounded"]=561, + ["melee_damage_+%"]=562, + ["melee_damage_vs_bleeding_enemies_+%"]=563, + ["melee_physical_damage_+%"]=564, + ["melee_range_+"]=565, ["melee_splash"]=103, - ["mine_critical_strike_chance_+%_per_power_charge"]=166, - ["mine_detonation_radius_+%"]=498, - ["mine_detonation_speed_+%"]=499, + ["mine_critical_strike_chance_+%_per_power_charge"]=168, + ["mine_detonation_radius_+%"]=566, + ["mine_detonation_speed_+%"]=567, ["mine_duration_+%"]=59, - ["mine_laying_speed_+%"]=500, - ["mine_projectile_speed_+%_per_frenzy_charge"]=501, - ["mine_throwing_speed_+%_per_frenzy_charge"]=165, - ["minimum_added_cold_damage_per_frenzy_charge"]=502, - ["minimum_power_from_quality"]=503, - ["minion_actor_scale_+%"]=504, - ["minion_additional_physical_damage_reduction_%"]=505, - ["minion_attack_speed_+%"]=506, - ["minion_block_%"]=507, - ["minion_burning_damage_+%"]=508, - ["minion_cast_speed_+%"]=509, - ["minion_chance_to_deal_double_damage_%"]=510, - ["minion_chance_to_taunt_on_hit_%"]=511, - ["minion_command_skill_cooldown_speed_+%"]=512, - ["minion_cooldown_recovery_+%"]=513, - ["minion_damage_+%"]=514, - ["minion_damage_+%_on_full_life"]=515, - ["minion_elemental_resistance_%"]=167, - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=170, - ["minion_fire_damage_taken_+%"]=171, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=516, - ["minion_larger_aggro_radius"]=1044, - ["minion_maximum_all_elemental_resistances_%"]=168, - ["minion_maximum_life_+%"]=517, - ["minion_movement_speed_+%"]=518, - ["minion_on_death_heal_nearby_minions_for_%_of_life_and_remove_ailments"]=519, - ["minion_on_death_heal_radius"]=519, - ["minion_projectile_speed_+%"]=520, - ["minion_recover_%_maximum_life_on_hit"]=521, - ["minions_are_defensive"]=1045, - ["minions_inflict_exposure_on_hit_%_chance"]=522, - ["mirage_archer_number_of_additional_projectiles"]=523, - ["multiple_projectiles_projectile_spread_+%"]=524, - ["multistrike_area_of_effect_+%_per_repeat"]=525, - ["multistrike_damage_+%_final_on_first_repeat"]=526, - ["multistrike_damage_+%_final_on_second_repeat"]=527, - ["multistrike_damage_+%_final_on_third_repeat"]=528, - ["never_freeze"]=529, - ["never_ignite"]=187, - ["never_shock"]=188, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=530, - ["no_cost"]=531, + ["mine_laying_speed_+%"]=568, + ["mine_projectile_speed_+%_per_frenzy_charge"]=569, + ["mine_throwing_speed_+%_per_frenzy_charge"]=167, + ["minimum_added_cold_damage_per_frenzy_charge"]=570, + ["minimum_power_from_quality"]=571, + ["minion_actor_scale_+%"]=572, + ["minion_additional_physical_damage_reduction_%"]=573, + ["minion_attack_speed_+%"]=574, + ["minion_block_%"]=575, + ["minion_burning_damage_+%"]=576, + ["minion_cast_speed_+%"]=577, + ["minion_chance_to_deal_double_damage_%"]=578, + ["minion_chance_to_taunt_on_hit_%"]=579, + ["minion_command_skill_cooldown_speed_+%"]=580, + ["minion_cooldown_recovery_+%"]=581, + ["minion_damage_+%"]=582, + ["minion_damage_+%_on_full_life"]=583, + ["minion_elemental_resistance_%"]=169, + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=176, + ["minion_fire_damage_taken_+%"]=177, + ["minion_gain_unholy_might_for_X_ms_on_command"]=584, + ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=585, + ["minion_larger_aggro_radius"]=1205, + ["minion_maximum_all_elemental_resistances_%"]=170, + ["minion_maximum_life_+%"]=586, + ["minion_movement_speed_+%"]=587, + ["minion_on_death_heal_nearby_minions_for_%_of_life_and_remove_ailments"]=588, + ["minion_on_death_heal_radius"]=588, + ["minion_projectile_speed_+%"]=589, + ["minion_recover_%_maximum_life_on_hit"]=590, + ["minions_are_defensive"]=1206, + ["minions_are_gigantic"]=591, + ["minions_inflict_exposure_on_hit_%_chance"]=592, + ["mirage_archer_number_of_additional_projectiles"]=593, + ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"]=594, + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"]=595, + ["multiple_projectiles_projectile_spread_+%"]=596, + ["multistrike_area_of_effect_+%_per_repeat"]=597, + ["multistrike_damage_+%_final_on_first_repeat"]=598, + ["multistrike_damage_+%_final_on_second_repeat"]=599, + ["multistrike_damage_+%_final_on_third_repeat"]=600, + ["never_freeze"]=601, + ["never_ignite"]=198, + ["never_shock"]=199, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=602, + ["no_cost"]=603, ["no_spirit_strikes"]=26, - ["non_curse_aura_effect_+%"]=532, - ["non_damaging_ailment_effect_+%"]=533, - ["non_reviving_minion_%_chance_to_revive"]=534, - ["non_skill_base_all_damage_%_to_gain_as_chaos"]=535, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=536, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=537, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=538, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=539, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=540, - ["non_skill_base_cold_damage_%_to_convert_to_fire"]=541, - ["non_skill_base_cold_damage_%_to_gain_as_fire"]=542, - ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=543, - ["non_skill_base_physical_damage_%_to_convert_to_cold"]=544, - ["non_skill_base_physical_damage_%_to_convert_to_fire"]=545, - ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=546, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=547, - ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=548, - ["non_skill_base_physical_damage_%_to_gain_as_fire"]=549, - ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=550, - ["nova_skills_cast_at_target_location"]=551, - ["number_of_additional_curses_allowed"]=552, + ["non_curse_aura_effect_+%"]=604, + ["non_damaging_ailment_effect_+%"]=605, + ["non_reviving_minion_%_chance_to_revive"]=606, + ["non_skill_base_all_damage_%_to_gain_as_chaos"]=607, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=608, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=609, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=610, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=611, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=612, + ["non_skill_base_cold_damage_%_to_convert_to_fire"]=613, + ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=614, + ["non_skill_base_cold_damage_%_to_gain_as_fire"]=615, + ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=616, + ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=617, + ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=618, + ["non_skill_base_physical_damage_%_to_convert_to_cold"]=619, + ["non_skill_base_physical_damage_%_to_convert_to_fire"]=620, + ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=621, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=622, + ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=623, + ["non_skill_base_physical_damage_%_to_gain_as_fire"]=624, + ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=625, + ["nova_skills_cast_at_target_location"]=626, + ["number_of_additional_curses_allowed"]=627, ["number_of_additional_forks_base"]=73, - ["number_of_additional_mines_to_place"]=553, - ["number_of_additional_poison_stacks"]=554, - ["number_of_additional_projectiles"]=555, - ["number_of_additional_remote_mines_allowed"]=556, - ["number_of_additional_traps_allowed"]=557, + ["number_of_additional_mines_to_place"]=628, + ["number_of_additional_poison_stacks"]=629, + ["number_of_additional_projectiles"]=630, + ["number_of_additional_remote_mines_allowed"]=631, + ["number_of_additional_traps_allowed"]=632, ["number_of_additional_traps_to_throw"]=43, + ["number_of_branching_fissures"]=188, ["number_of_chains"]=69, ["number_of_mines_to_place"]=42, - ["number_of_totems_allowed_is_1"]=558, - ["number_of_warcries_exerting_this_action"]=479, - ["offering_spells_effect_+%"]=559, - ["offering_spells_effect_+%_if_consumed_additional_skeleton"]=560, - ["on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies"]=561, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=562, - ["overpowered_effect_+%"]=563, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=564, - ["palm_skill_number_of_spirit_strikes"]=565, - ["parallel_projectile_firing_point_x_dist_+%"]=566, + ["number_of_totems_allowed_is_1"]=633, + ["number_of_warcries_exerting_this_action"]=543, + ["offering_spells_effect_+%"]=634, + ["offering_spells_effect_+%_if_consumed_additional_skeleton"]=635, + ["on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies"]=636, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=637, + ["overabundance_life_reserved_for_x_ms"]=638, + ["overabundance_reserve_%_life_on_skill_use"]=638, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=639, + ["palm_skill_number_of_spirit_strikes"]=640, + ["parallel_projectile_firing_point_x_dist_+%"]=641, parent="stat_descriptions", - ["perfect_timing_window_ms_+%"]=571, - ["physical_damage_%_dealt_as_evasion_break_vs_bleeding"]=572, - ["physical_damage_+%"]=573, - ["pin_almost_pinned_enemies"]=574, - ["placing_traps_cooldown_recovery_+%"]=575, + ["perfect_timing_window_ms_+%"]=646, + ["physical_damage_%_dealt_as_evasion_break_vs_bleeding"]=647, + ["physical_damage_+%"]=648, + ["pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite"]=649, + ["pillar_of_flame_consume_ignite_to_create_X_pillars"]=162, + ["pin_almost_pinned_enemies"]=650, + ["placing_traps_cooldown_recovery_+%"]=651, ["projectile_base_number_of_targets_to_pierce"]=49, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=576, - ["projectile_chance_to_not_pierce_%"]=577, - ["projectile_damage_+%"]=578, - ["projectile_damage_+%_if_pierced_enemy"]=579, - ["projectile_damage_+%_vs_nearby_enemies"]=581, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=652, + ["projectile_chance_to_not_pierce_%"]=653, + ["projectile_damage_+%"]=654, + ["projectile_damage_+%_if_pierced_enemy"]=655, + ["projectile_damage_+%_vs_nearby_enemies"]=658, ["projectile_number_to_split"]=71, - ["projectile_randomly_fork_chain_or_pierce"]=580, + ["projectile_randomly_fork_chain_or_pierce"]=656, ["projectile_return_%_chance"]=74, + ["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"]=657, ["projectiles_fork"]=72, - ["projectiles_pierce_all_targets_in_x_range"]=582, + ["projectiles_nova"]=659, + ["projectiles_pierce_all_targets_in_x_range"]=660, ["projectiles_rain"]=37, ["projectiles_return"]=74, + ["projectiles_spiral"]=661, ["quality_display_base_totem_duration_is_gem"]=48, - ["quality_display_lifetap_is_gem"]=816, + ["quality_display_lifetap_is_gem"]=945, ["quality_display_melee_splash_is_gem"]=104, ["quality_display_swiftbrand_is_gem"]=146, - ["random_projectile_direction"]=583, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=585, - ["recover_%_maximum_life_on_cull"]=586, - ["recover_%_maximum_mana_on_cull"]=587, - ["recover_mana_%_on_minion_death"]=584, - ["recover_permyriad_life_on_skill_use"]=588, - ["reduce_enemy_chaos_resistance_%"]=589, - ["reduce_enemy_dodge_%"]=590, + ["rage_skip_consume_chance_%"]=662, + ["random_projectile_direction"]=663, + ["randomly_curse_self_on_skill_use"]=664, + ["recoup_%_of_spell_cost_as_mana_on_cast"]=666, + ["recoup_mana_%_on_minion_death"]=665, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=668, + ["recover_%_maximum_life_on_cull"]=669, + ["recover_%_maximum_mana_on_cull"]=670, + ["recover_mana_%_on_minion_death"]=667, + ["recover_permyriad_life_on_skill_use"]=671, + ["reduce_enemy_chaos_resistance_%"]=672, ["reduce_enemy_elemental_resistance_%"]=67, - ["refresh_bleeding_duration_on_hit_%_chance"]=591, - ["regenerate_%_life_over_1_second_on_skill_use"]=592, - ["reload_speed_+%"]=593, - ["remnant_delay_X_ms"]=594, - ["remnant_effect_+%"]=595, - ["remnant_pickup_range_+%"]=596, - ["remnants_affect_allies_in_presence_instead"]=597, - ["remnants_vanish_after_X_ms"]=598, - ["remote_mined_by_support"]=599, - ["remove_ailment_when_applying_relevant_ailment"]=600, - ["remove_freeze_on_ignite"]=601, - ["repeat_last_step_of_combo_attack"]=602, - ["return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling"]=603, - ["rip_support_buff_base_duration"]=359, - ["rip_support_life_regeneration_rate_+%"]=359, - ["rip_support_life_remnant_creation_radius"]=604, - ["sacrifice_%_life_on_skill_use"]=605, + ["refresh_bleeding_duration_on_hit_%_chance"]=673, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=674, + ["regenerate_%_life_over_1_second_on_skill_use"]=675, + ["reload_speed_+%"]=676, + ["remnant_delay_X_ms"]=677, + ["remnant_effect_+%"]=678, + ["remnant_pickup_range_+%"]=679, + ["remnants_affect_allies_in_presence_instead"]=680, + ["remnants_vanish_after_X_ms"]=681, + ["remote_mined_by_support"]=682, + ["remove_ailment_when_applying_relevant_ailment"]=683, + ["remove_freeze_on_ignite"]=684, + ["repeat_last_step_of_combo_attack"]=685, + ["restore_%_life_on_skill_use_per_1000_ms_cooldown"]=686, + ["return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling"]=687, + ["rip_support_buff_base_duration"]=400, + ["rip_support_life_regeneration_rate_+%"]=400, + ["rip_support_life_remnant_creation_radius"]=688, + ["sacrifice_%_life_on_skill_use"]=689, + ["sacrificial_lamb_minion_always_detonatable"]=690, ["secondary_base_fire_damage_to_deal_per_minute"]=132, - ["shock_chance_+%"]=606, - ["shock_duration_+%"]=607, - ["shock_effect_+%"]=608, - ["shock_effect_+%_from_damaging_hits"]=609, - ["shock_nearby_enemy_area_of_effect_radius"]=651, - ["shock_nearby_enemy_base_area_of_effect_radius"]=651, - ["shocks_reflected_to_self"]=610, - ["sigil_repeat_frequency_+%"]=611, - ["skill_X_fewer_maximum_stages"]=613, - ["skill_X_minimum_stages"]=614, - ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=615, - ["skill_buff_effect_+%"]=616, - ["skill_can_only_use_bow"]=1001, - ["skill_can_only_use_non_melee_weapons"]=1004, - ["skill_can_own_mirage_archers"]=617, - ["skill_cannot_be_used_unless_stationary_for_X_ms"]=618, - ["skill_cannot_generate_endurance_charges"]=619, - ["skill_cannot_generate_frenzy_charges"]=620, - ["skill_cannot_generate_power_charges"]=621, - ["skill_conditional_requires_X_volatility"]=622, - ["skill_consume_corpse_within_X_units_on_use"]=625, - ["skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage"]=623, - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=624, - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=626, - ["skill_detonate_random_volatility_amount_on_use"]=627, - ["skill_detonation_time_+%"]=628, - ["skill_effect_and_damaging_ailment_duration_+%"]=629, - ["skill_effect_duration_+%"]=630, - ["skill_effect_duration_+%_while_dead"]=631, - ["skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%"]=632, - ["skill_grenade_detonate_only_at_end_of_duration"]=633, - ["skill_has_spectral_arrows"]=634, - ["skill_is_blessing_skill"]=612, - ["skill_max_unleash_seals"]=1031, - ["skill_maximum_energy_+%"]=635, - ["skill_offering_targets_an_additional_skeleton"]=636, - ["skill_presence_effects_linger_for_X_ms"]=637, - ["skill_uncapped_combo_counter"]=184, - ["skill_unusable_until_moved_X_distance"]=638, - ["slam_aftershock_chance_%"]=639, - ["snipe_triggered_skill_damage_+%_final"]=640, - ["solar_orb_base_pulse_frequency_ms"]=641, - ["spell_critical_strike_chance_+%"]=642, - ["spell_damage_+%"]=643, - ["spell_echo_plus_chance_double_damage_%_final"]=644, + ["shock_chance_+%"]=691, + ["shock_duration_+%"]=692, + ["shock_effect_+%"]=693, + ["shock_nearby_enemy_area_of_effect_radius"]=742, + ["shock_nearby_enemy_base_area_of_effect_radius"]=742, + ["shocks_reflected_to_self"]=694, + ["sigil_repeat_frequency_+%"]=695, + ["skill_X_fewer_maximum_stages"]=697, + ["skill_X_minimum_stages"]=698, + ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=699, + ["skill_buff_effect_+%"]=700, + ["skill_can_only_use_bow"]=1154, + ["skill_can_only_use_non_melee_weapons"]=1157, + ["skill_can_own_mirage_archers"]=701, + ["skill_cannot_be_used_unless_stationary_for_X_ms"]=702, + ["skill_cannot_generate_endurance_charges"]=703, + ["skill_cannot_generate_frenzy_charges"]=704, + ["skill_cannot_generate_power_charges"]=705, + ["skill_conditional_requires_X_volatility"]=706, + ["skill_consume_corpse_within_X_units_on_use"]=707, + ["skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage"]=708, + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=709, + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=710, + ["skill_consume_up_to_X_corpses_on_use"]=707, + ["skill_detonate_random_volatility_amount_on_use"]=711, + ["skill_detonation_time_+%"]=712, + ["skill_effect_and_damaging_ailment_duration_+%"]=713, + ["skill_effect_duration_+%"]=714, + ["skill_effect_duration_+%_while_dead"]=715, + ["skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%"]=716, + ["skill_grenade_detonate_only_at_end_of_duration"]=717, + ["skill_has_double_limit"]=718, + ["skill_has_spectral_arrows"]=719, + ["skill_ignores_cooldown"]=720, + ["skill_is_blessing_skill"]=696, + ["skill_max_unleash_seals"]=1188, + ["skill_maximum_energy_+%"]=721, + ["skill_offering_targets_an_additional_skeleton"]=722, + ["skill_presence_effects_linger_for_X_ms"]=723, + ["skill_uncapped_combo_counter"]=194, + ["skill_unusable_until_moved_X_distance"]=725, + ["skill_wolf_pack_size"]=726, + ["slam_aftershock_chance_%"]=727, + ["snipe_triggered_skill_damage_+%_final"]=728, + ["solar_orb_base_pulse_frequency_ms"]=729, + ["spell_critical_strike_chance_+%"]=730, + ["spell_damage_+%"]=731, + ["spell_echo_plus_chance_double_damage_%_final"]=732, ["spell_only_castable_on_death"]=123, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=645, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=733, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack"]=734, ["spell_uncastable_if_triggerable"]=123, ["spellslinger_trigger_on_wand_attack_%"]=126, - ["static_strike_base_zap_frequency_ms"]=646, - ["static_strike_zap_speed_+%"]=647, - ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=648, + ["static_strike_base_zap_frequency_ms"]=735, + ["static_strike_zap_speed_+%"]=736, + ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=737, + ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=738, + ["strikes_are_ancestrally_boosted"]=739, ["summon_2_totems"]=55, ["summon_cold_resistance_+"]=116, ["summon_fire_resistance_+"]=115, ["summon_lightning_resistance_+"]=117, - ["summon_mirage_archer_on_hit"]=649, - ["summon_totem_cast_speed_+%"]=650, - ["support_%_chance_to_shock_nearby_enemy_on_shock"]=651, - ["support_ablation_offering_skill_damage_+%_final"]=652, - ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=653, - ["support_added_cooldown_count_if_not_instant"]=654, - ["support_additional_accurary_rating_+%_final"]=655, - ["support_additional_fissures_attack_speed_+%_final"]=656, - ["support_additional_fissures_damage_+%_final"]=657, + ["summon_mirage_archer_on_hit"]=740, + ["summon_totem_cast_speed_+%"]=741, + ["support_%_chance_to_shock_nearby_enemy_on_shock"]=742, + ["support_ablation_offering_skill_damage_+%_final"]=743, + ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=744, + ["support_added_cooldown_count_if_not_instant"]=745, + ["support_additional_accurary_rating_+%_final"]=746, + ["support_additional_fissures_attack_speed_+%_final"]=747, + ["support_additional_fissures_damage_+%_final"]=748, ["support_additional_totem_damage_+%_final"]=89, - ["support_additional_trap_%_chance_for_1_additional_trap"]=658, + ["support_additional_trap_%_chance_for_1_additional_trap"]=749, ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=44, ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=45, ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=46, - ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"]=659, - ["support_advancing_assault_projectile_damage_+%_final"]=660, - ["support_ailment_cooldown_ailment_chance_+%_final"]=661, - ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=662, - ["support_ancestor_slam_totem_attack_speed_+%_final"]=663, + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds"]=750, + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"]=751, + ["support_advancing_assault_projectile_damage_+%_final"]=752, + ["support_ailment_cooldown_ailment_chance_+%_final"]=753, + ["support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment"]=754, + ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=755, + ["support_ammo_conservation_crossbow_reload_speed_+%_final"]=756, ["support_ancestor_slam_totem_damage_+%_final"]=3, - ["support_ancestral_slam_big_hit_area_+%"]=176, - ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=175, - ["support_anticipation_charge_gain_frequency_+%"]=664, - ["support_anticipation_rapid_fire_count"]=1031, - ["support_aoe_cooldown_aoe_+%_final"]=665, - ["support_apply_daze_on_armour_break"]=666, - ["support_apply_daze_on_warcry"]=667, + ["support_ancestral_call_damage_+%_final"]=757, + ["support_ancestral_slam_big_hit_area_+%"]=182, + ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=181, + ["support_ancestral_warrior_totem_attack_speed_+%_final"]=758, + ["support_anticipation_charge_gain_frequency_+%"]=759, + ["support_anticipation_rapid_fire_count"]=1188, + ["support_aoe_cooldown_aoe_+%_final"]=760, + ["support_apply_daze_on_armour_break"]=761, + ["support_apply_daze_on_warcry"]=762, + ["support_arcane_archery_damage_+%_final"]=763, ["support_arcane_surge_base_duration_ms"]=155, ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=155, - ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=668, + ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=764, ["support_area_concentrate_area_damage_+%_final"]=9, - ["support_area_of_effect_+%_final"]=669, - ["support_armour_explosion"]=670, - ["support_arms_length_knockback_distance_+%_final"]=671, - ["support_astral_projection_aoe_+%_final"]=672, - ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"]=673, + ["support_area_of_effect_+%_final"]=765, + ["support_armour_explosion"]=766, + ["support_arms_length_knockback_distance_+%_final"]=767, + ["support_astral_projection_aoe_+%_final"]=768, + ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"]=769, ["support_attack_skills_elemental_damage_+%_final"]=7, ["support_attack_totem_attack_speed_+%_final"]=139, - ["support_aura_duration_base_buff_duration"]=674, + ["support_atziri_curse_effect_+%_final"]=770, + ["support_aura_duration_base_buff_duration"]=771, + ["support_auto_shotgun_attack_speed_+%_final"]=772, + ["support_auto_shotgun_damage_+%_final"]=773, + ["support_auto_shotgun_projectile_count_+%_final"]=774, + ["support_auto_shotgun_reload_speed_+%_final"]=775, ["support_bane_curse_effect_+%_final"]=135, - ["support_barrage_attack_time_+%_per_projectile_fired"]=675, + ["support_barrage_attack_time_+%_per_projectile_fired"]=776, ["support_barrage_damage_+%_final"]=10, - ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=676, + ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=777, ["support_base_cruelty_duration_ms"]=157, - ["support_base_lifetap_buff_duration"]=816, + ["support_base_lifetap_buff_duration"]=945, ["support_better_ailments_damaging_ailment_effect_+%_final"]=90, ["support_better_ailments_hit_damage_+%_final"]=91, + ["support_biting_frost_damage_+%_final_vs_frozen_unique_enemies"]=778, ["support_blasphemy_curse_effect_+%_final"]=136, - ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=677, - ["support_blood_fountain_radius"]=678, - ["support_blood_thirst_damage_+%_final"]=679, + ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=779, + ["support_blood_thirst_damage_+%_final"]=780, ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=142, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=680, - ["support_bone_shrapnel_physical_damage_equal_to_%_monster_life"]=681, - ["support_brand_area_of_effect_+%_final"]=682, - ["support_brand_damage_+%_final"]=683, - ["support_brink_damage_+%_final_vs_heavy_stunned_target"]=684, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=781, + ["support_bone_shrapnel_physical_damage_equal_to_%_monster_life"]=782, + ["support_brand_area_of_effect_+%_final"]=783, + ["support_brand_damage_+%_final"]=784, + ["support_brink_damage_+%_final_vs_heavy_stunned_target"]=785, + ["support_brink_hit_damage_stun_multiplier_+%_final"]=786, ["support_brutality_physical_damage_+%_final"]=92, - ["support_burning_damage_+%_final"]=685, - ["support_burning_runes_base_fire_damage_equal_to_%_maximum_mana"]=686, - ["support_bursting_plague_max_value_%_of_max_life"]=687, - ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=687, - ["support_called_shots_enable_directional_buff"]=688, - ["support_called_shots_projectile_damage_+%_final_when_matching_direction"]=689, - ["support_cannibalism_recover_%_maximum_life_on_kill"]=690, - ["support_cast_on_crit_quality_attack_damage_+%_final"]=691, + ["support_burning_damage_+%_final"]=787, + ["support_burning_runes_base_fire_damage_equal_to_%_maximum_mana"]=788, + ["support_bursting_plague_max_value_%_of_max_life"]=789, + ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=789, + ["support_called_shots_additional_projectiles_when_matching_indicated_direction"]=790, + ["support_called_shots_enable_directional_buff"]=195, + ["support_called_shots_projectile_damage_+%_final_when_matching_direction"]=791, + ["support_cannibalism_recover_%_maximum_life_on_kill"]=792, + ["support_cast_on_crit_quality_attack_damage_+%_final"]=793, ["support_cast_on_crit_spell_damage_+%_final"]=18, ["support_cast_on_melee_kill_spell_damage_+%_final"]=19, ["support_cast_while_channelling_triggered_skill_damage_+%_final"]=20, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=692, + ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=794, ["support_chain_hit_damage_+%_final"]=75, - ["support_chance_to_bleed_bleeding_effect_+%_final"]=693, + ["support_chance_to_bleed_bleeding_effect_+%_final"]=795, ["support_chance_to_ignite_fire_damage_+%_final"]=93, - ["support_chanelling_damage_+%_final_per_second_channelling"]=694, - ["support_channelling_damage_cap"]=694, - ["support_chaos_attacks_damage_+%_final"]=695, - ["support_chaos_damage_+%_final_if_corpse_consumed_on_use"]=696, - ["support_chaos_support_non_chaos_damage_+%_final"]=697, - ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=698, - ["support_chaotic_assassination_skill_effect_duration_+%_final"]=699, - ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=700, - ["support_charged_shots_%_damage_to_gain_as_lightning"]=702, - ["support_charged_shots_applies_every_X_shots"]=701, - ["support_charged_shots_recover_%_mana_cost_on_use"]=703, - ["support_charm_charges_gained_+%_final_from_killing_blow"]=704, - ["support_chilled_ground_effect_duration_+%_final"]=705, - ["support_clarity_mana_regeneration_rate_+%"]=706, - ["support_close_combat_attack_damage_+%_final_from_distance"]=707, - ["support_clustertrap_damage_+%_final"]=708, - ["support_cold_and_fire_damage_+%_final"]=709, - ["support_cold_and_lightning_damage_+%_final"]=710, - ["support_cold_exposure_damage_+%_final"]=711, - ["support_combo_finisher_damage_+%_final"]=712, - ["support_combo_finisher_required_number_of_combo_stacks"]=713, - ["support_command_skill_damage_+%_final"]=714, + ["support_chanelling_damage_+%_final_per_second_channelling"]=796, + ["support_channelling_damage_cap"]=796, + ["support_chaos_attacks_damage_+%_final"]=797, + ["support_chaos_damage_+%_final_if_corpse_consumed_on_use"]=798, + ["support_chaos_damage_+%_final_per_corpse_consumed_on_use"]=799, + ["support_chaos_support_non_chaos_damage_+%_final"]=800, + ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=801, + ["support_chaotic_assassination_skill_effect_duration_+%_final"]=802, + ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=803, + ["support_charged_shots_%_damage_to_gain_as_lightning"]=805, + ["support_charged_shots_applies_every_X_shots"]=804, + ["support_charged_shots_recover_%_mana_cost_on_use"]=806, + ["support_charm_charges_gained_+%_final_from_killing_blow"]=807, + ["support_chilled_ground_effect_duration_+%_final"]=808, + ["support_clarity_mana_regeneration_rate_+%"]=809, + ["support_close_combat_attack_damage_+%_final_from_distance"]=810, + ["support_clustertrap_damage_+%_final"]=811, + ["support_cold_and_fire_damage_+%_final"]=812, + ["support_cold_and_lightning_damage_+%_final"]=813, + ["support_cold_exposure_damage_+%_final"]=814, + ["support_combo_finisher_damage_+%_final"]=815, + ["support_combo_finisher_damage_+%_final_per_combo"]=816, + ["support_combo_finisher_max_combo_required"]=818, + ["support_combo_finisher_next_use_requires_x_additional_combo"]=817, + ["support_combo_finisher_required_number_of_combo_stacks"]=818, + ["support_command_skill_damage_+%_final"]=819, ["support_concentrated_effect_skill_area_of_effect_+%_final"]=29, - ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"]=715, - ["support_conduction_chance_to_shock_+%_final"]=716, - ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=717, + ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"]=820, + ["support_conduction_chance_to_shock_+%_final"]=821, + ["support_consume_X_endurance_charges_on_use"]=822, + ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=823, ["support_controlled_destruction_critical_strike_chance_+%_final"]=63, ["support_controlled_destruction_spell_damage_+%_final"]=85, - ["support_cooldown_reduction_cooldown_recovery_+%"]=718, - ["support_corrupting_cry_area_of_effect_+%_final"]=719, - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"]=720, - ["support_corrupting_cry_corrupted_blood_duration_ms"]=721, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"]=722, - ["support_crazed_minions_minion_damage_+%_final_if_revived_recently"]=723, - ["support_crit_cooldown_crit_chance_+%_final"]=724, - ["support_critical_damage_critical_strike_chance_+%_final"]=725, - ["support_critical_damage_hit_damage_+%_final"]=726, + ["support_cooldown_reduction_cooldown_recovery_+%"]=824, + ["support_corrupting_cry_%_life_lost_per_corrupting_blood_applied"]=828, + ["support_corrupting_cry_area_of_effect_+%_final"]=825, + ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"]=826, + ["support_corrupting_cry_corrupted_blood_duration_ms"]=827, + ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"]=829, + ["support_crazed_minions_minion_damage_+%_final_if_revived_recently"]=830, + ["support_create_jagged_ground_if_consumed_endurance_charge"]=831, + ["support_crescendo_non_final_strike_attack_speed_+%_final"]=832, + ["support_crit_cooldown_crit_chance_+%_final"]=833, + ["support_critical_damage_critical_strike_chance_+%_final"]=834, + ["support_critical_damage_hit_damage_+%_final"]=835, ["support_cruelty_hit_damage_+%_final"]=94, - ["support_crushing_stuns_crush_on_stun_ms"]=727, - ["support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life"]=728, - ["support_crystalshatter_buff_duration"]=728, - ["support_culling_strike_vs_rare_or_unique_enemy"]=729, - ["support_curse_effect_+%_final"]=730, - ["support_damage_+%_final_per_combo_stack"]=731, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=732, + ["support_crushing_stuns_crush_on_stun_ms"]=836, + ["support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life"]=837, + ["support_crystalshatter_buff_duration"]=837, + ["support_culling_strike_threshold_+%_on_cull_for_seconds_from_code"]=1209, + ["support_culling_strike_vs_rare_or_unique_enemy"]=838, + ["support_curse_effect_+%_final"]=840, + ["support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%"]=841, + ["support_damage_+%_final_per_combo_stack"]=842, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=843, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=844, ["support_damage_while_on_full_life_+%_final"]=6, - ["support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton"]=733, - ["support_daze_break_duration_ms"]=734, - ["support_dazed_cry_duration_ms"]=735, - ["support_deadly_poison_hit_damage_+%_final"]=736, - ["support_deadly_poison_poison_effect_+%_final"]=737, + ["support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton"]=845, + ["support_daze_break_duration_ms"]=846, + ["support_dazed_cry_duration_ms"]=847, + ["support_deadly_poison_hit_damage_+%_final"]=848, + ["support_deadly_poison_poison_effect_+%_final"]=849, ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=79, ["support_debilitate_hit_damage_max_poison_stacks"]=79, ["support_debilitate_poison_effect_+%_final"]=80, - ["support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds"]=738, - ["support_deep_cuts_bleeding_effect_+%_final"]=739, - ["support_deep_cuts_hit_damage_+%_final"]=740, - ["support_deliberation_damage_+%_final"]=741, - ["support_deliberation_movement_speed_penalty_+%_final_while_performing_action"]=742, - ["support_discount_accuracy_rating_+%_final_if_empowered"]=743, - ["support_discount_skill_cost_+%_final_if_empowered"]=744, - ["support_divine_cry_damage_+%_final"]=745, - ["support_double_barrel_crossbow_reload_speed_-%_final"]=746, - ["support_double_barrel_number_of_crossbow_bolts_+"]=747, - ["support_double_number_of_cooldown_uses"]=748, - ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=749, + ["support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds"]=850, + ["support_deep_cuts_bleeding_effect_+%_final"]=851, + ["support_deep_cuts_hit_damage_+%_final"]=852, + ["support_deliberation_damage_+%_final"]=853, + ["support_deliberation_movement_speed_penalty_+%_final_while_performing_action"]=854, + ["support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%"]=855, + ["support_discount_accuracy_rating_+%_final_if_empowered"]=856, + ["support_discount_skill_cost_+%_final_if_empowered"]=857, + ["support_divine_cry_damage_+%_final"]=858, + ["support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds"]=859, + ["support_double_barrel_crossbow_reload_speed_-%_final"]=860, + ["support_double_barrel_number_of_crossbow_bolts_+"]=861, + ["support_double_number_of_cooldown_uses"]=862, + ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=863, ["support_echo_damage_+%_final"]=4, ["support_efficacy_damage_over_time_+%_final"]=88, ["support_efficacy_spell_damage_+%_final"]=86, - ["support_electrocute_damage_+%_final"]=750, - ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"]=751, - ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"]=752, + ["support_electrocute_damage_+%_final"]=864, + ["support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target"]=865, + ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"]=866, + ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"]=867, ["support_elemental_proliferation_damage_+%_final"]=5, - ["support_empowered_culling_strike"]=753, - ["support_empowered_damage_+%_final"]=754, - ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=991, - ["support_eternal_flame_chance_to_ignite_+%_final"]=755, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=756, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=757, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=758, - ["support_exposure_effect_+%"]=759, - ["support_far_combat_attack_damage_+%_final_from_distance"]=760, - ["support_faster_attacks_attack_speed_+%_final"]=761, - ["support_faster_attacks_damage_+%_final"]=762, - ["support_faster_casting_cast_speed_+%_final"]=763, - ["support_faster_casting_damage_+%_final"]=764, - ["support_faster_projectiles_projectile_speed_+%_final"]=765, - ["support_fire_and_lightning_damage_+%_final"]=766, - ["support_fire_exposure_damage_+%_final"]=767, - ["support_focused_ballista_totem_attack_speed_+%_final"]=768, - ["support_focused_ballista_totem_damage_+%_final"]=769, + ["support_empowered_culling_strike"]=868, + ["support_empowered_damage_+%_final"]=869, + ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1141, + ["support_eternal_flame_chance_to_ignite_+%_final"]=870, + ["support_executioner_damage_+%_final_while_on_low_life"]=871, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=872, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=873, + ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=874, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=875, + ["support_far_combat_attack_damage_+%_final_from_distance"]=876, + ["support_faster_attacks_attack_speed_+%_final"]=877, + ["support_faster_attacks_damage_+%_final"]=878, + ["support_faster_casting_cast_speed_+%_final"]=879, + ["support_faster_casting_damage_+%_final"]=880, + ["support_faster_projectiles_projectile_speed_+%_final"]=881, + ["support_fire_and_lightning_damage_+%_final"]=882, + ["support_fire_exposure_damage_+%_final"]=883, + ["support_fissure_on_landing_create_X_fissures_on_impact"]=884, + ["support_focus_curse_curse_delay_+%_final"]=885, + ["support_focused_ballista_totem_attack_speed_+%_final"]=886, + ["support_focused_ballista_totem_damage_+%_final"]=887, ["support_fork_forked_projectile_damage_+%_final"]=81, ["support_fork_projectile_damage_+%_final"]=78, - ["support_fortify_melee_damage_+%_final"]=770, - ["support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final"]=771, - ["support_fusillade_skill_speed_+%_final"]=772, - ["support_gambleshot_projectile_damage_+%_final"]=773, - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=774, + ["support_fortify_melee_damage_+%_final"]=888, + ["support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final"]=889, + ["support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage"]=890, + ["support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies"]=891, + ["support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage"]=892, + ["support_fusillade_skill_speed_+%_final"]=893, + ["support_gambleshot_projectile_damage_+%_final"]=894, + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=895, ["support_gem_elemental_damage_+%_final"]=95, ["support_gem_mine_damage_+%_final"]=14, - ["support_ghost_base_duration"]=775, - ["support_glacier_ice_crystal_maximum_life_+%_final"]=776, - ["support_greater_projectile_intensity_projectile_damage_+%_final"]=777, - ["support_greater_volley_projectile_damage_+%_final"]=885, - ["support_greatwood_totem_area_of_effect_+%_final_per_totem_allowed"]=778, - ["support_greatwood_totem_damage_+%_final_per_totem_allowed"]=779, - ["support_greatwood_totem_life_+%_final_per_totem_allowed"]=780, - ["support_grenade_damage_+%_final"]=781, - ["support_ground_effect_area_of_effect_+%_final_per_second"]=782, - ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=782, - ["support_haemocrystals_maximum_allowed_crystals"]=783, - ["support_heft_maximum_physical_damage_+%_final"]=784, - ["support_herbalism_life_recovery_+%_from_life_flasks"]=785, + ["support_ghost_base_duration"]=896, + ["support_glacier_ice_crystal_maximum_life_+%_final"]=897, + ["support_glory_required_+%_final"]=898, + ["support_greater_projectile_intensity_projectile_damage_+%_final"]=899, + ["support_greater_volley_projectile_damage_+%_final"]=1022, + ["support_greatwood_totem_area_of_effect_+%_cap"]=900, + ["support_greatwood_totem_area_of_effect_+%_final_cap"]=901, + ["support_greatwood_totem_area_of_effect_+%_final_per_totem_allowed"]=901, + ["support_greatwood_totem_area_of_effect_+%_per_totem_allowed"]=900, + ["support_greatwood_totem_damage_+%_final_cap"]=902, + ["support_greatwood_totem_damage_+%_final_per_totem_allowed"]=902, + ["support_greatwood_totem_life_+%_final_cap"]=903, + ["support_greatwood_totem_life_+%_final_per_totem_allowed"]=903, + ["support_grenade_ballista_attack_speed_+%_final"]=904, + ["support_grenade_ballista_damage_+%_final"]=905, + ["support_grenade_damage_+%_final"]=906, + ["support_ground_effect_area_of_effect_+%_final_per_second"]=907, + ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=907, + ["support_haemocrystals_maximum_allowed_crystals"]=908, + ["support_hardy_totems_trigger_splinter_explosion_on_death_chance_%"]=909, + ["support_hatching_elementals_base_radius"]=910, + ["support_hatching_elementals_hatch_after_X_deaths_in_radius"]=910, + ["support_heft_maximum_physical_damage_+%_final"]=911, + ["support_herbalism_life_recovery_+%_from_life_flasks"]=912, ["support_hextouch_curse_effect_+%_final"]=137, - ["support_hinder_dots_also_apply_hinder"]=786, - ["support_hit_damage_stun_multiplier_+%_final_from_current_poise"]=787, - ["support_holy_descent_consecrated_ground_base_duration_ms"]=788, - ["support_holy_descent_consecrated_ground_on_landing_radius"]=789, - ["support_hourglass_display_cooldown_time_ms"]=790, - ["support_hypothermia_cold_damage_over_time_+%_final"]=791, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=792, - ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=793, - ["support_ice_bite_base_buff_duration"]=794, - ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=794, - ["support_icicle_ice_crystal_maximum_life_+%_final"]=795, - ["support_ignite_duration_ignite_effect_+%_final"]=796, + ["support_hinder_dots_also_apply_hinder"]=913, + ["support_hit_damage_stun_multiplier_+%_final_from_current_poise"]=914, + ["support_holy_descent_consecrated_ground_base_duration_ms"]=915, + ["support_holy_descent_consecrated_ground_on_landing_radius"]=916, + ["support_hourglass_display_cooldown_time_ms"]=917, + ["support_hypothermia_cold_damage_over_time_+%_final"]=918, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=919, + ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=920, + ["support_ice_bite_base_buff_duration"]=921, + ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=921, + ["support_icicle_ice_crystal_maximum_life_+%_final"]=922, + ["support_ignite_duration_ignite_effect_+%_final"]=923, ["support_ignite_prolif_ignite_effect_+%_final"]=96, ["support_ignite_proliferation_radius"]=38, - ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"]=797, - ["support_ignited_ground_effect_duration_+%_final"]=798, - ["support_ignition_chance_to_ignite_+%_final"]=799, - ["support_impact_shockwave_base_splash_radius"]=800, - ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"]=801, - ["support_increased_area_damage_+%_final"]=802, - ["support_increased_armour_break_armour_break_amount_+%_final"]=803, - ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=804, - ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=804, - ["support_inhibitor_damage_+%_final_per_charge_type"]=805, - ["support_innervate_buff_base_duration_ms"]=806, - ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=806, - ["support_inspiration_cost_+%_final"]=807, - ["support_jagged_ground_area_of_effect_+%_final"]=808, - ["support_jagged_ground_base_duration_ms"]=809, - ["support_knockback_wave_on_stunned"]=810, - ["support_last_gasp_duration_ms"]=811, - ["support_lasting_shock_chance_to_shock_+%_final"]=812, + ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"]=924, + ["support_ignited_ground_effect_duration_+%_final"]=925, + ["support_ignition_chance_to_ignite_+%_final"]=926, + ["support_impact_shockwave_base_splash_radius"]=927, + ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"]=928, + ["support_increased_area_damage_+%_final"]=929, + ["support_increased_armour_break_armour_break_amount_+%_final"]=930, + ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=931, + ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=931, + ["support_inhibitor_damage_+%_final_per_charge_type"]=932, + ["support_inhibitor_damage_+%_final_per_infusion_type"]=933, + ["support_innervate_buff_base_duration_ms"]=934, + ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=934, + ["support_inspiration_cost_+%_final"]=935, + ["support_jagged_ground_area_of_effect_+%_final"]=936, + ["support_jagged_ground_base_duration_ms"]=937, + ["support_knockback_wave_on_stunned"]=938, + ["support_last_gasp_attack_and_cast_speed_+%_while_undying"]=1210, + ["support_last_gasp_duration_ms"]=939, + ["support_last_gasp_minion_soul_eater_while_undying"]=940, + ["support_lasting_shock_chance_to_shock_+%_final"]=941, ["support_lesser_multiple_projectile_damage_+%_final"]=13, - ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=813, - ["support_lifetap_damage_+%_final_while_buffed"]=815, - ["support_lifetap_spent_life_threshold"]=814, - ["support_lightning_exposure_damage_+%_final"]=817, - ["support_limit_skill_effect_duration_+%_final"]=818, - ["support_lockdown_distance_based_pin_damage_+%_final"]=819, + ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=942, + ["support_lifetap_damage_+%_final_while_buffed"]=944, + ["support_lifetap_spent_life_threshold"]=943, + ["support_lightning_exposure_damage_+%_final"]=946, + ["support_limit_skill_effect_duration_+%_final"]=947, + ["support_lingering_mirage_damage_+%_final"]=948, + ["support_lockdown_distance_based_pin_damage_+%_final"]=949, + ["support_long_fuse_detonation_damage_+%_final"]=950, ["support_maim_chance_physical_damage_+%_final"]=97, - ["support_maimed_enemies_physical_damage_taken_+%"]=820, - ["support_mana_flare_%_of_current_mana_consumed"]=821, - ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=822, - ["support_mana_fountain_mana_regeneration_rate_+%"]=823, - ["support_mana_fountain_radius"]=824, - ["support_manaforged_arrows_damage_+%_final"]=825, - ["support_manaforged_arrows_hit_damage_+%_final_per_mana_spent"]=826, - ["support_manaforged_arrows_mana_cost_%_threshold"]=1027, - ["support_max_attack_damage_+%_final_from_current_poise"]=827, - ["support_measured_speed_attack_speed_+%_final_per_stack"]=828, - ["support_measured_speed_disabled_ms"]=829, - ["support_measured_speed_maximum_stacks"]=829, - ["support_meat_shield_minion_damage_+%_final"]=830, - ["support_melee_damage_+%_final_vs_higher_percent_life_target"]=831, - ["support_melee_damage_+%_final_vs_lower_percent_life_target"]=831, - ["support_melee_physical_damage_+%_final"]=1, - ["support_melee_physical_damage_attack_speed_+%_final"]=832, + ["support_maimed_enemies_physical_damage_taken_+%"]=951, + ["support_mana_flare_%_of_current_mana_consumed"]=952, + ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=953, + ["support_mana_fountain_mana_regeneration_rate_+%"]=954, + ["support_manaforged_arrows_damage_+%_final"]=955, + ["support_manaforged_arrows_hit_damage_+%_final_per_mana_spent"]=956, + ["support_manaforged_arrows_mana_cost_%_threshold"]=1183, + ["support_max_attack_damage_+%_final_from_current_poise"]=957, + ["support_measured_speed_attack_speed_+%_final_per_stack"]=958, + ["support_measured_speed_disabled_ms"]=959, + ["support_measured_speed_maximum_stacks"]=959, + ["support_meat_shield_minion_damage_+%_final"]=960, + ["support_melee_damage_+%_final_vs_higher_percent_life_target"]=961, + ["support_melee_damage_+%_final_vs_lower_percent_life_target"]=961, + ["support_melee_physical_damage_+%_final"]=558, + ["support_melee_physical_damage_attack_speed_+%_final"]=962, ["support_melee_splash_damage_+%_final"]=102, ["support_melee_splash_damage_+%_final_for_splash"]=104, - ["support_minefield_mine_damage_+%_final"]=833, - ["support_minefield_mine_throwing_speed_+%_final"]=834, - ["support_minion_damage_+%_final"]=836, - ["support_minion_damage_minion_life_+%_final"]=837, - ["support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana"]=838, - ["support_minion_damage_with_non_command_skills_+%_final"]=839, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=840, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=841, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=842, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=843, - ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=844, - ["support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute"]=172, - ["support_minion_maximum_life_+%_final"]=845, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=846, - ["support_minion_pact_damage_+%_final"]=847, - ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=847, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=848, - ["support_minion_use_focussed_target"]=849, - ["support_minions_ignite_for_%_max_life"]=850, - ["support_mirage_archer_attack_speed_+%_final"]=851, - ["support_mirage_archer_base_duration"]=852, - ["support_mirage_archer_damage_+%_final"]=853, - ["support_mobile_assault_skill_speed_+%_final"]=854, - ["support_mobility_damage_+%_final"]=855, - ["support_mobility_movement_speed_penalty_+%_final_while_performing_action"]=856, - ["support_momentum_distance_travelled_to_gain_momentum"]=857, - ["support_momnetum_damage_+%_final_with_momentum"]=857, - ["support_more_duration_skill_effect_duration_+%_final"]=858, - ["support_multi_poison_poison_duration_+%_final"]=859, + ["support_minefield_mine_damage_+%_final"]=963, + ["support_minefield_mine_throwing_speed_+%_final"]=964, + ["support_minion_damage_+%_final"]=966, + ["support_minion_damage_minion_life_+%_final"]=967, + ["support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana"]=968, + ["support_minion_damage_with_non_command_skills_+%_final"]=969, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=970, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=971, + ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=972, + ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=973, + ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=974, + ["support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute"]=178, + ["support_minion_maximum_life_+%_final"]=975, + ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=976, + ["support_minion_pact_damage_+%_final"]=977, + ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=977, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=978, + ["support_minion_use_focussed_target"]=979, + ["support_minions_ignite_for_%_max_life"]=980, + ["support_mirage_archer_attack_speed_+%_final"]=981, + ["support_mirage_archer_base_duration"]=982, + ["support_mirage_archer_damage_+%_final"]=983, + ["support_mobile_assault_skill_speed_+%_final"]=984, + ["support_mobility_damage_+%_final"]=985, + ["support_mobility_movement_speed_penalty_+%_final_while_performing_action"]=986, + ["support_momentum_distance_travelled_to_gain_momentum"]=987, + ["support_momnetum_damage_+%_final_with_momentum"]=987, + ["support_more_duration_skill_effect_duration_+%_final"]=988, + ["support_multi_poison_poison_duration_+%_final"]=989, ["support_multicast_cast_speed_+%_final"]=108, - ["support_multiple_attack_and_cast_speed_+%_final"]=860, + ["support_multiple_attack_and_cast_speed_+%_final"]=990, ["support_multiple_attack_damage_+%_final"]=110, ["support_multiple_attacks_melee_attack_speed_+%_final"]=109, ["support_multiple_damage_+%_final"]=11, - ["support_multiple_orbs_area_of_effect_+%_final"]=861, + ["support_multiple_orbs_area_of_effect_+%_final"]=991, ["support_multiple_projectiles_critical_strike_chance_+%_final"]=33, ["support_multithrow_damage_+%_final"]=112, - ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=862, - ["support_overextend_critical_strike_multiplier_+%_final"]=863, - ["support_overpower_hit_damage_stun_multiplier_+%_final"]=864, - ["support_overpowered_base_duration_ms"]=865, - ["support_parallel_projectile_number_of_points_per_side"]=866, - ["support_parallel_projectiles_damage_+%_final"]=867, - ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=868, - ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=869, - ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=870, - ["support_physical_damage_%_to_gain_as_daze_build_up"]=871, - ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=872, - ["support_pin_hit_damage_stun_multiplier_+%_final"]=873, - ["support_pin_physical_damage_can_pin"]=874, - ["support_pinpoint_critical_strike_chance_+%_final"]=875, - ["support_pinpoint_critical_strike_multiplier_+%_final"]=876, + ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=992, + ["support_no_fear_damage_+%_final_per_second_up_to_30%"]=993, + ["support_nova_projectiles_damage_+%_final"]=994, + ["support_number_of_additional_uses_before_expiry"]=995, + ["support_overextend_critical_strike_multiplier_+%_final"]=996, + ["support_overpower_damage_+%_final"]=997, + ["support_overpower_hit_damage_stun_multiplier_+%_final"]=998, + ["support_parallel_projectile_number_of_points_per_side"]=999, + ["support_parallel_projectiles_damage_+%_final"]=1000, + ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=1001, + ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=1002, + ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=1003, + ["support_physical_damage_%_to_gain_as_daze_build_up"]=1004, + ["support_pierce_damage_+%_final_per_pierced_target"]=1005, + ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1006, + ["support_pin_buildup_pin_instead_of_stun"]=1007, + ["support_pin_hit_damage_stun_multiplier_+%_final"]=1008, + ["support_pin_physical_damage_can_pin"]=1009, + ["support_pin_pin_buildup_+%_final"]=1010, + ["support_pin_pin_duration_+%_final"]=1011, + ["support_pinpoint_critical_strike_chance_+%_final"]=1012, + ["support_pinpoint_critical_strike_multiplier_+%_final"]=1013, ["support_poison_poison_effect_+%_final"]=82, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=877, - ["support_precision_accuracy_rating_+%"]=878, - ["support_projectile_attack_physical_damage_+%_final"]=879, - ["support_projectile_attack_speed_+%_final"]=880, - ["support_pulverise_area_of_effect_+%_final"]=881, - ["support_pulverise_attack_speed_+%_final"]=882, - ["support_pulverise_melee_area_damage_+%_final"]=883, - ["support_pure_shock_shock_duration_+%_final"]=884, - ["support_rage_attack_damage_+%_final"]=886, - ["support_rage_fountain_radius"]=887, - ["support_rage_fountain_rage_regeneration_per_minute"]=888, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=889, - ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=890, - ["support_rageforged_enraged_damage_+%_final"]=890, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1014, + ["support_precision_accuracy_rating_+%"]=1015, + ["support_projectile_attack_physical_damage_+%_final"]=1016, + ["support_projectile_attack_speed_+%_final"]=1017, + ["support_pulverise_area_of_effect_+%_final"]=1018, + ["support_pulverise_attack_speed_+%_final"]=1019, + ["support_pulverise_melee_area_damage_+%_final"]=1020, + ["support_pure_shock_shock_duration_+%_final"]=1021, + ["support_rage_attack_damage_+%_final"]=1023, + ["support_rage_attack_speed_+%_final_while_not_at_maximum_rage"]=1024, + ["support_rage_fountain_rage_regeneration_per_minute"]=1025, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1026, + ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1027, + ["support_rageforged_enraged_damage_+%_final"]=1027, ["support_rain_projectile_damage_+%_final"]=12, - ["support_randomise_higher_damage_+%_final"]=891, - ["support_randomise_higher_recover_%_cost_on_use"]=892, - ["support_randomise_lower_damage_+%_final"]=891, - ["support_randomise_lower_recover_%_cost_on_use"]=892, - ["support_rapid_activation_brand_activation_rate_+%_final"]=893, + ["support_randomise_higher_aoe_+%_final"]=1028, + ["support_randomise_higher_damage_+%_final"]=1030, + ["support_randomise_higher_projectile_speed_+%_final"]=1029, + ["support_randomise_higher_recover_%_cost_on_use"]=1031, + ["support_randomise_lower_aoe_+%_final"]=1028, + ["support_randomise_lower_damage_+%_final"]=1030, + ["support_randomise_lower_projectile_speed_+%_final"]=1029, + ["support_randomise_lower_recover_%_cost_on_use"]=1031, + ["support_rapid_activation_brand_activation_rate_+%_final"]=1032, ["support_rapid_activation_brand_skill_only_primary_duration_+%_final"]=146, ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"]=147, ["support_rapid_decay_damage_over_time_+%_final"]=87, - ["support_reach_accuracy_within_2m_+%_final"]=894, - ["support_reach_area_of_effect_+%_final"]=895, - ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=896, - ["support_reduce_enemy_block_and_spell_block_%"]=897, + ["support_reach_accuracy_within_2m_+%_final"]=1033, + ["support_reach_area_of_effect_+%_final"]=1034, + ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1035, ["support_reduced_duration_damage_+%_final"]=144, ["support_reduced_duration_skill_effect_duration_+%_final"]=145, - ["support_regenerate_mana_per_minute_on_shock"]=901, - ["support_remote_mine_2_base_mine_detonation_time_ms"]=902, + ["support_regenerate_mana_per_minute_on_shock"]=1039, + ["support_remote_mine_2_base_mine_detonation_time_ms"]=1040, ["support_remote_mine_2_base_mine_duration"]=52, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1043, - ["support_remote_mine_2_damage_+%_final"]=903, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=904, - ["support_remote_mine_hit_damage_+%_final"]=905, - ["support_retreating_assault_melee_damage_+%_final"]=906, - ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"]=907, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1204, + ["support_remote_mine_2_damage_+%_final"]=1041, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1042, + ["support_remote_mine_hit_damage_+%_final"]=1043, + ["support_retreating_assault_melee_damage_+%_final"]=1044, + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"]=1045, + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"]=1046, ["support_return_projectile_damage_+%_final"]=83, - ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=908, - ["support_ruthless_big_hit_max_count"]=161, - ["support_ruthless_big_hit_stun_damage_+%_final"]=161, - ["support_sacrificial_lamb_base_radius"]=909, - ["support_salvo_additional_projectiles_fired_per_seal"]=910, - ["support_salvo_maximum_seals"]=911, - ["support_salvo_seals_gain_base_interval_ms"]=912, - ["support_scion_onslaught_duration_+%"]=913, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=914, - ["support_scion_onslaught_on_killing_blow_%_chance"]=915, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=915, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=914, - ["support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence"]=916, - ["support_shock_protection_spirit_cost_shock_duration_on_self_+%_final"]=917, - ["support_shocked_ground_effect_duration_+%_final"]=918, - ["support_shocking_leap_shocked_ground_duration_ms"]=919, - ["support_shocking_leap_shocked_ground_radius"]=919, - ["support_slam_chance_for_one_additional_aftershock_%"]=1046, - ["support_slam_chance_for_three_additional_aftershocks_%"]=1048, - ["support_slam_chance_for_two_additional_aftershocks_%"]=1047, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=921, - ["support_slashing_buff_base_duration_ms"]=920, + ["support_rigwald_attack_speed_+%_final_in_weapon_set_one"]=172, + ["support_rigwald_attack_speed_+%_final_in_weapon_set_two"]=174, + ["support_rigwald_damage_+%_final_in_weapon_set_one"]=173, + ["support_rigwald_damage_+%_final_in_weapon_set_two"]=175, + ["support_ritual_curse_curse_delay_+%_final"]=1047, + ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1048, + ["support_ruthless_big_hit_max_count"]=160, + ["support_ruthless_big_hit_stun_damage_+%_final"]=160, + ["support_sacrificial_lamb_base_radius"]=1049, + ["support_salvo_additional_projectiles_fired_per_seal"]=1050, + ["support_salvo_maximum_seals"]=1051, + ["support_salvo_seals_gain_base_interval_ms"]=1052, + ["support_scattershot_skill_speed_+%_final"]=1053, + ["support_scion_onslaught_duration_+%"]=1054, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1055, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1056, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1056, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1055, + ["support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence"]=1057, + ["support_shock_protection_spirit_cost_shock_duration_on_self_+%_final"]=1058, + ["support_shocked_ground_effect_duration_+%_final"]=1059, + ["support_shocking_leap_shocked_ground_duration_ms"]=1060, + ["support_shocking_leap_shocked_ground_radius"]=1060, + ["support_short_fuse_damage_+%_final"]=1061, + ["support_slam_chance_for_one_additional_aftershock_%"]=1207, + ["support_slam_chance_for_three_additional_aftershocks_%"]=1211, + ["support_slam_chance_for_two_additional_aftershocks_%"]=1208, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1063, + ["support_slashing_buff_base_duration_ms"]=1062, ["support_slashing_damage_+%_final_from_distance"]=98, - ["support_slow_cast_cast_speed_+%_final"]=922, - ["support_slow_cast_spell_damage_+%_final"]=923, - ["support_slower_projectiles_damage_+%_final"]=924, + ["support_slow_cast_cast_speed_+%_final"]=1064, + ["support_slow_cast_spell_damage_+%_final"]=1065, + ["support_slower_projectiles_damage_+%_final"]=1066, ["support_slower_projectiles_projectile_speed_+%_final"]=143, - ["support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage"]=925, - ["support_spectral_arrows_base_duration_ms"]=926, - ["support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles"]=927, - ["support_spectral_arrows_damage_+%_final_with_spectral_projectiles"]=928, - ["support_spectral_arrows_maximum_spectral_arrows"]=929, - ["support_spell_boost_area_damage_+%_final_per_charge"]=930, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=930, - ["support_spell_cascade_area_delay_+%"]=931, - ["support_spell_cascade_area_of_effect_+%_final"]=932, - ["support_spell_cascade_area_of_effect_+%_per_cascade"]=933, - ["support_spell_cascade_damage_+%_final"]=934, - ["support_spell_cascade_number_of_cascades_per_side"]=935, - ["support_spell_cascade_sideways"]=935, - ["support_spell_damage_+%_final_while_above_90%_maximum_mana"]=936, - ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"]=937, - ["support_spell_echo_area_of_effect_+%_final"]=938, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=939, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=940, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=941, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=942, - ["support_spell_echo_damage_+%_final"]=943, - ["support_spell_echo_final_repeat_damage_+%_final"]=944, + ["support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage"]=1067, + ["support_spectral_arrows_base_duration_ms"]=1068, + ["support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles"]=1069, + ["support_spectral_arrows_damage_+%_final_with_spectral_projectiles"]=1070, + ["support_spectral_arrows_maximum_spectral_arrows"]=1071, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1072, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1072, + ["support_spell_cascade_area_delay_+%"]=1073, + ["support_spell_cascade_area_of_effect_+%_final"]=1074, + ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1075, + ["support_spell_cascade_damage_+%_final"]=1076, + ["support_spell_cascade_number_of_cascades_per_side"]=1077, + ["support_spell_cascade_sideways"]=1077, + ["support_spell_damage_+%_final_while_above_90%_maximum_mana"]=1078, + ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"]=1079, + ["support_spell_echo_area_of_effect_+%"]=1080, + ["support_spell_echo_area_of_effect_+%_final"]=1081, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1082, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1083, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1084, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1085, + ["support_spell_echo_damage_+%_final"]=1086, + ["support_spell_echo_final_repeat_damage_+%_final"]=1087, ["support_spell_echo_number_of_echo_cascades"]=107, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1042, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1203, ["support_spell_totem_cast_speed_+%_final"]=138, - ["support_spellblade_cast_speed_+%_final"]=945, - ["support_spellblade_store_up_to_X_casts"]=946, - ["support_spellblade_trigger_stored_spells_on_melee_hit"]=947, - ["support_spellslinger_damage_+%_final"]=948, + ["support_spellblade_cast_speed_+%_final"]=1088, + ["support_spellblade_store_up_to_X_casts"]=1089, + ["support_spellblade_trigger_stored_spells_on_melee_hit"]=1090, + ["support_spellslinger_damage_+%_final"]=1091, + ["support_spiral_projectiles_damage_+%_final"]=1092, ["support_spirit_strike_damage_+%_final"]=76, - ["support_spiritual_cry_damage_+%_final"]=949, + ["support_spiritual_cry_damage_+%_final"]=1093, ["support_split_projectile_damage_+%_final"]=77, - ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=950, - ["support_static_charge_%_damage_gained_as_lightning_per_10_charge"]=952, - ["support_static_charge_X_chains_per_10_charge"]=951, + ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1094, + ["support_static_charge_%_damage_gained_as_lightning_per_10_charge"]=1096, + ["support_static_charge_X_chains_per_10_charge"]=1095, ["support_static_charge_charge_gain_per_metre"]=15, ["support_static_charge_maximum_charge"]=39, - ["support_sticky_grenade_damage_+%_final"]=953, - ["support_stomping_ground"]=954, - ["support_storm_barrier_damage_+%_final"]=957, - ["support_storm_barrier_damage_buff_base_duration_ms"]=955, - ["support_storm_barrier_damage_buff_time_threshold_ms"]=956, - ["support_storm_barrier_damage_buff_uses_time_threshold"]=956, - ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=958, - ["support_storm_barrier_skill_type_damage_+%_final"]=959, - ["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=960, - ["support_stronger_ignites_hit_damage_+%_final"]=961, - ["support_stronger_ignites_ignite_effect_+%_final"]=962, - ["support_sunblast_hazard_hazard_damage_+%_final"]=963, - ["support_sunblast_hazard_hazard_duration_+%_final"]=964, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=965, - ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"]=966, - ["support_tempered_valour_minimum_valour_to_apply_buff"]=1049, - ["support_thorns_spirit_cost_thorns_damage_+%"]=967, - ["support_timerot_reparation_duration_per_timerot_lost_ms"]=1050, - ["support_timerot_stacks_gained_per_500_ms"]=968, - ["support_titanblood_minion_damage_+%_final"]=969, - ["support_titanblood_minion_life_+%_final"]=970, - ["support_titanic_arrows_attack_speed_+%_final"]=971, - ["support_titanic_arrows_projectile_speed_+%_final"]=972, + ["support_steadfast_ailment_threshold_+%_final_while_channelling"]=1097, + ["support_steadfast_stun_threshold_+%_final_while_channelling"]=1098, + ["support_sticky_grenade_damage_+%_final"]=1099, + ["support_stomping_ground"]=1100, + ["support_storm_barrier_damage_+%_final"]=1103, + ["support_storm_barrier_damage_buff_base_duration_ms"]=1101, + ["support_storm_barrier_damage_buff_time_threshold_ms"]=1102, + ["support_storm_barrier_damage_buff_uses_time_threshold"]=1102, + ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1104, + ["support_storm_barrier_skill_type_damage_+%_final"]=1105, + ["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=1106, + ["support_stronger_ignites_hit_damage_+%_final"]=1107, + ["support_stronger_ignites_ignite_effect_+%_final"]=1108, + ["support_sunblast_hazard_hazard_damage_+%_final"]=1109, + ["support_sunblast_hazard_hazard_duration_+%_final"]=1110, + ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"]=1111, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1112, + ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"]=1114, + ["support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour"]=1113, + ["support_thorns_spirit_cost_thorns_damage_+%"]=1115, + ["support_timerot_reparation_duration_per_timerot_lost_ms"]=1212, + ["support_timerot_stacks_gained_per_500_ms"]=1116, + ["support_titanblood_minion_damage_+%_final"]=1117, + ["support_titanblood_minion_life_+%_final"]=1118, + ["support_titanic_arrows_attack_speed_+%_final"]=1119, + ["support_titanic_arrows_projectile_speed_+%_final"]=1120, ["support_totem_damage_+%_final"]=16, + ["support_totem_life_+%_final"]=163, ["support_trap_and_mine_damage_+%_final"]=99, - ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=973, - ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=974, + ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=1121, + ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=1122, ["support_trap_damage_+%_final"]=111, - ["support_trap_hit_damage_+%_final"]=975, + ["support_trap_hit_damage_+%_final"]=1123, ["support_trigger_link_damage_+%_final"]=21, - ["support_trigger_mana_flare_on_crit"]=976, - ["support_triple_number_of_cooldown_uses"]=977, - ["support_trusty_companion_minion_life_+%_final"]=978, - ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=979, - ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=980, - ["support_unending_ailments_all_ailment_duration_+%_final"]=981, - ["support_unmoving_damage_+%_final_per_250_ms_stationary"]=982, - ["support_unmoving_damage_multiplier_cap"]=982, - ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"]=983, - ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"]=984, - ["support_unstable_earth_damage_+%_final"]=1051, - ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"]=985, - ["support_vicious_projectiles_chaos_damage_+%_final"]=987, - ["support_vicious_projectiles_physical_damage_+%_final"]=986, - ["support_vitality_life_regeneration_rate_per_minute_%"]=988, + ["support_trigger_mana_flare_on_crit"]=1124, + ["support_triple_number_of_cooldown_uses"]=1125, + ["support_trusty_companion_minion_life_+%_final"]=1126, + ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1127, + ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1128, + ["support_unending_ailments_all_ailment_duration_+%_final"]=1129, + ["support_unmoving_damage_+%_final_per_250_ms_stationary"]=1130, + ["support_unmoving_damage_multiplier_cap"]=1130, + ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"]=1131, + ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"]=1132, + ["support_unstable_earth_damage_+%_final"]=1213, + ["support_upheaval_area_of_effect_+%_final"]=1133, + ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"]=1134, + ["support_vicious_projectiles_chaos_damage_+%_final"]=1136, + ["support_vicious_projectiles_physical_damage_+%_final"]=1135, + ["support_vitality_life_regeneration_rate_per_minute_%"]=1137, ["support_void_manipulation_chaos_damage_+%_final"]=84, - ["support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies"]=989, - ["support_wall_fortress_hit_damage_+%_final"]=990, - ["support_warcry_consumes_up_to_X_rage"]=991, + ["support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies"]=1138, + ["support_wall_fortress_area_of_effect_+%_final"]=1139, + ["support_wall_fortress_hit_damage_+%_final"]=1140, + ["support_warcry_consumes_up_to_X_rage"]=1141, ["support_weapon_elemental_damage_+%_final"]=8, - ["support_window_of_opportunity_perfect_timing_damage_+%_final"]=992, - ["support_winterblast_chill_effect_+%_final"]=993, - ["support_withered_base_duration_ms"]=160, - ["support_withering_touch_damage_+%_final"]=994, - ["supported_chaos_skill_gem_level_+"]=995, - ["supported_curse_skill_gem_level_+"]=996, - ["supported_elemental_skill_gem_level_+"]=997, - ["supported_minion_skill_gem_level_+"]=998, - ["supported_physical_skill_gem_level_+"]=999, - ["supported_skill_can_only_use_axe_and_sword"]=1000, - ["supported_skill_can_only_use_dagger_and_claw"]=1002, - ["supported_skill_can_only_use_mace_and_staff"]=1003, - ["supported_strike_skill_gem_level_+"]=1005, + ["support_window_of_opportunity_perfect_timing_damage_+%_final"]=1142, + ["support_winterblast_chill_effect_+%_final"]=1143, + ["support_withered_base_duration_ms"]=159, + ["support_withering_touch_damage_+%_final"]=1144, + ["supported_active_skill_gem_level_+_if_no_other_supports"]=1147, + ["supported_active_skill_gem_level_+_if_one_other_support"]=1145, + ["supported_active_skill_gem_level_+_if_two_other_supports"]=1146, + ["supported_chaos_skill_gem_level_+"]=1148, + ["supported_curse_skill_gem_level_+"]=1149, + ["supported_elemental_skill_gem_level_+"]=1150, + ["supported_minion_skill_gem_level_+"]=1151, + ["supported_physical_skill_gem_level_+"]=1152, + ["supported_skill_can_only_use_axe_and_sword"]=1153, + ["supported_skill_can_only_use_dagger_and_claw"]=1155, + ["supported_skill_can_only_use_mace_and_staff"]=1156, + ["supported_skill_triggers_living_lightning_on_dealing_lightning_damage"]=370, + ["supported_strike_skill_gem_level_+"]=1158, ["throw_traps_in_circle_radius"]=47, - ["totem_elemental_resistance_%"]=1006, - ["totem_maximum_all_elemental_resistances_%"]=169, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1007, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1008, - ["trap_damage_+%"]=1009, + ["totem_elemental_resistance_%"]=1159, + ["totem_gain_onslaught_for_x_ms_after_summon"]=1160, + ["totem_maximum_all_elemental_resistances_%"]=171, + ["totem_skill_attack_speed_+%"]=201, + ["totem_skill_cast_speed_+%"]=200, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1161, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1162, + ["trap_damage_+%"]=1163, ["trap_duration_+%"]=58, - ["trap_spread_+%"]=1010, - ["trap_throwing_speed_+%"]=1011, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1012, - ["trap_trigger_radius_+%"]=1013, - ["trap_trigger_radius_+%_per_power_charge"]=1014, - ["trigger_bone_shrapnel_explosion_on_killing_pinned_enemy"]=1015, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1016, - ["trigger_caltrops_at_end_of_projectile_flight"]=1017, - ["trigger_frozen_vortex_on_shattering_enemy"]=1018, - ["trigger_on_attack_hit_against_rare_or_unique"]=1019, - ["trigger_on_trigger_link_target_hit"]=1020, - ["trigger_prismatic_burst_on_hit_%_chance"]=1021, - ["trigger_skills_refund_half_energy_spent_chance_%"]=1022, - ["trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger"]=1023, - ["trigger_titanic_arrows_on_impact"]=1024, + ["trap_spread_+%"]=1164, + ["trap_throwing_speed_+%"]=1165, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1166, + ["trap_trigger_radius_+%"]=1167, + ["trap_trigger_radius_+%_per_power_charge"]=1168, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1169, + ["trigger_ballistic_ice_chunks_on_killing_frozen_enemy"]=1170, + ["trigger_bone_shrapnel_explosion_on_killing_pinned_enemy"]=1171, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1172, + ["trigger_caltrops_at_end_of_projectile_flight"]=1173, + ["trigger_frozen_vortex_on_shattering_enemy"]=1174, + ["trigger_on_attack_hit_against_rare_or_unique"]=1175, + ["trigger_on_trigger_link_target_hit"]=1176, + ["trigger_prismatic_burst_on_hit_%_chance"]=1177, + ["trigger_skills_refund_half_energy_spent_chance_%"]=1178, + ["trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger"]=1179, + ["trigger_titanic_arrows_on_impact"]=1180, ["trigger_vicious_hex_explosion_when_curse_ends"]=122, - ["triggered_by_brand_support"]=1025, - ["triggered_by_divine_cry"]=1026, - ["triggered_by_manaforged_arrows_support_%_chance"]=1027, - ["triggered_by_spiritual_cry"]=1028, - ["triggered_skill_damage_+%"]=1029, + ["triggered_by_brand_support"]=1181, + ["triggered_by_divine_cry"]=1182, + ["triggered_by_manaforged_arrows_support_%_chance"]=1183, + ["triggered_by_spiritual_cry"]=1184, + ["triggered_skill_damage_+%"]=1185, ["triggered_spell_spell_damage_+%"]=17, - ["triggers_burning_runes_on_placing_ground_rune"]=1030, - ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"]=238, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1032, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1033, - ["unleash_support_seal_gain_frequency_as_%_of_total_cast_time"]=1031, - ["unsteady_tempo_critical_strike_chance_+%_final_on_second_hit"]=186, - ["unsteady_tempo_damage_+%_final_on_third_hit"]=190, - ["unsteady_tempo_evasion_broken_as_%_of_life_on_first_hit"]=185, + ["triggers_burning_runes_on_placing_ground_rune"]=1186, + ["trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant"]=724, + ["try_consuming_shock_to_trigger_shocking_rift_in_radius_on_shocking_enemy"]=1187, + ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1189, + ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1190, + ["unleash_support_seal_gain_frequency_as_%_of_total_cast_time"]=1188, + ["unsteady_tempo_critical_strike_chance_+%_final_on_second_hit"]=197, + ["unsteady_tempo_damage_+%_final_on_third_hit"]=203, + ["unsteady_tempo_evasion_broken_as_%_of_life_on_first_hit"]=196, ["virtual_cast_when_damage_taken_threshold"]=127, - ["virtual_support_anticipation_charge_gain_interval_ms"]=1031, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=915, - ["wall_is_created_in_a_circle_instead"]=1034, - ["warcry_grant_X_rage_per_5_power"]=1035, - ["warcry_speed_+%"]=1036, - ["weapon_elemental_damage_+%"]=1037, - ["wither_applies_additional_wither_%"]=1038, - ["wither_on_hit_chance_rollovercapped"]=1039, - ["withered_on_chaos_damage_hit_chance_%"]=1040, + ["virtual_support_anticipation_charge_gain_interval_ms"]=1188, + ["virtual_support_salvo_maximum_seals"]=1191, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1056, + ["wall_is_created_along_a_fissure_instead"]=1192, + ["wall_is_created_in_a_circle_instead"]=1193, + ["warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge"]=1194, + ["warcry_grant_X_rage_per_5_power"]=1195, + ["warcry_speed_+%"]=1196, + ["weapon_elemental_damage_+%"]=1197, + ["wither_applies_additional_wither_%"]=1198, + ["wither_on_hit_chance_rollovercapped"]=1199, + ["withered_on_chaos_damage_hit_chance_%"]=1200, ["withered_on_hit_chance_%"]=151, - ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1041 + ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1201, + ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=1202 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua b/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua index d717525abe..43fe087c49 100644 --- a/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua @@ -189,6 +189,40 @@ return { } }, [8]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% increased duration of socketed Curses" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased duration of socketed Curses" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced duration of socketed Curses" + } + }, + stats={ + [1]="base_curse_duration_+%" + } + }, + [9]={ [1]={ [1]={ limit={ @@ -217,9 +251,14 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [9]={ + [10]={ [1]={ [1]={ + limit={ + }, + text="Supported Curses have {0}% increased Magnitudes" + }, + [2]={ limit={ [1]={ [1]=1, @@ -228,7 +267,7 @@ return { }, text="Supported Curses have {0}% increased Magnitudes" }, - [2]={ + [3]={ [1]={ k="negate", v=1 @@ -246,7 +285,7 @@ return { [1]="curse_effect_+%" } }, - [10]={ + [11]={ [1]={ [1]={ limit={ @@ -275,7 +314,7 @@ return { [1]="damage_+%" } }, - [11]={ + [12]={ [1]={ [1]={ [1]={ @@ -317,9 +356,14 @@ return { [2]="generic_ongoing_trigger_triggers_at_maximum_energy" } }, - [12]={ + [13]={ [1]={ [1]={ + limit={ + }, + text="{0:+d}% increased Effect of Socketed Marks" + }, + [2]={ limit={ [1]={ [1]=1, @@ -328,7 +372,7 @@ return { }, text="{0}% increased Effect of Socketed Marks" }, - [2]={ + [3]={ [1]={ k="negate", v=1 @@ -346,7 +390,7 @@ return { [1]="mark_effect_+%" } }, - [13]={ + [14]={ [1]={ [1]={ limit={ @@ -375,7 +419,7 @@ return { [1]="trigger_meta_gem_damage_+%_final" } }, - [14]={ + [15]={ [1]={ [1]={ limit={ @@ -404,7 +448,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [15]={ + [16]={ [1]={ [1]={ limit={ @@ -438,7 +482,7 @@ return { [2]="skill_empower_limitation_specifier_for_stat_description" } }, - [16]={ + [17]={ [1]={ [1]={ limit={ @@ -455,23 +499,24 @@ return { } }, ["active_skill_base_area_of_effect_radius"]=7, - ["base_skill_area_of_effect_+%"]=8, - ["curse_effect_+%"]=9, - ["damage_+%"]=10, + ["base_curse_duration_+%"]=8, + ["base_skill_area_of_effect_+%"]=9, + ["curse_effect_+%"]=10, + ["damage_+%"]=11, ["disable_skill_if_melee_attack"]=6, - ["generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time"]=11, - ["generic_ongoing_trigger_triggers_at_maximum_energy"]=11, - ["mark_effect_+%"]=12, + ["generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time"]=12, + ["generic_ongoing_trigger_triggers_at_maximum_energy"]=12, + ["mark_effect_+%"]=13, parent="gem_stat_descriptions", ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=7, - ["skill_empower_limitation_specifier_for_stat_description"]=15, - ["skill_empowers_next_x_melee_attacks"]=15, + ["skill_empower_limitation_specifier_for_stat_description"]=16, + ["skill_empowers_next_x_melee_attacks"]=16, ["support_additional_totem_damage_+%_final"]=2, ["support_attack_totem_attack_speed_+%_final"]=5, ["support_blasphemy_curse_effect_+%_final"]=3, ["support_spell_totem_cast_speed_+%_final"]=4, ["support_totem_damage_+%_final"]=1, - ["trigger_meta_gem_damage_+%_final"]=13, - ["warcry_buff_effect_+%"]=14, - ["warcry_grant_damage_+%_to_exerted_attacks"]=16 + ["trigger_meta_gem_damage_+%_final"]=14, + ["warcry_buff_effect_+%"]=15, + ["warcry_grant_damage_+%_to_exerted_attacks"]=17 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua b/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua index 79fca9f55f..4f2c53f7e0 100644 --- a/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua @@ -24,6 +24,51 @@ return { } }, [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Tribute" + } + }, + stats={ + [1]="base_tribute" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Tribute" + } + }, + stats={ + [1]="tribute_+%" + } + }, + [5]={ [1]={ [1]={ limit={ @@ -39,7 +84,7 @@ return { [1]="base_strength" } }, - [4]={ + [6]={ [1]={ [1]={ limit={ @@ -68,7 +113,7 @@ return { [1]="strength_+%" } }, - [5]={ + [7]={ [1]={ [1]={ limit={ @@ -84,7 +129,7 @@ return { [1]="base_dexterity" } }, - [6]={ + [8]={ [1]={ [1]={ limit={ @@ -113,7 +158,7 @@ return { [1]="dexterity_+%" } }, - [7]={ + [9]={ [1]={ [1]={ limit={ @@ -129,7 +174,7 @@ return { [1]="base_intelligence" } }, - [8]={ + [10]={ [1]={ [1]={ limit={ @@ -158,7 +203,7 @@ return { [1]="intelligence_+%" } }, - [9]={ + [11]={ [1]={ [1]={ [1]={ @@ -178,7 +223,7 @@ return { [1]="mana_regeneration_rate_per_minute_%" } }, - [10]={ + [12]={ [1]={ [1]={ [1]={ @@ -198,7 +243,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_power_charge" } }, - [11]={ + [13]={ [1]={ [1]={ limit={ @@ -214,7 +259,7 @@ return { [1]="max_endurance_charges" } }, - [12]={ + [14]={ [1]={ [1]={ limit={ @@ -230,7 +275,7 @@ return { [1]="max_frenzy_charges" } }, - [13]={ + [15]={ [1]={ [1]={ limit={ @@ -246,7 +291,7 @@ return { [1]="max_power_charges" } }, - [14]={ + [16]={ [1]={ [1]={ limit={ @@ -262,7 +307,7 @@ return { [1]="physical_damage_+%_per_frenzy_charge" } }, - [15]={ + [17]={ [1]={ [1]={ limit={ @@ -278,7 +323,7 @@ return { [1]="add_frenzy_charge_on_kill" } }, - [16]={ + [18]={ [1]={ [1]={ limit={ @@ -294,7 +339,7 @@ return { [1]="keystone_iron_reflexes" } }, - [17]={ + [19]={ [1]={ [1]={ limit={ @@ -310,7 +355,7 @@ return { [1]="keystone_avatar_of_fire" } }, - [18]={ + [20]={ [1]={ [1]={ limit={ @@ -326,7 +371,7 @@ return { [1]="keystone_eldritch_battery" } }, - [19]={ + [21]={ [1]={ [1]={ limit={ @@ -335,14 +380,14 @@ return { [2]="#" } }, - text="Unlimited number of Summoned Totems\nTotems reserve 100 Spirit each" + text="Unlimited number of Summoned Totems\nTotems reserve 75 Spirit each" } }, stats={ [1]="keystone_ancestral_bond" } }, - [20]={ + [22]={ [1]={ [1]={ limit={ @@ -358,7 +403,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [21]={ + [23]={ [1]={ [1]={ limit={ @@ -374,7 +419,7 @@ return { [1]="base_number_of_skeletons_allowed" } }, - [22]={ + [24]={ [1]={ [1]={ limit={ @@ -390,7 +435,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [23]={ + [25]={ [1]={ [1]={ limit={ @@ -406,7 +451,7 @@ return { [1]="keystone_acrobatics" } }, - [24]={ + [26]={ [1]={ [1]={ limit={ @@ -422,7 +467,7 @@ return { [1]="keystone_pain_attunement" } }, - [25]={ + [27]={ [1]={ [1]={ limit={ @@ -438,7 +483,7 @@ return { [1]="keystone_point_blank" } }, - [26]={ + [28]={ [1]={ [1]={ limit={ @@ -454,23 +499,7 @@ return { [1]="keystone_conduit" } }, - [27]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Evasion Rating is Doubled against Projectile Attacks\n25% less Evasion Rating against Melee Attacks" - } - }, - stats={ - [1]="keystone_projectile_evasion" - } - }, - [28]={ + [29]={ [1]={ [1]={ limit={ @@ -486,7 +515,7 @@ return { [1]="keystone_blood_magic" } }, - [29]={ + [30]={ [1]={ [1]={ limit={ @@ -502,7 +531,7 @@ return { [1]="keystone_minion_instability" } }, - [30]={ + [31]={ [1]={ [1]={ limit={ @@ -511,14 +540,14 @@ return { [2]="#" } }, - text="Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure\nHits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure\nHits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure" + text="Infusion Remnants you create are always a Random Element" } }, stats={ [1]="keystone_elemental_equilibrium" } }, - [31]={ + [32]={ [1]={ [1]={ limit={ @@ -534,7 +563,7 @@ return { [1]="keystone_chaos_inoculation" } }, - [32]={ + [33]={ [1]={ [1]={ limit={ @@ -550,7 +579,7 @@ return { [1]="keystone_vaal_pact" } }, - [33]={ + [34]={ [1]={ [1]={ limit={ @@ -579,7 +608,7 @@ return { [1]="critical_strike_chance_+%" } }, - [34]={ + [35]={ [1]={ [1]={ limit={ @@ -595,7 +624,7 @@ return { [1]="staff_block_%" } }, - [35]={ + [36]={ [1]={ [1]={ limit={ @@ -611,7 +640,7 @@ return { [1]="keystone_mana_shield" } }, - [36]={ + [37]={ [1]={ [1]={ limit={ @@ -620,14 +649,14 @@ return { [2]="#" } }, - text="Your Hits can't be Evaded\nNever deal Critical Hits" + text="Accuracy Rating is Doubled\nNever deal Critical Hits" } }, stats={ [1]="resolute_technique" } }, - [37]={ + [38]={ [1]={ [1]={ limit={ @@ -636,14 +665,14 @@ return { [2]="#" } }, - text="Cannot be Light Stunned\nCannot Dodge Roll" + text="Cannot be Light Stunned\nCannot Dodge Roll or Sprint" } }, stats={ [1]="keystone_unwavering_stance" } }, - [38]={ + [39]={ [1]={ [1]={ limit={ @@ -659,7 +688,7 @@ return { [1]="passive_can_be_allocated_without_connection" } }, - [39]={ + [40]={ [1]={ [1]={ limit={ @@ -675,7 +704,7 @@ return { [1]="base_strength_and_dexterity" } }, - [40]={ + [41]={ [1]={ [1]={ limit={ @@ -691,7 +720,7 @@ return { [1]="base_strength_and_intelligence" } }, - [41]={ + [42]={ [1]={ [1]={ limit={ @@ -707,7 +736,7 @@ return { [1]="base_dexterity_and_intelligence" } }, - [42]={ + [43]={ [1]={ [1]={ limit={ @@ -732,7 +761,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [43]={ + [44]={ [1]={ [1]={ limit={ @@ -766,7 +795,7 @@ return { [2]="number_of_additional_projectiles" } }, - [44]={ + [45]={ [1]={ [1]={ limit={ @@ -782,7 +811,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [45]={ + [46]={ [1]={ [1]={ limit={ @@ -843,7 +872,7 @@ return { [1]="display_can_take_character_start_point" } }, - [46]={ + [47]={ [1]={ [1]={ limit={ @@ -868,121 +897,162 @@ return { [1]="consecrate_ground_on_kill_%_for_3_seconds" } }, - [47]={ + [48]={ [1]={ [1]={ - [1]={ - k="negate", - v=1 + limit={ + [1]={ + [1]=1, + [2]=1 + } }, + text="Gain {0} Life Flask Charge per 4% Life spent" + }, + [2]={ limit={ [1]={ - [1]="#", - [2]=-1 + [1]=2, + [2]="#" } }, - text="Enemies in your Presence are Slowed by {0}%" + text="Gain {0} Life Flask Charges per 4% Life spent" } }, stats={ - [1]="ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value" + [1]="gain_X_life_flask_charges_per_4%_life_spent" } }, - [48]={ + [49]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, limit={ [1]={ - [1]=1, - [2]="#" + [1]=1000, + [2]=1000 } }, - text="{0}% increased Magnitude of Chill you inflict" + text="DNT Adaptations last for {0} second" }, [2]={ [1]={ - k="negate", + k="milliseconds_to_seconds_2dp_if_required", v=1 }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Magnitude of Chill you inflict" + text="DNT Adaptations last for {0} seconds" } }, stats={ - [1]="chill_effect_+%" + [1]="adaptation_duration_ms" } }, - [49]={ + [50]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Your Hits are Crushing Blows" + text="DNT Add {0} Guard when Triggering a Skill for every 0.1 seconds of base use time of that Skill" } }, stats={ - [1]="crushing_blow" + [1]="add_X_guard_on_trigger_per_100_ms_total_use_time_of_triggered_skill_up_to_maximum_mana" } }, - [50]={ + [51]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, limit={ [1]={ - [1]="#", - [2]="#" + [1]=1000, + [2]=1000 } }, - text="Enemies within 2 metres of you are Taunted" - } - }, - stats={ - [1]="display_nearby_enemies_are_taunted" - } - }, - [51]={ - [1]={ - [1]={ + text="DNT Expending Combo adds {0} second to remaining Energy Shield Recharge delay per Combo" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, limit={ [1]={ [1]=1, [2]="#" } }, - text="You have {0} Fortification" + text="DNT Expending Combo adds {0} seconds to remaining Energy Shield Recharge delay per Combo" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=-1000, + [2]=-1000 + } + }, + text="DNT Expending Combo removes {0} second from remaining Energy Shield Recharge delay per Combo" + }, + [4]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT Expending Combo removes {0} seconds from remaining Energy Shield Recharge delay per Combo" } }, stats={ - [1]="display_you_have_x_fortification" + [1]="add_X_ms_to_energy_shield_recharge_delay_per_combo_spent" } }, [52]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds", - v=1 + limit={ + [1]={ + [1]=1, + [2]=99 + } }, + text="{0}% Chance to build an additional Combo on Hit" + }, + [2]={ limit={ [1]={ - [1]="#", + [1]=100, [2]="#" } }, - text="Every second, inflict Withered on nearby Enemies for {0} seconds" + text="Build an additional Combo on Hit" } }, stats={ - [1]="every_1_second_nearby_enemies_withered_for_X_ms" + [1]="additional_combo_gain_chance_%" } }, [53]={ @@ -990,15 +1060,15 @@ return { [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="You can have two Companions of different types\nYou have 30% less Defences\nCompanions have +1 to each Defence for every 2 of that Defence you have" + text="DNT Gain {0} additional Combo whenever you gain Combo" } }, stats={ - [1]="keystone_2_companions" + [1]="additional_combo_gain_on_hit" } }, [54]={ @@ -1010,11 +1080,11 @@ return { [2]="#" } }, - text="Dodge Roll cannot Avoid Damage\nTake 30% less Damage from Hits while Dodge Rolling" + text="Bleeding you inflict on Pinned Enemies is Aggravated" } }, stats={ - [1]="keystone_bulwark" + [1]="aggravate_bleeding_when_inflicted_vs_pinned_enemy" } }, [55]={ @@ -1022,15 +1092,15 @@ return { [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Bleeding you inflict is Aggravated\nBase Bleeding Duration is 1 second" + text="Apply {0} Critical Weakness to Enemies when Consuming a Mark on them" } }, stats={ - [1]="keystone_crimson_assault" + [1]="apply_X_critical_weakness_on_consuming_mark" } }, [56]={ @@ -1038,15 +1108,15 @@ return { [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="You can inflict Bleeding on an Enemy up to 8 times\nYour Bleeding does not deal extra Damage while the Enemy is moving\n50% less Damage with Bleeding" + text="{0}% increased Effect of Arcane Surge on you per ten percent missing Mana" } }, stats={ - [1]="keystone_crimson_dance" + [1]="arcane_surge_effect_on_self_+%_per_10%_missing_mana" } }, [57]={ @@ -1054,50 +1124,1807 @@ return { [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="25% more Skill Speed while Off Hand is empty and you have\na One-Handed Martial Weapon equipped in your Main Hand" - } - }, - stats={ - [1]="keystone_dance_with_death" - } - }, + text="DNT {0}% more Mana cost of Triggered Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% less Mana cost of Triggered Skills" + } + }, + stats={ + [1]="ascendancy_arcane_archer_triggered_skill_mana_cost_+%_final" + } + }, [58]={ [1]={ [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies in your Presence are Slowed by {0}%" + } + }, + stats={ + [1]="ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value" + } + }, + [59]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Fire Djinn will use Flame Slice on Enemies you target with Damaging Skills" + } + }, + stats={ + [1]="ascendancy_enable_fire_djinn_passive" + } + }, + [60]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Grants Thaumaturgical Dynamism" + } + }, + stats={ + [1]="ascendancy_gemling_charge_generator_buff_display" + } + }, + [61]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition" + } + }, + stats={ + [1]="ascendancy_lich_consume_power_for_apparition" + } + }, + [62]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created" + } + }, + stats={ + [1]="ascendancy_lich_skeletons_are_buffs_instead_of_minions" + } + }, + [63]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spells deal {0}% more Damage when Sacrificing Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spells deal {0}% less Damage when Sacrificing Energy Shield" + } + }, + stats={ + [1]="ascendancy_lich_spell_damage_+%_final_when_sacrificing_energy_shield" + } + }, + [64]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spells consume a Power Charge if able to deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spells consume a Power Charge if able to deal {0}% less Damage" + } + }, + stats={ + [1]="ascendancy_lich_spells_consume_power_charges_for_spell_damage_+%_final" + } + }, + [65]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Ignites you inflict have up to {0}% more Magnitude, at random" + } + }, + stats={ + [1]="ascendancy_random_ignite_effect_+%_final_up_to_%" + } + }, + [66]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=-100, + [2]=-100 + } + }, + text="Cannot cause Immobilisation buildup" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Immobilisation buildup" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Immobilisation buildup" + } + }, + stats={ + [1]="ascendancy_tactician_suppressing_fire_hit_damage_immobilisation_multiplier_+%_final" + } + }, + [67]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="DNT Minimum {0} Vivid Stag Wisp" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="DNT Minimum {0} Vivid Stag Wisps" + } + }, + stats={ + [1]="ascendancy_vivid_stag_minimum_stag_wisp_count" + } + }, + [68]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curse zones erupt after {0}% increased delay" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Curse zones erupt after {0}% reduced delay" + } + }, + stats={ + [1]="base_curse_delay_+%" + } + }, + [69]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT {0:+d} to Rage cost of Skills" + } + }, + stats={ + [1]="base_rage_cost" + } + }, + [70]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Regenerate {0}% of your Maximum Rage per second" + } + }, + stats={ + [1]="base_rage_regeneration_rate_per_minute_%" + } + }, + [71]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]=1000, + [2]=1000 + } + }, + text="On Hitting an Enemy while a Life Flask is at full Charges, {0}% of its Charges are consumed\nGain {1}% of damage as Physical damage for {2} second per Charge consumed this way" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="On Hitting an Enemy while a Life Flask is at full Charges, {0}% of its Charges are consumed\nGain {1}% of damage as Physical damage for {2} seconds per Charge consumed this way" + } + }, + stats={ + [1]="blood_mage_life_flask_buff_%_charges_to_consume", + [2]="blood_mage_life_flask_buff_%_damage_to_gain_as_physical_per_charge_consumed", + [3]="blood_mage_life_flask_buff_duration_ms" + } + }, + [72]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT You can wield a Focus while also wielding a Staff" + } + }, + stats={ + [1]="can_equip_staff_with_focus" + } + }, + [73]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Any Attack Hit can gain Combo" + } + }, + stats={ + [1]="can_gain_combo_from_any_attack_hit" + } + }, + [74]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="All Flames of Chayula that you manifest are Blue" + } + }, + stats={ + [1]="can_only_spawn_blue_flame_of_chayula_remnants" + } + }, + [75]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="All Flames of Chayula that you manifest are Purple" + } + }, + stats={ + [1]="can_only_spawn_purple_flame_of_chayula_remnants" + } + }, + [76]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="All Flames of Chayula that you manifest are Red" + } + }, + stats={ + [1]="can_only_spawn_red_flame_of_chayula_remnants" + } + }, + [77]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for Damage with Hits to be Lucky" + } + }, + stats={ + [1]="chance_for_extra_damage_roll_%" + } + }, + [78]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance when collecting an Elemental Infusion to gain another different Elemental Infusion" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="When collecting an Elemental Infusion, gain another different Elemental Infusion" + } + }, + stats={ + [1]="chance_%_for_extra_infusion_on_infused_remnant_pickup" + } + }, + [79]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% chance to generate an Owl Feather on Critical Hit" + } + }, + stats={ + [1]="chance_to_generate_owl_feather_%_on_crit" + } + }, + [80]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills have {0}% chance to not remove Charges but still count as consuming them" + } + }, + stats={ + [1]="charge_skip_consume_chance_%" + } + }, + [81]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Chill you inflict" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Chill you inflict" + } + }, + stats={ + [1]="chill_effect_+%" + } + }, + [82]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Grants Sands of Time" + } + }, + stats={ + [1]="chronomancer_grant_cast_speed_+%", + [2]="chronomancer_grant_area_of_effect_+%" + } + }, + [83]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Companions deal {0}% increased Damage per socketed Talisman" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT Companions deal {0}% reduced Damage per socketed Talisman" + } + }, + stats={ + [1]="companion_damage_+%_per_socketed_talisman" + } + }, + [84]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Remnants you create to grant their effects twice" + } + }, + stats={ + [1]="created_remnants_have_%_chance_to_duplicate_pick_up_results" + } + }, + [85]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemy Critical Hit Chance against you is Unlucky" + } + }, + stats={ + [1]="critical_chance_vs_self_is_unlucky" + } + }, + [86]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits are Crushing Blows" + } + }, + stats={ + [1]="crushing_blow" + } + }, + [87]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% of Current Energy Shield also grants Physical Damage reduction" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Current Energy Shield also grants Physical Damage reduction" + }, + [3]={ + limit={ + [1]={ + [1]=101, + [2]="#" + } + }, + text="{0}% of Current Energy Shield also grants Physical Damage reduction" + } + }, + stats={ + [1]="current_energy_shield_%_as_elemental_damage_reduction" + } + }, + [88]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies you Curse have at least {0}% of Life Reserved" + } + }, + stats={ + [1]="cursed_enemies_have_life_reserved_%" + } + }, + [89]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage of Enemies Hitting you is Unlucky" + } + }, + stats={ + [1]="damage_taken_from_hits_is_unlucky" + } + }, + [90]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Daze Enemies whose Hits you Block while Actively Blocking" + } + }, + stats={ + [1]="daze_enemies_on_block_with_shield_raised_chance_%" + } + }, + [91]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Enable Living Bomb" + } + }, + stats={ + [1]="display_fire_djinn_enable_living_bomb" + } + }, + [92]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies within 2 metres of you are Taunted" + } + }, + stats={ + [1]="display_nearby_enemies_are_taunted" + } + }, + [93]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Enable Explosive Teleport" + } + }, + stats={ + [1]="display_sand_djinn_enable_explode_teleport" + } + }, + [94]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Enable Hand Slam" + } + }, + stats={ + [1]="display_sand_djinn_enable_hand_slam" + } + }, + [95]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Enable Knife Toss" + } + }, + stats={ + [1]="display_sand_djinn_enable_knife_throw" + } + }, + [96]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You have {0} Fortification" + } + }, + stats={ + [1]="display_you_have_x_fortification" + } + }, + [97]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% more Energy Shield Recharge Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% less Energy Shield Recharge Rate" + } + }, + stats={ + [1]="djinn_ascendancy_energy_shield_recharge_rate_+%_final_on_low_energy_shield" + } + }, + [98]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Elemental Damage is taken from Mana before Life" + } + }, + stats={ + [1]="elemental_damage_removed_from_mana_before_life_%" + } + }, + [99]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% more Elemental Damage taken per Adaptation, matching that Adaptations type" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% less Elemental Damage taken per Adaptation, matching that Adaptations type" + } + }, + stats={ + [1]="elemental_damage_taken_+%_final_per_matching_adaptation" + } + }, + [100]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d} to Limit for Elemental Skills" + } + }, + stats={ + [1]="elemental_skill_limit_+" + } + }, + [101]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Energy Shield Recharge begins {0} second sooner" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Energy Shield Recharge begins {0} seconds sooner" + } + }, + stats={ + [1]="energy_shield_recharge_starts_X_ms_sooner" + } + }, + [102]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Every second, inflict Withered on nearby Enemies for {0} seconds" + } + }, + stats={ + [1]="every_1_second_nearby_enemies_withered_for_X_ms" + } + }, + [103]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% increased bonuses gained from Equipped Focus" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% reduced bonuses gained from Equipped Focus" + } + }, + stats={ + [1]="focus_mod_effect_+%" + } + }, + [104]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Gain {0} Adaptation when hit by Elemental Damage, matching the type of the Damage taken" + } + }, + stats={ + [1]="gain_X_adaptation_matching_type_when_hit_by_elemental_damage" + } + }, + [105]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0} Volatility on inflicting an Elemental Ailment" + } + }, + stats={ + [1]="gain_X_volatility_on_inflicting_elemental_ailment" + } + }, + [106]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take no Damage from Volatility" + } + }, + stats={ + [1]="immune_to_volatility_damage" + } + }, + [107]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can have two Companions of different types\nYou have 30% less Defences\nCompanions have +1 to each Defence for every 2 of that Defence you have" + } + }, + stats={ + [1]="keystone_2_companions" + } + }, + [108]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Dodge Roll cannot Avoid Damage\nTake 30% less Damage from Hits while Dodge Rolling" + } + }, + stats={ + [1]="keystone_bulwark" + } + }, + [109]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bleeding you inflict is Aggravated\nBase Bleeding Duration is 1 second" + } + }, + stats={ + [1]="keystone_crimson_assault" + } + }, + [110]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can inflict Bleeding on an Enemy up to 8 times\nYour Bleeding does not deal extra Damage while the Enemy is moving\n50% less Damage with Bleeding" + } + }, + stats={ + [1]="keystone_crimson_dance" + } + }, + [111]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="25% more Skill Speed while Off Hand is empty and you have\na One-Handed Martial Weapon equipped in your Main Hand" + } + }, + stats={ + [1]="keystone_dance_with_death" + } + }, + [112]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can wield Two-Handed Axes, Maces and Swords in one hand\nTriple Attribute requirements of Martial Weapons\nInherent Life granted by Strength is halved" + } + }, + stats={ + [1]="keystone_giants_blood" + } + }, + [113]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Mana Leech recovers based on Elemental Damage Types instead of Physical Damage" + } + }, + stats={ + [1]="keystone_mana_leech_from_elemental_instead" + } + }, + [114]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Excess Life Recovery from Regeneration is applied to Energy Shield\nEnergy Shield does not Recharge" + } + }, + stats={ + [1]="keystone_zealots_oath" + } + }, + [115]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Leech recovers based on Chaos Damage as well as Physical Damage" + } + }, + stats={ + [1]="leech_also_recovers_based_on_chaos_damage_as_well" + } + }, + [116]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life Leeched from Empowered Attacks is Instant" + } + }, + stats={ + [1]="life_leech_is_instant_for_empowered_attacks" + } + }, + [117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Nearby Enemies have {0}% increased Life Regeneration Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Nearby Enemies have {0}% reduced Life Regeneration Rate" + } + }, + stats={ + [1]="life_mastery_nearby_enemy_life_regeneration_rate_+%" + } + }, + [118]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Mana Regeneration Rate also apply to Rage Regeneration Rate" + } + }, + stats={ + [1]="mana_regeneration_rate_modifiers_apply_to_rage_regeneration" + } + }, + [119]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum Block chance is {0}%" + } + }, + stats={ + [1]="maximum_block_chance_override" + } + }, + [120]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Darkness per 1% Chaos Resistance" + } + }, + stats={ + [1]="maximum_darkness_+%_per_capped_chaos_damage_resistance" + } + }, + [121]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0:+d} to maximum Mana per fifty Item Evasion Rating on Equipped Armour Items" + } + }, + stats={ + [1]="maximum_mana_per_50_evasion_rating_from_armour_items" + } + }, + [122]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Meta Skill Gems have {0}% increased Reservation efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT Meta Skill Gems have {0}% reduced Reservation efficiency" + } + }, + stats={ + [1]="meta_gem_reservation_efficiency_+%" + } + }, + [123]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed Penalty while Actively Blocking" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed Penalty while Actively Blocking" + } + }, + stats={ + [1]="movement_speed_penalty_+%_while_raising_shield" + } + }, + [124]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Attacks Empowered by Owl Feathers have {0}% more Critical Damage Bonus" + } + }, + stats={ + [1]="multishot_critical_damage_bonus_+%_final" + } + }, + [125]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Projectile Barrages have no spread" + } + }, + stats={ + [1]="no_barrage_projectile_spread" + } + }, + [126]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="For each colour of Socketed Support Gem that is most numerous, gain:\nRed: Hits against you have no Critical Damage Bonus\nBlue: Skills have {1}% more cost\nGreen: {2}% more Movement Speed Penalty from using Skills while Moving" + }, + [2]={ + [1]={ + k="negate", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]=-1 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="For each colour of Socketed Support Gem that is most numerous, gain:\nRed: Hits against you have no Critical Damage Bonus\nBlue: Skills have {1}% less cost\nGreen: {2}% more Movement Speed Penalty from using Skills while Moving" + }, + [3]={ + [1]={ + k="negate", + v=2 + }, + [2]={ + k="negate", + v=3 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]=-1 + }, + [3]={ + [1]="#", + [2]=-1 + } + }, + text="For each colour of Socketed Support Gem that is most numerous, gain:\nRed: Hits against you have no Critical Damage Bonus\nBlue: Skills have {1}% less cost\nGreen: {2}% less Movement Speed Penalty from using Skills while Moving" + }, + [4]={ + [1]={ + k="negate", + v=3 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]="#", + [2]=-1 + } + }, + text="For each colour of Socketed Support Gem that is most numerous, gain:\nRed: Hits against you have no Critical Damage Bonus\nBlue: Skills have {1}% more cost\nGreen: {2}% less Movement Speed Penalty from using Skills while Moving" + } + }, + stats={ + [1]="no_self_critical_strike_multiplier_if_red_support_count_highest", + [2]="skill_cost_+%_final_if_blue_support_count_highest", + [3]="movement_speed_penalty_+%_final_while_performing_action_if_green_support_count_highest" + } + }, + [127]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Offerings can target Enemies in Culling range" + } + }, + stats={ + [1]="offering_skill_target_cullable_enemies_instead" + } + }, + [128]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Offerings affect you instead of your Minions" + } + }, + stats={ + [1]="offerings_only_buff_you" + } + }, + [129]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Physical Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Physical Damage" + } + }, + stats={ + [1]="physical_damage_+%" + } + }, + [130]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Physical Spell Critical Hits build Pin" + } + }, + stats={ + [1]="physical_spell_damage_can_pin_on_critical_hit" + } + }, + [131]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pinned Enemies cannot deal Critical Hits" + } + }, + stats={ + [1]="pinned_enemies_cannot_crit" + } + }, + [132]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits cannot be Evaded by Pinned Enemies" + } + }, + stats={ + [1]="pinned_enemies_cannot_evade_your_attacks" + } + }, + [133]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Projectile Attacks always Chain to Marked Enemies with {0}% increased Chaining Distance" + } + }, + stats={ + [1]="projectile_attacks_always_chain_to_marked_enemies_with_%_increased_chaining_distance" + } + }, + [134]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT You gain {0}% more Spell Damage per Rage" + } + }, + stats={ + [1]="ascendancy_shaman_spell_damage_+%_final_per_rage" + } + }, + [135]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Rage when you use a Life Flask" + } + }, + stats={ + [1]="rage_gained_on_life_flask_use" + } + }, + [136]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Freeze you inflict has up to {0}% increased duration, at random" + } + }, + stats={ + [1]="random_freeze_duration_+%_up_to_%" + } + }, + [137]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Remnants you create reappear once, {0} second after being collected" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Remnants you create reappear once, {0} seconds after being collected" + } + }, + stats={ + [1]="remnants_you_create_reappear_X_ms_after_being_collected" + } + }, + [138]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Skills have {0}% increased Reservation efficiency per socketed Talisman" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT Skills have {0}% reduced Reservation efficiency per socketed Talisman" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_skills_per_socketed_talisman" + } + }, + [139]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT {0:+d}% to all Elemental Resistances per socketed Rune" + } + }, + stats={ + [1]="resist_all_elements_%_per_socketed_rune" + } + }, + [140]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Sacrificing Energy Shield does not interrupt Recharge" + } + }, + stats={ + [1]="sacrificing_energy_shield_does_not_interrupt_recharge" + } + }, + [141]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Shock you inflict" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="You can wield Two-Handed Axes, Maces and Swords in one hand\nTriple Attribute requirements of Martial Weapons" + text="{0}% reduced Magnitude of Shock you inflict" } }, stats={ - [1]="keystone_giants_blood" + [1]="shock_effect_+%" } }, - [59]={ + [142]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Excess Life Recovery from Regeneration is applied to Energy Shield\nEnergy Shield does not Recharge" + text="DNT {0}% increased cost of Skills per socketed Soul Core" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT {0}% reduced cost of Skills per socketed Soul Core" } }, stats={ - [1]="keystone_zealots_oath" + [1]="skill_cost_+%_per_socketed_soul_core" } }, - [60]={ + [143]={ [1]={ [1]={ limit={ @@ -1106,27 +2933,30 @@ return { [2]="#" } }, - text="Nearby Enemies have {0}% increased Life Regeneration Rate" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Sacrifice {0}% of maximum Energy Shield when you Cast a Spell" + } + }, + stats={ + [1]="spells_sacrifice_%_of_your_energy_shield" + } + }, + [144]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Nearby Enemies have {0}% reduced Life Regeneration Rate" + text="Your Energy Shield starts at zero" } }, stats={ - [1]="life_mastery_nearby_enemy_life_regeneration_rate_+%" + [1]="start_at_zero_energy_shield" } }, - [61]={ + [145]={ [1]={ [1]={ limit={ @@ -1135,14 +2965,14 @@ return { [2]="#" } }, - text="Projectile Barrages have no spread" + text="Totems you place grant Embankment Auras" } }, stats={ - [1]="no_barrage_projectile_spread" + [1]="tactician_grants_aura_to_deployed_totems" } }, - [62]={ + [146]={ [1]={ [1]={ limit={ @@ -1151,72 +2981,111 @@ return { [2]="#" } }, - text="{0}% increased Physical Damage" + text="DNT Tame Beast can target Unique Beasts\nYou can summon Tamed Unique Beasts" + } + }, + stats={ + [1]="tame_beast_can_target_unique_beasts" + } + }, + [147]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Your Tamed Beasts are possessed by a different random Azmeri Wisp once every {0} second" }, [2]={ [1]={ - k="negate", + k="milliseconds_to_seconds_2dp_if_required", v=1 }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Physical Damage" + text="DNT Your Tamed Beasts are possessed by a different random Azmeri Wisp once every {0} seconds" } }, stats={ - [1]="physical_damage_+%" + [1]="tamed_beasts_randomly_possessed_every_x_ms" } }, - [63]={ + [148]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased Magnitude of Shock you inflict" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="DNT Your Time Lost Jewels have upgraded radii" + } + }, + stats={ + [1]="time_lost_jewel_radius_is_upgraded" + } + }, + [149]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Magnitude of Shock you inflict" + text="There is no Limit on the number of Banners you can place" } }, stats={ - [1]="shock_effect_+%" + [1]="unlimited_banners_allowed" } }, - [64]={ + [150]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Your Energy Shield starts at zero" + text="Grants Unravelling" } }, stats={ - [1]="start_at_zero_energy_shield" + [1]="unravelling_cycling_buff_every_x_ms" } }, - [65]={ + [151]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% of Main Hand Weapon Damage granted as Added Attack Damage to your Companions in your Presence" + } + }, + stats={ + [1]="weapon_damage_%_granted_to_companions_in_presence" + } + }, + [152]={ [1]={ [1]={ limit={ @@ -1232,7 +3101,23 @@ return { [1]="base_phasing_without_visual" } }, - [66]={ + [153]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Offerings created by Culling Enemies have {0}% increased Effect per Power of Culled Enemy" + } + }, + stats={ + [1]="lich_offering_effect_+%_per_enemy_power" + } + }, + [154]={ [1]={ [1]={ limit={ @@ -1257,7 +3142,7 @@ return { [1]="local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start" } }, - [67]={ + [155]={ [1]={ [1]={ limit={ @@ -1273,7 +3158,7 @@ return { [1]="keystone_alternate_dexterity_bonus" } }, - [68]={ + [156]={ [1]={ [1]={ limit={ @@ -1289,7 +3174,7 @@ return { [1]="keystone_alternate_intelligence_bonus" } }, - [69]={ + [157]={ [1]={ [1]={ limit={ @@ -1305,7 +3190,39 @@ return { [1]="keystone_alternate_strength_bonus" } }, - [70]={ + [158]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When taking damage from Hits, 20% of Life Loss is prevented, then 150% of Life Loss prevented this way is Lost over 4 seconds" + } + }, + stats={ + [1]="keystone_amanamus_defiance" + } + }, + [159]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Invocation Skills instead Trigger Spells every 2 seconds\nInvocation Skills cannot gain Energy while Triggering Spells\nInvoked Spells consume 50% less Energy" + } + }, + stats={ + [1]="keystone_auto_invocation" + } + }, + [160]={ [1]={ [1]={ limit={ @@ -1321,7 +3238,7 @@ return { [1]="keystone_barbed_tips" } }, - [71]={ + [161]={ [1]={ [1]={ limit={ @@ -1337,7 +3254,7 @@ return { [1]="keystone_blind_monk" } }, - [72]={ + [162]={ [1]={ [1]={ limit={ @@ -1353,7 +3270,7 @@ return { [1]="keystone_call_to_arms" } }, - [73]={ + [163]={ [1]={ [1]={ limit={ @@ -1369,7 +3286,7 @@ return { [1]="keystone_charge_cycle" } }, - [74]={ + [164]={ [1]={ [1]={ limit={ @@ -1385,7 +3302,7 @@ return { [1]="keystone_disciple_of_kitava" } }, - [75]={ + [165]={ [1]={ [1]={ limit={ @@ -1401,7 +3318,7 @@ return { [1]="keystone_divine_flesh" } }, - [76]={ + [166]={ [1]={ [1]={ limit={ @@ -1417,7 +3334,7 @@ return { [1]="keystone_divine_shield" } }, - [77]={ + [167]={ [1]={ [1]={ limit={ @@ -1433,7 +3350,7 @@ return { [1]="keystone_elemental_overload" } }, - [78]={ + [168]={ [1]={ [1]={ limit={ @@ -1449,7 +3366,7 @@ return { [1]="keystone_emperors_heart" } }, - [79]={ + [169]={ [1]={ [1]={ limit={ @@ -1458,14 +3375,30 @@ return { [2]="#" } }, - text="Life Recharges instead of Energy Shield\nLife Recovery from Flasks applies to Energy Shield instead" + text="Life Recharges instead of Energy Shield\n50% less Life Recovery from Flasks" } }, stats={ [1]="keystone_eternal_youth" } }, - [80]={ + [170]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire Spells Convert 100% of Fire Damage to Chaos Damage\nChaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes\nIgnite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage" + } + }, + stats={ + [1]="keystone_fire_spells_become_chaos_spells" + } + }, + [171]={ [1]={ [1]={ limit={ @@ -1481,7 +3414,7 @@ return { [1]="keystone_focused_rage" } }, - [81]={ + [172]={ [1]={ [1]={ limit={ @@ -1490,14 +3423,14 @@ return { [2]="#" } }, - text="Block Chance is doubled\nYou take 50% of Damage from Blocked Hits" + text="Chance to Evade is Unlucky\nChance to Deflect is Lucky" } }, stats={ [1]="keystone_glancing_blows" } }, - [82]={ + [173]={ [1]={ [1]={ limit={ @@ -1506,14 +3439,14 @@ return { [2]="#" } }, - text="Take 50% less Damage over Time if you've started taking Damage over Time in the past second\nTake 50% more Damage over Time if you've haven't started taking Damage over Time in the past second" + text="Take 50% less Damage over Time if you've started taking Damage over Time in the past second\nTake 50% more Damage over Time if you haven't started taking Damage over Time in the past second" } }, stats={ [1]="keystone_heartstopper" } }, - [83]={ + [174]={ [1]={ [1]={ limit={ @@ -1529,7 +3462,7 @@ return { [1]="keystone_herald_of_doom" } }, - [84]={ + [175]={ [1]={ [1]={ limit={ @@ -1545,7 +3478,23 @@ return { [1]="keystone_hex_master" } }, - [85]={ + [176]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Attack as though using a Quarterstaff while both of your hand slots are empty\nUnarmed Attacks that would use your Quarterstaff's damage gain:\nPhysical damage based on their Skill Level\n1% more Attack Speed per 25 Item Evasion Rating on Equipped Armour Items\n+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items" + } + }, + stats={ + [1]="keystone_hollow_palm_technique" + } + }, + [177]={ [1]={ [1]={ limit={ @@ -1561,7 +3510,7 @@ return { [1]="keystone_impale" } }, - [86]={ + [178]={ [1]={ [1]={ limit={ @@ -1577,7 +3526,7 @@ return { [1]="keystone_iron_grip" } }, - [87]={ + [179]={ [1]={ [1]={ limit={ @@ -1593,7 +3542,39 @@ return { [1]="keystone_iron_will" } }, - [88]={ + [180]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You deal 1% more Damage per 2 total Power of your Undead Minions\nUndead Minions have 25% less maximum Life" + } + }, + stats={ + [1]="keystone_kulemaks_sovereignty" + } + }, + [181]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mana Recovery from Regeneration Overflows maximum Mana\n50% less Mana Regeneration Rate" + } + }, + stats={ + [1]="keystone_kurgals_ambition" + } + }, + [182]={ [1]={ [1]={ limit={ @@ -1609,7 +3590,7 @@ return { [1]="keystone_magnetic_charge" } }, - [89]={ + [183]={ [1]={ [1]={ limit={ @@ -1625,7 +3606,7 @@ return { [1]="keystone_mental_conditioning" } }, - [90]={ + [184]={ [1]={ [1]={ limit={ @@ -1641,7 +3622,7 @@ return { [1]="keystone_natures_presence" } }, - [91]={ + [185]={ [1]={ [1]={ limit={ @@ -1657,7 +3638,7 @@ return { [1]="keystone_oasis" } }, - [92]={ + [186]={ [1]={ [1]={ limit={ @@ -1673,7 +3654,7 @@ return { [1]="keystone_precise_technique" } }, - [93]={ + [187]={ [1]={ [1]={ limit={ @@ -1682,14 +3663,14 @@ return { [2]="#" } }, - text="Armour applies to Fire, Cold and Lightning Damage taken from Hits instead of Physical Damage\n-15% to all maximum Elemental Resistances" + text="+100% of Armour applies to Elemental Damage\nArmour does not apply to Physical Damage\n-15% to all maximum Elemental Resistances" } }, stats={ [1]="keystone_prismatic_bulwark" } }, - [94]={ + [188]={ [1]={ [1]={ limit={ @@ -1705,7 +3686,7 @@ return { [1]="keystone_quiet_might" } }, - [95]={ + [189]={ [1]={ [1]={ limit={ @@ -1721,7 +3702,7 @@ return { [1]="keystone_runebinder" } }, - [96]={ + [190]={ [1]={ [1]={ limit={ @@ -1737,7 +3718,7 @@ return { [1]="keystone_sacred_bastion" } }, - [97]={ + [191]={ [1]={ [1]={ limit={ @@ -1753,7 +3734,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [98]={ + [192]={ [1]={ [1]={ limit={ @@ -1769,7 +3750,7 @@ return { [1]="keystone_sharp_and_brittle" } }, - [99]={ + [193]={ [1]={ [1]={ limit={ @@ -1785,7 +3766,7 @@ return { [1]="keystone_supreme_prodigy" } }, - [100]={ + [194]={ [1]={ [1]={ limit={ @@ -1794,14 +3775,14 @@ return { [2]="#" } }, - text="50% of Cold and Lightning Damage taken as Fire Damage\n50% less Cold Resistance\n50% less Lightning Resistance" + text="Regenerate 1 Life per second per 8 Life spent in the past 8 seconds\n50% more Life Cost of Skills" } }, stats={ - [1]="keystone_tempered_by_war" + [1]="keystone_tecrods_brutality" } }, - [101]={ + [195]={ [1]={ [1]={ limit={ @@ -1810,14 +3791,14 @@ return { [2]="#" } }, - text="You count as Dual Wielding while you are Unencumbered\n40% more Attack Speed with Melee Skills while you are Unencumbered\nAdds 14 to 20 Attack Physical Damage to Melee Skills per 10 Dexterity while you are Unencumbered" + text="50% of Cold and Lightning Damage taken as Fire Damage\n50% less Cold Resistance\n50% less Lightning Resistance" } }, stats={ - [1]="keystone_hollow_palm_technique" + [1]="keystone_tempered_by_war" } }, - [102]={ + [196]={ [1]={ [1]={ limit={ @@ -1826,14 +3807,14 @@ return { [2]="#" } }, - text="-25% to maximum Chance to Block Attack Damage\n-25% to maximum Chance to Block Spell Damage\n+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage" + text="Projectiles do one of the following at random:\nFork an additional time\nChain an additional time\nChain from Terrain an additional time\nCannot collide with targets" } }, stats={ - [1]="keystone_versatile_combatant" + [1]="keystone_ulamans_vision" } }, - [103]={ + [197]={ [1]={ [1]={ limit={ @@ -1842,14 +3823,14 @@ return { [2]="#" } }, - text="+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill\n20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill\n20% more Damage taken if a Non-Vaal Guard Buff was lost Recently" + text="-25% to maximum Chance to Block Attack Damage\n-25% to maximum Chance to Block Spell Damage\n+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage" } }, stats={ - [1]="keystone_veterans_awareness" + [1]="keystone_versatile_combatant" } }, - [104]={ + [198]={ [1]={ [1]={ limit={ @@ -1858,117 +3839,216 @@ return { [2]="#" } }, - text="20% less Attack Damage taken if you haven't been Hit by an Attack Recently\n10% more chance to Evade Attacks if you have been Hit by an Attack Recently\n20% more Attack Damage taken if you have been Hit by an Attack Recently" + text="+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill\n20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill\n20% more Damage taken if a Non-Vaal Guard Buff was lost Recently" } }, stats={ - [1]="keystone_wind_dancer" + [1]="keystone_veterans_awareness" } }, - ["active_skill_additional_projectiles_description_mode"]=43, - ["add_frenzy_charge_on_kill"]=15, - ["ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value"]=47, + ["active_skill_additional_projectiles_description_mode"]=44, + ["adaptation_duration_ms"]=49, + ["add_X_guard_on_trigger_per_100_ms_total_use_time_of_triggered_skill_up_to_maximum_mana"]=50, + ["add_X_ms_to_energy_shield_recharge_delay_per_combo_spent"]=51, + ["add_frenzy_charge_on_kill"]=17, + ["additional_combo_gain_chance_%"]=52, + ["additional_combo_gain_on_hit"]=53, + ["aggravate_bleeding_when_inflicted_vs_pinned_enemy"]=54, + ["apply_X_critical_weakness_on_consuming_mark"]=55, + ["arcane_surge_effect_on_self_+%_per_10%_missing_mana"]=56, + ["ascendancy_arcane_archer_triggered_skill_mana_cost_+%_final"]=57, + ["ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value"]=58, + ["ascendancy_enable_fire_djinn_passive"]=59, + ["ascendancy_gemling_charge_generator_buff_display"]=60, + ["ascendancy_lich_consume_power_for_apparition"]=61, + ["ascendancy_lich_skeletons_are_buffs_instead_of_minions"]=62, + ["ascendancy_lich_spell_damage_+%_final_when_sacrificing_energy_shield"]=63, + ["ascendancy_lich_spells_consume_power_charges_for_spell_damage_+%_final"]=64, + ["ascendancy_random_ignite_effect_+%_final_up_to_%"]=65, + ["ascendancy_shaman_spell_damage_+%_final_per_rage"]=134, + ["ascendancy_tactician_suppressing_fire_hit_damage_immobilisation_multiplier_+%_final"]=66, + ["ascendancy_vivid_stag_minimum_stag_wisp_count"]=67, + ["base_curse_delay_+%"]=68, ["base_devotion"]=2, - ["base_dexterity"]=5, - ["base_dexterity_and_intelligence"]=41, - ["base_intelligence"]=7, - ["base_number_of_golems_allowed"]=44, - ["base_number_of_raging_spirits_allowed"]=22, - ["base_number_of_skeletons_allowed"]=21, - ["base_number_of_spectres_allowed"]=20, - ["base_phasing_without_visual"]=65, - ["base_strength"]=3, - ["base_strength_and_dexterity"]=39, - ["base_strength_and_intelligence"]=40, - ["chill_effect_+%"]=48, - ["consecrate_ground_on_kill_%_for_3_seconds"]=46, - ["critical_strike_chance_+%"]=33, - ["crushing_blow"]=49, + ["base_dexterity"]=7, + ["base_dexterity_and_intelligence"]=42, + ["base_intelligence"]=9, + ["base_number_of_golems_allowed"]=45, + ["base_number_of_raging_spirits_allowed"]=24, + ["base_number_of_skeletons_allowed"]=23, + ["base_number_of_spectres_allowed"]=22, + ["base_phasing_without_visual"]=152, + ["base_rage_cost"]=69, + ["base_rage_regeneration_rate_per_minute_%"]=70, + ["base_strength"]=5, + ["base_strength_and_dexterity"]=40, + ["base_strength_and_intelligence"]=41, + ["base_tribute"]=3, + ["blood_mage_life_flask_buff_%_charges_to_consume"]=71, + ["blood_mage_life_flask_buff_%_damage_to_gain_as_physical_per_charge_consumed"]=71, + ["blood_mage_life_flask_buff_duration_ms"]=71, + ["can_equip_staff_with_focus"]=72, + ["can_gain_combo_from_any_attack_hit"]=73, + ["can_only_spawn_blue_flame_of_chayula_remnants"]=74, + ["can_only_spawn_purple_flame_of_chayula_remnants"]=75, + ["can_only_spawn_red_flame_of_chayula_remnants"]=76, + ["chance_%_for_extra_infusion_on_infused_remnant_pickup"]=78, + ["chance_for_extra_damage_roll_%"]=77, + ["chance_to_generate_owl_feather_%_on_crit"]=79, + ["charge_skip_consume_chance_%"]=80, + ["chill_effect_+%"]=81, + ["chronomancer_grant_area_of_effect_+%"]=82, + ["chronomancer_grant_cast_speed_+%"]=82, + ["companion_damage_+%_per_socketed_talisman"]=83, + ["consecrate_ground_on_kill_%_for_3_seconds"]=47, + ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=84, + ["critical_chance_vs_self_is_unlucky"]=85, + ["critical_strike_chance_+%"]=34, + ["crushing_blow"]=86, + ["current_energy_shield_%_as_elemental_damage_reduction"]=87, + ["cursed_enemies_have_life_reserved_%"]=88, ["damage_taken_+%_from_hits"]=1, - ["dexterity_+%"]=6, - ["display_can_take_character_start_point"]=45, - ["display_nearby_enemies_are_taunted"]=50, - ["display_you_have_x_fortification"]=51, - ["every_1_second_nearby_enemies_withered_for_X_ms"]=52, - ["global_chance_to_blind_on_hit_%"]=42, - ["intelligence_+%"]=8, - ["keystone_2_companions"]=53, - ["keystone_acrobatics"]=23, - ["keystone_alternate_dexterity_bonus"]=67, - ["keystone_alternate_intelligence_bonus"]=68, - ["keystone_alternate_strength_bonus"]=69, - ["keystone_ancestral_bond"]=19, - ["keystone_avatar_of_fire"]=17, - ["keystone_barbed_tips"]=70, - ["keystone_blind_monk"]=71, - ["keystone_blood_magic"]=28, - ["keystone_bulwark"]=54, - ["keystone_call_to_arms"]=72, - ["keystone_chaos_inoculation"]=31, - ["keystone_charge_cycle"]=73, - ["keystone_conduit"]=26, - ["keystone_crimson_assault"]=55, - ["keystone_crimson_dance"]=56, - ["keystone_dance_with_death"]=57, - ["keystone_disciple_of_kitava"]=74, - ["keystone_divine_flesh"]=75, - ["keystone_divine_shield"]=76, - ["keystone_eldritch_battery"]=18, - ["keystone_elemental_equilibrium"]=30, - ["keystone_elemental_overload"]=77, - ["keystone_emperors_heart"]=78, - ["keystone_eternal_youth"]=79, - ["keystone_focused_rage"]=80, - ["keystone_giants_blood"]=58, - ["keystone_glancing_blows"]=81, - ["keystone_heartstopper"]=82, - ["keystone_herald_of_doom"]=83, - ["keystone_hex_master"]=84, - ["keystone_hollow_palm_technique"]=101, - ["keystone_impale"]=85, - ["keystone_iron_grip"]=86, - ["keystone_iron_reflexes"]=16, - ["keystone_iron_will"]=87, - ["keystone_magnetic_charge"]=88, - ["keystone_mana_shield"]=35, - ["keystone_mental_conditioning"]=89, - ["keystone_minion_instability"]=29, - ["keystone_natures_presence"]=90, - ["keystone_oasis"]=91, - ["keystone_pain_attunement"]=24, - ["keystone_point_blank"]=25, - ["keystone_precise_technique"]=92, - ["keystone_prismatic_bulwark"]=93, - ["keystone_projectile_evasion"]=27, - ["keystone_quiet_might"]=94, - ["keystone_runebinder"]=95, - ["keystone_sacred_bastion"]=96, - ["keystone_secrets_of_suffering"]=97, - ["keystone_sharp_and_brittle"]=98, - ["keystone_supreme_prodigy"]=99, - ["keystone_tempered_by_war"]=100, - ["keystone_unwavering_stance"]=37, - ["keystone_vaal_pact"]=32, - ["keystone_versatile_combatant"]=102, - ["keystone_veterans_awareness"]=103, - ["keystone_wind_dancer"]=104, - ["keystone_zealots_oath"]=59, - ["life_mastery_nearby_enemy_life_regeneration_rate_+%"]=60, - ["local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start"]=66, - ["mana_regeneration_rate_per_minute_%"]=9, - ["mana_regeneration_rate_per_minute_%_per_power_charge"]=10, - ["max_endurance_charges"]=11, - ["max_frenzy_charges"]=12, - ["max_power_charges"]=13, - ["no_barrage_projectile_spread"]=61, - ["number_of_additional_projectiles"]=43, + ["damage_taken_from_hits_is_unlucky"]=89, + ["daze_enemies_on_block_with_shield_raised_chance_%"]=90, + ["dexterity_+%"]=8, + ["display_can_take_character_start_point"]=46, + ["display_fire_djinn_enable_living_bomb"]=91, + ["display_nearby_enemies_are_taunted"]=92, + ["display_sand_djinn_enable_explode_teleport"]=93, + ["display_sand_djinn_enable_hand_slam"]=94, + ["display_sand_djinn_enable_knife_throw"]=95, + ["display_you_have_x_fortification"]=96, + ["djinn_ascendancy_energy_shield_recharge_rate_+%_final_on_low_energy_shield"]=97, + ["elemental_damage_removed_from_mana_before_life_%"]=98, + ["elemental_damage_taken_+%_final_per_matching_adaptation"]=99, + ["elemental_skill_limit_+"]=100, + ["energy_shield_recharge_starts_X_ms_sooner"]=101, + ["every_1_second_nearby_enemies_withered_for_X_ms"]=102, + ["focus_mod_effect_+%"]=103, + ["gain_X_adaptation_matching_type_when_hit_by_elemental_damage"]=104, + ["gain_X_life_flask_charges_per_4%_life_spent"]=48, + ["gain_X_volatility_on_inflicting_elemental_ailment"]=105, + ["global_chance_to_blind_on_hit_%"]=43, + ["immune_to_volatility_damage"]=106, + ["intelligence_+%"]=10, + ["keystone_2_companions"]=107, + ["keystone_acrobatics"]=25, + ["keystone_alternate_dexterity_bonus"]=155, + ["keystone_alternate_intelligence_bonus"]=156, + ["keystone_alternate_strength_bonus"]=157, + ["keystone_amanamus_defiance"]=158, + ["keystone_ancestral_bond"]=21, + ["keystone_auto_invocation"]=159, + ["keystone_avatar_of_fire"]=19, + ["keystone_barbed_tips"]=160, + ["keystone_blind_monk"]=161, + ["keystone_blood_magic"]=29, + ["keystone_bulwark"]=108, + ["keystone_call_to_arms"]=162, + ["keystone_chaos_inoculation"]=32, + ["keystone_charge_cycle"]=163, + ["keystone_conduit"]=28, + ["keystone_crimson_assault"]=109, + ["keystone_crimson_dance"]=110, + ["keystone_dance_with_death"]=111, + ["keystone_disciple_of_kitava"]=164, + ["keystone_divine_flesh"]=165, + ["keystone_divine_shield"]=166, + ["keystone_eldritch_battery"]=20, + ["keystone_elemental_equilibrium"]=31, + ["keystone_elemental_overload"]=167, + ["keystone_emperors_heart"]=168, + ["keystone_eternal_youth"]=169, + ["keystone_fire_spells_become_chaos_spells"]=170, + ["keystone_focused_rage"]=171, + ["keystone_giants_blood"]=112, + ["keystone_glancing_blows"]=172, + ["keystone_heartstopper"]=173, + ["keystone_herald_of_doom"]=174, + ["keystone_hex_master"]=175, + ["keystone_hollow_palm_technique"]=176, + ["keystone_impale"]=177, + ["keystone_iron_grip"]=178, + ["keystone_iron_reflexes"]=18, + ["keystone_iron_will"]=179, + ["keystone_kulemaks_sovereignty"]=180, + ["keystone_kurgals_ambition"]=181, + ["keystone_magnetic_charge"]=182, + ["keystone_mana_leech_from_elemental_instead"]=113, + ["keystone_mana_shield"]=36, + ["keystone_mental_conditioning"]=183, + ["keystone_minion_instability"]=30, + ["keystone_natures_presence"]=184, + ["keystone_oasis"]=185, + ["keystone_pain_attunement"]=26, + ["keystone_point_blank"]=27, + ["keystone_precise_technique"]=186, + ["keystone_prismatic_bulwark"]=187, + ["keystone_quiet_might"]=188, + ["keystone_runebinder"]=189, + ["keystone_sacred_bastion"]=190, + ["keystone_secrets_of_suffering"]=191, + ["keystone_sharp_and_brittle"]=192, + ["keystone_supreme_prodigy"]=193, + ["keystone_tecrods_brutality"]=194, + ["keystone_tempered_by_war"]=195, + ["keystone_ulamans_vision"]=196, + ["keystone_unwavering_stance"]=38, + ["keystone_vaal_pact"]=33, + ["keystone_versatile_combatant"]=197, + ["keystone_veterans_awareness"]=198, + ["keystone_zealots_oath"]=114, + ["leech_also_recovers_based_on_chaos_damage_as_well"]=115, + ["lich_offering_effect_+%_per_enemy_power"]=153, + ["life_leech_is_instant_for_empowered_attacks"]=116, + ["life_mastery_nearby_enemy_life_regeneration_rate_+%"]=117, + ["local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start"]=154, + ["mana_regeneration_rate_modifiers_apply_to_rage_regeneration"]=118, + ["mana_regeneration_rate_per_minute_%"]=11, + ["mana_regeneration_rate_per_minute_%_per_power_charge"]=12, + ["max_endurance_charges"]=13, + ["max_frenzy_charges"]=14, + ["max_power_charges"]=15, + ["maximum_block_chance_override"]=119, + ["maximum_darkness_+%_per_capped_chaos_damage_resistance"]=120, + ["maximum_mana_per_50_evasion_rating_from_armour_items"]=121, + ["meta_gem_reservation_efficiency_+%"]=122, + ["movement_speed_penalty_+%_final_while_performing_action_if_green_support_count_highest"]=126, + ["movement_speed_penalty_+%_while_raising_shield"]=123, + ["multishot_critical_damage_bonus_+%_final"]=124, + ["no_barrage_projectile_spread"]=125, + ["no_self_critical_strike_multiplier_if_red_support_count_highest"]=126, + ["number_of_additional_projectiles"]=44, + ["offering_skill_target_cullable_enemies_instead"]=127, + ["offerings_only_buff_you"]=128, parent="stat_descriptions", - ["passive_can_be_allocated_without_connection"]=38, - ["physical_damage_+%"]=62, - ["physical_damage_+%_per_frenzy_charge"]=14, - ["resolute_technique"]=36, - ["shock_effect_+%"]=63, - ["staff_block_%"]=34, - ["start_at_zero_energy_shield"]=64, - ["strength_+%"]=4 + ["passive_can_be_allocated_without_connection"]=39, + ["physical_damage_+%"]=129, + ["physical_damage_+%_per_frenzy_charge"]=16, + ["physical_spell_damage_can_pin_on_critical_hit"]=130, + ["pinned_enemies_cannot_crit"]=131, + ["pinned_enemies_cannot_evade_your_attacks"]=132, + ["projectile_attacks_always_chain_to_marked_enemies_with_%_increased_chaining_distance"]=133, + ["rage_gained_on_life_flask_use"]=135, + ["random_freeze_duration_+%_up_to_%"]=136, + ["remnants_you_create_reappear_X_ms_after_being_collected"]=137, + ["reservation_efficiency_+%_of_skills_per_socketed_talisman"]=138, + ["resist_all_elements_%_per_socketed_rune"]=139, + ["resolute_technique"]=37, + ["sacrificing_energy_shield_does_not_interrupt_recharge"]=140, + ["shock_effect_+%"]=141, + ["skill_cost_+%_final_if_blue_support_count_highest"]=126, + ["skill_cost_+%_per_socketed_soul_core"]=142, + ["spells_sacrifice_%_of_your_energy_shield"]=143, + ["staff_block_%"]=35, + ["start_at_zero_energy_shield"]=144, + ["strength_+%"]=6, + ["tactician_grants_aura_to_deployed_totems"]=145, + ["tame_beast_can_target_unique_beasts"]=146, + ["tamed_beasts_randomly_possessed_every_x_ms"]=147, + ["time_lost_jewel_radius_is_upgraded"]=148, + ["tribute_+%"]=4, + ["unlimited_banners_allowed"]=149, + ["unravelling_cycling_buff_every_x_ms"]=150, + ["weapon_damage_%_granted_to_companions_in_presence"]=151 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/skill_stat_descriptions.lua b/src/Data/StatDescriptions/skill_stat_descriptions.lua index bb47a0e2df..acfd78343b 100644 --- a/src/Data/StatDescriptions/skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/skill_stat_descriptions.lua @@ -14,7 +14,7 @@ return { }, [3]={ stats={ - [1]="support_blood_fountain_radius" + [1]="font_of_blood_radius" } }, [4]={ @@ -24,7 +24,7 @@ return { }, [5]={ stats={ - [1]="support_mana_fountain_radius" + [1]="font_of_mana_radius" } }, [6]={ @@ -34,7 +34,7 @@ return { }, [7]={ stats={ - [1]="support_rage_fountain_radius" + [1]="font_of_rage_radius" } }, [8]={ @@ -71,7 +71,7 @@ return { [2]="#" } }, - text="Sacrifices {0}% of Skeleton's Life to deal that much Chaos Damage" + text="Sacrifices {0}% of Minion's life to deal that much Chaos damage" } }, stats={ @@ -669,22 +669,6 @@ return { } }, [43]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Transfers {0}% of Damage taken by each nearby enemy to the target" - } - }, - stats={ - [1]="damage_infusion_%" - } - }, - [44]={ [1]={ [1]={ limit={ @@ -700,7 +684,7 @@ return { [1]="eye_of_winter_display_number_of_explosion_shards" } }, - [45]={ + [44]={ [1]={ [1]={ limit={ @@ -729,7 +713,7 @@ return { [1]="attack_speed_+%" } }, - [46]={ + [45]={ [1]={ [1]={ limit={ @@ -758,7 +742,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [47]={ + [46]={ [1]={ [1]={ limit={ @@ -787,7 +771,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [48]={ + [47]={ [1]={ [1]={ limit={ @@ -816,7 +800,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%_final" } }, - [49]={ + [48]={ [1]={ [1]={ limit={ @@ -845,7 +829,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%_final" } }, - [50]={ + [49]={ [1]={ [1]={ limit={ @@ -874,7 +858,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [51]={ + [50]={ [1]={ [1]={ limit={ @@ -890,7 +874,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [52]={ + [51]={ [1]={ [1]={ [1]={ @@ -910,7 +894,7 @@ return { [1]="sunder_wave_radius_+_per_step" } }, - [53]={ + [52]={ [1]={ [1]={ limit={ @@ -939,7 +923,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [54]={ + [53]={ [1]={ [1]={ limit={ @@ -968,7 +952,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [55]={ + [54]={ [1]={ [1]={ limit={ @@ -997,7 +981,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [56]={ + [55]={ [1]={ [1]={ limit={ @@ -1026,7 +1010,7 @@ return { [1]="base_cast_speed_+%" } }, - [57]={ + [56]={ [1]={ [1]={ limit={ @@ -1055,7 +1039,7 @@ return { [1]="support_multicast_cast_speed_+%_final" } }, - [58]={ + [57]={ [1]={ [1]={ [1]={ @@ -1075,7 +1059,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [59]={ + [58]={ [1]={ [1]={ limit={ @@ -1100,7 +1084,7 @@ return { [1]="global_chance_to_knockback_%" } }, - [60]={ + [59]={ [1]={ [1]={ limit={ @@ -1116,7 +1100,7 @@ return { [1]="active_skill_200%_increased_knockback_distance" } }, - [61]={ + [60]={ [1]={ [1]={ limit={ @@ -1145,7 +1129,7 @@ return { [1]="knockback_distance_+%" } }, - [62]={ + [61]={ [1]={ [1]={ limit={ @@ -1174,7 +1158,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [63]={ + [62]={ [1]={ [1]={ limit={ @@ -1190,7 +1174,7 @@ return { [1]="active_skill_base_radius_+" } }, - [64]={ + [63]={ [1]={ [1]={ limit={ @@ -1206,7 +1190,7 @@ return { [1]="active_skill_ground_consecration_radius_+" } }, - [65]={ + [64]={ [1]={ [1]={ limit={ @@ -1235,7 +1219,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [66]={ + [65]={ [1]={ [1]={ limit={ @@ -1264,7 +1248,7 @@ return { [1]="cyclone_area_of_effect_+%_per_additional_melee_range" } }, - [67]={ + [66]={ [1]={ [1]={ limit={ @@ -1293,7 +1277,7 @@ return { [1]="virtual_cyclone_skill_area_of_effect_+%_from_melee_range" } }, - [68]={ + [67]={ [1]={ [1]={ limit={ @@ -1322,7 +1306,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [69]={ + [68]={ [1]={ [1]={ limit={ @@ -1351,7 +1335,7 @@ return { [1]="active_skill_area_of_effect_+%_final" } }, - [70]={ + [69]={ [1]={ [1]={ limit={ @@ -1380,7 +1364,7 @@ return { [1]="support_concentrated_effect_skill_area_of_effect_+%_final" } }, - [71]={ + [70]={ [1]={ [1]={ limit={ @@ -1409,7 +1393,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [72]={ + [71]={ [1]={ [1]={ limit={ @@ -1438,7 +1422,7 @@ return { [1]="aura_effect_+%" } }, - [73]={ + [72]={ [1]={ [1]={ limit={ @@ -1467,7 +1451,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [74]={ + [73]={ [1]={ [1]={ limit={ @@ -1496,7 +1480,7 @@ return { [1]="curse_effect_duration" } }, - [75]={ + [74]={ [1]={ [1]={ limit={ @@ -1521,7 +1505,7 @@ return { [1]="support_spell_echo_number_of_echo_cascades" } }, - [76]={ + [75]={ [1]={ [1]={ [1]={ @@ -1541,7 +1525,7 @@ return { [1]="buff_effect_duration" } }, - [77]={ + [76]={ [1]={ [1]={ limit={ @@ -1570,7 +1554,7 @@ return { [1]="secondary_buff_effect_duration" } }, - [78]={ + [77]={ [1]={ [1]={ limit={ @@ -1586,7 +1570,7 @@ return { [1]="tornado_maximum_number_of_hits" } }, - [79]={ + [78]={ [1]={ [1]={ [1]={ @@ -1606,7 +1590,7 @@ return { [1]="projectile_ground_effect_duration" } }, - [80]={ + [79]={ [1]={ [1]={ [1]={ @@ -1626,27 +1610,7 @@ return { [1]="bleeding_skill_effect_duration" } }, - [81]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp", - v=1 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Poison Lasts {0} seconds" - } - }, - stats={ - [1]="poison_skill_effect_duration" - } - }, - [82]={ + [80]={ [1]={ [1]={ [1]={ @@ -1666,7 +1630,7 @@ return { [1]="minion_duration" } }, - [83]={ + [81]={ [1]={ [1]={ [1]={ @@ -1686,7 +1650,7 @@ return { [1]="secondary_minion_duration" } }, - [84]={ + [82]={ [1]={ [1]={ [1]={ @@ -1706,7 +1670,7 @@ return { [1]="spectre_duration" } }, - [85]={ + [83]={ [1]={ [1]={ limit={ @@ -1735,7 +1699,7 @@ return { [1]="shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range" } }, - [86]={ + [84]={ [1]={ [1]={ limit={ @@ -1764,7 +1728,7 @@ return { [1]="shield_charge_stun_duration_+%_maximum" } }, - [87]={ + [85]={ [1]={ [1]={ limit={ @@ -1793,7 +1757,7 @@ return { [1]="shield_charge_damage_+%_maximum" } }, - [88]={ + [86]={ [1]={ [1]={ limit={ @@ -1853,7 +1817,7 @@ return { [3]="virtual_projectiles_cannot_pierce" } }, - [89]={ + [87]={ [1]={ [1]={ limit={ @@ -1878,7 +1842,7 @@ return { [1]="primary_projectile_display_targets_to_pierce" } }, - [90]={ + [88]={ [1]={ [1]={ limit={ @@ -1907,7 +1871,7 @@ return { [1]="projectile_speed_+%" } }, - [91]={ + [89]={ [1]={ [1]={ limit={ @@ -1941,7 +1905,7 @@ return { [2]="always_freeze" } }, - [92]={ + [90]={ [1]={ [1]={ limit={ @@ -1957,7 +1921,7 @@ return { [1]="base_all_damage_can_pin" } }, - [93]={ + [91]={ [1]={ [1]={ limit={ @@ -1973,23 +1937,7 @@ return { [1]="base_chance_to_shock_%" } }, - [94]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% chance to Ignite enemies" - } - }, - stats={ - [1]="base_chance_to_ignite_%" - } - }, - [95]={ + [92]={ [1]={ [1]={ limit={ @@ -2018,7 +1966,7 @@ return { [1]="freeze_duration_+%" } }, - [96]={ + [93]={ [1]={ [1]={ limit={ @@ -2047,7 +1995,7 @@ return { [1]="chill_duration_+%" } }, - [97]={ + [94]={ [1]={ [1]={ limit={ @@ -2076,7 +2024,7 @@ return { [1]="active_skill_chill_effect_+%_final" } }, - [98]={ + [95]={ [1]={ [1]={ limit={ @@ -2105,7 +2053,7 @@ return { [1]="chill_effect_+%" } }, - [99]={ + [96]={ [1]={ [1]={ limit={ @@ -2134,7 +2082,7 @@ return { [1]="shock_duration_+%" } }, - [100]={ + [97]={ [1]={ [1]={ limit={ @@ -2163,7 +2111,7 @@ return { [1]="ignite_duration_+%" } }, - [101]={ + [98]={ [1]={ [1]={ limit={ @@ -2192,7 +2140,7 @@ return { [1]="burn_damage_+%" } }, - [102]={ + [99]={ [1]={ [1]={ limit={ @@ -2221,7 +2169,7 @@ return { [1]="base_movement_velocity_+%" } }, - [103]={ + [100]={ [1]={ [1]={ limit={ @@ -2237,7 +2185,7 @@ return { [1]="no_movement_speed" } }, - [104]={ + [101]={ [1]={ [1]={ limit={ @@ -2266,7 +2214,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%" } }, - [105]={ + [102]={ [1]={ [1]={ limit={ @@ -2295,7 +2243,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%" } }, - [106]={ + [103]={ [1]={ [1]={ limit={ @@ -2324,7 +2272,7 @@ return { [1]="accuracy_rating" } }, - [107]={ + [104]={ [1]={ [1]={ limit={ @@ -2353,7 +2301,7 @@ return { [1]="accuracy_rating_+%" } }, - [108]={ + [105]={ [1]={ [1]={ [1]={ @@ -2373,7 +2321,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_to_deal_per_minute" } }, - [109]={ + [106]={ [1]={ [1]={ [1]={ @@ -2393,7 +2341,7 @@ return { [1]="base_physical_damage_%_of_maximum_life_to_deal_per_minute" } }, - [110]={ + [107]={ [1]={ [1]={ [1]={ @@ -2413,7 +2361,7 @@ return { [1]="base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute" } }, - [111]={ + [108]={ [1]={ [1]={ limit={ @@ -2429,7 +2377,7 @@ return { [1]="add_frenzy_charge_on_kill" } }, - [112]={ + [109]={ [1]={ [1]={ limit={ @@ -2454,7 +2402,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [113]={ + [110]={ [1]={ [1]={ limit={ @@ -2483,7 +2431,7 @@ return { [1]="critical_strike_chance_+%" } }, - [114]={ + [111]={ [1]={ [1]={ limit={ @@ -2512,7 +2460,7 @@ return { [1]="skill_buff_grants_critical_strike_chance_+%" } }, - [115]={ + [112]={ [1]={ [1]={ limit={ @@ -2541,7 +2489,7 @@ return { [1]="support_controlled_destruction_critical_strike_chance_+%_final" } }, - [116]={ + [113]={ [1]={ [1]={ limit={ @@ -2570,7 +2518,7 @@ return { [1]="support_multiple_projectiles_critical_strike_chance_+%_final" } }, - [117]={ + [114]={ [1]={ [1]={ limit={ @@ -2599,7 +2547,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [118]={ + [115]={ [1]={ [1]={ limit={ @@ -2615,7 +2563,32 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_elusive" } }, - [119]={ + [116]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Inflicts Withered on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Inflicts {0} Withered Debuffs on Hit" + } + }, + stats={ + [1]="apply_x_wither_on_hit" + } + }, + [117]={ [1]={ [1]={ [1]={ @@ -2645,10 +2618,10 @@ return { } }, stats={ - [1]="skill_withered_duration_ms" + [1]="active_skill_withered_base_duration_ms" } }, - [120]={ + [118]={ [1]={ [1]={ limit={ @@ -2677,7 +2650,7 @@ return { [1]="life_gain_per_target" } }, - [121]={ + [119]={ [1]={ [1]={ limit={ @@ -2706,7 +2679,7 @@ return { [1]="minion_damage_+%" } }, - [122]={ + [120]={ [1]={ [1]={ limit={ @@ -2735,7 +2708,7 @@ return { [1]="doubles_have_movement_speed_+%" } }, - [123]={ + [121]={ [1]={ [1]={ limit={ @@ -2764,7 +2737,7 @@ return { [1]="minion_attack_speed_+%" } }, - [124]={ + [122]={ [1]={ [1]={ limit={ @@ -2793,7 +2766,7 @@ return { [1]="minion_cast_speed_+%" } }, - [125]={ + [123]={ [1]={ [1]={ limit={ @@ -2822,7 +2795,7 @@ return { [1]="minion_movement_speed_+%" } }, - [126]={ + [124]={ [1]={ [1]={ limit={ @@ -2851,7 +2824,7 @@ return { [1]="active_skill_minion_movement_velocity_+%_final" } }, - [127]={ + [125]={ [1]={ [1]={ limit={ @@ -2996,7 +2969,7 @@ return { [3]="lightning_tendrils_channelled_larger_pulse_always_crit" } }, - [128]={ + [126]={ [1]={ [1]={ limit={ @@ -3012,7 +2985,7 @@ return { [1]="movement_velocity_cap" } }, - [129]={ + [127]={ [1]={ [1]={ limit={ @@ -3041,7 +3014,7 @@ return { [1]="active_skill_minion_life_+%_final" } }, - [130]={ + [128]={ [1]={ [1]={ limit={ @@ -3070,7 +3043,7 @@ return { [1]="active_skill_minion_energy_shield_+%_final" } }, - [131]={ + [129]={ [1]={ [1]={ limit={ @@ -3099,7 +3072,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [132]={ + [130]={ [1]={ [1]={ limit={ @@ -3115,7 +3088,7 @@ return { [1]="minion_maximum_life_+%" } }, - [133]={ + [131]={ [1]={ [1]={ limit={ @@ -3131,7 +3104,7 @@ return { [1]="keystone_minion_instability" } }, - [134]={ + [132]={ [1]={ [1]={ limit={ @@ -3160,7 +3133,7 @@ return { [1]="base_stun_duration_+%" } }, - [135]={ + [133]={ [1]={ [1]={ limit={ @@ -3176,7 +3149,7 @@ return { [1]="always_stun" } }, - [136]={ + [134]={ [1]={ [1]={ limit={ @@ -3192,7 +3165,7 @@ return { [1]="backstab_damage_+%" } }, - [137]={ + [135]={ [1]={ [1]={ [1]={ @@ -3212,7 +3185,7 @@ return { [1]="base_chaos_damage_taken_per_minute_per_viper_strike_orb" } }, - [138]={ + [136]={ [1]={ [1]={ [1]={ @@ -3232,7 +3205,7 @@ return { [1]="intermediary_chaos_area_damage_to_deal_per_minute" } }, - [139]={ + [137]={ [1]={ [1]={ [1]={ @@ -3252,7 +3225,7 @@ return { [1]="intermediary_chaos_damage_to_deal_per_minute" } }, - [140]={ + [138]={ [1]={ [1]={ [1]={ @@ -3272,7 +3245,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [141]={ + [139]={ [1]={ [1]={ [1]={ @@ -3292,7 +3265,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [142]={ + [140]={ [1]={ [1]={ [1]={ @@ -3312,7 +3285,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [143]={ + [141]={ [1]={ [1]={ [1]={ @@ -3332,7 +3305,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [144]={ + [142]={ [1]={ [1]={ [1]={ @@ -3352,7 +3325,7 @@ return { [1]="intermediary_cold_area_damage_to_deal_per_minute" } }, - [145]={ + [143]={ [1]={ [1]={ [1]={ @@ -3372,7 +3345,7 @@ return { [1]="intermediary_cold_damage_to_deal_per_minute" } }, - [146]={ + [144]={ [1]={ [1]={ [1]={ @@ -3392,7 +3365,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [147]={ + [145]={ [1]={ [1]={ [1]={ @@ -3412,7 +3385,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [148]={ + [146]={ [1]={ [1]={ [1]={ @@ -3432,7 +3405,7 @@ return { [1]="intermediary_fire_area_damage_to_deal_per_minute" } }, - [149]={ + [147]={ [1]={ [1]={ [1]={ @@ -3452,7 +3425,7 @@ return { [1]="intermediary_fire_damage_to_deal_per_minute" } }, - [150]={ + [148]={ [1]={ [1]={ [1]={ @@ -3472,7 +3445,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [151]={ + [149]={ [1]={ [1]={ [1]={ @@ -3492,7 +3465,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [152]={ + [150]={ [1]={ [1]={ [1]={ @@ -3512,7 +3485,7 @@ return { [1]="secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [153]={ + [151]={ [1]={ [1]={ [1]={ @@ -3532,7 +3505,7 @@ return { [1]="monster_response_time_ms" } }, - [154]={ + [152]={ [1]={ [1]={ limit={ @@ -3561,7 +3534,7 @@ return { [1]="phase_run_melee_physical_damage_+%_final" } }, - [155]={ + [153]={ [1]={ [1]={ limit={ @@ -3590,7 +3563,7 @@ return { [1]="melee_physical_damage_+%" } }, - [156]={ + [154]={ [1]={ [1]={ [1]={ @@ -3623,7 +3596,7 @@ return { [1]="explosive_arrow_explosion_base_damage_+permyriad" } }, - [157]={ + [155]={ [1]={ [1]={ [1]={ @@ -3656,7 +3629,7 @@ return { [1]="oil_arrow_explosion_base_damage_+permyriad" } }, - [158]={ + [156]={ [1]={ [1]={ limit={ @@ -3677,7 +3650,7 @@ return { [2]="explosive_arrow_explosion_maximum_added_fire_damage" } }, - [159]={ + [157]={ [1]={ [1]={ limit={ @@ -3698,7 +3671,7 @@ return { [2]="oil_arrow_explosion_maximum_added_fire_damage" } }, - [160]={ + [158]={ [1]={ [1]={ limit={ @@ -3719,7 +3692,7 @@ return { [2]="maximum_fire_damage_per_fuse_arrow_orb" } }, - [161]={ + [159]={ [1]={ [1]={ limit={ @@ -3753,7 +3726,7 @@ return { [2]="explosive_arrow_maximum_bonus_explosion_radius" } }, - [162]={ + [160]={ [1]={ [1]={ limit={ @@ -3782,7 +3755,7 @@ return { [1]="base_stun_recovery_+%" } }, - [163]={ + [161]={ [1]={ [1]={ limit={ @@ -3811,7 +3784,7 @@ return { [1]="energy_shield_delay_-%" } }, - [164]={ + [162]={ [1]={ [1]={ limit={ @@ -3840,7 +3813,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [165]={ + [163]={ [1]={ [1]={ limit={ @@ -3856,7 +3829,7 @@ return { [1]="degen_effect_+%" } }, - [166]={ + [164]={ [1]={ [1]={ [1]={ @@ -3876,7 +3849,7 @@ return { [1]="base_buff_duration_ms_+_per_removable_endurance_charge" } }, - [167]={ + [165]={ [1]={ [1]={ limit={ @@ -3892,7 +3865,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge" } }, - [168]={ + [166]={ [1]={ [1]={ limit={ @@ -3908,7 +3881,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5" } }, - [169]={ + [167]={ [1]={ [1]={ limit={ @@ -3924,7 +3897,7 @@ return { [1]="skill_effect_duration_+%_per_removable_frenzy_charge" } }, - [170]={ + [168]={ [1]={ [1]={ limit={ @@ -3940,23 +3913,7 @@ return { [1]="shield_block_%" } }, - [171]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while holding a Shield" - } - }, - stats={ - [1]="shield_spell_block_%" - } - }, - [172]={ + [169]={ [1]={ [1]={ limit={ @@ -3972,7 +3929,7 @@ return { [1]="fire_shield_damage_threshold" } }, - [173]={ + [170]={ [1]={ [1]={ limit={ @@ -4001,7 +3958,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [174]={ + [171]={ [1]={ [1]={ limit={ @@ -4017,7 +3974,7 @@ return { [1]="base_resist_all_elements_%" } }, - [175]={ + [172]={ [1]={ [1]={ [1]={ @@ -4037,7 +3994,7 @@ return { [1]="base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute" } }, - [176]={ + [173]={ [1]={ [1]={ [1]={ @@ -4057,7 +4014,7 @@ return { [1]="base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute" } }, - [177]={ + [174]={ [1]={ [1]={ [1]={ @@ -4077,7 +4034,7 @@ return { [1]="self_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [178]={ + [175]={ [1]={ [1]={ [1]={ @@ -4097,7 +4054,7 @@ return { [1]="self_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute" } }, - [179]={ + [176]={ [1]={ [1]={ limit={ @@ -4126,7 +4083,7 @@ return { [1]="righteous_fire_spell_damage_+%_final" } }, - [180]={ + [177]={ [1]={ [1]={ limit={ @@ -4155,7 +4112,7 @@ return { [1]="vaal_righteous_fire_spell_damage_+%_final" } }, - [181]={ + [178]={ [1]={ [1]={ limit={ @@ -4184,7 +4141,7 @@ return { [1]="spell_damage_+%" } }, - [182]={ + [179]={ [1]={ [1]={ limit={ @@ -4200,7 +4157,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [183]={ + [180]={ [1]={ [1]={ [1]={ @@ -4292,7 +4249,7 @@ return { [2]="ignite_proliferation_delay_ms" } }, - [184]={ + [181]={ [1]={ [1]={ limit={ @@ -4308,7 +4265,7 @@ return { [1]="cannot_inflict_elemental_ailments" } }, - [185]={ + [182]={ [1]={ [1]={ limit={ @@ -4324,7 +4281,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [186]={ + [183]={ [1]={ [1]={ limit={ @@ -4340,7 +4297,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [187]={ + [184]={ [1]={ [1]={ limit={ @@ -4356,7 +4313,7 @@ return { [1]="keystone_point_blank" } }, - [188]={ + [185]={ [1]={ [1]={ limit={ @@ -4372,7 +4329,7 @@ return { [1]="virtual_skill_gains_intensity" } }, - [189]={ + [186]={ [1]={ [1]={ limit={ @@ -4388,7 +4345,7 @@ return { [1]="virtual_maximum_intensity" } }, - [190]={ + [187]={ [1]={ [1]={ [1]={ @@ -4413,7 +4370,7 @@ return { [2]="virtual_intensity_lost_on_teleport" } }, - [191]={ + [188]={ [1]={ [1]={ limit={ @@ -4429,7 +4386,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [192]={ + [189]={ [1]={ [1]={ limit={ @@ -4445,7 +4402,7 @@ return { [1]="totem_range" } }, - [193]={ + [190]={ [1]={ [1]={ limit={ @@ -4461,7 +4418,7 @@ return { [1]="skill_display_number_of_totems_allowed" } }, - [194]={ + [191]={ [1]={ [1]={ limit={ @@ -4486,7 +4443,7 @@ return { [1]="skill_display_number_of_traps_allowed" } }, - [195]={ + [192]={ [1]={ [1]={ limit={ @@ -4511,7 +4468,7 @@ return { [1]="skill_display_number_of_remote_mines_allowed" } }, - [196]={ + [193]={ [1]={ [1]={ [1]={ @@ -4531,7 +4488,7 @@ return { [1]="totem_duration" } }, - [197]={ + [194]={ [1]={ [1]={ limit={ @@ -4547,7 +4504,7 @@ return { [1]="totems_cannot_evade" } }, - [198]={ + [195]={ [1]={ [1]={ [1]={ @@ -4567,7 +4524,7 @@ return { [1]="trap_duration" } }, - [199]={ + [196]={ [1]={ [1]={ limit={ @@ -4596,7 +4553,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [200]={ + [197]={ [1]={ [1]={ limit={ @@ -4625,7 +4582,7 @@ return { [1]="mine_laying_speed_+%" } }, - [201]={ + [198]={ [1]={ [1]={ [1]={ @@ -4645,7 +4602,7 @@ return { [1]="mine_duration" } }, - [202]={ + [199]={ [1]={ [1]={ limit={ @@ -4674,23 +4631,7 @@ return { [1]="totem_life_+%" } }, - [203]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Hits Freeze as though dealing {0}% more Damage" - } - }, - stats={ - [1]="freeze_as_though_dealt_damage_+%" - } - }, - [204]={ + [200]={ [1]={ [1]={ limit={ @@ -4706,7 +4647,7 @@ return { [1]="glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%" } }, - [205]={ + [201]={ [1]={ [1]={ [1]={ @@ -4726,7 +4667,7 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [206]={ + [202]={ [1]={ [1]={ [1]={ @@ -4746,7 +4687,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [207]={ + [203]={ [1]={ [1]={ limit={ @@ -4775,7 +4716,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [208]={ + [204]={ [1]={ [1]={ limit={ @@ -4791,7 +4732,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [209]={ + [205]={ [1]={ [1]={ limit={ @@ -4820,7 +4761,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [210]={ + [206]={ [1]={ [1]={ limit={ @@ -4836,7 +4777,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [211]={ + [207]={ [1]={ [1]={ limit={ @@ -4865,7 +4806,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [212]={ + [208]={ [1]={ [1]={ limit={ @@ -4881,7 +4822,7 @@ return { [1]="explosive_arrow_hit_damage_+%_final_per_stack" } }, - [213]={ + [209]={ [1]={ [1]={ limit={ @@ -4906,7 +4847,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [214]={ + [210]={ [1]={ [1]={ limit={ @@ -4935,7 +4876,7 @@ return { [1]="blind_duration_+%" } }, - [215]={ + [211]={ [1]={ [1]={ limit={ @@ -4951,7 +4892,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [216]={ + [212]={ [1]={ [1]={ limit={ @@ -4967,7 +4908,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [217]={ + [213]={ [1]={ [1]={ limit={ @@ -4983,7 +4924,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [218]={ + [214]={ [1]={ [1]={ limit={ @@ -4999,7 +4940,7 @@ return { [1]="lightning_penetration_%_while_on_low_mana" } }, - [219]={ + [215]={ [1]={ [1]={ limit={ @@ -5015,7 +4956,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [220]={ + [216]={ [1]={ [1]={ limit={ @@ -5024,14 +4965,14 @@ return { [2]="#" } }, - text="Uses your Life if no Skeletons in range" + text="Uses your life if no Minion in range" } }, stats={ [1]="skeletal_chains_no_minions_targets_self" } }, - [221]={ + [217]={ [1]={ [1]={ limit={ @@ -5040,14 +4981,14 @@ return { [2]="#" } }, - text="{0}% more Damage with Hits if using your Life" + text="{0}% more damage with Hits if using your life" } }, stats={ [1]="skeletal_chains_no_minions_damage_+%_final" } }, - [222]={ + [218]={ [1]={ [1]={ limit={ @@ -5063,7 +5004,7 @@ return { [1]="skeletal_chains_no_minions_radius_+" } }, - [223]={ + [219]={ [1]={ [1]={ limit={ @@ -5079,7 +5020,7 @@ return { [1]="virtual_projectile_number_to_split" } }, - [224]={ + [220]={ [1]={ [1]={ limit={ @@ -5104,7 +5045,7 @@ return { [1]="virtual_number_of_forks_for_projectiles_final" } }, - [225]={ + [221]={ [1]={ [1]={ limit={ @@ -5151,7 +5092,7 @@ return { [2]="projectile_return_%_chance" } }, - [226]={ + [222]={ [1]={ [1]={ limit={ @@ -5180,7 +5121,7 @@ return { [1]="flamethrower_damage_+%_per_stage_final" } }, - [227]={ + [223]={ [1]={ [1]={ limit={ @@ -5209,7 +5150,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [228]={ + [224]={ [1]={ [1]={ limit={ @@ -5238,7 +5179,7 @@ return { [1]="blade_vortex_hit_rate_+%_per_blade" } }, - [229]={ + [225]={ [1]={ [1]={ limit={ @@ -5267,7 +5208,7 @@ return { [1]="blade_vortex_damage_+%_per_blade_final" } }, - [230]={ + [226]={ [1]={ [1]={ limit={ @@ -5296,7 +5237,7 @@ return { [1]="active_skill_movement_speed_+%_final" } }, - [231]={ + [227]={ [1]={ [1]={ [1]={ @@ -5316,7 +5257,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [232]={ + [228]={ [1]={ [1]={ [1]={ @@ -5336,7 +5277,7 @@ return { [1]="ice_shield_moving_mana_degeneration_per_minute" } }, - [233]={ + [229]={ [1]={ [1]={ limit={ @@ -5352,7 +5293,7 @@ return { [1]="physical_damage_taken_+" } }, - [234]={ + [230]={ [1]={ [1]={ limit={ @@ -5368,7 +5309,7 @@ return { [1]="fire_damage_taken_+" } }, - [235]={ + [231]={ [1]={ [1]={ limit={ @@ -5384,7 +5325,7 @@ return { [1]="virtual_melee_splash" } }, - [236]={ + [232]={ [1]={ [1]={ limit={ @@ -5400,7 +5341,7 @@ return { [1]="attack_repeat_count" } }, - [237]={ + [233]={ [1]={ [1]={ limit={ @@ -5425,7 +5366,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [238]={ + [234]={ [1]={ [1]={ limit={ @@ -5454,7 +5395,7 @@ return { [1]="support_multiple_attacks_melee_attack_speed_+%_final" } }, - [239]={ + [235]={ [1]={ [1]={ limit={ @@ -5470,7 +5411,7 @@ return { [1]="summon_fire_resistance_+" } }, - [240]={ + [236]={ [1]={ [1]={ limit={ @@ -5486,7 +5427,7 @@ return { [1]="summon_cold_resistance_+" } }, - [241]={ + [237]={ [1]={ [1]={ limit={ @@ -5502,7 +5443,7 @@ return { [1]="summon_lightning_resistance_+" } }, - [242]={ + [238]={ [1]={ [1]={ limit={ @@ -5518,7 +5459,7 @@ return { [1]="virtual_minion_elemental_resistance_%" } }, - [243]={ + [239]={ [1]={ [1]={ limit={ @@ -5543,7 +5484,7 @@ return { [1]="apply_linked_curses_on_hit_%" } }, - [244]={ + [240]={ [1]={ [1]={ limit={ @@ -5559,7 +5500,7 @@ return { [1]="reave_area_of_effect_+%_final_per_stage" } }, - [245]={ + [241]={ [1]={ [1]={ limit={ @@ -5606,7 +5547,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [246]={ + [242]={ [1]={ [1]={ [1]={ @@ -5626,7 +5567,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [247]={ + [243]={ [1]={ [1]={ limit={ @@ -5651,7 +5592,7 @@ return { [1]="cast_linked_spells_on_attack_crit_%" } }, - [248]={ + [244]={ [1]={ [1]={ limit={ @@ -5676,7 +5617,7 @@ return { [1]="flicker_strike_additional_flickers_from_power_charges" } }, - [249]={ + [245]={ [1]={ [1]={ limit={ @@ -5701,7 +5642,7 @@ return { [1]="cast_linked_spells_on_melee_kill_%" } }, - [250]={ + [246]={ [1]={ [1]={ limit={ @@ -5726,7 +5667,7 @@ return { [1]="melee_counterattack_trigger_on_hit_%" } }, - [251]={ + [247]={ [1]={ [1]={ limit={ @@ -5751,7 +5692,7 @@ return { [1]="attack_trigger_when_critically_hit_%" } }, - [252]={ + [248]={ [1]={ [1]={ limit={ @@ -5776,7 +5717,7 @@ return { [1]="melee_counterattack_trigger_on_block_%" } }, - [253]={ + [249]={ [1]={ [1]={ limit={ @@ -5792,7 +5733,7 @@ return { [1]="attack_unusable_if_triggerable" } }, - [254]={ + [250]={ [1]={ [1]={ limit={ @@ -5826,7 +5767,7 @@ return { [2]="animate_item_maximum_level_requirement" } }, - [255]={ + [251]={ [1]={ [1]={ limit={ @@ -5851,7 +5792,7 @@ return { [1]="attack_trigger_on_kill_%" } }, - [256]={ + [252]={ [1]={ [1]={ limit={ @@ -5876,7 +5817,7 @@ return { [1]="cast_on_attack_use_%" } }, - [257]={ + [253]={ [1]={ [1]={ limit={ @@ -5901,7 +5842,7 @@ return { [1]="cast_on_skill_use_%" } }, - [258]={ + [254]={ [1]={ [1]={ limit={ @@ -5926,7 +5867,7 @@ return { [1]="chance_to_cast_on_kill_%" } }, - [259]={ + [255]={ [1]={ [1]={ limit={ @@ -5951,7 +5892,7 @@ return { [1]="chance_to_cast_on_kill_%_target_self" } }, - [260]={ + [256]={ [1]={ [1]={ limit={ @@ -5976,7 +5917,7 @@ return { [1]="trigger_on_skill_use_from_chest_%" } }, - [261]={ + [257]={ [1]={ [1]={ limit={ @@ -6001,7 +5942,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_spirit_charge" } }, - [262]={ + [258]={ [1]={ [1]={ limit={ @@ -6026,7 +5967,7 @@ return { [1]="cast_on_any_damage_taken_%" } }, - [263]={ + [259]={ [1]={ [1]={ limit={ @@ -6051,7 +5992,7 @@ return { [1]="cast_when_hit_%" } }, - [264]={ + [260]={ [1]={ [1]={ limit={ @@ -6067,7 +6008,7 @@ return { [1]="cast_on_death_%" } }, - [265]={ + [261]={ [1]={ [1]={ limit={ @@ -6083,7 +6024,7 @@ return { [1]="chance_to_cast_on_rampage_tier_%" } }, - [266]={ + [262]={ [1]={ [1]={ limit={ @@ -6099,7 +6040,7 @@ return { [1]="cast_on_stunned_%" } }, - [267]={ + [263]={ [1]={ [1]={ limit={ @@ -6124,7 +6065,7 @@ return { [1]="spellslinger_trigger_on_wand_attack_%" } }, - [268]={ + [264]={ [1]={ [1]={ limit={ @@ -6149,7 +6090,7 @@ return { [1]="cast_on_gain_avians_flight_or_avians_might_%" } }, - [269]={ + [265]={ [1]={ [1]={ limit={ @@ -6174,7 +6115,7 @@ return { [1]="cast_on_hit_%" } }, - [270]={ + [266]={ [1]={ [1]={ limit={ @@ -6199,7 +6140,7 @@ return { [1]="cast_on_hit_if_cursed_%" } }, - [271]={ + [267]={ [1]={ [1]={ limit={ @@ -6215,7 +6156,7 @@ return { [1]="cast_on_lose_cats_stealth" } }, - [272]={ + [268]={ [1]={ [1]={ limit={ @@ -6240,7 +6181,7 @@ return { [1]="cast_on_melee_hit_if_cursed_%" } }, - [273]={ + [269]={ [1]={ [1]={ limit={ @@ -6265,7 +6206,7 @@ return { [1]="attack_trigger_on_hit_%" } }, - [274]={ + [270]={ [1]={ [1]={ limit={ @@ -6290,7 +6231,7 @@ return { [1]="attack_trigger_on_melee_hit_%" } }, - [275]={ + [271]={ [1]={ [1]={ limit={ @@ -6316,7 +6257,7 @@ return { [3]="cast_on_damage_taken_threshold" } }, - [276]={ + [272]={ [1]={ [1]={ limit={ @@ -6341,7 +6282,7 @@ return { [1]="chance_to_cast_when_your_trap_is_triggered_%" } }, - [277]={ + [273]={ [1]={ [1]={ limit={ @@ -6370,7 +6311,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [278]={ + [274]={ [1]={ [1]={ limit={ @@ -6399,7 +6340,7 @@ return { [1]="charged_blast_spell_damage_+%_final_per_stack" } }, - [279]={ + [275]={ [1]={ [1]={ [1]={ @@ -6419,7 +6360,7 @@ return { [1]="cast_while_channelling_time_ms" } }, - [280]={ + [276]={ [1]={ [1]={ limit={ @@ -6448,7 +6389,7 @@ return { [1]="curse_effect_+%" } }, - [281]={ + [277]={ [1]={ [1]={ limit={ @@ -6477,7 +6418,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [282]={ + [278]={ [1]={ [1]={ limit={ @@ -6506,7 +6447,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [283]={ + [279]={ [1]={ [1]={ limit={ @@ -6535,7 +6476,7 @@ return { [1]="support_spell_totem_cast_speed_+%_final" } }, - [284]={ + [280]={ [1]={ [1]={ limit={ @@ -6564,7 +6505,7 @@ return { [1]="support_attack_totem_attack_speed_+%_final" } }, - [285]={ + [281]={ [1]={ [1]={ limit={ @@ -6580,7 +6521,7 @@ return { [1]="atziri_unique_staff_storm_call_number_of_markers_to_place" } }, - [286]={ + [282]={ [1]={ [1]={ limit={ @@ -6596,7 +6537,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [287]={ + [283]={ [1]={ [1]={ limit={ @@ -6612,7 +6553,7 @@ return { [1]="desecrate_corpse_level" } }, - [288]={ + [284]={ [1]={ [1]={ limit={ @@ -6628,7 +6569,7 @@ return { [1]="unearth_corpse_level" } }, - [289]={ + [285]={ [1]={ [1]={ limit={ @@ -6644,7 +6585,7 @@ return { [1]="ice_nova_number_of_repeats" } }, - [290]={ + [286]={ [1]={ [1]={ limit={ @@ -6673,7 +6614,7 @@ return { [1]="ice_nova_radius_+%_per_repeat" } }, - [291]={ + [287]={ [1]={ [1]={ limit={ @@ -6702,7 +6643,7 @@ return { [1]="vaal_lightning_strike_beam_damage_+%_final" } }, - [292]={ + [288]={ [1]={ [1]={ limit={ @@ -6718,39 +6659,7 @@ return { [1]="global_always_hit" } }, - [293]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemy Block Chance reduced by {0}% against this Skill" - } - }, - stats={ - [1]="global_reduce_enemy_block_%" - } - }, - [294]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemies have {0}% reduced chance to Dodge Hits from this Skill" - } - }, - stats={ - [1]="reduce_enemy_dodge_%" - } - }, - [295]={ + [289]={ [1]={ [1]={ limit={ @@ -6779,7 +6688,7 @@ return { [1]="damage_+%_final_to_stunned_enemies" } }, - [296]={ + [290]={ [1]={ [1]={ limit={ @@ -6808,7 +6717,7 @@ return { [1]="flame_whip_damage_+%_final_vs_burning_enemies" } }, - [297]={ + [291]={ [1]={ [1]={ limit={ @@ -6837,7 +6746,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [298]={ + [292]={ [1]={ [1]={ limit={ @@ -6853,7 +6762,7 @@ return { [1]="never_freeze" } }, - [299]={ + [293]={ [1]={ [1]={ limit={ @@ -6869,7 +6778,7 @@ return { [1]="lightning_trap_projectiles_leave_shocking_ground" } }, - [300]={ + [294]={ [1]={ [1]={ limit={ @@ -6885,7 +6794,7 @@ return { [1]="fire_damage_+%" } }, - [301]={ + [295]={ [1]={ [1]={ limit={ @@ -6901,7 +6810,7 @@ return { [1]="cold_damage_+%" } }, - [302]={ + [296]={ [1]={ [1]={ limit={ @@ -6922,7 +6831,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [303]={ + [297]={ [1]={ [1]={ limit={ @@ -6943,7 +6852,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [304]={ + [298]={ [1]={ [1]={ limit={ @@ -6959,7 +6868,7 @@ return { [1]="elemental_hit_no_physical_chaos_damage" } }, - [305]={ + [299]={ [1]={ [1]={ limit={ @@ -6988,7 +6897,7 @@ return { [1]="static_strike_explosion_damage_+%_final" } }, - [306]={ + [300]={ [1]={ [1]={ limit={ @@ -7017,7 +6926,7 @@ return { [1]="base_arrow_speed_+%" } }, - [307]={ + [301]={ [1]={ [1]={ limit={ @@ -7033,7 +6942,7 @@ return { [1]="cluster_burst_spawn_amount" } }, - [308]={ + [302]={ [1]={ [1]={ [1]={ @@ -7075,7 +6984,7 @@ return { [1]="abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies" } }, - [309]={ + [303]={ [1]={ [1]={ limit={ @@ -7104,7 +7013,7 @@ return { [1]="newshocknova_first_ring_damage_+%_final" } }, - [310]={ + [304]={ [1]={ [1]={ limit={ @@ -7120,7 +7029,7 @@ return { [1]="abyssal_cry_%_max_life_as_chaos_on_death" } }, - [311]={ + [305]={ [1]={ [1]={ limit={ @@ -7136,7 +7045,7 @@ return { [1]="infernal_cry_%_max_life_as_fire_on_death" } }, - [312]={ + [306]={ [1]={ [1]={ limit={ @@ -7161,7 +7070,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [313]={ + [307]={ [1]={ [1]={ limit={ @@ -7190,7 +7099,7 @@ return { [1]="fortify_duration_+%" } }, - [314]={ + [308]={ [1]={ [1]={ limit={ @@ -7219,7 +7128,7 @@ return { [1]="ice_crash_second_hit_damage_+%_final" } }, - [315]={ + [309]={ [1]={ [1]={ limit={ @@ -7274,7 +7183,7 @@ return { [2]="quality_display_ice_crash_is_gem" } }, - [316]={ + [310]={ [1]={ [1]={ limit={ @@ -7303,7 +7212,7 @@ return { [1]="fire_golem_grants_damage_+%" } }, - [317]={ + [311]={ [1]={ [1]={ limit={ @@ -7332,7 +7241,7 @@ return { [1]="ice_golem_grants_critical_strike_chance_+%" } }, - [318]={ + [312]={ [1]={ [1]={ limit={ @@ -7361,7 +7270,7 @@ return { [1]="ice_golem_grants_accuracy_+%" } }, - [319]={ + [313]={ [1]={ [1]={ limit={ @@ -7377,7 +7286,7 @@ return { [1]="chaos_golem_grants_additional_physical_damage_reduction_%" } }, - [320]={ + [314]={ [1]={ [1]={ [1]={ @@ -7397,7 +7306,7 @@ return { [1]="stone_golem_grants_base_life_regeneration_rate_per_minute" } }, - [321]={ + [315]={ [1]={ [1]={ limit={ @@ -7426,7 +7335,7 @@ return { [1]="lightning_golem_grants_attack_and_cast_speed_+%" } }, - [322]={ + [316]={ [1]={ [1]={ [1]={ @@ -7446,7 +7355,7 @@ return { [1]="virtual_firestorm_drop_burning_ground_duration_ms" } }, - [323]={ + [317]={ [1]={ [1]={ [1]={ @@ -7466,7 +7375,7 @@ return { [1]="virtual_firestorm_drop_chilled_ground_duration_ms" } }, - [324]={ + [318]={ [1]={ [1]={ limit={ @@ -7495,7 +7404,7 @@ return { [1]="inspiring_cry_damage_+%_per_one_hundred_nearby_enemies" } }, - [325]={ + [319]={ [1]={ [1]={ [1]={ @@ -7515,7 +7424,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [326]={ + [320]={ [1]={ [1]={ limit={ @@ -7544,7 +7453,7 @@ return { [1]="damage_+%" } }, - [327]={ + [321]={ [1]={ [1]={ limit={ @@ -7573,7 +7482,7 @@ return { [1]="fire_nova_damage_+%_per_repeat_final" } }, - [328]={ + [322]={ [1]={ [1]={ limit={ @@ -7602,7 +7511,7 @@ return { [1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies" } }, - [329]={ + [323]={ [1]={ [1]={ limit={ @@ -7631,7 +7540,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [330]={ + [324]={ [1]={ [1]={ limit={ @@ -7647,7 +7556,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [331]={ + [325]={ [1]={ [1]={ limit={ @@ -7676,7 +7585,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [332]={ + [326]={ [1]={ [1]={ limit={ @@ -7705,32 +7614,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [333]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Freeze, Shock and Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Freeze, Shock and Ignite" - } - }, - stats={ - [1]="chance_to_freeze_shock_ignite_%" - } - }, - [334]={ + [327]={ [1]={ [1]={ limit={ @@ -7746,7 +7630,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [335]={ + [328]={ [1]={ [1]={ limit={ @@ -7762,7 +7646,7 @@ return { [1]="elemental_strike_physical_damage_%_to_convert" } }, - [336]={ + [329]={ [1]={ [1]={ limit={ @@ -7778,7 +7662,7 @@ return { [1]="melee_weapon_range_+" } }, - [337]={ + [330]={ [1]={ [1]={ limit={ @@ -7794,7 +7678,7 @@ return { [1]="melee_range_+" } }, - [338]={ + [331]={ [1]={ [1]={ limit={ @@ -7823,7 +7707,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [339]={ + [332]={ [1]={ [1]={ limit={ @@ -7839,7 +7723,7 @@ return { [1]="phase_through_objects" } }, - [340]={ + [333]={ [1]={ [1]={ limit={ @@ -7868,7 +7752,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [341]={ + [334]={ [1]={ [1]={ limit={ @@ -7897,7 +7781,7 @@ return { [1]="quake_slam_fully_charged_explosion_damage_+%_final" } }, - [342]={ + [335]={ [1]={ [1]={ limit={ @@ -7913,7 +7797,7 @@ return { [1]="maximum_number_of_spinning_blades" } }, - [343]={ + [336]={ [1]={ [1]={ limit={ @@ -7942,7 +7826,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [344]={ + [337]={ [1]={ [1]={ limit={ @@ -7960,14 +7844,14 @@ return { [2]="#" } }, - text="Always Poison on Hit" + text="Always Poisons on Hit" } }, stats={ [1]="base_chance_to_poison_on_hit_%" } }, - [345]={ + [338]={ [1]={ [1]={ limit={ @@ -7992,7 +7876,7 @@ return { [1]="skill_buff_grants_chance_to_poison_%" } }, - [346]={ + [339]={ [1]={ [1]={ limit={ @@ -8021,7 +7905,7 @@ return { [1]="damage_over_time_+%" } }, - [347]={ + [340]={ [1]={ [1]={ limit={ @@ -8050,7 +7934,7 @@ return { [1]="bladefall_damage_per_stage_+%_final" } }, - [348]={ + [341]={ [1]={ [1]={ limit={ @@ -8066,7 +7950,7 @@ return { [1]="global_poison_on_hit" } }, - [349]={ + [342]={ [1]={ [1]={ limit={ @@ -8095,7 +7979,7 @@ return { [1]="base_poison_duration_+%" } }, - [350]={ + [343]={ [1]={ [1]={ limit={ @@ -8124,7 +8008,7 @@ return { [1]="aftershock_area_of_effect_+%_final" } }, - [351]={ + [344]={ [1]={ [1]={ limit={ @@ -8153,7 +8037,7 @@ return { [1]="cyclone_first_hit_damage_+%_final" } }, - [352]={ + [345]={ [1]={ [1]={ limit={ @@ -8182,7 +8066,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [353]={ + [346]={ [1]={ [1]={ [1]={ @@ -8202,7 +8086,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [354]={ + [347]={ [1]={ [1]={ limit={ @@ -8231,7 +8115,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [355]={ + [348]={ [1]={ [1]={ limit={ @@ -8260,7 +8144,7 @@ return { [1]="skill_buff_effect_+%" } }, - [356]={ + [349]={ [1]={ [1]={ limit={ @@ -8289,7 +8173,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance" } }, - [357]={ + [350]={ [1]={ [1]={ limit={ @@ -8318,7 +8202,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance" } }, - [358]={ + [351]={ [1]={ [1]={ limit={ @@ -8347,7 +8231,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance" } }, - [359]={ + [352]={ [1]={ [1]={ limit={ @@ -8376,58 +8260,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance" } }, - [360]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } - }, - text="{0:+d}% more Aura Magnitudes per Valour" - }, - [2]={ - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="{0}% more Aura Magnitudes per Valour" - }, - [3]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="{0}% less Aura Magnitudes per Valour" - } - }, - stats={ - [1]="banner_aura_magnitude_+%_final_per_resource", - [2]="quality_display_banner_buff_effect_+%_final_per_resource_is_gem" - } - }, - [361]={ + [353]={ [1]={ [1]={ limit={ @@ -8456,39 +8289,7 @@ return { [1]="corrosive_shroud_poison_effect_+%_final_while_accumulating_poison" } }, - [362]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Stores {0}% of Expected Poison damage" - } - }, - stats={ - [1]="plague_bearer_gains_%_of_damage_from_inflicted_poisons" - } - }, - [363]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Stores up to {0} Poison Damage" - } - }, - stats={ - [1]="plague_bearer_maximum_stored_poison_damage" - } - }, - [364]={ + [354]={ [1]={ [1]={ limit={ @@ -8504,7 +8305,7 @@ return { [1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second" } }, - [365]={ + [355]={ [1]={ [1]={ limit={ @@ -8533,7 +8334,36 @@ return { [1]="plague_bearer_poison_effect_+%_while_infecting" } }, - [366]={ + [356]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Leeches Mana {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Leeches Mana {0}% slower" + } + }, + stats={ + [1]="base_mana_leech_rate_+%" + } + }, + [357]={ [1]={ [1]={ limit={ @@ -8549,7 +8379,7 @@ return { [1]="global_cannot_crit" } }, - [367]={ + [358]={ [1]={ [1]={ limit={ @@ -8578,7 +8408,7 @@ return { [1]="active_skill_projectile_damage_+%_final" } }, - [368]={ + [359]={ [1]={ [1]={ limit={ @@ -8633,7 +8463,7 @@ return { [2]="quality_display_active_skill_returning_damage_is_gem" } }, - [369]={ + [360]={ [1]={ [1]={ limit={ @@ -8662,7 +8492,7 @@ return { [1]="groundslam_damage_to_close_targets_+%_final" } }, - [370]={ + [361]={ [1]={ [1]={ limit={ @@ -8691,7 +8521,7 @@ return { [1]="snapping_adder_released_projectile_damage_+%_final" } }, - [371]={ + [362]={ [1]={ [1]={ limit={ @@ -8707,7 +8537,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [372]={ + [363]={ [1]={ [1]={ limit={ @@ -8736,7 +8566,7 @@ return { [1]="active_skill_damage_over_time_from_projectile_hits_+%_final" } }, - [373]={ + [364]={ [1]={ [1]={ [1]={ @@ -8769,7 +8599,7 @@ return { [1]="support_cruelty_duration_ms" } }, - [374]={ + [365]={ [1]={ }, stats={ @@ -8777,7 +8607,7 @@ return { [2]="support_ruthless_big_hit_stun_damage_+%_final" } }, - [375]={ + [366]={ [1]={ [1]={ limit={ @@ -8793,7 +8623,7 @@ return { [1]="berserk_minimum_rage" } }, - [376]={ + [367]={ [1]={ [1]={ limit={ @@ -8822,7 +8652,7 @@ return { [1]="berserk_attack_damage_+%_final" } }, - [377]={ + [368]={ [1]={ [1]={ limit={ @@ -8851,7 +8681,7 @@ return { [1]="berserk_attack_speed_+%_final" } }, - [378]={ + [369]={ [1]={ [1]={ limit={ @@ -8880,7 +8710,7 @@ return { [1]="berserk_movement_speed_+%_final" } }, - [379]={ + [370]={ [1]={ [1]={ limit={ @@ -8909,7 +8739,7 @@ return { [1]="berserk_base_damage_taken_+%_final" } }, - [380]={ + [371]={ [1]={ [1]={ [1]={ @@ -8929,7 +8759,7 @@ return { [1]="virtual_berserk_hundred_times_rage_loss_per_second" } }, - [381]={ + [372]={ [1]={ [1]={ limit={ @@ -8945,21 +8775,21 @@ return { [1]="berserk_rage_loss_+%_per_second" } }, - [382]={ + [373]={ [1]={ }, stats={ [1]="ancestral_call_spirit_strike_interval_ms" } }, - [383]={ + [374]={ [1]={ }, stats={ [1]="ancestral_slam_interval_duration" } }, - [384]={ + [375]={ [1]={ [1]={ limit={ @@ -8988,7 +8818,7 @@ return { [1]="support_ancestral_slam_big_hit_hit_damage_+%_final" } }, - [385]={ + [376]={ [1]={ [1]={ limit={ @@ -9017,7 +8847,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [386]={ + [377]={ [1]={ [1]={ limit={ @@ -9033,7 +8863,7 @@ return { [1]="tornado_damage_absorbed_%" } }, - [387]={ + [378]={ [1]={ [1]={ limit={ @@ -9049,7 +8879,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [388]={ + [379]={ [1]={ [1]={ limit={ @@ -9065,7 +8895,7 @@ return { [1]="deal_no_non_fire_damage" } }, - [389]={ + [380]={ [1]={ [1]={ limit={ @@ -9081,7 +8911,7 @@ return { [1]="deal_no_non_lightning_damage" } }, - [390]={ + [381]={ [1]={ [1]={ limit={ @@ -9097,7 +8927,7 @@ return { [1]="deal_no_non_cold_damage" } }, - [391]={ + [382]={ [1]={ [1]={ limit={ @@ -9113,7 +8943,7 @@ return { [1]="cold_damage_cannot_freeze" } }, - [392]={ + [383]={ [1]={ [1]={ limit={ @@ -9129,7 +8959,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [393]={ + [384]={ [1]={ [1]={ limit={ @@ -9158,7 +8988,7 @@ return { [1]="vaal_firestorm_gem_explosion_area_of_effect_+%_final" } }, - [394]={ + [385]={ [1]={ [1]={ limit={ @@ -9174,7 +9004,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [395]={ + [386]={ [1]={ [1]={ limit={ @@ -9190,7 +9020,7 @@ return { [1]="absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%" } }, - [396]={ + [387]={ [1]={ [1]={ limit={ @@ -9219,7 +9049,7 @@ return { [1]="accuracy_range_penalty_+%" } }, - [397]={ + [388]={ [1]={ [1]={ limit={ @@ -9248,7 +9078,7 @@ return { [1]="active_skill_added_damage_+%_final" } }, - [398]={ + [389]={ [1]={ [1]={ [1]={ @@ -9268,7 +9098,7 @@ return { [1]="active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [399]={ + [390]={ [1]={ [1]={ limit={ @@ -9297,7 +9127,7 @@ return { [1]="active_skill_area_damage_+%_final" } }, - [400]={ + [391]={ [1]={ [1]={ limit={ @@ -9326,7 +9156,7 @@ return { [1]="active_skill_area_of_effect_+%_final_per_endurance_charge" } }, - [401]={ + [392]={ [1]={ [1]={ limit={ @@ -9355,7 +9185,7 @@ return { [1]="active_skill_area_of_effect_+%_final_when_cast_on_frostbolt" } }, - [402]={ + [393]={ [1]={ [1]={ limit={ @@ -9384,7 +9214,7 @@ return { [1]="active_skill_attack_speed_+%_final_while_dual_wielding" } }, - [403]={ + [394]={ [1]={ [1]={ limit={ @@ -9400,7 +9230,7 @@ return { [1]="active_skill_base_area_length_+" } }, - [404]={ + [395]={ [1]={ [1]={ [1]={ @@ -9420,7 +9250,7 @@ return { [1]="active_skill_base_slow_debuff_movement_speed_+%_final" } }, - [405]={ + [396]={ [1]={ [1]={ limit={ @@ -9449,7 +9279,7 @@ return { [1]="active_skill_bleeding_effect_+%_final_in_blood_stance" } }, - [406]={ + [397]={ [1]={ [1]={ limit={ @@ -9478,14 +9308,14 @@ return { [1]="active_skill_bleeding_effect_+%_final" } }, - [407]={ + [398]={ [1]={ }, stats={ [1]="active_skill_can_overload" } }, - [408]={ + [399]={ [1]={ [1]={ limit={ @@ -9514,7 +9344,7 @@ return { [1]="active_skill_chaos_damage_+%_final" } }, - [409]={ + [400]={ [1]={ [1]={ limit={ @@ -9523,7 +9353,7 @@ return { [2]="#" } }, - text="Chills Enemies as though dealing {0}% more Damage" + text="Chills Enemies as though dealing {0}% more damage" }, [2]={ [1]={ @@ -9536,14 +9366,14 @@ return { [2]=-1 } }, - text="Chills Enemies as though dealing {0}% less Damage" + text="Chills Enemies as though dealing {0}% less damage" } }, stats={ [1]="active_skill_chill_as_though_damage_+%_final" } }, - [410]={ + [401]={ [1]={ [1]={ limit={ @@ -9572,7 +9402,65 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [411]={ + [402]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Consumes Freeze on Non-Unique enemies to deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Consumes Freeze on Non-Unique enemies to deal {0}% less Damage" + } + }, + stats={ + [1]="active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final" + } + }, + [403]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Consumes Freeze on Unique enemies to deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Consumes Freeze on Unique enemies to deal {0}% less Damage" + } + }, + stats={ + [1]="active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final" + } + }, + [404]={ [1]={ [1]={ limit={ @@ -9588,7 +9476,7 @@ return { [1]="active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [412]={ + [405]={ [1]={ [1]={ limit={ @@ -9617,7 +9505,7 @@ return { [1]="active_skill_damage_+%_final_against_heavy_stunned_enemies" } }, - [413]={ + [406]={ [1]={ [1]={ limit={ @@ -9668,7 +9556,36 @@ return { [2]="quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem" } }, - [414]={ + [407]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage against Unique enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage against Unique enemies" + } + }, + stats={ + [1]="active_skill_damage_+%_final_vs_unique_enemies" + } + }, + [408]={ [1]={ [1]={ limit={ @@ -9697,7 +9614,7 @@ return { [1]="active_skill_damage_+%_final_while_dual_wielding" } }, - [415]={ + [409]={ [1]={ [1]={ limit={ @@ -9713,7 +9630,7 @@ return { [1]="active_skill_damage_+%_final_against_enemies_on_full_life" } }, - [416]={ + [410]={ [1]={ [1]={ limit={ @@ -9742,7 +9659,7 @@ return { [1]="active_skill_damage_+%_final_per_time_chained" } }, - [417]={ + [411]={ [1]={ [1]={ limit={ @@ -9771,7 +9688,7 @@ return { [1]="active_skill_damage_+%_final_vs_burning_enemies" } }, - [418]={ + [412]={ [1]={ [1]={ limit={ @@ -9800,7 +9717,7 @@ return { [1]="active_skill_damage_+%_final_vs_chilled_enemies" } }, - [419]={ + [413]={ [1]={ [1]={ limit={ @@ -9829,7 +9746,7 @@ return { [1]="active_skill_damage_+%_final_vs_fully_broken_armour" } }, - [420]={ + [414]={ [1]={ [1]={ limit={ @@ -9858,7 +9775,7 @@ return { [1]="active_skill_damage_+%_when_cast_on_frostbolt" } }, - [421]={ + [415]={ [1]={ [1]={ limit={ @@ -9887,7 +9804,23 @@ return { [1]="active_skill_electrocutes_as_though_dealt_damage_+%_final" } }, - [422]={ + [416]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attack Damage of this skill is {0}% of Default Attack Damage" + } + }, + stats={ + [1]="active_skill_has_%_standard_scaling_attack_damage" + } + }, + [417]={ [1]={ [1]={ limit={ @@ -9916,7 +9849,7 @@ return { [1]="active_skill_hit_damage_freeze_multiplier_+%_final" } }, - [423]={ + [418]={ [1]={ [1]={ limit={ @@ -9954,7 +9887,7 @@ return { [1]="active_skill_hit_damage_stun_multiplier_+%_final" } }, - [424]={ + [419]={ [1]={ [1]={ limit={ @@ -9983,7 +9916,7 @@ return { [1]="active_skill_if_used_through_frostbolt_damage_+%_final" } }, - [425]={ + [420]={ [1]={ [1]={ limit={ @@ -9992,7 +9925,7 @@ return { [2]="#" } }, - text="{0}% more chance to Ignite enemies" + text="Inflicts {0}% more Flammability Magnitude" }, [2]={ [1]={ @@ -10005,14 +9938,14 @@ return { [2]=-1 } }, - text="{0}% less chance to Ignite enemies" + text="Inflicts {0}% less Flammability Magnitude" } }, stats={ [1]="active_skill_ignite_chance_+%_final" } }, - [426]={ + [421]={ [1]={ [1]={ limit={ @@ -10025,7 +9958,7 @@ return { [2]=0 } }, - text="{0}% more Magnitude of Ignite inflicted" + text="{0}% more Ignite Magnitude" }, [2]={ [1]={ @@ -10042,7 +9975,7 @@ return { [2]=0 } }, - text="{0}% less Magnitude of Ignite inflicted" + text="{0}% less Ignite Magnitude" }, [3]={ limit={ @@ -10055,7 +9988,7 @@ return { [2]=0 } }, - text="{0}% more Magnitude of Ignite inflicted" + text="{0}% more Ignite Magnitude" } }, stats={ @@ -10063,7 +9996,7 @@ return { [2]="quality_display_active_skill_ignite_effect_is_gem" } }, - [427]={ + [422]={ [1]={ [1]={ limit={ @@ -10092,7 +10025,56 @@ return { [1]="active_skill_ignite_duration_+%_final" } }, - [428]={ + [423]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Ignites inflicted by this Skill Spread to other\nenemies that stay within {0} metre for 1 second" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ignites inflicted by this Skill Spread to other\nenemies that stay within {0} metres for 1 second" + } + }, + stats={ + [1]="active_skill_ignite_proliferation_radius" + } + }, + [424]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Knockback Distance" + } + }, + stats={ + [1]="active_skill_knockback_distance_+%_final" + } + }, + [425]={ [1]={ [1]={ limit={ @@ -10121,7 +10103,7 @@ return { [1]="active_skill_lightning_damage_+%_final" } }, - [429]={ + [426]={ [1]={ [1]={ limit={ @@ -10150,7 +10132,7 @@ return { [1]="active_skill_minion_hit_damage_stun_multiplier_+%_final" } }, - [430]={ + [427]={ [1]={ [1]={ limit={ @@ -10166,7 +10148,7 @@ return { [1]="active_skill_never_freeze_shock_ignite" } }, - [431]={ + [428]={ [1]={ [1]={ limit={ @@ -10217,7 +10199,7 @@ return { [2]="quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem" } }, - [432]={ + [429]={ [1]={ [1]={ limit={ @@ -10250,7 +10232,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [433]={ + [430]={ [1]={ [1]={ limit={ @@ -10279,7 +10261,7 @@ return { [1]="active_skill_projectile_damage_+%_final_for_each_remaining_chain" } }, - [434]={ + [431]={ [1]={ [1]={ limit={ @@ -10308,7 +10290,7 @@ return { [1]="active_skill_projectile_damage_+%_final_if_pierced_enemy" } }, - [435]={ + [432]={ [1]={ [1]={ limit={ @@ -10337,7 +10319,7 @@ return { [1]="active_skill_reload_speed_+%_final" } }, - [436]={ + [433]={ [1]={ [1]={ [1]={ @@ -10375,7 +10357,7 @@ return { [2]="quality_display_active_skill_required_number_of_combo_stacks_is_gem" } }, - [437]={ + [434]={ [1]={ [1]={ limit={ @@ -10404,7 +10386,7 @@ return { [1]="active_skill_shock_as_though_damage_+%_final" } }, - [438]={ + [435]={ [1]={ [1]={ limit={ @@ -10429,7 +10411,7 @@ return { [1]="active_skill_shock_chance_+%_final" } }, - [439]={ + [436]={ [1]={ [1]={ limit={ @@ -10438,7 +10420,7 @@ return { [2]="#" } }, - text="{0:+d}% more Shock duration" + text="{0}% more Shock duration" }, [2]={ [1]={ @@ -10451,14 +10433,14 @@ return { [2]=-1 } }, - text="{0:+d}% less Shock duration" + text="{0}% less Shock duration" } }, stats={ [1]="active_skill_shock_duration_+%_final" } }, - [440]={ + [437]={ [1]={ [1]={ limit={ @@ -10467,7 +10449,7 @@ return { [2]="#" } }, - text="{0}% increased Stun Threshold while using Skill" + text="{0}% more Magnitude of Shock inflicted" }, [2]={ [1]={ @@ -10476,10 +10458,39 @@ return { }, limit={ [1]={ - [1]=-1, + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Shock inflicted" + } + }, + stats={ + [1]="active_skill_shock_effect_+%_final" + } + }, + [438]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, + text="{0}% increased Stun Threshold while using Skill" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, text="{0}% reduced Stun Threshold while using Skill" } }, @@ -10487,7 +10498,7 @@ return { [1]="active_skill_stun_threshold_+%_while_performing_action" } }, - [441]={ + [439]={ [1]={ [1]={ limit={ @@ -10512,7 +10523,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [442]={ + [440]={ [1]={ [1]={ limit={ @@ -10528,7 +10539,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [443]={ + [441]={ [1]={ [1]={ limit={ @@ -10544,7 +10555,7 @@ return { [1]="additional_block_chance_against_projectiles_%_per_steel_charge" } }, - [444]={ + [442]={ [1]={ [1]={ limit={ @@ -10560,14 +10571,14 @@ return { [1]="additional_chain_chance_%" } }, - [445]={ + [443]={ [1]={ }, stats={ [1]="additional_combo_gain_chance_%" } }, - [446]={ + [444]={ [1]={ [1]={ [1]={ @@ -10587,7 +10598,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [447]={ + [445]={ [1]={ [1]={ [1]={ @@ -10607,7 +10618,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [448]={ + [446]={ [1]={ [1]={ limit={ @@ -10654,7 +10665,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [449]={ + [447]={ [1]={ [1]={ limit={ @@ -10670,7 +10681,7 @@ return { [1]="additive_thorns_damage_modifiers_apply_to_attack_damage" } }, - [450]={ + [448]={ [1]={ [1]={ limit={ @@ -10691,7 +10702,7 @@ return { [2]="alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage" } }, - [451]={ + [449]={ [1]={ [1]={ limit={ @@ -10700,14 +10711,14 @@ return { [2]="#" } }, - text="All Damage from Hits Contributes to Ignite Chance and Magnitude, Freeze Buildup, and Shock Chance" + text="All Damage from Hits Contributes to Flammability and Ignite Magnitudes, Freeze Buildup, and Shock Chance" } }, stats={ [1]="all_damage_can_ignite_freeze_shock" } }, - [452]={ + [450]={ [1]={ [1]={ limit={ @@ -10723,7 +10734,7 @@ return { [1]="all_damage_can_sap" } }, - [453]={ + [451]={ [1]={ [1]={ limit={ @@ -10739,7 +10750,7 @@ return { [1]="already_split_if_no_steel_shards" } }, - [454]={ + [452]={ [1]={ [1]={ limit={ @@ -10755,7 +10766,7 @@ return { [1]="always_chain_from_shocked_enemies" } }, - [455]={ + [453]={ [1]={ [1]={ limit={ @@ -10771,7 +10782,7 @@ return { [1]="always_crit" } }, - [456]={ + [454]={ [1]={ [1]={ limit={ @@ -10787,7 +10798,7 @@ return { [1]="always_ignite" } }, - [457]={ + [455]={ [1]={ [1]={ limit={ @@ -10803,7 +10814,7 @@ return { [1]="always_pierce" } }, - [458]={ + [456]={ [1]={ [1]={ limit={ @@ -10819,7 +10830,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [459]={ + [457]={ [1]={ [1]={ limit={ @@ -10848,7 +10859,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [460]={ + [458]={ [1]={ [1]={ limit={ @@ -10877,14 +10888,14 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [461]={ + [459]={ [1]={ }, stats={ [1]="ancestral_aid_required_count_of_recent_blocks" } }, - [462]={ + [460]={ [1]={ [1]={ limit={ @@ -10913,7 +10924,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [463]={ + [461]={ [1]={ [1]={ limit={ @@ -10929,7 +10940,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [464]={ + [462]={ [1]={ [1]={ [1]={ @@ -10949,7 +10960,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [465]={ + [463]={ [1]={ [1]={ limit={ @@ -10965,7 +10976,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_chill" } }, - [466]={ + [464]={ [1]={ [1]={ limit={ @@ -10981,7 +10992,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_freeze" } }, - [467]={ + [465]={ [1]={ [1]={ limit={ @@ -10997,23 +11008,52 @@ return { [1]="apply_linked_curses_with_dark_ritual" } }, - [468]={ + [466]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Hit damage when Chaining" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="{0}% less Hit damage when Chaining" + } + }, + stats={ + [1]="arc_chain_hit_damage_+%_final" + } + }, + [467]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Overpowered applies -{0}% chance to Block Attack and Spell Damage" + text="Chains {0} additional times when Lightning Infused" } }, stats={ - [1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%" + [1]="arc_chains_gained_from_infusion_consumption" } }, - [469]={ + [468]={ [1]={ [1]={ limit={ @@ -11022,7 +11062,7 @@ return { [2]="#" } }, - text="{0}% more Hit damage when Chaining" + text="{0}% more damage when Lightning Infused" }, [2]={ [1]={ @@ -11035,25 +11075,17 @@ return { [2]=-1 } }, - text="{0}% less Hit damage when Chaining" + text="{0}% less damage when Lightning Infused" } }, stats={ - [1]="arc_chain_hit_damage_+%_final" + [1]="arc_damage_+%_final_from_infusion_consumption" } }, - [470]={ + [469]={ [1]={ [1]={ limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } }, text="{0:+d}% more Damage for each remaining Chain" }, @@ -11062,10 +11094,6 @@ return { [1]={ [1]=1, [2]="#" - }, - [2]={ - [1]="#", - [2]="#" } }, text="{0}% more Damage for each remaining Chain" @@ -11079,21 +11107,16 @@ return { [1]={ [1]="#", [2]=-1 - }, - [2]={ - [1]="#", - [2]="#" } }, text="{0}% less Damage for each remaining Chain" } }, stats={ - [1]="arc_damage_+%_final_for_each_remaining_chain", - [2]="quality_display_arc_is_gem" + [1]="arc_damage_+%_final_for_each_remaining_chain" } }, - [471]={ + [470]={ [1]={ [1]={ limit={ @@ -11122,7 +11145,7 @@ return { [1]="arc_damage_+%_final_per_chain" } }, - [472]={ + [471]={ [1]={ [1]={ limit={ @@ -11138,7 +11161,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [473]={ + [472]={ [1]={ [1]={ limit={ @@ -11154,7 +11177,7 @@ return { [1]="arcane_cloak_damage_absorbed_%" } }, - [474]={ + [473]={ [1]={ [1]={ [1]={ @@ -11174,7 +11197,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [475]={ + [474]={ [1]={ [1]={ limit={ @@ -11190,7 +11213,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage" } }, - [476]={ + [475]={ [1]={ [1]={ [1]={ @@ -11210,7 +11233,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [477]={ + [476]={ [1]={ [1]={ limit={ @@ -11239,7 +11262,7 @@ return { [1]="arctic_armour_fire_damage_taken_+%_final" } }, - [478]={ + [477]={ [1]={ [1]={ limit={ @@ -11268,7 +11291,7 @@ return { [1]="arctic_armour_physical_damage_taken_+%_final" } }, - [479]={ + [478]={ [1]={ [1]={ limit={ @@ -11293,7 +11316,7 @@ return { [1]="arctic_breath_maximum_number_of_skulls_allowed" } }, - [480]={ + [479]={ [1]={ [1]={ limit={ @@ -11322,7 +11345,7 @@ return { [1]="area_of_effect_+%_per_frost_fury_stage" } }, - [481]={ + [480]={ [1]={ [1]={ limit={ @@ -11351,7 +11374,7 @@ return { [1]="area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge" } }, - [482]={ + [481]={ [1]={ [1]={ limit={ @@ -11380,7 +11403,7 @@ return { [1]="area_of_effect_+%_when_cast_on_frostbolt" } }, - [483]={ + [482]={ [1]={ [1]={ limit={ @@ -11409,21 +11432,21 @@ return { [1]="area_of_effect_+%_while_not_dual_wielding" } }, - [484]={ + [483]={ [1]={ }, stats={ [1]="armour_break_for_%_of_poison_damage_over_poison_duration" } }, - [485]={ + [484]={ [1]={ }, stats={ [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [486]={ + [485]={ [1]={ [1]={ limit={ @@ -11452,7 +11475,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [487]={ + [486]={ [1]={ [1]={ limit={ @@ -11481,7 +11504,7 @@ return { [1]="attack_damage_+%" } }, - [488]={ + [487]={ [1]={ [1]={ limit={ @@ -11510,14 +11533,14 @@ return { [1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour" } }, - [489]={ + [488]={ [1]={ }, stats={ [1]="attack_duration_ms" } }, - [490]={ + [489]={ [1]={ [1]={ limit={ @@ -11533,7 +11556,7 @@ return { [1]="attack_speed_cannot_be_modified" } }, - [491]={ + [490]={ [1]={ [1]={ limit={ @@ -11549,7 +11572,7 @@ return { [1]="attack_speed_modifiers_apply_to_over_time_cost" } }, - [492]={ + [491]={ [1]={ [1]={ limit={ @@ -11574,7 +11597,7 @@ return { [1]="attack_trigger_on_hitting_bleeding_enemy_%" } }, - [493]={ + [492]={ [1]={ [1]={ limit={ @@ -11599,7 +11622,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [494]={ + [493]={ [1]={ [1]={ limit={ @@ -11624,7 +11647,7 @@ return { [1]="avoid_damage_%" } }, - [495]={ + [494]={ [1]={ [1]={ limit={ @@ -11649,7 +11672,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [496]={ + [495]={ [1]={ [1]={ limit={ @@ -11665,7 +11688,7 @@ return { [1]="ball_lightning_superball_%_chance" } }, - [497]={ + [496]={ [1]={ [1]={ limit={ @@ -11694,7 +11717,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [498]={ + [497]={ [1]={ [1]={ limit={ @@ -11710,6 +11733,57 @@ return { [1]="barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit" } }, + [498]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Deals up to an additional {0:+d}% more Damage, based on the distance travelled" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Deals up to {0}% more Damage, based on the distance travelled" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Deals up to {0}% less Damage, based on the distance travelled" + } + }, + stats={ + [1]="base_additional_damage_from_distance_+%_final", + [2]="quality_display_spear_puncture_is_gem" + } + }, [499]={ [1]={ [1]={ @@ -11727,6 +11801,31 @@ return { } }, [500]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Dazes on Hit" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Daze on Hit" + } + }, + stats={ + [1]="base_chance_to_daze_%" + } + }, + [501]={ [1]={ [1]={ limit={ @@ -11742,7 +11841,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [501]={ + [502]={ [1]={ [1]={ limit={ @@ -11758,7 +11857,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [502]={ + [503]={ [1]={ [1]={ limit={ @@ -11783,7 +11882,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [503]={ + [504]={ [1]={ [1]={ limit={ @@ -11799,7 +11898,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [504]={ + [505]={ [1]={ [1]={ [1]={ @@ -11832,7 +11931,7 @@ return { [1]="base_combo_stacks_decay_delay_ms" } }, - [505]={ + [506]={ [1]={ [1]={ limit={ @@ -11848,7 +11947,7 @@ return { [1]="base_consume_enemy_freeze_on_hit" } }, - [506]={ + [507]={ [1]={ [1]={ limit={ @@ -11864,7 +11963,7 @@ return { [1]="base_consume_enemy_shock_on_hit" } }, - [507]={ + [508]={ [1]={ [1]={ [1]={ @@ -11884,7 +11983,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [508]={ + [509]={ [1]={ [1]={ limit={ @@ -11913,7 +12012,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [509]={ + [510]={ [1]={ [1]={ limit={ @@ -11922,7 +12021,7 @@ return { [2]="#" } }, - text="{0}% increased Damage taken" + text="Curse zone erupts after {0}% increased delay" }, [2]={ [1]={ @@ -11935,42 +12034,25 @@ return { [2]=-1 } }, - text="{0}% reduced Damage taken" + text="Curse zone erupts after {0}% reduced delay" } }, stats={ - [1]="base_damage_taken_+%" + [1]="base_curse_delay_+%" } }, - [510]={ + [511]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } - }, - text="Deals up to an additional {0:+d}% more Damage, based on the distance travelled" - }, - [2]={ limit={ [1]={ [1]=1, [2]="#" - }, - [2]={ - [1]="#", - [2]="#" } }, - text="Deals up to {0}% more Damage, based on the distance travelled" + text="{0}% increased Damage taken" }, - [3]={ + [2]={ [1]={ k="negate", v=1 @@ -11979,21 +12061,16 @@ return { [1]={ [1]="#", [2]=-1 - }, - [2]={ - [1]="#", - [2]="#" } }, - text="Deals up to {0}% less Damage, based on the distance travelled" + text="{0}% reduced Damage taken" } }, stats={ - [1]="base_dash_additional_damage_from_distance_+%_final", - [2]="quality_display_spear_puncture_is_gem" + [1]="base_damage_taken_+%" } }, - [511]={ + [512]={ [1]={ [1]={ limit={ @@ -12009,7 +12086,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [512]={ + [513]={ [1]={ [1]={ limit={ @@ -12038,7 +12115,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [513]={ + [514]={ [1]={ [1]={ limit={ @@ -12063,40 +12140,36 @@ return { [1]="base_extra_damage_rolls" } }, - [514]={ + [515]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp", - v=1 - }, limit={ [1]={ - [1]=1000, - [2]=1000 + [1]=1, + [2]="#" } }, - text="Can target each enemy only once every {0} second" + text="{0}% increased Ignite Magnitude" }, [2]={ [1]={ - k="milliseconds_to_seconds_2dp", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Can target each enemy only once every {0} seconds" + text="{0}% reduced Ignite Magnitude" } }, stats={ - [1]="galvanic_field_retargeting_delay_ms" + [1]="base_ignite_effect_+%" } }, - [515]={ + [516]={ [1]={ [1]={ limit={ @@ -12121,7 +12194,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [516]={ + [517]={ [1]={ [1]={ limit={ @@ -12146,7 +12219,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [517]={ + [518]={ [1]={ [1]={ limit={ @@ -12155,7 +12228,7 @@ return { [2]=99 } }, - text="{0}% chance to inflict Lightning Exposure on Hit" + text="{0}% chance to inflict Exposure on Hit" }, [2]={ limit={ @@ -12164,14 +12237,14 @@ return { [2]="#" } }, - text="Inflict Lightning Exposure on Hit" + text="Inflict Exposure on Hit" } }, stats={ [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [518]={ + [519]={ [1]={ [1]={ limit={ @@ -12187,7 +12260,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [519]={ + [520]={ [1]={ [1]={ limit={ @@ -12247,7 +12320,7 @@ return { [2]="quality_display_base_number_of_crossbow_bolts_is_gem" } }, - [520]={ + [521]={ [1]={ [1]={ limit={ @@ -12272,9 +12345,19 @@ return { [1]="base_number_of_frozen_locus_allowed" } }, - [521]={ + [522]={ [1]={ [1]={ + limit={ + }, + text="Fires {0:+d} Projectiles" + }, + [2]={ + limit={ + }, + text="Fires {0:+d} Arrows" + }, + [3]={ limit={ [1]={ [1]=2, @@ -12291,7 +12374,7 @@ return { }, text="Fires {0} Projectiles" }, - [2]={ + [4]={ limit={ [1]={ [1]=2, @@ -12315,7 +12398,32 @@ return { [3]="quality_display_base_number_of_projectiles_is_gem" } }, - [522]={ + [523]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fires {0} Projectile" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Fires {0} Projectiles in a spiral" + } + }, + stats={ + [1]="base_number_of_projectiles_in_spiral_nova" + } + }, + [524]={ [1]={ [1]={ limit={ @@ -12375,7 +12483,7 @@ return { [2]="quality_display_shield_wall_is_gem" } }, - [523]={ + [525]={ [1]={ [1]={ limit={ @@ -12400,7 +12508,7 @@ return { [1]="number_of_support_ghosts_allowed" } }, - [524]={ + [526]={ [1]={ [1]={ limit={ @@ -12425,7 +12533,7 @@ return { [1]="base_number_of_tempest_bells_allowed" } }, - [525]={ + [527]={ [1]={ [1]={ limit={ @@ -12441,7 +12549,7 @@ return { [1]="base_poison_effect_+100%_final_chance" } }, - [526]={ + [528]={ [1]={ [1]={ limit={ @@ -12457,7 +12565,7 @@ return { [1]="base_projectiles_cannot_chain" } }, - [527]={ + [529]={ [1]={ [1]={ [1]={ @@ -12490,7 +12598,7 @@ return { [1]="base_remnant_duration_ms" } }, - [528]={ + [530]={ [1]={ [1]={ limit={ @@ -12515,7 +12623,28 @@ return { [1]="base_smite_number_of_targets" } }, - [529]={ + [531]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Deals {0} to {1} base Cold Damage per Frenzy Charge removed" + } + }, + stats={ + [1]="spell_minimum_base_cold_damage_per_removable_frenzy_charge", + [2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge" + } + }, + [532]={ [1]={ [1]={ limit={ @@ -12531,7 +12660,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [530]={ + [533]={ [1]={ [1]={ limit={ @@ -12560,7 +12689,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [531]={ + [534]={ [1]={ [1]={ [1]={ @@ -12580,7 +12709,7 @@ return { [1]="blackhole_hinder_%" } }, - [532]={ + [535]={ [1]={ [1]={ [1]={ @@ -12613,7 +12742,7 @@ return { [1]="blackhole_tick_rate_ms" } }, - [533]={ + [536]={ [1]={ [1]={ limit={ @@ -12629,7 +12758,7 @@ return { [1]="blade_blast_detonated_blades_not_removed_%_chance" } }, - [534]={ + [537]={ [1]={ [1]={ limit={ @@ -12658,7 +12787,7 @@ return { [1]="blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated" } }, - [535]={ + [538]={ [1]={ [1]={ limit={ @@ -12687,7 +12816,7 @@ return { [1]="blade_flurry_elemental_damage_+%_while_channeling" } }, - [536]={ + [539]={ [1]={ [1]={ limit={ @@ -12716,7 +12845,7 @@ return { [1]="blade_flurry_final_flurry_area_of_effect_+%" } }, - [537]={ + [540]={ [1]={ [1]={ limit={ @@ -12732,7 +12861,7 @@ return { [1]="blade_vortex_additional_blade_chance_%" } }, - [538]={ + [541]={ [1]={ [1]={ limit={ @@ -12761,7 +12890,7 @@ return { [1]="blade_vortex_critical_strike_chance_+%_per_blade" } }, - [539]={ + [542]={ [1]={ [1]={ limit={ @@ -12790,7 +12919,7 @@ return { [1]="blade_vortex_damage_+%_with_5_or_fewer_blades" } }, - [540]={ + [543]={ [1]={ [1]={ [1]={ @@ -12819,7 +12948,7 @@ return { [1]="blade_vortex_hit_rate_ms" } }, - [541]={ + [544]={ [1]={ [1]={ limit={ @@ -12848,7 +12977,7 @@ return { [1]="bladefall_critical_strike_chance_+%_per_stage" } }, - [542]={ + [545]={ [1]={ [1]={ limit={ @@ -12877,7 +13006,7 @@ return { [1]="bladefall_volley_gap_distance_+%" } }, - [543]={ + [546]={ [1]={ [1]={ limit={ @@ -12902,7 +13031,7 @@ return { [1]="bladefall_volleys_needed_per_vestige_blade" } }, - [544]={ + [547]={ [1]={ [1]={ limit={ @@ -12918,7 +13047,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [545]={ + [548]={ [1]={ [1]={ limit={ @@ -12947,7 +13076,7 @@ return { [1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm" } }, - [546]={ + [549]={ [1]={ [1]={ limit={ @@ -12963,7 +13092,7 @@ return { [1]="bladestorm_create_alternate_stance_storm_%_chance" } }, - [547]={ + [550]={ [1]={ [1]={ limit={ @@ -12979,7 +13108,7 @@ return { [1]="bladestorm_maximum_number_of_storms_allowed" } }, - [548]={ + [551]={ [1]={ [1]={ limit={ @@ -13008,7 +13137,7 @@ return { [1]="bladestorm_movement_speed_+%_while_in_sandstorm" } }, - [549]={ + [552]={ [1]={ [1]={ limit={ @@ -13037,7 +13166,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [550]={ + [553]={ [1]={ [1]={ limit={ @@ -13066,7 +13195,7 @@ return { [1]="bladestorm_storm_damage_+%_final" } }, - [551]={ + [554]={ [1]={ [1]={ limit={ @@ -13095,7 +13224,7 @@ return { [1]="blast_rain_area_of_effect_+%" } }, - [552]={ + [555]={ [1]={ [1]={ limit={ @@ -13124,7 +13253,7 @@ return { [1]="blast_rain_damage_+%_vs_distant_enemies" } }, - [553]={ + [556]={ [1]={ [1]={ limit={ @@ -13201,7 +13330,7 @@ return { [3]="cannot_cause_bleeding" } }, - [554]={ + [557]={ [1]={ [1]={ limit={ @@ -13230,7 +13359,7 @@ return { [1]="blind_effect_+%" } }, - [555]={ + [558]={ [1]={ [1]={ [1]={ @@ -13250,7 +13379,7 @@ return { [1]="blink_travel_distance" } }, - [556]={ + [559]={ [1]={ [1]={ [1]={ @@ -13270,7 +13399,7 @@ return { [1]="blood_boil_%_health_as_corrupted_blood_damage_per_minute" } }, - [557]={ + [560]={ [1]={ [1]={ [1]={ @@ -13303,7 +13432,7 @@ return { [1]="blood_boil_application_interval_ms" } }, - [558]={ + [561]={ [1]={ [1]={ limit={ @@ -13332,7 +13461,7 @@ return { [1]="blood_boil_explosion_area_+%_final_per_boil" } }, - [559]={ + [562]={ [1]={ [1]={ limit={ @@ -13361,7 +13490,7 @@ return { [1]="blood_ground_leaving_area_lasts_for_ms" } }, - [560]={ + [563]={ [1]={ [1]={ limit={ @@ -13390,7 +13519,7 @@ return { [1]="blood_magic_skill_life_cost_+%_final" } }, - [561]={ + [564]={ [1]={ [1]={ limit={ @@ -13437,7 +13566,7 @@ return { [2]="reap_life_%_granted_on_death_with_debuff" } }, - [562]={ + [565]={ [1]={ [1]={ limit={ @@ -13462,7 +13591,7 @@ return { [1]="blood_sand_triggered_blind_on_attack_chance_%" } }, - [563]={ + [566]={ [1]={ [1]={ limit={ @@ -13487,7 +13616,7 @@ return { [1]="blood_sand_triggered_change_bleed_on_attack_chance_%" } }, - [564]={ + [567]={ [1]={ [1]={ limit={ @@ -13516,7 +13645,7 @@ return { [1]="blood_scythe_cost_+%_final_per_charge" } }, - [565]={ + [568]={ [1]={ [1]={ limit={ @@ -13545,7 +13674,7 @@ return { [1]="blood_scythe_damage_+%_final_per_charge" } }, - [566]={ + [569]={ [1]={ [1]={ limit={ @@ -13561,12 +13690,25 @@ return { [1]="blood_surge_refresh_on_total_life_spent" } }, - [567]={ + [570]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, + [2]=1 + }, + [2]={ + [1]="!", + [2]=0 + } + }, + text="Fires tendrils at up to {0} Target" + }, + [2]={ + limit={ + [1]={ + [1]=2, [2]="#" }, [2]={ @@ -13576,10 +13718,36 @@ return { }, text="Fires tendrils at up to {0} Targets" }, - [2]={ + [3]={ limit={ [1]={ - [1]="#", + [1]=0, + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Fires tendrils at up to {0:+d} Targets" + }, + [4]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Fires tendrils at up to {0:+d} Target" + }, + [5]={ + limit={ + [1]={ + [1]=2, [2]="#" }, [2]={ @@ -13595,7 +13763,7 @@ return { [2]="quality_display_exsanguinate_beam_targets_is_gem" } }, - [568]={ + [571]={ [1]={ [1]={ limit={ @@ -13624,7 +13792,7 @@ return { [1]="bodyswap_damage_+%_when_not_consuming_corpse" } }, - [569]={ + [572]={ [1]={ [1]={ limit={ @@ -13645,7 +13813,7 @@ return { [2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%" } }, - [570]={ + [573]={ [1]={ [1]={ limit={ @@ -13666,7 +13834,7 @@ return { [2]="bone_golem_grants_minion_maximum_added_physical_damage" } }, - [571]={ + [574]={ [1]={ [1]={ limit={ @@ -13684,8 +13852,8 @@ return { }, limit={ [1]={ - [1]=-1, - [2]="#" + [1]="#", + [2]=-1 } }, text="Shielded Minions take {0}% less Damage for 1 second after Shield is lost" @@ -13695,7 +13863,7 @@ return { [1]="bone_offering_damage_taken_+%_final_after_shield_loss" } }, - [572]={ + [575]={ [1]={ [1]={ limit={ @@ -13711,7 +13879,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [573]={ + [576]={ [1]={ [1]={ limit={ @@ -13727,7 +13895,7 @@ return { [1]="brand_detonate_faster_activation_%_per_second" } }, - [574]={ + [577]={ [1]={ [1]={ limit={ @@ -13743,7 +13911,7 @@ return { [1]="brand_detonate_faster_duration_%_per_second" } }, - [575]={ + [578]={ [1]={ [1]={ limit={ @@ -13759,7 +13927,7 @@ return { [1]="brand_recall_spend_%_of_recalled_brands_cost" } }, - [576]={ + [579]={ [1]={ [1]={ limit={ @@ -13775,7 +13943,7 @@ return { [1]="branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [577]={ + [580]={ [1]={ [1]={ limit={ @@ -13804,7 +13972,7 @@ return { [1]="breach_flame_spawn_rate_ms" } }, - [578]={ + [581]={ [1]={ [1]={ limit={ @@ -13829,7 +13997,7 @@ return { [1]="buff_grants_smite_additional_lightning_targets" } }, - [579]={ + [582]={ [1]={ [1]={ [1]={ @@ -13854,7 +14022,7 @@ return { [2]="call_of_steel_reload_time" } }, - [580]={ + [583]={ [1]={ [1]={ limit={ @@ -13879,7 +14047,7 @@ return { [1]="caltrops_on_dodge_X_triggers" } }, - [581]={ + [584]={ [1]={ [1]={ limit={ @@ -13895,7 +14063,7 @@ return { [1]="cannot_be_empowered_by_warcries" } }, - [582]={ + [585]={ [1]={ [1]={ limit={ @@ -13911,14 +14079,30 @@ return { [1]="cannot_break_armour" } }, - [583]={ + [586]={ [1]={ }, stats={ [1]="cannot_cause_stun_but_allow_stun_buildup" } }, - [584]={ + [587]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Consume Charges" + } + }, + stats={ + [1]="cannot_consume_power_frenzy_endurance_charges" + } + }, + [588]={ [1]={ [1]={ limit={ @@ -13927,14 +14111,14 @@ return { [2]="#" } }, - text="Cannot inflict Daze buildup\nCannot Daze" + text="Cannot inflict Daze" } }, stats={ [1]="cannot_daze" } }, - [585]={ + [589]={ [1]={ [1]={ limit={ @@ -13950,7 +14134,7 @@ return { [1]="cannot_gain_power_charges_during_skill" } }, - [586]={ + [590]={ [1]={ [1]={ limit={ @@ -13966,7 +14150,7 @@ return { [1]="cannot_inflict_blind" } }, - [587]={ + [591]={ [1]={ [1]={ limit={ @@ -13982,7 +14166,7 @@ return { [1]="cannot_knockback" } }, - [588]={ + [592]={ [1]={ [1]={ limit={ @@ -13998,7 +14182,7 @@ return { [1]="cannot_pin" } }, - [589]={ + [593]={ [1]={ [1]={ [1]={ @@ -14018,7 +14202,7 @@ return { [1]="cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit" } }, - [590]={ + [594]={ [1]={ [1]={ [1]={ @@ -14038,7 +14222,7 @@ return { [1]="cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit" } }, - [591]={ + [595]={ [1]={ [1]={ [1]={ @@ -14058,7 +14242,7 @@ return { [1]="cast_on_block_gain_X_centienergy_on_block" } }, - [592]={ + [596]={ [1]={ [1]={ [1]={ @@ -14078,7 +14262,7 @@ return { [1]="cast_on_crit_gain_X_centienergy_per_monster_power_on_crit" } }, - [593]={ + [597]={ [1]={ [1]={ limit={ @@ -14103,7 +14287,7 @@ return { [1]="cast_on_crit_%" } }, - [594]={ + [598]={ [1]={ [1]={ limit={ @@ -14119,7 +14303,7 @@ return { [1]="cast_on_damage_taken_gain_X_centienergy_when_hit" } }, - [595]={ + [599]={ [1]={ [1]={ limit={ @@ -14135,7 +14319,7 @@ return { [1]="cast_on_death_gain_X_centienergy_on_death" } }, - [596]={ + [600]={ [1]={ [1]={ [1]={ @@ -14155,7 +14339,7 @@ return { [1]="cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling" } }, - [597]={ + [601]={ [1]={ [1]={ limit={ @@ -14180,7 +14364,7 @@ return { [1]="cast_on_flask_use_%" } }, - [598]={ + [602]={ [1]={ [1]={ [1]={ @@ -14200,7 +14384,7 @@ return { [1]="cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze" } }, - [599]={ + [603]={ [1]={ [1]={ [1]={ @@ -14220,7 +14404,7 @@ return { [1]="cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite" } }, - [600]={ + [604]={ [1]={ [1]={ limit={ @@ -14236,7 +14420,7 @@ return { [1]="cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill" } }, - [601]={ + [605]={ [1]={ [1]={ limit={ @@ -14252,7 +14436,7 @@ return { [1]="cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun" } }, - [602]={ + [606]={ [1]={ [1]={ limit={ @@ -14268,7 +14452,7 @@ return { [1]="cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun" } }, - [603]={ + [607]={ [1]={ [1]={ limit={ @@ -14284,7 +14468,7 @@ return { [1]="cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%" } }, - [604]={ + [608]={ [1]={ [1]={ [1]={ @@ -14304,7 +14488,7 @@ return { [1]="cast_on_shock_gain_X_centienergy_per_monster_power_on_shock" } }, - [605]={ + [609]={ [1]={ [1]={ [1]={ @@ -14324,7 +14508,7 @@ return { [1]="cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm" } }, - [606]={ + [610]={ [1]={ [1]={ limit={ @@ -14340,7 +14524,7 @@ return { [1]="cast_speed_modifiers_apply_to_over_time_cost" } }, - [607]={ + [611]={ [1]={ [1]={ limit={ @@ -14356,7 +14540,7 @@ return { [1]="cast_when_stunned_gain_X_centienergy_when_stunned" } }, - [608]={ + [612]={ [1]={ [1]={ limit={ @@ -14372,7 +14556,7 @@ return { [1]="cast_while_channelling_gain_X_energy_per_second_while_channelling" } }, - [609]={ + [613]={ [1]={ [1]={ limit={ @@ -14388,7 +14572,7 @@ return { [1]="cast_while_channelling_lose_X_energy_per_second_while_not_channelling" } }, - [610]={ + [614]={ [1]={ [1]={ limit={ @@ -14417,7 +14601,7 @@ return { [1]="chain_hook_range_+%" } }, - [611]={ + [615]={ [1]={ [1]={ limit={ @@ -14433,7 +14617,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [612]={ + [616]={ [1]={ [1]={ limit={ @@ -14449,7 +14633,7 @@ return { [1]="chain_strike_gain_x_rage_if_attack_hits" } }, - [613]={ + [617]={ [1]={ [1]={ limit={ @@ -14478,7 +14662,32 @@ return { [1]="chaining_range_+%" } }, - [614]={ + [618]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to spawn an additional Infusion Remnant" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Spawns an additional Infusion Remnant" + } + }, + stats={ + [1]="chance_%_to_spawn_another_infusion_remnant" + } + }, + [619]={ [1]={ [1]={ limit={ @@ -14494,7 +14703,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [615]={ + [620]={ [1]={ [1]={ limit={ @@ -14510,7 +14719,7 @@ return { [1]="chance_for_melee_skeletons_to_summon_as_archer_skeletons_%" } }, - [616]={ + [621]={ [1]={ [1]={ limit={ @@ -14535,7 +14744,7 @@ return { [1]="chance_%_to_double_effect_of_removing_charges" } }, - [617]={ + [622]={ [1]={ [1]={ limit={ @@ -14560,7 +14769,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [618]={ + [623]={ [1]={ [1]={ limit={ @@ -14585,7 +14794,7 @@ return { [1]="chance_to_bleed_on_hit_%_chance_in_blood_stance" } }, - [619]={ + [624]={ [1]={ [1]={ limit={ @@ -14601,7 +14810,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [620]={ + [625]={ [1]={ [1]={ limit={ @@ -14617,7 +14826,7 @@ return { [1]="chance_to_cast_a_stance_change_on_perforate_or_lacerate_%" } }, - [621]={ + [626]={ [1]={ [1]={ limit={ @@ -14633,7 +14842,57 @@ return { [1]="chance_to_cast_on_bear_warcry_%" } }, - [622]={ + [627]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Daze" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Daze" + } + }, + stats={ + [1]="chance_to_daze_+%" + } + }, + [628]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less chance to Daze" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more chance to Daze" + } + }, + stats={ + [1]="chance_to_daze_+%_final" + } + }, + [629]={ [1]={ [1]={ limit={ @@ -14649,7 +14908,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [623]={ + [630]={ [1]={ [1]={ limit={ @@ -14665,7 +14924,7 @@ return { [1]="chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [624]={ + [631]={ [1]={ [1]={ limit={ @@ -14681,7 +14940,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [625]={ + [632]={ [1]={ [1]={ limit={ @@ -14697,7 +14956,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [626]={ + [633]={ [1]={ [1]={ limit={ @@ -14722,14 +14981,14 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [627]={ + [634]={ [1]={ }, stats={ [1]="chance_to_gain_endurance_charge_on_armour_break_%" } }, - [628]={ + [635]={ [1]={ [1]={ limit={ @@ -14874,7 +15133,7 @@ return { [3]="active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [629]={ + [636]={ [1]={ [1]={ limit={ @@ -14899,7 +15158,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [630]={ + [637]={ [1]={ [1]={ limit={ @@ -14915,7 +15174,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [631]={ + [638]={ [1]={ [1]={ limit={ @@ -14931,7 +15190,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [632]={ + [639]={ [1]={ [1]={ limit={ @@ -14956,7 +15215,7 @@ return { [1]="chance_to_inflict_scorch_brittle_sap_%" } }, - [633]={ + [640]={ [1]={ [1]={ limit={ @@ -14972,7 +15231,39 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [634]={ + [641]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to not remove an Infusion but still count as consuming them" + } + }, + stats={ + [1]="chance_to_not_consume_infusion_%" + } + }, + [642]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to not consume Parried Debuff" + } + }, + stats={ + [1]="chance_to_not_consume_parried_%" + } + }, + [643]={ [1]={ [1]={ limit={ @@ -14997,7 +15288,7 @@ return { [1]="chance_to_pierce_ignited_enemy_%" } }, - [635]={ + [644]={ [1]={ [1]={ limit={ @@ -15013,7 +15304,23 @@ return { [1]="chance_to_poison_on_hit_can_apply_multiple_stacks" } }, - [636]={ + [645]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to retain 40% of Glory on use" + } + }, + stats={ + [1]="chance_to_retain_40%_of_glory_on_use_%" + } + }, + [646]={ [1]={ [1]={ limit={ @@ -15042,7 +15349,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [637]={ + [647]={ [1]={ [1]={ limit={ @@ -15067,7 +15374,7 @@ return { [1]="chance_to_scorch_%" } }, - [638]={ + [648]={ [1]={ [1]={ limit={ @@ -15092,7 +15399,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [639]={ + [649]={ [1]={ [1]={ limit={ @@ -15117,14 +15424,14 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [640]={ + [650]={ [1]={ }, stats={ [1]="chance_to_trigger_fiery_death_on_ignited_enemy_death_%" } }, - [641]={ + [651]={ [1]={ [1]={ limit={ @@ -15140,7 +15447,7 @@ return { [1]="chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%" } }, - [642]={ + [652]={ [1]={ [1]={ limit={ @@ -15156,7 +15463,7 @@ return { [1]="chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%" } }, - [643]={ + [653]={ [1]={ [1]={ limit={ @@ -15172,7 +15479,7 @@ return { [1]="chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%" } }, - [644]={ + [654]={ [1]={ [1]={ limit={ @@ -15188,7 +15495,7 @@ return { [1]="chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%" } }, - [645]={ + [655]={ [1]={ [1]={ limit={ @@ -15204,7 +15511,7 @@ return { [1]="chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%" } }, - [646]={ + [656]={ [1]={ [1]={ limit={ @@ -15220,7 +15527,7 @@ return { [1]="chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%" } }, - [647]={ + [657]={ [1]={ [1]={ limit={ @@ -15236,7 +15543,7 @@ return { [1]="chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%" } }, - [648]={ + [658]={ [1]={ [1]={ limit={ @@ -15252,7 +15559,7 @@ return { [1]="chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%" } }, - [649]={ + [659]={ [1]={ [1]={ limit={ @@ -15268,7 +15575,7 @@ return { [1]="chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%" } }, - [650]={ + [660]={ [1]={ [1]={ limit={ @@ -15293,7 +15600,7 @@ return { [1]="chance_to_trigger_on_animate_guardian_kill_%" } }, - [651]={ + [661]={ [1]={ [1]={ limit={ @@ -15318,7 +15625,7 @@ return { [1]="chance_to_trigger_on_animate_weapon_kill_%" } }, - [652]={ + [662]={ [1]={ [1]={ limit={ @@ -15343,7 +15650,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [653]={ + [663]={ [1]={ [1]={ limit={ @@ -15359,7 +15666,7 @@ return { [1]="channelled_slam_area_of_effect_radius_+_per_stage" } }, - [654]={ + [664]={ [1]={ [1]={ limit={ @@ -15375,7 +15682,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [655]={ + [665]={ [1]={ [1]={ limit={ @@ -15391,7 +15698,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [656]={ + [666]={ [1]={ [1]={ limit={ @@ -15420,7 +15727,7 @@ return { [1]="charged_attack_damage_per_stack_+%_final" } }, - [657]={ + [667]={ [1]={ [1]={ limit={ @@ -15436,7 +15743,7 @@ return { [1]="charged_dash_channelling_damage_at_full_stacks_+%_final" } }, - [658]={ + [668]={ [1]={ [1]={ limit={ @@ -15452,7 +15759,7 @@ return { [1]="charged_dash_damage_+%_final_per_stack" } }, - [659]={ + [669]={ [1]={ [1]={ [1]={ @@ -15472,7 +15779,7 @@ return { [1]="charged_dash_skill_inherent_movement_speed_+%_final" } }, - [660]={ + [670]={ [1]={ [1]={ limit={ @@ -15488,7 +15795,7 @@ return { [1]="chilled_ground_base_magnitude_override" } }, - [661]={ + [671]={ [1]={ [1]={ limit={ @@ -15517,14 +15824,14 @@ return { [1]="chilling_area_movement_velocity_+%" } }, - [662]={ + [672]={ [1]={ }, stats={ [1]="chilling_ice_create_chilled_ground_on_freeze_base_duration_ms" } }, - [663]={ + [673]={ [1]={ [1]={ limit={ @@ -15553,7 +15860,7 @@ return { [1]="chronomancer_buff_cooldown_speed_+%" } }, - [664]={ + [674]={ [1]={ [1]={ limit={ @@ -15569,7 +15876,7 @@ return { [1]="circle_of_power_mana_spend_per_upgrade" } }, - [665]={ + [675]={ [1]={ [1]={ limit={ @@ -15598,7 +15905,7 @@ return { [1]="cleave_area_of_effect_+%_final_from_executioner" } }, - [666]={ + [676]={ [1]={ [1]={ limit={ @@ -15627,7 +15934,7 @@ return { [1]="cleave_damage_against_enemies_on_low_life_+%_final_from_executioner" } }, - [667]={ + [677]={ [1]={ [1]={ limit={ @@ -15643,7 +15950,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [668]={ + [678]={ [1]={ [1]={ limit={ @@ -15672,7 +15979,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [669]={ + [679]={ [1]={ [1]={ limit={ @@ -15701,7 +16008,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [670]={ + [680]={ [1]={ [1]={ limit={ @@ -15710,14 +16017,14 @@ return { [2]="#" } }, - text="{0}% chance to Shatter and leave them still Frozen" + text="{0}% chance to Shatter and leave Enemies still Frozen" } }, stats={ [1]="cold_snap_%_chance_to_not_remove_freeze" } }, - [671]={ + [681]={ [1]={ [1]={ limit={ @@ -15746,7 +16053,259 @@ return { [1]="combat_rush_effect_+%" } }, - [672]={ + [682]={ + [1]={ + }, + stats={ + [1]="combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [683]={ + [1]={ + }, + stats={ + [1]="combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [684]={ + [1]={ + }, + stats={ + [1]="combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [685]={ + [1]={ + }, + stats={ + [1]="combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [686]={ + [1]={ + }, + stats={ + [1]="combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [687]={ + [1]={ + }, + stats={ + [1]="combined_chaos_other_hit_damage_stun_multiplier_+%_including_final" + } + }, + [688]={ + [1]={ + }, + stats={ + [1]="combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [689]={ + [1]={ + }, + stats={ + [1]="combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final" + } + }, + [690]={ + [1]={ + }, + stats={ + [1]="combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [691]={ + [1]={ + }, + stats={ + [1]="combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [692]={ + [1]={ + }, + stats={ + [1]="combined_cold_other_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [693]={ + [1]={ + }, + stats={ + [1]="combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [694]={ + [1]={ + }, + stats={ + [1]="combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [695]={ + [1]={ + }, + stats={ + [1]="combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [696]={ + [1]={ + }, + stats={ + [1]="combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [697]={ + [1]={ + }, + stats={ + [1]="combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [698]={ + [1]={ + }, + stats={ + [1]="combined_fire_other_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [699]={ + [1]={ + }, + stats={ + [1]="combined_fire_other_hit_damage_stun_multiplier_+%_including_final" + } + }, + [700]={ + [1]={ + }, + stats={ + [1]="combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [701]={ + [1]={ + }, + stats={ + [1]="combined_fire_spell_hit_damage_stun_multiplier_+%_including_final" + } + }, + [702]={ + [1]={ + }, + stats={ + [1]="combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [703]={ + [1]={ + }, + stats={ + [1]="combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [704]={ + [1]={ + }, + stats={ + [1]="combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [705]={ + [1]={ + }, + stats={ + [1]="combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [706]={ + [1]={ + }, + stats={ + [1]="combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [707]={ + [1]={ + }, + stats={ + [1]="combined_lightning_other_hit_damage_stun_multiplier_+%_including_final" + } + }, + [708]={ + [1]={ + }, + stats={ + [1]="combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [709]={ + [1]={ + }, + stats={ + [1]="combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final" + } + }, + [710]={ + [1]={ + }, + stats={ + [1]="combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [711]={ + [1]={ + }, + stats={ + [1]="combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [712]={ + [1]={ + }, + stats={ + [1]="combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [713]={ + [1]={ + }, + stats={ + [1]="combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final" + } + }, + [714]={ + [1]={ + }, + stats={ + [1]="combined_physical_other_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [715]={ + [1]={ + }, + stats={ + [1]="combined_physical_other_hit_damage_stun_multiplier_+%_including_final" + } + }, + [716]={ + [1]={ + }, + stats={ + [1]="combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final" + } + }, + [717]={ + [1]={ + }, + stats={ + [1]="combined_physical_spell_hit_damage_stun_multiplier_+%_including_final" + } + }, + [718]={ [1]={ [1]={ limit={ @@ -15762,7 +16321,7 @@ return { [1]="command_minion_target_ally_below_x_life" } }, - [673]={ + [719]={ [1]={ [1]={ limit={ @@ -15791,7 +16350,7 @@ return { [1]="companion_all_attributes_+%" } }, - [674]={ + [720]={ [1]={ [1]={ limit={ @@ -15807,7 +16366,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [675]={ + [721]={ [1]={ [1]={ limit={ @@ -15836,7 +16395,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [676]={ + [722]={ [1]={ [1]={ limit={ @@ -15852,7 +16411,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [677]={ + [723]={ [1]={ [1]={ limit={ @@ -15881,7 +16440,50 @@ return { [1]="consecrated_ground_area_+%" } }, - [678]={ + [724]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Consumes {0} Heat if possible to\nGain {1}% of damage as Fire damage" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="Consumes {0} Heat if possible to\ngain {2}% more Ignite Magnitude" + } + }, + stats={ + [1]="consume_X_heat_on_skill_use", + [2]="active_skill_all_damage_%_as_fire_if_heat_is_consumed", + [3]="ignite_effect_+%_final_if_heat_is_consumed" + } + }, + [725]={ [1]={ [1]={ limit={ @@ -15897,7 +16499,7 @@ return { [1]="consume_enemy_daze_to_always_hit" } }, - [679]={ + [726]={ [1]={ [1]={ limit={ @@ -15926,7 +16528,7 @@ return { [1]="consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final" } }, - [680]={ + [727]={ [1]={ [1]={ limit={ @@ -15942,7 +16544,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [681]={ + [728]={ [1]={ [1]={ limit={ @@ -15958,7 +16560,7 @@ return { [1]="consume_enemy_fully_broken_armour_to_guarantee_crit" } }, - [682]={ + [729]={ [1]={ [1]={ limit={ @@ -15987,7 +16589,7 @@ return { [1]="consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [683]={ + [730]={ [1]={ [1]={ limit={ @@ -16003,7 +16605,7 @@ return { [1]="consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge" } }, - [684]={ + [731]={ [1]={ [1]={ limit={ @@ -16019,9 +16621,18 @@ return { [1]="consume_ignite_on_hit" } }, - [685]={ + [732]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Contagion targets {0} additional Enemy when Cast" + }, + [2]={ limit={ [1]={ [1]="#", @@ -16035,7 +16646,7 @@ return { [1]="contagion_number_of_additional_targets" } }, - [686]={ + [733]={ [1]={ [1]={ limit={ @@ -16078,7 +16689,7 @@ return { [3]="quality_display_contagion_is_gem" } }, - [687]={ + [734]={ [1]={ [1]={ limit={ @@ -16107,7 +16718,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [688]={ + [735]={ [1]={ [1]={ limit={ @@ -16136,7 +16747,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [689]={ + [736]={ [1]={ [1]={ limit={ @@ -16152,7 +16763,7 @@ return { [1]="corpse_erruption_maximum_number_of_geyers" } }, - [690]={ + [737]={ [1]={ [1]={ [1]={ @@ -16172,7 +16783,7 @@ return { [1]="corpse_explosion_monster_life_permillage_chaos" } }, - [691]={ + [738]={ [1]={ [1]={ limit={ @@ -16201,7 +16812,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse" } }, - [692]={ + [739]={ [1]={ [1]={ limit={ @@ -16217,7 +16828,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [693]={ + [740]={ [1]={ [1]={ limit={ @@ -16242,7 +16853,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [694]={ + [741]={ [1]={ [1]={ limit={ @@ -16276,7 +16887,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [695]={ + [742]={ [1]={ [1]={ limit={ @@ -16305,7 +16916,7 @@ return { [1]="created_slipstream_action_speed_+%" } }, - [696]={ + [743]={ [1]={ [1]={ limit={ @@ -16321,7 +16932,7 @@ return { [1]="cremation_chance_to_explode_nearby_corpse_when_firing_projectiles" } }, - [697]={ + [744]={ [1]={ [1]={ limit={ @@ -16350,7 +16961,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [698]={ + [745]={ [1]={ [1]={ limit={ @@ -16379,7 +16990,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [699]={ + [746]={ [1]={ [1]={ limit={ @@ -16408,7 +17019,7 @@ return { [1]="critical_hit_poison_effect_+%" } }, - [700]={ + [747]={ [1]={ [1]={ limit={ @@ -16437,7 +17048,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [701]={ + [748]={ [1]={ [1]={ limit={ @@ -16466,7 +17077,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [702]={ + [749]={ [1]={ [1]={ limit={ @@ -16495,14 +17106,14 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [703]={ + [750]={ [1]={ }, stats={ [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [704]={ + [751]={ [1]={ [1]={ limit={ @@ -16518,7 +17129,7 @@ return { [1]="critical_strike_multiplier_+_per_blade" } }, - [705]={ + [752]={ [1]={ [1]={ limit={ @@ -16547,14 +17158,30 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [706]={ + [753]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Always reload when switching to this Ammunition" + } + }, + stats={ + [1]="crossbow_ammo_always_reload" + } + }, + [754]={ [1]={ }, stats={ [1]="crossbow_reload_on_heavy_stun" } }, - [707]={ + [755]={ [1]={ [1]={ limit={ @@ -16583,7 +17210,7 @@ return { [1]="cruelty_effect_+%" } }, - [708]={ + [756]={ [1]={ [1]={ limit={ @@ -16608,7 +17235,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [709]={ + [757]={ [1]={ [1]={ limit={ @@ -16624,14 +17251,14 @@ return { [1]="cull_frozen_enemies_on_hit" } }, - [710]={ + [758]={ [1]={ }, stats={ [1]="curse_apply_as_curse_zone" } }, - [711]={ + [759]={ [1]={ [1]={ [1]={ @@ -16664,7 +17291,7 @@ return { [1]="curse_delay_duration_ms" } }, - [712]={ + [760]={ [1]={ [1]={ [1]={ @@ -16684,7 +17311,7 @@ return { [1]="cyclone_gain_stage_every_x_ms_while_channelling" } }, - [713]={ + [761]={ [1]={ [1]={ limit={ @@ -16700,7 +17327,7 @@ return { [1]="cyclone_max_number_of_stages" } }, - [714]={ + [762]={ [1]={ [1]={ limit={ @@ -16716,7 +17343,7 @@ return { [1]="cyclone_melee_weapon_range_+_per_stage" } }, - [715]={ + [763]={ [1]={ [1]={ [1]={ @@ -16736,7 +17363,36 @@ return { [1]="cyclone_stage_decay_time_ms" } }, - [716]={ + [764]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spells cast by Apparition deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spells cast by Apparition deal {0}% less Damage" + } + }, + stats={ + [1]="damage_+%_final_from_lich_apparition_cloned_skill" + } + }, + [765]={ [1]={ [1]={ limit={ @@ -16765,7 +17421,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [717]={ + [766]={ [1]={ [1]={ limit={ @@ -16794,7 +17450,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [718]={ + [767]={ [1]={ [1]={ limit={ @@ -16810,7 +17466,7 @@ return { [1]="damage_+%_per_chain" } }, - [719]={ + [768]={ [1]={ [1]={ limit={ @@ -16839,7 +17495,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [720]={ + [769]={ [1]={ [1]={ limit={ @@ -16868,7 +17524,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [721]={ + [770]={ [1]={ [1]={ limit={ @@ -16897,7 +17553,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [722]={ + [771]={ [1]={ [1]={ limit={ @@ -16926,7 +17582,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [723]={ + [772]={ [1]={ [1]={ limit={ @@ -16942,7 +17598,7 @@ return { [1]="vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead" } }, - [724]={ + [773]={ [1]={ [1]={ limit={ @@ -16971,7 +17627,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [725]={ + [774]={ [1]={ [1]={ limit={ @@ -16987,7 +17643,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [726]={ + [775]={ [1]={ [1]={ limit={ @@ -17003,7 +17659,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [727]={ + [776]={ [1]={ [1]={ limit={ @@ -17019,7 +17675,7 @@ return { [1]="dark_effigy_additional_projectile_chance_per_debuff_on_target" } }, - [728]={ + [777]={ [1]={ [1]={ limit={ @@ -17035,7 +17691,7 @@ return { [1]="dark_ritual_damage_+%_final_per_curse_applied" } }, - [729]={ + [778]={ [1]={ [1]={ limit={ @@ -17051,7 +17707,7 @@ return { [1]="dark_ritual_skill_effect_duration_+%_per_curse_applied" } }, - [730]={ + [779]={ [1]={ [1]={ [1]={ @@ -17071,7 +17727,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [731]={ + [780]={ [1]={ [1]={ limit={ @@ -17087,7 +17743,7 @@ return { [1]="deal_no_elemental_damage" } }, - [732]={ + [781]={ [1]={ [1]={ limit={ @@ -17116,7 +17772,7 @@ return { [1]="death_wish_attack_speed_+%" } }, - [733]={ + [782]={ [1]={ [1]={ limit={ @@ -17145,7 +17801,7 @@ return { [1]="death_wish_cast_speed_+%" } }, - [734]={ + [783]={ [1]={ [1]={ limit={ @@ -17174,7 +17830,7 @@ return { [1]="death_wish_hit_damage_+%_final_per_stage" } }, - [735]={ + [784]={ [1]={ [1]={ limit={ @@ -17190,7 +17846,7 @@ return { [1]="death_wish_max_stages" } }, - [736]={ + [785]={ [1]={ [1]={ limit={ @@ -17219,7 +17875,7 @@ return { [1]="death_wish_movement_speed_+%" } }, - [737]={ + [786]={ [1]={ [1]={ limit={ @@ -17244,7 +17900,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [738]={ + [787]={ [1]={ [1]={ limit={ @@ -17273,7 +17929,7 @@ return { [1]="debuff_time_passed_+%" } }, - [739]={ + [788]={ [1]={ [1]={ limit={ @@ -17289,7 +17945,7 @@ return { [1]="desecrate_chance_for_additional_corpse_%" } }, - [740]={ + [789]={ [1]={ [1]={ limit={ @@ -17305,7 +17961,7 @@ return { [1]="desecrate_chance_for_special_corpse_%" } }, - [741]={ + [790]={ [1]={ [1]={ limit={ @@ -17321,7 +17977,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [742]={ + [791]={ [1]={ [1]={ limit={ @@ -17337,7 +17993,7 @@ return { [1]="destroy_corpses_on_kill_%_chance" } }, - [743]={ + [792]={ [1]={ [1]={ limit={ @@ -17366,7 +18022,7 @@ return { [1]="detonate_dead_damage_+%_if_corpse_ignited" } }, - [744]={ + [793]={ [1]={ [1]={ [1]={ @@ -17386,7 +18042,7 @@ return { [1]="detonate_mines_recover_permyriad_of_life_per_mine_detonated" } }, - [745]={ + [794]={ [1]={ [1]={ limit={ @@ -17420,7 +18076,7 @@ return { [2]="detonating_arrow_max_number_of_stages" } }, - [746]={ + [795]={ [1]={ [1]={ limit={ @@ -17436,7 +18092,7 @@ return { [1]="disable_mine_detonation_cascade" } }, - [747]={ + [796]={ [1]={ [1]={ limit={ @@ -17461,7 +18117,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [748]={ + [797]={ [1]={ [1]={ limit={ @@ -17490,7 +18146,23 @@ return { [1]="discharge_damage_+%_if_3_charge_types_removed" } }, - [749]={ + [798]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for an additional Shockwave" + } + }, + stats={ + [1]="disengage_%_chance_for_additional_shockwave" + } + }, + [799]={ [1]={ [1]={ limit={ @@ -17506,7 +18178,7 @@ return { [1]="disintegrate_base_radius_+_per_intensify" } }, - [750]={ + [800]={ [1]={ [1]={ limit={ @@ -17535,7 +18207,7 @@ return { [1]="disintegrate_damage_+%_final_per_intensity" } }, - [751]={ + [801]={ [1]={ [1]={ limit={ @@ -17564,7 +18236,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [752]={ + [802]={ [1]={ [1]={ limit={ @@ -17580,7 +18252,7 @@ return { [1]="display_additional_projectile_per_2_mines_in_detonation_sequence" } }, - [753]={ + [803]={ [1]={ [1]={ limit={ @@ -17596,7 +18268,7 @@ return { [1]="display_additional_projectile_per_4_mines_in_detonation_sequence" } }, - [754]={ + [804]={ [1]={ [1]={ limit={ @@ -17612,7 +18284,7 @@ return { [1]="display_additional_projectile_per_mine_in_detonation_sequence" } }, - [755]={ + [805]={ [1]={ [1]={ limit={ @@ -17628,7 +18300,7 @@ return { [1]="display_bear_warcry" } }, - [756]={ + [806]={ [1]={ [1]={ [1]={ @@ -17648,7 +18320,7 @@ return { [1]="display_blink_base_cooldown" } }, - [757]={ + [807]={ [1]={ [1]={ [1]={ @@ -17668,7 +18340,7 @@ return { [1]="display_brand_deonate_tag_conversion" } }, - [758]={ + [808]={ [1]={ }, stats={ @@ -17676,7 +18348,7 @@ return { [2]="display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance" } }, - [759]={ + [809]={ [1]={ }, stats={ @@ -17684,7 +18356,7 @@ return { [2]="display_estimate_maximum_roll_main_hand_chill_magnitude" } }, - [760]={ + [810]={ [1]={ }, stats={ @@ -17692,7 +18364,7 @@ return { [2]="display_estimate_maximum_roll_off_hand_chill_magnitude" } }, - [761]={ + [811]={ [1]={ }, stats={ @@ -17700,7 +18372,7 @@ return { [2]="display_estimate_maximum_roll_secondary_chill_magnitude" } }, - [762]={ + [812]={ [1]={ }, stats={ @@ -17708,7 +18380,71 @@ return { [2]="display_estimate_maximum_roll_spell_chill_magnitude" } }, - [763]={ + [813]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_main_hand_ignite_chance_%", + [2]="display_estimate_maximum_total_main_hand_ignite_chance_%" + } + }, + [814]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_main_hand_shock_chance_%", + [2]="display_estimate_maximum_total_main_hand_shock_chance_%" + } + }, + [815]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_off_hand_ignite_chance_%", + [2]="display_estimate_maximum_total_off_hand_ignite_chance_%" + } + }, + [816]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_off_hand_shock_chance_%", + [2]="display_estimate_maximum_total_off_hand_shock_chance_%" + } + }, + [817]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_spell_ignite_chance_%", + [2]="display_estimate_maximum_total_spell_ignite_chance_%" + } + }, + [818]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_spell_shock_chance_%", + [2]="display_estimate_maximum_total_spell_shock_chance_%" + } + }, + [819]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_spell_ignite_chance_%", + [2]="display_estimate_maximum_total_spell_ignite_chance_%" + } + }, + [820]={ + [1]={ + }, + stats={ + [1]="display_estimate_minimum_total_spell_shock_chance_%", + [2]="display_estimate_maximum_total_spell_shock_chance_%" + } + }, + [821]={ [1]={ [1]={ [1]={ @@ -17754,7 +18490,7 @@ return { [2]="display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance" } }, - [764]={ + [822]={ [1]={ [1]={ limit={ @@ -17770,7 +18506,7 @@ return { [1]="display_fake_attack_hit_bleed" } }, - [765]={ + [823]={ [1]={ [1]={ limit={ @@ -17786,7 +18522,7 @@ return { [1]="display_fake_attack_hit_chill" } }, - [766]={ + [824]={ [1]={ [1]={ limit={ @@ -17802,7 +18538,7 @@ return { [1]="display_fake_attack_hit_ignite" } }, - [767]={ + [825]={ [1]={ [1]={ limit={ @@ -17818,7 +18554,7 @@ return { [1]="display_fake_attack_hit_poison" } }, - [768]={ + [826]={ [1]={ [1]={ limit={ @@ -17847,7 +18583,7 @@ return { [1]="display_linked_curse_effect_+%" } }, - [769]={ + [827]={ [1]={ [1]={ limit={ @@ -17876,7 +18612,7 @@ return { [1]="display_linked_curse_effect_+%_final" } }, - [770]={ + [828]={ [1]={ }, stats={ @@ -17884,7 +18620,7 @@ return { [2]="display_main_hand_hit_chance_estimate_range_max" } }, - [771]={ + [829]={ [1]={ }, stats={ @@ -17892,7 +18628,7 @@ return { [2]="display_main_hand_hit_chance_estimate_range_mid" } }, - [772]={ + [830]={ [1]={ }, stats={ @@ -17900,14 +18636,14 @@ return { [2]="display_main_hand_hit_chance_estimate_range_min" } }, - [773]={ + [831]={ [1]={ }, stats={ [1]="display_max_ailment_bearer_charges" } }, - [774]={ + [832]={ [1]={ [1]={ limit={ @@ -17923,7 +18659,7 @@ return { [1]="display_max_blight_stacks" } }, - [775]={ + [833]={ [1]={ [1]={ limit={ @@ -17939,7 +18675,7 @@ return { [1]="display_max_fire_beam_stacks" } }, - [776]={ + [834]={ [1]={ [1]={ limit={ @@ -17964,7 +18700,7 @@ return { [1]="display_max_upgraded_sentinels_of_absolution" } }, - [777]={ + [835]={ [1]={ [1]={ limit={ @@ -17989,7 +18725,7 @@ return { [1]="display_max_upgraded_sentinels_of_dominance" } }, - [778]={ + [836]={ [1]={ }, stats={ @@ -17997,7 +18733,7 @@ return { [2]="display_maximum_roll_main_hand_bleeding_damage_per_minute" } }, - [779]={ + [837]={ [1]={ }, stats={ @@ -18005,7 +18741,7 @@ return { [2]="display_maximum_roll_main_hand_ignite_damage_per_minute" } }, - [780]={ + [838]={ [1]={ }, stats={ @@ -18013,7 +18749,7 @@ return { [2]="display_maximum_roll_main_hand_poison_damage_per_minute" } }, - [781]={ + [839]={ [1]={ }, stats={ @@ -18021,7 +18757,7 @@ return { [2]="display_maximum_roll_off_hand_bleeding_damage_per_minute" } }, - [782]={ + [840]={ [1]={ }, stats={ @@ -18029,7 +18765,7 @@ return { [2]="display_maximum_roll_off_hand_ignite_damage_per_minute" } }, - [783]={ + [841]={ [1]={ }, stats={ @@ -18037,7 +18773,7 @@ return { [2]="display_maximum_roll_off_hand_poison_damage_per_minute" } }, - [784]={ + [842]={ [1]={ }, stats={ @@ -18045,7 +18781,7 @@ return { [2]="display_maximum_roll_secondary_bleeding_damage_per_minute" } }, - [785]={ + [843]={ [1]={ }, stats={ @@ -18053,7 +18789,7 @@ return { [2]="display_maximum_roll_secondary_ignite_damage_per_minute" } }, - [786]={ + [844]={ [1]={ }, stats={ @@ -18061,7 +18797,7 @@ return { [2]="display_maximum_roll_secondary_poison_damage_per_minute" } }, - [787]={ + [845]={ [1]={ }, stats={ @@ -18069,7 +18805,7 @@ return { [2]="display_maximum_roll_spell_bleeding_damage_per_minute" } }, - [788]={ + [846]={ [1]={ }, stats={ @@ -18077,7 +18813,7 @@ return { [2]="display_maximum_roll_spell_ignite_damage_per_minute" } }, - [789]={ + [847]={ [1]={ }, stats={ @@ -18085,7 +18821,7 @@ return { [2]="display_maximum_roll_spell_poison_damage_per_minute" } }, - [790]={ + [848]={ [1]={ [1]={ limit={ @@ -18114,7 +18850,7 @@ return { [1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine" } }, - [791]={ + [849]={ [1]={ [1]={ limit={ @@ -18130,7 +18866,7 @@ return { [1]="display_mirage_warriors_no_spirit_strikes" } }, - [792]={ + [850]={ [1]={ [1]={ limit={ @@ -18146,7 +18882,7 @@ return { [1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius" } }, - [793]={ + [851]={ [1]={ }, stats={ @@ -18154,7 +18890,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_max" } }, - [794]={ + [852]={ [1]={ }, stats={ @@ -18162,7 +18898,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_mid" } }, - [795]={ + [853]={ [1]={ }, stats={ @@ -18170,7 +18906,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_min" } }, - [796]={ + [854]={ [1]={ [1]={ limit={ @@ -18186,7 +18922,7 @@ return { [1]="queens_demand_effect" } }, - [797]={ + [855]={ [1]={ [1]={ limit={ @@ -18202,7 +18938,7 @@ return { [1]="display_removes_and_grants_elusive_when_used" } }, - [798]={ + [856]={ [1]={ [1]={ limit={ @@ -18218,14 +18954,14 @@ return { [1]="display_sigil_of_power_stage_gain_delay" } }, - [799]={ + [857]={ [1]={ }, stats={ [1]="display_skill_cooldown_time_ms" } }, - [800]={ + [858]={ [1]={ [1]={ limit={ @@ -18241,14 +18977,14 @@ return { [1]="display_skill_fixed_duration_buff" } }, - [801]={ + [859]={ [1]={ }, stats={ [1]="display_skill_increased_item_rarity_+%" } }, - [802]={ + [860]={ [1]={ [1]={ [1]={ @@ -18268,35 +19004,49 @@ return { [1]="display_storm_burst_jump_time_ms" } }, - [803]={ + [861]={ [1]={ }, stats={ [1]="display_total_bleeding_duration" } }, - [804]={ + [862]={ [1]={ }, stats={ [1]="display_total_chill_duration" } }, - [805]={ + [863]={ [1]={ }, stats={ [1]="display_total_ignite_duration" } }, - [806]={ + [864]={ [1]={ }, stats={ [1]="display_total_poison_duration" } }, - [807]={ + [865]={ + [1]={ + }, + stats={ + [1]="display_total_shock_duration" + } + }, + [866]={ + [1]={ + }, + stats={ + [1]="display_total_shock_magnitude" + } + }, + [867]={ [1]={ [1]={ limit={ @@ -18312,7 +19062,7 @@ return { [1]="display_touch_of_fire" } }, - [808]={ + [868]={ [1]={ [1]={ limit={ @@ -18328,7 +19078,7 @@ return { [1]="display_trigger_link" } }, - [809]={ + [869]={ [1]={ [1]={ limit={ @@ -18344,7 +19094,7 @@ return { [1]="display_triggerbots_do_their_job" } }, - [810]={ + [870]={ [1]={ [1]={ limit={ @@ -18360,7 +19110,7 @@ return { [1]="display_unhinge_grant_insane" } }, - [811]={ + [871]={ [1]={ [1]={ limit={ @@ -18376,7 +19126,7 @@ return { [1]="display_vaal_breach_no_drops_xp" } }, - [812]={ + [872]={ [1]={ [1]={ limit={ @@ -18414,7 +19164,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [813]={ + [873]={ [1]={ [1]={ limit={ @@ -18443,7 +19193,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [814]={ + [874]={ [1]={ [1]={ limit={ @@ -18472,7 +19222,7 @@ return { [1]="divine_tempest_damage_+%_final_while_channelling" } }, - [815]={ + [875]={ [1]={ [1]={ limit={ @@ -18488,7 +19238,7 @@ return { [1]="divine_tempest_hit_damage_+%_final_per_stage" } }, - [816]={ + [876]={ [1]={ [1]={ limit={ @@ -18504,7 +19254,7 @@ return { [1]="divine_tempest_stage_on_hitting_normal_magic_%_chance" } }, - [817]={ + [877]={ [1]={ [1]={ limit={ @@ -18520,7 +19270,7 @@ return { [1]="divine_tempest_stage_on_hitting_rare_unique" } }, - [818]={ + [878]={ [1]={ [1]={ limit={ @@ -18545,7 +19295,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [819]={ + [879]={ [1]={ [1]={ limit={ @@ -18561,7 +19311,7 @@ return { [1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life" } }, - [820]={ + [880]={ [1]={ [1]={ limit={ @@ -18577,7 +19327,7 @@ return { [1]="dual_wield_inherent_attack_speed_+%_final" } }, - [821]={ + [881]={ [1]={ [1]={ limit={ @@ -18598,7 +19348,7 @@ return { [2]="earthquake_aftershock_maximum_added_physical_damage" } }, - [822]={ + [882]={ [1]={ [1]={ limit={ @@ -18627,7 +19377,7 @@ return { [1]="earthquake_initial_slam_area_of_effect_+%" } }, - [823]={ + [883]={ [1]={ [1]={ limit={ @@ -18656,23 +19406,7 @@ return { [1]="earthshatter_damage_+%_final_per_spike" } }, - [824]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Hits against targets with attached Rods gain {0}% of Damage as extra Lightning Damage" - } - }, - stats={ - [1]="electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target" - } - }, - [825]={ + [884]={ [1]={ [1]={ limit={ @@ -18688,7 +19422,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [826]={ + [885]={ [1]={ [1]={ limit={ @@ -18717,7 +19451,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [827]={ + [886]={ [1]={ [1]={ limit={ @@ -18733,7 +19467,7 @@ return { [1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment" } }, - [828]={ + [887]={ [1]={ [1]={ limit={ @@ -18749,7 +19483,7 @@ return { [1]="elemental_hit_damage_+10%_final_per_enemy_elemental_ailment" } }, - [829]={ + [888]={ [1]={ [1]={ [1]={ @@ -18769,7 +19503,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze" } }, - [830]={ + [889]={ [1]={ [1]={ [1]={ @@ -18789,7 +19523,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite" } }, - [831]={ + [890]={ [1]={ [1]={ [1]={ @@ -18809,7 +19543,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_shock" } }, - [832]={ + [891]={ [1]={ [1]={ limit={ @@ -18825,7 +19559,7 @@ return { [1]="elemental_penetration_%_from_resonance" } }, - [833]={ + [892]={ [1]={ [1]={ limit={ @@ -18854,7 +19588,7 @@ return { [1]="elusive_effect_+%" } }, - [834]={ + [893]={ [1]={ [1]={ limit={ @@ -18867,7 +19601,7 @@ return { [2]=0 } }, - text="Embers deal {0:+d}% more Damage for each previous Ember fired in sequence" + text="{0:+d}% more Damage for each previous Ember fired in sequence" }, [2]={ limit={ @@ -18880,7 +19614,7 @@ return { [2]="#" } }, - text="Embers deal {0}% more Damage for each previous Ember fired in sequence" + text="{0}% more Damage for each previous Ember fired in sequence" }, [3]={ [1]={ @@ -18897,7 +19631,7 @@ return { [2]="#" } }, - text="Embers deal {0}% less Damage for each previous Ember fired in sequence" + text="{0}% less Damage for each previous Ember fired in sequence" } }, stats={ @@ -18905,7 +19639,7 @@ return { [2]="quality_display_ember_fusilade_is_gem" } }, - [835]={ + [894]={ [1]={ [1]={ [1]={ @@ -18925,7 +19659,7 @@ return { [1]="embrace_madness_amount_of_cooldown_to_gain_ms" } }, - [836]={ + [895]={ [1]={ [1]={ [1]={ @@ -18950,7 +19684,7 @@ return { [2]="empowered_barrage_maximum_cooldown_ms" } }, - [837]={ + [896]={ [1]={ [1]={ limit={ @@ -18979,7 +19713,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [838]={ + [897]={ [1]={ [1]={ limit={ @@ -19004,7 +19738,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [839]={ + [898]={ [1]={ [1]={ limit={ @@ -19020,7 +19754,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [840]={ + [899]={ [1]={ [1]={ limit={ @@ -19036,7 +19770,7 @@ return { [1]="enemies_covered_in_frost_as_unfrozen" } }, - [841]={ + [900]={ [1]={ [1]={ limit={ @@ -19052,7 +19786,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [842]={ + [901]={ [1]={ [1]={ limit={ @@ -19085,7 +19819,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [843]={ + [902]={ [1]={ [1]={ limit={ @@ -19114,7 +19848,7 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [844]={ + [903]={ [1]={ [1]={ limit={ @@ -19130,7 +19864,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [845]={ + [904]={ [1]={ [1]={ limit={ @@ -19159,7 +19893,7 @@ return { [1]="energy_generated_+%" } }, - [846]={ + [905]={ [1]={ [1]={ limit={ @@ -19188,7 +19922,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [847]={ + [906]={ [1]={ [1]={ limit={ @@ -19217,7 +19951,7 @@ return { [1]="ensnaring_arrow_enemy_spell_damage_taken_+%" } }, - [848]={ + [907]={ [1]={ [1]={ limit={ @@ -19242,7 +19976,7 @@ return { [1]="ethereal_knives_projectiles_needed_per_vestige_blade" } }, - [849]={ + [908]={ [1]={ [1]={ limit={ @@ -19271,7 +20005,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [850]={ + [909]={ [1]={ [1]={ limit={ @@ -19287,7 +20021,7 @@ return { [1]="expanding_fire_cone_angle_+%_per_stage" } }, - [851]={ + [910]={ [1]={ [1]={ limit={ @@ -19303,7 +20037,7 @@ return { [1]="expanding_fire_cone_final_wave_always_ignite" } }, - [852]={ + [911]={ [1]={ [1]={ limit={ @@ -19319,7 +20053,7 @@ return { [1]="expanding_fire_cone_maximum_number_of_stages" } }, - [853]={ + [912]={ [1]={ [1]={ limit={ @@ -19340,7 +20074,7 @@ return { [2]="expanding_fire_cone_radius_limit" } }, - [854]={ + [913]={ [1]={ [1]={ limit={ @@ -19391,7 +20125,7 @@ return { [2]="quality_display_incinerate_is_gem_hit" } }, - [855]={ + [914]={ [1]={ [1]={ limit={ @@ -19407,7 +20141,14 @@ return { [1]="explosive_arrow_stack_limit" } }, - [856]={ + [915]={ + [1]={ + }, + stats={ + [1]="exposure_effect_+%" + } + }, + [916]={ [1]={ [1]={ limit={ @@ -19423,7 +20164,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [857]={ + [917]={ [1]={ [1]={ limit={ @@ -19448,7 +20189,7 @@ return { [1]="eye_of_winter_number_of_brittle_stacks_to_apply" } }, - [858]={ + [918]={ [1]={ [1]={ limit={ @@ -19477,7 +20218,7 @@ return { [1]="eye_of_winter_spiral_angle_+%" } }, - [859]={ + [919]={ [1]={ [1]={ limit={ @@ -19506,7 +20247,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [860]={ + [920]={ [1]={ [1]={ limit={ @@ -19522,9 +20263,34 @@ return { [1]="faster_bleed_%" } }, - [861]={ + [921]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1000, + [2]=1000 + } + }, + text="Recover {0} Life and {1} Mana over {2} second per Corpse Consumed" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=3 + }, limit={ [1]={ [1]="#", @@ -19539,16 +20305,16 @@ return { [2]="#" } }, - text="Gain {0} Life per corpse Consumed\nGain {1} Mana per corpse Consumed\nGain {2} Energy Shield per corpse Consumed" + text="Recover {0} Life and {1} Mana over {2} seconds per Corpse Consumed" } }, stats={ - [1]="feast_of_flesh_gain_X_life_per_corpse_consumed", - [2]="feast_of_flesh_gain_X_mana_per_corpse_consumed", - [3]="feast_of_flesh_gain_X_energy_shield_per_corpse_consumed" + [1]="base_life_recovery_per_minute", + [2]="base_mana_recovery_per_minute", + [3]="feast_of_flesh_regeneration_duration" } }, - [862]={ + [922]={ [1]={ [1]={ [1]={ @@ -19568,7 +20334,7 @@ return { [1]="fire_beam_additional_stack_damage_+%_final" } }, - [863]={ + [923]={ [1]={ [1]={ limit={ @@ -19584,7 +20350,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_maximum" } }, - [864]={ + [924]={ [1]={ [1]={ limit={ @@ -19600,7 +20366,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [865]={ + [925]={ [1]={ [1]={ limit={ @@ -19629,7 +20395,7 @@ return { [1]="fire_beam_length_+%" } }, - [866]={ + [926]={ [1]={ [1]={ limit={ @@ -19645,7 +20411,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [867]={ + [927]={ [1]={ [1]={ limit={ @@ -19661,7 +20427,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [868]={ + [928]={ [1]={ [1]={ limit={ @@ -19677,7 +20443,7 @@ return { [1]="fires_1_projectile_if_no_steel_ammo" } }, - [869]={ + [929]={ [1]={ [1]={ limit={ @@ -19693,7 +20459,7 @@ return { [1]="firestorm_and_bladefall_chance_to_replay_when_finished_%" } }, - [870]={ + [930]={ [1]={ [1]={ limit={ @@ -19722,7 +20488,7 @@ return { [1]="firestorm_final_impact_damage_+%_final" } }, - [871]={ + [931]={ [1]={ [1]={ limit={ @@ -19751,7 +20517,7 @@ return { [1]="firestorm_initial_impact_area_of_effect_+%_final" } }, - [872]={ + [932]={ [1]={ [1]={ limit={ @@ -19780,7 +20546,7 @@ return { [1]="firestorm_initial_impact_damage_+%_final" } }, - [873]={ + [933]={ [1]={ [1]={ limit={ @@ -19796,7 +20562,7 @@ return { [1]="firewall_applies_%_fire_exposure" } }, - [874]={ + [934]={ [1]={ [1]={ limit={ @@ -19812,7 +20578,7 @@ return { [1]="fixed_skill_effect_duration" } }, - [875]={ + [935]={ [1]={ [1]={ limit={ @@ -19841,7 +20607,7 @@ return { [1]="flame_dash_burning_damage_+%_final" } }, - [876]={ + [936]={ [1]={ [1]={ [1]={ @@ -19861,7 +20627,7 @@ return { [1]="flame_surge_burning_ground_creation_cooldown_ms" } }, - [877]={ + [937]={ [1]={ [1]={ limit={ @@ -19877,7 +20643,7 @@ return { [1]="flame_surge_ignite_damage_as_burning_ground_damage_%" } }, - [878]={ + [938]={ [1]={ [1]={ limit={ @@ -19899,14 +20665,14 @@ return { [2]=-1 } }, - text="{0}% more Magnitude of Ignite inflicted by Projectiles which have passed through the Wall" + text="{0}% less Magnitude of Ignite inflicted by Projectiles which have passed through the Wall" } }, stats={ [1]="flame_wall_projectiles_ignite_effect_+%_final" } }, - [879]={ + [939]={ [1]={ [1]={ limit={ @@ -19935,7 +20701,7 @@ return { [1]="flameblast_area_+%_final_per_stage" } }, - [880]={ + [940]={ [1]={ [1]={ limit={ @@ -19964,7 +20730,7 @@ return { [1]="flameblast_hit_damage_+%_final_per_10_life_reserved" } }, - [881]={ + [941]={ [1]={ [1]={ [1]={ @@ -19984,23 +20750,7 @@ return { [1]="flameblast_hundred_times_radius_+_per_1%_life_reserved" } }, - [882]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Ignite for each Stage" - } - }, - stats={ - [1]="flameblast_ignite_chance_+%_per_stage" - } - }, - [883]={ + [942]={ [1]={ [1]={ limit={ @@ -20016,7 +20766,7 @@ return { [1]="flameblast_maximum_stages" } }, - [884]={ + [943]={ [1]={ [1]={ limit={ @@ -20032,7 +20782,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [885]={ + [944]={ [1]={ [1]={ limit={ @@ -20048,7 +20798,7 @@ return { [1]="flamethrower_tower_trap_display_cast_speed_affects_rotation" } }, - [886]={ + [945]={ [1]={ [1]={ limit={ @@ -20064,7 +20814,7 @@ return { [1]="flamethrower_tower_trap_number_of_flamethrowers" } }, - [887]={ + [946]={ [1]={ [1]={ limit={ @@ -20093,7 +20843,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [888]={ + [947]={ [1]={ [1]={ limit={ @@ -20126,7 +20876,7 @@ return { [1]="flask_charges_used_+%" } }, - [889]={ + [948]={ [1]={ [1]={ limit={ @@ -20151,7 +20901,7 @@ return { [1]="flask_throw_base_charges_used" } }, - [890]={ + [949]={ [1]={ [1]={ limit={ @@ -20180,7 +20930,7 @@ return { [1]="flask_throw_bleed_effect_+%_final" } }, - [891]={ + [950]={ [1]={ [1]={ [1]={ @@ -20222,7 +20972,7 @@ return { [1]="flask_throw_cold_exposure_ms" } }, - [892]={ + [951]={ [1]={ [1]={ limit={ @@ -20238,7 +20988,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [893]={ + [952]={ [1]={ [1]={ [1]={ @@ -20280,7 +21030,7 @@ return { [1]="flask_throw_fire_exposure_ms" } }, - [894]={ + [953]={ [1]={ [1]={ [1]={ @@ -20322,7 +21072,7 @@ return { [1]="flask_throw_lightning_exposure_ms" } }, - [895]={ + [954]={ [1]={ [1]={ limit={ @@ -20338,7 +21088,7 @@ return { [1]="flask_throw_added_chaos_damage_%_of_flask_life_to_recover" } }, - [896]={ + [955]={ [1]={ [1]={ limit={ @@ -20359,7 +21109,7 @@ return { [2]="flask_throw_maximum_cold_damage_if_used_sapphire_flask" } }, - [897]={ + [956]={ [1]={ [1]={ limit={ @@ -20380,7 +21130,7 @@ return { [2]="flask_throw_maximum_lightning_damage_if_used_topaz_flask" } }, - [898]={ + [957]={ [1]={ [1]={ limit={ @@ -20409,7 +21159,7 @@ return { [1]="flask_throw_poison_effect_+%_final" } }, - [899]={ + [958]={ [1]={ [1]={ limit={ @@ -20438,7 +21188,7 @@ return { [1]="flask_throw_ruby_flask_ignite_effect_+%" } }, - [900]={ + [959]={ [1]={ [1]={ limit={ @@ -20467,7 +21217,7 @@ return { [1]="flicker_strike_buff_movement_speed_+%" } }, - [901]={ + [960]={ [1]={ [1]={ limit={ @@ -20483,7 +21233,7 @@ return { [1]="flicker_strike_teleport_range_+%" } }, - [902]={ + [961]={ [1]={ [1]={ limit={ @@ -20499,7 +21249,7 @@ return { [1]="fortify_on_hit" } }, - [903]={ + [962]={ [1]={ [1]={ limit={ @@ -20515,7 +21265,7 @@ return { [1]="fortify_on_hit_close_range" } }, - [904]={ + [963]={ [1]={ [1]={ limit={ @@ -20531,7 +21281,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [905]={ + [964]={ [1]={ [1]={ limit={ @@ -20560,7 +21310,7 @@ return { [1]="freeze_duration_ms_+" } }, - [906]={ + [965]={ [1]={ [1]={ [1]={ @@ -20580,7 +21330,7 @@ return { [1]="virtual_freezing_enemy_chills_enemies_in_radius" } }, - [907]={ + [966]={ [1]={ [1]={ limit={ @@ -20609,7 +21359,7 @@ return { [1]="freezing_pulse_damage_+%_final_at_long_range" } }, - [908]={ + [967]={ [1]={ [1]={ limit={ @@ -20638,7 +21388,7 @@ return { [1]="frenzy_skill_attack_damage_+%_final_per_frenzy_charge" } }, - [909]={ + [968]={ [1]={ [1]={ limit={ @@ -20667,7 +21417,7 @@ return { [1]="frenzy_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [910]={ + [969]={ [1]={ [1]={ limit={ @@ -20683,7 +21433,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [911]={ + [970]={ [1]={ [1]={ limit={ @@ -20708,7 +21458,7 @@ return { [1]="frost_bolt_nova_number_of_frost_bolts_to_detonate" } }, - [912]={ + [971]={ [1]={ [1]={ [1]={ @@ -20728,7 +21478,7 @@ return { [1]="frost_fury_added_duration_per_stage_ms" } }, - [913]={ + [972]={ [1]={ [1]={ [1]={ @@ -20748,7 +21498,7 @@ return { [1]="frost_fury_base_fire_interval_ms" } }, - [914]={ + [973]={ [1]={ [1]={ limit={ @@ -20764,7 +21514,7 @@ return { [1]="frost_fury_duration_+%_per_stage" } }, - [915]={ + [974]={ [1]={ [1]={ limit={ @@ -20780,7 +21530,7 @@ return { [1]="frost_fury_fire_speed_+%_final_while_channelling" } }, - [916]={ + [975]={ [1]={ [1]={ limit={ @@ -20796,7 +21546,7 @@ return { [1]="frost_fury_fire_speed_+%_per_stage" } }, - [917]={ + [976]={ [1]={ [1]={ limit={ @@ -20812,7 +21562,7 @@ return { [1]="frost_fury_max_number_of_stages" } }, - [918]={ + [977]={ [1]={ [1]={ limit={ @@ -20828,7 +21578,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_in_bubble" } }, - [919]={ + [978]={ [1]={ [1]={ limit={ @@ -20844,7 +21594,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_outside_bubble" } }, - [920]={ + [979]={ [1]={ [1]={ [1]={ @@ -20864,7 +21614,7 @@ return { [1]="frost_globe_additional_spell_base_critical_strike_chance_per_stage" } }, - [921]={ + [980]={ [1]={ [1]={ limit={ @@ -20880,7 +21630,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [922]={ + [981]={ [1]={ [1]={ [1]={ @@ -20900,7 +21650,7 @@ return { [1]="frost_globe_life_regeneration_rate_per_minute_%" } }, - [923]={ + [982]={ [1]={ [1]={ limit={ @@ -20916,7 +21666,7 @@ return { [1]="frost_globe_max_stages" } }, - [924]={ + [983]={ [1]={ [1]={ [1]={ @@ -20936,14 +21686,14 @@ return { [1]="frost_globe_stage_gain_interval_ms" } }, - [925]={ + [984]={ [1]={ }, stats={ [1]="frost_wall_total_maximum_life" } }, - [926]={ + [985]={ [1]={ [1]={ limit={ @@ -20972,7 +21722,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [927]={ + [986]={ [1]={ [1]={ limit={ @@ -21001,7 +21751,7 @@ return { [1]="frostbolt_projectile_speed_+%_final" } }, - [928]={ + [987]={ [1]={ [1]={ limit={ @@ -21017,7 +21767,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [929]={ + [988]={ [1]={ [1]={ limit={ @@ -21033,7 +21783,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun" } }, - [930]={ + [989]={ [1]={ [1]={ [1]={ @@ -21050,10 +21800,10 @@ return { } }, stats={ - [1]="fully_broken_armour_duration_ms_+" + [1]="fully_broken_armour_and_sundered_armour_duration_ms_+" } }, - [931]={ + [990]={ [1]={ [1]={ [1]={ @@ -21073,7 +21823,7 @@ return { [1]="fully_broken_armour_duration_ms_removed_on_hit" } }, - [932]={ + [991]={ [1]={ [1]={ limit={ @@ -21089,23 +21839,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [933]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0} Rage on Hit, once per Skill use" - } - }, - stats={ - [1]="gain_X_rage_on_hit_once_per_skill_use" - } - }, - [934]={ + [992]={ [1]={ [1]={ limit={ @@ -21121,7 +21855,7 @@ return { [1]="gain_X_volatility_on_empowered_skill_use" } }, - [935]={ + [993]={ [1]={ [1]={ limit={ @@ -21146,7 +21880,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [936]={ + [994]={ [1]={ [1]={ [1]={ @@ -21166,7 +21900,7 @@ return { [1]="gain_fortify_on_melee_hit_ms" } }, - [937]={ + [995]={ [1]={ [1]={ limit={ @@ -21182,7 +21916,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [938]={ + [996]={ [1]={ [1]={ limit={ @@ -21198,7 +21932,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [939]={ + [997]={ [1]={ [1]={ limit={ @@ -21223,7 +21957,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [940]={ + [998]={ [1]={ [1]={ limit={ @@ -21239,14 +21973,14 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [941]={ + [999]={ [1]={ }, stats={ [1]="gain_x_rage_on_hit" } }, - [942]={ + [1000]={ [1]={ [1]={ limit={ @@ -21262,7 +21996,7 @@ return { [1]="gain_rage_on_hit_%_chance" } }, - [943]={ + [1001]={ [1]={ [1]={ limit={ @@ -21278,7 +22012,7 @@ return { [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [944]={ + [1002]={ [1]={ [1]={ limit={ @@ -21303,34 +22037,30 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [945]={ - [1]={ - }, - stats={ - [1]="gain_x_rage_on_melee_hit" - } - }, - [946]={ + [1003]={ [1]={ [1]={ - [1]={ - k="per_minute_to_per_second_2dp_if_required", - v=1 - }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Attack kills generates Valour equal to the enemy's Power\nGains {0} Valour per second while a\nUnique enemy is in your Presence" + text="Gain {0} Rage on Hit" } }, stats={ - [1]="gain_x_valour_per_minute_while_unique_presence" + [1]="gain_x_rage_on_attack_hit" } }, - [947]={ + [1004]={ + [1]={ + }, + stats={ + [1]="gain_x_rage_on_melee_hit" + } + }, + [1005]={ [1]={ [1]={ [1]={ @@ -21363,7 +22093,7 @@ return { [1]="galvanic_field_beam_delay_ms" } }, - [948]={ + [1006]={ [1]={ [1]={ limit={ @@ -21392,7 +22122,7 @@ return { [1]="galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [949]={ + [1007]={ [1]={ [1]={ limit={ @@ -21421,7 +22151,7 @@ return { [1]="galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock" } }, - [950]={ + [1008]={ [1]={ [1]={ limit={ @@ -21468,7 +22198,7 @@ return { [2]="generic_ongoing_trigger_triggers_at_maximum_energy" } }, - [951]={ + [1009]={ [1]={ [1]={ limit={ @@ -21497,7 +22227,23 @@ return { [1]="glacial_cascade_travel_speed_+%" } }, - [952]={ + [1010]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflicts Bleeding on Hit" + } + }, + stats={ + [1]="global_bleed_on_hit" + } + }, + [1011]={ [1]={ [1]={ limit={ @@ -21513,7 +22259,7 @@ return { [1]="global_knockback" } }, - [953]={ + [1012]={ [1]={ [1]={ limit={ @@ -21529,7 +22275,7 @@ return { [1]="global_maim_on_hit" } }, - [954]={ + [1013]={ [1]={ [1]={ limit={ @@ -21550,7 +22296,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [955]={ + [1014]={ [1]={ [1]={ [1]={ @@ -21583,7 +22329,7 @@ return { [1]="glorious_madness_timer_ms" } }, - [956]={ + [1015]={ [1]={ [1]={ limit={ @@ -21612,7 +22358,7 @@ return { [1]="golem_buff_effect_+%" } }, - [957]={ + [1016]={ [1]={ [1]={ limit={ @@ -21641,14 +22387,14 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [958]={ + [1017]={ [1]={ }, stats={ [1]="grenade_skill_%_chance_to_explode_twice" } }, - [959]={ + [1018]={ [1]={ [1]={ limit={ @@ -21691,7 +22437,7 @@ return { [3]="quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem" } }, - [960]={ + [1019]={ [1]={ [1]={ limit={ @@ -21720,7 +22466,23 @@ return { [1]="ground_slam_angle_+%" } }, - [961]={ + [1020]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Freeze enemies that are Primed for Freeze" + } + }, + stats={ + [1]="has_freeze_cull" + } + }, + [1021]={ [1]={ [1]={ limit={ @@ -21745,7 +22507,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [962]={ + [1022]={ [1]={ [1]={ limit={ @@ -21761,7 +22523,7 @@ return { [1]="herald_of_agony_add_stack_on_poison" } }, - [963]={ + [1023]={ [1]={ [1]={ limit={ @@ -21790,7 +22552,7 @@ return { [1]="herald_of_agony_poison_effect_+%_final" } }, - [964]={ + [1024]={ [1]={ [1]={ limit={ @@ -21806,7 +22568,7 @@ return { [1]="herald_of_light_summon_champion_on_kill" } }, - [965]={ + [1025]={ [1]={ [1]={ limit={ @@ -21831,7 +22593,7 @@ return { [1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%" } }, - [966]={ + [1026]={ [1]={ [1]={ limit={ @@ -21860,7 +22622,7 @@ return { [1]="herald_of_purity_physical_damage_+%_final" } }, - [967]={ + [1027]={ [1]={ [1]={ limit={ @@ -21876,7 +22638,7 @@ return { [1]="hex_transfer_on_death_total_range" } }, - [968]={ + [1028]={ [1]={ [1]={ limit={ @@ -21894,8 +22656,8 @@ return { }, limit={ [1]={ - [1]=-1, - [2]="#" + [1]="#", + [2]=-1 } }, text="{0}% less Damage per 1 second of remaining duration on removed Curse" @@ -21905,7 +22667,7 @@ return { [1]="hexblast_damage_+%_final_per_second_remaining_curse_duration" } }, - [969]={ + [1029]={ [1]={ [1]={ limit={ @@ -21921,7 +22683,7 @@ return { [1]="hexblast_hit_damage_+%_final_if_hexed" } }, - [970]={ + [1030]={ [1]={ [1]={ limit={ @@ -21950,7 +22712,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [971]={ + [1031]={ [1]={ [1]={ limit={ @@ -21966,7 +22728,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [972]={ + [1032]={ [1]={ [1]={ limit={ @@ -21995,7 +22757,7 @@ return { [1]="hit_damage_+%_vs_chilled_enemies" } }, - [973]={ + [1033]={ [1]={ [1]={ limit={ @@ -22024,7 +22786,7 @@ return { [1]="hit_damage_stun_multiplier_+%" } }, - [974]={ + [1034]={ [1]={ [1]={ limit={ @@ -22053,7 +22815,7 @@ return { [1]="hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour" } }, - [975]={ + [1035]={ [1]={ [1]={ limit={ @@ -22069,7 +22831,7 @@ return { [1]="hit_%_chance_to_be_dazing" } }, - [976]={ + [1036]={ [1]={ [1]={ limit={ @@ -22085,7 +22847,7 @@ return { [1]="hits_grant_cruelty" } }, - [977]={ + [1037]={ [1]={ [1]={ limit={ @@ -22101,7 +22863,7 @@ return { [1]="hits_ignore_all_enemy_monster_resistances" } }, - [978]={ + [1038]={ [1]={ [1]={ limit={ @@ -22117,7 +22879,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction" } }, - [979]={ + [1039]={ [1]={ [1]={ limit={ @@ -22133,7 +22895,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond" } }, - [980]={ + [1040]={ [1]={ [1]={ limit={ @@ -22149,7 +22911,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [981]={ + [1041]={ [1]={ [1]={ [1]={ @@ -22169,7 +22931,7 @@ return { [1]="holy_relic_nova_life_regeneration_rate_per_minute" } }, - [982]={ + [1042]={ [1]={ [1]={ limit={ @@ -22185,7 +22947,7 @@ return { [1]="holy_relic_nova_minion_life_regeneration_rate_per_second" } }, - [983]={ + [1043]={ [1]={ [1]={ [1]={ @@ -22205,14 +22967,14 @@ return { [1]="hundred_times_attacks_per_second" } }, - [984]={ + [1044]={ [1]={ }, stats={ [1]="hundred_times_average_damage_per_skill_use" } }, - [985]={ + [1045]={ [1]={ [1]={ [1]={ @@ -22232,14 +22994,14 @@ return { [1]="hundred_times_casts_per_second" } }, - [986]={ + [1046]={ [1]={ }, stats={ [1]="hundred_times_damage_per_second" } }, - [987]={ + [1047]={ [1]={ [1]={ [1]={ @@ -22259,7 +23021,7 @@ return { [1]="hydro_sphere_pulse_frequency_ms" } }, - [988]={ + [1048]={ [1]={ [1]={ [1]={ @@ -22292,7 +23054,7 @@ return { [1]="hydrosphere_hit_cooldown_ms" } }, - [989]={ + [1049]={ [1]={ [1]={ limit={ @@ -22321,7 +23083,68 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [990]={ + [1050]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more area of effect if Shattered" + } + }, + stats={ + [1]="ice_crystal_shatter_detonation_area_of_effect_+%_final" + } + }, + [1051]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more damage if Shattered" + } + }, + stats={ + [1]="ice_crystal_shatter_detonation_damage_+%_final" + } + }, + [1052]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage if destroyed within 0.5 seconds by something other than you" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage if not destroyed withint 0.5 seconds by something other than you" + } + }, + stats={ + [1]="ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + } + }, + [1053]={ [1]={ [1]={ limit={ @@ -22363,7 +23186,7 @@ return { [2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy" } }, - [991]={ + [1054]={ [1]={ [1]={ limit={ @@ -22396,7 +23219,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [992]={ + [1055]={ [1]={ [1]={ [1]={ @@ -22429,14 +23252,14 @@ return { [1]="igneous_shield_perfect_block_window_time_ms" } }, - [993]={ + [1056]={ [1]={ }, stats={ [1]="ignite_effect_+%_final_against_frozen_enemies" } }, - [994]={ + [1057]={ [1]={ [1]={ limit={ @@ -22452,7 +23275,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [995]={ + [1058]={ [1]={ [1]={ limit={ @@ -22468,7 +23291,7 @@ return { [1]="immolation_brand_burn_damage_+%_final_per_stage" } }, - [996]={ + [1059]={ [1]={ [1]={ [1]={ @@ -22501,7 +23324,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [997]={ + [1060]={ [1]={ [1]={ limit={ @@ -22530,7 +23353,7 @@ return { [1]="impacting_steel_secondary_projectile_damage_+%_final" } }, - [998]={ + [1061]={ [1]={ [1]={ limit={ @@ -22559,7 +23382,7 @@ return { [1]="impale_magnitude_+%" } }, - [999]={ + [1062]={ [1]={ [1]={ limit={ @@ -22584,7 +23407,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [1000]={ + [1063]={ [1]={ [1]={ limit={ @@ -22613,7 +23436,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [1001]={ + [1064]={ [1]={ [1]={ limit={ @@ -22642,7 +23465,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [1002]={ + [1065]={ [1]={ [1]={ limit={ @@ -22671,7 +23494,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [1003]={ + [1066]={ [1]={ [1]={ limit={ @@ -22687,7 +23510,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [1004]={ + [1067]={ [1]={ [1]={ limit={ @@ -22712,7 +23535,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [1005]={ + [1068]={ [1]={ [1]={ limit={ @@ -22728,7 +23551,7 @@ return { [1]="infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [1006]={ + [1069]={ [1]={ [1]={ limit={ @@ -22737,14 +23560,14 @@ return { [2]="#" } }, - text="Deals {0}% More Fire Damage per 1 Power of exploding Corpse" + text="Deals {0}% more Fire Damage per 1 Power of exploding Corpse" } }, stats={ [1]="infernal_cry_explosion_fire_damage_+%_final_per_corpse_power" } }, - [1007]={ + [1070]={ [1]={ [1]={ limit={ @@ -22753,14 +23576,14 @@ return { [2]="#" } }, - text="Inflicts Fire, Cold, and Lightning Exposure on Hit" + text="Inflicts Exposure on Hit" } }, stats={ [1]="inflict_all_exposure_on_hit" } }, - [1008]={ + [1071]={ [1]={ [1]={ [1]={ @@ -22773,14 +23596,14 @@ return { [2]="#" } }, - text="Cold Exposure on Cold Critical Hit@{0}s" + text="Exposure on Cold Critical Hit@{0}s" } }, stats={ - [1]="inflict_cold_exposure_for_x_ms_on_cold_crit" + [1]="inflict_exposure_for_x_ms_on_cold_crit" } }, - [1009]={ + [1072]={ [1]={ [1]={ [1]={ @@ -22793,14 +23616,14 @@ return { [2]="#" } }, - text="Fire Exposure on Ignite@{0}s" + text="Exposure on Ignite@{0}s" } }, stats={ - [1]="inflict_fire_exposure_for_x_ms_on_ignite" + [1]="inflict_exposure_for_x_ms_on_ignite" } }, - [1010]={ + [1073]={ [1]={ [1]={ [1]={ @@ -22813,34 +23636,102 @@ return { [2]="#" } }, - text="Lightning Exposure on Shock@{0}s" + text="Exposure on Shock@{0}s" } }, stats={ - [1]="inflict_lightning_exposure_for_x_ms_on_shock" + [1]="inflict_exposure_for_x_ms_on_shock" } }, - [1011]={ + [1074]={ [1]={ [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 + limit={ + [1]={ + [1]=1, + [2]=99 + } }, + text="{0}% chance to inflict Exposure on Hit" + }, + [2]={ limit={ [1]={ - [1]="#", + [1]=100, [2]="#" } }, - text="Infusion grants {0}% of maximum Life Regenerated per second" + text="Inflict Exposure on Hit" } }, stats={ - [1]="infusion_grants_life_regeneration_rate_per_minute_%" + [1]="inflict_exposure_on_hit_%_chance" } }, - [1012]={ + [1075]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% chance per Power to spawn a Cold Remnant on\nFreezing a target" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance per Power to spawn a Cold Remnant on\nFreezing a target" + } + }, + stats={ + [1]="infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy" + } + }, + [1076]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% chance to spawn a Fire Remnant on\nIgniting a non-Ignited target" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to spawn a Fire Remnant on\nIgniting a non-Ignited target" + } + }, + stats={ + [1]="infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy" + } + }, + [1077]={ + [1]={ + [1]={ + limit={ + }, + text="{0:+d}% chance to spawn a Lightning Remnant on\nShocking a non-Shocked target" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to spawn a Lightning Remnant on\nShocking a non-Shocked target" + } + }, + stats={ + [1]="infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy" + } + }, + [1078]={ [1]={ [1]={ limit={ @@ -22869,7 +23760,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [1013]={ + [1079]={ [1]={ [1]={ [1]={ @@ -22889,7 +23780,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [1014]={ + [1080]={ [1]={ [1]={ [1]={ @@ -22909,7 +23800,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [1015]={ + [1081]={ [1]={ [1]={ [1]={ @@ -22929,7 +23820,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [1016]={ + [1082]={ [1]={ [1]={ [1]={ @@ -22949,7 +23840,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [1017]={ + [1083]={ [1]={ [1]={ [1]={ @@ -22969,7 +23860,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [1018]={ + [1084]={ [1]={ [1]={ [1]={ @@ -22989,7 +23880,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [1019]={ + [1085]={ [1]={ [1]={ [1]={ @@ -23009,7 +23900,7 @@ return { [1]="intermediary_lightning_skill_dot_area_damage_to_deal_per_minute" } }, - [1020]={ + [1086]={ [1]={ [1]={ [1]={ @@ -23029,7 +23920,7 @@ return { [1]="intermediary_lightning_skill_dot_damage_to_deal_per_minute" } }, - [1021]={ + [1087]={ [1]={ [1]={ [1]={ @@ -23049,7 +23940,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [1022]={ + [1088]={ [1]={ [1]={ [1]={ @@ -23069,7 +23960,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [1023]={ + [1089]={ [1]={ [1]={ [1]={ @@ -23089,7 +23980,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [1024]={ + [1090]={ [1]={ [1]={ limit={ @@ -23105,14 +23996,14 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [1025]={ + [1091]={ [1]={ }, stats={ [1]="jagged_ground_duration_ms" } }, - [1026]={ + [1092]={ [1]={ [1]={ limit={ @@ -23128,7 +24019,7 @@ return { [1]="killing_blow_consumes_corpse_restore_%_life" } }, - [1027]={ + [1093]={ [1]={ [1]={ limit={ @@ -23144,7 +24035,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [1028]={ + [1094]={ [1]={ [1]={ limit={ @@ -23160,7 +24051,7 @@ return { [1]="kinetic_bolt_forks_apply_to_zig_zags" } }, - [1029]={ + [1095]={ [1]={ [1]={ limit={ @@ -23176,7 +24067,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [1030]={ + [1096]={ [1]={ [1]={ limit={ @@ -23205,7 +24096,7 @@ return { [1]="lacerate_hit_damage_+%_final_vs_bleeding_enemies" } }, - [1031]={ + [1097]={ [1]={ [1]={ limit={ @@ -23234,7 +24125,7 @@ return { [1]="lancing_steel_damage_+%_at_close_range" } }, - [1032]={ + [1098]={ [1]={ [1]={ limit={ @@ -23263,7 +24154,7 @@ return { [1]="lancing_steel_damage_+%_final_after_first_hit_on_target" } }, - [1033]={ + [1099]={ [1]={ [1]={ limit={ @@ -23292,7 +24183,7 @@ return { [1]="lancing_steel_targeting_range_+%" } }, - [1034]={ + [1100]={ [1]={ [1]={ limit={ @@ -23321,7 +24212,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [1035]={ + [1101]={ [1]={ [1]={ limit={ @@ -23346,7 +24237,36 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [1036]={ + [1102]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits per 5% Shock Effect on Enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits per 5% Shock Effect on Enemy" + } + }, + stats={ + [1]="lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock" + } + }, + [1103]={ [1]={ [1]={ limit={ @@ -23362,7 +24282,7 @@ return { [1]="lightning_rod_%_chance_for_additional_burst_on_landing" } }, - [1037]={ + [1104]={ [1]={ [1]={ [1]={ @@ -23395,7 +24315,7 @@ return { [1]="lightning_storm_hit_frequency_ms" } }, - [1038]={ + [1105]={ [1]={ [1]={ [1]={ @@ -23428,7 +24348,7 @@ return { [1]="lightning_storm_hit_prevention_duration_ms" } }, - [1039]={ + [1106]={ [1]={ [1]={ limit={ @@ -23453,7 +24373,7 @@ return { [1]="lightning_storm_max_number_of_storms" } }, - [1040]={ + [1107]={ [1]={ [1]={ limit={ @@ -23482,7 +24402,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final" } }, - [1041]={ + [1108]={ [1]={ [1]={ limit={ @@ -23498,7 +24418,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_radius_+" } }, - [1042]={ + [1109]={ [1]={ [1]={ limit={ @@ -23536,7 +24456,7 @@ return { [2]="lightning_tower_trap_interval_duration_ms" } }, - [1043]={ + [1110]={ [1]={ [1]={ [1]={ @@ -23569,7 +24489,7 @@ return { [1]="lightning_warp_shocked_ground_base_duration_ms" } }, - [1044]={ + [1111]={ [1]={ [1]={ limit={ @@ -23585,7 +24505,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1045]={ + [1112]={ [1]={ [1]={ limit={ @@ -23614,7 +24534,7 @@ return { [1]="magma_brand_hit_damage_+%_final_per_additional_pustule" } }, - [1046]={ + [1113]={ [1]={ [1]={ limit={ @@ -23630,7 +24550,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [1047]={ + [1114]={ [1]={ [1]={ limit={ @@ -23659,7 +24579,7 @@ return { [1]="maim_effect_+%" } }, - [1048]={ + [1115]={ [1]={ [1]={ limit={ @@ -23684,70 +24604,70 @@ return { [1]="maim_on_hit_%" } }, - [1049]={ + [1116]={ [1]={ }, stats={ [1]="main_hand_accuracy_rating" } }, - [1050]={ + [1117]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_chaos_resist_%" } }, - [1051]={ + [1118]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_cold_resist_%" } }, - [1052]={ + [1119]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_fire_resist_%" } }, - [1053]={ + [1120]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_lightning_resist_%" } }, - [1054]={ + [1121]={ [1]={ }, stats={ [1]="main_hand_critical_hit_damage_bonus" } }, - [1055]={ + [1122]={ [1]={ }, stats={ [1]="main_hand_critical_strike_chance" } }, - [1056]={ + [1123]={ [1]={ }, stats={ [1]="main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1057]={ + [1124]={ [1]={ }, stats={ [1]="main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical" } }, - [1058]={ + [1125]={ [1]={ }, stats={ @@ -23755,7 +24675,7 @@ return { [2]="main_hand_maximum_chaos_damage" } }, - [1059]={ + [1126]={ [1]={ }, stats={ @@ -23763,7 +24683,7 @@ return { [2]="main_hand_maximum_cold_damage" } }, - [1060]={ + [1127]={ [1]={ }, stats={ @@ -23771,7 +24691,7 @@ return { [2]="main_hand_maximum_fire_damage" } }, - [1061]={ + [1128]={ [1]={ }, stats={ @@ -23779,7 +24699,7 @@ return { [2]="main_hand_maximum_lightning_damage" } }, - [1062]={ + [1129]={ [1]={ }, stats={ @@ -23787,7 +24707,7 @@ return { [2]="main_hand_maximum_physical_damage" } }, - [1063]={ + [1130]={ [1]={ }, stats={ @@ -23795,14 +24715,14 @@ return { [2]="main_hand_maximum_total_damage" } }, - [1064]={ + [1131]={ [1]={ }, stats={ [1]="main_hand_reload_time" } }, - [1065]={ + [1132]={ [1]={ [1]={ [1]={ @@ -23822,7 +24742,7 @@ return { [1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute" } }, - [1066]={ + [1133]={ [1]={ [1]={ limit={ @@ -23851,7 +24771,7 @@ return { [1]="mana_gain_per_target" } }, - [1067]={ + [1134]={ [1]={ [1]={ [1]={ @@ -23884,7 +24804,7 @@ return { [1]="mana_tempest_effects_linger_X_ms" } }, - [1068]={ + [1135]={ [1]={ [1]={ limit={ @@ -23900,7 +24820,7 @@ return { [1]="mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage" } }, - [1069]={ + [1136]={ [1]={ [1]={ limit={ @@ -23916,7 +24836,7 @@ return { [1]="manaforged_arrows_total_mana_threshold" } }, - [1070]={ + [1137]={ [1]={ [1]={ limit={ @@ -23932,14 +24852,14 @@ return { [1]="mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [1071]={ + [1138]={ [1]={ }, stats={ [1]="mark_effect_+%" } }, - [1072]={ + [1139]={ [1]={ [1]={ limit={ @@ -23955,7 +24875,7 @@ return { [1]="max_crab_aspect_stacks" } }, - [1073]={ + [1140]={ [1]={ [1]={ limit={ @@ -23971,7 +24891,7 @@ return { [1]="max_number_of_absolution_sentinels" } }, - [1074]={ + [1141]={ [1]={ [1]={ limit={ @@ -23987,7 +24907,7 @@ return { [1]="max_number_of_lightning_warp_markers" } }, - [1075]={ + [1142]={ [1]={ [1]={ limit={ @@ -24003,7 +24923,7 @@ return { [1]="max_steel_ammo" } }, - [1076]={ + [1143]={ [1]={ [1]={ limit={ @@ -24019,7 +24939,7 @@ return { [1]="maximum_life_%_damage_absorbed_per_jade_consumed" } }, - [1077]={ + [1144]={ [1]={ [1]={ limit={ @@ -24048,7 +24968,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [1078]={ + [1145]={ [1]={ [1]={ [1]={ @@ -24090,7 +25010,7 @@ return { [2]="maximum_number_of_arctic_armour_stationary_stacks" } }, - [1079]={ + [1146]={ [1]={ [1]={ limit={ @@ -24106,7 +25026,41 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [1080]={ + [1147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} to Maximum Heat" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Maximum {0} Heat" + } + }, + stats={ + [1]="maximum_number_of_crossbow_heat_stacks", + [2]="quality_display_rapid_shot_maximum_num_of_stacks_is_gem" + } + }, + [1148]={ [1]={ [1]={ limit={ @@ -24131,7 +25085,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [1081]={ + [1149]={ [1]={ [1]={ limit={ @@ -24156,7 +25110,7 @@ return { [1]="maximum_number_of_mirage_warriors" } }, - [1082]={ + [1150]={ [1]={ [1]={ limit={ @@ -24216,7 +25170,7 @@ return { [3]="vaal_venom_gyre_capture_x_projectiles_per_second" } }, - [1083]={ + [1151]={ [1]={ [1]={ limit={ @@ -24241,7 +25195,7 @@ return { [1]="maximum_number_of_summoned_doubles" } }, - [1084]={ + [1152]={ [1]={ [1]={ limit={ @@ -24266,7 +25220,7 @@ return { [1]="maximum_number_of_vaal_ice_shot_mirages" } }, - [1085]={ + [1153]={ [1]={ [1]={ limit={ @@ -24282,7 +25236,7 @@ return { [1]="maximum_virulence_stacks" } }, - [1086]={ + [1154]={ [1]={ [1]={ limit={ @@ -24311,7 +25265,7 @@ return { [1]="meditate_energy_shield_recharge_rate_+%_final" } }, - [1087]={ + [1155]={ [1]={ [1]={ limit={ @@ -24336,7 +25290,7 @@ return { [1]="virtual_number_of_spirit_strikes" } }, - [1088]={ + [1156]={ [1]={ [1]={ [1]={ @@ -24356,7 +25310,7 @@ return { [1]="melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill" } }, - [1089]={ + [1157]={ [1]={ [1]={ limit={ @@ -24372,7 +25326,7 @@ return { [1]="mine_cannot_rearm" } }, - [1090]={ + [1158]={ [1]={ [1]={ limit={ @@ -24401,7 +25355,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [1091]={ + [1159]={ [1]={ [1]={ limit={ @@ -24417,7 +25371,7 @@ return { [1]="mine_detonates_instantly" } }, - [1092]={ + [1160]={ [1]={ [1]={ limit={ @@ -24446,7 +25400,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [1093]={ + [1161]={ [1]={ [1]={ limit={ @@ -24475,7 +25429,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [1094]={ + [1162]={ [1]={ [1]={ limit={ @@ -24504,7 +25458,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [1095]={ + [1163]={ [1]={ [1]={ limit={ @@ -24525,7 +25479,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [1096]={ + [1164]={ [1]={ [1]={ limit={ @@ -24546,7 +25500,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [1097]={ + [1165]={ [1]={ [1]={ limit={ @@ -24567,7 +25521,7 @@ return { [2]="maximum_added_lightning_damage_from_skill" } }, - [1098]={ + [1166]={ [1]={ [1]={ limit={ @@ -24583,7 +25537,7 @@ return { [1]="minimum_power_from_quality" } }, - [1099]={ + [1167]={ [1]={ [1]={ limit={ @@ -24604,7 +25558,7 @@ return { [2]="maximum_secondary_physical_damage_per_15_strength" } }, - [1100]={ + [1168]={ [1]={ [1]={ limit={ @@ -24620,7 +25574,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1101]={ + [1169]={ [1]={ [1]={ limit={ @@ -24636,7 +25590,7 @@ return { [1]="minion_block_%" } }, - [1102]={ + [1170]={ [1]={ [1]={ limit={ @@ -24665,7 +25619,7 @@ return { [1]="minion_burning_damage_+%" } }, - [1103]={ + [1171]={ [1]={ [1]={ limit={ @@ -24681,7 +25635,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [1104]={ + [1172]={ [1]={ [1]={ limit={ @@ -24697,7 +25651,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [1105]={ + [1173]={ [1]={ [1]={ limit={ @@ -24726,7 +25680,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [1106]={ + [1174]={ [1]={ [1]={ limit={ @@ -24755,7 +25709,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [1107]={ + [1175]={ [1]={ [1]={ limit={ @@ -24784,7 +25738,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [1108]={ + [1176]={ [1]={ [1]={ limit={ @@ -24800,7 +25754,7 @@ return { [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" } }, - [1109]={ + [1177]={ [1]={ [1]={ [1]={ @@ -24820,7 +25774,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [1110]={ + [1178]={ [1]={ [1]={ limit={ @@ -24836,7 +25790,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [1111]={ + [1179]={ [1]={ [1]={ limit={ @@ -24852,7 +25806,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [1112]={ + [1180]={ [1]={ [1]={ limit={ @@ -24881,7 +25835,7 @@ return { [1]="minion_melee_damage_+%" } }, - [1113]={ + [1181]={ [1]={ [1]={ limit={ @@ -24906,23 +25860,36 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [1114]={ + [1182]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, text="Minions have {0}% increased effect of Rage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced effect of Rage" } }, stats={ [1]="minion_rage_effect_+%" } }, - [1115]={ + [1183]={ [1]={ [1]={ limit={ @@ -24951,7 +25918,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [1116]={ + [1184]={ [1]={ [1]={ limit={ @@ -24980,7 +25947,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [1117]={ + [1185]={ [1]={ [1]={ [1]={ @@ -25013,7 +25980,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [1118]={ + [1186]={ [1]={ [1]={ limit={ @@ -25038,7 +26005,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [1119]={ + [1187]={ [1]={ [1]={ limit={ @@ -25054,7 +26021,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [1120]={ + [1188]={ [1]={ [1]={ limit={ @@ -25079,7 +26046,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [1121]={ + [1189]={ [1]={ [1]={ limit={ @@ -25095,7 +26062,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [1122]={ + [1190]={ [1]={ [1]={ limit={ @@ -25111,7 +26078,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [1123]={ + [1191]={ [1]={ [1]={ limit={ @@ -25154,7 +26121,7 @@ return { [3]="molten_shell_max_damage_absorbed" } }, - [1124]={ + [1192]={ [1]={ [1]={ limit={ @@ -25188,7 +26155,7 @@ return { [2]="display_vaal_molten_shell_alternate_description" } }, - [1125]={ + [1193]={ [1]={ [1]={ limit={ @@ -25204,7 +26171,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [1126]={ + [1194]={ [1]={ [1]={ limit={ @@ -25220,7 +26187,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [1127]={ + [1195]={ [1]={ [1]={ limit={ @@ -25249,7 +26216,7 @@ return { [1]="mortal_call_elemental_damage_taken_+%_final" } }, - [1128]={ + [1196]={ [1]={ [1]={ limit={ @@ -25278,7 +26245,7 @@ return { [1]="mortal_call_physical_damage_taken_+%_final" } }, - [1129]={ + [1197]={ [1]={ [1]={ [1]={ @@ -25337,7 +26304,7 @@ return { [2]="quality_display_immortal_call_is_gem" } }, - [1130]={ + [1198]={ [1]={ [1]={ limit={ @@ -25366,7 +26333,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [1131]={ + [1199]={ [1]={ [1]={ limit={ @@ -25395,7 +26362,7 @@ return { [1]="multistrike_area_of_effect_+%_per_repeat" } }, - [1132]={ + [1200]={ [1]={ [1]={ limit={ @@ -25424,7 +26391,7 @@ return { [1]="multistrike_damage_+%_final_on_first_repeat" } }, - [1133]={ + [1201]={ [1]={ [1]={ limit={ @@ -25453,7 +26420,7 @@ return { [1]="multistrike_damage_+%_final_on_second_repeat" } }, - [1134]={ + [1202]={ [1]={ [1]={ limit={ @@ -25482,7 +26449,23 @@ return { [1]="multistrike_damage_+%_final_on_third_repeat" } }, - [1135]={ + [1203]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot Shock" + } + }, + stats={ + [1]="never_shock" + } + }, + [1204]={ [1]={ [1]={ limit={ @@ -25498,7 +26481,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [1136]={ + [1205]={ [1]={ [1]={ limit={ @@ -25527,14 +26510,30 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [1137]={ + [1206]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Empowered Spells Gain {0}% of damage as Cold Damage" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff" + } + }, + [1207]={ [1]={ }, stats={ [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies" } }, - [1138]={ + [1208]={ [1]={ [1]={ limit={ @@ -25568,7 +26567,7 @@ return { [2]="quality_display_mana_tempest_is_gem" } }, - [1139]={ + [1209]={ [1]={ [1]={ limit={ @@ -25584,21 +26583,21 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [1140]={ + [1210]={ [1]={ }, stats={ [1]="non_spell_cast_duration_ms" } }, - [1141]={ + [1211]={ [1]={ }, stats={ [1]="nova_skills_cast_at_target_location" } }, - [1142]={ + [1212]={ [1]={ [1]={ limit={ @@ -25623,14 +26622,39 @@ return { [1]="number_of_additional_chain_targets" } }, - [1143]={ + [1213]={ [1]={ }, stats={ [1]="number_of_additional_fissures" } }, - [1144]={ + [1214]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Inflicts an additional Impale" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Inflicts {0} additional Impales" + } + }, + stats={ + [1]="number_of_additional_impaled_debuffs_to_apply" + } + }, + [1215]={ [1]={ [1]={ limit={ @@ -25646,7 +26670,32 @@ return { [1]="number_of_allowed_storm_arrows" } }, - [1145]={ + [1216]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fissures branch once" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Fissures branch {0} times" + } + }, + stats={ + [1]="number_of_branching_fissures" + } + }, + [1217]={ [1]={ [1]={ limit={ @@ -25671,7 +26720,7 @@ return { [1]="number_of_champions_of_light_allowed" } }, - [1146]={ + [1218]={ [1]={ [1]={ limit={ @@ -25696,14 +26745,14 @@ return { [1]="number_of_corpses_to_consume" } }, - [1147]={ + [1219]={ [1]={ }, stats={ [1]="number_of_crossbow_bolts" } }, - [1148]={ + [1220]={ [1]={ [1]={ limit={ @@ -25728,7 +26777,7 @@ return { [1]="base_number_of_effigies_allowed" } }, - [1149]={ + [1221]={ [1]={ [1]={ limit={ @@ -25753,7 +26802,7 @@ return { [1]="number_of_herald_scorpions_allowed" } }, - [1150]={ + [1222]={ [1]={ [1]={ limit={ @@ -25778,7 +26827,7 @@ return { [1]="number_of_marks_allowed_per_type" } }, - [1151]={ + [1223]={ [1]={ [1]={ limit={ @@ -25803,7 +26852,7 @@ return { [1]="number_of_mirage_archers_allowed" } }, - [1152]={ + [1224]={ [1]={ [1]={ limit={ @@ -25828,7 +26877,7 @@ return { [1]="number_of_reapers_allowed" } }, - [1153]={ + [1225]={ [1]={ [1]={ limit={ @@ -25853,21 +26902,21 @@ return { [1]="number_of_relics_allowed" } }, - [1154]={ + [1226]={ [1]={ }, stats={ [1]="number_of_skeletal_constructs_allowed" } }, - [1155]={ + [1227]={ [1]={ }, stats={ [1]="number_of_tempest_bells_allowed" } }, - [1156]={ + [1228]={ [1]={ [1]={ limit={ @@ -25883,70 +26932,70 @@ return { [1]="number_of_totems_to_summon" } }, - [1157]={ + [1229]={ [1]={ }, stats={ [1]="off_hand_accuracy_rating" } }, - [1158]={ + [1230]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_chaos_resist_%" } }, - [1159]={ + [1231]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_cold_resist_%" } }, - [1160]={ + [1232]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_fire_resist_%" } }, - [1161]={ + [1233]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_lightning_resist_%" } }, - [1162]={ + [1234]={ [1]={ }, stats={ [1]="off_hand_critical_hit_damage_bonus" } }, - [1163]={ + [1235]={ [1]={ }, stats={ [1]="off_hand_critical_strike_chance" } }, - [1164]={ + [1236]={ [1]={ }, stats={ [1]="off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1165]={ + [1237]={ [1]={ }, stats={ [1]="off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical" } }, - [1166]={ + [1238]={ [1]={ }, stats={ @@ -25954,7 +27003,7 @@ return { [2]="off_hand_maximum_chaos_damage" } }, - [1167]={ + [1239]={ [1]={ }, stats={ @@ -25962,7 +27011,7 @@ return { [2]="off_hand_maximum_cold_damage" } }, - [1168]={ + [1240]={ [1]={ }, stats={ @@ -25970,7 +27019,7 @@ return { [2]="off_hand_maximum_fire_damage" } }, - [1169]={ + [1241]={ [1]={ }, stats={ @@ -25978,7 +27027,7 @@ return { [2]="off_hand_maximum_lightning_damage" } }, - [1170]={ + [1242]={ [1]={ }, stats={ @@ -25986,7 +27035,7 @@ return { [2]="off_hand_maximum_physical_damage" } }, - [1171]={ + [1243]={ [1]={ }, stats={ @@ -25994,14 +27043,14 @@ return { [2]="off_hand_maximum_total_damage" } }, - [1172]={ + [1244]={ [1]={ }, stats={ [1]="orb_of_storms_bolt_frequency_ms" } }, - [1173]={ + [1245]={ [1]={ [1]={ [1]={ @@ -26034,7 +27083,7 @@ return { [1]="orb_of_storms_channelling_bolt_frequency_ms" } }, - [1174]={ + [1246]={ [1]={ [1]={ limit={ @@ -26043,14 +27092,14 @@ return { [2]="#" } }, - text="Orb disappears after {0} bolts" + text="Orb expires after firing {0} bolts" } }, stats={ [1]="orb_of_storms_maximum_number_of_hits" } }, - [1175]={ + [1247]={ [1]={ [1]={ limit={ @@ -26066,36 +27115,7 @@ return { [1]="orb_of_storms_maximum_number_of_orbs" } }, - [1176]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Overpowered Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Overpowered Effect" - } - }, - stats={ - [1]="overpowered_effect_+%" - } - }, - [1177]={ + [1248]={ [1]={ [1]={ limit={ @@ -26111,7 +27131,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [1178]={ + [1249]={ [1]={ [1]={ limit={ @@ -26140,7 +27160,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [1179]={ + [1250]={ [1]={ [1]={ limit={ @@ -26156,7 +27176,7 @@ return { [1]="penance_brand_additional_descriptions_boolean" } }, - [1180]={ + [1251]={ [1]={ [1]={ limit={ @@ -26172,7 +27192,7 @@ return { [1]="penance_brand_base_spread_radius_+" } }, - [1181]={ + [1252]={ [1]={ [1]={ limit={ @@ -26188,7 +27208,7 @@ return { [1]="penetrate_%_fire_resistance_per_100_dexterity" } }, - [1182]={ + [1253]={ [1]={ [1]={ limit={ @@ -26213,7 +27233,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [1183]={ + [1254]={ [1]={ [1]={ limit={ @@ -26238,7 +27258,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [1184]={ + [1255]={ [1]={ [1]={ limit={ @@ -26263,7 +27283,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1185]={ + [1256]={ [1]={ [1]={ limit={ @@ -26288,7 +27308,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1186]={ + [1257]={ [1]={ [1]={ limit={ @@ -26304,7 +27324,7 @@ return { [1]="petrification_statue_target_action_speed_-%" } }, - [1187]={ + [1258]={ [1]={ [1]={ limit={ @@ -26325,7 +27345,7 @@ return { [2]="phantasm_grant_buff_maximum_added_physical_damage" } }, - [1188]={ + [1259]={ [1]={ [1]={ limit={ @@ -26350,7 +27370,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [1189]={ + [1260]={ [1]={ [1]={ limit={ @@ -26388,7 +27408,7 @@ return { [2]="phys_cascade_trap_interval_duration_ms" } }, - [1190]={ + [1261]={ [1]={ [1]={ limit={ @@ -26404,7 +27424,7 @@ return { [1]="physical_damage_%_dealt_as_evasion_break_vs_bleeding" } }, - [1191]={ + [1262]={ [1]={ [1]={ limit={ @@ -26420,7 +27440,7 @@ return { [1]="physical_damage_reduction_%_per_crab_aspect_stack" } }, - [1192]={ + [1263]={ [1]={ [1]={ limit={ @@ -26449,56 +27469,57 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [1193]={ + [1264]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" - } - }, - text="You have {0}% increased Movement Speed while Infecting" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ + }, + [2]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="You have {0}% reduced Movement Speed while Infecting" + text="Stores {0}% of Expected Poison damage, up to {1}\nDeals Physical damage equal to the stored Poison" } }, stats={ - [1]="plague_bearer_movement_speed_+%_while_infecting" + [1]="plague_bearer_gains_%_of_damage_from_inflicted_poisons", + [2]="plague_bearer_maximum_stored_poison_damage" } }, - [1194]={ + [1265]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You have {0}% increased Movement Speed while Infecting" + }, + [2]={ [1]={ - k="multiply_by_one_hundred", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Stored Poison grants up to {0}% more Area of Effect" + text="You have {0}% reduced Movement Speed while Infecting" } }, stats={ - [1]="plague_bearer_nova_area_+%_final_per_incubation_%" + [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [1195]={ + [1266]={ [1]={ [1]={ limit={ @@ -26514,7 +27535,7 @@ return { [1]="plague_burst_%_stored_value_to_deal_as_physical_damage" } }, - [1196]={ + [1267]={ [1]={ [1]={ limit={ @@ -26530,7 +27551,7 @@ return { [1]="plague_burst_area_+%_final_maximum" } }, - [1197]={ + [1268]={ [1]={ [1]={ limit={ @@ -26546,7 +27567,7 @@ return { [1]="plague_burst_triggered_by_bursting_plague_death" } }, - [1198]={ + [1269]={ [1]={ [1]={ limit={ @@ -26575,7 +27596,7 @@ return { [1]="base_poison_effect_+%" } }, - [1199]={ + [1270]={ [1]={ [1]={ [1]={ @@ -26617,7 +27638,7 @@ return { [2]="poisonbloom_arrow_max_additional_burst_base_radius_+" } }, - [1200]={ + [1271]={ [1]={ [1]={ limit={ @@ -26638,7 +27659,7 @@ return { [2]="poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison" } }, - [1201]={ + [1272]={ [1]={ [1]={ [1]={ @@ -26658,7 +27679,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [1202]={ + [1273]={ [1]={ [1]={ limit={ @@ -26674,7 +27695,7 @@ return { [1]="predict_totem_maximum_energy_shield" } }, - [1203]={ + [1274]={ [1]={ [1]={ limit={ @@ -26690,7 +27711,7 @@ return { [1]="predict_totem_maximum_life" } }, - [1204]={ + [1275]={ [1]={ [1]={ limit={ @@ -26715,7 +27736,7 @@ return { [1]="primary_projectile_chain_num" } }, - [1205]={ + [1276]={ [1]={ [1]={ limit={ @@ -26740,7 +27761,7 @@ return { [1]="primary_projectile_impale_chance_%" } }, - [1206]={ + [1277]={ [1]={ [1]={ [1]={ @@ -26773,7 +27794,7 @@ return { [1]="prismatic_rain_beam_frequency_ms" } }, - [1207]={ + [1278]={ [1]={ [1]={ limit={ @@ -26802,7 +27823,7 @@ return { [1]="projectile_attack_damage_+%_in_blood_stance" } }, - [1208]={ + [1279]={ [1]={ [1]={ limit={ @@ -26849,7 +27870,7 @@ return { [2]="projectiles_can_split_from_terrain" } }, - [1209]={ + [1280]={ [1]={ [1]={ limit={ @@ -26865,7 +27886,7 @@ return { [1]="projectile_chance_to_be_able_to_chain_from_terrain_%" } }, - [1210]={ + [1281]={ [1]={ [1]={ limit={ @@ -26881,7 +27902,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [1211]={ + [1282]={ [1]={ [1]={ limit={ @@ -26906,7 +27927,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [1212]={ + [1283]={ [1]={ [1]={ limit={ @@ -26935,7 +27956,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [1213]={ + [1284]={ [1]={ [1]={ limit={ @@ -26964,14 +27985,14 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [1214]={ + [1285]={ [1]={ }, stats={ [1]="projectile_speed_+%" } }, - [1215]={ + [1286]={ [1]={ [1]={ limit={ @@ -27000,14 +28021,14 @@ return { [1]="projectile_speed_+%_in_sand_stance" } }, - [1216]={ + [1287]={ [1]={ }, stats={ [1]="projectiles_can_shotgun" } }, - [1217]={ + [1288]={ [1]={ [1]={ limit={ @@ -27023,7 +28044,7 @@ return { [1]="projectiles_cannot_split" } }, - [1218]={ + [1289]={ [1]={ [1]={ limit={ @@ -27052,7 +28073,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [1219]={ + [1290]={ [1]={ [1]={ limit={ @@ -27068,7 +28089,7 @@ return { [1]="projectiles_fork_when_passing_a_flame_wall" } }, - [1220]={ + [1291]={ [1]={ [1]={ limit={ @@ -27084,7 +28105,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [1221]={ + [1292]={ [1]={ [1]={ limit={ @@ -27100,7 +28121,7 @@ return { [1]="projectiles_rain" } }, - [1222]={ + [1293]={ [1]={ [1]={ [1]={ @@ -27133,7 +28154,7 @@ return { [1]="puppet_master_duration_ms" } }, - [1223]={ + [1294]={ [1]={ [1]={ limit={ @@ -27149,7 +28170,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [1224]={ + [1295]={ [1]={ [1]={ limit={ @@ -27174,7 +28195,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [1225]={ + [1296]={ [1]={ [1]={ limit={ @@ -27195,7 +28216,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [1226]={ + [1297]={ [1]={ [1]={ limit={ @@ -27211,7 +28232,7 @@ return { [1]="rage_slash_sacrifice_rage_%" } }, - [1227]={ + [1298]={ [1]={ [1]={ limit={ @@ -27249,7 +28270,7 @@ return { [2]="rage_slash_rage_sacrifice_per_damage_bonus" } }, - [1228]={ + [1299]={ [1]={ [1]={ limit={ @@ -27270,7 +28291,7 @@ return { [2]="rage_slash_rage_sacrifice_per_radius_bonus" } }, - [1229]={ + [1300]={ [1]={ [1]={ limit={ @@ -27299,7 +28320,7 @@ return { [1]="rage_slash_vortex_attack_speed_+%_final" } }, - [1230]={ + [1301]={ [1]={ [1]={ limit={ @@ -27324,7 +28345,7 @@ return { [1]="rage_slash_maximum_vortices" } }, - [1231]={ + [1302]={ [1]={ [1]={ limit={ @@ -27353,7 +28374,7 @@ return { [1]="ragestorm_movement_speed_+%" } }, - [1232]={ + [1303]={ [1]={ [1]={ limit={ @@ -27369,7 +28390,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [1233]={ + [1304]={ [1]={ [1]={ limit={ @@ -27398,7 +28419,7 @@ return { [1]="rain_of_arrows_arrow_speed_+%" } }, - [1234]={ + [1305]={ [1]={ [1]={ limit={ @@ -27427,41 +28448,7 @@ return { [1]="raise_zombie_empowerment_effect_+%" } }, - [1235]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } - }, - text="{0:+d} to Maximum Heat" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Maximum {0} Heat" - } - }, - stats={ - [1]="rapid_shot_maximum_num_of_stacks", - [2]="quality_display_rapid_shot_maximum_num_of_stacks_is_gem" - } - }, - [1236]={ + [1306]={ [1]={ [1]={ limit={ @@ -27477,7 +28464,7 @@ return { [1]="reave_additional_max_stacks" } }, - [1237]={ + [1307]={ [1]={ }, stats={ @@ -27485,7 +28472,7 @@ return { [2]="reaver_enrage_decay_rate_increase_+%_final" } }, - [1238]={ + [1308]={ [1]={ [1]={ limit={ @@ -27514,7 +28501,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [1239]={ + [1309]={ [1]={ [1]={ [1]={ @@ -27534,14 +28521,14 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [1240]={ + [1310]={ [1]={ }, stats={ [1]="recover_%_maximum_life_on_cull" } }, - [1241]={ + [1311]={ [1]={ [1]={ limit={ @@ -27557,7 +28544,7 @@ return { [1]="recover_%_maximum_mana_on_cull" } }, - [1242]={ + [1312]={ [1]={ [1]={ [1]={ @@ -27577,14 +28564,14 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [1243]={ + [1313]={ [1]={ }, stats={ [1]="reduce_enemy_chaos_resistance_%" } }, - [1244]={ + [1314]={ [1]={ [1]={ limit={ @@ -27600,28 +28587,28 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [1245]={ + [1315]={ [1]={ }, stats={ [1]="reduce_enemy_cold_resistance_%" } }, - [1246]={ + [1316]={ [1]={ }, stats={ [1]="reduce_enemy_fire_resistance_%" } }, - [1247]={ + [1317]={ [1]={ }, stats={ [1]="reduce_enemy_lightning_resistance_%" } }, - [1248]={ + [1318]={ [1]={ [1]={ limit={ @@ -27637,14 +28624,14 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [1249]={ + [1319]={ [1]={ }, stats={ [1]="reload_speed_+%" } }, - [1250]={ + [1320]={ [1]={ [1]={ limit={ @@ -27660,14 +28647,72 @@ return { [1]="remove_freeze_on_ignite" } }, - [1251]={ + [1321]={ [1]={ }, stats={ [1]="repeat_last_step_of_combo_attack" } }, - [1252]={ + [1322]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed while mounted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed while mounted" + } + }, + stats={ + [1]="rhoa_movement_speed_+%" + } + }, + [1323]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed Penalty from\nusing Skills while mounted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed Penalty from\nusing Skills while mounted" + } + }, + stats={ + [1]="rhoa_movement_speed_penalty_+%_final_while_performing_action" + } + }, + [1324]={ [1]={ [1]={ limit={ @@ -27683,7 +28728,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [1253]={ + [1325]={ [1]={ [1]={ limit={ @@ -27699,7 +28744,7 @@ return { [1]="ring_of_ice_placement_distance" } }, - [1254]={ + [1326]={ [1]={ [1]={ limit={ @@ -27728,7 +28773,7 @@ return { [1]="rune_paint_area_of_effect_+%_final_per_rune_level" } }, - [1255]={ + [1327]={ [1]={ [1]={ limit={ @@ -27757,7 +28802,7 @@ return { [1]="rune_paint_area_of_effect_+%_per_rune_level" } }, - [1256]={ + [1328]={ [1]={ [1]={ limit={ @@ -27808,7 +28853,7 @@ return { [2]="quality_display_rune_paint_is_gem" } }, - [1257]={ + [1329]={ [1]={ [1]={ limit={ @@ -27824,7 +28869,7 @@ return { [1]="rune_paint_mana_spend_per_rune_upgrade" } }, - [1258]={ + [1330]={ [1]={ [1]={ limit={ @@ -27849,14 +28894,14 @@ return { [1]="rune_paint_max_rune_level" } }, - [1259]={ + [1331]={ [1]={ }, stats={ [1]="sacrifice_%_life_on_skill_use" } }, - [1260]={ + [1332]={ [1]={ [1]={ limit={ @@ -27885,7 +28930,7 @@ return { [1]="sanctify_wave_damage_+%_final" } }, - [1261]={ + [1333]={ [1]={ [1]={ limit={ @@ -27901,7 +28946,7 @@ return { [1]="sandstorm_swipe_max_stages" } }, - [1262]={ + [1334]={ [1]={ [1]={ limit={ @@ -27952,7 +28997,7 @@ return { [2]="quality_display_sandstorm_swipe_is_gem" } }, - [1263]={ + [1335]={ [1]={ [1]={ limit={ @@ -27968,7 +29013,7 @@ return { [1]="sandstorm_swipe_storm_radius_+_per_stage" } }, - [1264]={ + [1336]={ [1]={ [1]={ limit={ @@ -27997,7 +29042,7 @@ return { [1]="scorpion_minion_attack_speed_+%" } }, - [1265]={ + [1337]={ [1]={ [1]={ limit={ @@ -28026,7 +29071,7 @@ return { [1]="scorpion_minion_physical_damage_+%" } }, - [1266]={ + [1338]={ [1]={ [1]={ limit={ @@ -28047,28 +29092,28 @@ return { [2]="scorpion_minion_maximum_added_physical_damage" } }, - [1267]={ + [1339]={ [1]={ }, stats={ [1]="secondary_critical_hit_damage_bonus" } }, - [1268]={ + [1340]={ [1]={ }, stats={ [1]="secondary_critical_strike_chance" } }, - [1269]={ + [1341]={ [1]={ }, stats={ [1]="secondary_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1270]={ + [1342]={ [1]={ }, stats={ @@ -28076,7 +29121,7 @@ return { [2]="secondary_maximum_chaos_damage" } }, - [1271]={ + [1343]={ [1]={ }, stats={ @@ -28084,7 +29129,7 @@ return { [2]="secondary_maximum_cold_damage" } }, - [1272]={ + [1344]={ [1]={ }, stats={ @@ -28092,7 +29137,7 @@ return { [2]="secondary_maximum_fire_damage" } }, - [1273]={ + [1345]={ [1]={ }, stats={ @@ -28100,7 +29145,7 @@ return { [2]="secondary_maximum_lightning_damage" } }, - [1274]={ + [1346]={ [1]={ }, stats={ @@ -28108,7 +29153,7 @@ return { [2]="secondary_maximum_physical_damage" } }, - [1275]={ + [1347]={ [1]={ }, stats={ @@ -28116,7 +29161,7 @@ return { [2]="secondary_maximum_total_damage" } }, - [1276]={ + [1348]={ [1]={ [1]={ limit={ @@ -28145,7 +29190,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [1277]={ + [1349]={ [1]={ [1]={ limit={ @@ -28161,7 +29206,7 @@ return { [1]="share_charges_with_allies_in_your_presence" } }, - [1278]={ + [1350]={ [1]={ [1]={ limit={ @@ -28177,7 +29222,7 @@ return { [1]="shatter_on_killing_blow" } }, - [1279]={ + [1351]={ [1]={ [1]={ limit={ @@ -28206,7 +29251,7 @@ return { [1]="shattering_palm_target_damage_+%_final" } }, - [1280]={ + [1352]={ [1]={ [1]={ limit={ @@ -28231,7 +29276,7 @@ return { [1]="shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed" } }, - [1281]={ + [1353]={ [1]={ [1]={ limit={ @@ -28260,7 +29305,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [1282]={ + [1354]={ [1]={ [1]={ limit={ @@ -28269,7 +29314,7 @@ return { [2]="#" } }, - text="{0}% more Damage when destroyed by a Slam" + text="{0}% more Damage if destroyed by your Skills" }, [2]={ [1]={ @@ -28282,14 +29327,14 @@ return { [2]=-1 } }, - text="{0}% less Damage when destroyed by a Slam" + text="{0}% less Damage if destroyed by your Skills" } }, stats={ [1]="shield_wall_damage_+%_final_when_slammed" } }, - [1283]={ + [1355]={ [1]={ [1]={ limit={ @@ -28318,7 +29363,7 @@ return { [1]="shock_effect_+%" } }, - [1284]={ + [1356]={ [1]={ [1]={ limit={ @@ -28347,7 +29392,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [1285]={ + [1357]={ [1]={ [1]={ limit={ @@ -28363,7 +29408,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [1286]={ + [1358]={ [1]={ [1]={ limit={ @@ -28388,7 +29433,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [1287]={ + [1359]={ [1]={ [1]={ limit={ @@ -28417,7 +29462,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [1288]={ + [1360]={ [1]={ [1]={ limit={ @@ -28446,7 +29491,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [1289]={ + [1361]={ [1]={ [1]={ [1]={ @@ -28466,7 +29511,7 @@ return { [1]="shrapnel_shot_cone_placement_distance_+" } }, - [1290]={ + [1362]={ [1]={ [1]={ limit={ @@ -28482,7 +29527,7 @@ return { [1]="shrapnel_trap_number_of_secondary_explosions" } }, - [1291]={ + [1363]={ [1]={ [1]={ limit={ @@ -28498,7 +29543,7 @@ return { [1]="sigil_attached_target_fire_penetration_%" } }, - [1292]={ + [1364]={ [1]={ [1]={ limit={ @@ -28514,7 +29559,7 @@ return { [1]="sigil_attached_target_lightning_penetration_%" } }, - [1293]={ + [1365]={ [1]={ [1]={ [1]={ @@ -28534,7 +29579,7 @@ return { [1]="sigil_recall_extend_base_secondary_skill_effect_duration" } }, - [1294]={ + [1366]={ [1]={ [1]={ [1]={ @@ -28554,7 +29599,7 @@ return { [1]="sigil_recall_extend_base_skill_effect_duration" } }, - [1295]={ + [1367]={ [1]={ [1]={ limit={ @@ -28570,7 +29615,7 @@ return { [1]="sigils_can_target_reaper_minions" } }, - [1296]={ + [1368]={ [1]={ [1]={ [1]={ @@ -28603,7 +29648,7 @@ return { [1]="skeletal_cleric_revived_skeletons_immune_for_X_ms" } }, - [1297]={ + [1369]={ [1]={ [1]={ limit={ @@ -28619,7 +29664,7 @@ return { [1]="skill_angle_+%_in_sand_stance" } }, - [1298]={ + [1370]={ [1]={ [1]={ limit={ @@ -28648,7 +29693,7 @@ return { [1]="skill_area_angle_+%" } }, - [1299]={ + [1371]={ [1]={ [1]={ limit={ @@ -28673,7 +29718,7 @@ return { [1]="skill_area_of_effect_+%_final_in_sand_stance" } }, - [1300]={ + [1372]={ [1]={ [1]={ [1]={ @@ -28693,7 +29738,7 @@ return { [1]="skill_base_covered_in_oil_movement_speed_+%_final_to_apply" } }, - [1301]={ + [1373]={ [1]={ [1]={ limit={ @@ -28702,14 +29747,14 @@ return { [2]="#" } }, - text="Covering Enemies in Oil applies Fire Exposure, lowering Total Fire Resistance by {0}%" + text="Covering Enemies in Oil applies Exposure, lowering Total Elemental Resistances by {0}%" } }, stats={ - [1]="skill_base_covered_in_oil_exposure_-_to_total_fire_resistance" + [1]="skill_base_covered_in_oil_exposure_-_to_total_elemental_resistance" } }, - [1302]={ + [1374]={ [1]={ [1]={ [1]={ @@ -28729,7 +29774,7 @@ return { [1]="skill_base_ground_oil_movement_speed_+%_final_to_apply" } }, - [1303]={ + [1375]={ [1]={ [1]={ limit={ @@ -28738,14 +29783,14 @@ return { [2]="#" } }, - text="Oil Ground applies Fire Exposure to Enemies, lowering Total Fire Resistance by {0}%" + text="Oil Ground applies Exposure to Enemies, lowering Total Elemental Resistances by {0}%" } }, stats={ - [1]="skill_base_ground_oil_exposure_-_to_total_fire_resistance" + [1]="skill_base_ground_oil_exposure_-_to_total_elemental_resistance" } }, - [1304]={ + [1376]={ [1]={ [1]={ limit={ @@ -28761,7 +29806,7 @@ return { [1]="base_chance_to_shock_%_from_skill" } }, - [1305]={ + [1377]={ [1]={ [1]={ limit={ @@ -28790,7 +29835,7 @@ return { [1]="skill_buff_grants_attack_and_cast_speed_+%" } }, - [1306]={ + [1378]={ [1]={ [1]={ limit={ @@ -28819,28 +29864,44 @@ return { [1]="skill_code_movement_speed_+%_final" } }, - [1307]={ + [1379]={ [1]={ }, stats={ [1]="skill_consume_frenzy_charge_to_gain_skill_speed_+%_final" } }, - [1308]={ + [1380]={ [1]={ }, stats={ [1]="skill_consume_power_charge_to_gain_critical_strike_chance_+%_final" } }, - [1309]={ + [1381]={ [1]={ }, stats={ [1]="skill_covered_in_oil_movement_speed_+%_final_to_apply" } }, - [1310]={ + [1382]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse does not apply to enemies above level {0}" + } + }, + stats={ + [1]="skill_curses_cannot_apply_to_targets_above_level" + } + }, + [1383]={ [1]={ [1]={ limit={ @@ -28869,14 +29930,14 @@ return { [1]="skill_damage_+%_final_per_chain_from_skill_specific_stat" } }, - [1311]={ + [1384]={ [1]={ }, stats={ [1]="skill_detonation_time" } }, - [1312]={ + [1385]={ [1]={ [1]={ limit={ @@ -28892,7 +29953,7 @@ return { [1]="skill_echo_chance_%" } }, - [1313]={ + [1386]={ [1]={ [1]={ limit={ @@ -28921,7 +29982,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [1314]={ + [1387]={ [1]={ [1]={ [1]={ @@ -28941,7 +30002,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [1315]={ + [1388]={ [1]={ [1]={ limit={ @@ -28970,7 +30031,152 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [1316]={ + [1389]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Culling a monster grants {2} Frenzy Charges" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charge\nRare monsters grant {1} Frenzy Charge\nUnique monsters grant {2} Frenzy Charges" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charge\nRare monsters grant {1} Frenzy Charges\nUnique monsters grant {2} Frenzy Charge" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charges\nRare monsters grant {1} Frenzy Charge\nUnique monsters grant {2} Frenzy Charge" + }, + [5]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charges\nRare monsters grant {1} Frenzy Charge\nUnique monsters grant {2} Frenzy Charges" + }, + [6]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charges\nRare monsters grant {1} Frenzy Charges\nUnique monsters grant {2} Frenzy Charge" + }, + [7]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charge\nRare monsters grant {1} Frenzy Charges\nUnique monsters grant {2} Frenzy Charges" + }, + [8]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Normal and Magic monsters grant {0} Frenzy Charges\nRare monsters grant {1} Frenzy Charges\nUnique monsters grant {2} Frenzy Charges" + } + }, + stats={ + [1]="skill_grant_X_frenzy_charges_against_normal_and_magic_monsters", + [2]="skill_grant_X_frenzy_charges_against_rare_monsters", + [3]="skill_grant_X_frenzy_charges_against_unique_monsters" + } + }, + [1390]={ [1]={ [1]={ limit={ @@ -28986,14 +30192,14 @@ return { [1]="skill_grant_elusive_when_used" } }, - [1317]={ + [1391]={ [1]={ }, stats={ [1]="skill_ground_oil_movement_speed_+%_final_to_apply" } }, - [1318]={ + [1392]={ [1]={ [1]={ limit={ @@ -29009,7 +30215,7 @@ return { [1]="skill_has_trigger_from_unique_item" } }, - [1319]={ + [1393]={ [1]={ [1]={ [1]={ @@ -29042,7 +30248,7 @@ return { [1]="skill_jagged_ground_base_duration_ms" } }, - [1320]={ + [1394]={ [1]={ [1]={ limit={ @@ -29058,14 +30264,14 @@ return { [1]="skill_maximum_travel_distance_+%" } }, - [1321]={ + [1395]={ [1]={ }, stats={ [1]="skill_offering_targets_an_additional_skeleton" } }, - [1322]={ + [1396]={ [1]={ [1]={ limit={ @@ -29081,7 +30287,7 @@ return { [1]="skill_travel_distance_+%" } }, - [1323]={ + [1397]={ [1]={ [1]={ limit={ @@ -29097,7 +30303,7 @@ return { [1]="skill_triggered_by_snipe" } }, - [1324]={ + [1398]={ [1]={ [1]={ limit={ @@ -29122,7 +30328,7 @@ return { [1]="skill_triggered_when_you_focus_chance_%" } }, - [1325]={ + [1399]={ [1]={ [1]={ limit={ @@ -29151,7 +30357,7 @@ return { [1]="skill_used_by_mirage_chieftain_damage_+%_final" } }, - [1326]={ + [1400]={ [1]={ [1]={ [1]={ @@ -29171,7 +30377,7 @@ return { [1]="skill_used_by_mirage_warrior_damage_+%_final" } }, - [1327]={ + [1401]={ [1]={ [1]={ [1]={ @@ -29191,7 +30397,7 @@ return { [1]="skill_withered_duration_ms" } }, - [1328]={ + [1402]={ [1]={ [1]={ limit={ @@ -29207,7 +30413,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [1329]={ + [1403]={ [1]={ [1]={ limit={ @@ -29232,7 +30438,7 @@ return { [1]="slither_wither_stacks" } }, - [1330]={ + [1404]={ [1]={ [1]={ limit={ @@ -29248,14 +30454,14 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [1331]={ + [1405]={ [1]={ }, stats={ [1]="solar_orb_pulse_frequency_ms" } }, - [1332]={ + [1406]={ [1]={ [1]={ limit={ @@ -29271,7 +30477,7 @@ return { [1]="soulfeast_chaos_damage_to_self" } }, - [1333]={ + [1407]={ [1]={ [1]={ limit={ @@ -29287,7 +30493,7 @@ return { [1]="soulfeast_maximum_stages" } }, - [1334]={ + [1408]={ [1]={ [1]={ limit={ @@ -29303,7 +30509,7 @@ return { [1]="soulfeast_number_of_secondary_projectiles" } }, - [1335]={ + [1409]={ [1]={ [1]={ limit={ @@ -29332,7 +30538,7 @@ return { [1]="soulfeast_spell_damage_+%_final_per_stage" } }, - [1336]={ + [1410]={ [1]={ [1]={ limit={ @@ -29348,7 +30554,7 @@ return { [1]="spear_wall_num_spears" } }, - [1337]={ + [1411]={ [1]={ [1]={ limit={ @@ -29364,7 +30570,7 @@ return { [1]="spearfield_maim_slows_an_additional_%" } }, - [1338]={ + [1412]={ [1]={ [1]={ [1]={ @@ -29384,7 +30590,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [1339]={ + [1413]={ [1]={ [1]={ limit={ @@ -29409,7 +30615,7 @@ return { [1]="spectral_spiral_weapon_number_of_bounces" } }, - [1340]={ + [1414]={ [1]={ [1]={ [1]={ @@ -29429,7 +30635,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [1341]={ + [1415]={ [1]={ [1]={ limit={ @@ -29458,7 +30664,7 @@ return { [1]="spell_area_damage_+%_in_blood_stance" } }, - [1342]={ + [1416]={ [1]={ [1]={ limit={ @@ -29487,14 +30693,14 @@ return { [1]="spell_area_of_effect_+%_in_sand_stance" } }, - [1343]={ + [1417]={ [1]={ }, stats={ [1]="spell_cast_duration_ms" } }, - [1344]={ + [1418]={ [1]={ [1]={ limit={ @@ -29510,21 +30716,21 @@ return { [1]="spell_cast_time_cannot_be_modified" } }, - [1345]={ + [1419]={ [1]={ }, stats={ [1]="spell_critical_hit_damage_bonus" } }, - [1346]={ + [1420]={ [1]={ }, stats={ [1]="spell_critical_strike_chance" } }, - [1347]={ + [1421]={ [1]={ [1]={ limit={ @@ -29540,14 +30746,14 @@ return { [1]="spell_echo_plus_chance_double_damage_%_final" } }, - [1348]={ + [1422]={ [1]={ }, stats={ [1]="spell_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1349]={ + [1423]={ [1]={ [1]={ limit={ @@ -29563,7 +30769,7 @@ return { [1]="spell_has_trigger_from_crafted_item_mod" } }, - [1350]={ + [1424]={ [1]={ [1]={ limit={ @@ -29584,7 +30790,7 @@ return { [2]="spell_maximum_base_physical_damage_per_shield_quality" } }, - [1351]={ + [1425]={ [1]={ }, stats={ @@ -29592,7 +30798,7 @@ return { [2]="spell_maximum_chaos_damage" } }, - [1352]={ + [1426]={ [1]={ }, stats={ @@ -29600,7 +30806,7 @@ return { [2]="spell_maximum_cold_damage" } }, - [1353]={ + [1427]={ [1]={ }, stats={ @@ -29608,7 +30814,7 @@ return { [2]="spell_maximum_fire_damage" } }, - [1354]={ + [1428]={ [1]={ }, stats={ @@ -29616,7 +30822,7 @@ return { [2]="spell_maximum_lightning_damage" } }, - [1355]={ + [1429]={ [1]={ }, stats={ @@ -29624,7 +30830,7 @@ return { [2]="spell_maximum_physical_damage" } }, - [1356]={ + [1430]={ [1]={ }, stats={ @@ -29632,14 +30838,14 @@ return { [2]="spell_maximum_total_damage" } }, - [1357]={ + [1431]={ [1]={ }, stats={ [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [1358]={ + [1432]={ [1]={ [1]={ limit={ @@ -29655,7 +30861,7 @@ return { [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" } }, - [1359]={ + [1433]={ [1]={ [1]={ limit={ @@ -29680,7 +30886,27 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [1360]={ + [1434]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains {0} Energy per 0.1 seconds of base\ncast time of Spells you cast" + } + }, + stats={ + [1]="spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time" + } + }, + [1435]={ [1]={ [1]={ limit={ @@ -29696,7 +30922,7 @@ return { [1]="spellslinger_mana_reservation" } }, - [1361]={ + [1436]={ [1]={ [1]={ limit={ @@ -29721,7 +30947,7 @@ return { [1]="spider_aspect_max_web_count" } }, - [1362]={ + [1437]={ [1]={ [1]={ limit={ @@ -29737,7 +30963,7 @@ return { [1]="spike_slam_additional_spike_%_chance" } }, - [1363]={ + [1438]={ [1]={ [1]={ limit={ @@ -29766,7 +30992,7 @@ return { [1]="spike_slam_explosion_damage_+%_final" } }, - [1364]={ + [1439]={ [1]={ [1]={ limit={ @@ -29795,7 +31021,7 @@ return { [1]="spike_slam_fissure_damage_+%_final" } }, - [1365]={ + [1440]={ [1]={ [1]={ limit={ @@ -29824,7 +31050,7 @@ return { [1]="spike_slam_fissure_length_+%" } }, - [1366]={ + [1441]={ [1]={ [1]={ limit={ @@ -29884,7 +31110,7 @@ return { [2]="quality_display_earthshatter_is_gem" } }, - [1367]={ + [1442]={ [1]={ [1]={ limit={ @@ -29909,7 +31135,7 @@ return { [1]="spike_slam_num_spikes" } }, - [1368]={ + [1443]={ [1]={ [1]={ limit={ @@ -29938,7 +31164,7 @@ return { [1]="spike_slam_spike_damage_+%_final" } }, - [1369]={ + [1444]={ [1]={ [1]={ limit={ @@ -29967,7 +31193,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [1370]={ + [1445]={ [1]={ [1]={ limit={ @@ -29983,7 +31209,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [1371]={ + [1446]={ [1]={ [1]={ limit={ @@ -30012,7 +31238,7 @@ return { [1]="spiritual_cry_double_movement_velocity_+%" } }, - [1372]={ + [1447]={ [1]={ [1]={ limit={ @@ -30041,7 +31267,7 @@ return { [1]="splitting_steel_area_+%_final_after_splitting" } }, - [1373]={ + [1448]={ [1]={ [1]={ limit={ @@ -30070,7 +31296,7 @@ return { [1]="static_strike_beam_damage_+%_final" } }, - [1374]={ + [1449]={ [1]={ [1]={ limit={ @@ -30099,7 +31325,7 @@ return { [1]="static_strike_beam_damage_+%_final_while_moving" } }, - [1375]={ + [1450]={ [1]={ [1]={ limit={ @@ -30115,7 +31341,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [1376]={ + [1451]={ [1]={ [1]={ limit={ @@ -30144,7 +31370,7 @@ return { [1]="stealth_+%" } }, - [1377]={ + [1452]={ [1]={ [1]={ limit={ @@ -30169,7 +31395,7 @@ return { [1]="steel_ammo_consumed_per_use" } }, - [1378]={ + [1453]={ [1]={ [1]={ limit={ @@ -30194,7 +31420,7 @@ return { [1]="steel_skill_%_chance_to_not_consume_ammo" } }, - [1379]={ + [1454]={ [1]={ [1]={ limit={ @@ -30223,7 +31449,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [1380]={ + [1455]={ [1]={ [1]={ limit={ @@ -30252,7 +31478,27 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [1381]={ + [1456]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Infusion grants {0}% of maximum Life Regenerated per second" + } + }, + stats={ + [1]="storm_barrier_grants_life_regeneration_rate_per_minute_%" + } + }, + [1457]={ [1]={ [1]={ limit={ @@ -30281,7 +31527,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [1382]={ + [1458]={ [1]={ [1]={ limit={ @@ -30297,7 +31543,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [1383]={ + [1459]={ [1]={ [1]={ limit={ @@ -30313,7 +31559,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [1384]={ + [1460]={ [1]={ [1]={ limit={ @@ -30342,7 +31588,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [1385]={ + [1461]={ [1]={ [1]={ limit={ @@ -30358,7 +31604,7 @@ return { [1]="storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [1386]={ + [1462]={ [1]={ [1]={ limit={ @@ -30387,7 +31633,7 @@ return { [1]="storm_burst_explosion_area_of_effect_+%" } }, - [1387]={ + [1463]={ [1]={ [1]={ limit={ @@ -30403,7 +31649,7 @@ return { [1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap" } }, - [1388]={ + [1464]={ [1]={ [1]={ limit={ @@ -30432,7 +31678,7 @@ return { [1]="storm_burst_zap_area_of_effect_+%" } }, - [1389]={ + [1465]={ [1]={ [1]={ limit={ @@ -30448,7 +31694,7 @@ return { [1]="storm_call_chance_to_strike_on_cast_%" } }, - [1390]={ + [1466]={ [1]={ [1]={ limit={ @@ -30473,7 +31719,7 @@ return { [1]="storm_rain_pulse_count" } }, - [1391]={ + [1467]={ [1]={ [1]={ limit={ @@ -30489,14 +31735,14 @@ return { [1]="stormblast_bolts_maximum_active_bolt_count" } }, - [1392]={ + [1468]={ [1]={ }, stats={ [1]="stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets" } }, - [1393]={ + [1469]={ [1]={ [1]={ limit={ @@ -30525,7 +31771,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [1394]={ + [1470]={ [1]={ [1]={ limit={ @@ -30541,7 +31787,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [1395]={ + [1471]={ [1]={ [1]={ limit={ @@ -30557,7 +31803,7 @@ return { [1]="summon_mirage_warrior_on_crit" } }, - [1396]={ + [1472]={ [1]={ [1]={ limit={ @@ -30586,7 +31832,7 @@ return { [1]="summoned_spider_grants_attack_speed_+%" } }, - [1397]={ + [1473]={ [1]={ [1]={ limit={ @@ -30615,7 +31861,7 @@ return { [1]="sunder_shockwave_area_of_effect_+%" } }, - [1398]={ + [1474]={ [1]={ [1]={ limit={ @@ -30644,7 +31890,7 @@ return { [1]="sunder_wave_area_of_effect_+%" } }, - [1399]={ + [1475]={ [1]={ [1]={ limit={ @@ -30673,7 +31919,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [1400]={ + [1476]={ [1]={ [1]={ limit={ @@ -30689,7 +31935,7 @@ return { [1]="sunder_wave_min_steps" } }, - [1401]={ + [1477]={ [1]={ }, stats={ @@ -30698,14 +31944,14 @@ return { [3]="shock_nearby_enemy_base_area_of_effect_radius" } }, - [1402]={ + [1478]={ [1]={ }, stats={ [1]="support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [1403]={ + [1479]={ [1]={ [1]={ limit={ @@ -30721,7 +31967,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [1404]={ + [1480]={ [1]={ [1]={ limit={ @@ -30737,7 +31983,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine" } }, - [1405]={ + [1481]={ [1]={ [1]={ limit={ @@ -30753,7 +31999,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine" } }, - [1406]={ + [1482]={ [1]={ [1]={ limit={ @@ -30769,21 +32015,21 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [1407]={ + [1483]={ [1]={ }, stats={ [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [1408]={ + [1484]={ [1]={ }, stats={ - [1]="support_anticipation_rapid_fire_count" + [1]="skill_max_unleash_seals" } }, - [1409]={ + [1485]={ [1]={ [1]={ limit={ @@ -30799,7 +32045,7 @@ return { [1]="support_apply_daze_on_warcry" } }, - [1410]={ + [1486]={ [1]={ [1]={ [1]={ @@ -30824,14 +32070,14 @@ return { [2]="support_arcane_surge_duration_ms" } }, - [1411]={ + [1487]={ [1]={ }, stats={ [1]="support_armour_explosion" } }, - [1412]={ + [1488]={ [1]={ [1]={ [1]={ @@ -30851,7 +32097,7 @@ return { [1]="support_aura_duration_buff_duration" } }, - [1413]={ + [1489]={ [1]={ [1]={ limit={ @@ -30880,15 +32126,7 @@ return { [1]="support_better_ailments_damaging_ailment_effect_+%_final" } }, - [1414]={ - [1]={ - }, - stats={ - [1]="support_blood_fountain_life_regeneration_rate_per_minute_%", - [2]="support_blood_fountain_radius" - } - }, - [1415]={ + [1490]={ [1]={ [1]={ limit={ @@ -30913,7 +32151,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [1416]={ + [1491]={ [1]={ }, stats={ @@ -30921,42 +32159,42 @@ return { [2]="support_bursting_plague_max_value_%_of_max_life" } }, - [1417]={ + [1492]={ [1]={ }, stats={ [1]="support_cannibalism_recover_%_maximum_life_on_kill" } }, - [1418]={ + [1493]={ [1]={ }, stats={ [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" } }, - [1419]={ + [1494]={ [1]={ }, stats={ [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" } }, - [1420]={ + [1495]={ [1]={ }, stats={ [1]="support_clarity_mana_regeneration_rate_+%" } }, - [1421]={ + [1496]={ [1]={ }, stats={ [1]="support_close_combat_attack_damage_+%_final_from_distance" } }, - [1422]={ + [1497]={ [1]={ [1]={ limit={ @@ -30985,23 +32223,28 @@ return { [1]="support_combo_finisher_damage_+%_final" } }, - [1423]={ + [1498]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]="#", + [2]="#" } }, text="Requires {0} Combo to use" } }, stats={ - [1]="support_combo_finisher_required_number_of_combo_stacks" + [1]="support_combo_finisher_required_number_of_combo_stacks", + [2]="support_combo_finisher_max_combo_required" } }, - [1424]={ + [1499]={ [1]={ [1]={ limit={ @@ -31030,7 +32273,7 @@ return { [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" } }, - [1425]={ + [1500]={ [1]={ [1]={ limit={ @@ -31059,21 +32302,21 @@ return { [1]="support_cooldown_reduction_cooldown_recovery_+%" } }, - [1426]={ + [1501]={ [1]={ }, stats={ [1]="support_corrupting_cry_corrupted_blood_damage_per_minute" } }, - [1427]={ + [1502]={ [1]={ }, stats={ [1]="support_corrupting_cry_corrupted_blood_duration_ms" } }, - [1428]={ + [1503]={ [1]={ [1]={ [1]={ @@ -31093,42 +32336,49 @@ return { [1]="support_crushing_stuns_crush_on_stun_ms" } }, - [1429]={ + [1504]={ [1]={ }, stats={ [1]="support_culling_strike_vs_rare_or_unique_enemy" } }, - [1430]={ + [1505]={ [1]={ }, stats={ [1]="support_damage_+%_final_per_combo_stack" } }, - [1431]={ + [1506]={ [1]={ }, stats={ [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" } }, - [1432]={ + [1507]={ + [1]={ + }, + stats={ + [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds" + } + }, + [1508]={ [1]={ }, stats={ [1]="support_daze_break_duration_ms" } }, - [1433]={ + [1509]={ [1]={ }, stats={ [1]="support_dazed_cry_duration_ms" } }, - [1434]={ + [1510]={ [1]={ [1]={ limit={ @@ -31166,28 +32416,28 @@ return { [2]="support_debilitate_hit_damage_max_poison_stacks" } }, - [1435]={ + [1511]={ [1]={ }, stats={ [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" } }, - [1436]={ + [1512]={ [1]={ }, stats={ [1]="support_empowered_culling_strike" } }, - [1437]={ + [1513]={ [1]={ }, stats={ [1]="support_empowered_damage_+%_final" } }, - [1438]={ + [1514]={ [1]={ [1]={ [1]={ @@ -31207,21 +32457,28 @@ return { [1]="support_executioner_buff_duration_ms" } }, - [1439]={ + [1515]={ [1]={ }, stats={ [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [1440]={ + [1516]={ [1]={ }, stats={ [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [1441]={ + [1517]={ + [1]={ + }, + stats={ + [1]="support_executioner_gain_two_rare_monster_mod_on_kill_ms" + } + }, + [1518]={ [1]={ [1]={ limit={ @@ -31237,14 +32494,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [1442]={ - [1]={ - }, - stats={ - [1]="support_exposure_effect_+%" - } - }, - [1443]={ + [1519]={ [1]={ [1]={ limit={ @@ -31260,7 +32510,7 @@ return { [1]="support_far_combat_attack_damage_+%_final_from_distance" } }, - [1444]={ + [1520]={ [1]={ [1]={ limit={ @@ -31289,21 +32539,21 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [1445]={ + [1521]={ [1]={ }, stats={ [1]="support_fork_forked_projectile_damage_+%_final" } }, - [1446]={ + [1522]={ [1]={ }, stats={ [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [1447]={ + [1523]={ [1]={ [1]={ [1]={ @@ -31323,7 +32573,7 @@ return { [1]="support_ghost_duration" } }, - [1448]={ + [1524]={ [1]={ [1]={ limit={ @@ -31352,7 +32602,7 @@ return { [1]="support_greater_spell_echo_area_of_effect_+%_per_repeat" } }, - [1449]={ + [1525]={ [1]={ [1]={ limit={ @@ -31381,7 +32631,7 @@ return { [1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat" } }, - [1450]={ + [1526]={ [1]={ [1]={ limit={ @@ -31410,7 +32660,7 @@ return { [1]="support_grenade_damage_+%_final" } }, - [1451]={ + [1527]={ [1]={ [1]={ limit={ @@ -31431,28 +32681,28 @@ return { [2]="support_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1452]={ + [1528]={ [1]={ }, stats={ [1]="support_herbalism_life_recovery_+%_from_life_flasks" } }, - [1453]={ + [1529]={ [1]={ }, stats={ [1]="support_hinder_dots_also_apply_hinder" } }, - [1454]={ + [1530]={ [1]={ }, stats={ [1]="support_holy_descent_consecrated_ground_duration_ms" } }, - [1455]={ + [1531]={ [1]={ [1]={ limit={ @@ -31481,7 +32731,7 @@ return { [1]="support_hypothermia_hit_damage_freeze_multiplier_+%_final" } }, - [1456]={ + [1532]={ [1]={ }, stats={ @@ -31489,7 +32739,7 @@ return { [2]="support_ice_bite_virtual_buff_duration" } }, - [1457]={ + [1533]={ [1]={ [1]={ limit={ @@ -31518,7 +32768,7 @@ return { [1]="support_ignite_duration_ignite_effect_+%_final" } }, - [1458]={ + [1534]={ [1]={ [1]={ limit={ @@ -31547,21 +32797,21 @@ return { [1]="support_ignite_prolif_ignite_effect_+%_final" } }, - [1459]={ + [1535]={ [1]={ }, stats={ [1]="support_ignite_proliferation_radius" } }, - [1460]={ + [1536]={ [1]={ }, stats={ [1]="support_impact_shockwave_base_splash_radius" } }, - [1461]={ + [1537]={ [1]={ [1]={ limit={ @@ -31582,7 +32832,7 @@ return { [2]="support_inevitable_criticals_critical_strike_chance_+%_cap" } }, - [1462]={ + [1538]={ [1]={ }, stats={ @@ -31590,7 +32840,7 @@ return { [2]="support_innervate_buff_duration_ms" } }, - [1463]={ + [1539]={ [1]={ [1]={ limit={ @@ -31619,21 +32869,21 @@ return { [1]="support_jagged_ground_area_of_effect_+%_final" } }, - [1464]={ + [1540]={ [1]={ }, stats={ [1]="support_knockback_wave_on_stunned" } }, - [1465]={ + [1541]={ [1]={ }, stats={ [1]="support_life_flask_charges_gained_+%_final_from_killing_blow" } }, - [1466]={ + [1542]={ [1]={ [1]={ [1]={ @@ -31666,7 +32916,7 @@ return { [1]="support_lifetap_buff_duration" } }, - [1467]={ + [1543]={ [1]={ [1]={ limit={ @@ -31682,7 +32932,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [1468]={ + [1544]={ [1]={ [1]={ limit={ @@ -31698,7 +32948,7 @@ return { [1]="support_lockdown_distance_based_pin_damage_+%_final" } }, - [1469]={ + [1545]={ [1]={ [1]={ limit={ @@ -31727,7 +32977,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [1470]={ + [1546]={ [1]={ [1]={ limit={ @@ -31756,22 +33006,14 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [1471]={ + [1547]={ [1]={ }, stats={ [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" } }, - [1472]={ - [1]={ - }, - stats={ - [1]="support_mana_fountain_mana_regeneration_rate_+%", - [2]="support_mana_fountain_radius" - } - }, - [1473]={ + [1548]={ [1]={ [1]={ limit={ @@ -31800,7 +33042,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1474]={ + [1549]={ [1]={ [1]={ limit={ @@ -31821,7 +33063,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1475]={ + [1550]={ [1]={ [1]={ limit={ @@ -31850,7 +33092,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1476]={ + [1551]={ [1]={ [1]={ limit={ @@ -31879,7 +33121,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1477]={ + [1552]={ [1]={ [1]={ limit={ @@ -31908,7 +33150,7 @@ return { [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" } }, - [1478]={ + [1553]={ [1]={ }, stats={ @@ -31916,7 +33158,7 @@ return { [2]="support_minion_pact_damage_+%_final" } }, - [1479]={ + [1554]={ [1]={ [1]={ limit={ @@ -31945,7 +33187,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1480]={ + [1555]={ [1]={ [1]={ limit={ @@ -31974,7 +33216,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1481]={ + [1556]={ [1]={ [1]={ [1]={ @@ -31994,7 +33236,7 @@ return { [1]="support_mirage_archer_duration" } }, - [1482]={ + [1557]={ [1]={ [1]={ [1]={ @@ -32036,14 +33278,14 @@ return { [2]="support_momnetum_damage_+%_final_with_momentum" } }, - [1483]={ + [1558]={ [1]={ }, stats={ [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" } }, - [1484]={ + [1559]={ [1]={ [1]={ [1]={ @@ -32076,27 +33318,7 @@ return { [1]="support_overkill_icy_vortex_duration_ms" } }, - [1485]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Inflict Overpowered for {0} seconds when Blocked" - } - }, - stats={ - [1]="support_overpowered_duration_ms" - } - }, - [1486]={ + [1560]={ [1]={ [1]={ limit={ @@ -32121,7 +33343,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1487]={ + [1561]={ [1]={ [1]={ limit={ @@ -32137,14 +33359,14 @@ return { [1]="support_physical_damage_%_to_gain_as_daze_build_up" } }, - [1488]={ + [1562]={ [1]={ }, stats={ [1]="support_pierce_projectile_damage_+%_final_if_pierced_enemy" } }, - [1489]={ + [1563]={ [1]={ [1]={ limit={ @@ -32173,7 +33395,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1490]={ + [1564]={ [1]={ [1]={ limit={ @@ -32189,7 +33411,7 @@ return { [1]="support_precision_accuracy_rating_+%" } }, - [1491]={ + [1565]={ [1]={ [1]={ limit={ @@ -32218,15 +33440,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1492]={ - [1]={ - }, - stats={ - [1]="support_rage_fountain_rage_regeneration_per_minute", - [2]="support_rage_fountain_radius" - } - }, - [1493]={ + [1566]={ [1]={ [1]={ [1]={ @@ -32246,7 +33460,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1494]={ + [1567]={ [1]={ }, stats={ @@ -32254,30 +33468,14 @@ return { [2]="support_rageforged_enraged_damage_+%_final" } }, - [1495]={ + [1568]={ [1]={ }, stats={ [1]="support_recover_%_maximum_energy_shield_killing_shocked_enemies" } }, - [1496]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Enemies have -{0}% chance to Block Attack or Spell Damage from this Skill" - } - }, - stats={ - [1]="support_reduce_enemy_block_and_spell_block_%" - } - }, - [1497]={ + [1569]={ [1]={ [1]={ [1]={ @@ -32297,7 +33495,7 @@ return { [1]="support_regenerate_mana_per_minute_on_shock" } }, - [1498]={ + [1570]={ [1]={ [1]={ limit={ @@ -32326,14 +33524,14 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1499]={ + [1571]={ [1]={ }, stats={ [1]="support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy" } }, - [1500]={ + [1572]={ [1]={ [1]={ [1]={ @@ -32358,7 +33556,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1501]={ + [1573]={ [1]={ [1]={ [1]={ @@ -32388,28 +33586,28 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1502]={ + [1574]={ [1]={ }, stats={ [1]="support_slam_chance_for_one_additional_aftershock_%" } }, - [1503]={ + [1575]={ [1]={ }, stats={ [1]="support_slam_chance_for_three_additional_aftershocks_%" } }, - [1504]={ + [1576]={ [1]={ }, stats={ [1]="support_slam_chance_for_two_additional_aftershocks_%" } }, - [1505]={ + [1577]={ [1]={ [1]={ [1]={ @@ -32442,7 +33640,7 @@ return { [1]="support_slashing_buff_duration_ms" } }, - [1506]={ + [1578]={ [1]={ [1]={ limit={ @@ -32471,7 +33669,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1507]={ + [1579]={ [1]={ [1]={ limit={ @@ -32487,7 +33685,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [1508]={ + [1580]={ [1]={ [1]={ limit={ @@ -32563,7 +33761,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1509]={ + [1581]={ [1]={ [1]={ limit={ @@ -32592,7 +33790,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1510]={ + [1582]={ [1]={ [1]={ limit={ @@ -32621,14 +33819,14 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1511]={ + [1583]={ [1]={ }, stats={ - [1]="support_spell_cascade_area_of_effect_+%_per_cascade" + [1]="support_spell_cascade_area_of_effect_+%_for_cascade" } }, - [1512]={ + [1584]={ [1]={ }, stats={ @@ -32636,14 +33834,21 @@ return { [2]="support_spell_cascade_sideways" } }, - [1513]={ + [1585]={ + [1]={ + }, + stats={ + [1]="support_spell_echo_area_of_effect_+%" + } + }, + [1586]={ [1]={ }, stats={ [1]="support_spell_echo_area_of_effect_+%_final" } }, - [1514]={ + [1587]={ [1]={ [1]={ limit={ @@ -32672,7 +33877,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_0" } }, - [1515]={ + [1588]={ [1]={ [1]={ limit={ @@ -32701,7 +33906,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_1" } }, - [1516]={ + [1589]={ [1]={ [1]={ limit={ @@ -32730,7 +33935,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_2" } }, - [1517]={ + [1590]={ [1]={ [1]={ limit={ @@ -32759,7 +33964,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_3" } }, - [1518]={ + [1591]={ [1]={ [1]={ limit={ @@ -32788,35 +33993,35 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [1519]={ + [1592]={ [1]={ }, stats={ [1]="support_spell_echo_number_of_echo_cascades" } }, - [1520]={ + [1593]={ [1]={ }, stats={ [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1521]={ + [1594]={ [1]={ }, stats={ [1]="support_stability_heavy_stun_threshold_+%_final_while_performing_action" } }, - [1522]={ + [1595]={ [1]={ }, stats={ [1]="support_stomping_ground" } }, - [1523]={ + [1596]={ [1]={ [1]={ limit={ @@ -32845,7 +34050,7 @@ return { [1]="support_storm_barrier_chaos_damage_+%_final_to_apply" } }, - [1524]={ + [1597]={ [1]={ [1]={ limit={ @@ -32874,7 +34079,7 @@ return { [1]="support_storm_barrier_cold_damage_+%_final_to_apply" } }, - [1525]={ + [1598]={ [1]={ [1]={ [1]={ @@ -32907,7 +34112,7 @@ return { [1]="support_storm_barrier_damage_buff_duration_ms" } }, - [1526]={ + [1599]={ [1]={ [1]={ limit={ @@ -32936,7 +34141,7 @@ return { [1]="support_storm_barrier_fire_damage_+%_final_to_apply" } }, - [1527]={ + [1600]={ [1]={ [1]={ limit={ @@ -32965,7 +34170,7 @@ return { [1]="support_storm_barrier_lightning_damage_+%_final_to_apply" } }, - [1528]={ + [1601]={ [1]={ [1]={ limit={ @@ -32994,7 +34199,7 @@ return { [1]="support_storm_barrier_physical_damage_+%_final_to_apply" } }, - [1529]={ + [1602]={ [1]={ [1]={ [1]={ @@ -33014,7 +34219,7 @@ return { [1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final" } }, - [1530]={ + [1603]={ [1]={ [1]={ [1]={ @@ -33034,7 +34239,7 @@ return { [1]="support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling" } }, - [1531]={ + [1604]={ [1]={ [1]={ [1]={ @@ -33054,7 +34259,7 @@ return { [1]="support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling" } }, - [1532]={ + [1605]={ [1]={ [1]={ [1]={ @@ -33074,7 +34279,7 @@ return { [1]="support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling" } }, - [1533]={ + [1606]={ [1]={ [1]={ [1]={ @@ -33094,7 +34299,7 @@ return { [1]="support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling" } }, - [1534]={ + [1607]={ [1]={ [1]={ limit={ @@ -33123,14 +34328,14 @@ return { [1]="support_stronger_ignites_ignite_effect_+%_final" } }, - [1535]={ + [1608]={ [1]={ }, stats={ [1]="support_trigger_mana_flare_on_crit" } }, - [1536]={ + [1609]={ [1]={ [1]={ limit={ @@ -33159,21 +34364,21 @@ return { [1]="support_unbound_ailments_damaging_ailment_effect_+%_final" } }, - [1537]={ + [1610]={ [1]={ }, stats={ [1]="support_unbreakable_light_stun_threshold_+%_final_while_performing_action" } }, - [1538]={ + [1611]={ [1]={ }, stats={ [1]="support_vitality_life_regeneration_rate_per_minute_%" } }, - [1539]={ + [1612]={ [1]={ }, stats={ @@ -33181,7 +34386,7 @@ return { [2]="support_enraged_warcry_+%_damage_final_for_exerted_attacks" } }, - [1540]={ + [1613]={ [1]={ [1]={ limit={ @@ -33210,7 +34415,7 @@ return { [1]="support_weapon_elemental_damage_+%_final" } }, - [1541]={ + [1614]={ [1]={ [1]={ limit={ @@ -33226,7 +34431,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1542]={ + [1615]={ [1]={ [1]={ limit={ @@ -33242,7 +34447,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1543]={ + [1616]={ [1]={ [1]={ limit={ @@ -33258,7 +34463,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1544]={ + [1617]={ [1]={ [1]={ limit={ @@ -33274,7 +34479,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1545]={ + [1618]={ [1]={ [1]={ limit={ @@ -33290,7 +34495,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1546]={ + [1619]={ [1]={ [1]={ [1]={ @@ -33310,7 +34515,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [1547]={ + [1620]={ [1]={ [1]={ limit={ @@ -33326,7 +34531,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%" } }, - [1548]={ + [1621]={ [1]={ [1]={ limit={ @@ -33342,7 +34547,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge" } }, - [1549]={ + [1622]={ [1]={ [1]={ limit={ @@ -33367,7 +34572,7 @@ return { [1]="temper_weapon_empowers_per_strike" } }, - [1550]={ + [1623]={ [1]={ [1]={ limit={ @@ -33376,7 +34581,7 @@ return { [2]="#" } }, - text="Bell deals {0}% more Damage per Hit taken" + text="Shockwave deals {0}% more Damage per Hit taken by Bell" }, [2]={ [1]={ @@ -33389,14 +34594,14 @@ return { [2]=-1 } }, - text="Bell deals {0}% less Damage per Hit taken" + text="Shockwave deals {0}% less Damage per Hit taken by Bell" } }, stats={ [1]="tempest_bell_damage_+%_final_per_time_hit" } }, - [1551]={ + [1624]={ [1]={ [1]={ limit={ @@ -33425,7 +34630,7 @@ return { [1]="tethered_enemies_take_attack_projectile_damage_taken_+%" } }, - [1552]={ + [1625]={ [1]={ [1]={ [1]={ @@ -33445,7 +34650,7 @@ return { [1]="tethered_movement_speed_+%_final" } }, - [1553]={ + [1626]={ [1]={ [1]={ limit={ @@ -33474,7 +34679,7 @@ return { [1]="tethered_movement_speed_+%_final_vs_unique_and_rare" } }, - [1554]={ + [1627]={ [1]={ [1]={ limit={ @@ -33490,7 +34695,23 @@ return { [1]="tethering_arrow_display_rope_limit" } }, - [1555]={ + [1628]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to leave Shocked Ground when Detonating Spears" + } + }, + stats={ + [1]="thunderous_leap_%_chance_for_shocked_ground_when_detonating" + } + }, + [1629]={ [1]={ [1]={ [1]={ @@ -33523,14 +34744,14 @@ return { [1]="tornado_base_damage_interval_ms" } }, - [1556]={ + [1630]={ [1]={ }, stats={ [1]="tornado_damage_interval_ms" } }, - [1557]={ + [1631]={ [1]={ [1]={ [1]={ @@ -33550,7 +34771,7 @@ return { [1]="tornado_hinder" } }, - [1558]={ + [1632]={ [1]={ [1]={ limit={ @@ -33579,14 +34800,14 @@ return { [1]="tornado_movement_speed_+%" } }, - [1559]={ + [1633]={ [1]={ }, stats={ [1]="total_number_of_projectiles_to_fire" } }, - [1560]={ + [1634]={ [1]={ [1]={ limit={ @@ -33615,7 +34836,7 @@ return { [1]="totem_chaos_resistance_%" } }, - [1561]={ + [1635]={ [1]={ [1]={ [1]={ @@ -33635,7 +34856,7 @@ return { [1]="totem_duration" } }, - [1562]={ + [1636]={ [1]={ [1]={ limit={ @@ -33651,7 +34872,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [1563]={ + [1637]={ [1]={ [1]={ [1]={ @@ -33671,14 +34892,35 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [1564]={ + [1638]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Stored Poison grants up to {1}% more explosion Damage" + } + }, + stats={ + [1]="toxic_domain_+1%_final_more_damage_per_x_stored_poison", + [2]="toxic_domain_max_damage_+%_final_from_stored_poison" + } + }, + [1639]={ [1]={ }, stats={ [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [1565]={ + [1640]={ [1]={ [1]={ limit={ @@ -33694,7 +34936,7 @@ return { [1]="trap_can_be_triggered_by_warcries" } }, - [1566]={ + [1641]={ [1]={ [1]={ limit={ @@ -33710,7 +34952,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1567]={ + [1642]={ [1]={ [1]={ limit={ @@ -33739,7 +34981,7 @@ return { [1]="trap_spread_+%" } }, - [1568]={ + [1643]={ [1]={ [1]={ limit={ @@ -33768,7 +35010,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1569]={ + [1644]={ [1]={ [1]={ limit={ @@ -33797,7 +35039,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1570]={ + [1645]={ [1]={ [1]={ limit={ @@ -33826,7 +35068,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [1571]={ + [1646]={ [1]={ [1]={ limit={ @@ -33936,7 +35178,7 @@ return { [3]="trauma_strike_self_damage_per_trauma" } }, - [1572]={ + [1647]={ [1]={ [1]={ limit={ @@ -33965,7 +35207,7 @@ return { [1]="trauma_strike_damage_+%_final_per_trauma" } }, - [1573]={ + [1648]={ [1]={ [1]={ limit={ @@ -33994,7 +35236,7 @@ return { [1]="trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%" } }, - [1574]={ + [1649]={ [1]={ [1]={ limit={ @@ -34019,7 +35261,7 @@ return { [1]="trigger_after_spending_200_mana_%_chance" } }, - [1575]={ + [1650]={ [1]={ [1]={ limit={ @@ -34048,7 +35290,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1576]={ + [1651]={ [1]={ [1]={ limit={ @@ -34064,7 +35306,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1577]={ + [1652]={ [1]={ [1]={ limit={ @@ -34089,7 +35331,7 @@ return { [1]="trigger_on_block_%_chance" } }, - [1578]={ + [1653]={ [1]={ [1]={ limit={ @@ -34114,7 +35356,7 @@ return { [1]="trigger_on_bow_attack_%" } }, - [1579]={ + [1654]={ [1]={ [1]={ limit={ @@ -34139,7 +35381,7 @@ return { [1]="trigger_on_corpse_consume_%_chance" } }, - [1580]={ + [1655]={ [1]={ [1]={ limit={ @@ -34155,7 +35397,7 @@ return { [1]="trigger_on_hit_against_rare_or_unique_if_no_marked_enemy" } }, - [1581]={ + [1656]={ [1]={ [1]={ limit={ @@ -34180,7 +35422,7 @@ return { [1]="trigger_on_hit_vs_frozen_enemy_%" } }, - [1582]={ + [1657]={ [1]={ [1]={ limit={ @@ -34205,7 +35447,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_void_arrow" } }, - [1583]={ + [1658]={ [1]={ [1]={ limit={ @@ -34230,7 +35472,7 @@ return { [1]="trigger_on_slam_%_chance" } }, - [1584]={ + [1659]={ [1]={ [1]={ limit={ @@ -34246,7 +35488,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1585]={ + [1660]={ [1]={ [1]={ limit={ @@ -34271,21 +35513,21 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1586]={ + [1661]={ [1]={ }, stats={ [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [1587]={ + [1662]={ [1]={ }, stats={ [1]="trigger_vicious_hex_explosion_when_curse_ends" } }, - [1588]={ + [1663]={ [1]={ [1]={ limit={ @@ -34301,7 +35543,7 @@ return { [1]="triggered_by_brand_support" } }, - [1589]={ + [1664]={ [1]={ [1]={ limit={ @@ -34317,7 +35559,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1590]={ + [1665]={ [1]={ [1]={ limit={ @@ -34356,11 +35598,11 @@ return { }, stats={ [1]="triggered_by_generic_ongoing_trigger", - [2]="display_generic_ongoing_triggerer_is_invocation_skill", + [2]="generic_ongoing_triggerer_is_invocation_skill", [3]="virtual_energy_cost_for_generic_ongoing_trigger" } }, - [1591]={ + [1666]={ [1]={ [1]={ limit={ @@ -34376,7 +35618,7 @@ return { [1]="triggered_by_item_buff" } }, - [1592]={ + [1667]={ [1]={ [1]={ limit={ @@ -34392,7 +35634,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1593]={ + [1668]={ [1]={ [1]={ limit={ @@ -34421,7 +35663,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_channelling" } }, - [1594]={ + [1669]={ [1]={ [1]={ limit={ @@ -34450,7 +35692,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" } }, - [1595]={ + [1670]={ [1]={ [1]={ limit={ @@ -34466,7 +35708,7 @@ return { [1]="vaal_animate_weapon_raise_up_to_X_weapons_as_uniques" } }, - [1596]={ + [1671]={ [1]={ [1]={ limit={ @@ -34495,7 +35737,7 @@ return { [1]="vaal_arctic_armour_damage_taken_+%_final_from_hits" } }, - [1597]={ + [1672]={ [1]={ [1]={ limit={ @@ -34520,7 +35762,7 @@ return { [1]="vaal_arctic_armour_number_of_hits_absorbed" } }, - [1598]={ + [1673]={ [1]={ [1]={ limit={ @@ -34536,7 +35778,7 @@ return { [1]="vaal_blade_vortex_has_10_spinning_blades" } }, - [1599]={ + [1674]={ [1]={ [1]={ limit={ @@ -34565,7 +35807,7 @@ return { [1]="vaal_charged_attack_damage_taken_+%_final" } }, - [1600]={ + [1675]={ [1]={ [1]={ limit={ @@ -34581,7 +35823,7 @@ return { [1]="vaal_charged_attack_radius_+_per_stage" } }, - [1601]={ + [1676]={ [1]={ [1]={ limit={ @@ -34602,7 +35844,7 @@ return { [2]="vaal_cleave_executioner_damage_against_enemies_on_low_life_+%" } }, - [1602]={ + [1677]={ [1]={ [1]={ limit={ @@ -34618,7 +35860,7 @@ return { [1]="vaal_earthquake_maximum_aftershocks" } }, - [1603]={ + [1678]={ [1]={ [1]={ [1]={ @@ -34651,7 +35893,7 @@ return { [1]="vaal_flameblast_radius_+_per_stage" } }, - [1604]={ + [1679]={ [1]={ [1]={ limit={ @@ -34667,7 +35909,7 @@ return { [1]="vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages" } }, - [1605]={ + [1680]={ [1]={ [1]={ limit={ @@ -34683,7 +35925,7 @@ return { [1]="vaal_reap_additional_maximum_blood_charges" } }, - [1606]={ + [1681]={ [1]={ [1]={ limit={ @@ -34699,7 +35941,7 @@ return { [1]="vaal_reap_gain_maximum_blood_charges_to_on_use" } }, - [1607]={ + [1682]={ [1]={ [1]={ limit={ @@ -34715,7 +35957,7 @@ return { [1]="vaal_skill_exertable" } }, - [1608]={ + [1683]={ [1]={ [1]={ [1]={ @@ -34748,7 +35990,7 @@ return { [1]="vaal_storm_call_delay_ms" } }, - [1609]={ + [1684]={ [1]={ [1]={ limit={ @@ -34777,7 +36019,7 @@ return { [1]="vaal_upgrade_minion_damage_+%_final" } }, - [1610]={ + [1685]={ [1]={ [1]={ limit={ @@ -34806,7 +36048,7 @@ return { [1]="vaal_upgrade_minion_damage_taken_+%_final" } }, - [1611]={ + [1686]={ [1]={ [1]={ limit={ @@ -34822,7 +36064,7 @@ return { [1]="vaal_volcanic_fissure_crack_repeat_count" } }, - [1612]={ + [1687]={ [1]={ [1]={ limit={ @@ -34851,21 +36093,21 @@ return { [1]="vampiric_icon_bleeding_effect_+%_final" } }, - [1613]={ + [1688]={ [1]={ }, stats={ [1]="virtual_aegis_unique_shield_max_value" } }, - [1614]={ + [1689]={ [1]={ }, stats={ [1]="virtual_armour_+%_while_performing_action_per_250_ms_attack_time" } }, - [1615]={ + [1690]={ [1]={ [1]={ limit={ @@ -34890,7 +36132,7 @@ return { [1]="virtual_bladefall_number_of_volleys" } }, - [1616]={ + [1691]={ [1]={ [1]={ limit={ @@ -34906,14 +36148,21 @@ return { [1]="virtual_blood_spears_total_number_of_spears" } }, - [1617]={ + [1692]={ + [1]={ + }, + stats={ + [1]="virtual_chance_to_daze_%" + } + }, + [1693]={ [1]={ }, stats={ [1]="virtual_chill_effect_+%_final" } }, - [1618]={ + [1694]={ [1]={ [1]={ limit={ @@ -34929,161 +36178,105 @@ return { [1]="virtual_chill_minimum_slow_%" } }, - [1619]={ - [1]={ - }, - stats={ - [1]="virtual_combined_non_physical_main_hand_hit_damage_stun_multiplier" - } - }, - [1620]={ - [1]={ - }, - stats={ - [1]="virtual_combined_non_physical_off_hand_hit_damage_stun_multiplier" - } - }, - [1621]={ - [1]={ - }, - stats={ - [1]="virtual_combined_non_physical_other_hit_damage_stun_multiplier" - } - }, - [1622]={ - [1]={ - }, - stats={ - [1]="virtual_combined_non_physical_spell_hit_damage_stun_multiplier" - } - }, - [1623]={ - [1]={ - }, - stats={ - [1]="virtual_combined_physical_main_hand_hit_damage_stun_multiplier" - } - }, - [1624]={ - [1]={ - }, - stats={ - [1]="virtual_combined_physical_off_hand_hit_damage_stun_multiplier" - } - }, - [1625]={ - [1]={ - }, - stats={ - [1]="virtual_combined_physical_other_hit_damage_stun_multiplier" - } - }, - [1626]={ - [1]={ - }, - stats={ - [1]="virtual_combined_physical_spell_hit_damage_stun_multiplier" - } - }, - [1627]={ + [1695]={ [1]={ }, stats={ [1]="virtual_crossbow_attack_%_chance_to_not_consume_ammo" } }, - [1628]={ + [1696]={ [1]={ }, stats={ [1]="virtual_curse_delay_duration_ms" } }, - [1629]={ + [1697]={ [1]={ }, stats={ [1]="virtual_damage_absorbed_per_jade_consumed" } }, - [1630]={ + [1698]={ [1]={ }, stats={ [1]="virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time" } }, - [1631]={ + [1699]={ [1]={ }, stats={ [1]="virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time" } }, - [1632]={ + [1700]={ [1]={ }, stats={ [1]="virtual_deal_chaos_damage_per_minute_for_8_seconds_on_curse" } }, - [1633]={ + [1701]={ [1]={ }, stats={ [1]="virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%" } }, - [1634]={ + [1702]={ [1]={ }, stats={ [1]="virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%" } }, - [1635]={ + [1703]={ [1]={ }, stats={ [1]="virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%" } }, - [1636]={ + [1704]={ [1]={ }, stats={ [1]="virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%" } }, - [1637]={ + [1705]={ [1]={ }, stats={ [1]="virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%" } }, - [1638]={ + [1706]={ [1]={ }, stats={ [1]="virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%" } }, - [1639]={ + [1707]={ [1]={ }, stats={ [1]="virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%" } }, - [1640]={ + [1708]={ [1]={ }, stats={ [1]="virtual_display_total_spell_chance_to_inflict_poison_on_hit_%" } }, - [1641]={ + [1709]={ [1]={ [1]={ limit={ @@ -35099,21 +36292,28 @@ return { [1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap" } }, - [1642]={ + [1710]={ [1]={ }, stats={ [1]="virtual_evasion_+%_while_performing_action_per_250_ms_attack_time" } }, - [1643]={ + [1711]={ + [1]={ + }, + stats={ + [1]="virtual_flameblast_maximum_stages" + } + }, + [1712]={ [1]={ }, stats={ [1]="virtual_generic_ongoing_trigger_maximum_energy" } }, - [1644]={ + [1713]={ [1]={ [1]={ limit={ @@ -35134,7 +36334,7 @@ return { [2]="virtual_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1645]={ + [1714]={ [1]={ [1]={ [1]={ @@ -35154,7 +36354,7 @@ return { [1]="virtual_herald_of_thunder_bolt_base_frequency" } }, - [1646]={ + [1715]={ [1]={ [1]={ limit={ @@ -35192,42 +36392,50 @@ return { [1]="virtual_hit_damage_stun_multiplier_+%_final" } }, - [1647]={ + [1716]={ [1]={ }, stats={ [1]="virtual_knockback_distance_+%" } }, - [1648]={ + [1717]={ [1]={ }, stats={ [1]="virtual_main_hand_apply_X_armour_break_on_hit" } }, - [1649]={ + [1718]={ [1]={ }, stats={ [1]="virtual_main_hand_hit_damage_stun_multiplier_+%" } }, - [1650]={ + [1719]={ [1]={ }, stats={ [1]="virtual_main_hand_non_slam_aftershock_chance_%" } }, - [1651]={ + [1720]={ [1]={ }, stats={ [1]="virtual_main_hand_slam_aftershock_chance_%" } }, - [1652]={ + [1721]={ + [1]={ + }, + stats={ + [1]="active_skill_buff_stack_gain_frequency_ms", + [2]="virtual_maximum_number_of_arctic_armour_stationary_stacks" + } + }, + [1722]={ [1]={ [1]={ [1]={ @@ -35247,7 +36455,7 @@ return { [1]="virtual_mine_detonation_time_ms" } }, - [1653]={ + [1723]={ [1]={ [1]={ limit={ @@ -35285,35 +36493,35 @@ return { [1]="virtual_movement_speed_penalty_+%_final_while_performing_action" } }, - [1654]={ + [1724]={ [1]={ }, stats={ [1]="virtual_never_chill" } }, - [1655]={ + [1725]={ [1]={ }, stats={ [1]="virtual_never_freeze" } }, - [1656]={ + [1726]={ [1]={ }, stats={ [1]="virtual_never_ignite" } }, - [1657]={ + [1727]={ [1]={ }, stats={ [1]="virtual_never_shock" } }, - [1658]={ + [1728]={ [1]={ [1]={ limit={ @@ -35338,7 +36546,14 @@ return { [1]="virtual_number_of_additional_curses_allowed" } }, - [1659]={ + [1729]={ + [1]={ + }, + stats={ + [1]="virtual_number_of_banners_allowed" + } + }, + [1730]={ [1]={ [1]={ limit={ @@ -35354,42 +36569,42 @@ return { [1]="virtual_number_of_chains" } }, - [1660]={ + [1731]={ [1]={ }, stats={ [1]="virtual_number_of_marks_allowed_per_type" } }, - [1661]={ + [1732]={ [1]={ }, stats={ [1]="virtual_off_hand_apply_X_armour_break_on_hit" } }, - [1662]={ + [1733]={ [1]={ }, stats={ [1]="virtual_off_hand_hit_damage_stun_multiplier_+%" } }, - [1663]={ + [1734]={ [1]={ }, stats={ [1]="virtual_off_hand_non_slam_aftershock_chance_%" } }, - [1664]={ + [1735]={ [1]={ }, stats={ [1]="virtual_off_hand_slam_aftershock_chance_%" } }, - [1665]={ + [1736]={ [1]={ [1]={ limit={ @@ -35414,14 +36629,14 @@ return { [1]="virtual_onslaught_on_hit_%_chance" } }, - [1666]={ + [1737]={ [1]={ }, stats={ [1]="virtual_physical_damage_can_pin" } }, - [1667]={ + [1738]={ [1]={ [1]={ limit={ @@ -35437,21 +36652,21 @@ return { [1]="virtual_poison_cloud_limit" } }, - [1668]={ + [1739]={ [1]={ }, stats={ [1]="virtual_projectile_number_to_split" } }, - [1669]={ + [1740]={ [1]={ }, stats={ [1]="virtual_projectiles_fork" } }, - [1670]={ + [1741]={ [1]={ [1]={ limit={ @@ -35467,28 +36682,28 @@ return { [1]="virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [1671]={ + [1742]={ [1]={ }, stats={ [1]="virtual_ritual_of_power_maximum_number_of_rituals" } }, - [1672]={ + [1743]={ [1]={ }, stats={ - [1]="virtual_skill_empowers_next_x_melee_attacks" + [1]="virtual_sandstorm_swipe_max_stages" } }, - [1673]={ + [1744]={ [1]={ }, stats={ [1]="virtual_skill_required_number_of_combo_stacks" } }, - [1674]={ + [1745]={ [1]={ [1]={ limit={ @@ -35504,7 +36719,7 @@ return { [1]="virtual_spell_apply_X_armour_break_on_hit" } }, - [1675]={ + [1746]={ [1]={ [1]={ [1]={ @@ -35524,7 +36739,7 @@ return { [1]="virtual_spider_aspect_web_interval_ms" } }, - [1676]={ + [1747]={ [1]={ [1]={ [1]={ @@ -35557,7 +36772,7 @@ return { [1]="virtual_static_strike_base_zap_frequency_ms" } }, - [1677]={ + [1748]={ [1]={ [1]={ limit={ @@ -35578,35 +36793,35 @@ return { [2]="virtual_steelskin_damage_limit" } }, - [1678]={ + [1749]={ [1]={ }, stats={ [1]="virtual_support_anticipation_charge_gain_interval_ms" } }, - [1679]={ + [1750]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_one_additional_aftershock_%" } }, - [1680]={ + [1751]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_three_additional_aftershocks_%" } }, - [1681]={ + [1752]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_two_additional_aftershocks_%" } }, - [1682]={ + [1753]={ [1]={ [1]={ [1]={ @@ -35626,7 +36841,7 @@ return { [1]="virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling" } }, - [1683]={ + [1754]={ [1]={ [1]={ limit={ @@ -35642,35 +36857,35 @@ return { [1]="virtual_tectonic_slam_%_chance_to_do_charged_slam" } }, - [1684]={ + [1755]={ [1]={ }, stats={ [1]="virtual_total_cooldown_count" } }, - [1685]={ + [1756]={ [1]={ }, stats={ [1]="virtual_totem_cold_resistance_%" } }, - [1686]={ + [1757]={ [1]={ }, stats={ [1]="virtual_totem_fire_resistance_%" } }, - [1687]={ + [1758]={ [1]={ }, stats={ [1]="virtual_totem_lightning_resistance_%" } }, - [1688]={ + [1759]={ [1]={ [1]={ limit={ @@ -35699,7 +36914,7 @@ return { [1]="virtual_trap_and_mine_throwing_time_+%_final" } }, - [1689]={ + [1760]={ [1]={ [1]={ limit={ @@ -35724,7 +36939,7 @@ return { [1]="virtual_vaal_lightning_arrow_number_of_redirects" } }, - [1690]={ + [1761]={ [1]={ [1]={ limit={ @@ -35753,7 +36968,7 @@ return { [1]="virulent_arrow_damage_+%_final_per_stage" } }, - [1691]={ + [1762]={ [1]={ [1]={ limit={ @@ -35769,7 +36984,7 @@ return { [1]="virulent_arrow_maximum_number_of_stacks" } }, - [1692]={ + [1763]={ [1]={ [1]={ limit={ @@ -35785,7 +37000,7 @@ return { [1]="virulent_arrow_number_of_pod_projectiles" } }, - [1693]={ + [1764]={ [1]={ [1]={ limit={ @@ -35814,7 +37029,7 @@ return { [1]="virulent_arrow_pod_projectile_damage_+%_final" } }, - [1694]={ + [1765]={ [1]={ [1]={ limit={ @@ -35843,7 +37058,7 @@ return { [1]="volatile_dead_core_movement_speed_+%" } }, - [1695]={ + [1766]={ [1]={ [1]={ limit={ @@ -35859,7 +37074,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [1696]={ + [1767]={ [1]={ [1]={ limit={ @@ -35884,7 +37099,7 @@ return { [1]="volatile_dead_number_of_corpses_to_consume" } }, - [1697]={ + [1768]={ [1]={ [1]={ limit={ @@ -35900,7 +37115,7 @@ return { [1]="volcanic_fissure_maximum_number_of_fissures" } }, - [1698]={ + [1769]={ [1]={ [1]={ limit={ @@ -35916,7 +37131,7 @@ return { [1]="volcanic_fissure_%_chance_repeat_aftershocks" } }, - [1699]={ + [1770]={ [1]={ [1]={ limit={ @@ -35945,7 +37160,32 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [1700]={ + [1771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Volcano" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum {0} Volcanos" + } + }, + stats={ + [1]="volcano_base_number_of_geysers_allowed" + } + }, + [1772]={ [1]={ [1]={ limit={ @@ -35961,7 +37201,7 @@ return { [1]="volcano_damage_+%_final_per_stage" } }, - [1701]={ + [1773]={ [1]={ [1]={ [1]={ @@ -35994,32 +37234,7 @@ return { [1]="volcano_fires_projectiles_every_x_ms" } }, - [1702]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Maximum {0} Volcano" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Maximum {0} Volcanos" - } - }, - stats={ - [1]="volcano_max_number_of_geysers" - } - }, - [1703]={ + [1774]={ [1]={ [1]={ limit={ @@ -36035,7 +37250,7 @@ return { [1]="volcano_maximum_number_of_stages" } }, - [1704]={ + [1775]={ [1]={ [1]={ [1]={ @@ -36055,7 +37270,7 @@ return { [1]="volcano_skill_effect_duration_per_stage" } }, - [1705]={ + [1776]={ [1]={ [1]={ limit={ @@ -36084,14 +37299,14 @@ return { [1]="voltaxic_burst_damage_+%_final_per_stack" } }, - [1706]={ + [1777]={ [1]={ }, stats={ [1]="wall_is_created_in_a_circle_instead" } }, - [1707]={ + [1778]={ [1]={ [1]={ limit={ @@ -36107,7 +37322,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [1708]={ + [1779]={ [1]={ [1]={ limit={ @@ -36123,23 +37338,7 @@ return { [1]="rallying_cry_weapon_damage_%_for_allies_per_5_monster_power" } }, - [1709]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Buff grants {0}% reduced Enemy Stun Threshold per 5 Power, up to a maximum of 30%" - } - }, - stats={ - [1]="seismic_cry_+%_enemy_stun_threshold_per_5_MP" - } - }, - [1710]={ + [1780]={ [1]={ [1]={ limit={ @@ -36155,7 +37354,7 @@ return { [1]="intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP" } }, - [1711]={ + [1781]={ [1]={ [1]={ limit={ @@ -36176,7 +37375,7 @@ return { [2]="ancestral_cry_max_physical_damage_reduction_rating" } }, - [1712]={ + [1782]={ [1]={ [1]={ limit={ @@ -36192,7 +37391,7 @@ return { [1]="ancestral_cry_x_melee_range_per_5_monster_power" } }, - [1713]={ + [1783]={ [1]={ [1]={ limit={ @@ -36208,7 +37407,7 @@ return { [1]="infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power" } }, - [1714]={ + [1784]={ [1]={ [1]={ limit={ @@ -36224,7 +37423,7 @@ return { [1]="endurance_charge_granted_per_X_monster_power_during_endurance_warcry" } }, - [1715]={ + [1785]={ [1]={ [1]={ limit={ @@ -36245,7 +37444,7 @@ return { [2]="maximum_number_of_spiritual_cry_warriors" } }, - [1716]={ + [1786]={ [1]={ [1]={ limit={ @@ -36274,7 +37473,7 @@ return { [1]="divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%" } }, - [1717]={ + [1787]={ [1]={ [1]={ limit={ @@ -36290,7 +37489,7 @@ return { [1]="divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%" } }, - [1718]={ + [1788]={ [1]={ [1]={ limit={ @@ -36319,7 +37518,41 @@ return { [1]="rallying_cry_buff_effect_on_minions_+%_final" } }, - [1719]={ + [1789]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Empowers one Attack per enemy Power in\nrange, counting up to {1} Power" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Empowers one Attack per {0} enemy Power in\nrange, counting up to {1} Power" + } + }, + stats={ + [1]="warcry_empowers_per_X_monster_power", + [2]="warcry_empowers_per_X_monster_power_mp_cap" + } + }, + [1790]={ [1]={ [1]={ limit={ @@ -36660,6 +37893,108 @@ return { } }, text="Buff is removed after Empower the next {0} Melee Attacks you perform\nAttacks Empowered by this Skill cannot be Empowered by other Skills" + }, + [21]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=4, + [2]=4 + } + }, + text="Empowers the next Attack you perform" + }, + [22]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=4, + [2]=4 + } + }, + text="Empowers the next Attack you perform, plus an additional Attack per Endurance Charge consumed" + }, + [23]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=4, + [2]=4 + } + }, + text="Empowers the next Attack you perform, plus an additional {1} Attacks per Endurance Charge consumed" + }, + [24]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=4, + [2]=4 + } + }, + text="Empowers the next {0} Attacks you perform" + }, + [25]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=4, + [2]=4 + } + }, + text="Empowers the next {0} Attacks you perform, plus an additional Attack per Endurance Charge consumed" + }, + [26]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=4, + [2]=4 + } + }, + text="Empowers the next {0} Attacks you perform, plus an additional {1} Attacks per Endurance Charge consumed" } }, stats={ @@ -36668,7 +38003,7 @@ return { [3]="skill_empower_limitation_specifier_for_stat_description" } }, - [1720]={ + [1791]={ [1]={ [1]={ limit={ @@ -36693,7 +38028,7 @@ return { [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" } }, - [1721]={ + [1792]={ [1]={ [1]={ limit={ @@ -36709,7 +38044,7 @@ return { [1]="rallying_cry_damage_+%_final_from_osm_per_nearby_ally" } }, - [1722]={ + [1793]={ [1]={ [1]={ limit={ @@ -36738,7 +38073,7 @@ return { [1]="seismic_cry_base_slam_skill_damage_+%_final" } }, - [1723]={ + [1794]={ [1]={ [1]={ limit={ @@ -36767,7 +38102,7 @@ return { [1]="seismic_cry_slam_skill_damage_+%_final_increase_per_repeat" } }, - [1724]={ + [1795]={ [1]={ [1]={ limit={ @@ -36796,7 +38131,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%" } }, - [1725]={ + [1796]={ [1]={ [1]={ limit={ @@ -36825,7 +38160,7 @@ return { [1]="seismic_cry_slam_skill_area_+%_increase_per_repeat" } }, - [1726]={ + [1797]={ [1]={ [1]={ limit={ @@ -36841,7 +38176,7 @@ return { [1]="display_battlemage_cry_exerted_attacks_trigger_supported_spell" } }, - [1727]={ + [1798]={ [1]={ [1]={ limit={ @@ -36857,7 +38192,7 @@ return { [1]="infernal_cry_empowered_attacks_trigger_combust_display" } }, - [1728]={ + [1799]={ [1]={ [1]={ [1]={ @@ -36877,7 +38212,7 @@ return { [1]="ambush_additional_critical_strike_chance_permyriad" } }, - [1729]={ + [1800]={ [1]={ [1]={ limit={ @@ -36893,7 +38228,7 @@ return { [1]="vanishing_ambush_critical_strike_multiplier_+" } }, - [1730]={ + [1801]={ [1]={ [1]={ limit={ @@ -36909,7 +38244,7 @@ return { [1]="intimidating_cry_empowerd_attacks_deal_double_damage_display" } }, - [1731]={ + [1802]={ [1]={ [1]={ limit={ @@ -36938,7 +38273,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [1732]={ + [1803]={ [1]={ [1]={ limit={ @@ -36963,7 +38298,7 @@ return { [1]="warcry_grant_knockback_%_to_exerted_attacks" } }, - [1733]={ + [1804]={ [1]={ [1]={ limit={ @@ -36979,14 +38314,57 @@ return { [1]="warcry_grant_overwhelm_%_to_exerted_attacks" } }, - [1734]={ + [1805]={ [1]={ }, stats={ [1]="warcry_grant_X_rage_per_5_power" } }, - [1735]={ + [1806]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Stores {0:+d}% of mitigated Physical damage" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Stores {0}% of mitigated Physical damage, up to {1}" + } + }, + stats={ + [1]="warding_steel_gains_%_of_damage_from_mitigated_physical_damage", + [2]="warding_steel_maximum_stored_mitigated_physical_damage", + [3]="quality_display_warding_steel_is_gem" + } + }, + [1807]={ [1]={ [1]={ limit={ @@ -37002,7 +38380,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [1736]={ + [1808]={ [1]={ [1]={ limit={ @@ -37018,7 +38396,7 @@ return { [1]="water_sphere_does_weird_conversion_stuff" } }, - [1737]={ + [1809]={ [1]={ [1]={ limit={ @@ -37047,7 +38425,7 @@ return { [1]="weapon_trap_rotation_speed_+%" } }, - [1738]={ + [1810]={ [1]={ [1]={ [1]={ @@ -37067,7 +38445,7 @@ return { [1]="weapon_trap_total_rotation_%" } }, - [1739]={ + [1811]={ [1]={ [1]={ limit={ @@ -37096,7 +38474,7 @@ return { [1]="whirling_blades_evasion_rating_+%_while_moving" } }, - [1740]={ + [1812]={ [1]={ [1]={ limit={ @@ -37112,7 +38490,36 @@ return { [1]="whirling_slash_knockback_distance_+%_final_per_stage" } }, - [1741]={ + [1813]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage to enemies within 1.5 metres of you, scaling down to no bonus at 4 metres or further" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Damage to enemies within 1.5 metres of you, scaling down to no bonus at 4 metres or further" + } + }, + stats={ + [1]="wind_blast_damage_+%_final_from_distance" + } + }, + [1814]={ [1]={ [1]={ limit={ @@ -37128,7 +38535,7 @@ return { [1]="winter_brand_max_number_of_stages" } }, - [1742]={ + [1815]={ [1]={ [1]={ limit={ @@ -37144,7 +38551,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1743]={ + [1816]={ [1]={ [1]={ limit={ @@ -37160,7 +38567,7 @@ return { [1]="wither_chance_to_apply_another_stack_if_hand_cast_%" } }, - [1744]={ + [1817]={ [1]={ [1]={ limit={ @@ -37176,14 +38583,14 @@ return { [1]="withered_on_chaos_damage_hit_chance_%" } }, - [1745]={ + [1818]={ [1]={ }, stats={ [1]="withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage" } }, - [1746]={ + [1819]={ [1]={ [1]={ limit={ @@ -37208,7 +38615,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [1747]={ + [1820]={ [1]={ [1]={ limit={ @@ -37233,7 +38640,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [1748]={ + [1821]={ [1]={ [1]={ limit={ @@ -37258,7 +38665,105 @@ return { [1]="withering_step_chance_to_not_remove_on_skill_use_%" } }, - [1749]={ + [1822]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Buff grants added Attack Cold damage {0} to {1} per 5 Power of enemies and allies in range, capped at {2} to {3}" + } + }, + stats={ + [1]="wolf_warcry_buff_cold_damage_min_per_5_power_up_to_cap", + [2]="wolf_warcry_buff_cold_damage_max_per_5_power_up_to_cap", + [3]="wolf_warcry_buff_cold_damage_min_cap", + [4]="wolf_warcry_buff_cold_damage_max_cap" + } + }, + [1823]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Empowered Attacks have added Cold damage {0} to {1} per 5 Power of enemies and allies in range, up to {2} to {3}" + } + }, + stats={ + [1]="wolf_warcry_empowered_attack_cold_damage_min_per_5_power_up_to_cap", + [2]="wolf_warcry_empowered_attack_cold_damage_max_per_5_power_up_to_cap", + [3]="wolf_warcry_empowered_attack_cold_damage_min_cap", + [4]="wolf_warcry_empowered_attack_cold_damage_max_cap" + } + }, + [1824]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When you hit enemies with this Warcry, your wolves will focus the enemy marked by your Cross Slash for {0} seconds" + } + }, + stats={ + [1]="wolf_warcry_focus_fire_duration_ms" + } + }, + [1825]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Summons an Ice Wolf for each Marked enemy in range. Wolves are permanent and not-reviving. Maximum number of wolves {0}. If you already have maximum wolves it will heal a wolf with the lowest health instead of summoning a new one." + } + }, + stats={ + [1]="wolf_warcry_maximum_number_of_wolves" + } + }, + [1826]={ [1]={ [1]={ [1]={ @@ -37291,7 +38796,7 @@ return { [1]="igneous_shield_perfect_block_cooldown_ms" } }, - [1750]={ + [1827]={ [1]={ [1]={ limit={ @@ -37320,7 +38825,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1751]={ + [1828]={ [1]={ [1]={ limit={ @@ -37336,7 +38841,7 @@ return { [1]="kinetic_bolt_number_of_zig_zags" } }, - [1752]={ + [1829]={ [1]={ [1]={ limit={ @@ -37365,7 +38870,7 @@ return { [1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self" } }, - [1753]={ + [1830]={ [1]={ [1]={ limit={ @@ -37394,7 +38899,7 @@ return { [1]="lightning_explosion_mine_aura_damage_taken_+%" } }, - [1754]={ + [1831]={ [1]={ [1]={ limit={ @@ -37425,7 +38930,7 @@ return { [4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit" } }, - [1755]={ + [1832]={ [1]={ [1]={ limit={ @@ -37441,7 +38946,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1756]={ + [1833]={ [1]={ [1]={ limit={ @@ -37470,7 +38975,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [1757]={ + [1834]={ [1]={ [1]={ limit={ @@ -37486,7 +38991,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [1758]={ + [1835]={ [1]={ [1]={ limit={ @@ -37502,7 +39007,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1759]={ + [1836]={ [1]={ [1]={ limit={ @@ -37518,7 +39023,7 @@ return { [1]="minions_are_defensive" } }, - [1760]={ + [1837]={ [1]={ [1]={ limit={ @@ -37561,1920 +39066,2020 @@ return { [3]="quality_display_infernal_cry_is_gem" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1182, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1183, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1184, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1185, - ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=395, - ["abyssal_cry_%_max_life_as_chaos_on_death"]=310, - ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=308, - ["accuracy_range_penalty_+%"]=396, - ["accuracy_rating"]=106, - ["accuracy_rating_+%"]=107, - ["active_skill_200%_increased_knockback_distance"]=60, - ["active_skill_added_damage_+%_final"]=397, - ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=398, - ["active_skill_area_damage_+%_final"]=399, - ["active_skill_area_of_effect_+%_final"]=69, - ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=400, - ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=401, - ["active_skill_attack_speed_+%_final"]=277, - ["active_skill_attack_speed_+%_final_while_dual_wielding"]=402, - ["active_skill_base_area_length_+"]=403, - ["active_skill_base_radius_+"]=63, - ["active_skill_base_slow_debuff_movement_speed_+%_final"]=404, - ["active_skill_bleeding_effect_+%_final"]=406, - ["active_skill_bleeding_effect_+%_final_in_blood_stance"]=405, - ["active_skill_can_overload"]=407, - ["active_skill_chaos_damage_+%_final"]=408, - ["active_skill_chill_as_though_damage_+%_final"]=409, - ["active_skill_chill_effect_+%_final"]=97, - ["active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=410, - ["active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=411, - ["active_skill_cooldown_bypass_type_override_to_power_charge"]=628, - ["active_skill_damage_+%_final_against_enemies_on_full_life"]=415, - ["active_skill_damage_+%_final_against_heavy_stunned_enemies"]=412, - ["active_skill_damage_+%_final_per_time_chained"]=416, - ["active_skill_damage_+%_final_vs_burning_enemies"]=417, - ["active_skill_damage_+%_final_vs_chilled_enemies"]=418, - ["active_skill_damage_+%_final_vs_fully_broken_armour"]=419, - ["active_skill_damage_+%_final_vs_immobilised_enemies"]=413, - ["active_skill_damage_+%_final_while_dual_wielding"]=414, - ["active_skill_damage_+%_when_cast_on_frostbolt"]=420, - ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=372, - ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=421, - ["active_skill_ground_consecration_radius_+"]=64, - ["active_skill_ground_effect_area_of_effect_+%_final_per_second"]=959, - ["active_skill_ground_effect_area_of_effect_+%_final_per_second_max"]=959, - ["active_skill_hit_damage_freeze_multiplier_+%_final"]=422, - ["active_skill_hit_damage_stun_multiplier_+%_final"]=423, - ["active_skill_if_used_through_frostbolt_damage_+%_final"]=424, - ["active_skill_ignite_chance_+%_final"]=425, - ["active_skill_ignite_duration_+%_final"]=427, - ["active_skill_ignite_effect_+%_final"]=426, - ["active_skill_lightning_damage_+%_final"]=428, - ["active_skill_minion_energy_shield_+%_final"]=130, - ["active_skill_minion_hit_damage_stun_multiplier_+%_final"]=429, - ["active_skill_minion_life_+%_final"]=129, - ["active_skill_minion_movement_velocity_+%_final"]=126, - ["active_skill_movement_speed_+%_final"]=230, - ["active_skill_never_freeze_shock_ignite"]=430, - ["active_skill_pins_as_though_dealt_damage_+%_final"]=431, - ["active_skill_poison_duration_+%_final"]=432, - ["active_skill_projectile_damage_+%_final"]=367, - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=433, - ["active_skill_projectile_damage_+%_final_if_pierced_enemy"]=434, - ["active_skill_reload_speed_+%_final"]=435, - ["active_skill_required_number_of_combo_stacks"]=436, - ["active_skill_returning_projectile_damage_+%_final"]=368, - ["active_skill_shock_as_though_damage_+%_final"]=437, - ["active_skill_shock_chance_+%_final"]=438, - ["active_skill_shock_duration_+%_final"]=439, - ["active_skill_stun_threshold_+%_while_performing_action"]=440, - ["add_endurance_charge_on_skill_hit_%"]=441, - ["add_frenzy_charge_on_kill"]=111, - ["add_frenzy_charge_on_kill_%_chance"]=112, - ["add_frenzy_charge_on_skill_hit_%"]=442, - ["add_power_charge_on_critical_strike_%"]=237, - ["additional_base_critical_strike_chance"]=353, - ["additional_block_chance_against_projectiles_%_per_steel_charge"]=443, - ["additional_chain_chance_%"]=444, - ["additional_chance_to_freeze_chilled_enemies_%"]=334, - ["additional_combo_gain_chance_%"]=445, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=447, - ["additional_critical_strike_chance_permyriad_while_dead"]=446, - ["additional_projectiles_per_intensity"]=448, - ["additive_thorns_damage_modifiers_apply_to_attack_damage"]=449, - ["aftershock_area_of_effect_+%_final"]=350, - ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=450, - ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=450, - ["all_damage_can_ignite_freeze_shock"]=451, - ["all_damage_can_sap"]=452, - ["already_split_if_no_steel_shards"]=453, - ["always_chain_from_shocked_enemies"]=454, - ["always_crit"]=455, - ["always_freeze"]=91, - ["always_ignite"]=456, - ["always_pierce"]=457, - ["always_stun"]=135, - ["always_stun_enemies_that_are_on_full_life"]=458, - ["ambush_additional_critical_strike_chance_permyriad"]=1728, - ["ancestor_totem_buff_effect_+%"]=459, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=50, - ["ancestor_totem_parent_activation_range_+%"]=460, - ["ancestral_aid_required_count_of_recent_blocks"]=461, - ["ancestral_call_spirit_strike_interval_ms"]=382, - ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1720, - ["ancestral_cry_max_physical_damage_reduction_rating"]=1711, - ["ancestral_cry_physical_damage_reduction_rating_per_5_MP"]=1711, - ["ancestral_cry_x_melee_range_per_5_monster_power"]=1712, - ["ancestral_slam_interval_duration"]=383, - ["ancestral_slam_stun_threshold_reduction_+%"]=462, - ["animate_item_maximum_level_requirement"]=254, - ["animate_weapon_chance_to_create_additional_copy_%"]=463, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=464, - ["apply_%_cold_exposure_for_4_seconds_on_chill"]=465, - ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=466, - ["apply_linked_curses_on_hit_%"]=243, - ["apply_linked_curses_with_dark_ritual"]=467, - ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=468, - ["arc_chain_hit_damage_+%_final"]=469, - ["arc_damage_+%_final_for_each_remaining_chain"]=470, - ["arc_damage_+%_final_per_chain"]=471, - ["arcane_cloak_consume_%_of_mana"]=472, - ["arcane_cloak_damage_absorbed_%"]=473, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=474, - ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=475, - ["arctic_armour_chill_when_hit_duration"]=476, - ["arctic_armour_fire_damage_taken_+%_final"]=477, - ["arctic_armour_physical_damage_taken_+%_final"]=478, - ["arctic_breath_maximum_number_of_skulls_allowed"]=479, - ["area_of_effect_+%_per_frost_fury_stage"]=480, - ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"]=481, - ["area_of_effect_+%_when_cast_on_frostbolt"]=482, - ["area_of_effect_+%_while_dead"]=68, - ["area_of_effect_+%_while_not_dual_wielding"]=483, - ["armour_break_for_%_of_poison_damage_over_poison_duration"]=484, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=485, - ["attack_and_cast_speed_+%"]=486, - ["attack_damage_+%"]=487, - ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=488, - ["attack_duration_ms"]=489, - ["attack_repeat_count"]=236, - ["attack_speed_+%"]=45, - ["attack_speed_+%_granted_from_skill"]=46, - ["attack_speed_+%_per_trauma"]=1570, - ["attack_speed_+%_when_on_low_life"]=47, - ["attack_speed_cannot_be_modified"]=490, - ["attack_speed_modifiers_apply_to_over_time_cost"]=491, - ["attack_trigger_on_hit_%"]=273, - ["attack_trigger_on_hitting_bleeding_enemy_%"]=492, - ["attack_trigger_on_kill_%"]=255, - ["attack_trigger_on_melee_hit_%"]=274, - ["attack_trigger_when_critically_hit_%"]=251, - ["attack_unusable_if_triggerable"]=253, - ["attacks_impale_on_hit_%_chance"]=493, - ["attacks_inflict_bleeding_on_hit"]=553, - ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=285, - ["aura_effect_+%"]=72, - ["avoid_damage_%"]=494, - ["avoid_interruption_while_using_this_skill_%"]=495, - ["backstab_damage_+%"]=136, - ["ball_lightning_superball_%_chance"]=496, - ["banner_aura_magnitude_+%_final_per_resource"]=360, - ["barrage_support_projectile_spread_+%"]=497, - ["barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit"]=498, - ["base_active_skill_buff_stack_gain_frequency_ms"]=1078, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1253, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1254, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1255, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1256, + ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=386, + ["abyssal_cry_%_max_life_as_chaos_on_death"]=304, + ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=302, + ["accuracy_range_penalty_+%"]=387, + ["accuracy_rating"]=103, + ["accuracy_rating_+%"]=104, + ["active_skill_200%_increased_knockback_distance"]=59, + ["active_skill_added_damage_+%_final"]=388, + ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=389, + ["active_skill_all_damage_%_as_fire_if_heat_is_consumed"]=724, + ["active_skill_area_damage_+%_final"]=390, + ["active_skill_area_of_effect_+%_final"]=68, + ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=391, + ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=392, + ["active_skill_attack_speed_+%_final"]=273, + ["active_skill_attack_speed_+%_final_while_dual_wielding"]=393, + ["active_skill_base_area_length_+"]=394, + ["active_skill_base_radius_+"]=62, + ["active_skill_base_slow_debuff_movement_speed_+%_final"]=395, + ["active_skill_bleeding_effect_+%_final"]=397, + ["active_skill_bleeding_effect_+%_final_in_blood_stance"]=396, + ["active_skill_buff_stack_gain_frequency_ms"]=1721, + ["active_skill_can_overload"]=398, + ["active_skill_chaos_damage_+%_final"]=399, + ["active_skill_chill_as_though_damage_+%_final"]=400, + ["active_skill_chill_effect_+%_final"]=94, + ["active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=401, + ["active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final"]=402, + ["active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final"]=403, + ["active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=404, + ["active_skill_cooldown_bypass_type_override_to_power_charge"]=635, + ["active_skill_damage_+%_final_against_enemies_on_full_life"]=409, + ["active_skill_damage_+%_final_against_heavy_stunned_enemies"]=405, + ["active_skill_damage_+%_final_per_time_chained"]=410, + ["active_skill_damage_+%_final_vs_burning_enemies"]=411, + ["active_skill_damage_+%_final_vs_chilled_enemies"]=412, + ["active_skill_damage_+%_final_vs_fully_broken_armour"]=413, + ["active_skill_damage_+%_final_vs_immobilised_enemies"]=406, + ["active_skill_damage_+%_final_vs_unique_enemies"]=407, + ["active_skill_damage_+%_final_while_dual_wielding"]=408, + ["active_skill_damage_+%_when_cast_on_frostbolt"]=414, + ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=363, + ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=415, + ["active_skill_ground_consecration_radius_+"]=63, + ["active_skill_ground_effect_area_of_effect_+%_final_per_second"]=1018, + ["active_skill_ground_effect_area_of_effect_+%_final_per_second_max"]=1018, + ["active_skill_has_%_standard_scaling_attack_damage"]=416, + ["active_skill_hit_damage_freeze_multiplier_+%_final"]=417, + ["active_skill_hit_damage_stun_multiplier_+%_final"]=418, + ["active_skill_if_used_through_frostbolt_damage_+%_final"]=419, + ["active_skill_ignite_chance_+%_final"]=420, + ["active_skill_ignite_duration_+%_final"]=422, + ["active_skill_ignite_effect_+%_final"]=421, + ["active_skill_ignite_proliferation_radius"]=423, + ["active_skill_knockback_distance_+%_final"]=424, + ["active_skill_lightning_damage_+%_final"]=425, + ["active_skill_minion_energy_shield_+%_final"]=128, + ["active_skill_minion_hit_damage_stun_multiplier_+%_final"]=426, + ["active_skill_minion_life_+%_final"]=127, + ["active_skill_minion_movement_velocity_+%_final"]=124, + ["active_skill_movement_speed_+%_final"]=226, + ["active_skill_never_freeze_shock_ignite"]=427, + ["active_skill_pins_as_though_dealt_damage_+%_final"]=428, + ["active_skill_poison_duration_+%_final"]=429, + ["active_skill_projectile_damage_+%_final"]=358, + ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=430, + ["active_skill_projectile_damage_+%_final_if_pierced_enemy"]=431, + ["active_skill_reload_speed_+%_final"]=432, + ["active_skill_required_number_of_combo_stacks"]=433, + ["active_skill_returning_projectile_damage_+%_final"]=359, + ["active_skill_shock_as_though_damage_+%_final"]=434, + ["active_skill_shock_chance_+%_final"]=435, + ["active_skill_shock_duration_+%_final"]=436, + ["active_skill_shock_effect_+%_final"]=437, + ["active_skill_stun_threshold_+%_while_performing_action"]=438, + ["active_skill_withered_base_duration_ms"]=117, + ["add_endurance_charge_on_skill_hit_%"]=439, + ["add_frenzy_charge_on_kill"]=108, + ["add_frenzy_charge_on_kill_%_chance"]=109, + ["add_frenzy_charge_on_skill_hit_%"]=440, + ["add_power_charge_on_critical_strike_%"]=233, + ["additional_base_critical_strike_chance"]=346, + ["additional_block_chance_against_projectiles_%_per_steel_charge"]=441, + ["additional_chain_chance_%"]=442, + ["additional_chance_to_freeze_chilled_enemies_%"]=327, + ["additional_combo_gain_chance_%"]=443, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=445, + ["additional_critical_strike_chance_permyriad_while_dead"]=444, + ["additional_projectiles_per_intensity"]=446, + ["additive_thorns_damage_modifiers_apply_to_attack_damage"]=447, + ["aftershock_area_of_effect_+%_final"]=343, + ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=448, + ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=448, + ["all_damage_can_ignite_freeze_shock"]=449, + ["all_damage_can_sap"]=450, + ["already_split_if_no_steel_shards"]=451, + ["always_chain_from_shocked_enemies"]=452, + ["always_crit"]=453, + ["always_freeze"]=89, + ["always_ignite"]=454, + ["always_pierce"]=455, + ["always_stun"]=133, + ["always_stun_enemies_that_are_on_full_life"]=456, + ["ambush_additional_critical_strike_chance_permyriad"]=1799, + ["ancestor_totem_buff_effect_+%"]=457, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=49, + ["ancestor_totem_parent_activation_range_+%"]=458, + ["ancestral_aid_required_count_of_recent_blocks"]=459, + ["ancestral_call_spirit_strike_interval_ms"]=373, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1791, + ["ancestral_cry_max_physical_damage_reduction_rating"]=1781, + ["ancestral_cry_physical_damage_reduction_rating_per_5_MP"]=1781, + ["ancestral_cry_x_melee_range_per_5_monster_power"]=1782, + ["ancestral_slam_interval_duration"]=374, + ["ancestral_slam_stun_threshold_reduction_+%"]=460, + ["animate_item_maximum_level_requirement"]=250, + ["animate_weapon_chance_to_create_additional_copy_%"]=461, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=462, + ["apply_%_cold_exposure_for_4_seconds_on_chill"]=463, + ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=464, + ["apply_linked_curses_on_hit_%"]=239, + ["apply_linked_curses_with_dark_ritual"]=465, + ["apply_x_wither_on_hit"]=116, + ["arc_chain_hit_damage_+%_final"]=466, + ["arc_chains_gained_from_infusion_consumption"]=467, + ["arc_damage_+%_final_for_each_remaining_chain"]=469, + ["arc_damage_+%_final_from_infusion_consumption"]=468, + ["arc_damage_+%_final_per_chain"]=470, + ["arcane_cloak_consume_%_of_mana"]=471, + ["arcane_cloak_damage_absorbed_%"]=472, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=473, + ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=474, + ["arctic_armour_chill_when_hit_duration"]=475, + ["arctic_armour_fire_damage_taken_+%_final"]=476, + ["arctic_armour_physical_damage_taken_+%_final"]=477, + ["arctic_breath_maximum_number_of_skulls_allowed"]=478, + ["area_of_effect_+%_per_frost_fury_stage"]=479, + ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"]=480, + ["area_of_effect_+%_when_cast_on_frostbolt"]=481, + ["area_of_effect_+%_while_dead"]=67, + ["area_of_effect_+%_while_not_dual_wielding"]=482, + ["armour_break_for_%_of_poison_damage_over_poison_duration"]=483, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=484, + ["attack_and_cast_speed_+%"]=485, + ["attack_damage_+%"]=486, + ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=487, + ["attack_duration_ms"]=488, + ["attack_repeat_count"]=232, + ["attack_speed_+%"]=44, + ["attack_speed_+%_granted_from_skill"]=45, + ["attack_speed_+%_per_trauma"]=1645, + ["attack_speed_+%_when_on_low_life"]=46, + ["attack_speed_cannot_be_modified"]=489, + ["attack_speed_modifiers_apply_to_over_time_cost"]=490, + ["attack_trigger_on_hit_%"]=269, + ["attack_trigger_on_hitting_bleeding_enemy_%"]=491, + ["attack_trigger_on_kill_%"]=251, + ["attack_trigger_on_melee_hit_%"]=270, + ["attack_trigger_when_critically_hit_%"]=247, + ["attack_unusable_if_triggerable"]=249, + ["attacks_impale_on_hit_%_chance"]=492, + ["attacks_inflict_bleeding_on_hit"]=556, + ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=281, + ["aura_effect_+%"]=71, + ["avoid_damage_%"]=493, + ["avoid_interruption_while_using_this_skill_%"]=494, + ["backstab_damage_+%"]=134, + ["ball_lightning_superball_%_chance"]=495, + ["barrage_support_projectile_spread_+%"]=496, + ["barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit"]=497, + ["base_active_skill_buff_stack_gain_frequency_ms"]=1145, ["base_actor_scale_+%"]=1, - ["base_all_damage_can_pin"]=92, - ["base_arrow_speed_+%"]=306, - ["base_attack_speed_+%_per_frenzy_charge"]=73, - ["base_aura_area_of_effect_+%"]=71, + ["base_additional_damage_from_distance_+%_final"]=498, + ["base_all_damage_can_pin"]=90, + ["base_arrow_speed_+%"]=300, + ["base_attack_speed_+%_per_frenzy_charge"]=72, + ["base_aura_area_of_effect_+%"]=70, ["base_bleeding_effect_+100%_final_chance"]=499, - ["base_buff_duration_ms_+_per_removable_endurance_charge"]=166, - ["base_cast_speed_+%"]=56, - ["base_chance_to_deal_triple_damage_%"]=500, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=501, - ["base_chance_to_freeze_%"]=91, - ["base_chance_to_ignite_%"]=94, - ["base_chance_to_inflict_bleeding_%"]=502, - ["base_chance_to_not_consume_corpse_%"]=633, - ["base_chance_to_pierce_%"]=503, - ["base_chance_to_poison_on_hit_%"]=344, - ["base_chance_to_shock_%"]=93, - ["base_chance_to_shock_%_from_skill"]=1304, - ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=108, - ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=137, - ["base_cold_damage_resistance_%"]=208, - ["base_combo_stacks_decay_delay_ms"]=504, - ["base_consume_enemy_freeze_on_hit"]=505, - ["base_consume_enemy_shock_on_hit"]=506, - ["base_cooldown_modifier_ms"]=507, - ["base_cooldown_speed_+%"]=508, - ["base_critical_strike_multiplier_+"]=117, - ["base_damage_taken_+%"]=509, - ["base_dash_additional_damage_from_distance_+%_final"]=510, - ["base_deal_no_chaos_damage"]=511, - ["base_debuff_slow_magnitude_+%"]=512, - ["base_extra_damage_rolls"]=513, - ["base_inflict_cold_exposure_on_hit_%_chance"]=515, - ["base_inflict_fire_exposure_on_hit_%_chance"]=516, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=517, - ["base_life_leech_from_physical_attack_damage_permyriad"]=58, - ["base_life_regeneration_rate_per_minute"]=205, - ["base_lightning_damage_can_electrocute"]=518, - ["base_mana_regeneration_rate_per_minute"]=325, - ["base_movement_velocity_+%"]=102, - ["base_number_of_crossbow_bolts"]=519, - ["base_number_of_effigies_allowed"]=1148, - ["base_number_of_frozen_locus_allowed"]=520, - ["base_number_of_projectiles"]=521, - ["base_number_of_shield_walls_allowed"]=522, - ["base_number_of_tempest_bells_allowed"]=524, - ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=110, - ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=109, - ["base_physical_damage_reduction_rating"]=182, - ["base_poison_duration_+%"]=349, - ["base_poison_effect_+%"]=1198, - ["base_poison_effect_+100%_final_chance"]=525, - ["base_projectiles_cannot_chain"]=526, - ["base_reduce_enemy_cold_resistance_%"]=216, - ["base_reduce_enemy_fire_resistance_%"]=215, - ["base_reduce_enemy_lightning_resistance_%"]=217, - ["base_remnant_duration_ms"]=527, - ["base_resist_all_elements_%"]=174, - ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=176, - ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=175, - ["base_skill_area_of_effect_+%"]=65, - ["base_smite_number_of_targets"]=528, - ["base_stun_duration_+%"]=134, - ["base_stun_recovery_+%"]=162, - ["base_stun_threshold_reduction_+%"]=62, - ["base_use_life_in_place_of_mana"]=185, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=529, - ["berserk_attack_damage_+%_final"]=376, - ["berserk_attack_speed_+%_final"]=377, - ["berserk_base_damage_taken_+%_final"]=379, - ["berserk_minimum_rage"]=375, - ["berserk_movement_speed_+%_final"]=378, - ["berserk_rage_loss_+%_per_second"]=381, - ["blackhole_damage_taken_+%"]=530, - ["blackhole_hinder_%"]=531, - ["blackhole_tick_rate_ms"]=532, - ["blade_blast_detonated_blades_not_removed_%_chance"]=533, - ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=534, - ["blade_flurry_elemental_damage_+%_while_channeling"]=535, - ["blade_flurry_final_flurry_area_of_effect_+%"]=536, - ["blade_vortex_additional_blade_chance_%"]=537, - ["blade_vortex_critical_strike_chance_+%_per_blade"]=538, - ["blade_vortex_damage_+%_per_blade_final"]=229, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=539, - ["blade_vortex_hit_rate_+%_per_blade"]=228, - ["blade_vortex_hit_rate_ms"]=540, - ["bladefall_critical_strike_chance_+%_per_stage"]=541, - ["bladefall_damage_per_stage_+%_final"]=347, - ["bladefall_volley_gap_distance_+%"]=542, - ["bladefall_volleys_needed_per_vestige_blade"]=543, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=544, - ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=545, - ["bladestorm_create_alternate_stance_storm_%_chance"]=546, - ["bladestorm_maximum_number_of_storms_allowed"]=547, - ["bladestorm_movement_speed_+%_while_in_sandstorm"]=548, - ["bladestorm_sandstorm_movement_speed_+%"]=549, - ["bladestorm_storm_damage_+%_final"]=550, - ["blast_rain_area_of_effect_+%"]=551, - ["blast_rain_damage_+%_vs_distant_enemies"]=552, - ["bleed_on_hit_with_attacks_%"]=553, - ["bleeding_skill_effect_duration"]=80, - ["blind_duration_+%"]=214, - ["blind_effect_+%"]=554, - ["blink_travel_distance"]=555, - ["blood_boil_%_health_as_corrupted_blood_damage_per_minute"]=556, - ["blood_boil_application_interval_ms"]=557, - ["blood_boil_explosion_area_+%_final_per_boil"]=558, - ["blood_ground_leaving_area_lasts_for_ms"]=559, - ["blood_magic_skill_life_cost_+%_final"]=560, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=356, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=359, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=357, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=358, - ["blood_sand_triggered_blind_on_attack_chance_%"]=562, - ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=563, - ["blood_scythe_cost_+%_final_per_charge"]=564, - ["blood_scythe_damage_+%_final_per_charge"]=565, - ["blood_surge_refresh_on_total_life_spent"]=566, - ["blood_tendrils_beam_count"]=567, - ["bodyswap_damage_+%_when_not_consuming_corpse"]=568, - ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=569, - ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=569, - ["bone_golem_grants_minion_maximum_added_physical_damage"]=570, - ["bone_golem_grants_minion_minimum_added_physical_damage"]=570, - ["bone_offering_damage_taken_+%_final_after_shield_loss"]=571, - ["boneshatter_chance_to_gain_+1_trauma"]=572, - ["brand_detonate_faster_activation_%_per_second"]=573, - ["brand_detonate_faster_duration_%_per_second"]=574, - ["brand_recall_spend_%_of_recalled_brands_cost"]=575, - ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=576, - ["breach_flame_spawn_rate_ms"]=577, - ["buff_effect_duration"]=76, - ["buff_effect_duration_+%_per_removable_endurance_charge"]=167, - ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=168, - ["buff_grants_smite_additional_lightning_targets"]=578, - ["burn_damage_+%"]=101, - ["call_of_steel_reload_amount"]=579, - ["call_of_steel_reload_time"]=579, - ["caltrops_on_dodge_X_triggers"]=580, - ["cannot_be_empowered_by_warcries"]=581, - ["cannot_break_armour"]=582, - ["cannot_cause_bleeding"]=553, - ["cannot_cause_stun_but_allow_stun_buildup"]=583, - ["cannot_daze"]=584, - ["cannot_gain_power_charges_during_skill"]=585, - ["cannot_inflict_blind"]=586, - ["cannot_inflict_elemental_ailments"]=184, - ["cannot_knockback"]=587, - ["cannot_pin"]=588, - ["cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=589, - ["cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=590, - ["cast_linked_spells_on_attack_crit_%"]=247, - ["cast_linked_spells_on_melee_kill_%"]=249, - ["cast_on_any_damage_taken_%"]=262, - ["cast_on_attack_use_%"]=256, - ["cast_on_block_gain_X_centienergy_on_block"]=591, - ["cast_on_crit_%"]=593, - ["cast_on_crit_gain_X_centienergy_per_monster_power_on_crit"]=592, - ["cast_on_damage_taken_%"]=275, - ["cast_on_damage_taken_gain_X_centienergy_when_hit"]=594, - ["cast_on_damage_taken_threshold"]=275, - ["cast_on_death_%"]=264, - ["cast_on_death_gain_X_centienergy_on_death"]=595, - ["cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling"]=596, - ["cast_on_flask_use_%"]=597, - ["cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze"]=598, - ["cast_on_gain_avians_flight_or_avians_might_%"]=268, - ["cast_on_hit_%"]=269, - ["cast_on_hit_if_cursed_%"]=270, - ["cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite"]=599, - ["cast_on_lose_cats_stealth"]=271, - ["cast_on_melee_hit_if_cursed_%"]=272, - ["cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill"]=600, - ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun"]=601, - ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun"]=602, - ["cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%"]=603, - ["cast_on_shock_gain_X_centienergy_per_monster_power_on_shock"]=604, - ["cast_on_skill_use_%"]=257, - ["cast_on_stunned_%"]=266, - ["cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm"]=605, + ["base_buff_duration_ms_+_per_removable_endurance_charge"]=164, + ["base_cast_speed_+%"]=55, + ["base_chance_to_daze_%"]=500, + ["base_chance_to_deal_triple_damage_%"]=501, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=502, + ["base_chance_to_freeze_%"]=89, + ["base_chance_to_inflict_bleeding_%"]=503, + ["base_chance_to_not_consume_corpse_%"]=640, + ["base_chance_to_pierce_%"]=504, + ["base_chance_to_poison_on_hit_%"]=337, + ["base_chance_to_shock_%"]=91, + ["base_chance_to_shock_%_from_skill"]=1376, + ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=105, + ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=135, + ["base_cold_damage_resistance_%"]=204, + ["base_combo_stacks_decay_delay_ms"]=505, + ["base_consume_enemy_freeze_on_hit"]=506, + ["base_consume_enemy_shock_on_hit"]=507, + ["base_cooldown_modifier_ms"]=508, + ["base_cooldown_speed_+%"]=509, + ["base_critical_strike_multiplier_+"]=114, + ["base_curse_delay_+%"]=510, + ["base_damage_taken_+%"]=511, + ["base_deal_no_chaos_damage"]=512, + ["base_debuff_slow_magnitude_+%"]=513, + ["base_extra_damage_rolls"]=514, + ["base_ignite_effect_+%"]=515, + ["base_inflict_cold_exposure_on_hit_%_chance"]=516, + ["base_inflict_fire_exposure_on_hit_%_chance"]=517, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=518, + ["base_life_leech_from_physical_attack_damage_permyriad"]=57, + ["base_life_recovery_per_minute"]=921, + ["base_life_regeneration_rate_per_minute"]=201, + ["base_lightning_damage_can_electrocute"]=519, + ["base_mana_leech_rate_+%"]=356, + ["base_mana_recovery_per_minute"]=921, + ["base_mana_regeneration_rate_per_minute"]=319, + ["base_movement_velocity_+%"]=99, + ["base_number_of_crossbow_bolts"]=520, + ["base_number_of_effigies_allowed"]=1220, + ["base_number_of_frozen_locus_allowed"]=521, + ["base_number_of_projectiles"]=522, + ["base_number_of_projectiles_in_spiral_nova"]=523, + ["base_number_of_shield_walls_allowed"]=524, + ["base_number_of_tempest_bells_allowed"]=526, + ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=107, + ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=106, + ["base_physical_damage_reduction_rating"]=179, + ["base_poison_duration_+%"]=342, + ["base_poison_effect_+%"]=1269, + ["base_poison_effect_+100%_final_chance"]=527, + ["base_projectiles_cannot_chain"]=528, + ["base_reduce_enemy_cold_resistance_%"]=212, + ["base_reduce_enemy_fire_resistance_%"]=211, + ["base_reduce_enemy_lightning_resistance_%"]=213, + ["base_remnant_duration_ms"]=529, + ["base_resist_all_elements_%"]=171, + ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=173, + ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=172, + ["base_skill_area_of_effect_+%"]=64, + ["base_smite_number_of_targets"]=530, + ["base_stun_duration_+%"]=132, + ["base_stun_recovery_+%"]=160, + ["base_stun_threshold_reduction_+%"]=61, + ["base_use_life_in_place_of_mana"]=182, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=532, + ["berserk_attack_damage_+%_final"]=367, + ["berserk_attack_speed_+%_final"]=368, + ["berserk_base_damage_taken_+%_final"]=370, + ["berserk_minimum_rage"]=366, + ["berserk_movement_speed_+%_final"]=369, + ["berserk_rage_loss_+%_per_second"]=372, + ["blackhole_damage_taken_+%"]=533, + ["blackhole_hinder_%"]=534, + ["blackhole_tick_rate_ms"]=535, + ["blade_blast_detonated_blades_not_removed_%_chance"]=536, + ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=537, + ["blade_flurry_elemental_damage_+%_while_channeling"]=538, + ["blade_flurry_final_flurry_area_of_effect_+%"]=539, + ["blade_vortex_additional_blade_chance_%"]=540, + ["blade_vortex_critical_strike_chance_+%_per_blade"]=541, + ["blade_vortex_damage_+%_per_blade_final"]=225, + ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=542, + ["blade_vortex_hit_rate_+%_per_blade"]=224, + ["blade_vortex_hit_rate_ms"]=543, + ["bladefall_critical_strike_chance_+%_per_stage"]=544, + ["bladefall_damage_per_stage_+%_final"]=340, + ["bladefall_volley_gap_distance_+%"]=545, + ["bladefall_volleys_needed_per_vestige_blade"]=546, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=547, + ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=548, + ["bladestorm_create_alternate_stance_storm_%_chance"]=549, + ["bladestorm_maximum_number_of_storms_allowed"]=550, + ["bladestorm_movement_speed_+%_while_in_sandstorm"]=551, + ["bladestorm_sandstorm_movement_speed_+%"]=552, + ["bladestorm_storm_damage_+%_final"]=553, + ["blast_rain_area_of_effect_+%"]=554, + ["blast_rain_damage_+%_vs_distant_enemies"]=555, + ["bleed_on_hit_with_attacks_%"]=556, + ["bleeding_skill_effect_duration"]=79, + ["blind_duration_+%"]=210, + ["blind_effect_+%"]=557, + ["blink_travel_distance"]=558, + ["blood_boil_%_health_as_corrupted_blood_damage_per_minute"]=559, + ["blood_boil_application_interval_ms"]=560, + ["blood_boil_explosion_area_+%_final_per_boil"]=561, + ["blood_ground_leaving_area_lasts_for_ms"]=562, + ["blood_magic_skill_life_cost_+%_final"]=563, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=349, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=352, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=350, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=351, + ["blood_sand_triggered_blind_on_attack_chance_%"]=565, + ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=566, + ["blood_scythe_cost_+%_final_per_charge"]=567, + ["blood_scythe_damage_+%_final_per_charge"]=568, + ["blood_surge_refresh_on_total_life_spent"]=569, + ["blood_tendrils_beam_count"]=570, + ["bodyswap_damage_+%_when_not_consuming_corpse"]=571, + ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=572, + ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=572, + ["bone_golem_grants_minion_maximum_added_physical_damage"]=573, + ["bone_golem_grants_minion_minimum_added_physical_damage"]=573, + ["bone_offering_damage_taken_+%_final_after_shield_loss"]=574, + ["boneshatter_chance_to_gain_+1_trauma"]=575, + ["brand_detonate_faster_activation_%_per_second"]=576, + ["brand_detonate_faster_duration_%_per_second"]=577, + ["brand_recall_spend_%_of_recalled_brands_cost"]=578, + ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=579, + ["breach_flame_spawn_rate_ms"]=580, + ["buff_effect_duration"]=75, + ["buff_effect_duration_+%_per_removable_endurance_charge"]=165, + ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=166, + ["buff_grants_smite_additional_lightning_targets"]=581, + ["burn_damage_+%"]=98, + ["call_of_steel_reload_amount"]=582, + ["call_of_steel_reload_time"]=582, + ["caltrops_on_dodge_X_triggers"]=583, + ["cannot_be_empowered_by_warcries"]=584, + ["cannot_break_armour"]=585, + ["cannot_cause_bleeding"]=556, + ["cannot_cause_stun_but_allow_stun_buildup"]=586, + ["cannot_consume_power_frenzy_endurance_charges"]=587, + ["cannot_daze"]=588, + ["cannot_gain_power_charges_during_skill"]=589, + ["cannot_inflict_blind"]=590, + ["cannot_inflict_elemental_ailments"]=181, + ["cannot_knockback"]=591, + ["cannot_pin"]=592, + ["cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=593, + ["cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=594, + ["cast_linked_spells_on_attack_crit_%"]=243, + ["cast_linked_spells_on_melee_kill_%"]=245, + ["cast_on_any_damage_taken_%"]=258, + ["cast_on_attack_use_%"]=252, + ["cast_on_block_gain_X_centienergy_on_block"]=595, + ["cast_on_crit_%"]=597, + ["cast_on_crit_gain_X_centienergy_per_monster_power_on_crit"]=596, + ["cast_on_damage_taken_%"]=271, + ["cast_on_damage_taken_gain_X_centienergy_when_hit"]=598, + ["cast_on_damage_taken_threshold"]=271, + ["cast_on_death_%"]=260, + ["cast_on_death_gain_X_centienergy_on_death"]=599, + ["cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling"]=600, + ["cast_on_flask_use_%"]=601, + ["cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze"]=602, + ["cast_on_gain_avians_flight_or_avians_might_%"]=264, + ["cast_on_hit_%"]=265, + ["cast_on_hit_if_cursed_%"]=266, + ["cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite"]=603, + ["cast_on_lose_cats_stealth"]=267, + ["cast_on_melee_hit_if_cursed_%"]=268, + ["cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill"]=604, + ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun"]=605, + ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun"]=606, + ["cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%"]=607, + ["cast_on_shock_gain_X_centienergy_per_monster_power_on_shock"]=608, + ["cast_on_skill_use_%"]=253, + ["cast_on_stunned_%"]=262, + ["cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm"]=609, ["cast_speed_+%_granted_from_skill"]=17, - ["cast_speed_+%_when_on_low_life"]=55, - ["cast_speed_modifiers_apply_to_over_time_cost"]=606, - ["cast_when_hit_%"]=263, - ["cast_when_stunned_gain_X_centienergy_when_stunned"]=607, - ["cast_while_channelling_gain_X_energy_per_second_while_channelling"]=608, - ["cast_while_channelling_lose_X_energy_per_second_while_not_channelling"]=609, - ["cast_while_channelling_time_ms"]=279, - ["chain_hook_range_+%"]=610, - ["chain_strike_cone_radius_+_per_x_rage"]=611, - ["chain_strike_gain_x_rage_if_attack_hits"]=612, - ["chaining_range_+%"]=613, - ["chance_%_to_double_effect_of_removing_charges"]=616, - ["chance_%_when_poison_to_also_poison_another_enemy"]=617, - ["chance_for_extra_damage_roll_%"]=614, - ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=615, - ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=618, - ["chance_to_bleed_on_hit_%_vs_maimed"]=619, - ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=620, - ["chance_to_cast_on_bear_warcry_%"]=621, - ["chance_to_cast_on_kill_%"]=258, - ["chance_to_cast_on_kill_%_target_self"]=259, - ["chance_to_cast_on_rampage_tier_%"]=265, - ["chance_to_cast_when_your_trap_is_triggered_%"]=276, - ["chance_to_deal_double_damage_%"]=622, - ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=623, - ["chance_to_double_stun_duration_%"]=624, - ["chance_to_fork_extra_projectile_%"]=625, - ["chance_to_fortify_on_melee_hit_+%"]=312, - ["chance_to_freeze_shock_ignite_%"]=333, - ["chance_to_gain_1_more_charge_%"]=626, - ["chance_to_gain_endurance_charge_on_armour_break_%"]=627, - ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=628, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=629, - ["chance_to_ignore_hexproof_%"]=630, - ["chance_to_inflict_additional_impale_%"]=631, - ["chance_to_inflict_scorch_brittle_sap_%"]=632, - ["chance_to_pierce_ignited_enemy_%"]=634, - ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=635, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=636, - ["chance_to_scorch_%"]=637, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=638, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=639, - ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=640, - ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=641, - ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=642, - ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=643, - ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=644, - ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=645, - ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=646, - ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=647, - ["chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%"]=648, - ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=649, - ["chance_to_trigger_on_animate_guardian_kill_%"]=650, - ["chance_to_trigger_on_animate_weapon_kill_%"]=651, - ["chance_to_unnerve_on_hit_%"]=652, - ["channelled_slam_area_of_effect_radius_+_per_stage"]=653, - ["chaos_damage_resisted_by_lowest_resistance"]=654, - ["chaos_damage_taken_+%"]=343, - ["chaos_golem_grants_additional_physical_damage_reduction_%"]=319, - ["charge_skip_consume_chance_%"]=655, - ["charged_attack_damage_per_stack_+%_final"]=656, - ["charged_blast_spell_damage_+%_final_per_stack"]=278, - ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=657, - ["charged_dash_damage_+%_final_per_stack"]=658, - ["charged_dash_skill_inherent_movement_speed_+%_final"]=659, - ["chill_duration_+%"]=96, - ["chill_effect_+%"]=98, - ["chilled_ground_base_magnitude_override"]=660, - ["chilling_area_movement_velocity_+%"]=661, - ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=662, - ["chronomancer_buff_cooldown_speed_+%"]=663, - ["circle_of_power_mana_spend_per_upgrade"]=664, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=667, - ["cleave_area_of_effect_+%_final_from_executioner"]=665, - ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=666, - ["cluster_burst_spawn_amount"]=307, - ["cold_ailment_duration_+%"]=668, - ["cold_ailment_effect_+%"]=669, - ["cold_damage_+%"]=301, - ["cold_damage_cannot_freeze"]=391, - ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1752, - ["cold_snap_%_chance_to_not_remove_freeze"]=670, - ["combat_rush_effect_+%"]=671, - ["command_minion_target_ally_below_x_life"]=672, - ["companion_all_attributes_+%"]=673, - ["consecrated_ground_area_+%"]=677, - ["consecrated_ground_effect_+%"]=674, - ["consecrated_ground_enemy_damage_taken_+%"]=675, - ["consecrated_ground_immune_to_curses"]=676, - ["consume_enemy_daze_to_always_hit"]=678, - ["consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final"]=679, - ["consume_enemy_freeze_to_guarantee_crit"]=680, - ["consume_enemy_fully_broken_armour_to_guarantee_crit"]=681, - ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=682, - ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=683, - ["consume_ignite_on_hit"]=684, + ["cast_speed_+%_when_on_low_life"]=54, + ["cast_speed_modifiers_apply_to_over_time_cost"]=610, + ["cast_when_hit_%"]=259, + ["cast_when_stunned_gain_X_centienergy_when_stunned"]=611, + ["cast_while_channelling_gain_X_energy_per_second_while_channelling"]=612, + ["cast_while_channelling_lose_X_energy_per_second_while_not_channelling"]=613, + ["cast_while_channelling_time_ms"]=275, + ["chain_hook_range_+%"]=614, + ["chain_strike_cone_radius_+_per_x_rage"]=615, + ["chain_strike_gain_x_rage_if_attack_hits"]=616, + ["chaining_range_+%"]=617, + ["chance_%_to_double_effect_of_removing_charges"]=621, + ["chance_%_to_spawn_another_infusion_remnant"]=618, + ["chance_%_when_poison_to_also_poison_another_enemy"]=622, + ["chance_for_extra_damage_roll_%"]=619, + ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=620, + ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=623, + ["chance_to_bleed_on_hit_%_vs_maimed"]=624, + ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=625, + ["chance_to_cast_on_bear_warcry_%"]=626, + ["chance_to_cast_on_kill_%"]=254, + ["chance_to_cast_on_kill_%_target_self"]=255, + ["chance_to_cast_on_rampage_tier_%"]=261, + ["chance_to_cast_when_your_trap_is_triggered_%"]=272, + ["chance_to_daze_+%"]=627, + ["chance_to_daze_+%_final"]=628, + ["chance_to_deal_double_damage_%"]=629, + ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=630, + ["chance_to_double_stun_duration_%"]=631, + ["chance_to_fork_extra_projectile_%"]=632, + ["chance_to_fortify_on_melee_hit_+%"]=306, + ["chance_to_gain_1_more_charge_%"]=633, + ["chance_to_gain_endurance_charge_on_armour_break_%"]=634, + ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=635, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=636, + ["chance_to_ignore_hexproof_%"]=637, + ["chance_to_inflict_additional_impale_%"]=638, + ["chance_to_inflict_scorch_brittle_sap_%"]=639, + ["chance_to_not_consume_infusion_%"]=641, + ["chance_to_not_consume_parried_%"]=642, + ["chance_to_pierce_ignited_enemy_%"]=643, + ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=644, + ["chance_to_retain_40%_of_glory_on_use_%"]=645, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=646, + ["chance_to_scorch_%"]=647, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=648, + ["chance_to_summon_support_ghost_on_killing_blow_%"]=649, + ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=650, + ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=651, + ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=652, + ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=653, + ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=654, + ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=655, + ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=656, + ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=657, + ["chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%"]=658, + ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=659, + ["chance_to_trigger_on_animate_guardian_kill_%"]=660, + ["chance_to_trigger_on_animate_weapon_kill_%"]=661, + ["chance_to_unnerve_on_hit_%"]=662, + ["channelled_slam_area_of_effect_radius_+_per_stage"]=663, + ["chaos_damage_resisted_by_lowest_resistance"]=664, + ["chaos_damage_taken_+%"]=336, + ["chaos_golem_grants_additional_physical_damage_reduction_%"]=313, + ["charge_skip_consume_chance_%"]=665, + ["charged_attack_damage_per_stack_+%_final"]=666, + ["charged_blast_spell_damage_+%_final_per_stack"]=274, + ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=667, + ["charged_dash_damage_+%_final_per_stack"]=668, + ["charged_dash_skill_inherent_movement_speed_+%_final"]=669, + ["chill_duration_+%"]=93, + ["chill_effect_+%"]=95, + ["chilled_ground_base_magnitude_override"]=670, + ["chilling_area_movement_velocity_+%"]=671, + ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=672, + ["chronomancer_buff_cooldown_speed_+%"]=673, + ["circle_of_power_mana_spend_per_upgrade"]=674, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=677, + ["cleave_area_of_effect_+%_final_from_executioner"]=675, + ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=676, + ["cluster_burst_spawn_amount"]=301, + ["cold_ailment_duration_+%"]=678, + ["cold_ailment_effect_+%"]=679, + ["cold_damage_+%"]=295, + ["cold_damage_cannot_freeze"]=382, + ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1829, + ["cold_snap_%_chance_to_not_remove_freeze"]=680, + ["combat_rush_effect_+%"]=681, + ["combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=682, + ["combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final"]=683, + ["combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=684, + ["combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final"]=685, + ["combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final"]=686, + ["combined_chaos_other_hit_damage_stun_multiplier_+%_including_final"]=687, + ["combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final"]=688, + ["combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final"]=689, + ["combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=690, + ["combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=691, + ["combined_cold_other_hit_damage_freeze_multiplier_+%_including_final"]=692, + ["combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final"]=693, + ["combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=694, + ["combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final"]=695, + ["combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=696, + ["combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final"]=697, + ["combined_fire_other_hit_damage_freeze_multiplier_+%_including_final"]=698, + ["combined_fire_other_hit_damage_stun_multiplier_+%_including_final"]=699, + ["combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final"]=700, + ["combined_fire_spell_hit_damage_stun_multiplier_+%_including_final"]=701, + ["combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=702, + ["combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final"]=703, + ["combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=704, + ["combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final"]=705, + ["combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final"]=706, + ["combined_lightning_other_hit_damage_stun_multiplier_+%_including_final"]=707, + ["combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final"]=708, + ["combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final"]=709, + ["combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=710, + ["combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final"]=711, + ["combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=712, + ["combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final"]=713, + ["combined_physical_other_hit_damage_freeze_multiplier_+%_including_final"]=714, + ["combined_physical_other_hit_damage_stun_multiplier_+%_including_final"]=715, + ["combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final"]=716, + ["combined_physical_spell_hit_damage_stun_multiplier_+%_including_final"]=717, + ["command_minion_target_ally_below_x_life"]=718, + ["companion_all_attributes_+%"]=719, + ["consecrated_ground_area_+%"]=723, + ["consecrated_ground_effect_+%"]=720, + ["consecrated_ground_enemy_damage_taken_+%"]=721, + ["consecrated_ground_immune_to_curses"]=722, + ["consume_X_heat_on_skill_use"]=724, + ["consume_enemy_daze_to_always_hit"]=725, + ["consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final"]=726, + ["consume_enemy_freeze_to_guarantee_crit"]=727, + ["consume_enemy_fully_broken_armour_to_guarantee_crit"]=728, + ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=729, + ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=730, + ["consume_ignite_on_hit"]=731, ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=12, - ["contagion_maximum_spread_magnitude_+%_final"]=686, - ["contagion_number_of_additional_targets"]=685, - ["contagion_spread_magnitude_+%_final"]=686, - ["conversation_trap_converted_enemy_damage_+%"]=687, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=688, - ["corpse_erruption_maximum_number_of_geyers"]=689, + ["contagion_maximum_spread_magnitude_+%_final"]=733, + ["contagion_number_of_additional_targets"]=732, + ["contagion_spread_magnitude_+%_final"]=733, + ["conversation_trap_converted_enemy_damage_+%"]=734, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=735, + ["corpse_erruption_maximum_number_of_geyers"]=736, ["corpse_explosion_monster_life_%"]=24, ["corpse_explosion_monster_life_%_chaos"]=25, ["corpse_explosion_monster_life_%_lightning"]=26, - ["corpse_explosion_monster_life_permillage_chaos"]=690, + ["corpse_explosion_monster_life_permillage_chaos"]=737, ["corpse_explosion_monster_life_permillage_fire"]=27, ["corpse_explosion_monster_life_permillage_physical"]=28, - ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=691, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=364, - ["corrosive_shroud_poison_effect_+%_final_while_accumulating_poison"]=361, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=692, - ["cover_in_ash_on_hit_%"]=693, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=694, - ["created_slipstream_action_speed_+%"]=695, - ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=696, - ["critical_hit_damaging_ailment_effect_+%"]=698, - ["critical_hit_poison_effect_+%"]=699, - ["critical_strike_chance_+%"]=113, - ["critical_strike_chance_+%_per_power_charge"]=700, - ["critical_strike_chance_+%_per_righteous_charge"]=701, - ["critical_strike_chance_+%_vs_blinded_enemies"]=702, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=703, - ["critical_strike_chance_+%_vs_shocked_enemies"]=697, - ["critical_strike_multiplier_+_per_blade"]=704, - ["critical_strike_multiplier_+_per_power_charge"]=705, - ["critical_strike_multiplier_+_while_affected_by_elusive"]=118, - ["crossbow_reload_on_heavy_stun"]=706, - ["cruelty_effect_+%"]=707, - ["crush_for_2_seconds_on_hit_%_chance"]=708, - ["cull_frozen_enemies_on_hit"]=709, - ["curse_apply_as_curse_zone"]=710, - ["curse_delay_duration_ms"]=711, - ["curse_effect_+%"]=280, - ["curse_effect_duration"]=74, - ["curse_pillar_curse_effect_+%_final"]=281, - ["cyclone_area_of_effect_+%_per_additional_melee_range"]=66, - ["cyclone_first_hit_damage_+%_final"]=351, - ["cyclone_gain_stage_every_x_ms_while_channelling"]=712, - ["cyclone_max_number_of_stages"]=713, - ["cyclone_melee_weapon_range_+_per_stage"]=714, - ["cyclone_stage_decay_time_ms"]=715, - ["damage_+%"]=326, - ["damage_+%_final_to_stunned_enemies"]=295, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=716, - ["damage_+%_per_200_mana_spent_recently"]=717, - ["damage_+%_per_chain"]=718, - ["damage_+%_vs_burning_enemies"]=297, - ["damage_+%_vs_enemies_on_full_life"]=719, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=720, - ["damage_+%_while_life_leeching"]=721, - ["damage_+%_while_mana_leeching"]=722, - ["damage_infusion_%"]=43, - ["damage_over_time_+%"]=346, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=724, - ["damage_vs_enemies_on_low_life_+%"]=725, - ["damaging_ailments_deal_damage_+%_faster"]=726, - ["dark_effigy_additional_projectile_chance_per_debuff_on_target"]=727, - ["dark_ritual_damage_+%_final_per_curse_applied"]=728, - ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=729, - ["dash_grants_phasing_after_use_ms"]=730, - ["deal_no_elemental_damage"]=731, - ["deal_no_non_cold_damage"]=390, - ["deal_no_non_fire_damage"]=388, - ["deal_no_non_lightning_damage"]=389, - ["death_wish_attack_speed_+%"]=732, - ["death_wish_cast_speed_+%"]=733, - ["death_wish_hit_damage_+%_final_per_stage"]=734, - ["death_wish_max_stages"]=735, - ["death_wish_movement_speed_+%"]=736, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=737, - ["debuff_time_passed_+%"]=738, - ["degen_effect_+%"]=165, - ["desecrate_chance_for_additional_corpse_%"]=739, - ["desecrate_chance_for_special_corpse_%"]=740, - ["desecrate_corpse_level"]=287, - ["desecrate_maximum_number_of_corpses"]=741, - ["desecrate_number_of_corpses_to_create"]=286, - ["destroy_corpses_on_kill_%_chance"]=742, - ["detonate_dead_damage_+%_if_corpse_ignited"]=743, - ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=744, - ["detonating_arrow_all_damage_%_to_gain_as_fire_per_stage"]=745, - ["detonating_arrow_max_number_of_stages"]=745, - ["disable_mine_detonation_cascade"]=746, - ["discharge_chance_not_to_consume_charges_%"]=747, - ["discharge_damage_+%_if_3_charge_types_removed"]=748, - ["disintegrate_base_radius_+_per_intensify"]=749, - ["disintegrate_damage_+%_final_per_intensity"]=750, - ["disintegrate_secondary_beam_angle_+%"]=751, - ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=752, - ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=753, - ["display_additional_projectile_per_mine_in_detonation_sequence"]=754, - ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1726, - ["display_bear_warcry"]=755, - ["display_blink_base_cooldown"]=756, - ["display_brand_deonate_tag_conversion"]=757, + ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=738, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=354, + ["corrosive_shroud_poison_effect_+%_final_while_accumulating_poison"]=353, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=739, + ["cover_in_ash_on_hit_%"]=740, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=741, + ["created_slipstream_action_speed_+%"]=742, + ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=743, + ["critical_hit_damaging_ailment_effect_+%"]=745, + ["critical_hit_poison_effect_+%"]=746, + ["critical_strike_chance_+%"]=110, + ["critical_strike_chance_+%_per_power_charge"]=747, + ["critical_strike_chance_+%_per_righteous_charge"]=748, + ["critical_strike_chance_+%_vs_blinded_enemies"]=749, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=750, + ["critical_strike_chance_+%_vs_shocked_enemies"]=744, + ["critical_strike_multiplier_+_per_blade"]=751, + ["critical_strike_multiplier_+_per_power_charge"]=752, + ["critical_strike_multiplier_+_while_affected_by_elusive"]=115, + ["crossbow_ammo_always_reload"]=753, + ["crossbow_reload_on_heavy_stun"]=754, + ["cruelty_effect_+%"]=755, + ["crush_for_2_seconds_on_hit_%_chance"]=756, + ["cull_frozen_enemies_on_hit"]=757, + ["curse_apply_as_curse_zone"]=758, + ["curse_delay_duration_ms"]=759, + ["curse_effect_+%"]=276, + ["curse_effect_duration"]=73, + ["curse_pillar_curse_effect_+%_final"]=277, + ["cyclone_area_of_effect_+%_per_additional_melee_range"]=65, + ["cyclone_first_hit_damage_+%_final"]=344, + ["cyclone_gain_stage_every_x_ms_while_channelling"]=760, + ["cyclone_max_number_of_stages"]=761, + ["cyclone_melee_weapon_range_+_per_stage"]=762, + ["cyclone_stage_decay_time_ms"]=763, + ["damage_+%"]=320, + ["damage_+%_final_from_lich_apparition_cloned_skill"]=764, + ["damage_+%_final_to_stunned_enemies"]=289, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=765, + ["damage_+%_per_200_mana_spent_recently"]=766, + ["damage_+%_per_chain"]=767, + ["damage_+%_vs_burning_enemies"]=291, + ["damage_+%_vs_enemies_on_full_life"]=768, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=769, + ["damage_+%_while_life_leeching"]=770, + ["damage_+%_while_mana_leeching"]=771, + ["damage_over_time_+%"]=339, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=773, + ["damage_vs_enemies_on_low_life_+%"]=774, + ["damaging_ailments_deal_damage_+%_faster"]=775, + ["dark_effigy_additional_projectile_chance_per_debuff_on_target"]=776, + ["dark_ritual_damage_+%_final_per_curse_applied"]=777, + ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=778, + ["dash_grants_phasing_after_use_ms"]=779, + ["deal_no_elemental_damage"]=780, + ["deal_no_non_cold_damage"]=381, + ["deal_no_non_fire_damage"]=379, + ["deal_no_non_lightning_damage"]=380, + ["death_wish_attack_speed_+%"]=781, + ["death_wish_cast_speed_+%"]=782, + ["death_wish_hit_damage_+%_final_per_stage"]=783, + ["death_wish_max_stages"]=784, + ["death_wish_movement_speed_+%"]=785, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=786, + ["debuff_time_passed_+%"]=787, + ["degen_effect_+%"]=163, + ["desecrate_chance_for_additional_corpse_%"]=788, + ["desecrate_chance_for_special_corpse_%"]=789, + ["desecrate_corpse_level"]=283, + ["desecrate_maximum_number_of_corpses"]=790, + ["desecrate_number_of_corpses_to_create"]=282, + ["destroy_corpses_on_kill_%_chance"]=791, + ["detonate_dead_damage_+%_if_corpse_ignited"]=792, + ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=793, + ["detonating_arrow_all_damage_%_to_gain_as_fire_per_stage"]=794, + ["detonating_arrow_max_number_of_stages"]=794, + ["disable_mine_detonation_cascade"]=795, + ["discharge_chance_not_to_consume_charges_%"]=796, + ["discharge_damage_+%_if_3_charge_types_removed"]=797, + ["disengage_%_chance_for_additional_shockwave"]=798, + ["disintegrate_base_radius_+_per_intensify"]=799, + ["disintegrate_damage_+%_final_per_intensity"]=800, + ["disintegrate_secondary_beam_angle_+%"]=801, + ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=802, + ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=803, + ["display_additional_projectile_per_mine_in_detonation_sequence"]=804, + ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1797, + ["display_bear_warcry"]=805, + ["display_blink_base_cooldown"]=806, + ["display_brand_deonate_tag_conversion"]=807, ["display_disable_melee_weapons"]=41, - ["display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=758, - ["display_estimate_main_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=758, - ["display_estimate_maximum_roll_main_hand_chill_magnitude"]=759, - ["display_estimate_maximum_roll_off_hand_chill_magnitude"]=760, - ["display_estimate_maximum_roll_secondary_chill_magnitude"]=761, - ["display_estimate_maximum_roll_spell_chill_magnitude"]=762, - ["display_estimate_minimum_roll_main_hand_chill_magnitude"]=759, - ["display_estimate_minimum_roll_off_hand_chill_magnitude"]=760, - ["display_estimate_minimum_roll_secondary_chill_magnitude"]=761, - ["display_estimate_minimum_roll_spell_chill_magnitude"]=762, - ["display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=763, - ["display_estimate_off_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=763, - ["display_fake_attack_hit_bleed"]=764, - ["display_fake_attack_hit_chill"]=765, - ["display_fake_attack_hit_ignite"]=766, - ["display_fake_attack_hit_poison"]=767, - ["display_generic_ongoing_triggerer_is_invocation_skill"]=1590, - ["display_herald_of_thunder_storm"]=694, - ["display_linked_curse_effect_+%"]=768, - ["display_linked_curse_effect_+%_final"]=769, - ["display_main_hand_chance_to_hit_%_at_max_range"]=770, - ["display_main_hand_chance_to_hit_%_at_mid_range"]=771, - ["display_main_hand_chance_to_hit_%_at_min_range"]=772, - ["display_main_hand_hit_chance_estimate_range_max"]=770, - ["display_main_hand_hit_chance_estimate_range_mid"]=771, - ["display_main_hand_hit_chance_estimate_range_min"]=772, - ["display_max_ailment_bearer_charges"]=773, - ["display_max_blight_stacks"]=774, - ["display_max_fire_beam_stacks"]=775, - ["display_max_upgraded_sentinels_of_absolution"]=776, - ["display_max_upgraded_sentinels_of_dominance"]=777, - ["display_maximum_roll_main_hand_bleeding_damage_per_minute"]=778, - ["display_maximum_roll_main_hand_ignite_damage_per_minute"]=779, - ["display_maximum_roll_main_hand_poison_damage_per_minute"]=780, - ["display_maximum_roll_off_hand_bleeding_damage_per_minute"]=781, - ["display_maximum_roll_off_hand_ignite_damage_per_minute"]=782, - ["display_maximum_roll_off_hand_poison_damage_per_minute"]=783, - ["display_maximum_roll_secondary_bleeding_damage_per_minute"]=784, - ["display_maximum_roll_secondary_ignite_damage_per_minute"]=785, - ["display_maximum_roll_secondary_poison_damage_per_minute"]=786, - ["display_maximum_roll_spell_bleeding_damage_per_minute"]=787, - ["display_maximum_roll_spell_ignite_damage_per_minute"]=788, - ["display_maximum_roll_spell_poison_damage_per_minute"]=789, - ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=790, - ["display_minimum_roll_main_hand_bleeding_damage_per_minute"]=778, - ["display_minimum_roll_main_hand_ignite_damage_per_minute"]=779, - ["display_minimum_roll_main_hand_poison_damage_per_minute"]=780, - ["display_minimum_roll_off_hand_bleeding_damage_per_minute"]=781, - ["display_minimum_roll_off_hand_ignite_damage_per_minute"]=782, - ["display_minimum_roll_off_hand_poison_damage_per_minute"]=783, - ["display_minimum_roll_secondary_bleeding_damage_per_minute"]=784, - ["display_minimum_roll_secondary_ignite_damage_per_minute"]=785, - ["display_minimum_roll_secondary_poison_damage_per_minute"]=786, - ["display_minimum_roll_spell_bleeding_damage_per_minute"]=787, - ["display_minimum_roll_spell_ignite_damage_per_minute"]=788, - ["display_minimum_roll_spell_poison_damage_per_minute"]=789, - ["display_mirage_warriors_no_spirit_strikes"]=791, - ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=792, - ["display_off_hand_chance_to_hit_%_at_max_range"]=793, - ["display_off_hand_chance_to_hit_%_at_mid_range"]=794, - ["display_off_hand_chance_to_hit_%_at_min_range"]=795, - ["display_off_hand_hit_chance_estimate_range_max"]=793, - ["display_off_hand_hit_chance_estimate_range_mid"]=794, - ["display_off_hand_hit_chance_estimate_range_min"]=795, - ["display_removes_and_grants_elusive_when_used"]=797, - ["display_sigil_of_power_stage_gain_delay"]=798, - ["display_skill_cooldown_time_ms"]=799, - ["display_skill_fixed_duration_buff"]=800, - ["display_skill_increased_item_rarity_+%"]=801, - ["display_storm_burst_jump_time_ms"]=802, - ["display_total_bleeding_duration"]=803, - ["display_total_chill_duration"]=804, - ["display_total_ignite_duration"]=805, - ["display_total_poison_duration"]=806, - ["display_touch_of_fire"]=807, - ["display_trigger_link"]=808, - ["display_triggerbots_do_their_job"]=809, - ["display_unhinge_grant_insane"]=810, - ["display_vaal_breach_no_drops_xp"]=811, - ["display_vaal_molten_shell_alternate_description"]=1124, + ["display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=808, + ["display_estimate_main_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=808, + ["display_estimate_maximum_roll_main_hand_chill_magnitude"]=809, + ["display_estimate_maximum_roll_off_hand_chill_magnitude"]=810, + ["display_estimate_maximum_roll_secondary_chill_magnitude"]=811, + ["display_estimate_maximum_roll_spell_chill_magnitude"]=812, + ["display_estimate_maximum_total_main_hand_ignite_chance_%"]=813, + ["display_estimate_maximum_total_main_hand_shock_chance_%"]=814, + ["display_estimate_maximum_total_off_hand_ignite_chance_%"]=815, + ["display_estimate_maximum_total_off_hand_shock_chance_%"]=816, + ["display_estimate_maximum_total_spell_ignite_chance_%"]=819, + ["display_estimate_maximum_total_spell_shock_chance_%"]=820, + ["display_estimate_minimum_roll_main_hand_chill_magnitude"]=809, + ["display_estimate_minimum_roll_off_hand_chill_magnitude"]=810, + ["display_estimate_minimum_roll_secondary_chill_magnitude"]=811, + ["display_estimate_minimum_roll_spell_chill_magnitude"]=812, + ["display_estimate_minimum_total_main_hand_ignite_chance_%"]=813, + ["display_estimate_minimum_total_main_hand_shock_chance_%"]=814, + ["display_estimate_minimum_total_off_hand_ignite_chance_%"]=815, + ["display_estimate_minimum_total_off_hand_shock_chance_%"]=816, + ["display_estimate_minimum_total_spell_ignite_chance_%"]=819, + ["display_estimate_minimum_total_spell_shock_chance_%"]=820, + ["display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=821, + ["display_estimate_off_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=821, + ["display_fake_attack_hit_bleed"]=822, + ["display_fake_attack_hit_chill"]=823, + ["display_fake_attack_hit_ignite"]=824, + ["display_fake_attack_hit_poison"]=825, + ["display_herald_of_thunder_storm"]=741, + ["display_linked_curse_effect_+%"]=826, + ["display_linked_curse_effect_+%_final"]=827, + ["display_main_hand_chance_to_hit_%_at_max_range"]=828, + ["display_main_hand_chance_to_hit_%_at_mid_range"]=829, + ["display_main_hand_chance_to_hit_%_at_min_range"]=830, + ["display_main_hand_hit_chance_estimate_range_max"]=828, + ["display_main_hand_hit_chance_estimate_range_mid"]=829, + ["display_main_hand_hit_chance_estimate_range_min"]=830, + ["display_max_ailment_bearer_charges"]=831, + ["display_max_blight_stacks"]=832, + ["display_max_fire_beam_stacks"]=833, + ["display_max_upgraded_sentinels_of_absolution"]=834, + ["display_max_upgraded_sentinels_of_dominance"]=835, + ["display_maximum_roll_main_hand_bleeding_damage_per_minute"]=836, + ["display_maximum_roll_main_hand_ignite_damage_per_minute"]=837, + ["display_maximum_roll_main_hand_poison_damage_per_minute"]=838, + ["display_maximum_roll_off_hand_bleeding_damage_per_minute"]=839, + ["display_maximum_roll_off_hand_ignite_damage_per_minute"]=840, + ["display_maximum_roll_off_hand_poison_damage_per_minute"]=841, + ["display_maximum_roll_secondary_bleeding_damage_per_minute"]=842, + ["display_maximum_roll_secondary_ignite_damage_per_minute"]=843, + ["display_maximum_roll_secondary_poison_damage_per_minute"]=844, + ["display_maximum_roll_spell_bleeding_damage_per_minute"]=845, + ["display_maximum_roll_spell_ignite_damage_per_minute"]=846, + ["display_maximum_roll_spell_poison_damage_per_minute"]=847, + ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=848, + ["display_minimum_roll_main_hand_bleeding_damage_per_minute"]=836, + ["display_minimum_roll_main_hand_ignite_damage_per_minute"]=837, + ["display_minimum_roll_main_hand_poison_damage_per_minute"]=838, + ["display_minimum_roll_off_hand_bleeding_damage_per_minute"]=839, + ["display_minimum_roll_off_hand_ignite_damage_per_minute"]=840, + ["display_minimum_roll_off_hand_poison_damage_per_minute"]=841, + ["display_minimum_roll_secondary_bleeding_damage_per_minute"]=842, + ["display_minimum_roll_secondary_ignite_damage_per_minute"]=843, + ["display_minimum_roll_secondary_poison_damage_per_minute"]=844, + ["display_minimum_roll_spell_bleeding_damage_per_minute"]=845, + ["display_minimum_roll_spell_ignite_damage_per_minute"]=846, + ["display_minimum_roll_spell_poison_damage_per_minute"]=847, + ["display_mirage_warriors_no_spirit_strikes"]=849, + ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=850, + ["display_off_hand_chance_to_hit_%_at_max_range"]=851, + ["display_off_hand_chance_to_hit_%_at_mid_range"]=852, + ["display_off_hand_chance_to_hit_%_at_min_range"]=853, + ["display_off_hand_hit_chance_estimate_range_max"]=851, + ["display_off_hand_hit_chance_estimate_range_mid"]=852, + ["display_off_hand_hit_chance_estimate_range_min"]=853, + ["display_removes_and_grants_elusive_when_used"]=855, + ["display_sigil_of_power_stage_gain_delay"]=856, + ["display_skill_cooldown_time_ms"]=857, + ["display_skill_fixed_duration_buff"]=858, + ["display_skill_increased_item_rarity_+%"]=859, + ["display_storm_burst_jump_time_ms"]=860, + ["display_total_bleeding_duration"]=861, + ["display_total_chill_duration"]=862, + ["display_total_ignite_duration"]=863, + ["display_total_poison_duration"]=864, + ["display_total_shock_duration"]=865, + ["display_total_shock_magnitude"]=866, + ["display_touch_of_fire"]=867, + ["display_trigger_link"]=868, + ["display_triggerbots_do_their_job"]=869, + ["display_unhinge_grant_insane"]=870, + ["display_vaal_breach_no_drops_xp"]=871, + ["display_vaal_molten_shell_alternate_description"]=1192, ["display_what_freezing_pulse_does"]=16, - ["distance_scaled_accuracy_rating_penalty_+%"]=812, - ["divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%"]=1717, - ["divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%"]=1716, - ["divine_tempest_beam_width_+%"]=813, - ["divine_tempest_damage_+%_final_while_channelling"]=814, - ["divine_tempest_hit_damage_+%_final_per_stage"]=815, - ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=816, - ["divine_tempest_stage_on_hitting_rare_unique"]=817, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=818, - ["doubles_have_movement_speed_+%"]=122, - ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=819, - ["dual_wield_inherent_attack_speed_+%_final"]=820, - ["earthquake_aftershock_maximum_added_physical_damage"]=821, - ["earthquake_aftershock_minimum_added_physical_damage"]=821, - ["earthquake_initial_slam_area_of_effect_+%"]=822, - ["earthshatter_damage_+%_final_per_spike"]=823, - ["electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target"]=824, - ["elemental_damage_+%_final_per_righteous_charge"]=826, - ["elemental_damage_cannot_be_reflected"]=825, - ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=827, - ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=828, - ["elemental_hit_no_physical_chaos_damage"]=304, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze"]=829, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite"]=830, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_shock"]=831, - ["elemental_penetration_%_from_resonance"]=832, - ["elemental_strike_physical_damage_%_to_convert"]=335, - ["elusive_effect_+%"]=833, - ["ember_fusillade_damage_+%_final_per_ember_fired"]=834, - ["embrace_madness_amount_of_cooldown_to_gain_ms"]=835, - ["empower_barrage_cooldown_%_of_attack_time"]=836, - ["empowered_attack_damage_+%"]=837, - ["empowered_barrage_maximum_cooldown_ms"]=836, - ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1714, - ["enduring_cry_grants_x_additional_endurance_charges"]=838, - ["enemies_chilled_by_bane_and_contagion"]=839, - ["enemies_covered_in_frost_as_unfrozen"]=840, - ["enemies_taunted_by_your_warcies_are_intimidated"]=841, - ["enemies_you_shock_movement_speed_+%"]=842, - ["enemies_you_shock_take_%_increased_physical_damage"]=843, - ["enemy_aggro_radius_+%"]=340, - ["enemy_phys_reduction_%_penalty_vs_hit"]=844, - ["energy_generated_+%"]=845, - ["energy_shield_delay_-%"]=163, - ["energy_shield_recharge_rate_+%"]=164, - ["energy_shield_regeneration_rate_+%"]=846, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=847, - ["ethereal_knives_projectiles_needed_per_vestige_blade"]=848, - ["evasion_and_physical_damage_reduction_rating_+%"]=849, - ["expanding_fire_cone_angle_+%_per_stage"]=850, - ["expanding_fire_cone_final_wave_always_ignite"]=851, - ["expanding_fire_cone_maximum_number_of_stages"]=852, - ["expanding_fire_cone_radius_+_per_stage"]=853, - ["expanding_fire_cone_radius_limit"]=853, - ["expanding_fire_cone_release_hit_damage_+%_final"]=854, - ["explosive_arrow_explosion_base_damage_+permyriad"]=156, - ["explosive_arrow_explosion_maximum_added_fire_damage"]=158, - ["explosive_arrow_explosion_minimum_added_fire_damage"]=158, - ["explosive_arrow_hit_damage_+%_final_per_stack"]=212, - ["explosive_arrow_maximum_bonus_explosion_radius"]=161, - ["explosive_arrow_stack_limit"]=855, - ["extra_target_targeting_distance_+%"]=856, - ["eye_of_winter_display_number_of_explosion_shards"]=44, - ["eye_of_winter_number_of_brittle_stacks_to_apply"]=857, - ["eye_of_winter_spiral_angle_+%"]=858, - ["eye_of_winter_spiral_fire_frequency_+%"]=859, - ["faster_bleed_%"]=860, - ["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=861, - ["feast_of_flesh_gain_X_life_per_corpse_consumed"]=861, - ["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=861, - ["fire_beam_additional_stack_damage_+%_final"]=862, - ["fire_beam_enemy_fire_resistance_%_maximum"]=863, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=864, - ["fire_beam_length_+%"]=865, - ["fire_damage_+%"]=300, - ["fire_damage_taken_+"]=234, - ["fire_dot_multiplier_+"]=866, - ["fire_golem_grants_damage_+%"]=316, - ["fire_nova_damage_+%_per_repeat_final"]=327, - ["fire_shield_damage_threshold"]=172, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=867, - ["fires_1_projectile_if_no_steel_ammo"]=868, - ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=869, - ["firestorm_final_impact_damage_+%_final"]=870, - ["firestorm_initial_impact_area_of_effect_+%_final"]=871, - ["firestorm_initial_impact_damage_+%_final"]=872, - ["firewall_applies_%_fire_exposure"]=873, - ["fixed_skill_effect_duration"]=874, - ["flame_dash_burning_damage_+%_final"]=875, - ["flame_surge_burning_ground_creation_cooldown_ms"]=876, - ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=877, - ["flame_wall_projectiles_ignite_effect_+%_final"]=878, - ["flame_whip_damage_+%_final_vs_burning_enemies"]=296, - ["flameblast_area_+%_final_per_stage"]=879, - ["flameblast_hit_damage_+%_final_per_10_life_reserved"]=880, - ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=881, - ["flameblast_ignite_chance_+%_per_stage"]=882, - ["flameblast_maximum_stages"]=883, - ["flameblast_starts_with_X_additional_stages"]=884, - ["flamethrower_damage_+%_per_stage_final"]=226, - ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=885, - ["flamethrower_tower_trap_number_of_flamethrowers"]=886, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=887, - ["flask_charges_used_+%"]=888, - ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=895, - ["flask_throw_base_charges_used"]=889, - ["flask_throw_bleed_effect_+%_final"]=890, - ["flask_throw_cold_exposure_ms"]=891, - ["flask_throw_fire_exposure_ms"]=893, - ["flask_throw_lightning_exposure_ms"]=894, - ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=896, - ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=897, - ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=896, - ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=897, - ["flask_throw_poison_effect_+%_final"]=898, - ["flask_throw_ruby_flask_ignite_effect_+%"]=899, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=892, - ["flicker_strike_additional_flickers_from_power_charges"]=248, - ["flicker_strike_buff_movement_speed_+%"]=900, - ["flicker_strike_teleport_range_+%"]=901, - ["fortify_duration_+%"]=313, - ["fortify_on_hit"]=902, - ["fortify_on_hit_close_range"]=903, - ["freeze_applies_cold_resistance_+"]=904, - ["freeze_as_though_dealt_damage_+%"]=203, - ["freeze_duration_+%"]=95, - ["freeze_duration_ms_+"]=905, - ["freeze_mine_cold_resistance_+_while_frozen"]=246, - ["freezing_pulse_damage_+%_final_at_long_range"]=907, - ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=908, - ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=909, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=910, - ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=911, - ["frost_fury_added_duration_per_stage_ms"]=912, - ["frost_fury_base_fire_interval_ms"]=913, - ["frost_fury_duration_+%_per_stage"]=914, - ["frost_fury_fire_speed_+%_final_while_channelling"]=915, - ["frost_fury_fire_speed_+%_per_stage"]=916, - ["frost_fury_max_number_of_stages"]=917, - ["frost_globe_absorb_damage_%_enemy_in_bubble"]=918, - ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=919, - ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=920, - ["frost_globe_health_per_stage"]=921, - ["frost_globe_life_regeneration_rate_per_minute_%"]=922, - ["frost_globe_max_stages"]=923, - ["frost_globe_stage_gain_interval_ms"]=924, - ["frost_wall_total_maximum_life"]=925, - ["frostbolt_projectile_acceleration"]=926, - ["frostbolt_projectile_speed_+%_final"]=927, - ["frozen_legion_%_chance_to_summon_additional_statue"]=928, - ["fully_break_enemies_armour_on_heavy_stun"]=929, - ["fully_broken_armour_duration_ms_+"]=930, - ["fully_broken_armour_duration_ms_removed_on_hit"]=931, - ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=161, - ["gain_1_rage_on_use_%_chance"]=932, - ["gain_X_rage_on_hit_once_per_skill_use"]=933, - ["gain_X_volatility_on_empowered_skill_use"]=934, - ["gain_elusive_on_crit_%_chance"]=935, - ["gain_endurance_charge_on_melee_stun"]=245, - ["gain_endurance_charge_on_melee_stun_%"]=245, - ["gain_fortify_on_melee_hit_ms"]=936, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=937, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=938, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=939, - ["gain_power_charge_on_kill_with_hit_%"]=940, - ["gain_rage_on_hit_%_chance"]=942, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=943, - ["gain_righteous_charge_on_mana_spent_%"]=944, - ["gain_x_rage_on_hit"]=941, - ["gain_x_rage_on_melee_hit"]=945, - ["gain_x_valour_per_minute_while_unique_presence"]=946, - ["galvanic_field_beam_delay_ms"]=947, - ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=948, - ["galvanic_field_maximum_number_of_spheres"]=1080, - ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=949, - ["galvanic_field_retargeting_delay_ms"]=514, - ["generic_ongoing_trigger_maximum_energy"]=950, - ["generic_ongoing_trigger_triggers_at_maximum_energy"]=950, - ["glacial_cascade_travel_speed_+%"]=951, - ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=204, - ["global_always_hit"]=292, - ["global_cannot_crit"]=366, - ["global_chance_to_blind_on_hit_%"]=213, - ["global_chance_to_knockback_%"]=59, - ["global_hit_causes_monster_flee_%"]=191, - ["global_knockback"]=952, - ["global_maim_on_hit"]=953, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1474, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=954, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1474, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=954, - ["global_poison_on_hit"]=348, - ["global_reduce_enemy_block_%"]=293, - ["glorious_madness_timer_ms"]=955, - ["golem_buff_effect_+%"]=956, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=957, - ["grenade_skill_%_chance_to_explode_twice"]=958, - ["ground_slam_angle_+%"]=960, - ["groundslam_damage_to_close_targets_+%_final"]=369, - ["hazard_rearm_%_chance"]=961, - ["herald_of_agony_add_stack_on_poison"]=962, - ["herald_of_agony_poison_effect_+%_final"]=963, - ["herald_of_light_summon_champion_on_kill"]=964, - ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=965, - ["herald_of_purity_physical_damage_+%_final"]=966, - ["hex_transfer_on_death_total_range"]=967, - ["hexblast_damage_+%_final_per_second_remaining_curse_duration"]=968, - ["hexblast_hit_damage_+%_final_if_hexed"]=969, - ["hinder_enemy_chaos_damage_+%"]=970, - ["hinder_enemy_chaos_damage_taken_+%"]=971, - ["hit_%_chance_to_be_dazing"]=975, - ["hit_damage_+%_vs_chilled_enemies"]=972, - ["hit_damage_stun_multiplier_+%"]=973, - ["hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour"]=974, - ["hits_grant_cruelty"]=976, - ["hits_ignore_all_enemy_monster_resistances"]=977, - ["hits_ignore_enemy_monster_physical_damage_reduction"]=978, - ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=979, - ["holy_path_teleport_range_+%"]=980, - ["holy_relic_nova_life_regeneration_rate_per_minute"]=981, - ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=982, - ["hundred_times_attacks_per_second"]=983, - ["hundred_times_average_damage_per_skill_use"]=984, - ["hundred_times_casts_per_second"]=985, - ["hundred_times_damage_per_second"]=986, - ["hydro_sphere_pulse_frequency_ms"]=987, - ["hydrosphere_hit_cooldown_ms"]=988, - ["ice_crash_first_stage_damage_+%_final"]=989, - ["ice_crash_second_hit_damage_+%_final"]=314, - ["ice_crash_third_hit_damage_+%_final"]=315, - ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=990, - ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=990, - ["ice_golem_grants_accuracy_+%"]=318, - ["ice_golem_grants_critical_strike_chance_+%"]=317, - ["ice_nova_number_of_repeats"]=289, - ["ice_nova_radius_+%_per_repeat"]=290, - ["ice_shield_moving_mana_degeneration_per_minute"]=232, - ["ice_spear_distance_before_form_change_+%"]=991, - ["ice_spear_second_form_critical_strike_chance_+%"]=209, - ["ice_spear_second_form_critical_strike_multiplier_+"]=210, - ["ice_spear_second_form_projectile_speed_+%_final"]=211, - ["igneous_shield_perfect_block_cooldown_ms"]=1749, - ["igneous_shield_perfect_block_window_time_ms"]=992, - ["ignite_duration_+%"]=100, - ["ignite_effect_+%_final_against_frozen_enemies"]=993, - ["ignite_proliferation_delay_ms"]=183, - ["ignite_proliferation_radius"]=183, - ["ignites_apply_fire_resistance_+"]=994, - ["immolation_brand_burn_damage_+%_final_per_stage"]=995, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=996, - ["impacting_steel_secondary_projectile_damage_+%_final"]=997, - ["impale_magnitude_+%"]=998, - ["impale_on_hit_%_chance"]=999, - ["impurity_cold_damage_taken_+%_final"]=1000, - ["impurity_fire_damage_taken_+%_final"]=1001, - ["impurity_lightning_damage_taken_+%_final"]=1002, - ["incinerate_damage_+%_per_stage"]=227, - ["incinerate_starts_with_X_additional_stages"]=1003, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1004, - ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1005, - ["infernal_cry_%_max_life_as_fire_on_death"]=311, - ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"]=1713, - ["infernal_cry_empowered_attacks_trigger_combust_display"]=1727, - ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%"]=1760, - ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%"]=1760, - ["infernal_cry_explosion_fire_damage_+%_final_per_corpse_power"]=1006, - ["inflict_all_exposure_on_hit"]=1007, - ["inflict_cold_exposure_for_x_ms_on_cold_crit"]=1008, - ["inflict_fire_exposure_for_x_ms_on_ignite"]=1009, - ["inflict_lightning_exposure_for_x_ms_on_shock"]=1010, - ["infusion_grants_life_regeneration_rate_per_minute_%"]=1011, - ["inspiration_charge_duration_+%"]=1012, - ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=324, - ["intermediary_chaos_area_damage_to_deal_per_minute"]=138, - ["intermediary_chaos_damage_to_deal_per_minute"]=139, - ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=1013, - ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=1014, - ["intermediary_cold_area_damage_to_deal_per_minute"]=144, - ["intermediary_cold_damage_to_deal_per_minute"]=145, - ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=1015, - ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=1016, - ["intermediary_fire_area_damage_to_deal_per_minute"]=148, - ["intermediary_fire_damage_to_deal_per_minute"]=149, - ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=1017, - ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=1018, - ["intermediary_lightning_skill_dot_area_damage_to_deal_per_minute"]=1019, - ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=1020, - ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=1021, - ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=1022, - ["intimidate_nearby_enemies_on_use_for_ms"]=1023, - ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1730, - ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"]=1710, + ["distance_scaled_accuracy_rating_penalty_+%"]=872, + ["divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%"]=1787, + ["divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%"]=1786, + ["divine_tempest_beam_width_+%"]=873, + ["divine_tempest_damage_+%_final_while_channelling"]=874, + ["divine_tempest_hit_damage_+%_final_per_stage"]=875, + ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=876, + ["divine_tempest_stage_on_hitting_rare_unique"]=877, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=878, + ["doubles_have_movement_speed_+%"]=120, + ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=879, + ["dual_wield_inherent_attack_speed_+%_final"]=880, + ["earthquake_aftershock_maximum_added_physical_damage"]=881, + ["earthquake_aftershock_minimum_added_physical_damage"]=881, + ["earthquake_initial_slam_area_of_effect_+%"]=882, + ["earthshatter_damage_+%_final_per_spike"]=883, + ["elemental_damage_+%_final_per_righteous_charge"]=885, + ["elemental_damage_cannot_be_reflected"]=884, + ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=886, + ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=887, + ["elemental_hit_no_physical_chaos_damage"]=298, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze"]=888, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite"]=889, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_shock"]=890, + ["elemental_penetration_%_from_resonance"]=891, + ["elemental_strike_physical_damage_%_to_convert"]=328, + ["elusive_effect_+%"]=892, + ["ember_fusillade_damage_+%_final_per_ember_fired"]=893, + ["embrace_madness_amount_of_cooldown_to_gain_ms"]=894, + ["empower_barrage_cooldown_%_of_attack_time"]=895, + ["empowered_attack_damage_+%"]=896, + ["empowered_barrage_maximum_cooldown_ms"]=895, + ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1784, + ["enduring_cry_grants_x_additional_endurance_charges"]=897, + ["enemies_chilled_by_bane_and_contagion"]=898, + ["enemies_covered_in_frost_as_unfrozen"]=899, + ["enemies_taunted_by_your_warcies_are_intimidated"]=900, + ["enemies_you_shock_movement_speed_+%"]=901, + ["enemies_you_shock_take_%_increased_physical_damage"]=902, + ["enemy_aggro_radius_+%"]=333, + ["enemy_phys_reduction_%_penalty_vs_hit"]=903, + ["energy_generated_+%"]=904, + ["energy_shield_delay_-%"]=161, + ["energy_shield_recharge_rate_+%"]=162, + ["energy_shield_regeneration_rate_+%"]=905, + ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=906, + ["ethereal_knives_projectiles_needed_per_vestige_blade"]=907, + ["evasion_and_physical_damage_reduction_rating_+%"]=908, + ["expanding_fire_cone_angle_+%_per_stage"]=909, + ["expanding_fire_cone_final_wave_always_ignite"]=910, + ["expanding_fire_cone_maximum_number_of_stages"]=911, + ["expanding_fire_cone_radius_+_per_stage"]=912, + ["expanding_fire_cone_radius_limit"]=912, + ["expanding_fire_cone_release_hit_damage_+%_final"]=913, + ["explosive_arrow_explosion_base_damage_+permyriad"]=154, + ["explosive_arrow_explosion_maximum_added_fire_damage"]=156, + ["explosive_arrow_explosion_minimum_added_fire_damage"]=156, + ["explosive_arrow_hit_damage_+%_final_per_stack"]=208, + ["explosive_arrow_maximum_bonus_explosion_radius"]=159, + ["explosive_arrow_stack_limit"]=914, + ["exposure_effect_+%"]=915, + ["extra_target_targeting_distance_+%"]=916, + ["eye_of_winter_display_number_of_explosion_shards"]=43, + ["eye_of_winter_number_of_brittle_stacks_to_apply"]=917, + ["eye_of_winter_spiral_angle_+%"]=918, + ["eye_of_winter_spiral_fire_frequency_+%"]=919, + ["faster_bleed_%"]=920, + ["feast_of_flesh_regeneration_duration"]=921, + ["fire_beam_additional_stack_damage_+%_final"]=922, + ["fire_beam_enemy_fire_resistance_%_maximum"]=923, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=924, + ["fire_beam_length_+%"]=925, + ["fire_damage_+%"]=294, + ["fire_damage_taken_+"]=230, + ["fire_dot_multiplier_+"]=926, + ["fire_golem_grants_damage_+%"]=310, + ["fire_nova_damage_+%_per_repeat_final"]=321, + ["fire_shield_damage_threshold"]=169, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=927, + ["fires_1_projectile_if_no_steel_ammo"]=928, + ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=929, + ["firestorm_final_impact_damage_+%_final"]=930, + ["firestorm_initial_impact_area_of_effect_+%_final"]=931, + ["firestorm_initial_impact_damage_+%_final"]=932, + ["firewall_applies_%_fire_exposure"]=933, + ["fixed_skill_effect_duration"]=934, + ["flame_dash_burning_damage_+%_final"]=935, + ["flame_surge_burning_ground_creation_cooldown_ms"]=936, + ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=937, + ["flame_wall_projectiles_ignite_effect_+%_final"]=938, + ["flame_whip_damage_+%_final_vs_burning_enemies"]=290, + ["flameblast_area_+%_final_per_stage"]=939, + ["flameblast_hit_damage_+%_final_per_10_life_reserved"]=940, + ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=941, + ["flameblast_maximum_stages"]=942, + ["flameblast_starts_with_X_additional_stages"]=943, + ["flamethrower_damage_+%_per_stage_final"]=222, + ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=944, + ["flamethrower_tower_trap_number_of_flamethrowers"]=945, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=946, + ["flask_charges_used_+%"]=947, + ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=954, + ["flask_throw_base_charges_used"]=948, + ["flask_throw_bleed_effect_+%_final"]=949, + ["flask_throw_cold_exposure_ms"]=950, + ["flask_throw_fire_exposure_ms"]=952, + ["flask_throw_lightning_exposure_ms"]=953, + ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=955, + ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=956, + ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=955, + ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=956, + ["flask_throw_poison_effect_+%_final"]=957, + ["flask_throw_ruby_flask_ignite_effect_+%"]=958, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=951, + ["flicker_strike_additional_flickers_from_power_charges"]=244, + ["flicker_strike_buff_movement_speed_+%"]=959, + ["flicker_strike_teleport_range_+%"]=960, + ["font_of_blood_radius"]=3, + ["font_of_mana_radius"]=5, + ["font_of_rage_radius"]=7, + ["fortify_duration_+%"]=307, + ["fortify_on_hit"]=961, + ["fortify_on_hit_close_range"]=962, + ["freeze_applies_cold_resistance_+"]=963, + ["freeze_duration_+%"]=92, + ["freeze_duration_ms_+"]=964, + ["freeze_mine_cold_resistance_+_while_frozen"]=242, + ["freezing_pulse_damage_+%_final_at_long_range"]=966, + ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=967, + ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=968, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=969, + ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=970, + ["frost_fury_added_duration_per_stage_ms"]=971, + ["frost_fury_base_fire_interval_ms"]=972, + ["frost_fury_duration_+%_per_stage"]=973, + ["frost_fury_fire_speed_+%_final_while_channelling"]=974, + ["frost_fury_fire_speed_+%_per_stage"]=975, + ["frost_fury_max_number_of_stages"]=976, + ["frost_globe_absorb_damage_%_enemy_in_bubble"]=977, + ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=978, + ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=979, + ["frost_globe_health_per_stage"]=980, + ["frost_globe_life_regeneration_rate_per_minute_%"]=981, + ["frost_globe_max_stages"]=982, + ["frost_globe_stage_gain_interval_ms"]=983, + ["frost_wall_total_maximum_life"]=984, + ["frostbolt_projectile_acceleration"]=985, + ["frostbolt_projectile_speed_+%_final"]=986, + ["frozen_legion_%_chance_to_summon_additional_statue"]=987, + ["fully_break_enemies_armour_on_heavy_stun"]=988, + ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=989, + ["fully_broken_armour_duration_ms_removed_on_hit"]=990, + ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=159, + ["gain_1_rage_on_use_%_chance"]=991, + ["gain_X_volatility_on_empowered_skill_use"]=992, + ["gain_elusive_on_crit_%_chance"]=993, + ["gain_endurance_charge_on_melee_stun"]=241, + ["gain_endurance_charge_on_melee_stun_%"]=241, + ["gain_fortify_on_melee_hit_ms"]=994, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=995, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=996, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=997, + ["gain_power_charge_on_kill_with_hit_%"]=998, + ["gain_rage_on_hit_%_chance"]=1000, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=1001, + ["gain_righteous_charge_on_mana_spent_%"]=1002, + ["gain_x_rage_on_attack_hit"]=1003, + ["gain_x_rage_on_hit"]=999, + ["gain_x_rage_on_melee_hit"]=1004, + ["galvanic_field_beam_delay_ms"]=1005, + ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1006, + ["galvanic_field_maximum_number_of_spheres"]=1148, + ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=1007, + ["generic_ongoing_trigger_maximum_energy"]=1008, + ["generic_ongoing_trigger_triggers_at_maximum_energy"]=1008, + ["generic_ongoing_triggerer_is_invocation_skill"]=1665, + ["glacial_cascade_travel_speed_+%"]=1009, + ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=200, + ["global_always_hit"]=288, + ["global_bleed_on_hit"]=1010, + ["global_cannot_crit"]=357, + ["global_chance_to_blind_on_hit_%"]=209, + ["global_chance_to_knockback_%"]=58, + ["global_hit_causes_monster_flee_%"]=188, + ["global_knockback"]=1011, + ["global_maim_on_hit"]=1012, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=1549, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=1013, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=1549, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=1013, + ["global_poison_on_hit"]=341, + ["glorious_madness_timer_ms"]=1014, + ["golem_buff_effect_+%"]=1015, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=1016, + ["grenade_skill_%_chance_to_explode_twice"]=1017, + ["ground_slam_angle_+%"]=1019, + ["groundslam_damage_to_close_targets_+%_final"]=360, + ["has_freeze_cull"]=1020, + ["hazard_rearm_%_chance"]=1021, + ["herald_of_agony_add_stack_on_poison"]=1022, + ["herald_of_agony_poison_effect_+%_final"]=1023, + ["herald_of_light_summon_champion_on_kill"]=1024, + ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=1025, + ["herald_of_purity_physical_damage_+%_final"]=1026, + ["hex_transfer_on_death_total_range"]=1027, + ["hexblast_damage_+%_final_per_second_remaining_curse_duration"]=1028, + ["hexblast_hit_damage_+%_final_if_hexed"]=1029, + ["hinder_enemy_chaos_damage_+%"]=1030, + ["hinder_enemy_chaos_damage_taken_+%"]=1031, + ["hit_%_chance_to_be_dazing"]=1035, + ["hit_damage_+%_vs_chilled_enemies"]=1032, + ["hit_damage_stun_multiplier_+%"]=1033, + ["hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour"]=1034, + ["hits_grant_cruelty"]=1036, + ["hits_ignore_all_enemy_monster_resistances"]=1037, + ["hits_ignore_enemy_monster_physical_damage_reduction"]=1038, + ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=1039, + ["holy_path_teleport_range_+%"]=1040, + ["holy_relic_nova_life_regeneration_rate_per_minute"]=1041, + ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1042, + ["hundred_times_attacks_per_second"]=1043, + ["hundred_times_average_damage_per_skill_use"]=1044, + ["hundred_times_casts_per_second"]=1045, + ["hundred_times_damage_per_second"]=1046, + ["hydro_sphere_pulse_frequency_ms"]=1047, + ["hydrosphere_hit_cooldown_ms"]=1048, + ["ice_crash_first_stage_damage_+%_final"]=1049, + ["ice_crash_second_hit_damage_+%_final"]=308, + ["ice_crash_third_hit_damage_+%_final"]=309, + ["ice_crystal_shatter_detonation_area_of_effect_+%_final"]=1050, + ["ice_crystal_shatter_detonation_damage_+%_final"]=1051, + ["ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1052, + ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1053, + ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1053, + ["ice_golem_grants_accuracy_+%"]=312, + ["ice_golem_grants_critical_strike_chance_+%"]=311, + ["ice_nova_number_of_repeats"]=285, + ["ice_nova_radius_+%_per_repeat"]=286, + ["ice_shield_moving_mana_degeneration_per_minute"]=228, + ["ice_spear_distance_before_form_change_+%"]=1054, + ["ice_spear_second_form_critical_strike_chance_+%"]=205, + ["ice_spear_second_form_critical_strike_multiplier_+"]=206, + ["ice_spear_second_form_projectile_speed_+%_final"]=207, + ["igneous_shield_perfect_block_cooldown_ms"]=1826, + ["igneous_shield_perfect_block_window_time_ms"]=1055, + ["ignite_duration_+%"]=97, + ["ignite_effect_+%_final_against_frozen_enemies"]=1056, + ["ignite_effect_+%_final_if_heat_is_consumed"]=724, + ["ignite_proliferation_delay_ms"]=180, + ["ignite_proliferation_radius"]=180, + ["ignites_apply_fire_resistance_+"]=1057, + ["immolation_brand_burn_damage_+%_final_per_stage"]=1058, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1059, + ["impacting_steel_secondary_projectile_damage_+%_final"]=1060, + ["impale_magnitude_+%"]=1061, + ["impale_on_hit_%_chance"]=1062, + ["impurity_cold_damage_taken_+%_final"]=1063, + ["impurity_fire_damage_taken_+%_final"]=1064, + ["impurity_lightning_damage_taken_+%_final"]=1065, + ["incinerate_damage_+%_per_stage"]=223, + ["incinerate_starts_with_X_additional_stages"]=1066, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1067, + ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1068, + ["infernal_cry_%_max_life_as_fire_on_death"]=305, + ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"]=1783, + ["infernal_cry_empowered_attacks_trigger_combust_display"]=1798, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%"]=1837, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%"]=1837, + ["infernal_cry_explosion_fire_damage_+%_final_per_corpse_power"]=1069, + ["inflict_all_exposure_on_hit"]=1070, + ["inflict_exposure_for_x_ms_on_cold_crit"]=1071, + ["inflict_exposure_for_x_ms_on_ignite"]=1072, + ["inflict_exposure_for_x_ms_on_shock"]=1073, + ["inflict_exposure_on_hit_%_chance"]=1074, + ["infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy"]=1075, + ["infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy"]=1076, + ["infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy"]=1077, + ["inspiration_charge_duration_+%"]=1078, + ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=318, + ["intermediary_chaos_area_damage_to_deal_per_minute"]=136, + ["intermediary_chaos_damage_to_deal_per_minute"]=137, + ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=1079, + ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=1080, + ["intermediary_cold_area_damage_to_deal_per_minute"]=142, + ["intermediary_cold_damage_to_deal_per_minute"]=143, + ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=1081, + ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=1082, + ["intermediary_fire_area_damage_to_deal_per_minute"]=146, + ["intermediary_fire_damage_to_deal_per_minute"]=147, + ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=1083, + ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=1084, + ["intermediary_lightning_skill_dot_area_damage_to_deal_per_minute"]=1085, + ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=1086, + ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=1087, + ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=1088, + ["intimidate_nearby_enemies_on_use_for_ms"]=1089, + ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1801, + ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"]=1780, ["is_remote_mine"]=36, ["is_trap"]=37, - ["jagged_ground_duration_ms"]=1025, - ["keystone_minion_instability"]=133, - ["keystone_point_blank"]=187, - ["kill_enemy_on_hit_if_under_10%_life"]=186, - ["killed_monster_dropped_item_quantity_+%"]=105, - ["killed_monster_dropped_item_rarity_+%"]=104, - ["killing_blow_consumes_corpse_restore_%_life"]=1026, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1027, - ["kinetic_bolt_forks_apply_to_zig_zags"]=1028, - ["kinetic_bolt_number_of_zig_zags"]=1751, - ["knockback_chance_%_at_close_range"]=1029, - ["knockback_distance_+%"]=61, - ["lacerate_hit_damage_+%_final_vs_bleeding_enemies"]=1030, - ["lancing_steel_damage_+%_at_close_range"]=1031, - ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1032, - ["lancing_steel_targeting_range_+%"]=1033, - ["life_gain_per_target"]=120, - ["life_regeneration_rate_+%"]=207, - ["life_regeneration_rate_per_minute_%"]=206, + ["jagged_ground_duration_ms"]=1091, + ["keystone_minion_instability"]=131, + ["keystone_point_blank"]=184, + ["kill_enemy_on_hit_if_under_10%_life"]=183, + ["killed_monster_dropped_item_quantity_+%"]=102, + ["killed_monster_dropped_item_rarity_+%"]=101, + ["killing_blow_consumes_corpse_restore_%_life"]=1092, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1093, + ["kinetic_bolt_forks_apply_to_zig_zags"]=1094, + ["kinetic_bolt_number_of_zig_zags"]=1828, + ["knockback_chance_%_at_close_range"]=1095, + ["knockback_distance_+%"]=60, + ["lacerate_hit_damage_+%_final_vs_bleeding_enemies"]=1096, + ["lancing_steel_damage_+%_at_close_range"]=1097, + ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1098, + ["lancing_steel_targeting_range_+%"]=1099, + ["life_gain_per_target"]=118, + ["life_regeneration_rate_+%"]=203, + ["life_regeneration_rate_per_minute_%"]=202, ["light_radius_increases_apply_to_area_of_effect"]=32, - ["lightning_ailment_effect_+%"]=1034, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1035, - ["lightning_explosion_mine_aura_damage_taken_+%"]=1753, - ["lightning_golem_grants_attack_and_cast_speed_+%"]=321, - ["lightning_penetration_%_while_on_low_mana"]=218, - ["lightning_rod_%_chance_for_additional_burst_on_landing"]=1036, - ["lightning_storm_hit_frequency_ms"]=1037, - ["lightning_storm_hit_prevention_duration_ms"]=1038, - ["lightning_storm_max_number_of_storms"]=1039, - ["lightning_tendrils_channelled_larger_pulse_always_crit"]=127, - ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1040, - ["lightning_tendrils_channelled_larger_pulse_interval"]=127, - ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1041, - ["lightning_tower_trap_interval_duration_ms"]=1042, - ["lightning_tower_trap_number_of_beams"]=1042, - ["lightning_trap_projectiles_leave_shocking_ground"]=299, - ["lightning_warp_shocked_ground_base_duration_ms"]=1043, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1044, - ["lose_blood_scythe_charge_on_kill"]=561, - ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1045, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1046, - ["maim_effect_+%"]=1047, - ["maim_on_hit_%"]=1048, - ["main_hand_accuracy_rating"]=1049, - ["main_hand_attack_damage_penetrates_chaos_resist_%"]=1050, - ["main_hand_attack_damage_penetrates_cold_resist_%"]=1051, - ["main_hand_attack_damage_penetrates_fire_resist_%"]=1052, - ["main_hand_attack_damage_penetrates_lightning_resist_%"]=1053, - ["main_hand_critical_hit_damage_bonus"]=1054, - ["main_hand_critical_strike_chance"]=1055, - ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1056, - ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1057, - ["main_hand_maximum_chaos_damage"]=1058, - ["main_hand_maximum_cold_damage"]=1059, - ["main_hand_maximum_fire_damage"]=1060, - ["main_hand_maximum_lightning_damage"]=1061, - ["main_hand_maximum_physical_damage"]=1062, - ["main_hand_maximum_total_damage"]=1063, - ["main_hand_minimum_chaos_damage"]=1058, - ["main_hand_minimum_cold_damage"]=1059, - ["main_hand_minimum_fire_damage"]=1060, - ["main_hand_minimum_lightning_damage"]=1061, - ["main_hand_minimum_physical_damage"]=1062, - ["main_hand_minimum_total_damage"]=1063, - ["main_hand_reload_time"]=1064, - ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1065, - ["mana_degeneration_per_minute"]=231, - ["mana_gain_per_target"]=1066, - ["mana_tempest_effects_linger_X_ms"]=1067, - ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1068, - ["manaforged_arrows_total_mana_threshold"]=1069, - ["mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks"]=1070, - ["mark_effect_+%"]=1071, - ["max_crab_aspect_stacks"]=1072, - ["max_number_of_absolution_sentinels"]=1073, - ["max_number_of_lightning_warp_markers"]=1074, - ["max_steel_ammo"]=1075, - ["maximum_added_cold_damage_per_frenzy_charge"]=1095, - ["maximum_added_cold_damage_vs_chilled_enemies"]=1096, - ["maximum_added_lightning_damage_from_skill"]=1097, - ["maximum_fire_damage_per_fuse_arrow_orb"]=160, - ["maximum_life_%_damage_absorbed_per_jade_consumed"]=1076, - ["maximum_life_+%_for_corpses_you_create"]=1077, - ["maximum_number_of_arctic_armour_stationary_stacks"]=1078, - ["maximum_number_of_blades_left_in_ground"]=1079, - ["maximum_number_of_mirage_warriors"]=1081, - ["maximum_number_of_snapping_adder_projectiles"]=1082, - ["maximum_number_of_spinning_blades"]=342, - ["maximum_number_of_spiritual_cry_warriors"]=1715, - ["maximum_number_of_summoned_doubles"]=1083, - ["maximum_number_of_vaal_ice_shot_mirages"]=1084, - ["maximum_secondary_physical_damage_per_15_strength"]=1099, - ["maximum_virulence_stacks"]=1085, - ["meditate_energy_shield_recharge_rate_+%_final"]=1086, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=53, - ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=48, - ["melee_counterattack_trigger_on_block_%"]=252, - ["melee_counterattack_trigger_on_hit_%"]=250, - ["melee_damage_vs_bleeding_enemies_+%"]=329, - ["melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill"]=1088, - ["melee_physical_damage_+%"]=155, - ["melee_range_+"]=337, - ["melee_weapon_range_+"]=336, - ["mine_cannot_rearm"]=1089, - ["mine_critical_strike_chance_+%_per_power_charge"]=1090, - ["mine_detonates_instantly"]=1091, + ["lightning_ailment_effect_+%"]=1100, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1101, + ["lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1102, + ["lightning_explosion_mine_aura_damage_taken_+%"]=1830, + ["lightning_golem_grants_attack_and_cast_speed_+%"]=315, + ["lightning_penetration_%_while_on_low_mana"]=214, + ["lightning_rod_%_chance_for_additional_burst_on_landing"]=1103, + ["lightning_storm_hit_frequency_ms"]=1104, + ["lightning_storm_hit_prevention_duration_ms"]=1105, + ["lightning_storm_max_number_of_storms"]=1106, + ["lightning_tendrils_channelled_larger_pulse_always_crit"]=125, + ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1107, + ["lightning_tendrils_channelled_larger_pulse_interval"]=125, + ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1108, + ["lightning_tower_trap_interval_duration_ms"]=1109, + ["lightning_tower_trap_number_of_beams"]=1109, + ["lightning_trap_projectiles_leave_shocking_ground"]=293, + ["lightning_warp_shocked_ground_base_duration_ms"]=1110, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1111, + ["lose_blood_scythe_charge_on_kill"]=564, + ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1112, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1113, + ["maim_effect_+%"]=1114, + ["maim_on_hit_%"]=1115, + ["main_hand_accuracy_rating"]=1116, + ["main_hand_attack_damage_penetrates_chaos_resist_%"]=1117, + ["main_hand_attack_damage_penetrates_cold_resist_%"]=1118, + ["main_hand_attack_damage_penetrates_fire_resist_%"]=1119, + ["main_hand_attack_damage_penetrates_lightning_resist_%"]=1120, + ["main_hand_critical_hit_damage_bonus"]=1121, + ["main_hand_critical_strike_chance"]=1122, + ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1123, + ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1124, + ["main_hand_maximum_chaos_damage"]=1125, + ["main_hand_maximum_cold_damage"]=1126, + ["main_hand_maximum_fire_damage"]=1127, + ["main_hand_maximum_lightning_damage"]=1128, + ["main_hand_maximum_physical_damage"]=1129, + ["main_hand_maximum_total_damage"]=1130, + ["main_hand_minimum_chaos_damage"]=1125, + ["main_hand_minimum_cold_damage"]=1126, + ["main_hand_minimum_fire_damage"]=1127, + ["main_hand_minimum_lightning_damage"]=1128, + ["main_hand_minimum_physical_damage"]=1129, + ["main_hand_minimum_total_damage"]=1130, + ["main_hand_reload_time"]=1131, + ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1132, + ["mana_degeneration_per_minute"]=227, + ["mana_gain_per_target"]=1133, + ["mana_tempest_effects_linger_X_ms"]=1134, + ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1135, + ["manaforged_arrows_total_mana_threshold"]=1136, + ["mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks"]=1137, + ["mark_effect_+%"]=1138, + ["max_crab_aspect_stacks"]=1139, + ["max_number_of_absolution_sentinels"]=1140, + ["max_number_of_lightning_warp_markers"]=1141, + ["max_steel_ammo"]=1142, + ["maximum_added_cold_damage_per_frenzy_charge"]=1163, + ["maximum_added_cold_damage_vs_chilled_enemies"]=1164, + ["maximum_added_lightning_damage_from_skill"]=1165, + ["maximum_fire_damage_per_fuse_arrow_orb"]=158, + ["maximum_life_%_damage_absorbed_per_jade_consumed"]=1143, + ["maximum_life_+%_for_corpses_you_create"]=1144, + ["maximum_number_of_arctic_armour_stationary_stacks"]=1145, + ["maximum_number_of_blades_left_in_ground"]=1146, + ["maximum_number_of_crossbow_heat_stacks"]=1147, + ["maximum_number_of_mirage_warriors"]=1149, + ["maximum_number_of_snapping_adder_projectiles"]=1150, + ["maximum_number_of_spinning_blades"]=335, + ["maximum_number_of_spiritual_cry_warriors"]=1785, + ["maximum_number_of_summoned_doubles"]=1151, + ["maximum_number_of_vaal_ice_shot_mirages"]=1152, + ["maximum_secondary_physical_damage_per_15_strength"]=1167, + ["maximum_virulence_stacks"]=1153, + ["meditate_energy_shield_recharge_rate_+%_final"]=1154, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=52, + ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=47, + ["melee_counterattack_trigger_on_block_%"]=248, + ["melee_counterattack_trigger_on_hit_%"]=246, + ["melee_damage_vs_bleeding_enemies_+%"]=323, + ["melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill"]=1156, + ["melee_physical_damage_+%"]=153, + ["melee_range_+"]=330, + ["melee_weapon_range_+"]=329, + ["mine_cannot_rearm"]=1157, + ["mine_critical_strike_chance_+%_per_power_charge"]=1158, + ["mine_detonates_instantly"]=1159, ["mine_detonation_radius_+%"]=40, - ["mine_detonation_speed_+%"]=1092, - ["mine_duration"]=201, - ["mine_laying_speed_+%"]=200, - ["mine_projectile_speed_+%_per_frenzy_charge"]=1093, - ["mine_throwing_speed_+%_per_frenzy_charge"]=1094, - ["minimum_added_cold_damage_per_frenzy_charge"]=1095, - ["minimum_added_cold_damage_vs_chilled_enemies"]=1096, - ["minimum_added_lightning_damage_from_skill"]=1097, - ["minimum_fire_damage_per_fuse_arrow_orb"]=160, - ["minimum_power_from_quality"]=1098, - ["minimum_secondary_physical_damage_per_15_strength"]=1099, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1113, - ["minion_additional_physical_damage_reduction_%"]=1100, - ["minion_attack_speed_+%"]=123, - ["minion_block_%"]=1101, - ["minion_burning_damage_+%"]=1102, - ["minion_cast_speed_+%"]=124, - ["minion_chance_to_deal_double_damage_%"]=1103, - ["minion_chance_to_taunt_on_hit_%"]=1104, - ["minion_cooldown_recovery_+%"]=1105, - ["minion_damage_+%"]=121, - ["minion_damage_+%_on_full_life"]=1106, - ["minion_duration"]=82, - ["minion_fire_damage_taken_+%"]=1107, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1108, - ["minion_larger_aggro_radius"]=1758, - ["minion_life_regeneration_rate_per_minute_%"]=1109, - ["minion_maim_on_hit_%"]=1110, - ["minion_maximum_all_elemental_resistances_%"]=1111, - ["minion_maximum_life_+%"]=132, - ["minion_melee_damage_+%"]=1112, - ["minion_movement_speed_+%"]=125, - ["minion_rage_effect_+%"]=1114, - ["minion_skill_area_of_effect_+%"]=1115, - ["minion_stun_threshold_reduction_+%"]=1116, - ["minions_are_defensive"]=1759, - ["minions_cannot_be_damaged_after_summoned_ms"]=1117, - ["minions_chance_to_intimidate_on_hit_%"]=1118, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1119, - ["minions_inflict_exposure_on_hit_%_chance"]=1120, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1121, - ["mirage_archer_number_of_additional_projectiles"]=1122, + ["mine_detonation_speed_+%"]=1160, + ["mine_duration"]=198, + ["mine_laying_speed_+%"]=197, + ["mine_projectile_speed_+%_per_frenzy_charge"]=1161, + ["mine_throwing_speed_+%_per_frenzy_charge"]=1162, + ["minimum_added_cold_damage_per_frenzy_charge"]=1163, + ["minimum_added_cold_damage_vs_chilled_enemies"]=1164, + ["minimum_added_lightning_damage_from_skill"]=1165, + ["minimum_fire_damage_per_fuse_arrow_orb"]=158, + ["minimum_power_from_quality"]=1166, + ["minimum_secondary_physical_damage_per_15_strength"]=1167, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1181, + ["minion_additional_physical_damage_reduction_%"]=1168, + ["minion_attack_speed_+%"]=121, + ["minion_block_%"]=1169, + ["minion_burning_damage_+%"]=1170, + ["minion_cast_speed_+%"]=122, + ["minion_chance_to_deal_double_damage_%"]=1171, + ["minion_chance_to_taunt_on_hit_%"]=1172, + ["minion_cooldown_recovery_+%"]=1173, + ["minion_damage_+%"]=119, + ["minion_damage_+%_on_full_life"]=1174, + ["minion_duration"]=80, + ["minion_fire_damage_taken_+%"]=1175, + ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1176, + ["minion_larger_aggro_radius"]=1835, + ["minion_life_regeneration_rate_per_minute_%"]=1177, + ["minion_maim_on_hit_%"]=1178, + ["minion_maximum_all_elemental_resistances_%"]=1179, + ["minion_maximum_life_+%"]=130, + ["minion_melee_damage_+%"]=1180, + ["minion_movement_speed_+%"]=123, + ["minion_rage_effect_+%"]=1182, + ["minion_skill_area_of_effect_+%"]=1183, + ["minion_stun_threshold_reduction_+%"]=1184, + ["minions_are_defensive"]=1836, + ["minions_cannot_be_damaged_after_summoned_ms"]=1185, + ["minions_chance_to_intimidate_on_hit_%"]=1186, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1187, + ["minions_inflict_exposure_on_hit_%_chance"]=1188, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1189, + ["mirage_archer_number_of_additional_projectiles"]=1190, ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=35, ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=33, ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=34, - ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1124, - ["molten_shell_damage_absorb_limit_%_of_armour"]=1123, - ["molten_shell_damage_absorbed_%"]=1123, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1125, - ["molten_shell_max_damage_absorbed"]=1123, - ["molten_strike_projectiles_chain_when_impacting_ground"]=1126, - ["monster_response_time_ms"]=153, - ["mortal_call_elemental_damage_taken_+%_final"]=1127, - ["mortal_call_physical_damage_taken_+%_final"]=1128, - ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1129, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1754, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1754, - ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1754, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1754, - ["movement_velocity_cap"]=128, - ["multiple_projectiles_projectile_spread_+%"]=1130, - ["multistrike_area_of_effect_+%_per_repeat"]=1131, - ["multistrike_damage_+%_final_on_first_repeat"]=1132, - ["multistrike_damage_+%_final_on_second_repeat"]=1133, - ["multistrike_damage_+%_final_on_third_repeat"]=1134, - ["never_freeze"]=298, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=332, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=331, - ["newshocknova_first_ring_damage_+%_final"]=309, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1135, - ["no_movement_speed"]=103, - ["non_damaging_ailment_effect_+%"]=1136, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=1137, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff"]=1138, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1139, - ["non_spell_cast_duration_ms"]=1140, - ["nova_skills_cast_at_target_location"]=1141, - ["number_of_additional_chain_targets"]=1142, - ["number_of_additional_fissures"]=1143, - ["number_of_allowed_storm_arrows"]=1144, - ["number_of_champions_of_light_allowed"]=1145, - ["number_of_corpses_to_consume"]=1146, - ["number_of_crossbow_bolts"]=1147, - ["number_of_herald_scorpions_allowed"]=1149, - ["number_of_marks_allowed_per_type"]=1150, + ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1192, + ["molten_shell_damage_absorb_limit_%_of_armour"]=1191, + ["molten_shell_damage_absorbed_%"]=1191, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1193, + ["molten_shell_max_damage_absorbed"]=1191, + ["molten_strike_projectiles_chain_when_impacting_ground"]=1194, + ["monster_response_time_ms"]=151, + ["mortal_call_elemental_damage_taken_+%_final"]=1195, + ["mortal_call_physical_damage_taken_+%_final"]=1196, + ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1197, + ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1831, + ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1831, + ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1831, + ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1831, + ["movement_velocity_cap"]=126, + ["multiple_projectiles_projectile_spread_+%"]=1198, + ["multistrike_area_of_effect_+%_per_repeat"]=1199, + ["multistrike_damage_+%_final_on_first_repeat"]=1200, + ["multistrike_damage_+%_final_on_second_repeat"]=1201, + ["multistrike_damage_+%_final_on_third_repeat"]=1202, + ["never_freeze"]=292, + ["never_shock"]=1203, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=326, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=325, + ["newshocknova_first_ring_damage_+%_final"]=303, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1204, + ["no_movement_speed"]=100, + ["non_damaging_ailment_effect_+%"]=1205, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff"]=1206, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=1207, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff"]=1208, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1209, + ["non_spell_cast_duration_ms"]=1210, + ["nova_skills_cast_at_target_location"]=1211, + ["number_of_additional_chain_targets"]=1212, + ["number_of_additional_fissures"]=1213, + ["number_of_additional_impaled_debuffs_to_apply"]=1214, + ["number_of_allowed_storm_arrows"]=1215, + ["number_of_branching_fissures"]=1216, + ["number_of_champions_of_light_allowed"]=1217, + ["number_of_corpses_to_consume"]=1218, + ["number_of_crossbow_bolts"]=1219, + ["number_of_herald_scorpions_allowed"]=1221, + ["number_of_marks_allowed_per_type"]=1222, ["number_of_mines_to_place"]=36, - ["number_of_mirage_archers_allowed"]=1151, - ["number_of_reapers_allowed"]=1152, - ["number_of_relics_allowed"]=1153, - ["number_of_skeletal_constructs_allowed"]=1154, - ["number_of_support_ghosts_allowed"]=523, - ["number_of_tempest_bells_allowed"]=1155, - ["number_of_totems_to_summon"]=1156, + ["number_of_mirage_archers_allowed"]=1223, + ["number_of_reapers_allowed"]=1224, + ["number_of_relics_allowed"]=1225, + ["number_of_skeletal_constructs_allowed"]=1226, + ["number_of_support_ghosts_allowed"]=525, + ["number_of_tempest_bells_allowed"]=1227, + ["number_of_totems_to_summon"]=1228, ["number_of_traps_to_throw"]=37, - ["number_of_warcries_exerting_this_action"]=1024, - ["off_hand_accuracy_rating"]=1157, - ["off_hand_attack_damage_penetrates_chaos_resist_%"]=1158, - ["off_hand_attack_damage_penetrates_cold_resist_%"]=1159, - ["off_hand_attack_damage_penetrates_fire_resist_%"]=1160, - ["off_hand_attack_damage_penetrates_lightning_resist_%"]=1161, - ["off_hand_critical_hit_damage_bonus"]=1162, - ["off_hand_critical_strike_chance"]=1163, - ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1164, - ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1165, - ["off_hand_maximum_chaos_damage"]=1166, - ["off_hand_maximum_cold_damage"]=1167, - ["off_hand_maximum_fire_damage"]=1168, - ["off_hand_maximum_lightning_damage"]=1169, - ["off_hand_maximum_physical_damage"]=1170, - ["off_hand_maximum_total_damage"]=1171, - ["off_hand_minimum_chaos_damage"]=1166, - ["off_hand_minimum_cold_damage"]=1167, - ["off_hand_minimum_fire_damage"]=1168, - ["off_hand_minimum_lightning_damage"]=1169, - ["off_hand_minimum_physical_damage"]=1170, - ["off_hand_minimum_total_damage"]=1171, + ["number_of_warcries_exerting_this_action"]=1090, + ["off_hand_accuracy_rating"]=1229, + ["off_hand_attack_damage_penetrates_chaos_resist_%"]=1230, + ["off_hand_attack_damage_penetrates_cold_resist_%"]=1231, + ["off_hand_attack_damage_penetrates_fire_resist_%"]=1232, + ["off_hand_attack_damage_penetrates_lightning_resist_%"]=1233, + ["off_hand_critical_hit_damage_bonus"]=1234, + ["off_hand_critical_strike_chance"]=1235, + ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1236, + ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1237, + ["off_hand_maximum_chaos_damage"]=1238, + ["off_hand_maximum_cold_damage"]=1239, + ["off_hand_maximum_fire_damage"]=1240, + ["off_hand_maximum_lightning_damage"]=1241, + ["off_hand_maximum_physical_damage"]=1242, + ["off_hand_maximum_total_damage"]=1243, + ["off_hand_minimum_chaos_damage"]=1238, + ["off_hand_minimum_cold_damage"]=1239, + ["off_hand_minimum_fire_damage"]=1240, + ["off_hand_minimum_lightning_damage"]=1241, + ["off_hand_minimum_physical_damage"]=1242, + ["off_hand_minimum_total_damage"]=1243, ["offering_skill_effect_duration_per_corpse"]=21, - ["oil_arrow_explosion_base_damage_+permyriad"]=157, - ["oil_arrow_explosion_maximum_added_fire_damage"]=159, - ["oil_arrow_explosion_minimum_added_fire_damage"]=159, - ["orb_of_storms_bolt_frequency_ms"]=1172, - ["orb_of_storms_channelling_bolt_frequency_ms"]=1173, - ["orb_of_storms_maximum_number_of_hits"]=1174, - ["orb_of_storms_maximum_number_of_orbs"]=1175, - ["overpowered_effect_+%"]=1176, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1177, - ["parallel_projectile_firing_point_x_dist_+%"]=1178, + ["oil_arrow_explosion_base_damage_+permyriad"]=155, + ["oil_arrow_explosion_maximum_added_fire_damage"]=157, + ["oil_arrow_explosion_minimum_added_fire_damage"]=157, + ["orb_of_storms_bolt_frequency_ms"]=1244, + ["orb_of_storms_channelling_bolt_frequency_ms"]=1245, + ["orb_of_storms_maximum_number_of_hits"]=1246, + ["orb_of_storms_maximum_number_of_orbs"]=1247, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1248, + ["parallel_projectile_firing_point_x_dist_+%"]=1249, parent="active_skill_gem_stat_descriptions", - ["penance_brand_additional_descriptions_boolean"]=1179, - ["penance_brand_base_spread_radius_+"]=1180, - ["penetrate_%_fire_resistance_per_100_dexterity"]=1181, - ["petrification_statue_target_action_speed_-%"]=1186, - ["phantasm_grant_buff_maximum_added_physical_damage"]=1187, - ["phantasm_grant_buff_minimum_added_physical_damage"]=1187, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1188, - ["phase_run_melee_physical_damage_+%_final"]=154, - ["phase_through_objects"]=339, - ["phys_cascade_trap_interval_duration_ms"]=1189, - ["phys_cascade_trap_number_of_cascades"]=1189, - ["physical_damage_%_dealt_as_evasion_break_vs_bleeding"]=1190, - ["physical_damage_reduction_%_per_crab_aspect_stack"]=1191, - ["physical_damage_reduction_rating_+%"]=173, - ["physical_damage_taken_+"]=233, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1192, - ["plague_bearer_gains_%_of_damage_from_inflicted_poisons"]=362, - ["plague_bearer_maximum_stored_poison_damage"]=363, - ["plague_bearer_movement_speed_+%_while_infecting"]=1193, - ["plague_bearer_nova_area_+%_final_per_incubation_%"]=1194, - ["plague_bearer_poison_effect_+%_while_infecting"]=365, - ["plague_burst_%_stored_value_to_deal_as_physical_damage"]=1195, - ["plague_burst_area_+%_final_maximum"]=1196, - ["plague_burst_triggered_by_bursting_plague_death"]=1197, - ["poison_skill_effect_duration"]=81, - ["poisonbloom_arrow_bloom_burst_1%_more_damage_per_x_stored_poison"]=1200, - ["poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison"]=1200, - ["poisonbloom_arrow_burst_base_radius_+1_per_x_stored_poison"]=1199, - ["poisonbloom_arrow_max_additional_burst_base_radius_+"]=1199, - ["portal_alternate_destination_chance_permyriad"]=1201, - ["predict_totem_maximum_energy_shield"]=1202, - ["predict_totem_maximum_life"]=1203, - ["primary_projectile_chain_num"]=1204, - ["primary_projectile_display_targets_to_pierce"]=89, - ["primary_projectile_impale_chance_%"]=1205, - ["prismatic_rain_beam_frequency_ms"]=1206, - ["projectile_attack_damage_+%_in_blood_stance"]=1207, - ["projectile_chance_to_be_able_to_chain_from_terrain_%"]=1209, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=1210, - ["projectile_chance_to_not_pierce_%"]=1211, - ["projectile_damage_+%_if_pierced_enemy"]=1212, - ["projectile_damage_+%_per_remaining_chain"]=1213, - ["projectile_damage_+%_vs_nearby_enemies"]=1218, + ["penance_brand_additional_descriptions_boolean"]=1250, + ["penance_brand_base_spread_radius_+"]=1251, + ["penetrate_%_fire_resistance_per_100_dexterity"]=1252, + ["petrification_statue_target_action_speed_-%"]=1257, + ["phantasm_grant_buff_maximum_added_physical_damage"]=1258, + ["phantasm_grant_buff_minimum_added_physical_damage"]=1258, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1259, + ["phase_run_melee_physical_damage_+%_final"]=152, + ["phase_through_objects"]=332, + ["phys_cascade_trap_interval_duration_ms"]=1260, + ["phys_cascade_trap_number_of_cascades"]=1260, + ["physical_damage_%_dealt_as_evasion_break_vs_bleeding"]=1261, + ["physical_damage_reduction_%_per_crab_aspect_stack"]=1262, + ["physical_damage_reduction_rating_+%"]=170, + ["physical_damage_taken_+"]=229, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1263, + ["plague_bearer_gains_%_of_damage_from_inflicted_poisons"]=1264, + ["plague_bearer_maximum_stored_poison_damage"]=1264, + ["plague_bearer_movement_speed_+%_while_infecting"]=1265, + ["plague_bearer_poison_effect_+%_while_infecting"]=355, + ["plague_burst_%_stored_value_to_deal_as_physical_damage"]=1266, + ["plague_burst_area_+%_final_maximum"]=1267, + ["plague_burst_triggered_by_bursting_plague_death"]=1268, + ["poisonbloom_arrow_bloom_burst_1%_more_damage_per_x_stored_poison"]=1271, + ["poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison"]=1271, + ["poisonbloom_arrow_burst_base_radius_+1_per_x_stored_poison"]=1270, + ["poisonbloom_arrow_max_additional_burst_base_radius_+"]=1270, + ["portal_alternate_destination_chance_permyriad"]=1272, + ["predict_totem_maximum_energy_shield"]=1273, + ["predict_totem_maximum_life"]=1274, + ["primary_projectile_chain_num"]=1275, + ["primary_projectile_display_targets_to_pierce"]=87, + ["primary_projectile_impale_chance_%"]=1276, + ["prismatic_rain_beam_frequency_ms"]=1277, + ["projectile_attack_damage_+%_in_blood_stance"]=1278, + ["projectile_chance_to_be_able_to_chain_from_terrain_%"]=1280, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=1281, + ["projectile_chance_to_not_pierce_%"]=1282, + ["projectile_damage_+%_if_pierced_enemy"]=1283, + ["projectile_damage_+%_per_remaining_chain"]=1284, + ["projectile_damage_+%_vs_nearby_enemies"]=1289, ["projectile_damage_modifiers_apply_to_skill_dot"]=31, - ["projectile_ground_effect_duration"]=79, - ["projectile_number_of_targets_to_pierce"]=88, - ["projectile_return_%_chance"]=225, - ["projectile_speed_+%"]=1214, - ["projectile_speed_+%_in_sand_stance"]=1215, - ["projectiles_can_shotgun"]=1216, - ["projectiles_can_split_at_end_of_range"]=1208, - ["projectiles_can_split_from_terrain"]=1208, - ["projectiles_cannot_split"]=1217, - ["projectiles_fork_when_passing_a_flame_wall"]=1219, - ["projectiles_pierce_all_targets_in_x_range"]=1220, - ["projectiles_rain"]=1221, - ["projectiles_return"]=225, - ["puppet_master_duration_ms"]=1222, - ["purge_expose_resist_%_matching_highest_element_damage"]=1223, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1224, - ["quake_slam_fully_charged_explosion_damage_+%_final"]=341, - ["quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem"]=413, - ["quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem"]=959, - ["quality_display_active_skill_ignite_effect_is_gem"]=426, - ["quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem"]=431, - ["quality_display_active_skill_required_number_of_combo_stacks_is_gem"]=436, - ["quality_display_active_skill_returning_damage_is_gem"]=368, - ["quality_display_arc_is_gem"]=470, - ["quality_display_banner_buff_effect_+%_final_per_resource_is_gem"]=360, - ["quality_display_base_number_of_crossbow_bolts_is_gem"]=519, - ["quality_display_base_number_of_projectiles_is_gem"]=521, - ["quality_display_contagion_is_gem"]=686, - ["quality_display_earthshatter_is_gem"]=1366, - ["quality_display_ember_fusilade_is_gem"]=834, - ["quality_display_exsanguinate_beam_targets_is_gem"]=567, - ["quality_display_ice_crash_is_gem"]=315, - ["quality_display_immortal_call_is_gem"]=1129, - ["quality_display_incinerate_is_gem_hit"]=854, - ["quality_display_infernal_cry_is_gem"]=1760, - ["quality_display_mana_tempest_is_gem"]=1138, - ["quality_display_rapid_shot_maximum_num_of_stacks_is_gem"]=1235, - ["quality_display_rune_paint_is_gem"]=1256, - ["quality_display_sandstorm_swipe_is_gem"]=1262, - ["quality_display_shield_wall_is_gem"]=522, - ["quality_display_spear_puncture_is_gem"]=510, - ["queens_demand_effect"]=796, - ["quick_guard_damage_absorb_limit"]=1225, - ["quick_guard_damage_absorbed_%"]=1225, - ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1227, - ["rage_slash_maximum_vortices"]=1230, - ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1228, - ["rage_slash_rage_sacrifice_per_damage_bonus"]=1227, - ["rage_slash_rage_sacrifice_per_radius_bonus"]=1228, - ["rage_slash_sacrifice_rage_%"]=1226, - ["rage_slash_vortex_attack_speed_+%_final"]=1229, - ["ragestorm_movement_speed_+%"]=1231, - ["rain_of_arrows_additional_sequence_chance_%"]=1232, - ["rain_of_arrows_arrow_speed_+%"]=1233, - ["raise_zombie_empowerment_effect_+%"]=1234, - ["rallying_cry_buff_effect_on_minions_+%_final"]=1718, - ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1721, - ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1708, - ["rapid_shot_maximum_num_of_stacks"]=1235, - ["reap_life_%_granted_on_death_with_debuff"]=561, - ["reave_additional_max_stacks"]=1236, - ["reave_area_of_effect_+%_final_per_stage"]=244, - ["reaver_enrage_base_life_%_degen_per_minute"]=1237, - ["reaver_enrage_decay_rate_increase_+%_final"]=1237, - ["recall_sigil_target_search_range_+%"]=1238, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=1239, - ["recover_%_maximum_life_on_cull"]=1240, - ["recover_%_maximum_mana_on_cull"]=1241, - ["recover_permyriad_life_on_skill_use"]=1242, - ["reduce_enemy_chaos_resistance_%"]=1244, - ["reduce_enemy_cold_resistance_%"]=1245, - ["reduce_enemy_dodge_%"]=294, - ["reduce_enemy_elemental_resistance_%"]=219, - ["reduce_enemy_fire_resistance_%"]=1246, - ["reduce_enemy_lightning_resistance_%"]=1247, - ["refresh_bleeding_duration_on_hit_%_chance"]=1248, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=394, - ["reload_speed_+%"]=1249, - ["remove_freeze_on_ignite"]=1250, - ["repeat_last_step_of_combo_attack"]=1251, - ["returning_projectiles_always_pierce"]=371, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1252, - ["righteous_fire_spell_damage_+%_final"]=179, - ["ring_of_ice_placement_distance"]=1253, - ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1254, - ["rune_paint_area_of_effect_+%_per_rune_level"]=1255, - ["rune_paint_hit_damage_+%_final_per_rune_level"]=1256, - ["rune_paint_mana_spend_per_rune_upgrade"]=1257, - ["rune_paint_max_rune_level"]=1258, - ["sacrifice_%_life_on_skill_use"]=1259, - ["sanctify_wave_damage_+%_final"]=1260, - ["sandstorm_swipe_max_stages"]=1261, - ["sandstorm_swipe_storm_damage_+%_final_per_stage"]=1262, - ["sandstorm_swipe_storm_radius_+_per_stage"]=1263, - ["scorpion_minion_attack_speed_+%"]=1264, - ["scorpion_minion_maximum_added_physical_damage"]=1266, - ["scorpion_minion_minimum_added_physical_damage"]=1266, - ["scorpion_minion_physical_damage_+%"]=1265, - ["secondary_buff_effect_duration"]=77, - ["secondary_critical_hit_damage_bonus"]=1267, - ["secondary_critical_strike_chance"]=1268, - ["secondary_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1269, - ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=152, - ["secondary_maximum_chaos_damage"]=1270, - ["secondary_maximum_cold_damage"]=1271, - ["secondary_maximum_fire_damage"]=1272, - ["secondary_maximum_lightning_damage"]=1273, - ["secondary_maximum_physical_damage"]=1274, - ["secondary_maximum_total_damage"]=1275, - ["secondary_minimum_chaos_damage"]=1270, - ["secondary_minimum_cold_damage"]=1271, - ["secondary_minimum_fire_damage"]=1272, - ["secondary_minimum_lightning_damage"]=1273, - ["secondary_minimum_physical_damage"]=1274, - ["secondary_minimum_total_damage"]=1275, - ["secondary_minion_duration"]=83, - ["seismic_cry_+%_enemy_stun_threshold_per_5_MP"]=1709, - ["seismic_cry_base_slam_skill_area_+%"]=1724, - ["seismic_cry_base_slam_skill_damage_+%_final"]=1722, - ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1725, - ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1723, - ["self_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=178, - ["self_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=177, - ["sentinel_minion_cooldown_speed_+%"]=1276, - ["share_charges_with_allies_in_your_presence"]=1277, - ["shatter_on_killing_blow"]=1278, - ["shattering_palm_target_damage_+%_final"]=1279, - ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1280, - ["shield_block_%"]=170, - ["shield_charge_damage_+%_maximum"]=87, - ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=85, - ["shield_charge_stun_duration_+%_maximum"]=86, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=1281, - ["shield_spell_block_%"]=171, - ["shield_wall_damage_+%_final_when_slammed"]=1282, - ["shock_duration_+%"]=99, - ["shock_effect_+%"]=1283, - ["shock_effect_+%_with_critical_strikes"]=1284, - ["shock_maximum_magnitude_+"]=1285, - ["shock_nearby_enemy_area_of_effect_radius"]=1401, - ["shock_nearby_enemy_base_area_of_effect_radius"]=1401, - ["shock_nova_ring_chance_to_shock_+%"]=1286, - ["shock_nova_ring_damage_+%"]=354, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1287, - ["shocked_ground_base_magnitude_override"]=1288, - ["shockwave_slam_explosion_damage_+%_final"]=352, - ["shrapnel_shot_cone_placement_distance_+"]=1289, - ["shrapnel_trap_number_of_secondary_explosions"]=1290, - ["sigil_attached_target_fire_penetration_%"]=1291, - ["sigil_attached_target_lightning_penetration_%"]=1292, - ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1293, - ["sigil_recall_extend_base_skill_effect_duration"]=1294, - ["sigils_can_target_reaper_minions"]=1295, + ["projectile_ground_effect_duration"]=78, + ["projectile_number_of_targets_to_pierce"]=86, + ["projectile_return_%_chance"]=221, + ["projectile_speed_+%"]=1285, + ["projectile_speed_+%_in_sand_stance"]=1286, + ["projectiles_can_shotgun"]=1287, + ["projectiles_can_split_at_end_of_range"]=1279, + ["projectiles_can_split_from_terrain"]=1279, + ["projectiles_cannot_split"]=1288, + ["projectiles_fork_when_passing_a_flame_wall"]=1290, + ["projectiles_pierce_all_targets_in_x_range"]=1291, + ["projectiles_rain"]=1292, + ["projectiles_return"]=221, + ["puppet_master_duration_ms"]=1293, + ["purge_expose_resist_%_matching_highest_element_damage"]=1294, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1295, + ["quake_slam_fully_charged_explosion_damage_+%_final"]=334, + ["quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem"]=406, + ["quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem"]=1018, + ["quality_display_active_skill_ignite_effect_is_gem"]=421, + ["quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem"]=428, + ["quality_display_active_skill_required_number_of_combo_stacks_is_gem"]=433, + ["quality_display_active_skill_returning_damage_is_gem"]=359, + ["quality_display_base_number_of_crossbow_bolts_is_gem"]=520, + ["quality_display_base_number_of_projectiles_is_gem"]=522, + ["quality_display_contagion_is_gem"]=733, + ["quality_display_earthshatter_is_gem"]=1441, + ["quality_display_ember_fusilade_is_gem"]=893, + ["quality_display_exsanguinate_beam_targets_is_gem"]=570, + ["quality_display_ice_crash_is_gem"]=309, + ["quality_display_immortal_call_is_gem"]=1197, + ["quality_display_incinerate_is_gem_hit"]=913, + ["quality_display_infernal_cry_is_gem"]=1837, + ["quality_display_mana_tempest_is_gem"]=1208, + ["quality_display_rapid_shot_maximum_num_of_stacks_is_gem"]=1147, + ["quality_display_rune_paint_is_gem"]=1328, + ["quality_display_sandstorm_swipe_is_gem"]=1334, + ["quality_display_shield_wall_is_gem"]=524, + ["quality_display_spear_puncture_is_gem"]=498, + ["quality_display_warding_steel_is_gem"]=1806, + ["queens_demand_effect"]=854, + ["quick_guard_damage_absorb_limit"]=1296, + ["quick_guard_damage_absorbed_%"]=1296, + ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1298, + ["rage_slash_maximum_vortices"]=1301, + ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1299, + ["rage_slash_rage_sacrifice_per_damage_bonus"]=1298, + ["rage_slash_rage_sacrifice_per_radius_bonus"]=1299, + ["rage_slash_sacrifice_rage_%"]=1297, + ["rage_slash_vortex_attack_speed_+%_final"]=1300, + ["ragestorm_movement_speed_+%"]=1302, + ["rain_of_arrows_additional_sequence_chance_%"]=1303, + ["rain_of_arrows_arrow_speed_+%"]=1304, + ["raise_zombie_empowerment_effect_+%"]=1305, + ["rallying_cry_buff_effect_on_minions_+%_final"]=1788, + ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1792, + ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1779, + ["reap_life_%_granted_on_death_with_debuff"]=564, + ["reave_additional_max_stacks"]=1306, + ["reave_area_of_effect_+%_final_per_stage"]=240, + ["reaver_enrage_base_life_%_degen_per_minute"]=1307, + ["reaver_enrage_decay_rate_increase_+%_final"]=1307, + ["recall_sigil_target_search_range_+%"]=1308, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=1309, + ["recover_%_maximum_life_on_cull"]=1310, + ["recover_%_maximum_mana_on_cull"]=1311, + ["recover_permyriad_life_on_skill_use"]=1312, + ["reduce_enemy_chaos_resistance_%"]=1314, + ["reduce_enemy_cold_resistance_%"]=1315, + ["reduce_enemy_elemental_resistance_%"]=215, + ["reduce_enemy_fire_resistance_%"]=1316, + ["reduce_enemy_lightning_resistance_%"]=1317, + ["refresh_bleeding_duration_on_hit_%_chance"]=1318, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=385, + ["reload_speed_+%"]=1319, + ["remove_freeze_on_ignite"]=1320, + ["repeat_last_step_of_combo_attack"]=1321, + ["returning_projectiles_always_pierce"]=362, + ["rhoa_movement_speed_+%"]=1322, + ["rhoa_movement_speed_penalty_+%_final_while_performing_action"]=1323, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1324, + ["righteous_fire_spell_damage_+%_final"]=176, + ["ring_of_ice_placement_distance"]=1325, + ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1326, + ["rune_paint_area_of_effect_+%_per_rune_level"]=1327, + ["rune_paint_hit_damage_+%_final_per_rune_level"]=1328, + ["rune_paint_mana_spend_per_rune_upgrade"]=1329, + ["rune_paint_max_rune_level"]=1330, + ["sacrifice_%_life_on_skill_use"]=1331, + ["sanctify_wave_damage_+%_final"]=1332, + ["sandstorm_swipe_max_stages"]=1333, + ["sandstorm_swipe_storm_damage_+%_final_per_stage"]=1334, + ["sandstorm_swipe_storm_radius_+_per_stage"]=1335, + ["scorpion_minion_attack_speed_+%"]=1336, + ["scorpion_minion_maximum_added_physical_damage"]=1338, + ["scorpion_minion_minimum_added_physical_damage"]=1338, + ["scorpion_minion_physical_damage_+%"]=1337, + ["secondary_buff_effect_duration"]=76, + ["secondary_critical_hit_damage_bonus"]=1339, + ["secondary_critical_strike_chance"]=1340, + ["secondary_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1341, + ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=150, + ["secondary_maximum_chaos_damage"]=1342, + ["secondary_maximum_cold_damage"]=1343, + ["secondary_maximum_fire_damage"]=1344, + ["secondary_maximum_lightning_damage"]=1345, + ["secondary_maximum_physical_damage"]=1346, + ["secondary_maximum_total_damage"]=1347, + ["secondary_minimum_chaos_damage"]=1342, + ["secondary_minimum_cold_damage"]=1343, + ["secondary_minimum_fire_damage"]=1344, + ["secondary_minimum_lightning_damage"]=1345, + ["secondary_minimum_physical_damage"]=1346, + ["secondary_minimum_total_damage"]=1347, + ["secondary_minion_duration"]=81, + ["seismic_cry_base_slam_skill_area_+%"]=1795, + ["seismic_cry_base_slam_skill_damage_+%_final"]=1793, + ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1796, + ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1794, + ["self_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=175, + ["self_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=174, + ["sentinel_minion_cooldown_speed_+%"]=1348, + ["share_charges_with_allies_in_your_presence"]=1349, + ["shatter_on_killing_blow"]=1350, + ["shattering_palm_target_damage_+%_final"]=1351, + ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1352, + ["shield_block_%"]=168, + ["shield_charge_damage_+%_maximum"]=85, + ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=83, + ["shield_charge_stun_duration_+%_maximum"]=84, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=1353, + ["shield_wall_damage_+%_final_when_slammed"]=1354, + ["shock_duration_+%"]=96, + ["shock_effect_+%"]=1355, + ["shock_effect_+%_with_critical_strikes"]=1356, + ["shock_maximum_magnitude_+"]=1357, + ["shock_nearby_enemy_area_of_effect_radius"]=1477, + ["shock_nearby_enemy_base_area_of_effect_radius"]=1477, + ["shock_nova_ring_chance_to_shock_+%"]=1358, + ["shock_nova_ring_damage_+%"]=347, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1359, + ["shocked_ground_base_magnitude_override"]=1360, + ["shockwave_slam_explosion_damage_+%_final"]=345, + ["shrapnel_shot_cone_placement_distance_+"]=1361, + ["shrapnel_trap_number_of_secondary_explosions"]=1362, + ["sigil_attached_target_fire_penetration_%"]=1363, + ["sigil_attached_target_lightning_penetration_%"]=1364, + ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1365, + ["sigil_recall_extend_base_skill_effect_duration"]=1366, + ["sigils_can_target_reaper_minions"]=1367, ["skeletal_chains_aoe_%_health_dealt_as_chaos_damage"]=13, - ["skeletal_chains_no_minions_damage_+%_final"]=221, - ["skeletal_chains_no_minions_radius_+"]=222, - ["skeletal_chains_no_minions_targets_self"]=220, - ["skeletal_cleric_revived_skeletons_immune_for_X_ms"]=1296, - ["skill_angle_+%_in_sand_stance"]=1297, - ["skill_area_angle_+%"]=1298, - ["skill_area_of_effect_+%_final_in_sand_stance"]=1299, - ["skill_base_covered_in_oil_exposure_-_to_total_fire_resistance"]=1301, - ["skill_base_covered_in_oil_movement_speed_+%_final_to_apply"]=1300, - ["skill_base_ground_oil_exposure_-_to_total_fire_resistance"]=1303, - ["skill_base_ground_oil_movement_speed_+%_final_to_apply"]=1302, - ["skill_buff_effect_+%"]=355, - ["skill_buff_grants_attack_and_cast_speed_+%"]=1305, - ["skill_buff_grants_chance_to_poison_%"]=345, - ["skill_buff_grants_critical_strike_chance_+%"]=114, - ["skill_can_fire_arrows"]=521, - ["skill_can_only_use_bow"]=1542, - ["skill_can_only_use_non_melee_weapons"]=1545, - ["skill_code_movement_speed_+%_final"]=1306, - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=1307, - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=1308, - ["skill_covered_in_oil_movement_speed_+%_final_to_apply"]=1309, - ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1310, - ["skill_detonation_time"]=1311, - ["skill_display_number_of_remote_mines_allowed"]=195, - ["skill_display_number_of_totems_allowed"]=193, - ["skill_display_number_of_traps_allowed"]=194, - ["skill_echo_chance_%"]=1312, - ["skill_effect_and_damaging_ailment_duration_+%"]=1313, - ["skill_effect_duration_+%_per_removable_frenzy_charge"]=169, - ["skill_effect_duration_+%_while_dead"]=1315, - ["skill_effect_duration_per_100_int"]=1314, - ["skill_empower_limitation_specifier_for_stat_description"]=1719, - ["skill_empowers_next_x_melee_attacks"]=1719, - ["skill_grant_elusive_when_used"]=1316, - ["skill_ground_oil_movement_speed_+%_final_to_apply"]=1317, - ["skill_has_trigger_from_unique_item"]=1318, + ["skeletal_chains_no_minions_damage_+%_final"]=217, + ["skeletal_chains_no_minions_radius_+"]=218, + ["skeletal_chains_no_minions_targets_self"]=216, + ["skeletal_cleric_revived_skeletons_immune_for_X_ms"]=1368, + ["skill_angle_+%_in_sand_stance"]=1369, + ["skill_area_angle_+%"]=1370, + ["skill_area_of_effect_+%_final_in_sand_stance"]=1371, + ["skill_base_covered_in_oil_exposure_-_to_total_elemental_resistance"]=1373, + ["skill_base_covered_in_oil_movement_speed_+%_final_to_apply"]=1372, + ["skill_base_ground_oil_exposure_-_to_total_elemental_resistance"]=1375, + ["skill_base_ground_oil_movement_speed_+%_final_to_apply"]=1374, + ["skill_buff_effect_+%"]=348, + ["skill_buff_grants_attack_and_cast_speed_+%"]=1377, + ["skill_buff_grants_chance_to_poison_%"]=338, + ["skill_buff_grants_critical_strike_chance_+%"]=111, + ["skill_can_fire_arrows"]=522, + ["skill_can_only_use_bow"]=1615, + ["skill_can_only_use_non_melee_weapons"]=1618, + ["skill_code_movement_speed_+%_final"]=1378, + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=1379, + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=1380, + ["skill_covered_in_oil_movement_speed_+%_final_to_apply"]=1381, + ["skill_curses_cannot_apply_to_targets_above_level"]=1382, + ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1383, + ["skill_detonation_time"]=1384, + ["skill_display_number_of_remote_mines_allowed"]=192, + ["skill_display_number_of_totems_allowed"]=190, + ["skill_display_number_of_traps_allowed"]=191, + ["skill_echo_chance_%"]=1385, + ["skill_effect_and_damaging_ailment_duration_+%"]=1386, + ["skill_effect_duration_+%_per_removable_frenzy_charge"]=167, + ["skill_effect_duration_+%_while_dead"]=1388, + ["skill_effect_duration_per_100_int"]=1387, + ["skill_empower_limitation_specifier_for_stat_description"]=1790, + ["skill_empowers_next_x_melee_attacks"]=1790, + ["skill_grant_X_frenzy_charges_against_normal_and_magic_monsters"]=1389, + ["skill_grant_X_frenzy_charges_against_rare_monsters"]=1389, + ["skill_grant_X_frenzy_charges_against_unique_monsters"]=1389, + ["skill_grant_elusive_when_used"]=1390, + ["skill_ground_oil_movement_speed_+%_final_to_apply"]=1391, + ["skill_has_trigger_from_unique_item"]=1392, ["skill_is_steel_skill_reload"]=14, - ["skill_jagged_ground_base_duration_ms"]=1319, - ["skill_maximum_travel_distance_+%"]=1320, + ["skill_jagged_ground_base_duration_ms"]=1393, + ["skill_max_unleash_seals"]=1484, + ["skill_maximum_travel_distance_+%"]=1394, ["skill_minion_explosion_life_%"]=29, - ["skill_offering_targets_an_additional_skeleton"]=1321, - ["skill_travel_distance_+%"]=1322, - ["skill_triggered_by_snipe"]=1323, - ["skill_triggered_when_you_focus_chance_%"]=1324, - ["skill_used_by_mirage_chieftain_damage_+%_final"]=1325, - ["skill_used_by_mirage_warrior_damage_+%_final"]=1326, - ["skill_withered_duration_ms"]=1327, - ["slam_aftershock_chance_%"]=1328, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=54, - ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=49, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=51, - ["slither_wither_stacks"]=1329, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1330, - ["snapping_adder_released_projectile_damage_+%_final"]=370, - ["solar_orb_pulse_frequency_ms"]=1331, - ["soulfeast_chaos_damage_to_self"]=1332, - ["soulfeast_maximum_stages"]=1333, - ["soulfeast_number_of_secondary_projectiles"]=1334, - ["soulfeast_spell_damage_+%_final_per_stage"]=1335, - ["spear_wall_num_spears"]=1336, - ["spearfield_maim_slows_an_additional_%"]=1337, - ["spectral_helix_rotations_%"]=1338, - ["spectral_spiral_weapon_number_of_bounces"]=1339, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1340, - ["spectre_duration"]=84, - ["spell_area_damage_+%_in_blood_stance"]=1341, - ["spell_area_of_effect_+%_in_sand_stance"]=1342, - ["spell_cast_duration_ms"]=1343, - ["spell_cast_time_cannot_be_modified"]=1344, - ["spell_critical_hit_damage_bonus"]=1345, - ["spell_critical_strike_chance"]=1346, - ["spell_damage_+%"]=181, + ["skill_offering_targets_an_additional_skeleton"]=1395, + ["skill_travel_distance_+%"]=1396, + ["skill_triggered_by_snipe"]=1397, + ["skill_triggered_when_you_focus_chance_%"]=1398, + ["skill_used_by_mirage_chieftain_damage_+%_final"]=1399, + ["skill_used_by_mirage_warrior_damage_+%_final"]=1400, + ["skill_withered_duration_ms"]=1401, + ["slam_aftershock_chance_%"]=1402, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=53, + ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=48, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=50, + ["slither_wither_stacks"]=1403, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1404, + ["snapping_adder_released_projectile_damage_+%_final"]=361, + ["solar_orb_pulse_frequency_ms"]=1405, + ["soulfeast_chaos_damage_to_self"]=1406, + ["soulfeast_maximum_stages"]=1407, + ["soulfeast_number_of_secondary_projectiles"]=1408, + ["soulfeast_spell_damage_+%_final_per_stage"]=1409, + ["spear_wall_num_spears"]=1410, + ["spearfield_maim_slows_an_additional_%"]=1411, + ["spectral_helix_rotations_%"]=1412, + ["spectral_spiral_weapon_number_of_bounces"]=1413, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1414, + ["spectre_duration"]=82, + ["spell_area_damage_+%_in_blood_stance"]=1415, + ["spell_area_of_effect_+%_in_sand_stance"]=1416, + ["spell_cast_duration_ms"]=1417, + ["spell_cast_time_cannot_be_modified"]=1418, + ["spell_critical_hit_damage_bonus"]=1419, + ["spell_critical_strike_chance"]=1420, + ["spell_damage_+%"]=178, ["spell_damage_modifiers_apply_to_skill_dot"]=30, - ["spell_echo_plus_chance_double_damage_%_final"]=1347, - ["spell_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1348, - ["spell_has_trigger_from_crafted_item_mod"]=1349, - ["spell_maximum_added_cold_damage"]=302, - ["spell_maximum_added_lightning_damage"]=303, + ["spell_echo_plus_chance_double_damage_%_final"]=1421, + ["spell_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1422, + ["spell_has_trigger_from_crafted_item_mod"]=1423, + ["spell_maximum_added_cold_damage"]=296, + ["spell_maximum_added_lightning_damage"]=297, ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=23, - ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=22, + ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=531, ["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=20, ["spell_maximum_base_lightning_damage_per_removable_power_charge"]=19, - ["spell_maximum_base_physical_damage_per_shield_quality"]=1350, - ["spell_maximum_chaos_damage"]=1351, - ["spell_maximum_cold_damage"]=1352, - ["spell_maximum_fire_damage"]=1353, - ["spell_maximum_lightning_damage"]=1354, - ["spell_maximum_physical_damage"]=1355, - ["spell_maximum_total_damage"]=1356, - ["spell_minimum_added_cold_damage"]=302, - ["spell_minimum_added_lightning_damage"]=303, + ["spell_maximum_base_physical_damage_per_shield_quality"]=1424, + ["spell_maximum_chaos_damage"]=1425, + ["spell_maximum_cold_damage"]=1426, + ["spell_maximum_fire_damage"]=1427, + ["spell_maximum_lightning_damage"]=1428, + ["spell_maximum_physical_damage"]=1429, + ["spell_maximum_total_damage"]=1430, + ["spell_minimum_added_cold_damage"]=296, + ["spell_minimum_added_lightning_damage"]=297, ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=23, - ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=22, + ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=531, ["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=20, ["spell_minimum_base_lightning_damage_per_removable_power_charge"]=19, - ["spell_minimum_base_physical_damage_per_shield_quality"]=1350, - ["spell_minimum_chaos_damage"]=1351, - ["spell_minimum_cold_damage"]=1352, - ["spell_minimum_fire_damage"]=1353, - ["spell_minimum_lightning_damage"]=1354, - ["spell_minimum_physical_damage"]=1355, - ["spell_minimum_total_damage"]=1356, + ["spell_minimum_base_physical_damage_per_shield_quality"]=1424, + ["spell_minimum_chaos_damage"]=1425, + ["spell_minimum_cold_damage"]=1426, + ["spell_minimum_fire_damage"]=1427, + ["spell_minimum_lightning_damage"]=1428, + ["spell_minimum_physical_damage"]=1429, + ["spell_minimum_total_damage"]=1430, ["spell_repeat_count"]=42, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=1357, - ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=1358, - ["spells_chance_to_hinder_on_hit_%"]=1359, - ["spellslinger_mana_reservation"]=1360, - ["spellslinger_trigger_on_wand_attack_%"]=267, - ["spider_aspect_max_web_count"]=1361, - ["spike_slam_additional_spike_%_chance"]=1362, - ["spike_slam_explosion_damage_+%_final"]=1363, - ["spike_slam_fissure_damage_+%_final"]=1364, - ["spike_slam_fissure_length_+%"]=1365, - ["spike_slam_max_spikes"]=1366, - ["spike_slam_num_spikes"]=1367, - ["spike_slam_spike_damage_+%_final"]=1368, - ["spirit_offering_critical_strike_chance_+%"]=1369, - ["spirit_offering_critical_strike_multiplier_+"]=1370, - ["spiritual_cry_double_movement_velocity_+%"]=1371, - ["spiritual_cry_doubles_summoned_per_5_MP"]=1715, - ["splitting_steel_area_+%_final_after_splitting"]=1372, - ["static_strike_beam_damage_+%_final"]=1373, - ["static_strike_beam_damage_+%_final_while_moving"]=1374, - ["static_strike_explosion_damage_+%_final"]=305, - ["static_strike_number_of_beam_targets"]=1375, - ["stealth_+%"]=1376, - ["steel_ammo_consumed_per_use"]=1377, - ["steel_skill_%_chance_to_not_consume_ammo"]=1378, - ["steel_steal_area_of_effect_+%"]=1379, - ["steel_steal_reflect_damage_+%"]=1380, - ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=320, - ["storm_blade_has_local_attack_speed_+%"]=1381, - ["storm_blade_has_local_lightning_penetration_%"]=1382, - ["storm_blade_quality_chance_to_shock_%"]=1383, - ["storm_blade_quality_local_critical_strike_chance_+%"]=1384, - ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=1385, - ["storm_burst_explosion_area_of_effect_+%"]=1386, - ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1387, - ["storm_burst_zap_area_of_effect_+%"]=1388, - ["storm_call_chance_to_strike_on_cast_%"]=1389, - ["storm_rain_pulse_count"]=1390, - ["stormblast_bolts_maximum_active_bolt_count"]=1391, - ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=1392, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=1393, - ["summon_cold_resistance_+"]=240, - ["summon_fire_resistance_+"]=239, - ["summon_lightning_resistance_+"]=241, - ["summon_mirage_archer_on_hit"]=1394, - ["summon_mirage_warrior_on_crit"]=1395, - ["summon_totem_cast_speed_+%"]=330, - ["summoned_spider_grants_attack_speed_+%"]=1396, - ["sunder_shockwave_area_of_effect_+%"]=1397, - ["sunder_wave_area_of_effect_+%"]=1398, - ["sunder_wave_delay_+%"]=1399, - ["sunder_wave_min_steps"]=1400, - ["sunder_wave_radius_+_per_step"]=52, - ["support_%_chance_to_shock_nearby_enemy_on_shock"]=1401, - ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1402, - ["support_additional_trap_%_chance_for_1_additional_trap"]=1406, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1403, - ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1404, - ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1405, - ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=1407, - ["support_ancestral_slam_big_hit_area_+%"]=385, - ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=384, - ["support_anticipation_rapid_fire_count"]=1408, - ["support_apply_daze_on_warcry"]=1409, - ["support_arcane_surge_duration_ms"]=1410, - ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=1410, - ["support_armour_explosion"]=1411, - ["support_attack_totem_attack_speed_+%_final"]=284, - ["support_aura_duration_buff_duration"]=1412, - ["support_better_ailments_damaging_ailment_effect_+%_final"]=1413, - ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=1414, - ["support_blood_fountain_radius"]=1414, - ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=328, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1415, - ["support_bursting_plague_max_value_%_of_max_life"]=1416, - ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=1416, - ["support_cannibalism_recover_%_maximum_life_on_kill"]=1417, - ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=1418, - ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=1419, - ["support_clarity_mana_regeneration_rate_+%"]=1420, - ["support_close_combat_attack_damage_+%_final_from_distance"]=1421, - ["support_combo_finisher_damage_+%_final"]=1422, - ["support_combo_finisher_required_number_of_combo_stacks"]=1423, - ["support_concentrated_effect_skill_area_of_effect_+%_final"]=70, - ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=1424, - ["support_controlled_destruction_critical_strike_chance_+%_final"]=115, - ["support_cooldown_reduction_cooldown_recovery_+%"]=1425, - ["support_corrupting_cry_corrupted_blood_damage_per_minute"]=1426, - ["support_corrupting_cry_corrupted_blood_duration_ms"]=1427, - ["support_cruelty_duration_ms"]=373, - ["support_crushing_stuns_crush_on_stun_ms"]=1428, - ["support_culling_strike_vs_rare_or_unique_enemy"]=1429, - ["support_damage_+%_final_per_combo_stack"]=1430, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=1431, - ["support_daze_break_duration_ms"]=1432, - ["support_dazed_cry_duration_ms"]=1433, - ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1434, - ["support_debilitate_hit_damage_max_poison_stacks"]=1434, - ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=1435, - ["support_empowered_culling_strike"]=1436, - ["support_empowered_damage_+%_final"]=1437, - ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1539, - ["support_executioner_buff_duration_ms"]=1438, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1439, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=1440, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1441, - ["support_exposure_effect_+%"]=1442, - ["support_far_combat_attack_damage_+%_final_from_distance"]=1443, - ["support_focused_ballista_totem_attack_speed_+%_final"]=1444, - ["support_fork_forked_projectile_damage_+%_final"]=1445, - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=1446, - ["support_ghost_duration"]=1447, - ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1448, - ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1449, - ["support_grenade_damage_+%_final"]=1450, - ["support_ground_effect_area_of_effect_+%_final_per_second"]=1451, - ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1451, - ["support_herbalism_life_recovery_+%_from_life_flasks"]=1452, - ["support_hinder_dots_also_apply_hinder"]=1453, - ["support_holy_descent_consecrated_ground_duration_ms"]=1454, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=338, - ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1455, - ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1456, - ["support_ice_bite_virtual_buff_duration"]=1456, - ["support_ignite_duration_ignite_effect_+%_final"]=1457, - ["support_ignite_prolif_ignite_effect_+%_final"]=1458, - ["support_ignite_proliferation_radius"]=1459, - ["support_impact_shockwave_base_splash_radius"]=1460, - ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1461, - ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1461, - ["support_innervate_buff_duration_ms"]=1462, - ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1462, - ["support_jagged_ground_area_of_effect_+%_final"]=1463, - ["support_knockback_wave_on_stunned"]=1464, - ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1465, - ["support_lifetap_buff_duration"]=1466, - ["support_lifetap_spent_life_threshold"]=1467, - ["support_lockdown_distance_based_pin_damage_+%_final"]=1468, - ["support_maim_chance_physical_damage_+%_final"]=1469, - ["support_maimed_enemies_physical_damage_taken_+%"]=1470, - ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1471, - ["support_mana_fountain_mana_regeneration_rate_+%"]=1472, - ["support_mana_fountain_radius"]=1472, - ["support_minefield_mine_throwing_speed_+%_final"]=1473, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1475, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1476, - ["support_minion_maximum_life_+%_final"]=131, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1477, - ["support_minion_pact_damage_+%_final"]=1478, - ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1478, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1479, - ["support_mirage_archer_attack_speed_+%_final"]=1480, - ["support_mirage_archer_duration"]=1481, - ["support_momentum_distance_travelled_to_gain_momentum"]=1482, - ["support_momnetum_damage_+%_final_with_momentum"]=1482, - ["support_multicast_cast_speed_+%_final"]=57, - ["support_multiple_attacks_melee_attack_speed_+%_final"]=238, - ["support_multiple_projectiles_critical_strike_chance_+%_final"]=116, - ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1483, - ["support_overkill_icy_vortex_duration_ms"]=1484, - ["support_overpowered_duration_ms"]=1485, - ["support_parallel_projectile_number_of_points_per_side"]=1486, - ["support_physical_damage_%_to_gain_as_daze_build_up"]=1487, - ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1488, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1489, - ["support_precision_accuracy_rating_+%"]=1490, - ["support_projectile_attack_speed_+%_final"]=282, - ["support_pulverise_area_of_effect_+%_final"]=1491, - ["support_rage_fountain_radius"]=1492, - ["support_rage_fountain_rage_regeneration_per_minute"]=1492, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1493, - ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1494, - ["support_rageforged_enraged_damage_+%_final"]=1494, - ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1495, - ["support_reduce_enemy_block_and_spell_block_%"]=1496, - ["support_regenerate_mana_per_minute_on_shock"]=1497, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1755, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1498, - ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1499, - ["support_ruthless_big_hit_max_count"]=374, - ["support_ruthless_big_hit_stun_damage_+%_final"]=374, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1500, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1501, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1501, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1500, - ["support_slam_chance_for_one_additional_aftershock_%"]=1502, - ["support_slam_chance_for_three_additional_aftershocks_%"]=1503, - ["support_slam_chance_for_two_additional_aftershocks_%"]=1504, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1506, - ["support_slashing_buff_duration_ms"]=1505, - ["support_slashing_damage_+%_final_from_distance"]=1507, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1508, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1508, - ["support_spell_cascade_area_delay_+%"]=1509, - ["support_spell_cascade_area_of_effect_+%_final"]=1510, - ["support_spell_cascade_area_of_effect_+%_per_cascade"]=1511, - ["support_spell_cascade_number_of_cascades_per_side"]=1512, - ["support_spell_cascade_sideways"]=1512, - ["support_spell_echo_area_of_effect_+%_final"]=1513, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1514, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1515, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1516, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1517, - ["support_spell_echo_final_repeat_damage_+%_final"]=1518, - ["support_spell_echo_number_of_echo_cascades"]=1519, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1750, - ["support_spell_totem_cast_speed_+%_final"]=283, - ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1521, - ["support_stomping_ground"]=1522, - ["support_storm_barrier_chaos_damage_+%_final_to_apply"]=1523, - ["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=1530, - ["support_storm_barrier_cold_damage_+%_final_to_apply"]=1524, - ["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=1531, - ["support_storm_barrier_damage_buff_duration_ms"]=1525, - ["support_storm_barrier_fire_damage_+%_final_to_apply"]=1526, - ["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=1532, - ["support_storm_barrier_lightning_damage_+%_final_to_apply"]=1527, - ["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=1533, - ["support_storm_barrier_physical_damage_+%_final_to_apply"]=1528, - ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1529, - ["support_stronger_ignites_ignite_effect_+%_final"]=1534, - ["support_trigger_mana_flare_on_crit"]=1535, - ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1536, - ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1537, - ["support_vitality_life_regeneration_rate_per_minute_%"]=1538, - ["support_warcry_consumes_up_to_X_rage"]=1539, - ["support_weapon_elemental_damage_+%_final"]=1540, - ["supported_skill_can_only_use_axe_and_sword"]=1541, - ["supported_skill_can_only_use_dagger_and_claw"]=1543, - ["supported_skill_can_only_use_mace_and_staff"]=1544, - ["tectonic_slam_side_crack_additional_chance_%"]=1547, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1548, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1546, - ["temper_weapon_empowers_per_strike"]=1549, - ["tempest_bell_damage_+%_final_per_time_hit"]=1550, - ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1551, - ["tethered_movement_speed_+%_final"]=1552, - ["tethered_movement_speed_+%_final_vs_unique_and_rare"]=1553, - ["tethering_arrow_display_rope_limit"]=1554, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=1431, + ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=1432, + ["spells_chance_to_hinder_on_hit_%"]=1433, + ["spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time"]=1434, + ["spellslinger_mana_reservation"]=1435, + ["spellslinger_trigger_on_wand_attack_%"]=263, + ["spider_aspect_max_web_count"]=1436, + ["spike_slam_additional_spike_%_chance"]=1437, + ["spike_slam_explosion_damage_+%_final"]=1438, + ["spike_slam_fissure_damage_+%_final"]=1439, + ["spike_slam_fissure_length_+%"]=1440, + ["spike_slam_max_spikes"]=1441, + ["spike_slam_num_spikes"]=1442, + ["spike_slam_spike_damage_+%_final"]=1443, + ["spirit_offering_critical_strike_chance_+%"]=1444, + ["spirit_offering_critical_strike_multiplier_+"]=1445, + ["spiritual_cry_double_movement_velocity_+%"]=1446, + ["spiritual_cry_doubles_summoned_per_5_MP"]=1785, + ["splitting_steel_area_+%_final_after_splitting"]=1447, + ["static_strike_beam_damage_+%_final"]=1448, + ["static_strike_beam_damage_+%_final_while_moving"]=1449, + ["static_strike_explosion_damage_+%_final"]=299, + ["static_strike_number_of_beam_targets"]=1450, + ["stealth_+%"]=1451, + ["steel_ammo_consumed_per_use"]=1452, + ["steel_skill_%_chance_to_not_consume_ammo"]=1453, + ["steel_steal_area_of_effect_+%"]=1454, + ["steel_steal_reflect_damage_+%"]=1455, + ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=314, + ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=1456, + ["storm_blade_has_local_attack_speed_+%"]=1457, + ["storm_blade_has_local_lightning_penetration_%"]=1458, + ["storm_blade_quality_chance_to_shock_%"]=1459, + ["storm_blade_quality_local_critical_strike_chance_+%"]=1460, + ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=1461, + ["storm_burst_explosion_area_of_effect_+%"]=1462, + ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1463, + ["storm_burst_zap_area_of_effect_+%"]=1464, + ["storm_call_chance_to_strike_on_cast_%"]=1465, + ["storm_rain_pulse_count"]=1466, + ["stormblast_bolts_maximum_active_bolt_count"]=1467, + ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=1468, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=1469, + ["summon_cold_resistance_+"]=236, + ["summon_fire_resistance_+"]=235, + ["summon_lightning_resistance_+"]=237, + ["summon_mirage_archer_on_hit"]=1470, + ["summon_mirage_warrior_on_crit"]=1471, + ["summon_totem_cast_speed_+%"]=324, + ["summoned_spider_grants_attack_speed_+%"]=1472, + ["sunder_shockwave_area_of_effect_+%"]=1473, + ["sunder_wave_area_of_effect_+%"]=1474, + ["sunder_wave_delay_+%"]=1475, + ["sunder_wave_min_steps"]=1476, + ["sunder_wave_radius_+_per_step"]=51, + ["support_%_chance_to_shock_nearby_enemy_on_shock"]=1477, + ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1478, + ["support_additional_trap_%_chance_for_1_additional_trap"]=1482, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1479, + ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1480, + ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1481, + ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=1483, + ["support_ancestral_slam_big_hit_area_+%"]=376, + ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=375, + ["support_anticipation_rapid_fire_count"]=11, + ["support_apply_daze_on_warcry"]=1485, + ["support_arcane_surge_duration_ms"]=1486, + ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=1486, + ["support_armour_explosion"]=1487, + ["support_attack_totem_attack_speed_+%_final"]=280, + ["support_aura_duration_buff_duration"]=1488, + ["support_better_ailments_damaging_ailment_effect_+%_final"]=1489, + ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=2, + ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=322, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1490, + ["support_bursting_plague_max_value_%_of_max_life"]=1491, + ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=1491, + ["support_cannibalism_recover_%_maximum_life_on_kill"]=1492, + ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=1493, + ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=1494, + ["support_clarity_mana_regeneration_rate_+%"]=1495, + ["support_close_combat_attack_damage_+%_final_from_distance"]=1496, + ["support_combo_finisher_damage_+%_final"]=1497, + ["support_combo_finisher_max_combo_required"]=1498, + ["support_combo_finisher_required_number_of_combo_stacks"]=1498, + ["support_concentrated_effect_skill_area_of_effect_+%_final"]=69, + ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=1499, + ["support_controlled_destruction_critical_strike_chance_+%_final"]=112, + ["support_cooldown_reduction_cooldown_recovery_+%"]=1500, + ["support_corrupting_cry_corrupted_blood_damage_per_minute"]=1501, + ["support_corrupting_cry_corrupted_blood_duration_ms"]=1502, + ["support_cruelty_duration_ms"]=364, + ["support_crushing_stuns_crush_on_stun_ms"]=1503, + ["support_culling_strike_vs_rare_or_unique_enemy"]=1504, + ["support_damage_+%_final_per_combo_stack"]=1505, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=1506, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=1507, + ["support_daze_break_duration_ms"]=1508, + ["support_dazed_cry_duration_ms"]=1509, + ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1510, + ["support_debilitate_hit_damage_max_poison_stacks"]=1510, + ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=1511, + ["support_empowered_culling_strike"]=1512, + ["support_empowered_damage_+%_final"]=1513, + ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1612, + ["support_executioner_buff_duration_ms"]=1514, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1515, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=1516, + ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=1517, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1518, + ["support_far_combat_attack_damage_+%_final_from_distance"]=1519, + ["support_focused_ballista_totem_attack_speed_+%_final"]=1520, + ["support_fork_forked_projectile_damage_+%_final"]=1521, + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=1522, + ["support_ghost_duration"]=1523, + ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1524, + ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1525, + ["support_grenade_damage_+%_final"]=1526, + ["support_ground_effect_area_of_effect_+%_final_per_second"]=1527, + ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1527, + ["support_herbalism_life_recovery_+%_from_life_flasks"]=1528, + ["support_hinder_dots_also_apply_hinder"]=1529, + ["support_holy_descent_consecrated_ground_duration_ms"]=1530, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=331, + ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1531, + ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1532, + ["support_ice_bite_virtual_buff_duration"]=1532, + ["support_ignite_duration_ignite_effect_+%_final"]=1533, + ["support_ignite_prolif_ignite_effect_+%_final"]=1534, + ["support_ignite_proliferation_radius"]=1535, + ["support_impact_shockwave_base_splash_radius"]=1536, + ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1537, + ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1537, + ["support_innervate_buff_duration_ms"]=1538, + ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1538, + ["support_jagged_ground_area_of_effect_+%_final"]=1539, + ["support_knockback_wave_on_stunned"]=1540, + ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1541, + ["support_lifetap_buff_duration"]=1542, + ["support_lifetap_spent_life_threshold"]=1543, + ["support_lockdown_distance_based_pin_damage_+%_final"]=1544, + ["support_maim_chance_physical_damage_+%_final"]=1545, + ["support_maimed_enemies_physical_damage_taken_+%"]=1546, + ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1547, + ["support_mana_fountain_mana_regeneration_rate_+%"]=4, + ["support_minefield_mine_throwing_speed_+%_final"]=1548, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1550, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1551, + ["support_minion_maximum_life_+%_final"]=129, + ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1552, + ["support_minion_pact_damage_+%_final"]=1553, + ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1553, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1554, + ["support_mirage_archer_attack_speed_+%_final"]=1555, + ["support_mirage_archer_duration"]=1556, + ["support_momentum_distance_travelled_to_gain_momentum"]=1557, + ["support_momnetum_damage_+%_final_with_momentum"]=1557, + ["support_multicast_cast_speed_+%_final"]=56, + ["support_multiple_attacks_melee_attack_speed_+%_final"]=234, + ["support_multiple_projectiles_critical_strike_chance_+%_final"]=113, + ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1558, + ["support_overkill_icy_vortex_duration_ms"]=1559, + ["support_parallel_projectile_number_of_points_per_side"]=1560, + ["support_physical_damage_%_to_gain_as_daze_build_up"]=1561, + ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1562, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1563, + ["support_precision_accuracy_rating_+%"]=1564, + ["support_projectile_attack_speed_+%_final"]=278, + ["support_pulverise_area_of_effect_+%_final"]=1565, + ["support_rage_fountain_rage_regeneration_per_minute"]=6, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1566, + ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1567, + ["support_rageforged_enraged_damage_+%_final"]=1567, + ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1568, + ["support_regenerate_mana_per_minute_on_shock"]=1569, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1832, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1570, + ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1571, + ["support_ruthless_big_hit_max_count"]=365, + ["support_ruthless_big_hit_stun_damage_+%_final"]=365, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1572, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1573, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1573, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1572, + ["support_slam_chance_for_one_additional_aftershock_%"]=1574, + ["support_slam_chance_for_three_additional_aftershocks_%"]=1575, + ["support_slam_chance_for_two_additional_aftershocks_%"]=1576, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1578, + ["support_slashing_buff_duration_ms"]=1577, + ["support_slashing_damage_+%_final_from_distance"]=1579, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1580, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1580, + ["support_spell_cascade_area_delay_+%"]=1581, + ["support_spell_cascade_area_of_effect_+%_final"]=1582, + ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1583, + ["support_spell_cascade_number_of_cascades_per_side"]=1584, + ["support_spell_cascade_sideways"]=1584, + ["support_spell_echo_area_of_effect_+%"]=1585, + ["support_spell_echo_area_of_effect_+%_final"]=1586, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1587, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1588, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1589, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1590, + ["support_spell_echo_final_repeat_damage_+%_final"]=1591, + ["support_spell_echo_number_of_echo_cascades"]=1592, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1827, + ["support_spell_totem_cast_speed_+%_final"]=279, + ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1594, + ["support_stomping_ground"]=1595, + ["support_storm_barrier_chaos_damage_+%_final_to_apply"]=1596, + ["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=1603, + ["support_storm_barrier_cold_damage_+%_final_to_apply"]=1597, + ["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=1604, + ["support_storm_barrier_damage_buff_duration_ms"]=1598, + ["support_storm_barrier_fire_damage_+%_final_to_apply"]=1599, + ["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=1605, + ["support_storm_barrier_lightning_damage_+%_final_to_apply"]=1600, + ["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=1606, + ["support_storm_barrier_physical_damage_+%_final_to_apply"]=1601, + ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1602, + ["support_stronger_ignites_ignite_effect_+%_final"]=1607, + ["support_trigger_mana_flare_on_crit"]=1608, + ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1609, + ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1610, + ["support_vitality_life_regeneration_rate_per_minute_%"]=1611, + ["support_warcry_consumes_up_to_X_rage"]=1612, + ["support_weapon_elemental_damage_+%_final"]=1613, + ["supported_skill_can_only_use_axe_and_sword"]=1614, + ["supported_skill_can_only_use_dagger_and_claw"]=1616, + ["supported_skill_can_only_use_mace_and_staff"]=1617, + ["tectonic_slam_side_crack_additional_chance_%"]=1620, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1621, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1619, + ["temper_weapon_empowers_per_strike"]=1622, + ["tempest_bell_damage_+%_final_per_time_hit"]=1623, + ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1624, + ["tethered_movement_speed_+%_final"]=1625, + ["tethered_movement_speed_+%_final_vs_unique_and_rare"]=1626, + ["tethering_arrow_display_rope_limit"]=1627, ["throw_traps_in_circle_radius"]=38, - ["tornado_base_damage_interval_ms"]=1555, - ["tornado_damage_absorbed_%"]=386, - ["tornado_damage_interval_ms"]=1556, - ["tornado_hinder"]=1557, - ["tornado_maximum_number_of_hits"]=78, - ["tornado_movement_speed_+%"]=1558, - ["total_number_of_projectiles_to_fire"]=1559, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=392, - ["totem_chaos_resistance_%"]=1560, - ["totem_duration"]=1561, - ["totem_elemental_resistance_%"]=387, - ["totem_life_+%"]=202, - ["totem_range"]=192, - ["totems_cannot_evade"]=197, - ["totems_explode_on_death_for_%_life_as_physical"]=1562, - ["totems_regenerate_%_life_per_minute"]=1563, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1564, - ["trap_can_be_triggered_by_warcries"]=1565, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1566, - ["trap_duration"]=198, - ["trap_spread_+%"]=1567, - ["trap_throwing_speed_+%"]=199, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1568, + ["thunderous_leap_%_chance_for_shocked_ground_when_detonating"]=1628, + ["tornado_base_damage_interval_ms"]=1629, + ["tornado_damage_absorbed_%"]=377, + ["tornado_damage_interval_ms"]=1630, + ["tornado_hinder"]=1631, + ["tornado_maximum_number_of_hits"]=77, + ["tornado_movement_speed_+%"]=1632, + ["total_number_of_projectiles_to_fire"]=1633, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=383, + ["totem_chaos_resistance_%"]=1634, + ["totem_duration"]=1635, + ["totem_elemental_resistance_%"]=378, + ["totem_life_+%"]=199, + ["totem_range"]=189, + ["totems_cannot_evade"]=194, + ["totems_explode_on_death_for_%_life_as_physical"]=1636, + ["totems_regenerate_%_life_per_minute"]=1637, + ["toxic_domain_+1%_final_more_damage_per_x_stored_poison"]=1638, + ["toxic_domain_max_damage_+%_final_from_stored_poison"]=1638, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1639, + ["trap_can_be_triggered_by_warcries"]=1640, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1641, + ["trap_duration"]=195, + ["trap_spread_+%"]=1642, + ["trap_throwing_speed_+%"]=196, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1643, ["trap_trigger_radius_+%"]=39, - ["trap_trigger_radius_+%_per_power_charge"]=1569, - ["trauma_base_duration_ms"]=1571, - ["trauma_duration_ms"]=1571, - ["trauma_strike_damage_+%_final_per_trauma"]=1572, - ["trauma_strike_self_damage_per_trauma"]=1571, - ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1573, - ["trigger_after_spending_200_mana_%_chance"]=1574, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1575, - ["trigger_on_attack_hit_against_rare_or_unique"]=1576, - ["trigger_on_block_%_chance"]=1577, - ["trigger_on_bow_attack_%"]=1578, - ["trigger_on_corpse_consume_%_chance"]=1579, - ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1580, - ["trigger_on_hit_vs_frozen_enemy_%"]=1581, - ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=261, - ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1582, - ["trigger_on_skill_use_from_chest_%"]=260, - ["trigger_on_slam_%_chance"]=1583, - ["trigger_on_trigger_link_target_hit"]=1584, - ["trigger_prismatic_burst_on_hit_%_chance"]=1585, - ["trigger_skills_refund_half_energy_spent_chance_%"]=1586, - ["trigger_vicious_hex_explosion_when_curse_ends"]=1587, - ["triggered_by_brand_support"]=1588, - ["triggered_by_divine_cry"]=1589, - ["triggered_by_generic_ongoing_trigger"]=1590, - ["triggered_by_item_buff"]=1591, - ["triggered_by_spiritual_cry"]=1592, - ["unearth_corpse_level"]=288, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1593, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1594, - ["vaal_animate_weapon_minimum_level_requirement"]=254, - ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1595, - ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1596, - ["vaal_arctic_armour_number_of_hits_absorbed"]=1597, - ["vaal_blade_vortex_has_10_spinning_blades"]=1598, - ["vaal_charged_attack_damage_taken_+%_final"]=1599, - ["vaal_charged_attack_radius_+_per_stage"]=1600, - ["vaal_cleave_executioner_area_of_effect_+%"]=1601, - ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1601, - ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=628, - ["vaal_earthquake_maximum_aftershocks"]=1602, - ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=393, - ["vaal_flameblast_radius_+_per_stage"]=1603, - ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1604, - ["vaal_lightning_strike_beam_damage_+%_final"]=291, - ["vaal_reap_additional_maximum_blood_charges"]=1605, - ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1606, - ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=723, + ["trap_trigger_radius_+%_per_power_charge"]=1644, + ["trauma_base_duration_ms"]=1646, + ["trauma_duration_ms"]=1646, + ["trauma_strike_damage_+%_final_per_trauma"]=1647, + ["trauma_strike_self_damage_per_trauma"]=1646, + ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1648, + ["trigger_after_spending_200_mana_%_chance"]=1649, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1650, + ["trigger_on_attack_hit_against_rare_or_unique"]=1651, + ["trigger_on_block_%_chance"]=1652, + ["trigger_on_bow_attack_%"]=1653, + ["trigger_on_corpse_consume_%_chance"]=1654, + ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1655, + ["trigger_on_hit_vs_frozen_enemy_%"]=1656, + ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=257, + ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1657, + ["trigger_on_skill_use_from_chest_%"]=256, + ["trigger_on_slam_%_chance"]=1658, + ["trigger_on_trigger_link_target_hit"]=1659, + ["trigger_prismatic_burst_on_hit_%_chance"]=1660, + ["trigger_skills_refund_half_energy_spent_chance_%"]=1661, + ["trigger_vicious_hex_explosion_when_curse_ends"]=1662, + ["triggered_by_brand_support"]=1663, + ["triggered_by_divine_cry"]=1664, + ["triggered_by_generic_ongoing_trigger"]=1665, + ["triggered_by_item_buff"]=1666, + ["triggered_by_spiritual_cry"]=1667, + ["unearth_corpse_level"]=284, + ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1668, + ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1669, + ["vaal_animate_weapon_minimum_level_requirement"]=250, + ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1670, + ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1671, + ["vaal_arctic_armour_number_of_hits_absorbed"]=1672, + ["vaal_blade_vortex_has_10_spinning_blades"]=1673, + ["vaal_charged_attack_damage_taken_+%_final"]=1674, + ["vaal_charged_attack_radius_+_per_stage"]=1675, + ["vaal_cleave_executioner_area_of_effect_+%"]=1676, + ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1676, + ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=635, + ["vaal_earthquake_maximum_aftershocks"]=1677, + ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=384, + ["vaal_flameblast_radius_+_per_stage"]=1678, + ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1679, + ["vaal_lightning_strike_beam_damage_+%_final"]=287, + ["vaal_reap_additional_maximum_blood_charges"]=1680, + ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1681, + ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=772, ["vaal_righteous_fire_life_and_es_%_as_damage_per_second"]=15, ["vaal_righteous_fire_life_and_es_%_to_lose_on_use"]=15, - ["vaal_righteous_fire_spell_damage_+%_final"]=180, - ["vaal_skill_exertable"]=1607, - ["vaal_storm_call_delay_ms"]=1608, - ["vaal_upgrade_minion_damage_+%_final"]=1609, - ["vaal_upgrade_minion_damage_taken_+%_final"]=1610, - ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1082, - ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1082, - ["vaal_volcanic_fissure_crack_repeat_count"]=1611, - ["vampiric_icon_bleeding_effect_+%_final"]=1612, - ["vanishing_ambush_critical_strike_multiplier_+"]=1729, - ["virtual_aegis_unique_shield_max_value"]=1613, - ["virtual_always_pierce"]=88, - ["virtual_armour_+%_while_performing_action_per_250_ms_attack_time"]=1614, - ["virtual_berserk_hundred_times_rage_loss_per_second"]=380, - ["virtual_bladefall_number_of_volleys"]=1615, - ["virtual_blood_spears_total_number_of_spears"]=1616, - ["virtual_cast_when_damage_taken_threshold"]=275, - ["virtual_chill_effect_+%_final"]=1617, - ["virtual_chill_minimum_slow_%"]=1618, - ["virtual_combined_non_physical_main_hand_hit_damage_stun_multiplier"]=1619, - ["virtual_combined_non_physical_off_hand_hit_damage_stun_multiplier"]=1620, - ["virtual_combined_non_physical_other_hit_damage_stun_multiplier"]=1621, - ["virtual_combined_non_physical_spell_hit_damage_stun_multiplier"]=1622, - ["virtual_combined_physical_main_hand_hit_damage_stun_multiplier"]=1623, - ["virtual_combined_physical_off_hand_hit_damage_stun_multiplier"]=1624, - ["virtual_combined_physical_other_hit_damage_stun_multiplier"]=1625, - ["virtual_combined_physical_spell_hit_damage_stun_multiplier"]=1626, - ["virtual_crossbow_attack_%_chance_to_not_consume_ammo"]=1627, - ["virtual_curse_delay_duration_ms"]=1628, - ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=67, - ["virtual_damage_absorbed_per_jade_consumed"]=1629, - ["virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=1630, - ["virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=1631, - ["virtual_deal_chaos_damage_per_minute_for_8_seconds_on_curse"]=1632, - ["virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%"]=1633, - ["virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%"]=1634, - ["virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%"]=1635, - ["virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%"]=1636, - ["virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%"]=1637, - ["virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%"]=1638, - ["virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%"]=1639, - ["virtual_display_total_spell_chance_to_inflict_poison_on_hit_%"]=1640, - ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1641, - ["virtual_energy_cost_for_generic_ongoing_trigger"]=1590, - ["virtual_evasion_+%_while_performing_action_per_250_ms_attack_time"]=1642, - ["virtual_firestorm_drop_burning_ground_duration_ms"]=322, - ["virtual_firestorm_drop_chilled_ground_duration_ms"]=323, - ["virtual_freezing_enemy_chills_enemies_in_radius"]=906, - ["virtual_generic_ongoing_trigger_maximum_energy"]=1643, - ["virtual_ground_effect_area_of_effect_+%_final_per_second"]=1644, - ["virtual_ground_effect_area_of_effect_+%_final_per_second_max"]=1644, - ["virtual_herald_of_thunder_bolt_base_frequency"]=1645, - ["virtual_hit_damage_stun_multiplier_+%_final"]=1646, - ["virtual_intensity_loss_ms_while_moving_interval"]=190, - ["virtual_intensity_lost_on_teleport"]=190, - ["virtual_knockback_distance_+%"]=1647, - ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=127, - ["virtual_main_hand_apply_X_armour_break_on_hit"]=1648, - ["virtual_main_hand_hit_damage_stun_multiplier_+%"]=1649, - ["virtual_main_hand_non_slam_aftershock_chance_%"]=1650, - ["virtual_main_hand_slam_aftershock_chance_%"]=1651, - ["virtual_maximum_intensity"]=189, - ["virtual_melee_splash"]=235, - ["virtual_mine_detonation_time_ms"]=1652, - ["virtual_minion_elemental_resistance_%"]=242, - ["virtual_movement_speed_penalty_+%_final_while_performing_action"]=1653, - ["virtual_never_chill"]=1654, - ["virtual_never_freeze"]=1655, - ["virtual_never_ignite"]=1656, - ["virtual_never_shock"]=1657, - ["virtual_number_of_additional_curses_allowed"]=1658, - ["virtual_number_of_chains"]=1659, - ["virtual_number_of_forks_for_projectiles_final"]=224, - ["virtual_number_of_marks_allowed_per_type"]=1660, - ["virtual_number_of_spirit_strikes"]=1087, - ["virtual_off_hand_apply_X_armour_break_on_hit"]=1661, - ["virtual_off_hand_hit_damage_stun_multiplier_+%"]=1662, - ["virtual_off_hand_non_slam_aftershock_chance_%"]=1663, - ["virtual_off_hand_slam_aftershock_chance_%"]=1664, - ["virtual_onslaught_on_hit_%_chance"]=1665, - ["virtual_physical_damage_can_pin"]=1666, - ["virtual_poison_cloud_limit"]=1667, - ["virtual_projectile_number_to_split"]=1668, - ["virtual_projectiles_cannot_pierce"]=88, - ["virtual_projectiles_fork"]=1669, - ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1670, - ["virtual_ritual_of_power_maximum_number_of_rituals"]=1671, - ["virtual_skill_empowers_next_x_melee_attacks"]=1672, - ["virtual_skill_gains_intensity"]=188, - ["virtual_skill_required_number_of_combo_stacks"]=1673, - ["virtual_spell_apply_X_armour_break_on_hit"]=1674, - ["virtual_spider_aspect_web_interval_ms"]=1675, - ["virtual_static_strike_base_zap_frequency_ms"]=1676, - ["virtual_steelskin_damage_%_taken_to_buff"]=1677, - ["virtual_steelskin_damage_limit"]=1677, - ["virtual_support_anticipation_charge_gain_interval_ms"]=1678, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1501, - ["virtual_support_slam_chance_for_one_additional_aftershock_%"]=1679, - ["virtual_support_slam_chance_for_three_additional_aftershocks_%"]=1680, - ["virtual_support_slam_chance_for_two_additional_aftershocks_%"]=1681, - ["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=1682, - ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1683, - ["virtual_total_cooldown_count"]=1684, - ["virtual_totem_cold_resistance_%"]=1685, - ["virtual_totem_fire_resistance_%"]=1686, - ["virtual_totem_lightning_resistance_%"]=1687, - ["virtual_trap_and_mine_throwing_time_+%_final"]=1688, - ["virtual_vaal_lightning_arrow_number_of_redirects"]=1689, - ["virulent_arrow_damage_+%_final_per_stage"]=1690, - ["virulent_arrow_maximum_number_of_stacks"]=1691, - ["virulent_arrow_number_of_pod_projectiles"]=1692, - ["virulent_arrow_pod_projectile_damage_+%_final"]=1693, - ["volatile_dead_core_movement_speed_+%"]=1694, - ["volatile_dead_max_cores_allowed"]=1695, - ["volatile_dead_number_of_corpses_to_consume"]=1696, - ["volcanic_fissure_%_chance_repeat_aftershocks"]=1698, - ["volcanic_fissure_maximum_number_of_fissures"]=1697, - ["volcanic_fissure_speed_+%"]=1699, - ["volcano_damage_+%_final_per_stage"]=1700, - ["volcano_fires_projectiles_every_x_ms"]=1701, - ["volcano_max_number_of_geysers"]=1702, - ["volcano_maximum_number_of_stages"]=1703, - ["volcano_skill_effect_duration_per_stage"]=1704, - ["voltaxic_burst_damage_+%_final_per_stack"]=1705, - ["wall_is_created_in_a_circle_instead"]=1706, - ["warcries_knock_back_enemies"]=1707, - ["warcry_exerts_x_additional_attacks_per_endurance_charge_consumed"]=1719, - ["warcry_grant_X_rage_per_5_power"]=1734, - ["warcry_grant_damage_+%_to_exerted_attacks"]=1731, - ["warcry_grant_knockback_%_to_exerted_attacks"]=1732, - ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1733, - ["water_sphere_cold_lightning_exposure_%"]=1735, - ["water_sphere_does_weird_conversion_stuff"]=1736, - ["weapon_trap_rotation_speed_+%"]=1737, - ["weapon_trap_total_rotation_%"]=1738, - ["whirling_blades_evasion_rating_+%_while_moving"]=1739, - ["whirling_slash_knockback_distance_+%_final_per_stage"]=1740, - ["winter_brand_max_number_of_stages"]=1741, - ["wither_applies_additional_wither_%"]=1742, - ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1743, - ["withered_on_chaos_damage_hit_chance_%"]=1744, - ["withered_on_hit_chance_%"]=1746, - ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1745, - ["withered_on_hit_for_2_seconds_%_chance"]=1747, - ["withering_step_chance_to_not_remove_on_skill_use_%"]=1748, - ["zombie_slam_area_of_effect_+%"]=1756, - ["zombie_slam_cooldown_speed_+%"]=1757 + ["vaal_righteous_fire_spell_damage_+%_final"]=177, + ["vaal_skill_exertable"]=1682, + ["vaal_storm_call_delay_ms"]=1683, + ["vaal_upgrade_minion_damage_+%_final"]=1684, + ["vaal_upgrade_minion_damage_taken_+%_final"]=1685, + ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1150, + ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1150, + ["vaal_volcanic_fissure_crack_repeat_count"]=1686, + ["vampiric_icon_bleeding_effect_+%_final"]=1687, + ["vanishing_ambush_critical_strike_multiplier_+"]=1800, + ["virtual_aegis_unique_shield_max_value"]=1688, + ["virtual_always_pierce"]=86, + ["virtual_armour_+%_while_performing_action_per_250_ms_attack_time"]=1689, + ["virtual_berserk_hundred_times_rage_loss_per_second"]=371, + ["virtual_bladefall_number_of_volleys"]=1690, + ["virtual_blood_spears_total_number_of_spears"]=1691, + ["virtual_cast_when_damage_taken_threshold"]=271, + ["virtual_chance_to_daze_%"]=1692, + ["virtual_chill_effect_+%_final"]=1693, + ["virtual_chill_minimum_slow_%"]=1694, + ["virtual_crossbow_attack_%_chance_to_not_consume_ammo"]=1695, + ["virtual_curse_delay_duration_ms"]=1696, + ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=66, + ["virtual_damage_absorbed_per_jade_consumed"]=1697, + ["virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=1698, + ["virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=1699, + ["virtual_deal_chaos_damage_per_minute_for_8_seconds_on_curse"]=1700, + ["virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%"]=1701, + ["virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%"]=1702, + ["virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%"]=1703, + ["virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%"]=1704, + ["virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%"]=1705, + ["virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%"]=1706, + ["virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%"]=1707, + ["virtual_display_total_spell_chance_to_inflict_poison_on_hit_%"]=1708, + ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1709, + ["virtual_energy_cost_for_generic_ongoing_trigger"]=1665, + ["virtual_evasion_+%_while_performing_action_per_250_ms_attack_time"]=1710, + ["virtual_firestorm_drop_burning_ground_duration_ms"]=316, + ["virtual_firestorm_drop_chilled_ground_duration_ms"]=317, + ["virtual_flameblast_maximum_stages"]=1711, + ["virtual_freezing_enemy_chills_enemies_in_radius"]=965, + ["virtual_generic_ongoing_trigger_maximum_energy"]=1712, + ["virtual_ground_effect_area_of_effect_+%_final_per_second"]=1713, + ["virtual_ground_effect_area_of_effect_+%_final_per_second_max"]=1713, + ["virtual_herald_of_thunder_bolt_base_frequency"]=1714, + ["virtual_hit_damage_stun_multiplier_+%_final"]=1715, + ["virtual_intensity_loss_ms_while_moving_interval"]=187, + ["virtual_intensity_lost_on_teleport"]=187, + ["virtual_knockback_distance_+%"]=1716, + ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=125, + ["virtual_main_hand_apply_X_armour_break_on_hit"]=1717, + ["virtual_main_hand_hit_damage_stun_multiplier_+%"]=1718, + ["virtual_main_hand_non_slam_aftershock_chance_%"]=1719, + ["virtual_main_hand_slam_aftershock_chance_%"]=1720, + ["virtual_maximum_intensity"]=186, + ["virtual_maximum_number_of_arctic_armour_stationary_stacks"]=1721, + ["virtual_melee_splash"]=231, + ["virtual_mine_detonation_time_ms"]=1722, + ["virtual_minion_elemental_resistance_%"]=238, + ["virtual_movement_speed_penalty_+%_final_while_performing_action"]=1723, + ["virtual_never_chill"]=1724, + ["virtual_never_freeze"]=1725, + ["virtual_never_ignite"]=1726, + ["virtual_never_shock"]=1727, + ["virtual_number_of_additional_curses_allowed"]=1728, + ["virtual_number_of_banners_allowed"]=1729, + ["virtual_number_of_chains"]=1730, + ["virtual_number_of_forks_for_projectiles_final"]=220, + ["virtual_number_of_marks_allowed_per_type"]=1731, + ["virtual_number_of_spirit_strikes"]=1155, + ["virtual_off_hand_apply_X_armour_break_on_hit"]=1732, + ["virtual_off_hand_hit_damage_stun_multiplier_+%"]=1733, + ["virtual_off_hand_non_slam_aftershock_chance_%"]=1734, + ["virtual_off_hand_slam_aftershock_chance_%"]=1735, + ["virtual_onslaught_on_hit_%_chance"]=1736, + ["virtual_physical_damage_can_pin"]=1737, + ["virtual_poison_cloud_limit"]=1738, + ["virtual_projectile_number_to_split"]=1739, + ["virtual_projectiles_cannot_pierce"]=86, + ["virtual_projectiles_fork"]=1740, + ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1741, + ["virtual_ritual_of_power_maximum_number_of_rituals"]=1742, + ["virtual_sandstorm_swipe_max_stages"]=1743, + ["virtual_skill_gains_intensity"]=185, + ["virtual_skill_required_number_of_combo_stacks"]=1744, + ["virtual_spell_apply_X_armour_break_on_hit"]=1745, + ["virtual_spider_aspect_web_interval_ms"]=1746, + ["virtual_static_strike_base_zap_frequency_ms"]=1747, + ["virtual_steelskin_damage_%_taken_to_buff"]=1748, + ["virtual_steelskin_damage_limit"]=1748, + ["virtual_support_anticipation_charge_gain_interval_ms"]=1749, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1573, + ["virtual_support_slam_chance_for_one_additional_aftershock_%"]=1750, + ["virtual_support_slam_chance_for_three_additional_aftershocks_%"]=1751, + ["virtual_support_slam_chance_for_two_additional_aftershocks_%"]=1752, + ["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=1753, + ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1754, + ["virtual_total_cooldown_count"]=1755, + ["virtual_totem_cold_resistance_%"]=1756, + ["virtual_totem_fire_resistance_%"]=1757, + ["virtual_totem_lightning_resistance_%"]=1758, + ["virtual_trap_and_mine_throwing_time_+%_final"]=1759, + ["virtual_vaal_lightning_arrow_number_of_redirects"]=1760, + ["virulent_arrow_damage_+%_final_per_stage"]=1761, + ["virulent_arrow_maximum_number_of_stacks"]=1762, + ["virulent_arrow_number_of_pod_projectiles"]=1763, + ["virulent_arrow_pod_projectile_damage_+%_final"]=1764, + ["volatile_dead_core_movement_speed_+%"]=1765, + ["volatile_dead_max_cores_allowed"]=1766, + ["volatile_dead_number_of_corpses_to_consume"]=1767, + ["volcanic_fissure_%_chance_repeat_aftershocks"]=1769, + ["volcanic_fissure_maximum_number_of_fissures"]=1768, + ["volcanic_fissure_speed_+%"]=1770, + ["volcano_base_number_of_geysers_allowed"]=1771, + ["volcano_damage_+%_final_per_stage"]=1772, + ["volcano_fires_projectiles_every_x_ms"]=1773, + ["volcano_maximum_number_of_stages"]=1774, + ["volcano_skill_effect_duration_per_stage"]=1775, + ["voltaxic_burst_damage_+%_final_per_stack"]=1776, + ["wall_is_created_in_a_circle_instead"]=1777, + ["warcries_knock_back_enemies"]=1778, + ["warcry_empowers_per_X_monster_power"]=1789, + ["warcry_empowers_per_X_monster_power_mp_cap"]=1789, + ["warcry_exerts_x_additional_attacks_per_endurance_charge_consumed"]=1790, + ["warcry_grant_X_rage_per_5_power"]=1805, + ["warcry_grant_damage_+%_to_exerted_attacks"]=1802, + ["warcry_grant_knockback_%_to_exerted_attacks"]=1803, + ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1804, + ["warding_steel_gains_%_of_damage_from_mitigated_physical_damage"]=1806, + ["warding_steel_maximum_stored_mitigated_physical_damage"]=1806, + ["water_sphere_cold_lightning_exposure_%"]=1807, + ["water_sphere_does_weird_conversion_stuff"]=1808, + ["weapon_trap_rotation_speed_+%"]=1809, + ["weapon_trap_total_rotation_%"]=1810, + ["whirling_blades_evasion_rating_+%_while_moving"]=1811, + ["whirling_slash_knockback_distance_+%_final_per_stage"]=1812, + ["wind_blast_damage_+%_final_from_distance"]=1813, + ["winter_brand_max_number_of_stages"]=1814, + ["wither_applies_additional_wither_%"]=1815, + ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1816, + ["withered_on_chaos_damage_hit_chance_%"]=1817, + ["withered_on_hit_chance_%"]=1819, + ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1818, + ["withered_on_hit_for_2_seconds_%_chance"]=1820, + ["withering_step_chance_to_not_remove_on_skill_use_%"]=1821, + ["wolf_warcry_buff_cold_damage_max_cap"]=1822, + ["wolf_warcry_buff_cold_damage_max_per_5_power_up_to_cap"]=1822, + ["wolf_warcry_buff_cold_damage_min_cap"]=1822, + ["wolf_warcry_buff_cold_damage_min_per_5_power_up_to_cap"]=1822, + ["wolf_warcry_empowered_attack_cold_damage_max_cap"]=1823, + ["wolf_warcry_empowered_attack_cold_damage_max_per_5_power_up_to_cap"]=1823, + ["wolf_warcry_empowered_attack_cold_damage_min_cap"]=1823, + ["wolf_warcry_empowered_attack_cold_damage_min_per_5_power_up_to_cap"]=1823, + ["wolf_warcry_focus_fire_duration_ms"]=1824, + ["wolf_warcry_maximum_number_of_wolves"]=1825, + ["zombie_slam_area_of_effect_+%"]=1833, + ["zombie_slam_cooldown_speed_+%"]=1834 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/stat_descriptions.lua b/src/Data/StatDescriptions/stat_descriptions.lua index 72d04b3064..d3a55edd3a 100644 --- a/src/Data/StatDescriptions/stat_descriptions.lua +++ b/src/Data/StatDescriptions/stat_descriptions.lua @@ -3,6 +3,38 @@ return { [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Consuming Glory grants you {0}% increased Attack damage per Glory consumed for 6 seconds, up to 60%" + } + }, + stats={ + [1]="%_attack_damage_per_glory_consumed_for_6_seconds_up_to_100" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance when you Reload a Crossbow to be immediate" + } + }, + stats={ + [1]="%_chance_for_crossbow_reload_to_be_instant" + } + }, + [3]={ [1]={ [1]={ limit={ @@ -18,7 +50,7 @@ return { [1]="%_maximum_life_as_focus" } }, - [2]={ + [4]={ [1]={ [1]={ limit={ @@ -34,7 +66,7 @@ return { [1]="%_of_life_regeneration_applies_to_totems" } }, - [3]={ + [5]={ [1]={ [1]={ limit={ @@ -59,7 +91,7 @@ return { [1]="%_physical_damage_bypasses_energy_shield" } }, - [4]={ + [6]={ [1]={ [1]={ limit={ @@ -75,7 +107,7 @@ return { [1]="+1_max_charged_attack_stages" } }, - [5]={ + [7]={ [1]={ [1]={ limit={ @@ -84,14 +116,14 @@ return { [2]="#" } }, - text="+1 to Spirit for every {0} Energy Shield on Equipped Body Armour" + text="+1 to Spirit for every {0} Item Energy Shield on Equipped Body Armour" } }, stats={ [1]="+1_spirit_per_X_energy_shield_on_body_armour" } }, - [6]={ + [8]={ [1]={ [1]={ limit={ @@ -107,127 +139,143 @@ return { [1]="+1_spirit_per_X_evasion_rating_on_body_armour" } }, - [7]={ + [9]={ stats={ [1]="level" } }, - [8]={ + [10]={ stats={ [1]="item_drop_slots" } }, - [9]={ + [11]={ stats={ [1]="main_hand_weapon_type" } }, - [10]={ + [12]={ stats={ [1]="off_hand_weapon_type" } }, - [11]={ + [13]={ stats={ [1]="current_endurance_charges" } }, - [12]={ + [14]={ stats={ [1]="current_frenzy_charges" } }, - [13]={ + [15]={ stats={ [1]="current_power_charges" } }, - [14]={ + [16]={ stats={ [1]="monster_slain_experience_+%" } }, - [15]={ + [17]={ stats={ [1]="monster_dropped_item_rarity_+%" } }, - [16]={ + [18]={ stats={ [1]="monster_dropped_item_quantity_+%" } }, - [17]={ + [19]={ stats={ [1]="main_hand_quality" } }, - [18]={ + [20]={ stats={ [1]="off_hand_quality" } }, - [19]={ + [21]={ stats={ [1]="skill_visual_scale_+%" } }, - [20]={ + [22]={ stats={ [1]="main_hand_base_weapon_attack_duration_ms" } }, - [21]={ + [23]={ stats={ [1]="off_hand_base_weapon_attack_duration_ms" } }, - [22]={ + [24]={ stats={ [1]="main_hand_minimum_attack_distance" } }, - [23]={ + [25]={ stats={ [1]="off_hand_minimum_attack_distance" } }, - [24]={ + [26]={ stats={ [1]="main_hand_maximum_attack_distance" } }, - [25]={ + [27]={ stats={ [1]="off_hand_maximum_attack_distance" } }, - [26]={ + [28]={ stats={ [1]="chest_item_quantity_+%" } }, - [27]={ + [29]={ stats={ [1]="map_item_drop_quantity_+%" } }, - [28]={ + [30]={ stats={ [1]="map_item_drop_rarity_+%" } }, - [29]={ + [31]={ stats={ [1]="map_tempest_display_prefix" } }, - [30]={ + [32]={ stats={ [1]="map_tempest_display_suffix" } }, - [31]={ + [33]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Requires {0} Glory to use" + } + }, + stats={ + [1]="active_skill_requires_X_glory" + } + }, + [34]={ [1]={ [1]={ limit={ @@ -256,23 +304,7 @@ return { [1]="heist_coins_from_monsters_+%" } }, - [32]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Requires {0} Glory to use" - } - }, - stats={ - [1]="skill_requires_X_ultimate_charge" - } - }, - [33]={ + [35]={ [1]={ [1]={ limit={ @@ -288,7 +320,7 @@ return { [1]="local_jewel_+%_effect_per_passive_between_jewel_and_class_start" } }, - [34]={ + [36]={ [1]={ [1]={ limit={ @@ -788,6 +820,111 @@ return { } }, text="Remembrancing {1} songworthy deeds by the line of Olroth\nPassives in radius are Conquered by the Kalguur" + }, + [24]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Amanamu\nPassives in radius are Conquered by the Abyssals" + }, + [25]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=2, + [2]=2 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Kulemak\nPassives in radius are Conquered by the Abyssals" + }, + [26]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=3, + [2]=3 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Kurgal\nPassives in radius are Conquered by the Abyssals" + }, + [27]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=4, + [2]=4 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Tecrod\nPassives in radius are Conquered by the Abyssals" + }, + [28]={ + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=5, + [2]=5 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Glorifying the defilement of {1} souls in tribute to Ulaman\nPassives in radius are Conquered by the Abyssals" } }, stats={ @@ -797,7 +934,7 @@ return { [4]="local_unique_jewel_alternate_tree_internal_revision" } }, - [35]={ + [37]={ [1]={ [1]={ limit={ @@ -813,7 +950,7 @@ return { [1]="local_item_allow_modification_while_corrupted" } }, - [36]={ + [38]={ [1]={ [1]={ limit={ @@ -892,7 +1029,7 @@ return { [1]="local_jewel_variable_ring_radius_value" } }, - [37]={ + [39]={ [1]={ [1]={ limit={ @@ -921,7 +1058,7 @@ return { [1]="local_item_can_have_x_additional_enchantments" } }, - [38]={ + [40]={ [1]={ [1]={ limit={ @@ -946,7 +1083,7 @@ return { [1]="local_item_implicit_modifier_limit" } }, - [39]={ + [41]={ [1]={ [1]={ limit={ @@ -971,7 +1108,7 @@ return { [1]="local_maximum_prefixes_allowed_+" } }, - [40]={ + [42]={ [1]={ [1]={ limit={ @@ -996,7 +1133,7 @@ return { [1]="local_maximum_suffixes_allowed_+" } }, - [41]={ + [43]={ [1]={ [1]={ limit={ @@ -1012,7 +1149,7 @@ return { [1]="display_item_generation_can_roll_minion_affixes" } }, - [42]={ + [44]={ [1]={ [1]={ limit={ @@ -1028,7 +1165,7 @@ return { [1]="display_item_generation_can_roll_totem_affixes" } }, - [43]={ + [45]={ [1]={ [1]={ [1]={ @@ -1048,7 +1185,7 @@ return { [1]="ultimatum_wager_type_hash" } }, - [44]={ + [46]={ [1]={ [1]={ limit={ @@ -1064,7 +1201,7 @@ return { [1]="item_generation_cannot_change_prefixes" } }, - [45]={ + [47]={ [1]={ [1]={ limit={ @@ -1080,7 +1217,7 @@ return { [1]="local_implicit_mod_cannot_be_changed" } }, - [46]={ + [48]={ [1]={ [1]={ limit={ @@ -1096,7 +1233,7 @@ return { [1]="item_generation_cannot_change_suffixes" } }, - [47]={ + [49]={ [1]={ [1]={ limit={ @@ -1112,7 +1249,7 @@ return { [1]="item_generation_cannot_roll_caster_affixes" } }, - [48]={ + [50]={ [1]={ [1]={ limit={ @@ -1128,7 +1265,7 @@ return { [1]="item_generation_cannot_roll_attack_affixes" } }, - [49]={ + [51]={ [1]={ [1]={ limit={ @@ -1144,7 +1281,7 @@ return { [1]="item_generation_can_have_multiple_crafted_mods" } }, - [50]={ + [52]={ [1]={ [1]={ limit={ @@ -1169,7 +1306,7 @@ return { [1]="local_can_have_additional_crafted_mods" } }, - [51]={ + [53]={ [1]={ [1]={ limit={ @@ -1185,7 +1322,7 @@ return { [1]="item_generation_local_maximum_mod_required_level_override" } }, - [52]={ + [54]={ [1]={ [1]={ limit={ @@ -1214,7 +1351,7 @@ return { [1]="heist_enchantment_ailment_mod_effect_+%" } }, - [53]={ + [55]={ [1]={ [1]={ limit={ @@ -1243,7 +1380,7 @@ return { [1]="heist_enchantment_attribute_mod_effect_+%" } }, - [54]={ + [56]={ [1]={ [1]={ limit={ @@ -1272,7 +1409,7 @@ return { [1]="heist_enchantment_casterdamage_mod_effect_+%" } }, - [55]={ + [57]={ [1]={ [1]={ limit={ @@ -1301,7 +1438,7 @@ return { [1]="heist_enchantment_chaos_mod_effect_+%" } }, - [56]={ + [58]={ [1]={ [1]={ limit={ @@ -1330,7 +1467,7 @@ return { [1]="heist_enchantment_cold_mod_effect_+%" } }, - [57]={ + [59]={ [1]={ [1]={ limit={ @@ -1359,7 +1496,7 @@ return { [1]="heist_enchantment_critical_mod_effect_+%" } }, - [58]={ + [60]={ [1]={ [1]={ limit={ @@ -1388,7 +1525,7 @@ return { [1]="heist_enchantment_damage_mod_effect_+%" } }, - [59]={ + [61]={ [1]={ [1]={ limit={ @@ -1417,7 +1554,7 @@ return { [1]="heist_enchantment_defence_mod_effect_+%" } }, - [60]={ + [62]={ [1]={ [1]={ limit={ @@ -1446,7 +1583,7 @@ return { [1]="heist_enchantment_fire_mod_effect_+%" } }, - [61]={ + [63]={ [1]={ [1]={ limit={ @@ -1475,7 +1612,7 @@ return { [1]="heist_enchantment_life_mod_effect_+%" } }, - [62]={ + [64]={ [1]={ [1]={ limit={ @@ -1504,7 +1641,7 @@ return { [1]="heist_enchantment_lightning_mod_effect_+%" } }, - [63]={ + [65]={ [1]={ [1]={ limit={ @@ -1533,7 +1670,7 @@ return { [1]="heist_enchantment_mana_mod_effect_+%" } }, - [64]={ + [66]={ [1]={ [1]={ limit={ @@ -1562,7 +1699,7 @@ return { [1]="heist_enchantment_physical_mod_effect_+%" } }, - [65]={ + [67]={ [1]={ [1]={ limit={ @@ -1591,7 +1728,7 @@ return { [1]="heist_enchantment_resistance_mod_effect_+%" } }, - [66]={ + [68]={ [1]={ [1]={ limit={ @@ -1620,7 +1757,7 @@ return { [1]="heist_enchantment_speed_mod_effect_+%" } }, - [67]={ + [69]={ [1]={ [1]={ limit={ @@ -1649,7 +1786,7 @@ return { [1]="local_explicit_elemental_damage_mod_effect_+%" } }, - [68]={ + [70]={ [1]={ [1]={ limit={ @@ -1678,7 +1815,7 @@ return { [1]="local_explicit_minion_mod_effect_+%" } }, - [69]={ + [71]={ [1]={ [1]={ limit={ @@ -1707,7 +1844,7 @@ return { [1]="local_explicit_physical_and_chaos_damage_mod_effect_+%" } }, - [70]={ + [72]={ [1]={ [1]={ limit={ @@ -1716,14 +1853,14 @@ return { [2]="#" } }, - text="{0}% increased Unveiled Modifier magnitudes" + text="{0}% increased Desecrated Modifier magnitudes" } }, stats={ [1]="unveiled_mod_effect_+%" } }, - [71]={ + [73]={ [1]={ [1]={ limit={ @@ -1752,7 +1889,7 @@ return { [1]="local_explicit_mod_effect_+%" } }, - [72]={ + [74]={ [1]={ [1]={ limit={ @@ -1799,7 +1936,7 @@ return { [1]="local_implicit_stat_magnitude_+%" } }, - [73]={ + [75]={ [1]={ [1]={ limit={ @@ -1815,7 +1952,7 @@ return { [1]="local_display_grant_level_x_snipe_skill" } }, - [74]={ + [76]={ [1]={ [1]={ limit={ @@ -1831,55 +1968,7 @@ return { [1]="local_display_grants_level_X_spell_aegis" } }, - [75]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Has no Blue Sockets" - } - }, - stats={ - [1]="local_cannot_have_blue_sockets" - } - }, - [76]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Has no Green Sockets" - } - }, - stats={ - [1]="local_cannot_have_green_sockets" - } - }, [77]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Has no Red Sockets" - } - }, - stats={ - [1]="local_cannot_have_red_sockets" - } - }, - [78]={ [1]={ [1]={ limit={ @@ -1895,7 +1984,7 @@ return { [1]="local_has_no_sockets" } }, - [79]={ + [78]={ [1]={ [1]={ limit={ @@ -1924,7 +2013,7 @@ return { [1]="local_has_X_abyss_sockets" } }, - [80]={ + [79]={ [1]={ [1]={ limit={ @@ -1949,7 +2038,7 @@ return { [1]="local_has_X_sockets" } }, - [81]={ + [80]={ [1]={ [1]={ limit={ @@ -1974,132 +2063,7 @@ return { [1]="local_item_additional_skill_slots" } }, - [82]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Sockets cannot be modified" - } - }, - stats={ - [1]="local_six_linked_random_sockets" - } - }, - [83]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="All Sockets Linked" - } - }, - stats={ - [1]="local_all_sockets_linked" - } - }, - [84]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="All Sockets are Blue" - } - }, - stats={ - [1]="local_all_sockets_are_blue" - } - }, - [85]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="All Sockets are Green" - } - }, - stats={ - [1]="local_all_sockets_are_green" - } - }, - [86]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="All Sockets are Red" - } - }, - stats={ - [1]="local_all_sockets_are_red" - } - }, - [87]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="All Sockets are White" - } - }, - stats={ - [1]="local_all_sockets_are_white" - } - }, - [88]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Has 1 White Socket" - }, - [2]={ - [1]={ - k="canonical_line", - v=true - }, - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Has {0} White Sockets" - } - }, - stats={ - [1]="local_has_X_white_sockets" - } - }, - [89]={ + [81]={ [1]={ [1]={ limit={ @@ -2124,7 +2088,7 @@ return { [1]="local_maximum_sockets_+" } }, - [90]={ + [82]={ [1]={ [1]={ limit={ @@ -2140,7 +2104,7 @@ return { [1]="local_one_socket_each_colour_only" } }, - [91]={ + [83]={ [1]={ [1]={ limit={ @@ -2156,7 +2120,7 @@ return { [1]="map_number_of_harbinger_portals" } }, - [92]={ + [84]={ [1]={ [1]={ limit={ @@ -2172,7 +2136,7 @@ return { [1]="memory_line_breach_covers_map" } }, - [93]={ + [85]={ [1]={ [1]={ limit={ @@ -2197,7 +2161,7 @@ return { [1]="memory_line_minimum_possessions_of_rare_unique_monsters" } }, - [94]={ + [86]={ [1]={ [1]={ limit={ @@ -2213,7 +2177,7 @@ return { [1]="memory_line_num_harvest_plots" } }, - [95]={ + [87]={ [1]={ [1]={ limit={ @@ -2229,7 +2193,7 @@ return { [1]="memory_line_number_of_abyss_scourge_cracks" } }, - [96]={ + [88]={ [1]={ [1]={ limit={ @@ -2254,7 +2218,7 @@ return { [1]="memory_line_number_of_breaches" } }, - [97]={ + [89]={ [1]={ [1]={ limit={ @@ -2270,7 +2234,7 @@ return { [1]="memory_line_number_of_essences" } }, - [98]={ + [90]={ [1]={ [1]={ limit={ @@ -2286,7 +2250,7 @@ return { [1]="memory_line_number_of_excursions" } }, - [99]={ + [91]={ [1]={ [1]={ limit={ @@ -2315,7 +2279,7 @@ return { [1]="memory_line_number_of_strongboxes" } }, - [100]={ + [92]={ [1]={ [1]={ limit={ @@ -2331,7 +2295,7 @@ return { [1]="memory_line_player_is_harbinger" } }, - [101]={ + [93]={ [1]={ [1]={ limit={ @@ -2347,7 +2311,7 @@ return { [1]="local_can_socket_gems_ignoring_colour" } }, - [102]={ + [94]={ [1]={ [1]={ limit={ @@ -2363,7 +2327,7 @@ return { [1]="map_breach_hands_are_small" } }, - [103]={ + [95]={ [1]={ [1]={ limit={ @@ -2392,7 +2356,7 @@ return { [1]="map_harbinger_cooldown_speed_+%" } }, - [104]={ + [96]={ [1]={ [1]={ limit={ @@ -2417,7 +2381,7 @@ return { [1]="map_incursion_architects_drop_incursion_rare_chance_%" } }, - [105]={ + [97]={ [1]={ [1]={ limit={ @@ -2433,7 +2397,7 @@ return { [1]="map_strongbox_chain_length" } }, - [106]={ + [98]={ [1]={ [1]={ limit={ @@ -2458,7 +2422,7 @@ return { [1]="memory_line_abyss_scourge_spawn_boss_chance_%" } }, - [107]={ + [99]={ [1]={ [1]={ limit={ @@ -2474,7 +2438,7 @@ return { [1]="memory_line_big_harvest" } }, - [108]={ + [100]={ [1]={ [1]={ limit={ @@ -2490,7 +2454,7 @@ return { [1]="memory_line_essence_monster_number_of_essences" } }, - [109]={ + [101]={ [1]={ [1]={ limit={ @@ -2506,7 +2470,7 @@ return { [1]="memory_line_maximum_possessions_of_rare_unique_monsters" } }, - [110]={ + [102]={ [1]={ [1]={ limit={ @@ -2522,7 +2486,7 @@ return { [1]="memory_line_number_of_large_breach_chests" } }, - [111]={ + [103]={ [1]={ [1]={ limit={ @@ -2547,7 +2511,7 @@ return { [1]="player_is_harbinger_spawn_pack_on_kill_chance" } }, - [112]={ + [104]={ [1]={ [1]={ limit={ @@ -2628,7 +2592,7 @@ return { [2]="local_unique_hungry_loop_has_consumed_gem" } }, - [113]={ + [105]={ [1]={ [1]={ limit={ @@ -2653,7 +2617,7 @@ return { [1]="map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods" } }, - [114]={ + [106]={ [1]={ [1]={ limit={ @@ -2682,7 +2646,7 @@ return { [1]="map_breach_time_passed_+%" } }, - [115]={ + [107]={ [1]={ [1]={ limit={ @@ -2698,7 +2662,7 @@ return { [1]="map_essences_contains_rogue_exiles" } }, - [116]={ + [108]={ [1]={ [1]={ limit={ @@ -2714,7 +2678,7 @@ return { [1]="map_harvest_seeds_are_at_least_t2" } }, - [117]={ + [109]={ [1]={ [1]={ limit={ @@ -2730,7 +2694,7 @@ return { [1]="memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete" } }, - [118]={ + [110]={ [1]={ [1]={ limit={ @@ -2746,7 +2710,7 @@ return { [1]="memory_line_breach_boss_spawn_chance_%" } }, - [119]={ + [111]={ [1]={ [1]={ limit={ @@ -2762,7 +2726,7 @@ return { [1]="memory_line_strongboxes_chance_to_be_operatives_%" } }, - [120]={ + [112]={ [1]={ [1]={ limit={ @@ -2778,7 +2742,7 @@ return { [1]="map_breach_size_+%" } }, - [121]={ + [113]={ [1]={ [1]={ [1]={ @@ -2798,7 +2762,7 @@ return { [1]="map_breach_splinters_drop_as_stones_permyriad" } }, - [122]={ + [114]={ [1]={ [1]={ limit={ @@ -2814,7 +2778,7 @@ return { [1]="map_chance_for_breach_bosses_to_drop_breachstone_%" } }, - [123]={ + [115]={ [1]={ [1]={ limit={ @@ -2839,7 +2803,7 @@ return { [1]="map_essences_are_1_tier_higher_chance_%" } }, - [124]={ + [116]={ [1]={ [1]={ limit={ @@ -2855,7 +2819,7 @@ return { [1]="map_harvest_seed_t2_upgrade_%_chance" } }, - [125]={ + [117]={ [1]={ [1]={ limit={ @@ -2871,7 +2835,7 @@ return { [1]="map_strongboxes_additional_pack_chance_%" } }, - [126]={ + [118]={ [1]={ [1]={ limit={ @@ -2900,7 +2864,7 @@ return { [1]="map_breach_monsters_life_+%" } }, - [127]={ + [119]={ [1]={ [1]={ limit={ @@ -2916,7 +2880,7 @@ return { [1]="map_essence_corruption_cannot_release_monsters" } }, - [128]={ + [120]={ [1]={ [1]={ limit={ @@ -2932,7 +2896,7 @@ return { [1]="map_harvest_seed_t3_upgrade_%_chance" } }, - [129]={ + [121]={ [1]={ [1]={ limit={ @@ -2948,7 +2912,7 @@ return { [1]="map_strongbox_monsters_life_+%" } }, - [130]={ + [122]={ [1]={ [1]={ limit={ @@ -2964,7 +2928,7 @@ return { [1]="map_weapon_and_shields_drop_corrupted_with_implicit_%_chance" } }, - [131]={ + [123]={ [1]={ [1]={ limit={ @@ -2980,7 +2944,7 @@ return { [1]="map_weapon_and_shields_drop_fractured_%_chance" } }, - [132]={ + [124]={ [1]={ [1]={ limit={ @@ -2996,7 +2960,7 @@ return { [1]="map_weapon_and_shields_drop_fully_linked_%_chance" } }, - [133]={ + [125]={ [1]={ [1]={ limit={ @@ -3012,7 +2976,7 @@ return { [1]="map_weapon_and_shields_drop_fully_socketed_%_chance" } }, - [134]={ + [126]={ [1]={ [1]={ limit={ @@ -3041,7 +3005,7 @@ return { [1]="map_breach_monsters_damage_+%" } }, - [135]={ + [127]={ [1]={ [1]={ limit={ @@ -3057,7 +3021,7 @@ return { [1]="map_duplicate_essence_monsters_with_shrieking_essence" } }, - [136]={ + [128]={ [1]={ [1]={ limit={ @@ -3073,7 +3037,7 @@ return { [1]="map_strongbox_monsters_damage_+%" } }, - [137]={ + [129]={ [1]={ [1]={ limit={ @@ -3098,7 +3062,7 @@ return { [1]="map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance" } }, - [138]={ + [130]={ [1]={ [1]={ limit={ @@ -3123,7 +3087,7 @@ return { [1]="trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance" } }, - [139]={ + [131]={ [1]={ [1]={ limit={ @@ -3139,7 +3103,7 @@ return { [1]="local_gem_level_+" } }, - [140]={ + [132]={ [1]={ [1]={ limit={ @@ -3155,7 +3119,7 @@ return { [1]="local_socketed_strength_gem_level_+" } }, - [141]={ + [133]={ [1]={ [1]={ limit={ @@ -3171,7 +3135,7 @@ return { [1]="local_socketed_dexterity_gem_level_+" } }, - [142]={ + [134]={ [1]={ [1]={ limit={ @@ -3187,7 +3151,7 @@ return { [1]="phylactery_can_only_contain_non_unique_jewel" } }, - [143]={ + [135]={ [1]={ [1]={ limit={ @@ -3203,7 +3167,7 @@ return { [1]="local_socketed_intelligence_gem_level_+" } }, - [144]={ + [136]={ [1]={ [1]={ limit={ @@ -3228,7 +3192,7 @@ return { [1]="phylactery_jewel_mod_effect_+%" } }, - [145]={ + [137]={ [1]={ [1]={ limit={ @@ -3244,7 +3208,7 @@ return { [1]="local_socketed_gem_level_+" } }, - [146]={ + [138]={ [1]={ [1]={ limit={ @@ -3260,7 +3224,7 @@ return { [1]="local_socketed_skill_gem_level_+1_per_x_player_levels" } }, - [147]={ + [139]={ [1]={ [1]={ limit={ @@ -3276,7 +3240,7 @@ return { [1]="local_socketed_gems_in_red_sockets_get_level_+" } }, - [148]={ + [140]={ [1]={ [1]={ limit={ @@ -3292,7 +3256,7 @@ return { [1]="local_socketed_gems_in_green_sockets_get_quality_%" } }, - [149]={ + [141]={ [1]={ [1]={ limit={ @@ -3308,7 +3272,7 @@ return { [1]="local_socketed_gems_in_blue_sockets_experience_gained_+%" } }, - [150]={ + [142]={ [1]={ [1]={ limit={ @@ -3324,7 +3288,7 @@ return { [1]="local_socketed_fire_gem_level_+" } }, - [151]={ + [143]={ [1]={ [1]={ limit={ @@ -3357,7 +3321,7 @@ return { [1]="lich_mana_cost_+%_final_if_you_have_no_energy_shield" } }, - [152]={ + [144]={ [1]={ [1]={ limit={ @@ -3373,7 +3337,7 @@ return { [1]="local_socketed_cold_gem_level_+" } }, - [153]={ + [145]={ [1]={ [1]={ limit={ @@ -3389,7 +3353,7 @@ return { [1]="local_socketed_lightning_gem_level_+" } }, - [154]={ + [146]={ [1]={ [1]={ limit={ @@ -3405,7 +3369,7 @@ return { [1]="local_socketed_chaos_gem_level_+" } }, - [155]={ + [147]={ [1]={ [1]={ limit={ @@ -3421,7 +3385,7 @@ return { [1]="local_socketed_spell_gem_level_+" } }, - [156]={ + [148]={ [1]={ [1]={ limit={ @@ -3437,7 +3401,7 @@ return { [1]="local_socketed_duration_gem_level_+" } }, - [157]={ + [149]={ [1]={ [1]={ limit={ @@ -3453,7 +3417,7 @@ return { [1]="local_socketed_area_of_effect_gem_level_+" } }, - [158]={ + [150]={ [1]={ [1]={ limit={ @@ -3469,7 +3433,7 @@ return { [1]="local_socketed_projectile_gem_level_+" } }, - [159]={ + [151]={ [1]={ [1]={ limit={ @@ -3485,7 +3449,7 @@ return { [1]="local_socketed_bow_gem_level_+" } }, - [160]={ + [152]={ [1]={ [1]={ limit={ @@ -3501,7 +3465,7 @@ return { [1]="local_socketed_melee_gem_level_+" } }, - [161]={ + [153]={ [1]={ [1]={ limit={ @@ -3517,7 +3481,7 @@ return { [1]="local_socketed_minion_gem_level_+" } }, - [162]={ + [154]={ [1]={ [1]={ limit={ @@ -3533,7 +3497,7 @@ return { [1]="local_socketed_aura_gem_level_+" } }, - [163]={ + [155]={ [1]={ [1]={ limit={ @@ -3549,7 +3513,7 @@ return { [1]="local_socketed_herald_gem_level_+" } }, - [164]={ + [156]={ [1]={ [1]={ limit={ @@ -3565,7 +3529,7 @@ return { [1]="local_socketed_movement_gem_level_+" } }, - [165]={ + [157]={ [1]={ [1]={ limit={ @@ -3581,7 +3545,7 @@ return { [1]="local_socketed_curse_gem_level_+" } }, - [166]={ + [158]={ [1]={ [1]={ limit={ @@ -3597,7 +3561,7 @@ return { [1]="local_socketed_hex_gem_level_+" } }, - [167]={ + [159]={ [1]={ [1]={ limit={ @@ -3613,7 +3577,7 @@ return { [1]="local_socketed_trap_gem_level_+" } }, - [168]={ + [160]={ [1]={ [1]={ limit={ @@ -3629,7 +3593,7 @@ return { [1]="local_socketed_trap_and_mine_gem_level_+" } }, - [169]={ + [161]={ [1]={ [1]={ limit={ @@ -3645,7 +3609,7 @@ return { [1]="local_socketed_vaal_gem_level_+" } }, - [170]={ + [162]={ [1]={ [1]={ limit={ @@ -3661,7 +3625,7 @@ return { [1]="local_socketed_support_gem_level_+" } }, - [171]={ + [163]={ [1]={ [1]={ limit={ @@ -3677,7 +3641,7 @@ return { [1]="local_socketed_active_skill_gem_level_+" } }, - [172]={ + [164]={ [1]={ [1]={ limit={ @@ -3693,7 +3657,7 @@ return { [1]="local_socketed_non_vaal_gem_level_+" } }, - [173]={ + [165]={ [1]={ [1]={ limit={ @@ -3709,7 +3673,7 @@ return { [1]="local_socketed_warcry_gem_level_+" } }, - [174]={ + [166]={ [1]={ [1]={ limit={ @@ -3725,7 +3689,7 @@ return { [1]="local_display_socketed_golem_attack_and_cast_speed_+%" } }, - [175]={ + [167]={ [1]={ [1]={ limit={ @@ -3741,7 +3705,7 @@ return { [1]="local_display_socketed_golem_buff_effect_+%" } }, - [176]={ + [168]={ [1]={ [1]={ limit={ @@ -3757,7 +3721,7 @@ return { [1]="local_display_socketed_golem_chance_to_taunt_%" } }, - [177]={ + [169]={ [1]={ [1]={ [1]={ @@ -3777,7 +3741,7 @@ return { [1]="local_display_socketed_golem_life_regeneration_rate_per_minute_%" } }, - [178]={ + [170]={ [1]={ [1]={ [1]={ @@ -3797,7 +3761,7 @@ return { [1]="local_display_socketed_golem_skill_grants_onslaught_when_summoned" } }, - [179]={ + [171]={ [1]={ [1]={ limit={ @@ -3813,7 +3777,7 @@ return { [1]="local_socketed_golem_gem_level_+" } }, - [180]={ + [172]={ [1]={ [1]={ limit={ @@ -3829,7 +3793,7 @@ return { [1]="local_socketed_gem_quality_+" } }, - [181]={ + [173]={ [1]={ [1]={ limit={ @@ -3845,7 +3809,7 @@ return { [1]="local_socketed_support_gem_quality_+" } }, - [182]={ + [174]={ [1]={ [1]={ limit={ @@ -3861,7 +3825,7 @@ return { [1]="local_socketed_active_skill_gem_quality_+" } }, - [183]={ + [175]={ [1]={ [1]={ limit={ @@ -3877,7 +3841,7 @@ return { [1]="local_socketed_area_of_effect_gem_quality_+" } }, - [184]={ + [176]={ [1]={ [1]={ limit={ @@ -3893,7 +3857,7 @@ return { [1]="local_socketed_aura_gem_quality_+" } }, - [185]={ + [177]={ [1]={ [1]={ limit={ @@ -3909,7 +3873,7 @@ return { [1]="local_socketed_bow_gem_quality_+" } }, - [186]={ + [178]={ [1]={ [1]={ limit={ @@ -3925,7 +3889,7 @@ return { [1]="local_socketed_chaos_gem_quality_+" } }, - [187]={ + [179]={ [1]={ [1]={ limit={ @@ -3941,7 +3905,7 @@ return { [1]="local_socketed_cold_gem_quality_+" } }, - [188]={ + [180]={ [1]={ [1]={ limit={ @@ -3957,7 +3921,7 @@ return { [1]="local_socketed_dexterity_gem_quality_+" } }, - [189]={ + [181]={ [1]={ [1]={ limit={ @@ -3973,7 +3937,7 @@ return { [1]="local_socketed_elemental_gem_level_+" } }, - [190]={ + [182]={ [1]={ [1]={ limit={ @@ -3989,7 +3953,7 @@ return { [1]="local_socketed_fire_gem_quality_+" } }, - [191]={ + [183]={ [1]={ [1]={ limit={ @@ -4005,7 +3969,7 @@ return { [1]="local_socketed_intelligence_gem_quality_+" } }, - [192]={ + [184]={ [1]={ [1]={ limit={ @@ -4021,7 +3985,7 @@ return { [1]="local_socketed_lightning_gem_quality_+" } }, - [193]={ + [185]={ [1]={ [1]={ limit={ @@ -4037,7 +4001,7 @@ return { [1]="local_socketed_melee_gem_quality_+" } }, - [194]={ + [186]={ [1]={ [1]={ limit={ @@ -4053,7 +4017,7 @@ return { [1]="local_socketed_minion_gem_quality_+" } }, - [195]={ + [187]={ [1]={ [1]={ limit={ @@ -4069,7 +4033,7 @@ return { [1]="local_socketed_projectile_gem_quality_+" } }, - [196]={ + [188]={ [1]={ [1]={ limit={ @@ -4085,7 +4049,7 @@ return { [1]="local_socketed_strength_gem_quality_+" } }, - [197]={ + [189]={ [1]={ [1]={ limit={ @@ -4114,7 +4078,7 @@ return { [1]="local_socketed_abyss_jewel_effect_+%" } }, - [198]={ + [190]={ [1]={ [1]={ limit={ @@ -4130,7 +4094,7 @@ return { [1]="support_gems_socketed_in_amulet_also_support_body_skills" } }, - [199]={ + [191]={ [1]={ [1]={ limit={ @@ -4146,7 +4110,7 @@ return { [1]="support_gems_socketed_in_off_hand_also_support_main_hand_skills" } }, - [200]={ + [192]={ [1]={ [1]={ limit={ @@ -4162,7 +4126,7 @@ return { [1]="local_display_socketed_gems_get_increased_area_level" } }, - [201]={ + [193]={ [1]={ [1]={ limit={ @@ -4178,7 +4142,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_arcane_surge" } }, - [202]={ + [194]={ [1]={ [1]={ limit={ @@ -4194,7 +4158,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_archmage" } }, - [203]={ + [195]={ [1]={ [1]={ limit={ @@ -4210,7 +4174,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_aura_duration" } }, - [204]={ + [196]={ [1]={ [1]={ limit={ @@ -4226,7 +4190,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_barrage" } }, - [205]={ + [197]={ [1]={ [1]={ limit={ @@ -4242,7 +4206,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_behead" } }, - [206]={ + [198]={ [1]={ [1]={ limit={ @@ -4258,7 +4222,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodlust" } }, - [207]={ + [199]={ [1]={ [1]={ limit={ @@ -4274,7 +4238,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodthirst" } }, - [208]={ + [200]={ [1]={ [1]={ limit={ @@ -4290,7 +4254,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_brutality" } }, - [209]={ + [201]={ [1]={ [1]={ limit={ @@ -4306,7 +4270,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken" } }, - [210]={ + [202]={ [1]={ [1]={ limit={ @@ -4322,7 +4286,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_kill" } }, - [211]={ + [203]={ [1]={ [1]={ limit={ @@ -4338,7 +4302,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_while_channelling" } }, - [212]={ + [204]={ [1]={ [1]={ limit={ @@ -4354,7 +4318,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chain" } }, - [213]={ + [205]={ [1]={ [1]={ limit={ @@ -4370,7 +4334,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_bleed" } }, - [214]={ + [206]={ [1]={ [1]={ limit={ @@ -4386,7 +4350,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_ignite" } }, - [215]={ + [207]={ [1]={ [1]={ limit={ @@ -4402,7 +4366,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_charged_mines" } }, - [216]={ + [208]={ [1]={ [1]={ limit={ @@ -4418,7 +4382,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_close_combat" } }, - [217]={ + [209]={ [1]={ [1]={ limit={ @@ -4434,7 +4398,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_culling_strike" } }, - [218]={ + [210]={ [1]={ [1]={ limit={ @@ -4450,7 +4414,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_curse_on_hit" } }, - [219]={ + [211]={ [1]={ [1]={ limit={ @@ -4466,7 +4430,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cursed_ground" } }, - [220]={ + [212]={ [1]={ [1]={ limit={ @@ -4482,7 +4446,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deadly_ailments" } }, - [221]={ + [213]={ [1]={ [1]={ limit={ @@ -4498,7 +4462,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deathmark" } }, - [222]={ + [214]={ [1]={ [1]={ limit={ @@ -4514,7 +4478,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_decay" } }, - [223]={ + [215]={ [1]={ [1]={ limit={ @@ -4530,7 +4494,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_earthbreaker" } }, - [224]={ + [216]={ [1]={ [1]={ limit={ @@ -4546,7 +4510,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_efficacy" } }, - [225]={ + [217]={ [1]={ [1]={ limit={ @@ -4562,7 +4526,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_focus" } }, - [226]={ + [218]={ [1]={ [1]={ limit={ @@ -4578,7 +4542,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_penetration" } }, - [227]={ + [219]={ [1]={ [1]={ limit={ @@ -4594,7 +4558,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_empower" } }, - [228]={ + [220]={ [1]={ [1]={ limit={ @@ -4610,7 +4574,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enhance" } }, - [229]={ + [221]={ [1]={ [1]={ limit={ @@ -4626,7 +4590,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enlighten" } }, - [230]={ + [222]={ [1]={ [1]={ limit={ @@ -4642,7 +4606,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_eternal_blessing" } }, - [231]={ + [223]={ [1]={ [1]={ limit={ @@ -4658,7 +4622,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_feeding_frenzy" } }, - [232]={ + [224]={ [1]={ [1]={ limit={ @@ -4674,7 +4638,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fire_penetration" } }, - [233]={ + [225]={ [1]={ [1]={ limit={ @@ -4690,7 +4654,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fist_of_war" } }, - [234]={ + [226]={ [1]={ [1]={ limit={ @@ -4706,7 +4670,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_focussed_ballista" } }, - [235]={ + [227]={ [1]={ [1]={ limit={ @@ -4722,7 +4686,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fragility" } }, - [236]={ + [228]={ [1]={ [1]={ limit={ @@ -4738,7 +4702,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger" } }, - [237]={ + [229]={ [1]={ [1]={ limit={ @@ -4754,7 +4718,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles" } }, - [238]={ + [230]={ [1]={ [1]={ limit={ @@ -4770,7 +4734,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_spell_echo" } }, - [239]={ + [231]={ [1]={ [1]={ limit={ @@ -4786,7 +4750,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_volley" } }, - [240]={ + [232]={ [1]={ [1]={ limit={ @@ -4802,7 +4766,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hex_bloom" } }, - [241]={ + [233]={ [1]={ [1]={ limit={ @@ -4818,7 +4782,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ignite_proliferation" } }, - [242]={ + [234]={ [1]={ [1]={ limit={ @@ -4834,7 +4798,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_immolate" } }, - [243]={ + [235]={ [1]={ [1]={ limit={ @@ -4850,7 +4814,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impale" } }, - [244]={ + [236]={ [1]={ [1]={ limit={ @@ -4866,7 +4830,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impending_doom" } }, - [245]={ + [237]={ [1]={ [1]={ limit={ @@ -4882,7 +4846,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_burning_damage" } }, - [246]={ + [238]={ [1]={ [1]={ limit={ @@ -4898,7 +4862,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_critical_strikes" } }, - [247]={ + [239]={ [1]={ [1]={ limit={ @@ -4914,7 +4878,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_duration" } }, - [248]={ + [240]={ [1]={ [1]={ limit={ @@ -4930,7 +4894,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_infernal_legion" } }, - [249]={ + [241]={ [1]={ [1]={ limit={ @@ -4946,7 +4910,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_intensify" } }, - [250]={ + [242]={ [1]={ [1]={ limit={ @@ -4962,7 +4926,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_iron_grip" } }, - [251]={ + [243]={ [1]={ [1]={ limit={ @@ -4978,7 +4942,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_quantity" } }, - [252]={ + [244]={ [1]={ [1]={ limit={ @@ -4994,7 +4958,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_rarity" } }, - [253]={ + [245]={ [1]={ [1]={ limit={ @@ -5010,7 +4974,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_life_gain_on_hit" } }, - [254]={ + [246]={ [1]={ [1]={ limit={ @@ -5026,7 +4990,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lifetap" } }, - [255]={ + [247]={ [1]={ [1]={ limit={ @@ -5042,7 +5006,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lightning_penetration" } }, - [256]={ + [248]={ [1]={ [1]={ limit={ @@ -5058,7 +5022,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_maim" } }, - [257]={ + [249]={ [1]={ [1]={ limit={ @@ -5074,7 +5038,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_manaforged_arrows" } }, - [258]={ + [250]={ [1]={ [1]={ limit={ @@ -5090,7 +5054,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mark_on_hit" } }, - [259]={ + [251]={ [1]={ [1]={ limit={ @@ -5106,7 +5070,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_meat_shield" } }, - [260]={ + [252]={ [1]={ [1]={ limit={ @@ -5122,7 +5086,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life" } }, - [261]={ + [253]={ [1]={ [1]={ limit={ @@ -5138,7 +5102,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_minefield" } }, - [262]={ + [254]={ [1]={ [1]={ limit={ @@ -5154,7 +5118,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mirage_archer" } }, - [263]={ + [255]={ [1]={ [1]={ limit={ @@ -5170,7 +5134,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_totem" } }, - [264]={ + [256]={ [1]={ [1]={ limit={ @@ -5186,7 +5150,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multicast" } }, - [265]={ + [257]={ [1]={ [1]={ limit={ @@ -5202,7 +5166,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_nightblade" } }, - [266]={ + [258]={ [1]={ [1]={ limit={ @@ -5218,7 +5182,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_onslaught" } }, - [267]={ + [259]={ [1]={ [1]={ limit={ @@ -5234,7 +5198,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overcharge" } }, - [268]={ + [260]={ [1]={ [1]={ limit={ @@ -5250,7 +5214,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_parallel_projectiles" } }, - [269]={ + [261]={ [1]={ [1]={ limit={ @@ -5266,7 +5230,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage" } }, - [270]={ + [262]={ [1]={ [1]={ limit={ @@ -5282,7 +5246,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_to_lightning" } }, - [271]={ + [263]={ [1]={ [1]={ limit={ @@ -5298,7 +5262,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pinpoint" } }, - [272]={ + [264]={ [1]={ [1]={ limit={ @@ -5314,7 +5278,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_point_blank" } }, - [273]={ + [265]={ [1]={ [1]={ limit={ @@ -5330,7 +5294,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_poison" } }, - [274]={ + [266]={ [1]={ [1]={ limit={ @@ -5346,7 +5310,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_power_charge_on_crit" } }, - [275]={ + [267]={ [1]={ [1]={ limit={ @@ -5362,7 +5326,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_prismatic_burst" } }, - [276]={ + [268]={ [1]={ [1]={ limit={ @@ -5378,7 +5342,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pulverise" } }, - [277]={ + [269]={ [1]={ [1]={ limit={ @@ -5394,7 +5358,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rage" } }, - [278]={ + [270]={ [1]={ [1]={ limit={ @@ -5410,7 +5374,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rain" } }, - [279]={ + [271]={ [1]={ [1]={ limit={ @@ -5426,7 +5390,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ranged_attack_totem" } }, - [280]={ + [272]={ [1]={ [1]={ limit={ @@ -5442,7 +5406,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rapid_decay" } }, - [281]={ + [273]={ [1]={ [1]={ limit={ @@ -5458,7 +5422,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_block_chance" } }, - [282]={ + [274]={ [1]={ [1]={ limit={ @@ -5474,7 +5438,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_duration" } }, - [283]={ + [275]={ [1]={ [1]={ limit={ @@ -5490,7 +5454,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_remote_mine_2" } }, - [284]={ + [276]={ [1]={ [1]={ limit={ @@ -5506,7 +5470,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ruthless" } }, - [285]={ + [277]={ [1]={ [1]={ limit={ @@ -5522,7 +5486,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_second_wind" } }, - [286]={ + [278]={ [1]={ [1]={ limit={ @@ -5538,7 +5502,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_shockwave" } }, - [287]={ + [279]={ [1]={ [1]={ limit={ @@ -5554,7 +5518,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_slower_projectiles" } }, - [288]={ + [280]={ [1]={ [1]={ limit={ @@ -5570,7 +5534,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_snipe" } }, - [289]={ + [281]={ [1]={ [1]={ limit={ @@ -5586,7 +5550,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_cascade" } }, - [290]={ + [282]={ [1]={ [1]={ limit={ @@ -5602,7 +5566,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_focus" } }, - [291]={ + [283]={ [1]={ [1]={ limit={ @@ -5618,7 +5582,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spirit_strike" } }, - [292]={ + [284]={ [1]={ [1]={ limit={ @@ -5634,7 +5598,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_storm_barrier" } }, - [293]={ + [285]={ [1]={ [1]={ limit={ @@ -5650,7 +5614,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance" } }, - [294]={ + [286]={ [1]={ [1]={ limit={ @@ -5666,7 +5630,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill" } }, - [295]={ + [287]={ [1]={ [1]={ limit={ @@ -5682,7 +5646,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swift_assembly" } }, - [296]={ + [288]={ [1]={ [1]={ limit={ @@ -5698,7 +5662,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swiftbrand" } }, - [297]={ + [289]={ [1]={ [1]={ limit={ @@ -5714,7 +5678,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_cooldown" } }, - [298]={ + [290]={ [1]={ [1]={ limit={ @@ -5730,7 +5694,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trinity" } }, - [299]={ + [291]={ [1]={ [1]={ limit={ @@ -5746,7 +5710,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unbound_ailments" } }, - [300]={ + [292]={ [1]={ [1]={ limit={ @@ -5762,7 +5726,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unleash" } }, - [301]={ + [293]={ [1]={ [1]={ limit={ @@ -5778,7 +5742,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_urgent_orders" } }, - [302]={ + [294]={ [1]={ [1]={ limit={ @@ -5794,7 +5758,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_void_manipulation" } }, - [303]={ + [295]={ [1]={ [1]={ limit={ @@ -5810,7 +5774,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chaos_attacks" } }, - [304]={ + [296]={ [1]={ [1]={ limit={ @@ -5826,7 +5790,7 @@ return { [1]="local_display_socketed_triggered_skills_deal_double_damage" } }, - [305]={ + [297]={ [1]={ [1]={ limit={ @@ -5842,7 +5806,7 @@ return { [1]="local_display_supported_by_level_10_controlled_destruction" } }, - [306]={ + [298]={ [1]={ [1]={ limit={ @@ -5858,7 +5822,7 @@ return { [1]="local_display_supported_by_level_10_intensify" } }, - [307]={ + [299]={ [1]={ [1]={ limit={ @@ -5874,7 +5838,7 @@ return { [1]="local_display_supported_by_level_10_spell_echo" } }, - [308]={ + [300]={ [1]={ [1]={ limit={ @@ -5890,7 +5854,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_chaos_damage" } }, - [309]={ + [301]={ [1]={ [1]={ limit={ @@ -5906,7 +5870,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_cold_damage" } }, - [310]={ + [302]={ [1]={ [1]={ limit={ @@ -5922,7 +5886,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_fire_damage" } }, - [311]={ + [303]={ [1]={ [1]={ limit={ @@ -5938,7 +5902,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_lightning_damage" } }, - [312]={ + [304]={ [1]={ [1]={ limit={ @@ -5954,7 +5918,7 @@ return { [1]="local_display_supported_by_level_x_awakened_ancestral_call" } }, - [313]={ + [305]={ [1]={ [1]={ limit={ @@ -5970,7 +5934,7 @@ return { [1]="local_display_supported_by_level_x_awakened_arrow_nova" } }, - [314]={ + [306]={ [1]={ [1]={ limit={ @@ -5986,7 +5950,7 @@ return { [1]="local_display_supported_by_level_x_awakened_blasphemy" } }, - [315]={ + [307]={ [1]={ [1]={ limit={ @@ -6002,7 +5966,7 @@ return { [1]="local_display_supported_by_level_x_awakened_brutality" } }, - [316]={ + [308]={ [1]={ [1]={ limit={ @@ -6018,7 +5982,7 @@ return { [1]="local_display_supported_by_level_x_awakened_burning_damage" } }, - [317]={ + [309]={ [1]={ [1]={ limit={ @@ -6034,7 +5998,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_on_crit" } }, - [318]={ + [310]={ [1]={ [1]={ limit={ @@ -6050,7 +6014,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_while_channelling" } }, - [319]={ + [311]={ [1]={ [1]={ limit={ @@ -6066,7 +6030,7 @@ return { [1]="local_display_supported_by_level_x_awakened_chain" } }, - [320]={ + [312]={ [1]={ [1]={ limit={ @@ -6082,7 +6046,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cold_penetration" } }, - [321]={ + [313]={ [1]={ [1]={ limit={ @@ -6098,7 +6062,7 @@ return { [1]="local_display_supported_by_level_x_awakened_controlled_destruction" } }, - [322]={ + [314]={ [1]={ [1]={ limit={ @@ -6114,7 +6078,7 @@ return { [1]="local_display_supported_by_level_x_awakened_curse_on_hit" } }, - [323]={ + [315]={ [1]={ [1]={ limit={ @@ -6130,7 +6094,7 @@ return { [1]="local_display_supported_by_level_x_awakened_deadly_ailments" } }, - [324]={ + [316]={ [1]={ [1]={ limit={ @@ -6146,7 +6110,7 @@ return { [1]="local_display_supported_by_level_x_awakened_elemental_focus" } }, - [325]={ + [317]={ [1]={ [1]={ limit={ @@ -6162,7 +6126,7 @@ return { [1]="local_display_supported_by_level_x_awakened_empower" } }, - [326]={ + [318]={ [1]={ [1]={ limit={ @@ -6178,7 +6142,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enhance" } }, - [327]={ + [319]={ [1]={ [1]={ limit={ @@ -6194,7 +6158,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enlighten" } }, - [328]={ + [320]={ [1]={ [1]={ limit={ @@ -6210,7 +6174,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fire_penetration" } }, - [329]={ + [321]={ [1]={ [1]={ limit={ @@ -6226,7 +6190,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fork" } }, - [330]={ + [322]={ [1]={ [1]={ limit={ @@ -6242,7 +6206,7 @@ return { [1]="local_display_supported_by_level_x_awakened_generosity" } }, - [331]={ + [323]={ [1]={ [1]={ limit={ @@ -6258,7 +6222,7 @@ return { [1]="local_display_supported_by_level_x_awakened_greater_multiple_projectiles" } }, - [332]={ + [324]={ [1]={ [1]={ limit={ @@ -6274,7 +6238,7 @@ return { [1]="local_display_supported_by_level_x_awakened_increased_area_of_effect" } }, - [333]={ + [325]={ [1]={ [1]={ limit={ @@ -6290,7 +6254,7 @@ return { [1]="local_display_supported_by_level_x_awakened_lightning_penetration" } }, - [334]={ + [326]={ [1]={ [1]={ limit={ @@ -6306,7 +6270,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_physical_damage" } }, - [335]={ + [327]={ [1]={ [1]={ limit={ @@ -6322,7 +6286,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_splash" } }, - [336]={ + [328]={ [1]={ [1]={ limit={ @@ -6338,7 +6302,7 @@ return { [1]="local_display_supported_by_level_x_awakened_minion_damage" } }, - [337]={ + [329]={ [1]={ [1]={ limit={ @@ -6354,7 +6318,7 @@ return { [1]="local_display_supported_by_level_x_awakened_multistrike" } }, - [338]={ + [330]={ [1]={ [1]={ limit={ @@ -6370,7 +6334,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_cascade" } }, - [339]={ + [331]={ [1]={ [1]={ limit={ @@ -6386,7 +6350,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_echo" } }, - [340]={ + [332]={ [1]={ [1]={ limit={ @@ -6402,7 +6366,7 @@ return { [1]="local_display_supported_by_level_x_awakened_swift_affliction" } }, - [341]={ + [333]={ [1]={ [1]={ limit={ @@ -6418,7 +6382,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unbound_ailments" } }, - [342]={ + [334]={ [1]={ [1]={ limit={ @@ -6434,7 +6398,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unleash" } }, - [343]={ + [335]={ [1]={ [1]={ limit={ @@ -6450,7 +6414,7 @@ return { [1]="local_display_supported_by_level_x_awakened_vicious_projectiles" } }, - [344]={ + [336]={ [1]={ [1]={ limit={ @@ -6466,7 +6430,7 @@ return { [1]="local_display_supported_by_level_x_awakened_void_manipulation" } }, - [345]={ + [337]={ [1]={ [1]={ limit={ @@ -6482,7 +6446,7 @@ return { [1]="local_display_supported_by_level_x_awakened_weapon_elemental_damage" } }, - [346]={ + [338]={ [1]={ [1]={ [1]={ @@ -6507,7 +6471,7 @@ return { [2]="local_random_support_gem_index" } }, - [347]={ + [339]={ [1]={ [1]={ [1]={ @@ -6532,7 +6496,7 @@ return { [2]="local_random_support_gem_index_1" } }, - [348]={ + [340]={ [1]={ [1]={ limit={ @@ -6548,7 +6512,7 @@ return { [1]="local_display_socketed_gems_get_concentrated_area_level" } }, - [349]={ + [341]={ [1]={ [1]={ limit={ @@ -6564,7 +6528,7 @@ return { [1]="local_display_socketed_gems_get_trap_level" } }, - [350]={ + [342]={ [1]={ [1]={ limit={ @@ -6580,7 +6544,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cluster_trap" } }, - [351]={ + [343]={ [1]={ [1]={ limit={ @@ -6596,7 +6560,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_trap" } }, - [352]={ + [344]={ [1]={ [1]={ limit={ @@ -6612,7 +6576,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage" } }, - [353]={ + [345]={ [1]={ [1]={ limit={ @@ -6628,7 +6592,7 @@ return { [1]="local_display_socketed_gems_get_added_chaos_damage_level" } }, - [354]={ + [346]={ [1]={ [1]={ limit={ @@ -6644,7 +6608,7 @@ return { [1]="local_display_socketed_gems_get_blood_magic_level" } }, - [355]={ + [347]={ [1]={ [1]={ limit={ @@ -6660,7 +6624,7 @@ return { [1]="local_display_socketed_gems_get_increased_duration_level" } }, - [356]={ + [348]={ [1]={ [1]={ limit={ @@ -6676,7 +6640,7 @@ return { [1]="local_display_socketed_gems_get_added_fire_damage_level" } }, - [357]={ + [349]={ [1]={ [1]={ limit={ @@ -6692,7 +6656,7 @@ return { [1]="local_display_socketed_gems_get_cold_to_fire_level" } }, - [358]={ + [350]={ [1]={ [1]={ limit={ @@ -6708,7 +6672,7 @@ return { [1]="local_display_socketed_gems_get_spell_totem_level" } }, - [359]={ + [351]={ [1]={ [1]={ limit={ @@ -6724,7 +6688,7 @@ return { [1]="local_display_socketed_gems_get_fire_penetration_level" } }, - [360]={ + [352]={ [1]={ [1]={ limit={ @@ -6740,7 +6704,7 @@ return { [1]="local_display_socketed_gems_get_elemental_proliferation_level" } }, - [361]={ + [353]={ [1]={ [1]={ limit={ @@ -6756,7 +6720,7 @@ return { [1]="local_display_socketed_gems_get_added_lightning_damage_level" } }, - [362]={ + [354]={ [1]={ [1]={ limit={ @@ -6772,7 +6736,7 @@ return { [1]="local_display_socketed_gems_get_melee_physical_damage_level" } }, - [363]={ + [355]={ [1]={ [1]={ limit={ @@ -6788,7 +6752,7 @@ return { [1]="local_display_socketed_gems_get_faster_attacks_level" } }, - [364]={ + [356]={ [1]={ [1]={ limit={ @@ -6804,7 +6768,7 @@ return { [1]="local_display_socketed_gems_get_blind_level" } }, - [365]={ + [357]={ [1]={ [1]={ limit={ @@ -6820,7 +6784,7 @@ return { [1]="local_display_socketed_gems_get_melee_splash_level" } }, - [366]={ + [358]={ [1]={ [1]={ limit={ @@ -6836,7 +6800,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_crit_level" } }, - [367]={ + [359]={ [1]={ [1]={ limit={ @@ -6852,7 +6816,7 @@ return { [1]="local_display_socketed_gems_get_cast_when_stunned_level" } }, - [368]={ + [360]={ [1]={ [1]={ limit={ @@ -6868,7 +6832,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_death_level" } }, - [369]={ + [361]={ [1]={ [1]={ limit={ @@ -6884,7 +6848,7 @@ return { [1]="local_display_socketed_gems_get_stun_level" } }, - [370]={ + [362]={ [1]={ [1]={ limit={ @@ -6900,7 +6864,7 @@ return { [1]="local_display_socketed_gems_get_additional_accuracy_level" } }, - [371]={ + [363]={ [1]={ [1]={ limit={ @@ -6916,7 +6880,7 @@ return { [1]="local_display_socketed_gems_get_multistrike_level" } }, - [372]={ + [364]={ [1]={ [1]={ limit={ @@ -6932,7 +6896,7 @@ return { [1]="local_display_socketed_gems_get_faster_projectiles_level" } }, - [373]={ + [365]={ [1]={ [1]={ limit={ @@ -6948,7 +6912,7 @@ return { [1]="local_display_socketed_gems_get_life_leech_level" } }, - [374]={ + [366]={ [1]={ [1]={ limit={ @@ -6964,7 +6928,7 @@ return { [1]="local_display_socketed_gems_get_chance_to_bleed_level" } }, - [375]={ + [367]={ [1]={ [1]={ limit={ @@ -6980,7 +6944,7 @@ return { [1]="local_display_socketed_gems_get_increased_critical_damage_level" } }, - [376]={ + [368]={ [1]={ [1]={ limit={ @@ -6996,7 +6960,7 @@ return { [1]="local_display_socketed_gems_get_fork_level" } }, - [377]={ + [369]={ [1]={ [1]={ limit={ @@ -7012,7 +6976,7 @@ return { [1]="local_display_socketed_gems_get_weapon_elemental_damage_level" } }, - [378]={ + [370]={ [1]={ [1]={ limit={ @@ -7028,7 +6992,7 @@ return { [1]="local_display_socketed_gems_get_echo_level" } }, - [379]={ + [371]={ [1]={ [1]={ limit={ @@ -7044,7 +7008,7 @@ return { [1]="local_display_socketed_gems_get_reduced_mana_cost_level" } }, - [380]={ + [372]={ [1]={ [1]={ limit={ @@ -7060,7 +7024,7 @@ return { [1]="local_display_socketed_gems_get_generosity_level" } }, - [381]={ + [373]={ [1]={ [1]={ limit={ @@ -7076,7 +7040,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fortify" } }, - [382]={ + [374]={ [1]={ [1]={ limit={ @@ -7092,7 +7056,7 @@ return { [1]="local_display_socketed_gems_get_remote_mine_level" } }, - [383]={ + [375]={ [1]={ [1]={ limit={ @@ -7108,7 +7072,7 @@ return { [1]="local_display_socketed_gems_get_flee_level" } }, - [384]={ + [376]={ [1]={ [1]={ limit={ @@ -7124,7 +7088,7 @@ return { [1]="local_display_socketed_gems_get_faster_cast_level" } }, - [385]={ + [377]={ [1]={ [1]={ limit={ @@ -7140,7 +7104,7 @@ return { [1]="local_display_socketed_gems_get_iron_will_level" } }, - [386]={ + [378]={ [1]={ [1]={ limit={ @@ -7156,7 +7120,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_knockback_level" } }, - [387]={ + [379]={ [1]={ [1]={ limit={ @@ -7172,7 +7136,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_life_level" } }, - [388]={ + [380]={ [1]={ [1]={ limit={ @@ -7188,7 +7152,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level" } }, - [389]={ + [381]={ [1]={ [1]={ limit={ @@ -7204,7 +7168,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_damage_level" } }, - [390]={ + [382]={ [1]={ [1]={ limit={ @@ -7220,7 +7184,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_critical_damage_level" } }, - [391]={ + [383]={ [1]={ [1]={ limit={ @@ -7236,7 +7200,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_speed_level" } }, - [392]={ + [384]={ [1]={ [1]={ limit={ @@ -7252,7 +7216,7 @@ return { [1]="local_display_socketed_gems_supported_by_pierce_level" } }, - [393]={ + [385]={ [1]={ [1]={ limit={ @@ -7268,7 +7232,7 @@ return { [1]="local_display_socketed_gems_get_pierce_level" } }, - [394]={ + [386]={ [1]={ [1]={ limit={ @@ -7284,7 +7248,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_hypothermia" } }, - [395]={ + [387]={ [1]={ [1]={ limit={ @@ -7300,7 +7264,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_ice_bite" } }, - [396]={ + [388]={ [1]={ [1]={ limit={ @@ -7316,7 +7280,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_cold_penetration" } }, - [397]={ + [389]={ [1]={ [1]={ limit={ @@ -7332,7 +7296,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_mana_leech" } }, - [398]={ + [390]={ [1]={ [1]={ limit={ @@ -7348,7 +7312,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_added_cold_damage" } }, - [399]={ + [391]={ [1]={ [1]={ limit={ @@ -7364,7 +7328,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_reduced_mana_cost" } }, - [400]={ + [392]={ [1]={ [1]={ limit={ @@ -7380,7 +7344,7 @@ return { [1]="local_display_socketed_curse_gems_supported_by_level_x_blasphemy" } }, - [401]={ + [393]={ [1]={ [1]={ limit={ @@ -7396,7 +7360,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_innervate_level" } }, - [402]={ + [394]={ [1]={ [1]={ limit={ @@ -7412,7 +7376,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_vile_toxins" } }, - [403]={ + [395]={ [1]={ [1]={ limit={ @@ -7428,7 +7392,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_lesser_poison" } }, - [404]={ + [396]={ [1]={ [1]={ limit={ @@ -7444,7 +7408,7 @@ return { [1]="display_socketed_minion_gems_supported_by_level_X_life_leech" } }, - [405]={ + [397]={ [1]={ [1]={ limit={ @@ -7460,7 +7424,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_controlled_destruction" } }, - [406]={ + [398]={ [1]={ [1]={ limit={ @@ -7476,7 +7440,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun" } }, - [407]={ + [399]={ [1]={ [1]={ limit={ @@ -7492,7 +7456,7 @@ return { [1]="local_display_socketed_gems_have_blood_magic" } }, - [408]={ + [400]={ [1]={ [1]={ [1]={ @@ -7521,7 +7485,7 @@ return { [1]="local_display_socketed_gems_have_mana_reservation_+%" } }, - [409]={ + [401]={ [1]={ [1]={ limit={ @@ -7537,7 +7501,7 @@ return { [1]="disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana" } }, - [410]={ + [402]={ [1]={ [1]={ limit={ @@ -7553,7 +7517,7 @@ return { [1]="local_display_socketed_gems_get_mana_multplier_%" } }, - [411]={ + [403]={ [1]={ [1]={ limit={ @@ -7582,7 +7546,7 @@ return { [1]="local_display_socketed_melee_gems_have_area_radius_+%" } }, - [412]={ + [404]={ [1]={ [1]={ limit={ @@ -7598,32 +7562,7 @@ return { [1]="local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation" } }, - [413]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Socketed Gems have {0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Socketed Gems always Ignite" - } - }, - stats={ - [1]="local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage" - } - }, - [414]={ + [405]={ [1]={ [1]={ limit={ @@ -7639,7 +7578,7 @@ return { [1]="local_display_socketed_gems_have_chance_to_flee_%" } }, - [415]={ + [406]={ [1]={ [1]={ limit={ @@ -7668,7 +7607,7 @@ return { [1]="local_display_socketed_gems_get_item_quantity_+%" } }, - [416]={ + [407]={ [1]={ [1]={ limit={ @@ -7684,7 +7623,7 @@ return { [1]="local_display_socketed_gems_get_curse_reflection" } }, - [417]={ + [408]={ [1]={ [1]={ limit={ @@ -7700,7 +7639,7 @@ return { [1]="local_display_socketed_gems_have_iron_will" } }, - [418]={ + [409]={ [1]={ [1]={ limit={ @@ -7716,7 +7655,7 @@ return { [1]="local_display_socketed_gems_chain_X_additional_times" } }, - [419]={ + [410]={ [1]={ [1]={ limit={ @@ -7749,7 +7688,7 @@ return { [1]="local_display_socketed_gems_additional_critical_strike_chance_%" } }, - [420]={ + [411]={ [1]={ [1]={ limit={ @@ -7774,7 +7713,7 @@ return { [1]="local_display_socketed_spells_repeat_count" } }, - [421]={ + [412]={ [1]={ [1]={ limit={ @@ -7799,7 +7738,7 @@ return { [1]="chance_to_trigger_socketed_spell_on_bow_attack_%" } }, - [422]={ + [413]={ [1]={ [1]={ limit={ @@ -7824,7 +7763,7 @@ return { [1]="local_display_avoid_interruption_%_while_using_socketed_attack_skills" } }, - [423]={ + [414]={ [1]={ [1]={ limit={ @@ -7853,7 +7792,7 @@ return { [1]="local_display_socketed_attack_damage_+%_final" } }, - [424]={ + [415]={ [1]={ [1]={ [1]={ @@ -7873,7 +7812,7 @@ return { [1]="local_display_socketed_attacks_additional_critical_strike_chance" } }, - [425]={ + [416]={ [1]={ [1]={ limit={ @@ -7889,7 +7828,7 @@ return { [1]="local_display_socketed_attacks_critical_strike_multiplier_+" } }, - [426]={ + [417]={ [1]={ [1]={ limit={ @@ -7905,7 +7844,7 @@ return { [1]="local_display_socketed_attacks_mana_cost_+" } }, - [427]={ + [418]={ [1]={ [1]={ limit={ @@ -7921,7 +7860,7 @@ return { [1]="local_display_socketed_gems_attack_and_cast_speed_+%_final" } }, - [428]={ + [419]={ [1]={ [1]={ limit={ @@ -7937,7 +7876,7 @@ return { [1]="local_display_socketed_gems_curse_auras_also_affect_you" } }, - [429]={ + [420]={ [1]={ [1]={ limit={ @@ -7953,7 +7892,7 @@ return { [1]="local_display_socketed_gems_damage_+%_final_while_on_low_life" } }, - [430]={ + [421]={ [1]={ [1]={ limit={ @@ -7969,7 +7908,7 @@ return { [1]="local_display_socketed_gems_elemental_damage_+%_final" } }, - [431]={ + [422]={ [1]={ [1]={ limit={ @@ -7985,7 +7924,7 @@ return { [1]="local_display_socketed_gems_exposure_on_hit" } }, - [432]={ + [423]={ [1]={ [1]={ limit={ @@ -8014,7 +7953,7 @@ return { [1]="local_display_socketed_gems_mana_cost_-%" } }, - [433]={ + [424]={ [1]={ [1]={ limit={ @@ -8035,7 +7974,7 @@ return { [2]="local_display_socketed_gems_maximum_added_fire_damage" } }, - [434]={ + [425]={ [1]={ [1]={ limit={ @@ -8060,7 +7999,7 @@ return { [1]="local_display_socketed_gems_projectile_damage_+%_final" } }, - [435]={ + [426]={ [1]={ [1]={ [1]={ @@ -8080,7 +8019,7 @@ return { [1]="local_display_socketed_gems_projectile_spells_cooldown_modifier_ms" } }, - [436]={ + [427]={ [1]={ [1]={ limit={ @@ -8096,7 +8035,7 @@ return { [1]="local_display_socketed_movement_skills_have_no_mana_cost" } }, - [437]={ + [428]={ [1]={ [1]={ limit={ @@ -8125,7 +8064,7 @@ return { [1]="local_display_socketed_skills_attack_speed_+%" } }, - [438]={ + [429]={ [1]={ [1]={ limit={ @@ -8154,7 +8093,7 @@ return { [1]="local_display_socketed_skills_cast_speed_+%" } }, - [439]={ + [430]={ [1]={ [1]={ limit={ @@ -8170,7 +8109,7 @@ return { [1]="local_display_socketed_skills_deal_double_damage" } }, - [440]={ + [431]={ [1]={ [1]={ limit={ @@ -8186,7 +8125,7 @@ return { [1]="local_display_socketed_skills_fork" } }, - [441]={ + [432]={ [1]={ [1]={ limit={ @@ -8215,7 +8154,7 @@ return { [1]="local_display_socketed_spell_damage_+%_final" } }, - [442]={ + [433]={ [1]={ [1]={ [1]={ @@ -8235,7 +8174,7 @@ return { [1]="local_display_socketed_spells_additional_critical_strike_chance" } }, - [443]={ + [434]={ [1]={ [1]={ limit={ @@ -8251,7 +8190,7 @@ return { [1]="local_display_socketed_spells_critical_strike_multiplier_+" } }, - [444]={ + [435]={ [1]={ [1]={ limit={ @@ -8284,7 +8223,7 @@ return { [1]="local_display_socketed_spells_mana_cost_+%" } }, - [445]={ + [436]={ [1]={ [1]={ limit={ @@ -8313,7 +8252,7 @@ return { [1]="local_display_socketed_travel_skills_damage_+%_final" } }, - [446]={ + [437]={ [1]={ [1]={ limit={ @@ -8342,7 +8281,7 @@ return { [1]="local_display_socketed_vaal_skills_area_of_effect_+%" } }, - [447]={ + [438]={ [1]={ [1]={ limit={ @@ -8371,7 +8310,7 @@ return { [1]="local_display_socketed_vaal_skills_aura_effect_+%" } }, - [448]={ + [439]={ [1]={ [1]={ limit={ @@ -8400,7 +8339,7 @@ return { [1]="local_display_socketed_vaal_skills_damage_+%_final" } }, - [449]={ + [440]={ [1]={ [1]={ limit={ @@ -8429,7 +8368,7 @@ return { [1]="local_display_socketed_vaal_skills_effect_duration_+%" } }, - [450]={ + [441]={ [1]={ [1]={ limit={ @@ -8445,7 +8384,7 @@ return { [1]="local_display_socketed_vaal_skills_elusive_on_use" } }, - [451]={ + [442]={ [1]={ [1]={ limit={ @@ -8470,7 +8409,7 @@ return { [1]="local_display_socketed_vaal_skills_extra_damage_rolls" } }, - [452]={ + [443]={ [1]={ [1]={ limit={ @@ -8486,7 +8425,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_phys_reduction" } }, - [453]={ + [444]={ [1]={ [1]={ limit={ @@ -8502,7 +8441,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_resistances" } }, - [454]={ + [445]={ [1]={ [1]={ limit={ @@ -8531,7 +8470,7 @@ return { [1]="local_display_socketed_vaal_skills_projectile_speed_+%" } }, - [455]={ + [446]={ [1]={ [1]={ limit={ @@ -8560,7 +8499,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%" } }, - [456]={ + [447]={ [1]={ [1]={ limit={ @@ -8589,7 +8528,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_requirement_+%_final" } }, - [457]={ + [448]={ [1]={ [1]={ limit={ @@ -8605,7 +8544,7 @@ return { [1]="local_display_socketed_vaal_skills_store_uses_+" } }, - [458]={ + [449]={ [1]={ [1]={ limit={ @@ -8630,7 +8569,7 @@ return { [1]="local_display_socketed_warcry_skills_cooldown_use_+" } }, - [459]={ + [450]={ [1]={ [1]={ limit={ @@ -8646,7 +8585,7 @@ return { [1]="local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills" } }, - [460]={ + [451]={ [1]={ [1]={ limit={ @@ -8662,7 +8601,7 @@ return { [1]="local_display_tailwind_if_socketed_vaal_skill_used_recently" } }, - [461]={ + [452]={ [1]={ [1]={ limit={ @@ -8691,7 +8630,7 @@ return { [1]="local_display_socketed_gems_damage_over_time_+%_final" } }, - [462]={ + [453]={ [1]={ [1]={ limit={ @@ -8707,7 +8646,7 @@ return { [1]="local_display_socketed_gems_have_elemental_equilibrium" } }, - [463]={ + [454]={ [1]={ [1]={ limit={ @@ -8736,7 +8675,7 @@ return { [1]="local_display_socketed_non_curse_aura_gems_effect_+%" } }, - [464]={ + [455]={ [1]={ [1]={ limit={ @@ -8752,7 +8691,7 @@ return { [1]="local_display_socketed_gems_have_secrets_of_suffering" } }, - [465]={ + [456]={ [1]={ [1]={ limit={ @@ -8777,7 +8716,7 @@ return { [1]="local_display_socketed_gems_have_number_of_additional_projectiles" } }, - [466]={ + [457]={ [1]={ [1]={ limit={ @@ -8802,7 +8741,7 @@ return { [1]="local_display_socketed_spells_additional_projectiles" } }, - [467]={ + [458]={ [1]={ [1]={ limit={ @@ -8818,7 +8757,7 @@ return { [1]="local_display_socketed_gems_projectiles_nova" } }, - [468]={ + [459]={ [1]={ [1]={ limit={ @@ -8834,7 +8773,7 @@ return { [1]="local_display_socketed_spells_projectiles_circle" } }, - [469]={ + [460]={ [1]={ [1]={ limit={ @@ -8863,7 +8802,7 @@ return { [1]="local_display_socketed_gems_skill_effect_duration_+%" } }, - [470]={ + [461]={ [1]={ [1]={ limit={ @@ -8892,7 +8831,7 @@ return { [1]="local_display_socketed_projectile_spells_duration_+%_final" } }, - [471]={ + [462]={ [1]={ [1]={ limit={ @@ -8908,7 +8847,7 @@ return { [1]="local_display_socketed_trap_skills_create_smoke_cloud" } }, - [472]={ + [463]={ [1]={ [1]={ [1]={ @@ -8937,7 +8876,7 @@ return { [1]="local_display_socketed_curse_gems_have_mana_reservation_+%" } }, - [473]={ + [464]={ [1]={ [1]={ limit={ @@ -8953,7 +8892,7 @@ return { [1]="hierophant_helmet_supported_by_elemental_penetration" } }, - [474]={ + [465]={ [1]={ [1]={ limit={ @@ -8969,7 +8908,7 @@ return { [1]="hierophant_gloves_supported_by_increased_area_of_effect" } }, - [475]={ + [466]={ [1]={ [1]={ limit={ @@ -8994,7 +8933,7 @@ return { [1]="scion_helmet_skill_maximum_totems_+" } }, - [476]={ + [467]={ [1]={ [1]={ limit={ @@ -9010,7 +8949,7 @@ return { [1]="local_display_grants_skill_frostblink_level" } }, - [477]={ + [468]={ [1]={ [1]={ limit={ @@ -9026,7 +8965,7 @@ return { [1]="local_display_grants_skill_purity_of_fire_level" } }, - [478]={ + [469]={ [1]={ [1]={ limit={ @@ -9042,7 +8981,7 @@ return { [1]="local_display_illusory_warp_level" } }, - [479]={ + [470]={ [1]={ [1]={ limit={ @@ -9058,7 +8997,7 @@ return { [1]="local_display_grants_skill_bear_trap_level" } }, - [480]={ + [471]={ [1]={ [1]={ limit={ @@ -9074,7 +9013,7 @@ return { [1]="local_display_grants_level_x_summon_stone_golem" } }, - [481]={ + [472]={ [1]={ [1]={ limit={ @@ -9090,7 +9029,7 @@ return { [1]="local_display_grants_level_X_vengeance" } }, - [482]={ + [473]={ [1]={ [1]={ limit={ @@ -9106,7 +9045,7 @@ return { [1]="local_display_grants_level_x_despair" } }, - [483]={ + [474]={ [1]={ [1]={ limit={ @@ -9122,7 +9061,7 @@ return { [1]="local_display_grants_skill_purity_of_cold_level" } }, - [484]={ + [475]={ [1]={ [1]={ limit={ @@ -9156,7 +9095,7 @@ return { [1]="local_display_grants_summon_beast_companion" } }, - [485]={ + [476]={ [1]={ [1]={ limit={ @@ -9172,7 +9111,7 @@ return { [1]="local_display_grants_skill_purity_of_lightning_level" } }, - [486]={ + [477]={ [1]={ [1]={ limit={ @@ -9188,7 +9127,7 @@ return { [1]="local_display_grants_skill_flammability_level" } }, - [487]={ + [478]={ [1]={ [1]={ limit={ @@ -9303,7 +9242,7 @@ return { [1]="local_display_summon_harbinger_x_on_equip" } }, - [488]={ + [479]={ [1]={ [1]={ limit={ @@ -9319,7 +9258,7 @@ return { [1]="local_display_grants_skill_conductivity_level" } }, - [489]={ + [480]={ [1]={ [1]={ limit={ @@ -9335,7 +9274,7 @@ return { [1]="local_display_grants_skill_frostbite_level" } }, - [490]={ + [481]={ [1]={ [1]={ limit={ @@ -9351,7 +9290,7 @@ return { [1]="local_display_grants_skill_temporal_chains_level" } }, - [491]={ + [482]={ [1]={ [1]={ limit={ @@ -9367,7 +9306,7 @@ return { [1]="local_display_grants_skill_haste_level" } }, - [492]={ + [483]={ [1]={ [1]={ limit={ @@ -9383,7 +9322,7 @@ return { [1]="local_display_has_additional_implicit_mod" } }, - [493]={ + [484]={ [1]={ [1]={ limit={ @@ -9399,7 +9338,7 @@ return { [1]="local_display_grants_skill_clarity_level" } }, - [494]={ + [485]={ [1]={ [1]={ limit={ @@ -9415,7 +9354,7 @@ return { [1]="local_display_grants_skill_blood_sacrament_level" } }, - [495]={ + [486]={ [1]={ [1]={ limit={ @@ -9431,7 +9370,7 @@ return { [1]="local_display_grants_skill_vitality_level" } }, - [496]={ + [487]={ [1]={ [1]={ limit={ @@ -9447,7 +9386,7 @@ return { [1]="local_display_grants_skill_purity_level" } }, - [497]={ + [488]={ [1]={ [1]={ limit={ @@ -9463,7 +9402,7 @@ return { [1]="local_display_grants_skill_gluttony_of_elements_level" } }, - [498]={ + [489]={ [1]={ [1]={ limit={ @@ -9479,7 +9418,7 @@ return { [1]="local_display_grants_skill_critical_weakness_level" } }, - [499]={ + [490]={ [1]={ [1]={ limit={ @@ -9495,7 +9434,7 @@ return { [1]="local_display_grants_skill_wrath_level" } }, - [500]={ + [491]={ [1]={ [1]={ limit={ @@ -9511,7 +9450,7 @@ return { [1]="local_display_grants_skill_hatred_level" } }, - [501]={ + [492]={ [1]={ [1]={ limit={ @@ -9527,7 +9466,7 @@ return { [1]="local_display_grants_skill_anger_level" } }, - [502]={ + [493]={ [1]={ [1]={ limit={ @@ -9543,7 +9482,7 @@ return { [1]="local_display_grants_skill_determination_level" } }, - [503]={ + [494]={ [1]={ [1]={ limit={ @@ -9559,7 +9498,7 @@ return { [1]="local_display_grants_skill_grace_level" } }, - [504]={ + [495]={ [1]={ [1]={ limit={ @@ -9575,7 +9514,7 @@ return { [1]="local_display_grants_skill_scorching_ray_level" } }, - [505]={ + [496]={ [1]={ [1]={ limit={ @@ -9591,7 +9530,7 @@ return { [1]="local_display_grants_skill_discipline_level" } }, - [506]={ + [497]={ [1]={ [1]={ limit={ @@ -9607,7 +9546,7 @@ return { [1]="local_display_grants_level_X_envy" } }, - [507]={ + [498]={ [1]={ [1]={ limit={ @@ -9623,7 +9562,7 @@ return { [1]="local_display_grants_level_X_reckoning" } }, - [508]={ + [499]={ [1]={ [1]={ limit={ @@ -9639,7 +9578,7 @@ return { [1]="local_display_grants_skill_blight_level" } }, - [509]={ + [500]={ [1]={ [1]={ limit={ @@ -9655,7 +9594,7 @@ return { [1]="local_display_grants_skill_projectile_weakness_level" } }, - [510]={ + [501]={ [1]={ [1]={ limit={ @@ -9671,7 +9610,7 @@ return { [1]="local_display_grants_skill_elemental_weakness_level" } }, - [511]={ + [502]={ [1]={ [1]={ limit={ @@ -9687,7 +9626,7 @@ return { [1]="local_display_grants_skill_doryanis_touch_level" } }, - [512]={ + [503]={ [1]={ [1]={ limit={ @@ -9703,7 +9642,7 @@ return { [1]="local_display_grants_skill_vulnerability_level" } }, - [513]={ + [504]={ [1]={ [1]={ limit={ @@ -9719,7 +9658,7 @@ return { [1]="local_display_grants_skill_death_aura_level" } }, - [514]={ + [505]={ [1]={ [1]={ limit={ @@ -9735,7 +9674,7 @@ return { [1]="local_display_grants_skill_icestorm_level" } }, - [515]={ + [506]={ [1]={ [1]={ limit={ @@ -9760,7 +9699,7 @@ return { [1]="local_display_cast_level_1_summon_lesser_shrine_on_kill_%" } }, - [516]={ + [507]={ [1]={ [1]={ limit={ @@ -9776,7 +9715,7 @@ return { [1]="local_display_cast_level_X_consecrate_on_crit" } }, - [517]={ + [508]={ [1]={ [1]={ limit={ @@ -9792,7 +9731,7 @@ return { [1]="local_display_cast_level_x_shock_ground_when_hit" } }, - [518]={ + [509]={ [1]={ [1]={ limit={ @@ -9808,7 +9747,7 @@ return { [1]="local_display_grant_level_x_petrification_statue" } }, - [519]={ + [510]={ [1]={ [1]={ limit={ @@ -9824,7 +9763,7 @@ return { [1]="local_display_trigger_level_X_blinding_aura_skill_on_equip" } }, - [520]={ + [511]={ [1]={ [1]={ limit={ @@ -9840,7 +9779,7 @@ return { [1]="local_display_grants_level_x_blood_offering_skill" } }, - [521]={ + [512]={ [1]={ [1]={ limit={ @@ -9856,7 +9795,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect" } }, - [522]={ + [513]={ [1]={ [1]={ limit={ @@ -9872,7 +9811,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skill" } }, - [523]={ + [514]={ [1]={ [1]={ limit={ @@ -9888,7 +9827,7 @@ return { [1]="local_display_grants_level_x_wintertide_brand" } }, - [524]={ + [515]={ [1]={ [1]={ limit={ @@ -9904,7 +9843,7 @@ return { [1]="local_display_grants_skill_abyssal_cry_level" } }, - [525]={ + [516]={ [1]={ [1]={ limit={ @@ -9920,7 +9859,7 @@ return { [1]="local_display_grants_skill_accuracy_crits_aura_level" } }, - [526]={ + [517]={ [1]={ [1]={ limit={ @@ -9936,7 +9875,7 @@ return { [1]="local_display_grants_skill_bird_aspect_level" } }, - [527]={ + [518]={ [1]={ [1]={ limit={ @@ -9952,7 +9891,7 @@ return { [1]="local_display_grants_skill_bone_armour" } }, - [528]={ + [519]={ [1]={ [1]={ limit={ @@ -9968,7 +9907,7 @@ return { [1]="local_display_grants_skill_brand_detonate_level" } }, - [529]={ + [520]={ [1]={ [1]={ limit={ @@ -9984,7 +9923,7 @@ return { [1]="local_display_grants_skill_call_of_steel" } }, - [530]={ + [521]={ [1]={ [1]={ limit={ @@ -10000,7 +9939,7 @@ return { [1]="local_display_grants_skill_cat_aspect_level" } }, - [531]={ + [522]={ [1]={ [1]={ limit={ @@ -10016,7 +9955,7 @@ return { [1]="local_display_grants_skill_crab_aspect_level" } }, - [532]={ + [523]={ [1]={ [1]={ limit={ @@ -10032,7 +9971,7 @@ return { [1]="local_display_grants_skill_dash_level" } }, - [533]={ + [524]={ [1]={ [1]={ limit={ @@ -10048,7 +9987,7 @@ return { [1]="local_display_grants_skill_death_wish_level" } }, - [534]={ + [525]={ [1]={ [1]={ limit={ @@ -10064,7 +10003,7 @@ return { [1]="local_display_grants_skill_decoy_totem_level" } }, - [535]={ + [526]={ [1]={ [1]={ limit={ @@ -10080,7 +10019,7 @@ return { [1]="local_display_grants_skill_embrace_madness_level" } }, - [536]={ + [527]={ [1]={ [1]={ limit={ @@ -10096,7 +10035,7 @@ return { [1]="local_display_grants_skill_enduring_cry_level" } }, - [537]={ + [528]={ [1]={ [1]={ limit={ @@ -10112,7 +10051,7 @@ return { [1]="local_display_grants_skill_herald_of_agony_level" } }, - [538]={ + [529]={ [1]={ [1]={ limit={ @@ -10128,7 +10067,7 @@ return { [1]="local_display_grants_skill_herald_of_ash_level" } }, - [539]={ + [530]={ [1]={ [1]={ limit={ @@ -10144,7 +10083,7 @@ return { [1]="local_display_grants_skill_herald_of_ice_level" } }, - [540]={ + [531]={ [1]={ [1]={ limit={ @@ -10160,7 +10099,7 @@ return { [1]="local_display_grants_skill_herald_of_purity_level" } }, - [541]={ + [532]={ [1]={ [1]={ limit={ @@ -10176,7 +10115,7 @@ return { [1]="local_display_grants_skill_herald_of_thunder_level" } }, - [542]={ + [533]={ [1]={ [1]={ limit={ @@ -10192,7 +10131,7 @@ return { [1]="local_display_grants_skill_intimidating_cry_level" } }, - [543]={ + [534]={ [1]={ [1]={ limit={ @@ -10208,7 +10147,7 @@ return { [1]="local_display_grants_skill_lightning_warp_level" } }, - [544]={ + [535]={ [1]={ [1]={ limit={ @@ -10224,7 +10163,7 @@ return { [1]="local_display_grants_skill_malevolence_level" } }, - [545]={ + [536]={ [1]={ [1]={ limit={ @@ -10240,7 +10179,7 @@ return { [1]="local_display_grants_skill_mirage_chieftain" } }, - [546]={ + [537]={ [1]={ [1]={ limit={ @@ -10256,7 +10195,7 @@ return { [1]="local_display_grants_skill_pride_level" } }, - [547]={ + [538]={ [1]={ [1]={ limit={ @@ -10272,7 +10211,7 @@ return { [1]="local_display_grants_skill_rallying_cry_level" } }, - [548]={ + [539]={ [1]={ [1]={ limit={ @@ -10288,7 +10227,7 @@ return { [1]="local_display_grants_skill_smite_level" } }, - [549]={ + [540]={ [1]={ [1]={ limit={ @@ -10304,7 +10243,7 @@ return { [1]="local_display_grants_skill_spider_aspect_level" } }, - [550]={ + [541]={ [1]={ [1]={ limit={ @@ -10320,7 +10259,7 @@ return { [1]="local_display_grants_skill_touch_of_fire_level" } }, - [551]={ + [542]={ [1]={ [1]={ limit={ @@ -10336,7 +10275,7 @@ return { [1]="local_display_grants_skill_unhinge_level" } }, - [552]={ + [543]={ [1]={ [1]={ limit={ @@ -10352,7 +10291,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_fire_level" } }, - [553]={ + [544]={ [1]={ [1]={ limit={ @@ -10368,7 +10307,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_ice_level" } }, - [554]={ + [545]={ [1]={ [1]={ limit={ @@ -10384,7 +10323,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_lightning_level" } }, - [555]={ + [546]={ [1]={ [1]={ limit={ @@ -10400,7 +10339,7 @@ return { [1]="local_display_grants_skill_vampiric_icon_level" } }, - [556]={ + [547]={ [1]={ [1]={ limit={ @@ -10416,7 +10355,7 @@ return { [1]="local_display_grants_skill_zealotry_level" } }, - [557]={ + [548]={ [1]={ [1]={ limit={ @@ -10441,7 +10380,7 @@ return { [1]="local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance" } }, - [558]={ + [549]={ [1]={ [1]={ limit={ @@ -10457,7 +10396,7 @@ return { [1]="local_display_trigger_level_X_darktongue_kiss_on_curse" } }, - [559]={ + [550]={ [1]={ [1]={ limit={ @@ -10473,7 +10412,7 @@ return { [1]="local_display_trigger_level_X_void_gaze_on_skill_use" } }, - [560]={ + [551]={ [1]={ [1]={ limit={ @@ -10489,7 +10428,7 @@ return { [1]="local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon" } }, - [561]={ + [552]={ [1]={ [1]={ limit={ @@ -10505,7 +10444,7 @@ return { [1]="local_display_trigger_level_x_storm_cascade_on_attack" } }, - [562]={ + [553]={ [1]={ [1]={ limit={ @@ -10521,7 +10460,7 @@ return { [1]="local_display_grants_level_X_queens_demand_skill" } }, - [563]={ + [554]={ [1]={ [1]={ limit={ @@ -10537,7 +10476,7 @@ return { [1]="base_number_of_essence_spirits_allowed" } }, - [564]={ + [555]={ [1]={ [1]={ limit={ @@ -10553,7 +10492,7 @@ return { [1]="cast_linked_spells_on_shocked_enemy_kill_%" } }, - [565]={ + [556]={ [1]={ [1]={ limit={ @@ -10578,7 +10517,7 @@ return { [1]="cast_socketed_minion_skills_on_bow_kill_%" } }, - [566]={ + [557]={ [1]={ [1]={ limit={ @@ -10620,7 +10559,7 @@ return { [2]="cast_socketed_spells_on_mana_spent_%_chance" } }, - [567]={ + [558]={ [1]={ [1]={ limit={ @@ -10645,7 +10584,7 @@ return { [1]="chance_to_trigger_socketed_bow_skill_on_bow_attack_%" } }, - [568]={ + [559]={ [1]={ [1]={ limit={ @@ -10661,7 +10600,7 @@ return { [1]="curse_on_hit_level_assassins_mark" } }, - [569]={ + [560]={ [1]={ [1]={ limit={ @@ -10677,7 +10616,7 @@ return { [1]="curse_on_hit_level_poachers_mark" } }, - [570]={ + [561]={ [1]={ [1]={ limit={ @@ -10693,7 +10632,7 @@ return { [1]="curse_on_hit_level_poachers_mark_bypass_hexproof" } }, - [571]={ + [562]={ [1]={ [1]={ limit={ @@ -10709,7 +10648,7 @@ return { [1]="curse_on_hit_level_warlords_mark" } }, - [572]={ + [563]={ [1]={ [1]={ limit={ @@ -10725,7 +10664,7 @@ return { [1]="display_abberaths_hooves_skill_level" } }, - [573]={ + [564]={ [1]={ [1]={ limit={ @@ -10741,7 +10680,7 @@ return { [1]="display_cast_fire_burst_on_kill" } }, - [574]={ + [565]={ [1]={ [1]={ limit={ @@ -10766,7 +10705,7 @@ return { [1]="display_trigger_arcane_wake_after_spending_200_mana_%_chance" } }, - [575]={ + [566]={ [1]={ [1]={ limit={ @@ -10782,7 +10721,7 @@ return { [1]="local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill" } }, - [576]={ + [567]={ [1]={ [1]={ limit={ @@ -10798,7 +10737,7 @@ return { [1]="local_display_cast_animate_weapon_on_kill_%_chance" } }, - [577]={ + [568]={ [1]={ [1]={ limit={ @@ -10814,7 +10753,7 @@ return { [1]="local_display_cast_cold_aegis_on_gain_skill" } }, - [578]={ + [569]={ [1]={ [1]={ limit={ @@ -10830,7 +10769,7 @@ return { [1]="local_display_cast_elemental_aegis_on_gain_skill" } }, - [579]={ + [570]={ [1]={ [1]={ limit={ @@ -10846,7 +10785,7 @@ return { [1]="local_display_cast_fire_aegis_on_gain_skill" } }, - [580]={ + [571]={ [1]={ [1]={ limit={ @@ -10862,7 +10801,7 @@ return { [1]="local_display_cast_lightning_aegis_on_gain_skill" } }, - [581]={ + [572]={ [1]={ [1]={ limit={ @@ -10878,7 +10817,7 @@ return { [1]="local_display_cast_lightning_on_critical_strike" } }, - [582]={ + [573]={ [1]={ [1]={ limit={ @@ -10894,7 +10833,7 @@ return { [1]="local_display_cast_physical_aegis_on_gain_skill" } }, - [583]={ + [574]={ [1]={ [1]={ limit={ @@ -10910,7 +10849,7 @@ return { [1]="local_display_cast_primal_aegis_on_gain_skill" } }, - [584]={ + [575]={ [1]={ [1]={ limit={ @@ -10926,7 +10865,7 @@ return { [1]="local_display_cast_summon_arbalists_on_gain_skill" } }, - [585]={ + [576]={ [1]={ [1]={ limit={ @@ -10942,7 +10881,7 @@ return { [1]="local_display_cast_triggerbots_on_gain_skill" } }, - [586]={ + [577]={ [1]={ [1]={ limit={ @@ -10958,7 +10897,7 @@ return { [1]="local_display_fire_burst_on_hit_%" } }, - [587]={ + [578]={ [1]={ [1]={ limit={ @@ -10974,7 +10913,7 @@ return { [1]="local_display_grants_level_x_hidden_blade" } }, - [588]={ + [579]={ [1]={ [1]={ limit={ @@ -10990,7 +10929,7 @@ return { [1]="local_display_molten_burst_on_melee_hit_%" } }, - [589]={ + [580]={ [1]={ [1]={ limit={ @@ -11006,7 +10945,7 @@ return { [1]="local_display_raise_spider_on_kill_%_chance" } }, - [590]={ + [581]={ [1]={ [1]={ limit={ @@ -11031,7 +10970,7 @@ return { [1]="local_display_summon_raging_spirit_on_kill_%" } }, - [591]={ + [582]={ [1]={ [1]={ limit={ @@ -11056,7 +10995,7 @@ return { [1]="local_display_summon_wolf_on_kill_%" } }, - [592]={ + [583]={ [1]={ [1]={ limit={ @@ -11081,7 +11020,7 @@ return { [1]="local_display_trigger_commandment_of_inferno_on_crit_%" } }, - [593]={ + [584]={ [1]={ [1]={ limit={ @@ -11097,7 +11036,7 @@ return { [1]="local_display_trigger_corpse_walk_on_equip_level" } }, - [594]={ + [585]={ [1]={ [1]={ limit={ @@ -11113,7 +11052,7 @@ return { [1]="local_display_trigger_level_x_create_fungal_ground_on_kill" } }, - [595]={ + [586]={ [1]={ [1]={ limit={ @@ -11129,7 +11068,7 @@ return { [1]="local_display_trigger_death_walk_on_equip_level" } }, - [596]={ + [587]={ [1]={ [1]={ limit={ @@ -11145,7 +11084,7 @@ return { [1]="local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance" } }, - [597]={ + [588]={ [1]={ [1]={ limit={ @@ -11170,7 +11109,7 @@ return { [1]="local_display_trigger_level_1_blood_rage_on_kill_chance_%" } }, - [598]={ + [589]={ [1]={ [1]={ limit={ @@ -11195,7 +11134,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance" } }, - [599]={ + [590]={ [1]={ [1]={ limit={ @@ -11220,7 +11159,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance" } }, - [600]={ + [591]={ [1]={ [1]={ limit={ @@ -11236,7 +11175,7 @@ return { [1]="local_display_trigger_level_20_shade_form_on_skill_use_%" } }, - [601]={ + [592]={ [1]={ [1]={ limit={ @@ -11261,7 +11200,7 @@ return { [1]="local_display_trigger_level_20_shade_form_when_hit_%" } }, - [602]={ + [593]={ [1]={ [1]={ limit={ @@ -11277,7 +11216,7 @@ return { [1]="local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%" } }, - [603]={ + [594]={ [1]={ [1]={ limit={ @@ -11293,7 +11232,7 @@ return { [1]="local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy" } }, - [604]={ + [595]={ [1]={ [1]={ limit={ @@ -11309,7 +11248,7 @@ return { [1]="local_display_trigger_level_X_atziri_flameblast" } }, - [605]={ + [596]={ [1]={ [1]={ limit={ @@ -11325,7 +11264,7 @@ return { [1]="local_display_trigger_level_X_atziri_storm_call" } }, - [606]={ + [597]={ [1]={ [1]={ limit={ @@ -11341,7 +11280,7 @@ return { [1]="local_display_trigger_level_X_feast_of_flesh_every_5_seconds" } }, - [607]={ + [598]={ [1]={ [1]={ limit={ @@ -11357,7 +11296,7 @@ return { [1]="local_display_trigger_level_X_offering_every_5_seconds" } }, - [608]={ + [599]={ [1]={ [1]={ limit={ @@ -11373,7 +11312,7 @@ return { [1]="local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy" } }, - [609]={ + [600]={ [1]={ [1]={ limit={ @@ -11389,7 +11328,7 @@ return { [1]="local_display_trigger_level_X_shield_shatter_on_block" } }, - [610]={ + [601]={ [1]={ [1]={ limit={ @@ -11405,7 +11344,7 @@ return { [1]="local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy" } }, - [611]={ + [602]={ [1]={ [1]={ limit={ @@ -11421,7 +11360,7 @@ return { [1]="local_display_trigger_level_x_curse_nova_on_hit_while_cursed" } }, - [612]={ + [603]={ [1]={ [1]={ limit={ @@ -11437,7 +11376,7 @@ return { [1]="local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon" } }, - [613]={ + [604]={ [1]={ [1]={ limit={ @@ -11453,7 +11392,7 @@ return { [1]="local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill" } }, - [614]={ + [605]={ [1]={ [1]={ limit={ @@ -11469,7 +11408,7 @@ return { [1]="local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength" } }, - [615]={ + [606]={ [1]={ [1]={ limit={ @@ -11485,7 +11424,7 @@ return { [1]="local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy" } }, - [616]={ + [607]={ [1]={ [1]={ limit={ @@ -11501,7 +11440,7 @@ return { [1]="local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth" } }, - [617]={ + [608]={ [1]={ [1]={ limit={ @@ -11517,7 +11456,7 @@ return { [1]="local_display_trigger_level_x_rain_of_arrows_on_bow_attack" } }, - [618]={ + [609]={ [1]={ [1]={ limit={ @@ -11533,7 +11472,7 @@ return { [1]="local_display_trigger_level_x_reflection_skill_on_equip" } }, - [619]={ + [610]={ [1]={ [1]={ limit={ @@ -11549,7 +11488,7 @@ return { [1]="local_display_trigger_level_x_smoke_cloud_on_trap_triggered" } }, - [620]={ + [611]={ [1]={ [1]={ limit={ @@ -11565,7 +11504,7 @@ return { [1]="local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge" } }, - [621]={ + [612]={ [1]={ [1]={ limit={ @@ -11581,7 +11520,7 @@ return { [1]="local_display_trigger_level_x_stalking_pustule_on_kill" } }, - [622]={ + [613]={ [1]={ [1]={ limit={ @@ -11597,7 +11536,7 @@ return { [1]="local_display_trigger_level_x_summon_phantasm_on_corpse_consume" } }, - [623]={ + [614]={ [1]={ [1]={ limit={ @@ -11613,7 +11552,7 @@ return { [1]="local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow" } }, - [624]={ + [615]={ [1]={ [1]={ limit={ @@ -11629,7 +11568,7 @@ return { [1]="local_display_trigger_summon_taunting_contraption_on_flask_use" } }, - [625]={ + [616]={ [1]={ [1]={ limit={ @@ -11654,7 +11593,7 @@ return { [1]="local_display_trigger_socketed_curses_on_casting_curse_%_chance" } }, - [626]={ + [617]={ [1]={ [1]={ limit={ @@ -11679,7 +11618,7 @@ return { [1]="local_display_trigger_temporal_anomaly_when_hit_%_chance" } }, - [627]={ + [618]={ [1]={ [1]={ limit={ @@ -11695,7 +11634,7 @@ return { [1]="local_display_trigger_tentacle_smash_on_kill_%_chance" } }, - [628]={ + [619]={ [1]={ [1]={ limit={ @@ -11711,7 +11650,7 @@ return { [1]="local_display_trigger_void_sphere_on_kill_%_chance" } }, - [629]={ + [620]={ [1]={ [1]={ limit={ @@ -11727,7 +11666,7 @@ return { [1]="local_display_use_level_X_abyssal_cry_on_hit" } }, - [630]={ + [621]={ [1]={ [1]={ limit={ @@ -11752,7 +11691,7 @@ return { [1]="local_unique_attacks_cast_socketed_lightning_spells_%" } }, - [631]={ + [622]={ [1]={ [1]={ limit={ @@ -11768,7 +11707,7 @@ return { [1]="local_unique_cast_socketed_cold_skills_on_melee_critical_strike" } }, - [632]={ + [623]={ [1]={ [1]={ limit={ @@ -11793,7 +11732,7 @@ return { [1]="trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%" } }, - [633]={ + [624]={ [1]={ [1]={ limit={ @@ -11818,7 +11757,7 @@ return { [1]="trigger_socketed_spell_on_attack_%" } }, - [634]={ + [625]={ [1]={ [1]={ [1]={ @@ -11838,7 +11777,7 @@ return { [1]="local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms" } }, - [635]={ + [626]={ [1]={ [1]={ limit={ @@ -11863,7 +11802,7 @@ return { [1]="trigger_socketed_spell_on_skill_use_%" } }, - [636]={ + [627]={ [1]={ [1]={ limit={ @@ -11888,7 +11827,7 @@ return { [1]="trigger_socketed_spells_when_you_focus_%" } }, - [637]={ + [628]={ [1]={ [1]={ limit={ @@ -11904,7 +11843,7 @@ return { [1]="local_display_trigger_level_x_toxic_rain_on_bow_attack" } }, - [638]={ + [629]={ [1]={ [1]={ limit={ @@ -11920,7 +11859,43 @@ return { [1]="your_aegis_skills_except_primal_are_disabled" } }, - [639]={ + [630]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Flask cannot be Used but applies its Effect constantly" + } + }, + stats={ + [1]="local_flask_always_drinking" + } + }, + [631]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains {0} Charges per Second" + } + }, + stats={ + [1]="local_flask_gain_X_charges_every_minute" + } + }, + [632]={ [1]={ [1]={ limit={ @@ -11945,7 +11920,7 @@ return { [1]="local_flask_gain_X_charges_on_consuming_ignited_corpse" } }, - [640]={ + [633]={ [1]={ [1]={ limit={ @@ -11970,7 +11945,7 @@ return { [1]="local_flask_gain_X_charges_when_hit" } }, - [641]={ + [634]={ [1]={ [1]={ limit={ @@ -11995,7 +11970,7 @@ return { [1]="local_recharge_on_crit" } }, - [642]={ + [635]={ [1]={ [1]={ limit={ @@ -12020,7 +11995,7 @@ return { [1]="local_recharge_on_crit_%" } }, - [643]={ + [636]={ [1]={ [1]={ limit={ @@ -12045,7 +12020,7 @@ return { [1]="local_recharge_on_demon_killed" } }, - [644]={ + [637]={ [1]={ [1]={ limit={ @@ -12070,7 +12045,7 @@ return { [1]="local_recharge_on_take_crit" } }, - [645]={ + [638]={ [1]={ [1]={ limit={ @@ -12086,7 +12061,7 @@ return { [1]="local_flask_lose_all_charges_on_entering_new_area" } }, - [646]={ + [639]={ [1]={ [1]={ limit={ @@ -12102,7 +12077,36 @@ return { [1]="local_flask_life_to_recover" } }, - [647]={ + [640]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Life Recovered" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Life Recovered" + } + }, + stats={ + [1]="local_flask_life_to_recover_+%_final" + } + }, + [641]={ [1]={ [1]={ limit={ @@ -12118,7 +12122,7 @@ return { [1]="local_flask_life_recovery_from_flasks_also_recovers_energy_shield" } }, - [648]={ + [642]={ [1]={ [1]={ limit={ @@ -12134,7 +12138,7 @@ return { [1]="local_flask_mana_to_recover" } }, - [649]={ + [643]={ [1]={ [1]={ [1]={ @@ -12154,7 +12158,7 @@ return { [1]="local_flask_deciseconds_to_recover" } }, - [650]={ + [644]={ [1]={ [1]={ limit={ @@ -12183,7 +12187,7 @@ return { [1]="local_flask_duration_+%_final" } }, - [651]={ + [645]={ [1]={ [1]={ limit={ @@ -12199,7 +12203,23 @@ return { [1]="local_flask_recover_instantly_when_on_low_life" } }, - [652]={ + [646]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Instant recovery when on Low Mana" + } + }, + stats={ + [1]="local_flask_recover_instantly_when_on_low_mana" + } + }, + [647]={ [1]={ [1]={ limit={ @@ -12215,7 +12235,7 @@ return { [1]="local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends" } }, - [653]={ + [648]={ [1]={ [1]={ limit={ @@ -12231,7 +12251,7 @@ return { [1]="local_flask_effect_ends_when_hit_by_player" } }, - [654]={ + [649]={ [1]={ [1]={ limit={ @@ -12240,14 +12260,14 @@ return { [2]="#" } }, - text="Effect is not removed when Unreserved Mana is Filled" + text="Effect is not removed when Unreserved Life is Filled" } }, stats={ - [1]="local_flask_effect_not_removed_at_full_mana" + [1]="local_flask_effect_not_removed_at_full_life" } }, - [655]={ + [650]={ [1]={ [1]={ limit={ @@ -12256,14 +12276,14 @@ return { [2]="#" } }, - text="Recovery occurs instantly at the end of Effect" + text="Effect is not removed when Unreserved Mana is Filled" } }, stats={ - [1]="local_flask_recovery_occurs_instantly_at_end_of_flask_effect" + [1]="local_flask_effect_not_removed_at_full_mana" } }, - [656]={ + [651]={ [1]={ [1]={ limit={ @@ -12272,39 +12292,30 @@ return { [2]="#" } }, - text="Effect is removed when Ward Breaks" + text="Recovery occurs instantly at the end of Effect" } }, stats={ - [1]="local_flask_remove_effect_when_ward_breaks" + [1]="local_flask_recovery_occurs_instantly_at_end_of_flask_effect" } }, - [657]={ + [652]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=99 - } - }, - text="Recover {0}% of maximum Life at the end of the Effect" - }, - [2]={ - limit={ - [1]={ - [1]=100, + [1]="#", [2]="#" } }, - text="Recover Full Life at the end of the Effect" + text="Effect is removed when Ward Breaks" } }, stats={ - [1]="local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration" + [1]="local_flask_remove_effect_when_ward_breaks" } }, - [658]={ + [653]={ [1]={ [1]={ limit={ @@ -12320,7 +12331,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_life_on_use" } }, - [659]={ + [654]={ [1]={ [1]={ limit={ @@ -12336,7 +12347,7 @@ return { [1]="local_flask_removes_%_maximum_energy_shield_on_use" } }, - [660]={ + [655]={ [1]={ [1]={ limit={ @@ -12352,7 +12363,7 @@ return { [1]="local_flask_deals_%_maximum_life_as_chaos_damage_on_use" } }, - [661]={ + [656]={ [1]={ [1]={ limit={ @@ -12377,7 +12388,7 @@ return { [1]="local_unique_flask_instantly_recovers_%_maximum_life" } }, - [662]={ + [657]={ [1]={ [1]={ [1]={ @@ -12397,7 +12408,7 @@ return { [1]="local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing" } }, - [663]={ + [658]={ [1]={ [1]={ limit={ @@ -12413,7 +12424,7 @@ return { [1]="local_consecrate_ground_on_flask_use_radius" } }, - [664]={ + [659]={ [1]={ [1]={ limit={ @@ -12429,7 +12440,7 @@ return { [1]="local_flask_chilled_ground_on_flask_use_radius" } }, - [665]={ + [660]={ [1]={ [1]={ limit={ @@ -12463,7 +12474,7 @@ return { [1]="local_flask_area_of_consecrated_ground_+%" } }, - [666]={ + [661]={ [1]={ [1]={ limit={ @@ -12479,7 +12490,7 @@ return { [1]="local_flask_consumes_max_charges_on_use" } }, - [667]={ + [662]={ [1]={ [1]={ limit={ @@ -12513,7 +12524,7 @@ return { [1]="local_flask_consumes_x_endurance_charges_on_use" } }, - [668]={ + [663]={ [1]={ [1]={ limit={ @@ -12547,7 +12558,7 @@ return { [1]="local_flask_consumes_x_frenzy_charges_on_use" } }, - [669]={ + [664]={ [1]={ [1]={ limit={ @@ -12581,7 +12592,7 @@ return { [1]="local_flask_consumes_x_power_charges_on_use" } }, - [670]={ + [665]={ [1]={ [1]={ limit={ @@ -12597,7 +12608,7 @@ return { [1]="local_flask_gain_charges_consumed_as_vaal_souls_on_use" } }, - [671]={ + [666]={ [1]={ [1]={ limit={ @@ -12622,7 +12633,7 @@ return { [1]="local_flask_gain_endurance_charges_on_use" } }, - [672]={ + [667]={ [1]={ [1]={ limit={ @@ -12647,7 +12658,7 @@ return { [1]="local_flask_gain_frenzy_charges_on_use" } }, - [673]={ + [668]={ [1]={ [1]={ limit={ @@ -12672,7 +12683,7 @@ return { [1]="local_flask_gain_power_charges_on_use" } }, - [674]={ + [669]={ [1]={ [1]={ limit={ @@ -12697,7 +12708,7 @@ return { [1]="local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge" } }, - [675]={ + [670]={ [1]={ [1]={ limit={ @@ -12713,7 +12724,7 @@ return { [1]="local_flask_gain_x_vaal_souls_on_use" } }, - [676]={ + [671]={ [1]={ [1]={ limit={ @@ -12729,7 +12740,7 @@ return { [1]="local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use" } }, - [677]={ + [672]={ [1]={ [1]={ limit={ @@ -12745,7 +12756,7 @@ return { [1]="local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use" } }, - [678]={ + [673]={ [1]={ [1]={ limit={ @@ -12761,7 +12772,7 @@ return { [1]="local_flask_taunt_enemies_on_use_radius" } }, - [679]={ + [674]={ [1]={ [1]={ limit={ @@ -12777,7 +12788,7 @@ return { [1]="local_flask_use_causes_area_knockback" } }, - [680]={ + [675]={ [1]={ [1]={ limit={ @@ -12793,7 +12804,7 @@ return { [1]="local_flask_use_causes_monster_flee_chance_%" } }, - [681]={ + [676]={ [1]={ [1]={ limit={ @@ -12809,7 +12820,7 @@ return { [1]="local_smoke_ground_on_flask_use_radius" } }, - [682]={ + [677]={ [1]={ [1]={ limit={ @@ -12825,7 +12836,7 @@ return { [1]="local_flask_remove_curses_on_use" } }, - [683]={ + [678]={ [1]={ [1]={ limit={ @@ -12841,7 +12852,7 @@ return { [1]="local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life" } }, - [684]={ + [679]={ [1]={ [1]={ limit={ @@ -12857,7 +12868,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood" } }, - [685]={ + [680]={ [1]={ [1]={ limit={ @@ -12873,7 +12884,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s" } }, - [686]={ + [681]={ [1]={ [1]={ limit={ @@ -12889,7 +12900,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen" } }, - [687]={ + [682]={ [1]={ [1]={ limit={ @@ -12905,7 +12916,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s" } }, - [688]={ + [683]={ [1]={ [1]={ limit={ @@ -12921,7 +12932,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning" } }, - [689]={ + [684]={ [1]={ [1]={ limit={ @@ -12937,7 +12948,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning_s" } }, - [690]={ + [685]={ [1]={ [1]={ limit={ @@ -12953,7 +12964,7 @@ return { [1]="local_flask_immune_to_hinder_for_x_seconds_if_hindered" } }, - [691]={ + [686]={ [1]={ [1]={ limit={ @@ -12969,7 +12980,7 @@ return { [1]="local_flask_immune_to_maim_for_x_seconds_if_maimed" } }, - [692]={ + [687]={ [1]={ [1]={ limit={ @@ -12985,7 +12996,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned" } }, - [693]={ + [688]={ [1]={ [1]={ limit={ @@ -13001,7 +13012,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned_s" } }, - [694]={ + [689]={ [1]={ [1]={ limit={ @@ -13017,7 +13028,7 @@ return { [1]="local_flask_shock_immunity_if_shocked" } }, - [695]={ + [690]={ [1]={ [1]={ limit={ @@ -13033,7 +13044,7 @@ return { [1]="local_flask_shock_immunity_if_shocked_s" } }, - [696]={ + [691]={ [1]={ [1]={ limit={ @@ -13049,7 +13060,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life" } }, - [697]={ + [692]={ [1]={ [1]={ limit={ @@ -13065,7 +13076,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana" } }, - [698]={ + [693]={ [1]={ [1]={ limit={ @@ -13081,7 +13092,7 @@ return { [1]="local_flask_dispels_freeze_and_chill" } }, - [699]={ + [694]={ [1]={ [1]={ limit={ @@ -13097,7 +13108,7 @@ return { [1]="local_flask_adapt_each_element" } }, - [700]={ + [695]={ [1]={ [1]={ limit={ @@ -13113,7 +13124,7 @@ return { [1]="local_flask_dispels_burning_and_ignite_immunity_during_effect" } }, - [701]={ + [696]={ [1]={ [1]={ limit={ @@ -13129,7 +13140,7 @@ return { [1]="local_flask_restore_ward" } }, - [702]={ + [697]={ [1]={ [1]={ limit={ @@ -13154,7 +13165,23 @@ return { [1]="local_number_of_bloodworms_to_spawn_on_flask_use" } }, - [703]={ + [698]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Used when you become Cursed" + } + }, + stats={ + [1]="local_charm_trigger_when_cursed" + } + }, + [699]={ [1]={ [1]={ limit={ @@ -13170,7 +13197,7 @@ return { [1]="local_flask_use_on_adjacent_flask_use" } }, - [704]={ + [700]={ [1]={ [1]={ limit={ @@ -13186,7 +13213,7 @@ return { [1]="local_flask_use_on_affected_by_bleed" } }, - [705]={ + [701]={ [1]={ [1]={ limit={ @@ -13202,7 +13229,7 @@ return { [1]="local_flask_use_on_affected_by_chill" } }, - [706]={ + [702]={ [1]={ [1]={ limit={ @@ -13218,7 +13245,7 @@ return { [1]="local_flask_use_on_affected_by_freeze" } }, - [707]={ + [703]={ [1]={ [1]={ limit={ @@ -13234,7 +13261,7 @@ return { [1]="local_flask_use_on_affected_by_ignite" } }, - [708]={ + [704]={ [1]={ [1]={ limit={ @@ -13250,7 +13277,7 @@ return { [1]="local_flask_use_on_affected_by_poison" } }, - [709]={ + [705]={ [1]={ [1]={ limit={ @@ -13266,7 +13293,7 @@ return { [1]="local_flask_use_on_affected_by_shock" } }, - [710]={ + [706]={ [1]={ [1]={ limit={ @@ -13282,7 +13309,7 @@ return { [1]="local_flask_use_on_affected_by_slow" } }, - [711]={ + [707]={ [1]={ [1]={ limit={ @@ -13298,7 +13325,7 @@ return { [1]="local_flask_use_on_chaos_damage_taken" } }, - [712]={ + [708]={ [1]={ [1]={ limit={ @@ -13314,7 +13341,7 @@ return { [1]="local_flask_use_on_cold_damage_taken" } }, - [713]={ + [709]={ [1]={ [1]={ limit={ @@ -13330,7 +13357,7 @@ return { [1]="local_flask_use_on_damage_blocked" } }, - [714]={ + [710]={ [1]={ [1]={ limit={ @@ -13346,7 +13373,7 @@ return { [1]="local_flask_use_on_fire_damage_taken" } }, - [715]={ + [711]={ [1]={ [1]={ limit={ @@ -13362,7 +13389,7 @@ return { [1]="local_flask_use_on_flask_effect_ended" } }, - [716]={ + [712]={ [1]={ [1]={ limit={ @@ -13378,7 +13405,7 @@ return { [1]="local_flask_use_on_full_charges" } }, - [717]={ + [713]={ [1]={ [1]={ limit={ @@ -13394,7 +13421,7 @@ return { [1]="local_flask_use_on_guard_skill_expired" } }, - [718]={ + [714]={ [1]={ [1]={ limit={ @@ -13410,7 +13437,7 @@ return { [1]="local_flask_use_on_guard_skill_used" } }, - [719]={ + [715]={ [1]={ [1]={ limit={ @@ -13426,7 +13453,7 @@ return { [1]="local_flask_use_on_hitting_rare_unique_enemy_while_inactive" } }, - [720]={ + [716]={ [1]={ [1]={ limit={ @@ -13442,7 +13469,7 @@ return { [1]="local_flask_use_on_killing_rare_or_unique_enemy" } }, - [721]={ + [717]={ [1]={ [1]={ limit={ @@ -13458,7 +13485,7 @@ return { [1]="local_flask_use_on_lightning_damage_taken" } }, - [722]={ + [718]={ [1]={ [1]={ limit={ @@ -13474,7 +13501,7 @@ return { [1]="local_flask_use_on_stunned" } }, - [723]={ + [719]={ [1]={ [1]={ limit={ @@ -13490,7 +13517,7 @@ return { [1]="local_flask_use_on_taking_savage_hit" } }, - [724]={ + [720]={ [1]={ [1]={ limit={ @@ -13506,7 +13533,7 @@ return { [1]="local_flask_use_on_travel_skill_used" } }, - [725]={ + [721]={ [1]={ [1]={ limit={ @@ -13522,7 +13549,7 @@ return { [1]="local_flask_use_on_using_a_life_flask" } }, - [726]={ + [722]={ [1]={ [1]={ limit={ @@ -13590,7 +13617,7 @@ return { [2]="local_flask_consume_flask_effect_+%_when_used" } }, - [727]={ + [723]={ [1]={ [1]={ limit={ @@ -13606,7 +13633,7 @@ return { [1]="local_flask_armour_+%_while_healing" } }, - [728]={ + [724]={ [1]={ [1]={ limit={ @@ -13622,7 +13649,7 @@ return { [1]="local_flask_evasion_+%_while_healing" } }, - [729]={ + [725]={ [1]={ [1]={ limit={ @@ -13638,7 +13665,7 @@ return { [1]="local_flask_energy_shield_+%_while_healing" } }, - [730]={ + [726]={ [1]={ [1]={ limit={ @@ -13667,7 +13694,7 @@ return { [1]="local_flask_ward_+%_during_effect" } }, - [731]={ + [727]={ [1]={ [1]={ limit={ @@ -13683,36 +13710,7 @@ return { [1]="local_flask_ward_does_not_break_during_effect" } }, - [732]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Adaptation Rating during Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Adaptation Rating during Effect" - } - }, - stats={ - [1]="local_flask_adaptation_rating_+%_during_effect" - } - }, - [733]={ + [728]={ [1]={ [1]={ limit={ @@ -13728,7 +13726,7 @@ return { [1]="local_flask_adaptations_apply_to_all_elements_during_effect" } }, - [734]={ + [729]={ [1]={ [1]={ limit={ @@ -13744,7 +13742,7 @@ return { [1]="local_flask_accuracy_rating_+%_during_effect" } }, - [735]={ + [730]={ [1]={ [1]={ limit={ @@ -13773,7 +13771,7 @@ return { [1]="local_flask_attack_speed_+%_while_healing" } }, - [736]={ + [731]={ [1]={ [1]={ limit={ @@ -13802,7 +13800,7 @@ return { [1]="local_flask_cast_speed_+%_while_healing" } }, - [737]={ + [732]={ [1]={ [1]={ limit={ @@ -13818,7 +13816,7 @@ return { [1]="local_flask_movement_speed_+%_while_healing" } }, - [738]={ + [733]={ [1]={ [1]={ limit={ @@ -13834,7 +13832,7 @@ return { [1]="local_flask_stun_recovery_+%_while_healing" } }, - [739]={ + [734]={ [1]={ [1]={ limit={ @@ -13850,7 +13848,7 @@ return { [1]="local_flask_resistances_+%_while_healing" } }, - [740]={ + [735]={ [1]={ [1]={ [1]={ @@ -13870,7 +13868,7 @@ return { [1]="local_flask_life_leech_from_physical_attack_damage_permyriad_while_healing" } }, - [741]={ + [736]={ [1]={ [1]={ limit={ @@ -13886,7 +13884,7 @@ return { [1]="lightning_penetration_%_while_on_low_mana" } }, - [742]={ + [737]={ [1]={ [1]={ [1]={ @@ -13906,7 +13904,7 @@ return { [1]="local_flask_mana_leech_from_physical_attack_damage_permyriad_while_healing" } }, - [743]={ + [738]={ [1]={ [1]={ limit={ @@ -13922,7 +13920,7 @@ return { [1]="local_flask_adds_knockback_while_healing" } }, - [744]={ + [739]={ [1]={ [1]={ limit={ @@ -13938,7 +13936,7 @@ return { [1]="local_unique_flask_physical_damage_taken_%_as_cold_while_healing" } }, - [745]={ + [740]={ [1]={ [1]={ limit={ @@ -13954,7 +13952,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing" } }, - [746]={ + [741]={ [1]={ [1]={ limit={ @@ -13970,7 +13968,7 @@ return { [1]="local_unique_flask_avoid_chill_%_while_healing" } }, - [747]={ + [742]={ [1]={ [1]={ limit={ @@ -13986,7 +13984,7 @@ return { [1]="local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect" } }, - [748]={ + [743]={ [1]={ [1]={ limit={ @@ -14002,7 +14000,7 @@ return { [1]="local_unique_flask_avoid_freeze_%_while_healing" } }, - [749]={ + [744]={ [1]={ [1]={ limit={ @@ -14018,7 +14016,7 @@ return { [1]="local_flask_life_gain_on_skill_use_%_mana_cost" } }, - [750]={ + [745]={ [1]={ [1]={ limit={ @@ -14034,7 +14032,7 @@ return { [1]="local_avoid_chill_%_during_flask_effect" } }, - [751]={ + [746]={ [1]={ [1]={ limit={ @@ -14050,7 +14048,7 @@ return { [1]="local_avoid_freeze_%_during_flask_effect" } }, - [752]={ + [747]={ [1]={ [1]={ limit={ @@ -14066,7 +14064,7 @@ return { [1]="local_avoid_ignite_%_during_flask_effect" } }, - [753]={ + [748]={ [1]={ [1]={ limit={ @@ -14082,7 +14080,7 @@ return { [1]="local_avoid_shock_%_during_flask_effect" } }, - [754]={ + [749]={ [1]={ [1]={ limit={ @@ -14098,7 +14096,7 @@ return { [1]="local_chance_to_poison_on_hit_%_during_flask_effect" } }, - [755]={ + [750]={ [1]={ [1]={ limit={ @@ -14114,7 +14112,7 @@ return { [1]="local_flask_additional_physical_damage_reduction_%" } }, - [756]={ + [751]={ [1]={ [1]={ limit={ @@ -14130,7 +14128,7 @@ return { [1]="local_flask_adds_knockback_during_flask_effect" } }, - [757]={ + [752]={ [1]={ [1]={ limit={ @@ -14146,7 +14144,7 @@ return { [1]="local_flask_area_of_effect_+%_during_flask_effect" } }, - [758]={ + [753]={ [1]={ [1]={ limit={ @@ -14162,7 +14160,7 @@ return { [1]="local_flask_avoid_stun_chance_%_during_flask_effect" } }, - [759]={ + [754]={ [1]={ [1]={ limit={ @@ -14178,23 +14176,7 @@ return { [1]="local_flask_cannot_be_stunned_during_flask_effect" } }, - [760]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance to Freeze, Shock and Ignite during Effect" - } - }, - stats={ - [1]="local_flask_chance_to_freeze_shock_ignite_%_while_healing" - } - }, - [761]={ + [755]={ [1]={ [1]={ [1]={ @@ -14214,7 +14196,7 @@ return { [1]="local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect" } }, - [762]={ + [756]={ [1]={ [1]={ limit={ @@ -14243,7 +14225,7 @@ return { [1]="local_flask_critical_strike_chance_+%_during_flask_effect" } }, - [763]={ + [757]={ [1]={ [1]={ limit={ @@ -14259,7 +14241,32 @@ return { [1]="local_flask_culling_strike_during_flask_effect" } }, - [764]={ + [758]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Damage taken during effect Recouped as Life" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% of Damage taken during effect Recouped as Life" + } + }, + stats={ + [1]="local_flask_damage_taken_goes_to_life_over_4_seconds_%_during_effect" + } + }, + [759]={ [1]={ [1]={ limit={ @@ -14275,7 +14282,7 @@ return { [1]="local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground" } }, - [765]={ + [760]={ [1]={ [1]={ limit={ @@ -14291,7 +14298,23 @@ return { [1]="local_flask_gain_endurance_charge_per_second_during_flask_effect" } }, - [766]={ + [761]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Rage when Hit by an Enemy during effect" + } + }, + stats={ + [1]="local_flask_gain_x_rage_when_hit_during_effect" + } + }, + [762]={ [1]={ [1]={ limit={ @@ -14307,7 +14330,7 @@ return { [1]="local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect" } }, - [767]={ + [763]={ [1]={ [1]={ limit={ @@ -14323,7 +14346,7 @@ return { [1]="local_flask_immune_to_damage" } }, - [768]={ + [764]={ [1]={ [1]={ limit={ @@ -14339,7 +14362,7 @@ return { [1]="local_flask_immune_to_freeze_and_chill_during_flask_effect" } }, - [769]={ + [765]={ [1]={ [1]={ limit={ @@ -14355,7 +14378,7 @@ return { [1]="local_flask_immune_to_poison_during_flask_effect" } }, - [770]={ + [766]={ [1]={ [1]={ limit={ @@ -14371,7 +14394,7 @@ return { [1]="local_flask_immune_to_shock_during_flask_effect" } }, - [771]={ + [767]={ [1]={ [1]={ limit={ @@ -14387,7 +14410,7 @@ return { [1]="local_flask_is_petrified" } }, - [772]={ + [768]={ [1]={ [1]={ limit={ @@ -14416,7 +14439,7 @@ return { [1]="local_flask_item_found_rarity_+%_during_flask_effect" } }, - [773]={ + [769]={ [1]={ [1]={ limit={ @@ -14432,7 +14455,7 @@ return { [1]="local_flask_life_leech_is_instant_during_flask_effect" } }, - [774]={ + [770]={ [1]={ [1]={ [1]={ @@ -14452,7 +14475,23 @@ return { [1]="local_flask_life_regeneration_per_minute_%_during_flask_effect" } }, - [775]={ + [771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="No Inherent loss of Rage during effect" + } + }, + stats={ + [1]="local_flask_no_inherent_rage_loss_during_effect" + } + }, + [772]={ [1]={ [1]={ limit={ @@ -14468,7 +14507,7 @@ return { [1]="local_flask_no_mana_recovery_during_effect" } }, - [776]={ + [773]={ [1]={ [1]={ limit={ @@ -14493,7 +14532,7 @@ return { [1]="local_flask_non_damaging_ailment_effect_+%_during_flask_effect" } }, - [777]={ + [774]={ [1]={ [1]={ limit={ @@ -14518,7 +14557,7 @@ return { [1]="local_flask_number_of_additional_projectiles_during_flask_effect" } }, - [778]={ + [775]={ [1]={ [1]={ limit={ @@ -14551,7 +14590,7 @@ return { [1]="local_flask_reflect_damage_taken_+%_during_flask_effect" } }, - [779]={ + [776]={ [1]={ [1]={ limit={ @@ -14580,7 +14619,7 @@ return { [1]="local_flask_skill_mana_cost_+%_during_flask_effect" } }, - [780]={ + [777]={ [1]={ [1]={ [1]={ @@ -14613,7 +14652,7 @@ return { [1]="local_flask_vaal_souls_gained_per_minute_during_effect" } }, - [781]={ + [778]={ [1]={ [1]={ limit={ @@ -14629,7 +14668,7 @@ return { [1]="local_no_critical_strike_multiplier_during_flask_effect" } }, - [782]={ + [779]={ [1]={ [1]={ limit={ @@ -14658,7 +14697,7 @@ return { [1]="local_poison_duration_+%_during_flask_effect" } }, - [783]={ + [780]={ [1]={ [1]={ limit={ @@ -14687,7 +14726,7 @@ return { [1]="local_self_bleed_duration_+%_during_flask_effect" } }, - [784]={ + [781]={ [1]={ [1]={ limit={ @@ -14720,7 +14759,7 @@ return { [1]="local_self_chill_effect_+%_during_flask_effect" } }, - [785]={ + [782]={ [1]={ [1]={ limit={ @@ -14753,7 +14792,7 @@ return { [1]="local_self_curse_effect_+%_during_flask_effect" } }, - [786]={ + [783]={ [1]={ [1]={ limit={ @@ -14782,7 +14821,7 @@ return { [1]="local_self_freeze_duration_+%_during_flask_effect" } }, - [787]={ + [784]={ [1]={ [1]={ limit={ @@ -14811,7 +14850,7 @@ return { [1]="local_self_ignite_duration_+%_during_flask_effect" } }, - [788]={ + [785]={ [1]={ [1]={ limit={ @@ -14840,7 +14879,7 @@ return { [1]="local_self_poison_duration_+%_during_flask_effect" } }, - [789]={ + [786]={ [1]={ [1]={ limit={ @@ -14869,7 +14908,7 @@ return { [1]="local_self_shock_effect_+%_during_flask_effect" } }, - [790]={ + [787]={ [1]={ [1]={ limit={ @@ -14898,7 +14937,7 @@ return { [1]="local_unique_expedition_flask_ward_+%_final_during_flask_effect" } }, - [791]={ + [788]={ [1]={ [1]={ limit={ @@ -14914,7 +14953,7 @@ return { [1]="local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing" } }, - [792]={ + [789]={ [1]={ [1]={ limit={ @@ -14930,7 +14969,7 @@ return { [1]="local_unique_flask_block_%_while_healing" } }, - [793]={ + [790]={ [1]={ [1]={ limit={ @@ -14946,7 +14985,7 @@ return { [1]="local_unique_flask_cannot_recover_life_while_healing" } }, - [794]={ + [791]={ [1]={ [1]={ limit={ @@ -14962,7 +15001,7 @@ return { [1]="local_unique_flask_charges_gained_+%_during_flask_effect" } }, - [795]={ + [792]={ [1]={ [1]={ limit={ @@ -14991,7 +15030,7 @@ return { [1]="local_unique_flask_critical_hit_poison_effect_+%_during_flask_effect" } }, - [796]={ + [793]={ [1]={ [1]={ limit={ @@ -15020,7 +15059,7 @@ return { [1]="local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect" } }, - [797]={ + [794]={ [1]={ [1]={ limit={ @@ -15049,7 +15088,7 @@ return { [1]="local_unique_flask_damage_over_time_+%_during_flask_effect" } }, - [798]={ + [795]={ [1]={ [1]={ limit={ @@ -15078,7 +15117,7 @@ return { [1]="local_unique_flask_damage_+%_vs_demons_while_healing" } }, - [799]={ + [796]={ [1]={ [1]={ limit={ @@ -15107,7 +15146,7 @@ return { [1]="local_unique_flask_damage_taken_+%_vs_demons_while_healing" } }, - [800]={ + [797]={ [1]={ [1]={ limit={ @@ -15123,7 +15162,7 @@ return { [1]="local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing" } }, - [801]={ + [798]={ [1]={ [1]={ limit={ @@ -15139,7 +15178,7 @@ return { [1]="local_unique_flask_item_quantity_+%_while_healing" } }, - [802]={ + [799]={ [1]={ [1]={ limit={ @@ -15155,7 +15194,7 @@ return { [1]="local_unique_flask_item_rarity_+%_while_healing" } }, - [803]={ + [800]={ [1]={ [1]={ limit={ @@ -15171,7 +15210,7 @@ return { [1]="local_unique_flask_kiaras_determination" } }, - [804]={ + [801]={ [1]={ [1]={ limit={ @@ -15187,7 +15226,7 @@ return { [1]="local_unique_flask_light_radius_+%_while_healing" } }, - [805]={ + [802]={ [1]={ [1]={ limit={ @@ -15203,7 +15242,7 @@ return { [1]="local_unique_flask_no_mana_cost_while_healing" } }, - [806]={ + [803]={ [1]={ [1]={ limit={ @@ -15219,7 +15258,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing" } }, - [807]={ + [804]={ [1]={ [1]={ limit={ @@ -15235,23 +15274,7 @@ return { [1]="local_unique_flask_resist_all_elements_%_during_flask_effect" } }, - [808]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage during Effect" - } - }, - stats={ - [1]="local_unique_flask_spell_block_%_while_healing" - } - }, - [809]={ + [805]={ [1]={ [1]={ limit={ @@ -15280,7 +15303,7 @@ return { [1]="local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect" } }, - [810]={ + [806]={ [1]={ [1]={ limit={ @@ -15309,7 +15332,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_during_flask_effect" } }, - [811]={ + [807]={ [1]={ [1]={ limit={ @@ -15338,7 +15361,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect" } }, - [812]={ + [808]={ [1]={ [1]={ limit={ @@ -15354,7 +15377,7 @@ return { [1]="local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect" } }, - [813]={ + [809]={ [1]={ [1]={ limit={ @@ -15387,7 +15410,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect" } }, - [814]={ + [810]={ [1]={ [1]={ limit={ @@ -15420,7 +15443,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect" } }, - [815]={ + [811]={ [1]={ [1]={ limit={ @@ -15436,7 +15459,7 @@ return { [1]="local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect" } }, - [816]={ + [812]={ [1]={ [1]={ [1]={ @@ -15456,7 +15479,7 @@ return { [1]="local_chaos_damage_taken_per_minute_during_flask_effect" } }, - [817]={ + [813]={ [1]={ [1]={ limit={ @@ -15485,7 +15508,7 @@ return { [1]="local_flask_enemies_ignited_during_flask_effect_damage_taken_+%" } }, - [818]={ + [814]={ [1]={ [1]={ limit={ @@ -15501,7 +15524,7 @@ return { [1]="local_flask_recover_%_maximum_life_on_kill_during_flask_effect" } }, - [819]={ + [815]={ [1]={ [1]={ limit={ @@ -15517,7 +15540,7 @@ return { [1]="local_flask_recover_%_maximum_mana_on_kill_during_flask_effect" } }, - [820]={ + [816]={ [1]={ [1]={ limit={ @@ -15533,7 +15556,7 @@ return { [1]="local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect" } }, - [821]={ + [817]={ [1]={ [1]={ limit={ @@ -15562,7 +15585,7 @@ return { [1]="local_attack_cast_movement_speed_+%_during_flask_effect" } }, - [822]={ + [818]={ [1]={ [1]={ limit={ @@ -15591,7 +15614,7 @@ return { [1]="local_attack_cast_movement_speed_+%_per_second_during_flask_effect" } }, - [823]={ + [819]={ [1]={ [1]={ limit={ @@ -15607,7 +15630,7 @@ return { [1]="local_flask_prevents_death_while_healing" } }, - [824]={ + [820]={ [1]={ [1]={ limit={ @@ -15640,7 +15663,7 @@ return { [1]="local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type" } }, - [825]={ + [821]={ [1]={ [1]={ limit={ @@ -15656,7 +15679,7 @@ return { [1]="local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type" } }, - [826]={ + [822]={ [1]={ [1]={ limit={ @@ -15672,7 +15695,7 @@ return { [1]="local_flask_cannot_gain_charges_during_flask_effect" } }, - [827]={ + [823]={ [1]={ [1]={ limit={ @@ -15688,7 +15711,7 @@ return { [1]="local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [828]={ + [824]={ [1]={ [1]={ limit={ @@ -15704,7 +15727,7 @@ return { [1]="local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [829]={ + [825]={ [1]={ [1]={ limit={ @@ -15720,7 +15743,7 @@ return { [1]="local_flask_zealots_oath" } }, - [830]={ + [826]={ [1]={ [1]={ limit={ @@ -15736,7 +15759,7 @@ return { [1]="local_grant_eldritch_battery_during_flask_effect" } }, - [831]={ + [827]={ [1]={ [1]={ limit={ @@ -15752,7 +15775,7 @@ return { [1]="map_item_level_override" } }, - [832]={ + [828]={ [1]={ [1]={ limit={ @@ -15768,7 +15791,7 @@ return { [1]="local_unique_jewel_nearby_disconnected_passives_can_be_allocated" } }, - [833]={ + [829]={ [1]={ [1]={ limit={ @@ -15784,7 +15807,7 @@ return { [1]="local_weapon_uses_both_hands" } }, - [834]={ + [830]={ [1]={ [1]={ limit={ @@ -15813,7 +15836,7 @@ return { [1]="local_bleeding_effect_+%" } }, - [835]={ + [831]={ [1]={ [1]={ limit={ @@ -15829,7 +15852,7 @@ return { [1]="local_cannot_be_used_with_chaos_innoculation" } }, - [836]={ + [832]={ [1]={ [1]={ limit={ @@ -15845,7 +15868,7 @@ return { [1]="local_dexterity_requirement_+" } }, - [837]={ + [833]={ [1]={ [1]={ limit={ @@ -15883,7 +15906,7 @@ return { [1]="local_dexterity_requirement_+%" } }, - [838]={ + [834]={ [1]={ [1]={ limit={ @@ -15899,7 +15922,7 @@ return { [1]="local_intelligence_requirement_+" } }, - [839]={ + [835]={ [1]={ [1]={ limit={ @@ -15937,7 +15960,7 @@ return { [1]="local_intelligence_requirement_+%" } }, - [840]={ + [836]={ [1]={ [1]={ limit={ @@ -15953,7 +15976,7 @@ return { [1]="local_level_requirement_-" } }, - [841]={ + [837]={ [1]={ [1]={ limit={ @@ -15969,7 +15992,7 @@ return { [1]="local_no_attribute_requirements" } }, - [842]={ + [838]={ [1]={ [1]={ limit={ @@ -15985,7 +16008,7 @@ return { [1]="local_no_energy_shield" } }, - [843]={ + [839]={ [1]={ [1]={ limit={ @@ -16014,7 +16037,7 @@ return { [1]="local_poison_effect_+%" } }, - [844]={ + [840]={ [1]={ [1]={ limit={ @@ -16030,7 +16053,7 @@ return { [1]="local_strength_and_intelligence_requirement_+" } }, - [845]={ + [841]={ [1]={ [1]={ limit={ @@ -16046,7 +16069,7 @@ return { [1]="local_strength_requirement_+" } }, - [846]={ + [842]={ [1]={ [1]={ limit={ @@ -16084,7 +16107,7 @@ return { [1]="local_strength_requirement_+%" } }, - [847]={ + [843]={ [1]={ [1]={ limit={ @@ -16165,7 +16188,7 @@ return { [2]="local_weapon_no_physical_damage" } }, - [848]={ + [844]={ [1]={ [1]={ limit={ @@ -16186,7 +16209,7 @@ return { [2]="local_maximum_added_physical_damage" } }, - [849]={ + [845]={ [1]={ [1]={ limit={ @@ -16207,7 +16230,7 @@ return { [2]="local_maximum_added_fire_damage" } }, - [850]={ + [846]={ [1]={ [1]={ limit={ @@ -16228,7 +16251,7 @@ return { [2]="local_maximum_added_cold_damage" } }, - [851]={ + [847]={ [1]={ [1]={ limit={ @@ -16249,7 +16272,7 @@ return { [2]="local_maximum_added_lightning_damage" } }, - [852]={ + [848]={ [1]={ [1]={ limit={ @@ -16265,7 +16288,7 @@ return { [1]="local_accuracy_rating" } }, - [853]={ + [849]={ [1]={ [1]={ limit={ @@ -16294,7 +16317,7 @@ return { [1]="base_movement_velocity_+%" } }, - [854]={ + [850]={ [1]={ [1]={ limit={ @@ -16323,7 +16346,7 @@ return { [1]="skill_speed_+%" } }, - [855]={ + [851]={ [1]={ [1]={ limit={ @@ -16339,7 +16362,7 @@ return { [1]="local_additional_block_chance_%" } }, - [856]={ + [852]={ [1]={ [1]={ limit={ @@ -16368,23 +16391,7 @@ return { [1]="local_block_chance_+%" } }, - [857]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Deflect" - } - }, - stats={ - [1]="local_additional_deflect_chance_%" - } - }, - [858]={ + [853]={ [1]={ [1]={ limit={ @@ -16400,7 +16407,7 @@ return { [1]="local_base_physical_damage_reduction_rating" } }, - [859]={ + [854]={ [1]={ [1]={ limit={ @@ -16416,7 +16423,7 @@ return { [1]="local_base_evasion_rating" } }, - [860]={ + [855]={ [1]={ [1]={ limit={ @@ -16432,7 +16439,7 @@ return { [1]="local_energy_shield" } }, - [861]={ + [856]={ [1]={ [1]={ limit={ @@ -16461,7 +16468,7 @@ return { [1]="local_physical_damage_reduction_rating_+%" } }, - [862]={ + [857]={ [1]={ [1]={ limit={ @@ -16490,7 +16497,7 @@ return { [1]="local_evasion_rating_+%" } }, - [863]={ + [858]={ [1]={ [1]={ limit={ @@ -16519,7 +16526,7 @@ return { [1]="local_energy_shield_+%" } }, - [864]={ + [859]={ [1]={ [1]={ limit={ @@ -16548,7 +16555,7 @@ return { [1]="local_armour_and_evasion_+%" } }, - [865]={ + [860]={ [1]={ [1]={ limit={ @@ -16577,7 +16584,7 @@ return { [1]="local_armour_and_energy_shield_+%" } }, - [866]={ + [861]={ [1]={ [1]={ limit={ @@ -16606,7 +16613,7 @@ return { [1]="local_evasion_and_energy_shield_+%" } }, - [867]={ + [862]={ [1]={ [1]={ limit={ @@ -16622,7 +16629,7 @@ return { [1]="local_spirit" } }, - [868]={ + [863]={ [1]={ [1]={ limit={ @@ -16651,7 +16658,7 @@ return { [1]="local_spirit_+%" } }, - [869]={ + [864]={ [1]={ [1]={ limit={ @@ -16672,7 +16679,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [870]={ + [865]={ [1]={ [1]={ limit={ @@ -16693,7 +16700,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [871]={ + [866]={ [1]={ [1]={ limit={ @@ -16714,7 +16721,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [872]={ + [867]={ [1]={ [1]={ limit={ @@ -16735,7 +16742,7 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [873]={ + [868]={ [1]={ [1]={ limit={ @@ -16751,7 +16758,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire" } }, - [874]={ + [869]={ [1]={ [1]={ limit={ @@ -16767,7 +16774,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_spells" } }, - [875]={ + [870]={ [1]={ [1]={ limit={ @@ -16783,7 +16790,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold" } }, - [876]={ + [871]={ [1]={ [1]={ limit={ @@ -16799,7 +16806,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_spells" } }, - [877]={ + [872]={ [1]={ [1]={ limit={ @@ -16815,7 +16822,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning" } }, - [878]={ + [873]={ [1]={ [1]={ limit={ @@ -16831,7 +16838,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_spells" } }, - [879]={ + [874]={ [1]={ [1]={ limit={ @@ -16860,7 +16867,7 @@ return { [1]="spell_damage_+%" } }, - [880]={ + [875]={ [1]={ [1]={ limit={ @@ -16889,7 +16896,7 @@ return { [1]="trap_damage_+%" } }, - [881]={ + [876]={ [1]={ [1]={ limit={ @@ -16918,7 +16925,7 @@ return { [1]="fire_damage_+%" } }, - [882]={ + [877]={ [1]={ [1]={ limit={ @@ -16947,7 +16954,7 @@ return { [1]="cold_damage_+%" } }, - [883]={ + [878]={ [1]={ [1]={ limit={ @@ -16976,7 +16983,7 @@ return { [1]="lightning_damage_+%" } }, - [884]={ + [879]={ [1]={ [1]={ limit={ @@ -17005,7 +17012,7 @@ return { [1]="chaos_damage_+%" } }, - [885]={ + [880]={ [1]={ [1]={ limit={ @@ -17034,7 +17041,7 @@ return { [1]="elemental_damage_with_attack_skills_+%" } }, - [886]={ + [881]={ [1]={ [1]={ limit={ @@ -17063,7 +17070,7 @@ return { [1]="spell_physical_damage_+%" } }, - [887]={ + [882]={ [1]={ [1]={ limit={ @@ -17092,7 +17099,7 @@ return { [1]="damage_+%_with_bow_skills" } }, - [888]={ + [883]={ [1]={ [1]={ limit={ @@ -17108,23 +17115,7 @@ return { [1]="accuracy_rating" } }, - [889]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% Chance to Block Spell Damage" - } - }, - stats={ - [1]="base_spell_block_%" - } - }, - [890]={ + [884]={ [1]={ [1]={ limit={ @@ -17140,7 +17131,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [891]={ + [885]={ [1]={ [1]={ limit={ @@ -17169,7 +17160,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [892]={ + [886]={ [1]={ [1]={ limit={ @@ -17185,7 +17176,7 @@ return { [1]="base_evasion_rating" } }, - [893]={ + [887]={ [1]={ [1]={ limit={ @@ -17214,7 +17205,7 @@ return { [1]="evasion_rating_+%" } }, - [894]={ + [888]={ [1]={ [1]={ limit={ @@ -17230,7 +17221,7 @@ return { [1]="base_maximum_energy_shield" } }, - [895]={ + [889]={ [1]={ [1]={ limit={ @@ -17259,7 +17250,7 @@ return { [1]="maximum_energy_shield_+%" } }, - [896]={ + [890]={ [1]={ [1]={ limit={ @@ -17275,7 +17266,7 @@ return { [1]="base_maximum_life" } }, - [897]={ + [891]={ [1]={ [1]={ limit={ @@ -17304,7 +17295,7 @@ return { [1]="maximum_life_+%" } }, - [898]={ + [892]={ [1]={ [1]={ limit={ @@ -17320,7 +17311,7 @@ return { [1]="base_maximum_mana" } }, - [899]={ + [893]={ [1]={ [1]={ limit={ @@ -17349,7 +17340,7 @@ return { [1]="maximum_mana_+%" } }, - [900]={ + [894]={ [1]={ [1]={ limit={ @@ -17365,7 +17356,7 @@ return { [1]="base_spirit" } }, - [901]={ + [895]={ [1]={ [1]={ limit={ @@ -17381,7 +17372,7 @@ return { [1]="base_spirit_from_equipment" } }, - [902]={ + [896]={ [1]={ [1]={ limit={ @@ -17410,7 +17401,7 @@ return { [1]="base_projectile_speed_+%" } }, - [903]={ + [897]={ [1]={ [1]={ limit={ @@ -17439,7 +17430,7 @@ return { [1]="flask_life_recovery_rate_+%" } }, - [904]={ + [898]={ [1]={ [1]={ limit={ @@ -17468,7 +17459,7 @@ return { [1]="flask_mana_recovery_rate_+%" } }, - [905]={ + [899]={ [1]={ [1]={ limit={ @@ -17497,7 +17488,7 @@ return { [1]="charm_duration_+%" } }, - [906]={ + [900]={ [1]={ [1]={ limit={ @@ -17526,7 +17517,7 @@ return { [1]="flask_duration_+%" } }, - [907]={ + [901]={ [1]={ [1]={ limit={ @@ -17542,7 +17533,7 @@ return { [1]="physical_damage_to_return_to_melee_attacker" } }, - [908]={ + [902]={ [1]={ [1]={ limit={ @@ -17571,7 +17562,7 @@ return { [1]="allies_in_presence_damage_+%" } }, - [909]={ + [903]={ [1]={ [1]={ limit={ @@ -17592,7 +17583,7 @@ return { [2]="allies_in_presence_attack_maximum_added_physical_damage" } }, - [910]={ + [904]={ [1]={ [1]={ limit={ @@ -17613,7 +17604,7 @@ return { [2]="allies_in_presence_attack_maximum_added_fire_damage" } }, - [911]={ + [905]={ [1]={ [1]={ limit={ @@ -17634,7 +17625,7 @@ return { [2]="allies_in_presence_attack_maximum_added_cold_damage" } }, - [912]={ + [906]={ [1]={ [1]={ limit={ @@ -17655,7 +17646,7 @@ return { [2]="allies_in_presence_attack_maximum_added_lightning_damage" } }, - [913]={ + [907]={ [1]={ [1]={ limit={ @@ -17676,7 +17667,94 @@ return { [2]="allies_in_presence_attack_maximum_added_chaos_damage" } }, - [914]={ + [908]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Allies in your Presence deal {0}% increased Physical Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Allies in your Presence deal {0}% reduced Physical Damage" + } + }, + stats={ + [1]="allies_in_presence_physical_damage_+%" + } + }, + [909]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Allies in your Presence deal {0}% increased Elemental Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Allies in your Presence deal {0}% reduced Elemental Damage" + } + }, + stats={ + [1]="allies_in_presence_elemental_damage_+%" + } + }, + [910]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Allies in your Presence deal {0}% increased Chaos Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Allies in your Presence deal {0}% reduced Chaos Damage" + } + }, + stats={ + [1]="allies_in_presence_chaos_damage_+%" + } + }, + [911]={ [1]={ [1]={ limit={ @@ -17692,7 +17770,7 @@ return { [1]="allies_in_presence_accuracy_rating" } }, - [915]={ + [912]={ [1]={ [1]={ limit={ @@ -17721,7 +17799,7 @@ return { [1]="allies_in_presence_critical_strike_chance_+%" } }, - [916]={ + [913]={ [1]={ [1]={ limit={ @@ -17750,7 +17828,7 @@ return { [1]="allies_in_presence_critical_strike_multiplier_+" } }, - [917]={ + [914]={ [1]={ [1]={ limit={ @@ -17779,7 +17857,7 @@ return { [1]="allies_in_presence_attack_speed_+%" } }, - [918]={ + [915]={ [1]={ [1]={ limit={ @@ -17808,7 +17886,7 @@ return { [1]="allies_in_presence_cast_speed_+%" } }, - [919]={ + [916]={ [1]={ [1]={ limit={ @@ -17824,7 +17902,7 @@ return { [1]="allies_in_presence_resist_all_elements_%" } }, - [920]={ + [917]={ [1]={ [1]={ [1]={ @@ -17844,7 +17922,7 @@ return { [1]="allies_in_presence_life_regeneration_rate_per_minute" } }, - [921]={ + [918]={ [1]={ [1]={ [1]={ @@ -17864,7 +17942,7 @@ return { [1]="allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%" } }, - [922]={ + [919]={ [1]={ [1]={ [1]={ @@ -17884,7 +17962,7 @@ return { [1]="allies_in_presence_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%" } }, - [923]={ + [920]={ [1]={ [1]={ limit={ @@ -17900,7 +17978,7 @@ return { [1]="total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence" } }, - [924]={ + [921]={ [1]={ [1]={ limit={ @@ -17909,14 +17987,14 @@ return { [2]="#" } }, - text="Gain {0} Guard during Effect" + text="Also grants {0} Guard" } }, stats={ [1]="charm_gain_X_guard_for_duration" } }, - [925]={ + [922]={ [1]={ [1]={ limit={ @@ -17932,7 +18010,7 @@ return { [1]="charm_recover_X_life_when_used" } }, - [926]={ + [923]={ [1]={ [1]={ limit={ @@ -17948,7 +18026,7 @@ return { [1]="charm_recover_X_mana_when_used" } }, - [927]={ + [924]={ [1]={ [1]={ limit={ @@ -17977,7 +18055,7 @@ return { [1]="local_charm_duration_+%" } }, - [928]={ + [925]={ [1]={ [1]={ limit={ @@ -17993,7 +18071,7 @@ return { [1]="local_flask_amount_to_recover_+%_when_on_low_mana" } }, - [929]={ + [926]={ [1]={ [1]={ limit={ @@ -18022,7 +18100,7 @@ return { [1]="local_flask_amount_to_recover_+%" } }, - [930]={ + [927]={ [1]={ [1]={ limit={ @@ -18038,7 +18116,7 @@ return { [1]="local_flask_amount_to_recover_+%_when_on_low_life" } }, - [931]={ + [928]={ [1]={ [1]={ limit={ @@ -18106,7 +18184,7 @@ return { [2]="local_flask_consume_flask_duration_+%_when_used" } }, - [932]={ + [929]={ [1]={ [1]={ limit={ @@ -18135,7 +18213,7 @@ return { [1]="local_flask_life_to_recover_+%" } }, - [933]={ + [930]={ [1]={ [1]={ limit={ @@ -18164,7 +18242,7 @@ return { [1]="local_flask_mana_to_recover_+%" } }, - [934]={ + [931]={ [1]={ [1]={ limit={ @@ -18180,7 +18258,7 @@ return { [1]="local_flask_minion_heal_%" } }, - [935]={ + [932]={ [1]={ [1]={ limit={ @@ -18196,7 +18274,7 @@ return { [1]="local_flask_recovers_instantly" } }, - [936]={ + [933]={ [1]={ [1]={ limit={ @@ -18221,7 +18299,7 @@ return { [1]="local_flask_recovery_amount_%_to_recover_instantly" } }, - [937]={ + [934]={ [1]={ [1]={ limit={ @@ -18250,7 +18328,7 @@ return { [1]="local_flask_recovery_speed_+%" } }, - [938]={ + [935]={ [1]={ [1]={ limit={ @@ -18266,7 +18344,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_mana_on_use" } }, - [939]={ + [936]={ [1]={ [1]={ limit={ @@ -18282,7 +18360,7 @@ return { [1]="local_flask_removes_%_of_mana_recovery_from_life_on_use" } }, - [940]={ + [937]={ [1]={ [1]={ limit={ @@ -18311,7 +18389,7 @@ return { [1]="base_item_found_rarity_+%" } }, - [941]={ + [938]={ [1]={ [1]={ [1]={ @@ -18331,7 +18409,7 @@ return { [1]="local_critical_strike_chance" } }, - [942]={ + [939]={ [1]={ [1]={ limit={ @@ -18347,7 +18425,7 @@ return { [1]="local_critical_strike_multiplier_+" } }, - [943]={ + [940]={ [1]={ [1]={ limit={ @@ -18376,7 +18454,7 @@ return { [1]="local_attack_speed_+%" } }, - [944]={ + [941]={ [1]={ [1]={ limit={ @@ -18405,7 +18483,7 @@ return { [1]="local_reload_speed_+%" } }, - [945]={ + [942]={ [1]={ [1]={ limit={ @@ -18434,7 +18512,7 @@ return { [1]="local_attribute_requirements_+%" } }, - [946]={ + [943]={ [1]={ [1]={ limit={ @@ -18450,7 +18528,7 @@ return { [1]="spell_skill_gem_level_+" } }, - [947]={ + [944]={ [1]={ [1]={ limit={ @@ -18466,7 +18544,7 @@ return { [1]="fire_spell_skill_gem_level_+" } }, - [948]={ + [945]={ [1]={ [1]={ limit={ @@ -18482,7 +18560,7 @@ return { [1]="cold_spell_skill_gem_level_+" } }, - [949]={ + [946]={ [1]={ [1]={ limit={ @@ -18498,7 +18576,7 @@ return { [1]="lightning_spell_skill_gem_level_+" } }, - [950]={ + [947]={ [1]={ [1]={ limit={ @@ -18514,7 +18592,7 @@ return { [1]="chaos_spell_skill_gem_level_+" } }, - [951]={ + [948]={ [1]={ [1]={ limit={ @@ -18530,7 +18608,23 @@ return { [1]="melee_skill_gem_level_+" } }, - [952]={ + [949]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Attack Skills" + } + }, + stats={ + [1]="attack_skill_gem_level_+" + } + }, + [950]={ [1]={ [1]={ limit={ @@ -18546,7 +18640,7 @@ return { [1]="projectile_skill_gem_level_+" } }, - [953]={ + [951]={ [1]={ [1]={ limit={ @@ -18562,7 +18656,7 @@ return { [1]="minion_skill_gem_level_+" } }, - [954]={ + [952]={ [1]={ [1]={ limit={ @@ -18578,7 +18672,7 @@ return { [1]="trap_skill_gem_level_+" } }, - [955]={ + [953]={ [1]={ [1]={ limit={ @@ -18607,7 +18701,7 @@ return { [1]="critical_strike_chance_+%" } }, - [956]={ + [954]={ [1]={ [1]={ limit={ @@ -18636,7 +18730,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [957]={ + [955]={ [1]={ [1]={ limit={ @@ -18665,7 +18759,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [958]={ + [956]={ [1]={ [1]={ limit={ @@ -18694,7 +18788,7 @@ return { [1]="trap_critical_strike_chance_+%" } }, - [959]={ + [957]={ [1]={ [1]={ limit={ @@ -18723,7 +18817,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [960]={ + [958]={ [1]={ [1]={ limit={ @@ -18739,7 +18833,7 @@ return { [1]="attack_critical_strike_multiplier_+" } }, - [961]={ + [959]={ [1]={ [1]={ limit={ @@ -18768,7 +18862,7 @@ return { [1]="base_spell_critical_strike_multiplier_+" } }, - [962]={ + [960]={ [1]={ [1]={ limit={ @@ -18784,7 +18878,7 @@ return { [1]="trap_critical_strike_multiplier_+" } }, - [963]={ + [961]={ [1]={ [1]={ limit={ @@ -18813,7 +18907,7 @@ return { [1]="attack_speed_+%" } }, - [964]={ + [962]={ [1]={ [1]={ limit={ @@ -18842,7 +18936,7 @@ return { [1]="base_cast_speed_+%" } }, - [965]={ + [963]={ [1]={ [1]={ limit={ @@ -18876,7 +18970,7 @@ return { [2]="quality_display_base_number_of_crossbow_bolts_is_gem" } }, - [966]={ + [964]={ [1]={ [1]={ limit={ @@ -18901,7 +18995,7 @@ return { [1]="local_additional_charm_slots" } }, - [967]={ + [965]={ [1]={ [1]={ limit={ @@ -18930,7 +19024,7 @@ return { [1]="number_of_additional_arrows" } }, - [968]={ + [966]={ [1]={ [1]={ limit={ @@ -18946,7 +19040,7 @@ return { [1]="additional_all_attributes" } }, - [969]={ + [967]={ [1]={ [1]={ limit={ @@ -18962,7 +19056,7 @@ return { [1]="additional_strength" } }, - [970]={ + [968]={ [1]={ [1]={ limit={ @@ -18978,7 +19072,7 @@ return { [1]="additional_dexterity" } }, - [971]={ + [969]={ [1]={ [1]={ limit={ @@ -18994,7 +19088,7 @@ return { [1]="additional_intelligence" } }, - [972]={ + [970]={ [1]={ [1]={ limit={ @@ -19023,7 +19117,7 @@ return { [1]="base_self_critical_strike_multiplier_-%" } }, - [973]={ + [971]={ [1]={ [1]={ limit={ @@ -19039,7 +19133,7 @@ return { [1]="base_additional_physical_damage_reduction_%" } }, - [974]={ + [972]={ [1]={ [1]={ limit={ @@ -19055,7 +19149,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%" } }, - [975]={ + [973]={ [1]={ [1]={ limit={ @@ -19071,7 +19165,7 @@ return { [1]="base_maximum_fire_damage_resistance_%" } }, - [976]={ + [974]={ [1]={ [1]={ limit={ @@ -19087,7 +19181,7 @@ return { [1]="base_maximum_cold_damage_resistance_%" } }, - [977]={ + [975]={ [1]={ [1]={ limit={ @@ -19103,7 +19197,7 @@ return { [1]="base_maximum_lightning_damage_resistance_%" } }, - [978]={ + [976]={ [1]={ [1]={ limit={ @@ -19119,7 +19213,7 @@ return { [1]="base_maximum_chaos_damage_resistance_%" } }, - [979]={ + [977]={ [1]={ [1]={ limit={ @@ -19135,7 +19229,7 @@ return { [1]="base_resist_all_elements_%" } }, - [980]={ + [978]={ [1]={ [1]={ limit={ @@ -19151,7 +19245,7 @@ return { [1]="base_fire_damage_resistance_%" } }, - [981]={ + [979]={ [1]={ [1]={ limit={ @@ -19167,7 +19261,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [982]={ + [980]={ [1]={ [1]={ limit={ @@ -19183,7 +19277,7 @@ return { [1]="base_lightning_damage_resistance_%" } }, - [983]={ + [981]={ [1]={ [1]={ limit={ @@ -19199,23 +19293,7 @@ return { [1]="base_chaos_damage_resistance_%" } }, - [984]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage" - } - }, - stats={ - [1]="base_spell_suppression_chance_%" - } - }, - [985]={ + [982]={ [1]={ [1]={ limit={ @@ -19244,6 +19322,54 @@ return { [1]="minion_maximum_life_+%" } }, + [983]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% of Armour also applies to Elemental Damage" + } + }, + stats={ + [1]="armour_%_applies_to_fire_cold_lightning_damage" + } + }, + [984]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Deflection Rating equal to {0}% of Evasion Rating" + } + }, + stats={ + [1]="base_deflection_rating_%_of_evasion_rating" + } + }, + [985]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain Deflection Rating equal to {0}% of Armour" + } + }, + stats={ + [1]="base_deflection_rating_%_of_armour" + } + }, [986]={ [1]={ [1]={ @@ -19274,6 +19400,35 @@ return { } }, [987]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% faster start of Energy Shield Recharge" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% slower start of Energy Shield Recharge" + } + }, + stats={ + [1]="energy_shield_delay_-%" + } + }, + [988]={ [1]={ [1]={ [1]={ @@ -19293,7 +19448,7 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [988]={ + [989]={ [1]={ [1]={ limit={ @@ -19322,7 +19477,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [989]={ + [990]={ [1]={ [1]={ limit={ @@ -19347,7 +19502,7 @@ return { [1]="damage_taken_goes_to_life_over_4_seconds_%" } }, - [990]={ + [991]={ [1]={ [1]={ [1]={ @@ -19367,7 +19522,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [991]={ + [992]={ [1]={ [1]={ [1]={ @@ -19387,7 +19542,7 @@ return { [1]="local_life_leech_from_physical_damage_permyriad" } }, - [992]={ + [993]={ [1]={ [1]={ limit={ @@ -19416,7 +19571,7 @@ return { [1]="base_life_gain_per_target" } }, - [993]={ + [994]={ [1]={ [1]={ limit={ @@ -19445,7 +19600,7 @@ return { [1]="local_life_gain_per_target" } }, - [994]={ + [995]={ [1]={ [1]={ limit={ @@ -19474,7 +19629,7 @@ return { [1]="base_life_gained_on_enemy_death" } }, - [995]={ + [996]={ [1]={ [1]={ limit={ @@ -19503,7 +19658,7 @@ return { [1]="mana_regeneration_rate_+%" } }, - [996]={ + [997]={ [1]={ [1]={ limit={ @@ -19528,7 +19683,7 @@ return { [1]="damage_taken_goes_to_mana_%" } }, - [997]={ + [998]={ [1]={ [1]={ [1]={ @@ -19548,7 +19703,7 @@ return { [1]="local_mana_leech_from_physical_damage_permyriad" } }, - [998]={ + [999]={ [1]={ [1]={ [1]={ @@ -19568,7 +19723,7 @@ return { [1]="base_mana_leech_from_physical_attack_damage_permyriad" } }, - [999]={ + [1000]={ [1]={ [1]={ limit={ @@ -19597,7 +19752,7 @@ return { [1]="base_mana_gained_on_enemy_death" } }, - [1000]={ + [1001]={ [1]={ [1]={ limit={ @@ -19626,7 +19781,7 @@ return { [1]="charges_gained_+%" } }, - [1001]={ + [1002]={ [1]={ [1]={ limit={ @@ -19659,7 +19814,7 @@ return { [1]="flask_charges_used_+%" } }, - [1002]={ + [1003]={ [1]={ [1]={ limit={ @@ -19688,7 +19843,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [1003]={ + [1004]={ [1]={ [1]={ limit={ @@ -19717,7 +19872,7 @@ return { [1]="hit_damage_stun_multiplier_+%" } }, - [1004]={ + [1005]={ [1]={ [1]={ limit={ @@ -19746,7 +19901,7 @@ return { [1]="local_hit_damage_stun_multiplier_+%" } }, - [1005]={ + [1006]={ [1]={ [1]={ limit={ @@ -19775,7 +19930,7 @@ return { [1]="base_stun_duration_+%" } }, - [1006]={ + [1007]={ [1]={ [1]={ limit={ @@ -19804,31 +19959,6 @@ return { [1]="local_base_stun_duration_+%" } }, - [1007]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Ignite" - } - }, - stats={ - [1]="base_chance_to_ignite_%" - } - }, [1008]={ [1]={ [1]={ @@ -19838,7 +19968,7 @@ return { [2]="#" } }, - text="{0}% increased chance to Ignite" + text="{0}% increased Flammability Magnitude" }, [2]={ [1]={ @@ -19851,7 +19981,7 @@ return { [2]=-1 } }, - text="{0}% reduced chance to Ignite" + text="{0}% reduced Flammability Magnitude" } }, stats={ @@ -20457,6 +20587,35 @@ return { } }, [1029]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Ignite Magnitude" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Ignite Magnitude" + } + }, + stats={ + [1]="base_ignite_effect_+%" + } + }, + [1030]={ [1]={ [1]={ limit={ @@ -20485,7 +20644,7 @@ return { [1]="map_hellscape_blood_consumed_+%_final" } }, - [1030]={ + [1031]={ [1]={ [1]={ limit={ @@ -20501,7 +20660,7 @@ return { [1]="map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time" } }, - [1031]={ + [1032]={ [1]={ [1]={ [1]={ @@ -20521,7 +20680,7 @@ return { [1]="map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated" } }, - [1032]={ + [1033]={ [1]={ [1]={ limit={ @@ -20537,7 +20696,7 @@ return { [1]="map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource" } }, - [1033]={ + [1034]={ [1]={ [1]={ limit={ @@ -20553,7 +20712,7 @@ return { [1]="map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource" } }, - [1034]={ + [1035]={ [1]={ [1]={ limit={ @@ -20569,7 +20728,7 @@ return { [1]="map_hellscape_gimmick_shift_randomly" } }, - [1035]={ + [1036]={ [1]={ [1]={ limit={ @@ -20585,7 +20744,7 @@ return { [1]="map_hellscape_fire_damage_taken_when_switching" } }, - [1036]={ + [1037]={ [1]={ [1]={ limit={ @@ -20601,7 +20760,7 @@ return { [1]="map_hellscape_lightning_damage_taken_when_switching" } }, - [1037]={ + [1038]={ [1]={ [1]={ limit={ @@ -20630,7 +20789,7 @@ return { [1]="map_hellscape_monster_damage_+%_final" } }, - [1038]={ + [1039]={ [1]={ [1]={ limit={ @@ -20659,7 +20818,7 @@ return { [1]="map_hellscape_monster_damage_taken_+%_final" } }, - [1039]={ + [1040]={ [1]={ [1]={ limit={ @@ -20688,7 +20847,7 @@ return { [1]="map_hellscape_monster_life_+%_final" } }, - [1040]={ + [1041]={ [1]={ [1]={ [1]={ @@ -20708,7 +20867,7 @@ return { [1]="map_hellscape_monster_life_regeneration_rate_per_minute_%" } }, - [1041]={ + [1042]={ [1]={ [1]={ limit={ @@ -20724,7 +20883,7 @@ return { [1]="map_hellscape_physical_damage_taken_when_switching" } }, - [1042]={ + [1043]={ [1]={ [1]={ limit={ @@ -20749,7 +20908,7 @@ return { [1]="map_player_additional_physical_damage_reduction_%_in_hellscape" } }, - [1043]={ + [1044]={ [1]={ [1]={ limit={ @@ -20765,22 +20924,6 @@ return { [1]="map_player_block_chance_%_in_hellscape" } }, - [1044]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Players have {0:+d}% chance to Evade Attack Hits while in Nightmare" - } - }, - stats={ - [1]="map_player_chance_to_evade_attacks_%_in_hellscape" - } - }, [1045]={ [1]={ [1]={ @@ -20843,22 +20986,6 @@ return { } }, [1048]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Players have {0:+d}% chance to Suppress Spell Damage while in Nightmare" - } - }, - stats={ - [1]="map_player_spell_suppression_chance_%_in_hellscape" - } - }, - [1049]={ [1]={ [1]={ limit={ @@ -20883,7 +21010,7 @@ return { [1]="map_hellscape_additional_boss" } }, - [1050]={ + [1049]={ [1]={ [1]={ limit={ @@ -20912,7 +21039,7 @@ return { [1]="map_hellscape_item_drop_quantity_+%" } }, - [1051]={ + [1050]={ [1]={ [1]={ limit={ @@ -20941,7 +21068,7 @@ return { [1]="map_hellscape_item_drop_rarity_+%" } }, - [1052]={ + [1051]={ [1]={ [1]={ limit={ @@ -20970,7 +21097,7 @@ return { [1]="map_hellscape_monster_slain_experience_+%_final" } }, - [1053]={ + [1052]={ [1]={ [1]={ limit={ @@ -20999,7 +21126,7 @@ return { [1]="map_hellscape_pack_size_+%" } }, - [1054]={ + [1053]={ [1]={ [1]={ limit={ @@ -21024,7 +21151,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_abyss_jewel" } }, - [1055]={ + [1054]={ [1]={ [1]={ limit={ @@ -21049,7 +21176,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_basic_currency_item" } }, - [1056]={ + [1055]={ [1]={ [1]={ limit={ @@ -21074,7 +21201,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_blight_oil" } }, - [1057]={ + [1056]={ [1]={ [1]={ limit={ @@ -21099,7 +21226,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_breach_splinters" } }, - [1058]={ + [1057]={ [1]={ [1]={ limit={ @@ -21124,7 +21251,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delirium_splinters" } }, - [1059]={ + [1058]={ [1]={ [1]={ limit={ @@ -21149,7 +21276,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delve_fossil" } }, - [1060]={ + [1059]={ [1]={ [1]={ limit={ @@ -21174,7 +21301,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_enchanted_item" } }, - [1061]={ + [1060]={ [1]={ [1]={ limit={ @@ -21199,7 +21326,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_essence" } }, - [1062]={ + [1061]={ [1]={ [1]={ limit={ @@ -21224,7 +21351,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_expedition_currency" } }, - [1063]={ + [1062]={ [1]={ [1]={ limit={ @@ -21249,7 +21376,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_fractured_item" } }, - [1064]={ + [1063]={ [1]={ [1]={ limit={ @@ -21274,7 +21401,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_gem" } }, - [1065]={ + [1064]={ [1]={ [1]={ limit={ @@ -21299,7 +21426,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_incubator" } }, - [1066]={ + [1065]={ [1]={ [1]={ limit={ @@ -21324,7 +21451,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_influence_item" } }, - [1067]={ + [1066]={ [1]={ [1]={ limit={ @@ -21349,7 +21476,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_legion_splinters" } }, - [1068]={ + [1067]={ [1]={ [1]={ limit={ @@ -21374,7 +21501,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_map_item" } }, - [1069]={ + [1068]={ [1]={ [1]={ limit={ @@ -21399,7 +21526,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_metamorph_catalyst" } }, - [1070]={ + [1069]={ [1]={ [1]={ limit={ @@ -21424,7 +21551,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scarab" } }, - [1071]={ + [1070]={ [1]={ [1]={ limit={ @@ -21449,7 +21576,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scourged_item" } }, - [1072]={ + [1071]={ [1]={ [1]={ limit={ @@ -21474,7 +21601,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_stacked_decks" } }, - [1073]={ + [1072]={ [1]={ [1]={ limit={ @@ -21499,7 +21626,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_tainted_currency" } }, - [1074]={ + [1073]={ [1]={ [1]={ limit={ @@ -21524,7 +21651,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_unique_item" } }, - [1075]={ + [1074]={ [1]={ [1]={ limit={ @@ -21549,7 +21676,7 @@ return { [1]="map_hellscape_rare_monster_drop_items_X_levels_higher" } }, - [1076]={ + [1075]={ [1]={ [1]={ limit={ @@ -21565,7 +21692,7 @@ return { [1]="monster_base_block_%" } }, - [1077]={ + [1076]={ [1]={ [1]={ limit={ @@ -21581,157 +21708,7 @@ return { [1]="shield_block_%" } }, - [1078]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while holding a Shield" - } - }, - stats={ - [1]="shield_spell_block_%" - } - }, - [1079]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Prevent {0:+d}% of Suppressed Spell Damage" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0:+d}% to amount of Suppressed Spell Damage Prevented" - } - }, - stats={ - [1]="base_spell_damage_%_suppressed" - } - }, - [1080]={ - [1]={ - [1]={ - [1]={ - k="times_one_point_five", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage" - } - }, - stats={ - [1]="base_spell_suppression_chance_150%_of_value" - } - }, - [1081]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while Dual Wielding" - } - }, - stats={ - [1]="spell_block_while_dual_wielding_%" - } - }, - [1082]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while on Low Life" - } - }, - stats={ - [1]="spell_block_%_while_on_low_life" - } - }, - [1083]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Prevent {0:+d}% of Suppressed Spell Damage while on Full Energy Shield" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0:+d}% to amount of Suppressed Spell Damage Prevented while on Full Energy Shield" - } - }, - stats={ - [1]="spell_damage_%_suppressed_while_on_full_energy_shield" - } - }, - [1084]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while wielding a Bow" - } - }, - stats={ - [1]="spell_block_with_bow_%" - } - }, - [1085]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while wielding a Staff" - } - }, - stats={ - [1]="spell_block_with_staff_%" - } - }, - [1086]={ + [1077]={ [1]={ [1]={ limit={ @@ -21747,7 +21724,7 @@ return { [1]="staff_block_%" } }, - [1087]={ + [1078]={ [1]={ [1]={ limit={ @@ -21763,7 +21740,7 @@ return { [1]="block_chance_%_per_50_strength" } }, - [1088]={ + [1079]={ [1]={ [1]={ limit={ @@ -21779,108 +21756,7 @@ return { [1]="additional_staff_block_%" } }, - [1089]={ - [1]={ - [1]={ - [1]={ - k="30%_of_value", - v=1 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% Chance to Block Spell Damage" - } - }, - stats={ - [1]="old_do_not_use_spell_block_%_from_assumed_block_value" - } - }, - [1090]={ - [1]={ - [1]={ - [1]={ - k="30%_of_value", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% Chance to Block Spell Damage while on Low Life" - } - }, - stats={ - [1]="old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value" - } - }, - [1091]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Chance to Block Spell Damage is equal to Chance to Block Attack Damage\nMaximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage" - } - }, - stats={ - [1]="spell_block_equals_attack_block" - } - }, - [1092]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage" - } - }, - stats={ - [1]="additional_spell_block_%" - } - }, - [1093]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Chance to Block Spell Damage is Lucky" - }, - [2]={ - [1]={ - k="canonical_line", - v=true - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Chance to Block Spell Damage is Unlucky" - } - }, - stats={ - [1]="base_spell_block_luck" - } - }, - [1094]={ + [1080]={ [1]={ [1]={ limit={ @@ -21896,7 +21772,7 @@ return { [1]="block_while_dual_wielding_%" } }, - [1095]={ + [1081]={ [1]={ [1]={ limit={ @@ -21912,7 +21788,7 @@ return { [1]="block_while_dual_wielding_claws_%" } }, - [1096]={ + [1082]={ [1]={ [1]={ limit={ @@ -21928,7 +21804,7 @@ return { [1]="block_chance_%_while_holding_shield" } }, - [1097]={ + [1083]={ [1]={ [1]={ limit={ @@ -21944,7 +21820,7 @@ return { [1]="dual_wield_or_shield_block_%" } }, - [1098]={ + [1084]={ [1]={ [1]={ [1]={ @@ -21977,7 +21853,7 @@ return { [1]="block_chance_+%" } }, - [1099]={ + [1085]={ [1]={ [1]={ limit={ @@ -22006,7 +21882,23 @@ return { [1]="block_recovery_+%" } }, - [1100]={ + [1086]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Heavy Stuns Enemies that are on Full Life" + } + }, + stats={ + [1]="local_always_heavy_stun_on_full_life" + } + }, + [1087]={ [1]={ [1]={ limit={ @@ -22022,7 +21914,7 @@ return { [1]="melee_splash" } }, - [1101]={ + [1088]={ [1]={ [1]={ limit={ @@ -22038,7 +21930,7 @@ return { [1]="offerings_also_buff_you" } }, - [1102]={ + [1089]={ [1]={ [1]={ limit={ @@ -22067,7 +21959,7 @@ return { [1]="self_offering_effect_+%" } }, - [1103]={ + [1090]={ [1]={ [1]={ limit={ @@ -22076,7 +21968,7 @@ return { [2]="#" } }, - text="Your Offerings have {0}% increased Effect" + text="Offering Skills have {0}% increased Buff effect" }, [2]={ [1]={ @@ -22089,14 +21981,14 @@ return { [2]=-1 } }, - text="Your Offerings have {0}% reduced Effect" + text="Offering Skills have {0}% reduced Buff effect" } }, stats={ [1]="offering_spells_effect_+%" } }, - [1104]={ + [1091]={ [1]={ [1]={ limit={ @@ -22125,7 +22017,7 @@ return { [1]="bone_offering_effect_+%" } }, - [1105]={ + [1092]={ [1]={ [1]={ limit={ @@ -22154,7 +22046,7 @@ return { [1]="flesh_offering_effect_+%" } }, - [1106]={ + [1093]={ [1]={ [1]={ limit={ @@ -22183,7 +22075,7 @@ return { [1]="spirit_offering_effect_+%" } }, - [1107]={ + [1094]={ [1]={ [1]={ limit={ @@ -22212,7 +22104,7 @@ return { [1]="slayer_ascendancy_melee_splash_damage_+%_final_for_splash" } }, - [1108]={ + [1095]={ [1]={ [1]={ limit={ @@ -22228,7 +22120,7 @@ return { [1]="additional_strength_and_dexterity" } }, - [1109]={ + [1096]={ [1]={ [1]={ limit={ @@ -22244,7 +22136,7 @@ return { [1]="additional_strength_and_intelligence" } }, - [1110]={ + [1097]={ [1]={ [1]={ limit={ @@ -22260,7 +22152,23 @@ return { [1]="additional_dexterity_and_intelligence" } }, - [1111]={ + [1098]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to all Attributes" + } + }, + stats={ + [1]="base_all_attributes" + } + }, + [1099]={ [1]={ [1]={ limit={ @@ -22289,7 +22197,7 @@ return { [1]="all_attributes_+%" } }, - [1112]={ + [1100]={ [1]={ [1]={ limit={ @@ -22318,7 +22226,7 @@ return { [1]="strength_+%" } }, - [1113]={ + [1101]={ [1]={ [1]={ limit={ @@ -22347,7 +22255,7 @@ return { [1]="dexterity_+%" } }, - [1114]={ + [1102]={ [1]={ [1]={ limit={ @@ -22376,7 +22284,7 @@ return { [1]="intelligence_+%" } }, - [1115]={ + [1103]={ [1]={ [1]={ limit={ @@ -22392,7 +22300,7 @@ return { [1]="modifiers_to_attributes_instead_apply_to_ascendance" } }, - [1116]={ + [1104]={ [1]={ [1]={ limit={ @@ -22408,7 +22316,7 @@ return { [1]="elemental_resistance_+%_per_15_ascendance" } }, - [1117]={ + [1105]={ [1]={ [1]={ limit={ @@ -22424,7 +22332,7 @@ return { [1]="penetrate_elemental_resistance_%_per_15_ascendance" } }, - [1118]={ + [1106]={ [1]={ [1]={ limit={ @@ -22440,7 +22348,7 @@ return { [1]="attribute_requirements_can_be_satisfied_by_%_of_ascendance" } }, - [1119]={ + [1107]={ [1]={ [1]={ limit={ @@ -22469,7 +22377,7 @@ return { [1]="damage_+%" } }, - [1120]={ + [1108]={ [1]={ [1]={ limit={ @@ -22498,7 +22406,7 @@ return { [1]="on_weapon_global_damage_+%" } }, - [1121]={ + [1109]={ [1]={ [1]={ limit={ @@ -22527,7 +22435,7 @@ return { [1]="totem_damage_+%" } }, - [1122]={ + [1110]={ [1]={ [1]={ limit={ @@ -22556,7 +22464,7 @@ return { [1]="trap_or_mine_damage_+%" } }, - [1123]={ + [1111]={ [1]={ [1]={ limit={ @@ -22585,7 +22493,7 @@ return { [1]="mine_damage_+%" } }, - [1124]={ + [1112]={ [1]={ [1]={ limit={ @@ -22618,7 +22526,7 @@ return { [1]="unique_mine_damage_+%_final" } }, - [1125]={ + [1113]={ [1]={ [1]={ limit={ @@ -22647,7 +22555,7 @@ return { [1]="attack_damage_+%" } }, - [1126]={ + [1114]={ [1]={ [1]={ limit={ @@ -22676,7 +22584,7 @@ return { [1]="unique_ryslathas_coil_maximum_physical_attack_damage_+%_final" } }, - [1127]={ + [1115]={ [1]={ [1]={ limit={ @@ -22709,7 +22617,7 @@ return { [1]="unique_ryslathas_coil_minimum_physical_attack_damage_+%_final" } }, - [1128]={ + [1116]={ [1]={ [1]={ limit={ @@ -22738,7 +22646,7 @@ return { [1]="cold_attack_damage_+%" } }, - [1129]={ + [1117]={ [1]={ [1]={ limit={ @@ -22767,7 +22675,7 @@ return { [1]="fire_attack_damage_+%" } }, - [1130]={ + [1118]={ [1]={ [1]={ limit={ @@ -22796,7 +22704,7 @@ return { [1]="physical_attack_damage_+%" } }, - [1131]={ + [1119]={ [1]={ [1]={ limit={ @@ -22825,7 +22733,7 @@ return { [1]="cold_attack_damage_+%_while_holding_a_shield" } }, - [1132]={ + [1120]={ [1]={ [1]={ limit={ @@ -22854,7 +22762,7 @@ return { [1]="fire_attack_damage_+%_while_holding_a_shield" } }, - [1133]={ + [1121]={ [1]={ [1]={ limit={ @@ -22883,7 +22791,7 @@ return { [1]="attack_damage_+%_while_holding_a_shield" } }, - [1134]={ + [1122]={ [1]={ [1]={ limit={ @@ -22912,7 +22820,7 @@ return { [1]="attack_skills_damage_+%_while_holding_shield" } }, - [1135]={ + [1123]={ [1]={ [1]={ limit={ @@ -22941,7 +22849,7 @@ return { [1]="physical_attack_damage_+%_while_holding_a_shield" } }, - [1136]={ + [1124]={ [1]={ [1]={ limit={ @@ -22970,7 +22878,7 @@ return { [1]="damage_over_time_+%" } }, - [1137]={ + [1125]={ [1]={ [1]={ limit={ @@ -22999,7 +22907,7 @@ return { [1]="physical_damage_over_time_+%" } }, - [1138]={ + [1126]={ [1]={ [1]={ limit={ @@ -23028,7 +22936,7 @@ return { [1]="fire_damage_over_time_+%" } }, - [1139]={ + [1127]={ [1]={ [1]={ limit={ @@ -23057,7 +22965,7 @@ return { [1]="cold_damage_over_time_+%" } }, - [1140]={ + [1128]={ [1]={ [1]={ limit={ @@ -23086,7 +22994,7 @@ return { [1]="chaos_damage_over_time_+%" } }, - [1141]={ + [1129]={ [1]={ [1]={ limit={ @@ -23115,7 +23023,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [1142]={ + [1130]={ [1]={ [1]={ limit={ @@ -23144,7 +23052,7 @@ return { [1]="damage_+%_per_active_curse_on_self" } }, - [1143]={ + [1131]={ [1]={ [1]={ limit={ @@ -23173,7 +23081,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [1144]={ + [1132]={ [1]={ [1]={ limit={ @@ -23202,7 +23110,7 @@ return { [1]="physical_damage_+%_while_life_leeching" } }, - [1145]={ + [1133]={ [1]={ [1]={ limit={ @@ -23231,7 +23139,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [1146]={ + [1134]={ [1]={ [1]={ limit={ @@ -23260,7 +23168,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [1147]={ + [1135]={ [1]={ [1]={ limit={ @@ -23289,7 +23197,7 @@ return { [1]="attack_speed_+%_when_on_full_life" } }, - [1148]={ + [1136]={ [1]={ [1]={ limit={ @@ -23318,7 +23226,7 @@ return { [1]="spell_fire_damage_+%" } }, - [1149]={ + [1137]={ [1]={ [1]={ limit={ @@ -23347,7 +23255,7 @@ return { [1]="spell_cold_damage_+%" } }, - [1150]={ + [1138]={ [1]={ [1]={ limit={ @@ -23376,7 +23284,7 @@ return { [1]="spell_staff_damage_+%" } }, - [1151]={ + [1139]={ [1]={ [1]={ limit={ @@ -23405,7 +23313,7 @@ return { [1]="spell_bow_damage_+%" } }, - [1152]={ + [1140]={ [1]={ [1]={ limit={ @@ -23434,7 +23342,7 @@ return { [1]="spell_damage_+%_while_holding_shield" } }, - [1153]={ + [1141]={ [1]={ [1]={ limit={ @@ -23463,7 +23371,7 @@ return { [1]="spell_damage_+%_while_dual_wielding" } }, - [1154]={ + [1142]={ [1]={ [1]={ limit={ @@ -23492,7 +23400,7 @@ return { [1]="physical_damage_+%" } }, - [1155]={ + [1143]={ [1]={ [1]={ limit={ @@ -23508,7 +23416,7 @@ return { [1]="local_weapon_enemy_phys_reduction_%_penalty" } }, - [1156]={ + [1144]={ [1]={ [1]={ limit={ @@ -23537,7 +23445,7 @@ return { [1]="melee_damage_+%" } }, - [1157]={ + [1145]={ [1]={ [1]={ limit={ @@ -23566,7 +23474,7 @@ return { [1]="melee_damage_+%_vs_frozen_enemies" } }, - [1158]={ + [1146]={ [1]={ [1]={ limit={ @@ -23595,7 +23503,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [1159]={ + [1147]={ [1]={ [1]={ limit={ @@ -23624,7 +23532,7 @@ return { [1]="melee_damage_+%_vs_shocked_enemies" } }, - [1160]={ + [1148]={ [1]={ [1]={ limit={ @@ -23653,7 +23561,7 @@ return { [1]="damage_vs_shocked_enemies_+%" } }, - [1161]={ + [1149]={ [1]={ [1]={ limit={ @@ -23682,7 +23590,7 @@ return { [1]="melee_damage_+%_vs_burning_enemies" } }, - [1162]={ + [1150]={ [1]={ [1]={ limit={ @@ -23711,7 +23619,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [1163]={ + [1151]={ [1]={ [1]={ limit={ @@ -23740,7 +23648,7 @@ return { [1]="damage_+%_vs_frozen_shocked_ignited_enemies" } }, - [1164]={ + [1152]={ [1]={ [1]={ limit={ @@ -23756,7 +23664,7 @@ return { [1]="dot_multiplier_+" } }, - [1165]={ + [1153]={ [1]={ [1]={ limit={ @@ -23772,7 +23680,7 @@ return { [1]="damage_over_time_multiplier_+_with_attacks" } }, - [1166]={ + [1154]={ [1]={ [1]={ limit={ @@ -23788,7 +23696,7 @@ return { [1]="physical_dot_multiplier_+" } }, - [1167]={ + [1155]={ [1]={ [1]={ limit={ @@ -23804,7 +23712,7 @@ return { [1]="physical_damage_over_time_multiplier_+_with_attacks" } }, - [1168]={ + [1156]={ [1]={ [1]={ limit={ @@ -23820,7 +23728,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [1169]={ + [1157]={ [1]={ [1]={ limit={ @@ -23836,7 +23744,7 @@ return { [1]="fire_damage_over_time_multiplier_+_with_attacks" } }, - [1170]={ + [1158]={ [1]={ [1]={ limit={ @@ -23852,7 +23760,7 @@ return { [1]="cold_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1171]={ + [1159]={ [1]={ [1]={ limit={ @@ -23868,7 +23776,7 @@ return { [1]="cold_dot_multiplier_+" } }, - [1172]={ + [1160]={ [1]={ [1]={ limit={ @@ -23884,7 +23792,7 @@ return { [1]="lightning_dot_multiplier_+" } }, - [1173]={ + [1161]={ [1]={ [1]={ limit={ @@ -23900,7 +23808,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1174]={ + [1162]={ [1]={ [1]={ limit={ @@ -23916,7 +23824,7 @@ return { [1]="chaos_dot_multiplier_+" } }, - [1175]={ + [1163]={ [1]={ [1]={ limit={ @@ -23932,7 +23840,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_with_attacks" } }, - [1176]={ + [1164]={ [1]={ [1]={ limit={ @@ -23953,7 +23861,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [1177]={ + [1165]={ [1]={ [1]={ limit={ @@ -23974,7 +23882,7 @@ return { [2]="from_self_maximum_added_attack_physical_damage_taken" } }, - [1178]={ + [1166]={ [1]={ [1]={ limit={ @@ -23995,7 +23903,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [1179]={ + [1167]={ [1]={ [1]={ limit={ @@ -24016,7 +23924,7 @@ return { [2]="local_attack_maximum_added_physical_damage_per_3_levels" } }, - [1180]={ + [1168]={ [1]={ [1]={ limit={ @@ -24037,7 +23945,7 @@ return { [2]="maximum_added_physical_damage_vs_frozen_enemies" } }, - [1181]={ + [1169]={ [1]={ [1]={ limit={ @@ -24058,7 +23966,7 @@ return { [2]="maximum_added_fire_damage_vs_ignited_enemies" } }, - [1182]={ + [1170]={ [1]={ [1]={ limit={ @@ -24079,7 +23987,7 @@ return { [2]="maximum_added_fire_attack_damage_per_active_buff" } }, - [1183]={ + [1171]={ [1]={ [1]={ limit={ @@ -24100,7 +24008,7 @@ return { [2]="maximum_added_fire_spell_damage_per_active_buff" } }, - [1184]={ + [1172]={ [1]={ [1]={ limit={ @@ -24121,7 +24029,7 @@ return { [2]="maximum_added_fire_damage_per_active_buff" } }, - [1185]={ + [1173]={ [1]={ [1]={ limit={ @@ -24150,7 +24058,7 @@ return { [1]="attack_skills_damage_+%_while_dual_wielding" } }, - [1186]={ + [1174]={ [1]={ [1]={ limit={ @@ -24179,7 +24087,7 @@ return { [1]="damage_while_dual_wielding_+%" } }, - [1187]={ + [1175]={ [1]={ [1]={ limit={ @@ -24208,7 +24116,7 @@ return { [1]="physical_damage_while_dual_wielding_+%" } }, - [1188]={ + [1176]={ [1]={ [1]={ limit={ @@ -24237,7 +24145,7 @@ return { [1]="fire_damage_while_dual_wielding_+%" } }, - [1189]={ + [1177]={ [1]={ [1]={ limit={ @@ -24266,7 +24174,7 @@ return { [1]="cold_damage_while_dual_wielding_+%" } }, - [1190]={ + [1178]={ [1]={ [1]={ limit={ @@ -24295,7 +24203,7 @@ return { [1]="base_main_hand_damage_+%" } }, - [1191]={ + [1179]={ [1]={ [1]={ limit={ @@ -24324,7 +24232,7 @@ return { [1]="base_off_hand_damage_+%" } }, - [1192]={ + [1180]={ [1]={ [1]={ limit={ @@ -24353,7 +24261,7 @@ return { [1]="damage_+%_with_one_handed_melee_weapons" } }, - [1193]={ + [1181]={ [1]={ [1]={ limit={ @@ -24382,7 +24290,7 @@ return { [1]="damage_+%_with_melee_weapons" } }, - [1194]={ + [1182]={ [1]={ [1]={ limit={ @@ -24411,7 +24319,7 @@ return { [1]="one_handed_melee_physical_damage_+%" } }, - [1195]={ + [1183]={ [1]={ [1]={ limit={ @@ -24440,7 +24348,7 @@ return { [1]="one_handed_melee_fire_damage_+%" } }, - [1196]={ + [1184]={ [1]={ [1]={ limit={ @@ -24469,7 +24377,7 @@ return { [1]="one_handed_melee_cold_damage_+%" } }, - [1197]={ + [1185]={ [1]={ [1]={ limit={ @@ -24498,7 +24406,7 @@ return { [1]="two_handed_melee_physical_damage_+%" } }, - [1198]={ + [1186]={ [1]={ [1]={ limit={ @@ -24527,7 +24435,7 @@ return { [1]="damage_+%_with_two_handed_melee_weapons" } }, - [1199]={ + [1187]={ [1]={ [1]={ limit={ @@ -24556,7 +24464,7 @@ return { [1]="two_handed_melee_fire_damage_+%" } }, - [1200]={ + [1188]={ [1]={ [1]={ limit={ @@ -24585,7 +24493,7 @@ return { [1]="two_handed_melee_cold_damage_+%" } }, - [1201]={ + [1189]={ [1]={ [1]={ limit={ @@ -24614,7 +24522,7 @@ return { [1]="unarmed_melee_physical_damage_+%" } }, - [1202]={ + [1190]={ [1]={ [1]={ limit={ @@ -24643,7 +24551,7 @@ return { [1]="axe_damage_+%" } }, - [1203]={ + [1191]={ [1]={ [1]={ limit={ @@ -24672,7 +24580,7 @@ return { [1]="physical_axe_damage_+%" } }, - [1204]={ + [1192]={ [1]={ [1]={ limit={ @@ -24701,7 +24609,7 @@ return { [1]="fire_axe_damage_+%" } }, - [1205]={ + [1193]={ [1]={ [1]={ limit={ @@ -24730,7 +24638,7 @@ return { [1]="cold_axe_damage_+%" } }, - [1206]={ + [1194]={ [1]={ [1]={ limit={ @@ -24759,7 +24667,7 @@ return { [1]="physical_staff_damage_+%" } }, - [1207]={ + [1195]={ [1]={ [1]={ limit={ @@ -24788,7 +24696,7 @@ return { [1]="quarterstaff_damage_+%" } }, - [1208]={ + [1196]={ [1]={ [1]={ limit={ @@ -24817,7 +24725,7 @@ return { [1]="fire_staff_damage_+%" } }, - [1209]={ + [1197]={ [1]={ [1]={ limit={ @@ -24846,7 +24754,7 @@ return { [1]="cold_staff_damage_+%" } }, - [1210]={ + [1198]={ [1]={ [1]={ limit={ @@ -24875,7 +24783,7 @@ return { [1]="claw_damage_+%" } }, - [1211]={ + [1199]={ [1]={ [1]={ limit={ @@ -24904,7 +24812,7 @@ return { [1]="physical_claw_damage_+%" } }, - [1212]={ + [1200]={ [1]={ [1]={ limit={ @@ -24933,7 +24841,7 @@ return { [1]="fire_claw_damage_+%" } }, - [1213]={ + [1201]={ [1]={ [1]={ limit={ @@ -24962,7 +24870,7 @@ return { [1]="cold_claw_damage_+%" } }, - [1214]={ + [1202]={ [1]={ [1]={ limit={ @@ -24991,7 +24899,7 @@ return { [1]="dagger_damage_+%" } }, - [1215]={ + [1203]={ [1]={ [1]={ limit={ @@ -25020,7 +24928,7 @@ return { [1]="physical_dagger_damage_+%" } }, - [1216]={ + [1204]={ [1]={ [1]={ limit={ @@ -25049,7 +24957,7 @@ return { [1]="fire_dagger_damage_+%" } }, - [1217]={ + [1205]={ [1]={ [1]={ limit={ @@ -25078,7 +24986,7 @@ return { [1]="cold_dagger_damage_+%" } }, - [1218]={ + [1206]={ [1]={ [1]={ limit={ @@ -25107,7 +25015,7 @@ return { [1]="mace_damage_+%" } }, - [1219]={ + [1207]={ [1]={ [1]={ limit={ @@ -25136,7 +25044,7 @@ return { [1]="physical_mace_damage_+%" } }, - [1220]={ + [1208]={ [1]={ [1]={ limit={ @@ -25165,7 +25073,7 @@ return { [1]="fire_mace_damage_+%" } }, - [1221]={ + [1209]={ [1]={ [1]={ limit={ @@ -25194,7 +25102,7 @@ return { [1]="cold_mace_damage_+%" } }, - [1222]={ + [1210]={ [1]={ [1]={ limit={ @@ -25223,7 +25131,7 @@ return { [1]="bow_damage_+%" } }, - [1223]={ + [1211]={ [1]={ [1]={ limit={ @@ -25252,7 +25160,7 @@ return { [1]="physical_bow_damage_+%" } }, - [1224]={ + [1212]={ [1]={ [1]={ limit={ @@ -25281,7 +25189,7 @@ return { [1]="fire_bow_damage_+%" } }, - [1225]={ + [1213]={ [1]={ [1]={ limit={ @@ -25310,7 +25218,7 @@ return { [1]="cold_bow_damage_+%" } }, - [1226]={ + [1214]={ [1]={ [1]={ limit={ @@ -25339,7 +25247,7 @@ return { [1]="bow_elemental_damage_+%" } }, - [1227]={ + [1215]={ [1]={ [1]={ limit={ @@ -25368,7 +25276,7 @@ return { [1]="physical_sword_damage_+%" } }, - [1228]={ + [1216]={ [1]={ [1]={ limit={ @@ -25397,7 +25305,7 @@ return { [1]="sword_damage_+%" } }, - [1229]={ + [1217]={ [1]={ [1]={ limit={ @@ -25426,7 +25334,7 @@ return { [1]="fire_sword_damage_+%" } }, - [1230]={ + [1218]={ [1]={ [1]={ limit={ @@ -25455,7 +25363,7 @@ return { [1]="cold_sword_damage_+%" } }, - [1231]={ + [1219]={ [1]={ [1]={ limit={ @@ -25484,7 +25392,7 @@ return { [1]="damage_+%_while_wielding_wand" } }, - [1232]={ + [1220]={ [1]={ [1]={ limit={ @@ -25513,7 +25421,7 @@ return { [1]="physical_wand_damage_+%" } }, - [1233]={ + [1221]={ [1]={ [1]={ limit={ @@ -25542,7 +25450,7 @@ return { [1]="fire_wand_damage_+%" } }, - [1234]={ + [1222]={ [1]={ [1]={ limit={ @@ -25571,7 +25479,7 @@ return { [1]="cold_wand_damage_+%" } }, - [1235]={ + [1223]={ [1]={ [1]={ limit={ @@ -25600,7 +25508,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1236]={ + [1224]={ [1]={ [1]={ limit={ @@ -25629,7 +25537,7 @@ return { [1]="spear_damage_+%" } }, - [1237]={ + [1225]={ [1]={ [1]={ limit={ @@ -25650,7 +25558,7 @@ return { [2]="from_self_maximum_added_fire_damage_taken" } }, - [1238]={ + [1226]={ [1]={ [1]={ limit={ @@ -25671,7 +25579,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [1239]={ + [1227]={ [1]={ [1]={ limit={ @@ -25692,7 +25600,7 @@ return { [2]="from_self_maximum_added_attack_fire_damage_taken" } }, - [1240]={ + [1228]={ [1]={ [1]={ limit={ @@ -25713,7 +25621,7 @@ return { [2]="unique_local_maximum_added_fire_damage_when_in_main_hand" } }, - [1241]={ + [1229]={ [1]={ [1]={ limit={ @@ -25742,7 +25650,7 @@ return { [1]="damage_with_fire_skills_+%" } }, - [1242]={ + [1230]={ [1]={ [1]={ limit={ @@ -25771,7 +25679,7 @@ return { [1]="cast_speed_for_fire_skills_+%" } }, - [1243]={ + [1231]={ [1]={ [1]={ limit={ @@ -25792,7 +25700,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken" } }, - [1244]={ + [1232]={ [1]={ [1]={ limit={ @@ -25813,7 +25721,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [1245]={ + [1233]={ [1]={ [1]={ limit={ @@ -25834,7 +25742,7 @@ return { [2]="from_self_maximum_added_attack_cold_damage_taken" } }, - [1246]={ + [1234]={ [1]={ [1]={ limit={ @@ -25855,7 +25763,7 @@ return { [2]="unique_local_maximum_added_cold_damage_when_in_off_hand" } }, - [1247]={ + [1235]={ [1]={ [1]={ limit={ @@ -25876,7 +25784,7 @@ return { [2]="spell_and_attack_maximum_added_fire_damage" } }, - [1248]={ + [1236]={ [1]={ [1]={ limit={ @@ -25897,7 +25805,7 @@ return { [2]="spell_and_attack_maximum_added_cold_damage" } }, - [1249]={ + [1237]={ [1]={ [1]={ limit={ @@ -25926,7 +25834,7 @@ return { [1]="damage_with_cold_skills_+%" } }, - [1250]={ + [1238]={ [1]={ [1]={ limit={ @@ -25955,7 +25863,7 @@ return { [1]="cast_speed_for_cold_skills_+%" } }, - [1251]={ + [1239]={ [1]={ [1]={ limit={ @@ -25976,7 +25884,7 @@ return { [2]="from_self_maximum_added_lightning_damage_taken" } }, - [1252]={ + [1240]={ [1]={ [1]={ limit={ @@ -25997,7 +25905,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [1253]={ + [1241]={ [1]={ [1]={ limit={ @@ -26018,7 +25926,7 @@ return { [2]="from_self_maximum_added_attack_lightning_damage_taken" } }, - [1254]={ + [1242]={ [1]={ [1]={ limit={ @@ -26047,7 +25955,7 @@ return { [1]="damage_with_lightning_skills_+%" } }, - [1255]={ + [1243]={ [1]={ [1]={ limit={ @@ -26076,7 +25984,7 @@ return { [1]="cast_speed_for_lightning_skills_+%" } }, - [1256]={ + [1244]={ [1]={ [1]={ limit={ @@ -26097,7 +26005,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [1257]={ + [1245]={ [1]={ [1]={ limit={ @@ -26118,7 +26026,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [1258]={ + [1246]={ [1]={ [1]={ limit={ @@ -26139,7 +26047,7 @@ return { [2]="from_self_maximum_added_attack_chaos_damage_taken" } }, - [1259]={ + [1247]={ [1]={ [1]={ limit={ @@ -26160,7 +26068,7 @@ return { [2]="local_maximum_added_chaos_damage" } }, - [1260]={ + [1248]={ [1]={ [1]={ limit={ @@ -26181,7 +26089,7 @@ return { [2]="unique_local_maximum_added_chaos_damage_when_in_off_hand" } }, - [1261]={ + [1249]={ [1]={ [1]={ limit={ @@ -26210,7 +26118,7 @@ return { [1]="cast_speed_for_chaos_skills_+%" } }, - [1262]={ + [1250]={ [1]={ [1]={ limit={ @@ -26231,7 +26139,7 @@ return { [2]="spell_maximum_base_physical_damage" } }, - [1263]={ + [1251]={ [1]={ [1]={ limit={ @@ -26252,7 +26160,7 @@ return { [2]="spell_maximum_base_fire_damage" } }, - [1264]={ + [1252]={ [1]={ [1]={ limit={ @@ -26273,7 +26181,7 @@ return { [2]="spell_maximum_base_cold_damage" } }, - [1265]={ + [1253]={ [1]={ [1]={ limit={ @@ -26294,7 +26202,7 @@ return { [2]="spell_maximum_base_lightning_damage" } }, - [1266]={ + [1254]={ [1]={ [1]={ limit={ @@ -26315,7 +26223,7 @@ return { [2]="spell_maximum_base_chaos_damage" } }, - [1267]={ + [1255]={ [1]={ [1]={ limit={ @@ -26336,7 +26244,7 @@ return { [2]="secondary_maximum_base_physical_damage" } }, - [1268]={ + [1256]={ [1]={ [1]={ limit={ @@ -26357,7 +26265,7 @@ return { [2]="secondary_maximum_base_fire_damage" } }, - [1269]={ + [1257]={ [1]={ [1]={ limit={ @@ -26378,7 +26286,7 @@ return { [2]="secondary_maximum_base_cold_damage" } }, - [1270]={ + [1258]={ [1]={ [1]={ limit={ @@ -26399,7 +26307,7 @@ return { [2]="secondary_maximum_base_lightning_damage" } }, - [1271]={ + [1259]={ [1]={ [1]={ limit={ @@ -26420,7 +26328,7 @@ return { [2]="secondary_maximum_base_chaos_damage" } }, - [1272]={ + [1260]={ [1]={ [1]={ limit={ @@ -26441,7 +26349,7 @@ return { [2]="spell_maximum_added_physical_damage" } }, - [1273]={ + [1261]={ [1]={ [1]={ limit={ @@ -26462,7 +26370,7 @@ return { [2]="spell_maximum_added_fire_damage" } }, - [1274]={ + [1262]={ [1]={ [1]={ limit={ @@ -26483,7 +26391,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [1275]={ + [1263]={ [1]={ [1]={ limit={ @@ -26504,7 +26412,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [1276]={ + [1264]={ [1]={ [1]={ limit={ @@ -26525,7 +26433,7 @@ return { [2]="spell_maximum_added_chaos_damage" } }, - [1277]={ + [1265]={ [1]={ [1]={ limit={ @@ -26546,7 +26454,7 @@ return { [2]="spell_maximum_base_cold_damage_+_per_10_intelligence" } }, - [1278]={ + [1266]={ [1]={ [1]={ limit={ @@ -26567,7 +26475,7 @@ return { [2]="spell_and_attack_maximum_added_lightning_damage" } }, - [1279]={ + [1267]={ [1]={ [1]={ limit={ @@ -26596,7 +26504,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [1280]={ + [1268]={ [1]={ [1]={ limit={ @@ -26625,7 +26533,7 @@ return { [1]="flicker_strike_more_attack_speed_+%_final" } }, - [1281]={ + [1269]={ [1]={ [1]={ limit={ @@ -26654,7 +26562,7 @@ return { [1]="melee_attack_speed_+%" } }, - [1282]={ + [1270]={ [1]={ [1]={ limit={ @@ -26683,7 +26591,7 @@ return { [1]="attack_speed_while_dual_wielding_+%" } }, - [1283]={ + [1271]={ [1]={ [1]={ limit={ @@ -26699,7 +26607,7 @@ return { [1]="base_off_hand_attack_speed_+%" } }, - [1284]={ + [1272]={ [1]={ [1]={ limit={ @@ -26728,7 +26636,7 @@ return { [1]="attack_speed_+%_while_holding_shield" } }, - [1285]={ + [1273]={ [1]={ [1]={ limit={ @@ -26757,7 +26665,7 @@ return { [1]="two_handed_melee_attack_speed_+%" } }, - [1286]={ + [1274]={ [1]={ [1]={ limit={ @@ -26786,7 +26694,7 @@ return { [1]="one_handed_melee_attack_speed_+%" } }, - [1287]={ + [1275]={ [1]={ [1]={ limit={ @@ -26815,7 +26723,7 @@ return { [1]="axe_attack_speed_+%" } }, - [1288]={ + [1276]={ [1]={ [1]={ limit={ @@ -26844,7 +26752,7 @@ return { [1]="quarterstaff_attack_speed_+%" } }, - [1289]={ + [1277]={ [1]={ [1]={ limit={ @@ -26873,7 +26781,7 @@ return { [1]="claw_attack_speed_+%" } }, - [1290]={ + [1278]={ [1]={ [1]={ limit={ @@ -26902,7 +26810,7 @@ return { [1]="dagger_attack_speed_+%" } }, - [1291]={ + [1279]={ [1]={ [1]={ limit={ @@ -26931,7 +26839,7 @@ return { [1]="mace_attack_speed_+%" } }, - [1292]={ + [1280]={ [1]={ [1]={ limit={ @@ -26960,7 +26868,7 @@ return { [1]="bow_attack_speed_+%" } }, - [1293]={ + [1281]={ [1]={ [1]={ limit={ @@ -26989,7 +26897,7 @@ return { [1]="sword_attack_speed_+%" } }, - [1294]={ + [1282]={ [1]={ [1]={ limit={ @@ -27018,7 +26926,7 @@ return { [1]="wand_attack_speed_+%" } }, - [1295]={ + [1283]={ [1]={ [1]={ limit={ @@ -27047,7 +26955,7 @@ return { [1]="spear_attack_speed_+%" } }, - [1296]={ + [1284]={ [1]={ [1]={ limit={ @@ -27076,7 +26984,7 @@ return { [1]="shield_attack_speed_+%" } }, - [1297]={ + [1285]={ [1]={ [1]={ limit={ @@ -27105,7 +27013,7 @@ return { [1]="unarmed_melee_attack_speed_+%" } }, - [1298]={ + [1286]={ [1]={ [1]={ limit={ @@ -27134,7 +27042,7 @@ return { [1]="damage_+%_with_movement_skills" } }, - [1299]={ + [1287]={ [1]={ [1]={ limit={ @@ -27163,7 +27071,7 @@ return { [1]="attack_speed_+%_with_movement_skills" } }, - [1300]={ + [1288]={ [1]={ [1]={ limit={ @@ -27192,7 +27100,7 @@ return { [1]="accuracy_rating_+%" } }, - [1301]={ + [1289]={ [1]={ [1]={ limit={ @@ -27221,7 +27129,7 @@ return { [1]="accuracy_rating_while_dual_wielding_+%" } }, - [1302]={ + [1290]={ [1]={ [1]={ limit={ @@ -27250,7 +27158,7 @@ return { [1]="one_handed_melee_accuracy_rating_+%" } }, - [1303]={ + [1291]={ [1]={ [1]={ limit={ @@ -27279,7 +27187,7 @@ return { [1]="two_handed_melee_accuracy_rating_+%" } }, - [1304]={ + [1292]={ [1]={ [1]={ limit={ @@ -27308,7 +27216,7 @@ return { [1]="axe_accuracy_rating_+%" } }, - [1305]={ + [1293]={ [1]={ [1]={ limit={ @@ -27337,7 +27245,7 @@ return { [1]="quarterstaff_accuracy_rating_+%" } }, - [1306]={ + [1294]={ [1]={ [1]={ limit={ @@ -27366,7 +27274,7 @@ return { [1]="claw_accuracy_rating_+%" } }, - [1307]={ + [1295]={ [1]={ [1]={ limit={ @@ -27395,7 +27303,7 @@ return { [1]="dagger_accuracy_rating_+%" } }, - [1308]={ + [1296]={ [1]={ [1]={ limit={ @@ -27424,7 +27332,7 @@ return { [1]="mace_accuracy_rating_+%" } }, - [1309]={ + [1297]={ [1]={ [1]={ limit={ @@ -27453,7 +27361,7 @@ return { [1]="bow_accuracy_rating_+%" } }, - [1310]={ + [1298]={ [1]={ [1]={ limit={ @@ -27482,7 +27390,7 @@ return { [1]="sword_accuracy_rating_+%" } }, - [1311]={ + [1299]={ [1]={ [1]={ limit={ @@ -27511,7 +27419,7 @@ return { [1]="wand_accuracy_rating_+%" } }, - [1312]={ + [1300]={ [1]={ [1]={ limit={ @@ -27540,7 +27448,7 @@ return { [1]="spear_accuracy_rating_+%" } }, - [1313]={ + [1301]={ [1]={ [1]={ limit={ @@ -27569,7 +27477,7 @@ return { [1]="cast_speed_while_dual_wielding_+%" } }, - [1314]={ + [1302]={ [1]={ [1]={ limit={ @@ -27598,7 +27506,7 @@ return { [1]="cast_speed_+%_while_holding_shield" } }, - [1315]={ + [1303]={ [1]={ [1]={ limit={ @@ -27627,7 +27535,7 @@ return { [1]="cast_speed_+%_while_holding_staff" } }, - [1316]={ + [1304]={ [1]={ [1]={ limit={ @@ -27656,7 +27564,7 @@ return { [1]="cast_speed_+%_while_holding_bow" } }, - [1317]={ + [1305]={ [1]={ [1]={ limit={ @@ -27672,7 +27580,7 @@ return { [1]="cast_speed_+%_per_power_charge" } }, - [1318]={ + [1306]={ [1]={ [1]={ limit={ @@ -27688,7 +27596,7 @@ return { [1]="poison_on_critical_strike_with_dagger" } }, - [1319]={ + [1307]={ [1]={ [1]={ limit={ @@ -27713,7 +27621,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_bow_%" } }, - [1320]={ + [1308]={ [1]={ [1]={ limit={ @@ -27738,7 +27646,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_dagger_%" } }, - [1321]={ + [1309]={ [1]={ [1]={ limit={ @@ -27754,7 +27662,7 @@ return { [1]="poison_on_critical_strike_with_bow" } }, - [1322]={ + [1310]={ [1]={ [1]={ [1]={ @@ -27774,7 +27682,7 @@ return { [1]="base_spell_critical_strike_chance" } }, - [1323]={ + [1311]={ [1]={ [1]={ [1]={ @@ -27794,7 +27702,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [1324]={ + [1312]={ [1]={ [1]={ limit={ @@ -27803,14 +27711,14 @@ return { [2]="#" } }, - text="Forks Critical Hits" + text="Bifurcates Critical Hits" } }, stats={ [1]="local_weapon_roll_crits_twice" } }, - [1325]={ + [1313]={ [1]={ [1]={ limit={ @@ -27826,7 +27734,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+30%" } }, - [1326]={ + [1314]={ [1]={ [1]={ limit={ @@ -27842,7 +27750,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+40%" } }, - [1327]={ + [1315]={ [1]={ [1]={ limit={ @@ -27858,7 +27766,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+50%" } }, - [1328]={ + [1316]={ [1]={ [1]={ limit={ @@ -27887,7 +27795,7 @@ return { [1]="local_critical_strike_chance_+%" } }, - [1329]={ + [1317]={ [1]={ [1]={ limit={ @@ -27916,7 +27824,7 @@ return { [1]="bow_critical_strike_chance_+%" } }, - [1330]={ + [1318]={ [1]={ [1]={ limit={ @@ -27945,7 +27853,7 @@ return { [1]="claw_critical_strike_chance_+%" } }, - [1331]={ + [1319]={ [1]={ [1]={ limit={ @@ -27974,7 +27882,7 @@ return { [1]="dagger_critical_strike_chance_+%" } }, - [1332]={ + [1320]={ [1]={ [1]={ limit={ @@ -28003,7 +27911,7 @@ return { [1]="sword_critical_strike_chance_+%" } }, - [1333]={ + [1321]={ [1]={ [1]={ limit={ @@ -28032,7 +27940,7 @@ return { [1]="mace_critical_strike_chance_+%" } }, - [1334]={ + [1322]={ [1]={ [1]={ limit={ @@ -28061,7 +27969,7 @@ return { [1]="quarterstaff_critical_strike_chance_+%" } }, - [1335]={ + [1323]={ [1]={ [1]={ limit={ @@ -28090,7 +27998,7 @@ return { [1]="wand_critical_strike_chance_+%" } }, - [1336]={ + [1324]={ [1]={ [1]={ limit={ @@ -28119,7 +28027,7 @@ return { [1]="axe_critical_strike_chance_+%" } }, - [1337]={ + [1325]={ [1]={ [1]={ limit={ @@ -28148,7 +28056,7 @@ return { [1]="spear_critical_strike_chance_+%" } }, - [1338]={ + [1326]={ [1]={ [1]={ limit={ @@ -28177,7 +28085,7 @@ return { [1]="critical_strike_chance_while_wielding_shield_+%" } }, - [1339]={ + [1327]={ [1]={ [1]={ limit={ @@ -28206,7 +28114,7 @@ return { [1]="mine_critical_strike_chance_+%" } }, - [1340]={ + [1328]={ [1]={ [1]={ limit={ @@ -28235,7 +28143,7 @@ return { [1]="two_handed_melee_critical_strike_chance_+%" } }, - [1341]={ + [1329]={ [1]={ [1]={ limit={ @@ -28251,7 +28159,7 @@ return { [1]="two_handed_melee_critical_strike_multiplier_+" } }, - [1342]={ + [1330]={ [1]={ [1]={ limit={ @@ -28280,7 +28188,7 @@ return { [1]="one_handed_melee_critical_strike_chance_+%" } }, - [1343]={ + [1331]={ [1]={ [1]={ limit={ @@ -28309,7 +28217,7 @@ return { [1]="melee_critical_strike_chance_+%" } }, - [1344]={ + [1332]={ [1]={ [1]={ limit={ @@ -28338,7 +28246,7 @@ return { [1]="critical_strike_chance_while_dual_wielding_+%" } }, - [1345]={ + [1333]={ [1]={ [1]={ limit={ @@ -28367,7 +28275,7 @@ return { [1]="fire_critical_strike_chance_+%" } }, - [1346]={ + [1334]={ [1]={ [1]={ limit={ @@ -28396,7 +28304,7 @@ return { [1]="lightning_critical_strike_chance_+%" } }, - [1347]={ + [1335]={ [1]={ [1]={ limit={ @@ -28425,7 +28333,7 @@ return { [1]="cold_critical_strike_chance_+%" } }, - [1348]={ + [1336]={ [1]={ [1]={ limit={ @@ -28454,7 +28362,7 @@ return { [1]="elemental_critical_strike_chance_+%" } }, - [1349]={ + [1337]={ [1]={ [1]={ limit={ @@ -28483,7 +28391,7 @@ return { [1]="chaos_critical_strike_chance_+%" } }, - [1350]={ + [1338]={ [1]={ [1]={ limit={ @@ -28512,7 +28420,7 @@ return { [1]="totem_critical_strike_chance_+%" } }, - [1351]={ + [1339]={ [1]={ [1]={ limit={ @@ -28541,7 +28449,7 @@ return { [1]="increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem" } }, - [1352]={ + [1340]={ [1]={ [1]={ limit={ @@ -28557,7 +28465,7 @@ return { [1]="critical_strike_multiplier_with_dagger_+" } }, - [1353]={ + [1341]={ [1]={ [1]={ limit={ @@ -28573,7 +28481,7 @@ return { [1]="mace_critical_strike_multiplier_+" } }, - [1354]={ + [1342]={ [1]={ [1]={ limit={ @@ -28589,7 +28497,7 @@ return { [1]="axe_critical_strike_multiplier_+" } }, - [1355]={ + [1343]={ [1]={ [1]={ limit={ @@ -28605,7 +28513,7 @@ return { [1]="bow_critical_strike_multiplier_+" } }, - [1356]={ + [1344]={ [1]={ [1]={ limit={ @@ -28621,7 +28529,7 @@ return { [1]="sword_critical_strike_multiplier_+" } }, - [1357]={ + [1345]={ [1]={ [1]={ limit={ @@ -28637,7 +28545,7 @@ return { [1]="wand_critical_strike_multiplier_+" } }, - [1358]={ + [1346]={ [1]={ [1]={ limit={ @@ -28653,7 +28561,7 @@ return { [1]="claw_critical_strike_multiplier_+" } }, - [1359]={ + [1347]={ [1]={ [1]={ limit={ @@ -28682,7 +28590,7 @@ return { [1]="quarterstaff_critical_strike_multiplier_+" } }, - [1360]={ + [1348]={ [1]={ [1]={ limit={ @@ -28698,7 +28606,7 @@ return { [1]="spear_critical_strike_multiplier_+" } }, - [1361]={ + [1349]={ [1]={ [1]={ limit={ @@ -28714,7 +28622,7 @@ return { [1]="one_handed_melee_critical_strike_multiplier_+" } }, - [1362]={ + [1350]={ [1]={ [1]={ limit={ @@ -28730,7 +28638,7 @@ return { [1]="melee_weapon_critical_strike_multiplier_+" } }, - [1363]={ + [1351]={ [1]={ [1]={ limit={ @@ -28746,7 +28654,7 @@ return { [1]="critical_strike_multiplier_while_dual_wielding_+" } }, - [1364]={ + [1352]={ [1]={ [1]={ limit={ @@ -28762,7 +28670,7 @@ return { [1]="melee_critical_strike_multiplier_+_while_wielding_shield" } }, - [1365]={ + [1353]={ [1]={ [1]={ limit={ @@ -28778,7 +28686,7 @@ return { [1]="mine_critical_strike_multiplier_+" } }, - [1366]={ + [1354]={ [1]={ [1]={ limit={ @@ -28794,7 +28702,7 @@ return { [1]="fire_critical_strike_multiplier_+" } }, - [1367]={ + [1355]={ [1]={ [1]={ limit={ @@ -28810,7 +28718,7 @@ return { [1]="lightning_critical_strike_multiplier_+" } }, - [1368]={ + [1356]={ [1]={ [1]={ limit={ @@ -28826,7 +28734,7 @@ return { [1]="cold_critical_strike_multiplier_+" } }, - [1369]={ + [1357]={ [1]={ [1]={ limit={ @@ -28842,7 +28750,7 @@ return { [1]="elemental_critical_strike_multiplier_+" } }, - [1370]={ + [1358]={ [1]={ [1]={ limit={ @@ -28858,7 +28766,7 @@ return { [1]="chaos_critical_strike_multiplier_+" } }, - [1371]={ + [1359]={ [1]={ [1]={ limit={ @@ -28887,7 +28795,7 @@ return { [1]="self_critical_strike_multiplier_-%_per_endurance_charge" } }, - [1372]={ + [1360]={ [1]={ [1]={ limit={ @@ -28903,7 +28811,7 @@ return { [1]="no_critical_strike_multiplier" } }, - [1373]={ + [1361]={ [1]={ [1]={ limit={ @@ -28919,7 +28827,7 @@ return { [1]="totem_critical_strike_multiplier_+" } }, - [1374]={ + [1362]={ [1]={ [1]={ limit={ @@ -28935,7 +28843,7 @@ return { [1]="while_using_mace_stun_threshold_reduction_+%" } }, - [1375]={ + [1363]={ [1]={ [1]={ limit={ @@ -28951,7 +28859,7 @@ return { [1]="bow_stun_threshold_reduction_+%" } }, - [1376]={ + [1364]={ [1]={ [1]={ limit={ @@ -28967,7 +28875,7 @@ return { [1]="global_knockback" } }, - [1377]={ + [1365]={ [1]={ [1]={ limit={ @@ -28983,7 +28891,7 @@ return { [1]="cannot_be_knocked_back" } }, - [1378]={ + [1366]={ [1]={ [1]={ limit={ @@ -29008,7 +28916,7 @@ return { [1]="avoid_knockback_%" } }, - [1379]={ + [1367]={ [1]={ [1]={ limit={ @@ -29024,7 +28932,7 @@ return { [1]="knockback_with_bow" } }, - [1380]={ + [1368]={ [1]={ [1]={ limit={ @@ -29040,7 +28948,7 @@ return { [1]="knockback_with_staff" } }, - [1381]={ + [1369]={ [1]={ [1]={ limit={ @@ -29056,7 +28964,7 @@ return { [1]="knockback_with_wand" } }, - [1382]={ + [1370]={ [1]={ [1]={ limit={ @@ -29072,7 +28980,7 @@ return { [1]="local_knockback" } }, - [1383]={ + [1371]={ [1]={ [1]={ limit={ @@ -29088,7 +28996,7 @@ return { [1]="base_ward" } }, - [1384]={ + [1372]={ [1]={ [1]={ limit={ @@ -29104,7 +29012,7 @@ return { [1]="local_ward" } }, - [1385]={ + [1373]={ [1]={ [1]={ limit={ @@ -29133,7 +29041,7 @@ return { [1]="ward_+%" } }, - [1386]={ + [1374]={ [1]={ [1]={ limit={ @@ -29162,7 +29070,7 @@ return { [1]="local_ward_+%" } }, - [1387]={ + [1375]={ [1]={ [1]={ limit={ @@ -29191,23 +29099,7 @@ return { [1]="ward_delay_recovery_+%" } }, - [1388]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Adaptation Rating" - } - }, - stats={ - [1]="base_adaptation_rating" - } - }, - [1389]={ + [1376]={ [1]={ [1]={ limit={ @@ -29236,81 +29128,7 @@ return { [1]="spirit_+%" } }, - [1390]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Adaptation Rating" - } - }, - stats={ - [1]="local_adaptation_rating" - } - }, - [1391]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Adaptation Rating" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Adaptation Rating" - } - }, - stats={ - [1]="adaptation_rating_+%" - } - }, - [1392]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Adaptation Rating" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Adaptation Rating" - } - }, - stats={ - [1]="local_adaptation_rating_+%" - } - }, - [1393]={ + [1377]={ [1]={ [1]={ limit={ @@ -29326,7 +29144,7 @@ return { [1]="max_adaptations_+" } }, - [1394]={ + [1378]={ [1]={ [1]={ limit={ @@ -29355,7 +29173,7 @@ return { [1]="adaptation_duration_+%" } }, - [1395]={ + [1379]={ [1]={ [1]={ limit={ @@ -29371,7 +29189,7 @@ return { [1]="maximum_physical_damage_reduction_%" } }, - [1396]={ + [1380]={ [1]={ [1]={ limit={ @@ -29400,7 +29218,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [1397]={ + [1381]={ [1]={ [1]={ limit={ @@ -29416,7 +29234,7 @@ return { [1]="evasion_rating_+_when_on_low_life" } }, - [1398]={ + [1382]={ [1]={ [1]={ limit={ @@ -29432,7 +29250,7 @@ return { [1]="evasion_rating_+_when_on_full_life" } }, - [1399]={ + [1383]={ [1]={ [1]={ limit={ @@ -29441,14 +29259,14 @@ return { [2]="#" } }, - text="{0:+d} to Evasion Rating per 1 Energy Shield on Equipped Helmet" + text="{0:+d} to Evasion Rating per 1 Item Energy Shield on Equipped Helmet" } }, stats={ [1]="evasion_rating_+_per_1_helmet_energy_shield" } }, - [1400]={ + [1384]={ [1]={ [1]={ limit={ @@ -29477,7 +29295,7 @@ return { [1]="evasion_rating_+%_while_onslaught_is_active" } }, - [1401]={ + [1385]={ [1]={ [1]={ limit={ @@ -29506,7 +29324,7 @@ return { [1]="local_armour_and_evasion_and_energy_shield_+%" } }, - [1402]={ + [1386]={ [1]={ [1]={ limit={ @@ -29535,36 +29353,7 @@ return { [1]="evasion_rating_+%_per_frenzy_charge" } }, - [1403]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% faster start of Energy Shield Recharge" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% slower start of Energy Shield Recharge" - } - }, - stats={ - [1]="energy_shield_delay_-%" - } - }, - [1404]={ + [1387]={ [1]={ [1]={ limit={ @@ -29580,7 +29369,7 @@ return { [1]="energy_shield_recharge_not_delayed_by_damage" } }, - [1405]={ + [1388]={ [1]={ [1]={ [1]={ @@ -29613,7 +29402,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_%" } }, - [1406]={ + [1389]={ [1]={ [1]={ limit={ @@ -29629,7 +29418,7 @@ return { [1]="maximum_energy_shield_+_per_100_life_reserved" } }, - [1407]={ + [1390]={ [1]={ [1]={ limit={ @@ -29638,14 +29427,14 @@ return { [2]="#" } }, - text="{0:+d} to maximum Energy Shield per 6 Evasion Rating on Equipped Body Armour" + text="{0:+d} to maximum Energy Shield per 6 Item Evasion Rating on Equipped Body Armour" } }, stats={ [1]="maximum_energy_shield_+_per_6_body_armour_evasion_rating" } }, - [1408]={ + [1391]={ [1]={ [1]={ limit={ @@ -29674,7 +29463,7 @@ return { [1]="energy_shield_recovery_rate_+%" } }, - [1409]={ + [1392]={ [1]={ [1]={ limit={ @@ -29703,7 +29492,7 @@ return { [1]="maximum_life_mana_and_energy_shield_+%" } }, - [1410]={ + [1393]={ [1]={ [1]={ limit={ @@ -29732,7 +29521,7 @@ return { [1]="monster_life_+%_final_from_rarity" } }, - [1411]={ + [1394]={ [1]={ [1]={ limit={ @@ -29761,7 +29550,7 @@ return { [1]="monster_life_+%_final_from_map" } }, - [1412]={ + [1395]={ [1]={ [1]={ [1]={ @@ -29781,7 +29570,7 @@ return { [1]="life_degeneration_per_minute_not_in_grace" } }, - [1413]={ + [1396]={ [1]={ [1]={ [1]={ @@ -29801,7 +29590,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_endurance_charge" } }, - [1414]={ + [1397]={ [1]={ [1]={ limit={ @@ -29830,7 +29619,7 @@ return { [1]="life_recovery_rate_+%" } }, - [1415]={ + [1398]={ [1]={ [1]={ [1]={ @@ -29850,7 +29639,7 @@ return { [1]="mana_regeneration_rate_per_minute_%" } }, - [1416]={ + [1399]={ [1]={ [1]={ [1]={ @@ -29870,7 +29659,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [1417]={ + [1400]={ [1]={ [1]={ [1]={ @@ -29890,7 +29679,7 @@ return { [1]="mana_degeneration_per_minute_not_in_grace" } }, - [1418]={ + [1401]={ [1]={ [1]={ [1]={ @@ -29910,7 +29699,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_power_charge" } }, - [1419]={ + [1402]={ [1]={ [1]={ limit={ @@ -29939,7 +29728,7 @@ return { [1]="mana_recovery_rate_+%" } }, - [1420]={ + [1403]={ [1]={ [1]={ limit={ @@ -29968,7 +29757,7 @@ return { [1]="maximum_life_+%_and_fire_resistance_-%" } }, - [1421]={ + [1404]={ [1]={ [1]={ limit={ @@ -29997,7 +29786,7 @@ return { [1]="maximum_mana_+%_and_cold_resistance_-%" } }, - [1422]={ + [1405]={ [1]={ [1]={ limit={ @@ -30026,7 +29815,7 @@ return { [1]="maximum_energy_shield_+%_and_lightning_resistance_-%" } }, - [1423]={ + [1406]={ [1]={ [1]={ limit={ @@ -30042,7 +29831,7 @@ return { [1]="cannot_be_damaged" } }, - [1424]={ + [1407]={ [1]={ [1]={ limit={ @@ -30071,7 +29860,7 @@ return { [1]="item_found_quantity_+%" } }, - [1425]={ + [1408]={ [1]={ [1]={ limit={ @@ -30100,7 +29889,7 @@ return { [1]="base_item_found_quantity_+%" } }, - [1426]={ + [1409]={ [1]={ [1]={ limit={ @@ -30129,7 +29918,7 @@ return { [1]="item_found_quantity_+%_when_on_low_life" } }, - [1427]={ + [1410]={ [1]={ [1]={ limit={ @@ -30158,7 +29947,7 @@ return { [1]="chest_item_quantity_+%" } }, - [1428]={ + [1411]={ [1]={ [1]={ limit={ @@ -30187,7 +29976,7 @@ return { [1]="item_found_rarity_+%" } }, - [1429]={ + [1412]={ [1]={ [1]={ limit={ @@ -30216,7 +30005,7 @@ return { [1]="local_display_aura_allies_have_increased_item_rarity_+%" } }, - [1430]={ + [1413]={ [1]={ [1]={ limit={ @@ -30245,7 +30034,7 @@ return { [1]="local_display_item_found_rarity_+%_for_you_and_nearby_allies" } }, - [1431]={ + [1414]={ [1]={ [1]={ limit={ @@ -30274,7 +30063,7 @@ return { [1]="item_found_rarity_+%_when_on_low_life" } }, - [1432]={ + [1415]={ [1]={ [1]={ limit={ @@ -30303,7 +30092,7 @@ return { [1]="chest_item_rarity_+%" } }, - [1433]={ + [1416]={ [1]={ [1]={ limit={ @@ -30332,7 +30121,7 @@ return { [1]="item_found_quality_+%" } }, - [1434]={ + [1417]={ [1]={ [1]={ limit={ @@ -30361,7 +30150,7 @@ return { [1]="item_found_relevancy_+%" } }, - [1435]={ + [1418]={ [1]={ [1]={ limit={ @@ -30390,7 +30179,7 @@ return { [1]="experience_gain_+%" } }, - [1436]={ + [1419]={ [1]={ [1]={ limit={ @@ -30419,7 +30208,7 @@ return { [1]="experience_loss_on_death_-%" } }, - [1437]={ + [1420]={ [1]={ [1]={ limit={ @@ -30435,7 +30224,7 @@ return { [1]="local_ring_disable_other_ring" } }, - [1438]={ + [1421]={ [1]={ [1]={ limit={ @@ -30451,7 +30240,7 @@ return { [1]="base_fire_immunity" } }, - [1439]={ + [1422]={ [1]={ [1]={ limit={ @@ -30467,7 +30256,7 @@ return { [1]="totem_fire_immunity" } }, - [1440]={ + [1423]={ [1]={ [1]={ limit={ @@ -30483,7 +30272,7 @@ return { [1]="physical_spell_skill_gem_level_+" } }, - [1441]={ + [1424]={ [1]={ [1]={ limit={ @@ -30499,7 +30288,7 @@ return { [1]="raise_zombie_gem_level_+" } }, - [1442]={ + [1425]={ [1]={ [1]={ limit={ @@ -30515,7 +30304,7 @@ return { [1]="raise_spectre_gem_level_+" } }, - [1443]={ + [1426]={ [1]={ [1]={ limit={ @@ -30531,7 +30320,7 @@ return { [1]="summon_skeleton_gem_level_+" } }, - [1444]={ + [1427]={ [1]={ [1]={ limit={ @@ -30547,7 +30336,7 @@ return { [1]="resist_all_elements_%_per_endurance_charge" } }, - [1445]={ + [1428]={ [1]={ [1]={ limit={ @@ -30563,7 +30352,7 @@ return { [1]="resist_all_elements_%_per_power_charge" } }, - [1446]={ + [1429]={ [1]={ [1]={ limit={ @@ -30579,7 +30368,7 @@ return { [1]="resist_all_elements_+%_while_holding_shield" } }, - [1447]={ + [1430]={ [1]={ [1]={ limit={ @@ -30595,7 +30384,7 @@ return { [1]="elemental_resistance_%_when_on_low_life" } }, - [1448]={ + [1431]={ [1]={ [1]={ limit={ @@ -30611,7 +30400,7 @@ return { [1]="fire_damage_resistance_is_%" } }, - [1449]={ + [1432]={ [1]={ [1]={ limit={ @@ -30627,7 +30416,7 @@ return { [1]="unique_fire_damage_resistance_%_when_red_gem_socketed" } }, - [1450]={ + [1433]={ [1]={ [1]={ limit={ @@ -30656,7 +30445,7 @@ return { [1]="fire_damage_resistance_%_when_on_low_life" } }, - [1451]={ + [1434]={ [1]={ [1]={ limit={ @@ -30685,7 +30474,7 @@ return { [1]="fire_damage_resistance_+%" } }, - [1452]={ + [1435]={ [1]={ [1]={ limit={ @@ -30701,7 +30490,7 @@ return { [1]="cold_damage_resistance_is_%" } }, - [1453]={ + [1436]={ [1]={ [1]={ limit={ @@ -30717,7 +30506,7 @@ return { [1]="unique_cold_damage_resistance_%_when_green_gem_socketed" } }, - [1454]={ + [1437]={ [1]={ [1]={ limit={ @@ -30746,7 +30535,7 @@ return { [1]="cold_damage_resistance_+%" } }, - [1455]={ + [1438]={ [1]={ [1]={ limit={ @@ -30762,7 +30551,7 @@ return { [1]="lightning_damage_resistance_is_%" } }, - [1456]={ + [1439]={ [1]={ [1]={ limit={ @@ -30778,7 +30567,7 @@ return { [1]="unique_lightning_damage_resistance_%_when_blue_gem_socketed" } }, - [1457]={ + [1440]={ [1]={ [1]={ limit={ @@ -30807,7 +30596,7 @@ return { [1]="lightning_damage_resistance_+%" } }, - [1458]={ + [1441]={ [1]={ [1]={ limit={ @@ -30823,7 +30612,7 @@ return { [1]="additional_maximum_all_resistances_%" } }, - [1459]={ + [1442]={ [1]={ [1]={ limit={ @@ -30856,7 +30645,7 @@ return { [1]="temporal_chains_effect_on_self_+%" } }, - [1460]={ + [1443]={ [1]={ [1]={ limit={ @@ -30889,7 +30678,7 @@ return { [1]="chill_effectiveness_on_self_+%" } }, - [1461]={ + [1444]={ [1]={ [1]={ limit={ @@ -30918,7 +30707,7 @@ return { [1]="trickster_damage_+%_final_per_different_mastery" } }, - [1462]={ + [1445]={ [1]={ [1]={ limit={ @@ -30934,7 +30723,7 @@ return { [1]="recover_%_life_on_kill_per_different_mastery" } }, - [1463]={ + [1446]={ [1]={ [1]={ limit={ @@ -30950,7 +30739,7 @@ return { [1]="recover_%_es_on_kill_per_different_mastery" } }, - [1464]={ + [1447]={ [1]={ [1]={ limit={ @@ -30966,7 +30755,7 @@ return { [1]="recover_%_mana_on_kill_per_different_mastery" } }, - [1465]={ + [1448]={ [1]={ [1]={ [1]={ @@ -30986,7 +30775,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies" } }, - [1466]={ + [1449]={ [1]={ [1]={ limit={ @@ -31015,7 +30804,7 @@ return { [1]="life_gain_per_target" } }, - [1467]={ + [1450]={ [1]={ [1]={ limit={ @@ -31044,7 +30833,7 @@ return { [1]="base_life_gained_on_spell_hit" } }, - [1468]={ + [1451]={ [1]={ [1]={ limit={ @@ -31073,7 +30862,7 @@ return { [1]="life_and_mana_gain_per_hit" } }, - [1469]={ + [1452]={ [1]={ [1]={ limit={ @@ -31102,7 +30891,7 @@ return { [1]="local_life_and_mana_gain_per_target" } }, - [1470]={ + [1453]={ [1]={ [1]={ limit={ @@ -31131,7 +30920,7 @@ return { [1]="life_gain_on_ignited_enemy_hit" } }, - [1471]={ + [1454]={ [1]={ [1]={ limit={ @@ -31160,7 +30949,7 @@ return { [1]="mana_gain_per_target" } }, - [1472]={ + [1455]={ [1]={ [1]={ limit={ @@ -31189,7 +30978,7 @@ return { [1]="local_mana_gain_per_target" } }, - [1473]={ + [1456]={ [1]={ [1]={ limit={ @@ -31218,7 +31007,7 @@ return { [1]="virtual_mana_gain_per_target" } }, - [1474]={ + [1457]={ [1]={ [1]={ limit={ @@ -31247,7 +31036,7 @@ return { [1]="energy_shield_gain_per_target" } }, - [1475]={ + [1458]={ [1]={ [1]={ limit={ @@ -31276,7 +31065,7 @@ return { [1]="recover_%_maximum_life_on_kill" } }, - [1476]={ + [1459]={ [1]={ [1]={ limit={ @@ -31305,7 +31094,7 @@ return { [1]="recover_energy_shield_%_on_kill" } }, - [1477]={ + [1460]={ [1]={ [1]={ limit={ @@ -31334,7 +31123,7 @@ return { [1]="recover_%_maximum_mana_on_kill" } }, - [1478]={ + [1461]={ [1]={ [1]={ limit={ @@ -31350,7 +31139,7 @@ return { [1]="recover_%_maximum_mana_on_killing_cursed_enemy" } }, - [1479]={ + [1462]={ [1]={ [1]={ limit={ @@ -31379,7 +31168,7 @@ return { [1]="life_gained_on_killing_ignited_enemies" } }, - [1480]={ + [1463]={ [1]={ [1]={ limit={ @@ -31395,7 +31184,7 @@ return { [1]="maximum_life_%_lost_on_kill" } }, - [1481]={ + [1464]={ [1]={ [1]={ limit={ @@ -31411,7 +31200,7 @@ return { [1]="maximum_mana_%_gained_on_kill" } }, - [1482]={ + [1465]={ [1]={ [1]={ limit={ @@ -31427,7 +31216,7 @@ return { [1]="maximum_energy_shield_%_lost_on_kill" } }, - [1483]={ + [1466]={ [1]={ [1]={ limit={ @@ -31456,7 +31245,7 @@ return { [1]="life_gained_on_block" } }, - [1484]={ + [1467]={ [1]={ [1]={ limit={ @@ -31485,7 +31274,7 @@ return { [1]="mana_gained_on_block" } }, - [1485]={ + [1468]={ [1]={ [1]={ limit={ @@ -31514,7 +31303,7 @@ return { [1]="energy_shield_gained_on_block" } }, - [1486]={ + [1469]={ [1]={ [1]={ limit={ @@ -31530,7 +31319,7 @@ return { [1]="recover_X_life_on_block" } }, - [1487]={ + [1470]={ [1]={ [1]={ limit={ @@ -31546,7 +31335,7 @@ return { [1]="minion_recover_X_life_on_block" } }, - [1488]={ + [1471]={ [1]={ [1]={ limit={ @@ -31575,7 +31364,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [1489]={ + [1472]={ [1]={ [1]={ limit={ @@ -31604,7 +31393,7 @@ return { [1]="minion_life_recovery_rate_+%" } }, - [1490]={ + [1473]={ [1]={ [1]={ limit={ @@ -31633,7 +31422,7 @@ return { [1]="minion_maximum_mana_+%" } }, - [1491]={ + [1474]={ [1]={ [1]={ limit={ @@ -31662,7 +31451,7 @@ return { [1]="minion_maximum_energy_shield_+%" } }, - [1492]={ + [1475]={ [1]={ [1]={ limit={ @@ -31691,7 +31480,7 @@ return { [1]="minion_movement_speed_+%" } }, - [1493]={ + [1476]={ [1]={ [1]={ limit={ @@ -31720,7 +31509,7 @@ return { [1]="base_spectre_maximum_life_+%" } }, - [1494]={ + [1477]={ [1]={ [1]={ limit={ @@ -31749,7 +31538,7 @@ return { [1]="base_zombie_maximum_life_+%" } }, - [1495]={ + [1478]={ [1]={ [1]={ limit={ @@ -31778,7 +31567,7 @@ return { [1]="base_fire_elemental_maximum_life_+%" } }, - [1496]={ + [1479]={ [1]={ [1]={ limit={ @@ -31807,7 +31596,7 @@ return { [1]="base_raven_maximum_life_+%" } }, - [1497]={ + [1480]={ [1]={ [1]={ limit={ @@ -31836,7 +31625,7 @@ return { [1]="totem_life_+%" } }, - [1498]={ + [1481]={ [1]={ [1]={ limit={ @@ -31865,7 +31654,7 @@ return { [1]="totem_mana_+%" } }, - [1499]={ + [1482]={ [1]={ [1]={ limit={ @@ -31894,7 +31683,7 @@ return { [1]="totem_energy_shield_+%" } }, - [1500]={ + [1483]={ [1]={ [1]={ limit={ @@ -31923,7 +31712,7 @@ return { [1]="totem_range_+%" } }, - [1501]={ + [1484]={ [1]={ [1]={ limit={ @@ -31952,7 +31741,7 @@ return { [1]="totem_duration_+%" } }, - [1502]={ + [1485]={ [1]={ [1]={ limit={ @@ -31981,7 +31770,7 @@ return { [1]="skeleton_duration_+%" } }, - [1503]={ + [1486]={ [1]={ [1]={ limit={ @@ -32010,7 +31799,7 @@ return { [1]="buff_duration_+%" } }, - [1504]={ + [1487]={ [1]={ [1]={ limit={ @@ -32039,7 +31828,7 @@ return { [1]="base_curse_duration_+%" } }, - [1505]={ + [1488]={ [1]={ [1]={ limit={ @@ -32068,7 +31857,7 @@ return { [1]="taunt_duration_+%" } }, - [1506]={ + [1489]={ [1]={ [1]={ limit={ @@ -32084,7 +31873,7 @@ return { [1]="life_gained_on_taunting_enemy" } }, - [1507]={ + [1490]={ [1]={ [1]={ limit={ @@ -32113,7 +31902,7 @@ return { [1]="mana_gained_on_hitting_taunted_enemy" } }, - [1508]={ + [1491]={ [1]={ [1]={ limit={ @@ -32129,7 +31918,7 @@ return { [1]="buff_affects_party" } }, - [1509]={ + [1492]={ [1]={ [1]={ limit={ @@ -32158,7 +31947,7 @@ return { [1]="buff_party_effect_radius_+%" } }, - [1510]={ + [1493]={ [1]={ [1]={ limit={ @@ -32174,7 +31963,7 @@ return { [1]="do_not_chain" } }, - [1511]={ + [1494]={ [1]={ [1]={ limit={ @@ -32190,7 +31979,7 @@ return { [1]="arrow_chains_+" } }, - [1512]={ + [1495]={ [1]={ [1]={ limit={ @@ -32206,7 +31995,7 @@ return { [1]="number_of_chains" } }, - [1513]={ + [1496]={ [1]={ [1]={ limit={ @@ -32235,7 +32024,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [1514]={ + [1497]={ [1]={ [1]={ limit={ @@ -32260,7 +32049,7 @@ return { [1]="arrow_base_number_of_targets_to_pierce" } }, - [1515]={ + [1498]={ [1]={ [1]={ limit={ @@ -32294,7 +32083,7 @@ return { [2]="number_of_additional_projectiles" } }, - [1516]={ + [1499]={ [1]={ [1]={ limit={ @@ -32310,7 +32099,7 @@ return { [1]="number_of_additional_arrows_if_havent_cast_dash_recently" } }, - [1517]={ + [1500]={ [1]={ [1]={ limit={ @@ -32339,7 +32128,7 @@ return { [1]="base_arrow_speed_+%" } }, - [1518]={ + [1501]={ [1]={ [1]={ limit={ @@ -32368,7 +32157,7 @@ return { [1]="projectile_speed_+%_with_crossbow_skills" } }, - [1519]={ + [1502]={ [1]={ [1]={ limit={ @@ -32397,7 +32186,7 @@ return { [1]="movement_velocity_+%_when_on_low_life" } }, - [1520]={ + [1503]={ [1]={ [1]={ limit={ @@ -32426,7 +32215,7 @@ return { [1]="movement_velocity_+%_when_on_full_life" } }, - [1521]={ + [1504]={ [1]={ [1]={ [1]={ @@ -32446,7 +32235,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_on_low_life" } }, - [1522]={ + [1505]={ [1]={ [1]={ limit={ @@ -32462,7 +32251,7 @@ return { [1]="movement_velocity_+%_per_frenzy_charge" } }, - [1523]={ + [1506]={ [1]={ [1]={ limit={ @@ -32478,7 +32267,7 @@ return { [1]="base_minimum_endurance_charges" } }, - [1524]={ + [1507]={ [1]={ [1]={ limit={ @@ -32494,7 +32283,7 @@ return { [1]="max_endurance_charges" } }, - [1525]={ + [1508]={ [1]={ [1]={ limit={ @@ -32510,7 +32299,7 @@ return { [1]="maximum_endurance_charges_is_equal_to_maximum_frenzy_charges" } }, - [1526]={ + [1509]={ [1]={ [1]={ limit={ @@ -32526,7 +32315,7 @@ return { [1]="modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges" } }, - [1527]={ + [1510]={ [1]={ [1]={ limit={ @@ -32542,7 +32331,7 @@ return { [1]="maximum_brutal_charges_is_equal_to_maximum_endurance_charges" } }, - [1528]={ + [1511]={ [1]={ [1]={ limit={ @@ -32558,7 +32347,7 @@ return { [1]="base_minimum_frenzy_charges" } }, - [1529]={ + [1512]={ [1]={ [1]={ limit={ @@ -32574,7 +32363,7 @@ return { [1]="max_frenzy_charges" } }, - [1530]={ + [1513]={ [1]={ [1]={ limit={ @@ -32590,7 +32379,7 @@ return { [1]="maximum_frenzy_charges_is_equal_to_maximum_power_charges" } }, - [1531]={ + [1514]={ [1]={ [1]={ limit={ @@ -32606,7 +32395,7 @@ return { [1]="modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges" } }, - [1532]={ + [1515]={ [1]={ [1]={ limit={ @@ -32622,7 +32411,7 @@ return { [1]="maximum_affliction_charges_is_equal_to_maximum_frenzy_charges" } }, - [1533]={ + [1516]={ [1]={ [1]={ limit={ @@ -32638,7 +32427,7 @@ return { [1]="base_minimum_power_charges" } }, - [1534]={ + [1517]={ [1]={ [1]={ limit={ @@ -32654,7 +32443,7 @@ return { [1]="max_power_charges" } }, - [1535]={ + [1518]={ [1]={ [1]={ limit={ @@ -32670,7 +32459,7 @@ return { [1]="maximum_power_and_frenzy_charges_+" } }, - [1536]={ + [1519]={ [1]={ [1]={ limit={ @@ -32686,7 +32475,7 @@ return { [1]="modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges" } }, - [1537]={ + [1520]={ [1]={ [1]={ limit={ @@ -32702,7 +32491,7 @@ return { [1]="maximum_absorption_charges_is_equal_to_maximum_power_charges" } }, - [1538]={ + [1521]={ [1]={ [1]={ limit={ @@ -32718,7 +32507,7 @@ return { [1]="add_endurance_charge_on_critical_strike" } }, - [1539]={ + [1522]={ [1]={ [1]={ limit={ @@ -32743,7 +32532,7 @@ return { [1]="chance_to_gain_endurance_charge_on_crit_%" } }, - [1540]={ + [1523]={ [1]={ [1]={ limit={ @@ -32768,7 +32557,7 @@ return { [1]="chance_to_gain_endurance_charge_on_melee_crit_%" } }, - [1541]={ + [1524]={ [1]={ [1]={ limit={ @@ -32784,7 +32573,7 @@ return { [1]="gain_endurance_charge_%_chance_on_using_fire_skill" } }, - [1542]={ + [1525]={ [1]={ [1]={ limit={ @@ -32809,7 +32598,7 @@ return { [1]="chance_to_gain_endurance_charge_on_bow_crit_%" } }, - [1543]={ + [1526]={ [1]={ [1]={ limit={ @@ -32834,7 +32623,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [1544]={ + [1527]={ [1]={ [1]={ limit={ @@ -32859,7 +32648,7 @@ return { [1]="chance_to_gain_power_charge_on_killing_frozen_enemy_%" } }, - [1545]={ + [1528]={ [1]={ [1]={ limit={ @@ -32906,7 +32695,7 @@ return { [2]="spell_maximum_added_cold_damage_per_power_charge" } }, - [1546]={ + [1529]={ [1]={ [1]={ limit={ @@ -32931,7 +32720,7 @@ return { [1]="num_of_additional_chains_at_max_frenzy_charges" } }, - [1547]={ + [1530]={ [1]={ [1]={ limit={ @@ -32956,7 +32745,7 @@ return { [1]="projectile_chain_from_terrain_chance_%" } }, - [1548]={ + [1531]={ [1]={ [1]={ limit={ @@ -32972,7 +32761,7 @@ return { [1]="add_frenzy_charge_on_critical_strike" } }, - [1549]={ + [1532]={ [1]={ [1]={ limit={ @@ -32988,7 +32777,7 @@ return { [1]="add_power_charge_on_critical_strike" } }, - [1550]={ + [1533]={ [1]={ [1]={ limit={ @@ -33013,7 +32802,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [1551]={ + [1534]={ [1]={ [1]={ limit={ @@ -33029,7 +32818,7 @@ return { [1]="add_power_charge_on_melee_critical_strike" } }, - [1552]={ + [1535]={ [1]={ [1]={ limit={ @@ -33045,7 +32834,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [1553]={ + [1536]={ [1]={ [1]={ limit={ @@ -33061,7 +32850,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [1554]={ + [1537]={ [1]={ [1]={ limit={ @@ -33077,7 +32866,7 @@ return { [1]="add_power_charge_on_skill_hit_%" } }, - [1555]={ + [1538]={ [1]={ [1]={ limit={ @@ -33093,7 +32882,7 @@ return { [1]="add_endurance_charge_on_enemy_critical_strike" } }, - [1556]={ + [1539]={ [1]={ [1]={ limit={ @@ -33109,7 +32898,7 @@ return { [1]="add_endurance_charge_on_status_ailment" } }, - [1557]={ + [1540]={ [1]={ [1]={ limit={ @@ -33125,7 +32914,7 @@ return { [1]="base_cannot_be_chilled" } }, - [1558]={ + [1541]={ [1]={ [1]={ limit={ @@ -33141,7 +32930,7 @@ return { [1]="base_cannot_be_chilled_or_frozen" } }, - [1559]={ + [1542]={ [1]={ [1]={ limit={ @@ -33157,7 +32946,7 @@ return { [1]="base_cannot_be_frozen" } }, - [1560]={ + [1543]={ [1]={ [1]={ limit={ @@ -33173,7 +32962,7 @@ return { [1]="base_cannot_be_ignited" } }, - [1561]={ + [1544]={ [1]={ [1]={ limit={ @@ -33189,7 +32978,7 @@ return { [1]="cannot_be_poisoned" } }, - [1562]={ + [1545]={ [1]={ [1]={ limit={ @@ -33205,7 +32994,7 @@ return { [1]="base_cannot_be_shocked" } }, - [1563]={ + [1546]={ [1]={ [1]={ limit={ @@ -33221,7 +33010,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [1564]={ + [1547]={ [1]={ [1]={ limit={ @@ -33237,7 +33026,7 @@ return { [1]="avoid_all_elemental_status_%" } }, - [1565]={ + [1548]={ [1]={ [1]={ limit={ @@ -33253,7 +33042,7 @@ return { [1]="base_avoid_chill_%" } }, - [1566]={ + [1549]={ [1]={ [1]={ limit={ @@ -33269,7 +33058,7 @@ return { [1]="base_avoid_freeze_%" } }, - [1567]={ + [1550]={ [1]={ [1]={ limit={ @@ -33285,7 +33074,7 @@ return { [1]="base_avoid_ignite_%" } }, - [1568]={ + [1551]={ [1]={ [1]={ limit={ @@ -33301,7 +33090,7 @@ return { [1]="avoid_ignite_%_when_on_low_life" } }, - [1569]={ + [1552]={ [1]={ [1]={ limit={ @@ -33317,7 +33106,7 @@ return { [1]="base_avoid_shock_%" } }, - [1570]={ + [1553]={ [1]={ [1]={ limit={ @@ -33333,7 +33122,7 @@ return { [1]="base_avoid_poison_%" } }, - [1571]={ + [1554]={ [1]={ [1]={ limit={ @@ -33349,7 +33138,7 @@ return { [1]="avoid_stun_%" } }, - [1572]={ + [1555]={ [1]={ [1]={ limit={ @@ -33365,7 +33154,7 @@ return { [1]="base_avoid_stun_%" } }, - [1573]={ + [1556]={ [1]={ [1]={ limit={ @@ -33381,7 +33170,7 @@ return { [1]="always_ignite" } }, - [1574]={ + [1557]={ [1]={ [1]={ limit={ @@ -33397,7 +33186,7 @@ return { [1]="always_shock" } }, - [1575]={ + [1558]={ [1]={ [1]={ limit={ @@ -33413,7 +33202,7 @@ return { [1]="always_stun" } }, - [1576]={ + [1559]={ [1]={ [1]={ limit={ @@ -33429,7 +33218,7 @@ return { [1]="cannot_stun" } }, - [1577]={ + [1560]={ [1]={ [1]={ limit={ @@ -33458,7 +33247,7 @@ return { [1]="chill_duration_+%" } }, - [1578]={ + [1561]={ [1]={ [1]={ limit={ @@ -33487,7 +33276,7 @@ return { [1]="shock_duration_+%" } }, - [1579]={ + [1562]={ [1]={ [1]={ limit={ @@ -33516,7 +33305,7 @@ return { [1]="freeze_duration_+%" } }, - [1580]={ + [1563]={ [1]={ [1]={ limit={ @@ -33545,7 +33334,7 @@ return { [1]="ignite_duration_+%" } }, - [1581]={ + [1564]={ [1]={ [1]={ limit={ @@ -33574,7 +33363,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [1582]={ + [1565]={ [1]={ [1]={ limit={ @@ -33603,7 +33392,7 @@ return { [1]="base_elemental_status_ailment_duration_+%" } }, - [1583]={ + [1566]={ [1]={ [1]={ limit={ @@ -33619,7 +33408,7 @@ return { [1]="cannot_inflict_elemental_ailments" } }, - [1584]={ + [1567]={ [1]={ [1]={ limit={ @@ -33648,7 +33437,7 @@ return { [1]="two_handed_melee_stun_duration_+%" } }, - [1585]={ + [1568]={ [1]={ [1]={ limit={ @@ -33677,7 +33466,7 @@ return { [1]="bow_stun_duration_+%" } }, - [1586]={ + [1569]={ [1]={ [1]={ limit={ @@ -33706,7 +33495,7 @@ return { [1]="staff_stun_duration_+%" } }, - [1587]={ + [1570]={ [1]={ [1]={ limit={ @@ -33735,7 +33524,7 @@ return { [1]="self_elemental_status_duration_-%" } }, - [1588]={ + [1571]={ [1]={ [1]={ limit={ @@ -33764,7 +33553,7 @@ return { [1]="self_chill_duration_-%" } }, - [1589]={ + [1572]={ [1]={ [1]={ limit={ @@ -33793,7 +33582,7 @@ return { [1]="self_freeze_duration_-%" } }, - [1590]={ + [1573]={ [1]={ [1]={ limit={ @@ -33822,7 +33611,7 @@ return { [1]="self_ignite_duration_-%" } }, - [1591]={ + [1574]={ [1]={ [1]={ limit={ @@ -33851,7 +33640,7 @@ return { [1]="chance_per_second_of_fire_spreading_between_enemies_%" } }, - [1592]={ + [1575]={ [1]={ [1]={ limit={ @@ -33880,7 +33669,7 @@ return { [1]="burn_damage_+%" } }, - [1593]={ + [1576]={ [1]={ [1]={ limit={ @@ -33896,7 +33685,7 @@ return { [1]="active_skill_level_+" } }, - [1594]={ + [1577]={ [1]={ [1]={ limit={ @@ -33925,7 +33714,7 @@ return { [1]="gem_experience_gain_+%" } }, - [1595]={ + [1578]={ [1]={ [1]={ limit={ @@ -33954,7 +33743,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [1596]={ + [1579]={ [1]={ [1]={ limit={ @@ -33983,7 +33772,7 @@ return { [1]="base_cost_+%" } }, - [1597]={ + [1580]={ [1]={ [1]={ limit={ @@ -34012,7 +33801,7 @@ return { [1]="base_life_cost_+%" } }, - [1598]={ + [1581]={ [1]={ [1]={ limit={ @@ -34041,7 +33830,7 @@ return { [1]="base_mana_cost_-%" } }, - [1599]={ + [1582]={ [1]={ [1]={ limit={ @@ -34070,7 +33859,7 @@ return { [1]="base_rage_cost_+%" } }, - [1600]={ + [1583]={ [1]={ [1]={ limit={ @@ -34099,7 +33888,7 @@ return { [1]="mana_cost_+%_while_on_full_energy_shield" } }, - [1601]={ + [1584]={ [1]={ [1]={ limit={ @@ -34132,7 +33921,7 @@ return { [1]="mana_cost_+%_when_on_low_life" } }, - [1602]={ + [1585]={ [1]={ [1]={ limit={ @@ -34148,7 +33937,7 @@ return { [1]="base_es_cost_+" } }, - [1603]={ + [1586]={ [1]={ [1]={ limit={ @@ -34164,7 +33953,7 @@ return { [1]="base_life_cost_+" } }, - [1604]={ + [1587]={ [1]={ [1]={ limit={ @@ -34180,7 +33969,7 @@ return { [1]="base_mana_cost_+" } }, - [1605]={ + [1588]={ [1]={ [1]={ limit={ @@ -34196,7 +33985,7 @@ return { [1]="skill_life_cost_+" } }, - [1606]={ + [1589]={ [1]={ [1]={ limit={ @@ -34212,7 +34001,7 @@ return { [1]="skill_mana_cost_+" } }, - [1607]={ + [1590]={ [1]={ [1]={ limit={ @@ -34228,7 +34017,7 @@ return { [1]="attacks_do_not_cost_mana" } }, - [1608]={ + [1591]={ [1]={ [1]={ limit={ @@ -34253,7 +34042,7 @@ return { [1]="skill_repeat_count" } }, - [1609]={ + [1592]={ [1]={ [1]={ limit={ @@ -34278,7 +34067,7 @@ return { [1]="spell_repeat_count" } }, - [1610]={ + [1593]={ [1]={ [1]={ limit={ @@ -34307,7 +34096,7 @@ return { [1]="skill_effect_duration_+%" } }, - [1611]={ + [1594]={ [1]={ [1]={ limit={ @@ -34336,7 +34125,7 @@ return { [1]="chaos_skill_effect_duration_+%" } }, - [1612]={ + [1595]={ [1]={ [1]={ limit={ @@ -34365,7 +34154,7 @@ return { [1]="skill_cooldown_-%" } }, - [1613]={ + [1596]={ [1]={ [1]={ limit={ @@ -34390,7 +34179,7 @@ return { [1]="avoid_interruption_while_casting_%" } }, - [1614]={ + [1597]={ [1]={ [1]={ limit={ @@ -34415,7 +34204,7 @@ return { [1]="attack_repeat_count" } }, - [1615]={ + [1598]={ [1]={ [1]={ limit={ @@ -34444,71 +34233,7 @@ return { [1]="stun_recovery_+%_per_frenzy_charge" } }, - [1616]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% reduced Enemy Chance to Block Sword Attacks" - } - }, - stats={ - [1]="while_using_sword_reduce_enemy_block_%" - } - }, - [1617]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% reduced Enemy Chance to Block Bow Attacks" - } - }, - stats={ - [1]="bow_enemy_block_-%" - } - }, - [1618]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% reduced Enemy Block Chance" - } - }, - stats={ - [1]="global_reduce_enemy_block_%" - } - }, - [1619]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemies have {0}% reduced chance to Dodge your Hits" - } - }, - stats={ - [1]="reduce_enemy_dodge_%" - } - }, - [1620]={ + [1599]={ [1]={ [1]={ limit={ @@ -34524,7 +34249,7 @@ return { [1]="prevent_monster_heal" } }, - [1621]={ + [1600]={ [1]={ [1]={ limit={ @@ -34553,7 +34278,7 @@ return { [1]="prevent_monster_heal_duration_+%" } }, - [1622]={ + [1601]={ [1]={ [1]={ limit={ @@ -34582,7 +34307,7 @@ return { [1]="chest_trap_defuse_%" } }, - [1623]={ + [1602]={ [1]={ [1]={ limit={ @@ -34598,7 +34323,7 @@ return { [1]="enemies_chill_as_unfrozen" } }, - [1624]={ + [1603]={ [1]={ [1]={ limit={ @@ -34614,7 +34339,7 @@ return { [1]="enemy_shock_on_kill" } }, - [1625]={ + [1604]={ [1]={ [1]={ limit={ @@ -34630,7 +34355,7 @@ return { [1]="local_is_max_quality" } }, - [1626]={ + [1605]={ [1]={ [1]={ limit={ @@ -34646,7 +34371,7 @@ return { [1]="local_quality_does_not_increase_damage" } }, - [1627]={ + [1606]={ [1]={ [1]={ limit={ @@ -34662,7 +34387,7 @@ return { [1]="local_quality_does_not_increase_defences" } }, - [1628]={ + [1607]={ [1]={ [1]={ limit={ @@ -34678,7 +34403,7 @@ return { [1]="local_extra_socket" } }, - [1629]={ + [1608]={ [1]={ [1]={ limit={ @@ -34694,7 +34419,7 @@ return { [1]="base_cannot_evade" } }, - [1630]={ + [1609]={ [1]={ [1]={ limit={ @@ -34710,7 +34435,7 @@ return { [1]="local_disable_gem_experience_gain" } }, - [1631]={ + [1610]={ [1]={ [1]={ limit={ @@ -34739,7 +34464,7 @@ return { [1]="local_gem_experience_gain_+%" } }, - [1632]={ + [1611]={ [1]={ [1]={ limit={ @@ -34768,7 +34493,7 @@ return { [1]="local_quantity_of_sockets_+%" } }, - [1633]={ + [1612]={ [1]={ [1]={ limit={ @@ -34797,7 +34522,7 @@ return { [1]="local_connectivity_of_sockets_+%" } }, - [1634]={ + [1613]={ [1]={ [1]={ limit={ @@ -34826,7 +34551,7 @@ return { [1]="trap_duration_+%" } }, - [1635]={ + [1614]={ [1]={ [1]={ limit={ @@ -34855,7 +34580,7 @@ return { [1]="mine_duration_+%" } }, - [1636]={ + [1615]={ [1]={ [1]={ limit={ @@ -34884,7 +34609,7 @@ return { [1]="hazard_duration_+%" } }, - [1637]={ + [1616]={ [1]={ [1]={ limit={ @@ -34913,7 +34638,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1638]={ + [1617]={ [1]={ [1]={ limit={ @@ -34942,7 +34667,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [1639]={ + [1618]={ [1]={ [1]={ limit={ @@ -34971,7 +34696,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1640]={ + [1619]={ [1]={ [1]={ limit={ @@ -35000,7 +34725,7 @@ return { [1]="mine_laying_speed_+%" } }, - [1641]={ + [1620]={ [1]={ [1]={ limit={ @@ -35029,7 +34754,7 @@ return { [1]="skill_internal_monster_responsiveness_+%" } }, - [1642]={ + [1621]={ [1]={ [1]={ limit={ @@ -35058,7 +34783,7 @@ return { [1]="skill_range_+%" } }, - [1643]={ + [1622]={ [1]={ [1]={ limit={ @@ -35074,7 +34799,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_physical" } }, - [1644]={ + [1623]={ [1]={ [1]={ limit={ @@ -35090,7 +34815,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [1645]={ + [1624]={ [1]={ [1]={ limit={ @@ -35106,7 +34831,7 @@ return { [1]="enemy_non_skill_physical_damage_%_as_extra_fire_vs_you" } }, - [1646]={ + [1625]={ [1]={ [1]={ limit={ @@ -35122,7 +34847,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_fire" } }, - [1647]={ + [1626]={ [1]={ [1]={ limit={ @@ -35138,7 +34863,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_cold" } }, - [1648]={ + [1627]={ [1]={ [1]={ limit={ @@ -35154,7 +34879,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning" } }, - [1649]={ + [1628]={ [1]={ [1]={ limit={ @@ -35170,7 +34895,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos" } }, - [1650]={ + [1629]={ [1]={ [1]={ limit={ @@ -35186,7 +34911,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_fire" } }, - [1651]={ + [1630]={ [1]={ [1]={ limit={ @@ -35202,7 +34927,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_cold" } }, - [1652]={ + [1631]={ [1]={ [1]={ limit={ @@ -35218,7 +34943,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_chaos" } }, - [1653]={ + [1632]={ [1]={ [1]={ limit={ @@ -35234,7 +34959,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_fire" } }, - [1654]={ + [1633]={ [1]={ [1]={ limit={ @@ -35250,7 +34975,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_chaos" } }, - [1655]={ + [1634]={ [1]={ [1]={ limit={ @@ -35266,7 +34991,7 @@ return { [1]="non_skill_base_fire_damage_%_to_gain_as_chaos" } }, - [1656]={ + [1635]={ [1]={ [1]={ limit={ @@ -35282,7 +35007,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_chaos" } }, - [1657]={ + [1636]={ [1]={ [1]={ limit={ @@ -35298,7 +35023,7 @@ return { [1]="non_skill_base_non_chaos_damage_%_to_gain_as_chaos" } }, - [1658]={ + [1637]={ [1]={ [1]={ [1]={ @@ -35318,7 +35043,7 @@ return { [1]="life_degeneration_%_per_minute_not_in_grace" } }, - [1659]={ + [1638]={ [1]={ [1]={ [1]={ @@ -35351,7 +35076,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [1660]={ + [1639]={ [1]={ [1]={ [1]={ @@ -35371,7 +35096,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_low_life" } }, - [1661]={ + [1640]={ [1]={ [1]={ [1]={ @@ -35391,7 +35116,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_taken_per_minute" } }, - [1662]={ + [1641]={ [1]={ [1]={ [1]={ @@ -35411,7 +35136,7 @@ return { [1]="base_chaos_damage_taken_per_minute" } }, - [1663]={ + [1642]={ [1]={ [1]={ limit={ @@ -35444,7 +35169,7 @@ return { [1]="chaos_damage_taken_over_time_+%" } }, - [1664]={ + [1643]={ [1]={ [1]={ limit={ @@ -35460,7 +35185,7 @@ return { [1]="display_mana_cost_reduction_%" } }, - [1665]={ + [1644]={ [1]={ [1]={ limit={ @@ -35476,7 +35201,7 @@ return { [1]="display_minion_maximum_life" } }, - [1666]={ + [1645]={ [1]={ [1]={ limit={ @@ -35492,7 +35217,7 @@ return { [1]="global_knockback_on_crit" } }, - [1667]={ + [1646]={ [1]={ [1]={ limit={ @@ -35508,7 +35233,7 @@ return { [1]="knockback_on_crit_with_bow" } }, - [1668]={ + [1647]={ [1]={ [1]={ limit={ @@ -35524,7 +35249,7 @@ return { [1]="knockback_on_crit_with_quarterstaff" } }, - [1669]={ + [1648]={ [1]={ [1]={ limit={ @@ -35540,7 +35265,7 @@ return { [1]="knockback_on_crit_with_wand" } }, - [1670]={ + [1649]={ [1]={ [1]={ limit={ @@ -35556,7 +35281,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire" } }, - [1671]={ + [1650]={ [1]={ [1]={ limit={ @@ -35572,7 +35297,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_fire" } }, - [1672]={ + [1651]={ [1]={ [1]={ limit={ @@ -35588,7 +35313,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold" } }, - [1673]={ + [1652]={ [1]={ [1]={ limit={ @@ -35604,7 +35329,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_cold" } }, - [1674]={ + [1653]={ [1]={ [1]={ limit={ @@ -35620,7 +35345,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [1675]={ + [1654]={ [1]={ [1]={ limit={ @@ -35636,7 +35361,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_lightning" } }, - [1676]={ + [1655]={ [1]={ [1]={ limit={ @@ -35652,7 +35377,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [1677]={ + [1656]={ [1]={ [1]={ limit={ @@ -35668,7 +35393,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos" } }, - [1678]={ + [1657]={ [1]={ [1]={ limit={ @@ -35684,7 +35409,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_chaos" } }, - [1679]={ + [1658]={ [1]={ [1]={ limit={ @@ -35700,7 +35425,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_convert_to_fire" } }, - [1680]={ + [1659]={ [1]={ [1]={ limit={ @@ -35716,7 +35441,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_convert_to_cold" } }, - [1681]={ + [1660]={ [1]={ [1]={ limit={ @@ -35732,7 +35457,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_convert_to_chaos" } }, - [1682]={ + [1661]={ [1]={ [1]={ limit={ @@ -35748,7 +35473,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_fire" } }, - [1683]={ + [1662]={ [1]={ [1]={ limit={ @@ -35764,7 +35489,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_lightning" } }, - [1684]={ + [1663]={ [1]={ [1]={ limit={ @@ -35780,7 +35505,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_chaos" } }, - [1685]={ + [1664]={ [1]={ [1]={ limit={ @@ -35796,7 +35521,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_chaos" } }, - [1686]={ + [1665]={ [1]={ [1]={ limit={ @@ -35825,7 +35550,7 @@ return { [1]="shield_maximum_energy_shield_+%" } }, - [1687]={ + [1666]={ [1]={ [1]={ limit={ @@ -35854,7 +35579,7 @@ return { [1]="minion_damage_+%" } }, - [1688]={ + [1667]={ [1]={ [1]={ limit={ @@ -35883,7 +35608,7 @@ return { [1]="minion_damage_+%_if_have_used_a_minion_skill_recently" } }, - [1689]={ + [1668]={ [1]={ [1]={ limit={ @@ -35912,7 +35637,7 @@ return { [1]="virtual_minion_damage_+%" } }, - [1690]={ + [1669]={ [1]={ [1]={ limit={ @@ -35941,7 +35666,7 @@ return { [1]="minion_damage_+%_per_5_dex" } }, - [1691]={ + [1670]={ [1]={ [1]={ limit={ @@ -35970,7 +35695,7 @@ return { [1]="mana_regeneration_rate_+%_per_power_charge" } }, - [1692]={ + [1671]={ [1]={ [1]={ limit={ @@ -35999,7 +35724,7 @@ return { [1]="elemental_damage_+%" } }, - [1693]={ + [1672]={ [1]={ [1]={ limit={ @@ -36028,7 +35753,7 @@ return { [1]="melee_physical_damage_+%" } }, - [1694]={ + [1673]={ [1]={ [1]={ limit={ @@ -36057,7 +35782,7 @@ return { [1]="melee_fire_damage_+%" } }, - [1695]={ + [1674]={ [1]={ [1]={ limit={ @@ -36086,7 +35811,7 @@ return { [1]="melee_cold_damage_+%" } }, - [1696]={ + [1675]={ [1]={ [1]={ limit={ @@ -36115,7 +35840,7 @@ return { [1]="melee_physical_damage_+%_while_holding_shield" } }, - [1697]={ + [1676]={ [1]={ [1]={ limit={ @@ -36144,7 +35869,7 @@ return { [1]="melee_fire_damage_+%_while_holding_shield" } }, - [1698]={ + [1677]={ [1]={ [1]={ limit={ @@ -36173,7 +35898,7 @@ return { [1]="melee_cold_damage_+%_while_holding_shield" } }, - [1699]={ + [1678]={ [1]={ [1]={ limit={ @@ -36202,7 +35927,7 @@ return { [1]="bow_physical_damage_+%_while_holding_shield" } }, - [1700]={ + [1679]={ [1]={ [1]={ limit={ @@ -36218,39 +35943,7 @@ return { [1]="additional_maximum_block_%" } }, - [1701]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to maximum Chance to Block Spell Damage" - } - }, - stats={ - [1]="base_maximum_spell_block_%" - } - }, - [1702]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to maximum Chance to Block Spell Damage per 50 Strength" - } - }, - stats={ - [1]="maximum_spell_block_chance_per_50_strength" - } - }, - [1703]={ + [1680]={ [1]={ [1]={ limit={ @@ -36279,7 +35972,7 @@ return { [1]="shield_evasion_rating_+%" } }, - [1704]={ + [1681]={ [1]={ [1]={ limit={ @@ -36308,7 +36001,7 @@ return { [1]="shield_physical_damage_reduction_rating_+%" } }, - [1705]={ + [1682]={ [1]={ [1]={ limit={ @@ -36324,7 +36017,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [1706]={ + [1683]={ [1]={ [1]={ limit={ @@ -36353,7 +36046,7 @@ return { [1]="projectile_damage_+%" } }, - [1707]={ + [1684]={ [1]={ [1]={ limit={ @@ -36382,7 +36075,7 @@ return { [1]="projectile_attack_damage_+%" } }, - [1708]={ + [1685]={ [1]={ [1]={ limit={ @@ -36411,7 +36104,7 @@ return { [1]="ranged_weapon_physical_damage_+%" } }, - [1709]={ + [1686]={ [1]={ [1]={ limit={ @@ -36440,7 +36133,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [1710]={ + [1687]={ [1]={ [1]={ limit={ @@ -36469,7 +36162,7 @@ return { [1]="cast_speed_+%_when_on_full_life" } }, - [1711]={ + [1688]={ [1]={ [1]={ limit={ @@ -36498,7 +36191,7 @@ return { [1]="cast_speed_+%_per_frenzy_charge" } }, - [1712]={ + [1689]={ [1]={ [1]={ limit={ @@ -36527,7 +36220,7 @@ return { [1]="knockback_distance_+%" } }, - [1713]={ + [1690]={ [1]={ [1]={ limit={ @@ -36556,7 +36249,7 @@ return { [1]="stun_duration_+%" } }, - [1714]={ + [1691]={ [1]={ [1]={ limit={ @@ -36572,7 +36265,7 @@ return { [1]="sword_accuracy_rating" } }, - [1715]={ + [1692]={ [1]={ [1]={ limit={ @@ -36588,7 +36281,7 @@ return { [1]="bow_accuracy_rating" } }, - [1716]={ + [1693]={ [1]={ [1]={ limit={ @@ -36604,7 +36297,7 @@ return { [1]="dagger_accuracy_rating" } }, - [1717]={ + [1694]={ [1]={ [1]={ limit={ @@ -36620,7 +36313,7 @@ return { [1]="axe_accuracy_rating" } }, - [1718]={ + [1695]={ [1]={ [1]={ limit={ @@ -36636,7 +36329,7 @@ return { [1]="claw_accuracy_rating" } }, - [1719]={ + [1696]={ [1]={ [1]={ limit={ @@ -36652,7 +36345,7 @@ return { [1]="staff_accuracy_rating" } }, - [1720]={ + [1697]={ [1]={ [1]={ limit={ @@ -36668,7 +36361,7 @@ return { [1]="mace_accuracy_rating" } }, - [1721]={ + [1698]={ [1]={ [1]={ limit={ @@ -36684,7 +36377,7 @@ return { [1]="wand_accuracy_rating" } }, - [1722]={ + [1699]={ [1]={ [1]={ limit={ @@ -36700,7 +36393,7 @@ return { [1]="spear_accuracy_rating" } }, - [1723]={ + [1700]={ [1]={ [1]={ limit={ @@ -36729,7 +36422,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [1724]={ + [1701]={ [1]={ [1]={ limit={ @@ -36758,7 +36451,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [1725]={ + [1702]={ [1]={ [1]={ limit={ @@ -36774,7 +36467,7 @@ return { [1]="skill_effect_duration_+%_per_10_strength" } }, - [1726]={ + [1703]={ [1]={ [1]={ limit={ @@ -36790,7 +36483,7 @@ return { [1]="strength_inherently_grants_accuracy_instead_of_life" } }, - [1727]={ + [1704]={ [1]={ [1]={ limit={ @@ -36806,7 +36499,7 @@ return { [1]="dexterity_inherently_grants_mana_instead_of_accuracy" } }, - [1728]={ + [1705]={ [1]={ [1]={ limit={ @@ -36822,7 +36515,7 @@ return { [1]="intelligence_inherently_grants_life_instead_of_mana" } }, - [1729]={ + [1706]={ [1]={ [1]={ limit={ @@ -36838,7 +36531,7 @@ return { [1]="gain_no_inherent_bonus_from_dexterity" } }, - [1730]={ + [1707]={ [1]={ [1]={ limit={ @@ -36854,7 +36547,7 @@ return { [1]="gain_no_inherent_bonus_from_intelligence" } }, - [1731]={ + [1708]={ [1]={ [1]={ limit={ @@ -36870,7 +36563,7 @@ return { [1]="gain_no_inherent_bonus_from_strength" } }, - [1732]={ + [1709]={ [1]={ [1]={ limit={ @@ -36886,7 +36579,7 @@ return { [1]="X_accuracy_per_2_intelligence" } }, - [1733]={ + [1710]={ [1]={ [1]={ limit={ @@ -36902,7 +36595,7 @@ return { [1]="X_life_per_4_dexterity" } }, - [1734]={ + [1711]={ [1]={ [1]={ limit={ @@ -36918,7 +36611,7 @@ return { [1]="X_mana_per_4_strength" } }, - [1735]={ + [1712]={ [1]={ [1]={ limit={ @@ -36934,7 +36627,7 @@ return { [1]="x_to_maximum_life_per_2_intelligence" } }, - [1736]={ + [1713]={ [1]={ [1]={ limit={ @@ -36963,7 +36656,7 @@ return { [1]="local_accuracy_rating_+%" } }, - [1737]={ + [1714]={ [1]={ [1]={ limit={ @@ -36988,7 +36681,7 @@ return { [1]="chance_to_scorch_%" } }, - [1738]={ + [1715]={ [1]={ [1]={ limit={ @@ -37017,7 +36710,7 @@ return { [1]="chieftain_burning_damage_+%_final" } }, - [1739]={ + [1716]={ [1]={ [1]={ limit={ @@ -37042,7 +36735,7 @@ return { [1]="chance_to_inflict_frostburn_%" } }, - [1740]={ + [1717]={ [1]={ [1]={ limit={ @@ -37058,7 +36751,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [1741]={ + [1718]={ [1]={ [1]={ limit={ @@ -37083,7 +36776,7 @@ return { [1]="chance_to_inflict_sapped_%" } }, - [1742]={ + [1719]={ [1]={ [1]={ limit={ @@ -37112,7 +36805,7 @@ return { [1]="area_damage_+%" } }, - [1743]={ + [1720]={ [1]={ [1]={ limit={ @@ -37128,7 +36821,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [1744]={ + [1721]={ [1]={ [1]={ limit={ @@ -37144,7 +36837,7 @@ return { [1]="stuns_have_culling_strike" } }, - [1745]={ + [1722]={ [1]={ [1]={ limit={ @@ -37160,7 +36853,7 @@ return { [1]="local_hit_causes_monster_flee_%" } }, - [1746]={ + [1723]={ [1]={ [1]={ limit={ @@ -37176,7 +36869,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [1747]={ + [1724]={ [1]={ [1]={ limit={ @@ -37192,7 +36885,7 @@ return { [1]="local_always_hit" } }, - [1748]={ + [1725]={ [1]={ [1]={ limit={ @@ -37208,7 +36901,7 @@ return { [1]="global_always_hit" } }, - [1749]={ + [1726]={ [1]={ [1]={ limit={ @@ -37237,7 +36930,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [1750]={ + [1727]={ [1]={ [1]={ limit={ @@ -37266,7 +36959,7 @@ return { [1]="attack_speed_+%_per_frenzy_charge" } }, - [1751]={ + [1728]={ [1]={ [1]={ limit={ @@ -37299,7 +36992,7 @@ return { [1]="attack_and_cast_speed_+%_per_frenzy_charge" } }, - [1752]={ + [1729]={ [1]={ [1]={ limit={ @@ -37328,7 +37021,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [1753]={ + [1730]={ [1]={ [1]={ limit={ @@ -37357,7 +37050,7 @@ return { [1]="accuracy_rating_+%_per_frenzy_charge" } }, - [1754]={ + [1731]={ [1]={ [1]={ limit={ @@ -37390,7 +37083,7 @@ return { [1]="frenzy_charge_duration_+%_per_frenzy_charge" } }, - [1755]={ + [1732]={ [1]={ [1]={ limit={ @@ -37406,7 +37099,7 @@ return { [1]="attacks_poison_while_at_max_frenzy_charges" } }, - [1756]={ + [1733]={ [1]={ [1]={ limit={ @@ -37431,7 +37124,7 @@ return { [1]="attacks_chance_to_poison_%_on_max_frenzy_charges" } }, - [1757]={ + [1734]={ [1]={ [1]={ limit={ @@ -37447,7 +37140,7 @@ return { [1]="critical_strike_multiplier_+_while_have_any_frenzy_charges" } }, - [1758]={ + [1735]={ [1]={ [1]={ limit={ @@ -37463,7 +37156,7 @@ return { [1]="global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges" } }, - [1759]={ + [1736]={ [1]={ [1]={ limit={ @@ -37492,7 +37185,7 @@ return { [1]="skill_area_of_effect_+%_while_no_frenzy_charges" } }, - [1760]={ + [1737]={ [1]={ [1]={ limit={ @@ -37521,7 +37214,7 @@ return { [1]="base_actor_scale_+%" } }, - [1761]={ + [1738]={ [1]={ [1]={ limit={ @@ -37537,7 +37230,7 @@ return { [1]="add_power_charge_on_minion_death" } }, - [1762]={ + [1739]={ [1]={ [1]={ limit={ @@ -37566,7 +37259,7 @@ return { [1]="flask_life_to_recover_+%" } }, - [1763]={ + [1740]={ [1]={ [1]={ limit={ @@ -37595,7 +37288,7 @@ return { [1]="flask_mana_to_recover_+%" } }, - [1764]={ + [1741]={ [1]={ [1]={ limit={ @@ -37611,7 +37304,7 @@ return { [1]="flask_recovery_speed_+%" } }, - [1765]={ + [1742]={ [1]={ [1]={ limit={ @@ -37679,7 +37372,7 @@ return { [2]="gain_flask_charge_when_crit_amount" } }, - [1766]={ + [1743]={ [1]={ [1]={ limit={ @@ -37708,7 +37401,7 @@ return { [1]="weapon_fire_damage_+%" } }, - [1767]={ + [1744]={ [1]={ [1]={ limit={ @@ -37737,7 +37430,7 @@ return { [1]="weapon_cold_damage_+%" } }, - [1768]={ + [1745]={ [1]={ [1]={ limit={ @@ -37766,7 +37459,7 @@ return { [1]="weapon_lightning_damage_+%" } }, - [1769]={ + [1746]={ [1]={ [1]={ limit={ @@ -37795,7 +37488,7 @@ return { [1]="weapon_chaos_damage_+%" } }, - [1770]={ + [1747]={ [1]={ [1]={ limit={ @@ -37811,7 +37504,7 @@ return { [1]="spell_elemental_damage_+%" } }, - [1771]={ + [1748]={ [1]={ [1]={ limit={ @@ -37827,7 +37520,7 @@ return { [1]="global_added_chaos_damage_%_of_ward" } }, - [1772]={ + [1749]={ [1]={ [1]={ limit={ @@ -37848,7 +37541,7 @@ return { [2]="attack_maximum_added_physical_damage_with_axes" } }, - [1773]={ + [1750]={ [1]={ [1]={ limit={ @@ -37869,7 +37562,7 @@ return { [2]="attack_maximum_added_physical_damage_with_bow" } }, - [1774]={ + [1751]={ [1]={ [1]={ limit={ @@ -37890,7 +37583,7 @@ return { [2]="attack_maximum_added_physical_damage_with_claws" } }, - [1775]={ + [1752]={ [1]={ [1]={ limit={ @@ -37911,7 +37604,7 @@ return { [2]="attack_maximum_added_physical_damage_with_daggers" } }, - [1776]={ + [1753]={ [1]={ [1]={ limit={ @@ -37932,7 +37625,7 @@ return { [2]="attack_maximum_added_physical_damage_with_maces" } }, - [1777]={ + [1754]={ [1]={ [1]={ limit={ @@ -37953,7 +37646,7 @@ return { [2]="attack_maximum_added_physical_damage_with_staves" } }, - [1778]={ + [1755]={ [1]={ [1]={ limit={ @@ -37974,7 +37667,7 @@ return { [2]="attack_maximum_added_physical_damage_with_swords" } }, - [1779]={ + [1756]={ [1]={ [1]={ limit={ @@ -37995,7 +37688,7 @@ return { [2]="attack_maximum_added_physical_damage_with_wands" } }, - [1780]={ + [1757]={ [1]={ [1]={ limit={ @@ -38016,7 +37709,7 @@ return { [2]="attack_maximum_added_physical_damage_while_unarmed" } }, - [1781]={ + [1758]={ [1]={ [1]={ limit={ @@ -38037,7 +37730,7 @@ return { [2]="attack_maximum_added_physical_damage_while_holding_a_shield" } }, - [1782]={ + [1759]={ [1]={ [1]={ limit={ @@ -38058,7 +37751,7 @@ return { [2]="attack_maximum_added_fire_damage_with_axes" } }, - [1783]={ + [1760]={ [1]={ [1]={ limit={ @@ -38079,7 +37772,7 @@ return { [2]="attack_maximum_added_fire_damage_with_bow" } }, - [1784]={ + [1761]={ [1]={ [1]={ limit={ @@ -38100,7 +37793,7 @@ return { [2]="attack_maximum_added_fire_damage_with_claws" } }, - [1785]={ + [1762]={ [1]={ [1]={ limit={ @@ -38121,7 +37814,7 @@ return { [2]="attack_maximum_added_fire_damage_with_daggers" } }, - [1786]={ + [1763]={ [1]={ [1]={ limit={ @@ -38142,7 +37835,7 @@ return { [2]="attack_maximum_added_fire_damage_with_maces" } }, - [1787]={ + [1764]={ [1]={ [1]={ limit={ @@ -38163,7 +37856,7 @@ return { [2]="attack_maximum_added_fire_damage_with_staves" } }, - [1788]={ + [1765]={ [1]={ [1]={ limit={ @@ -38184,7 +37877,7 @@ return { [2]="attack_maximum_added_fire_damage_with_swords" } }, - [1789]={ + [1766]={ [1]={ [1]={ limit={ @@ -38205,7 +37898,7 @@ return { [2]="attack_maximum_added_fire_damage_with_wand" } }, - [1790]={ + [1767]={ [1]={ [1]={ limit={ @@ -38226,7 +37919,7 @@ return { [2]="attack_maximum_added_cold_damage_with_axes" } }, - [1791]={ + [1768]={ [1]={ [1]={ limit={ @@ -38247,7 +37940,7 @@ return { [2]="attack_maximum_added_cold_damage_with_bows" } }, - [1792]={ + [1769]={ [1]={ [1]={ limit={ @@ -38268,7 +37961,7 @@ return { [2]="attack_maximum_added_cold_damage_with_claws" } }, - [1793]={ + [1770]={ [1]={ [1]={ limit={ @@ -38289,7 +37982,7 @@ return { [2]="attack_maximum_added_cold_damage_with_daggers" } }, - [1794]={ + [1771]={ [1]={ [1]={ limit={ @@ -38310,7 +38003,7 @@ return { [2]="attack_maximum_added_cold_damage_with_maces" } }, - [1795]={ + [1772]={ [1]={ [1]={ limit={ @@ -38331,7 +38024,7 @@ return { [2]="attack_maximum_added_cold_damage_with_staves" } }, - [1796]={ + [1773]={ [1]={ [1]={ limit={ @@ -38352,7 +38045,7 @@ return { [2]="attack_maximum_added_cold_damage_with_swords" } }, - [1797]={ + [1774]={ [1]={ [1]={ limit={ @@ -38373,7 +38066,7 @@ return { [2]="attack_maximum_added_cold_damage_with_wand" } }, - [1798]={ + [1775]={ [1]={ [1]={ limit={ @@ -38394,7 +38087,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_axes" } }, - [1799]={ + [1776]={ [1]={ [1]={ limit={ @@ -38415,7 +38108,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_bows" } }, - [1800]={ + [1777]={ [1]={ [1]={ limit={ @@ -38436,7 +38129,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_claws" } }, - [1801]={ + [1778]={ [1]={ [1]={ limit={ @@ -38457,7 +38150,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_daggers" } }, - [1802]={ + [1779]={ [1]={ [1]={ limit={ @@ -38478,7 +38171,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_maces" } }, - [1803]={ + [1780]={ [1]={ [1]={ limit={ @@ -38499,7 +38192,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_staves" } }, - [1804]={ + [1781]={ [1]={ [1]={ limit={ @@ -38520,7 +38213,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_swords" } }, - [1805]={ + [1782]={ [1]={ [1]={ limit={ @@ -38541,7 +38234,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_wand" } }, - [1806]={ + [1783]={ [1]={ [1]={ limit={ @@ -38562,7 +38255,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_bows" } }, - [1807]={ + [1784]={ [1]={ [1]={ limit={ @@ -38583,7 +38276,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_claws" } }, - [1808]={ + [1785]={ [1]={ [1]={ limit={ @@ -38604,7 +38297,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_daggers" } }, - [1809]={ + [1786]={ [1]={ [1]={ limit={ @@ -38625,7 +38318,7 @@ return { [2]="attack_maximum_added_cold_damage_with_spears" } }, - [1810]={ + [1787]={ [1]={ [1]={ limit={ @@ -38646,7 +38339,7 @@ return { [2]="attack_maximum_added_fire_damage_with_spears" } }, - [1811]={ + [1788]={ [1]={ [1]={ limit={ @@ -38667,7 +38360,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_spears" } }, - [1812]={ + [1789]={ [1]={ [1]={ limit={ @@ -38688,7 +38381,7 @@ return { [2]="attack_maximum_added_physical_damage_with_spears" } }, - [1813]={ + [1790]={ [1]={ [1]={ limit={ @@ -38709,7 +38402,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_dual_wielding" } }, - [1814]={ + [1791]={ [1]={ [1]={ limit={ @@ -38730,7 +38423,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_holding_a_shield" } }, - [1815]={ + [1792]={ [1]={ [1]={ limit={ @@ -38751,7 +38444,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon" } }, - [1816]={ + [1793]={ [1]={ [1]={ limit={ @@ -38772,7 +38465,7 @@ return { [2]="spell_maximum_added_cold_damage_while_dual_wielding" } }, - [1817]={ + [1794]={ [1]={ [1]={ limit={ @@ -38793,7 +38486,7 @@ return { [2]="spell_maximum_added_cold_damage_while_holding_a_shield" } }, - [1818]={ + [1795]={ [1]={ [1]={ limit={ @@ -38814,7 +38507,7 @@ return { [2]="spell_maximum_added_cold_damage_while_wielding_two_handed_weapon" } }, - [1819]={ + [1796]={ [1]={ [1]={ limit={ @@ -38835,7 +38528,7 @@ return { [2]="spell_maximum_added_fire_damage_while_dual_wielding" } }, - [1820]={ + [1797]={ [1]={ [1]={ limit={ @@ -38856,7 +38549,7 @@ return { [2]="spell_maximum_added_fire_damage_while_holding_a_shield" } }, - [1821]={ + [1798]={ [1]={ [1]={ limit={ @@ -38877,7 +38570,7 @@ return { [2]="spell_maximum_added_fire_damage_while_wielding_two_handed_weapon" } }, - [1822]={ + [1799]={ [1]={ [1]={ limit={ @@ -38898,7 +38591,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_dual_wielding" } }, - [1823]={ + [1800]={ [1]={ [1]={ limit={ @@ -38919,7 +38612,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_holding_a_shield" } }, - [1824]={ + [1801]={ [1]={ [1]={ limit={ @@ -38940,7 +38633,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon" } }, - [1825]={ + [1802]={ [1]={ [1]={ limit={ @@ -38961,7 +38654,7 @@ return { [2]="spell_maximum_added_physical_damage_while_dual_wielding" } }, - [1826]={ + [1803]={ [1]={ [1]={ limit={ @@ -38982,7 +38675,7 @@ return { [2]="spell_maximum_added_physical_damage_while_holding_a_shield" } }, - [1827]={ + [1804]={ [1]={ [1]={ limit={ @@ -39003,7 +38696,7 @@ return { [2]="spell_maximum_added_physical_damage_while_wielding_two_handed_weapon" } }, - [1828]={ + [1805]={ [1]={ [1]={ limit={ @@ -39032,7 +38725,7 @@ return { [1]="wand_elemental_damage_+%" } }, - [1829]={ + [1806]={ [1]={ [1]={ limit={ @@ -39061,7 +38754,7 @@ return { [1]="staff_elemental_damage_+%" } }, - [1830]={ + [1807]={ [1]={ [1]={ limit={ @@ -39090,7 +38783,7 @@ return { [1]="mace_elemental_damage_+%" } }, - [1831]={ + [1808]={ [1]={ [1]={ limit={ @@ -39115,7 +38808,7 @@ return { [1]="chance_to_gain_endurance_charge_on_block_%" } }, - [1832]={ + [1809]={ [1]={ [1]={ limit={ @@ -39144,7 +38837,7 @@ return { [1]="endurance_charge_duration_+%" } }, - [1833]={ + [1810]={ [1]={ [1]={ limit={ @@ -39160,7 +38853,7 @@ return { [1]="add_frenzy_charge_on_enemy_block" } }, - [1834]={ + [1811]={ [1]={ [1]={ limit={ @@ -39189,7 +38882,7 @@ return { [1]="base_frenzy_charge_duration_+%" } }, - [1835]={ + [1812]={ [1]={ [1]={ limit={ @@ -39214,7 +38907,7 @@ return { [1]="chance_to_gain_power_charge_when_block_%" } }, - [1836]={ + [1813]={ [1]={ [1]={ limit={ @@ -39230,7 +38923,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge" } }, - [1837]={ + [1814]={ [1]={ [1]={ limit={ @@ -39246,7 +38939,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge_up_to_50%" } }, - [1838]={ + [1815]={ [1]={ [1]={ limit={ @@ -39271,7 +38964,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1839]={ + [1816]={ [1]={ [1]={ limit={ @@ -39296,7 +38989,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1840]={ + [1817]={ [1]={ [1]={ limit={ @@ -39312,7 +39005,7 @@ return { [1]="damage_over_time_+%_per_frenzy_charge" } }, - [1841]={ + [1818]={ [1]={ [1]={ limit={ @@ -39328,7 +39021,7 @@ return { [1]="damage_over_time_+%_per_power_charge" } }, - [1842]={ + [1819]={ [1]={ [1]={ limit={ @@ -39344,7 +39037,7 @@ return { [1]="damage_over_time_+%_while_dual_wielding" } }, - [1843]={ + [1820]={ [1]={ [1]={ limit={ @@ -39360,7 +39053,7 @@ return { [1]="damage_over_time_+%_while_holding_a_shield" } }, - [1844]={ + [1821]={ [1]={ [1]={ limit={ @@ -39376,7 +39069,7 @@ return { [1]="damage_over_time_+%_while_wielding_two_handed_weapon" } }, - [1845]={ + [1822]={ [1]={ [1]={ limit={ @@ -39392,7 +39085,7 @@ return { [1]="elemental_damage_+%_per_frenzy_charge" } }, - [1846]={ + [1823]={ [1]={ [1]={ limit={ @@ -39421,7 +39114,7 @@ return { [1]="physical_damage_per_endurance_charge_+%" } }, - [1847]={ + [1824]={ [1]={ [1]={ limit={ @@ -39437,7 +39130,7 @@ return { [1]="spell_damage_+%_per_power_charge" } }, - [1848]={ + [1825]={ [1]={ [1]={ limit={ @@ -39453,7 +39146,7 @@ return { [1]="wand_damage_+%_per_power_charge" } }, - [1849]={ + [1826]={ [1]={ [1]={ limit={ @@ -39482,7 +39175,7 @@ return { [1]="power_charge_duration_+%" } }, - [1850]={ + [1827]={ [1]={ [1]={ limit={ @@ -39498,7 +39191,7 @@ return { [1]="add_power_charge_when_kill_shocked_enemy" } }, - [1851]={ + [1828]={ [1]={ [1]={ limit={ @@ -39514,7 +39207,7 @@ return { [1]="buff_effect_on_self_+%" } }, - [1852]={ + [1829]={ [1]={ [1]={ limit={ @@ -39543,7 +39236,7 @@ return { [1]="minions_have_non_curse_aura_effect_+%_from_parent_skills" } }, - [1853]={ + [1830]={ [1]={ [1]={ limit={ @@ -39559,7 +39252,7 @@ return { [1]="movement_velocity_+%_when_on_shocked_ground" } }, - [1854]={ + [1831]={ [1]={ [1]={ limit={ @@ -39575,7 +39268,7 @@ return { [1]="damage_+%_when_on_burning_ground" } }, - [1855]={ + [1832]={ [1]={ [1]={ [1]={ @@ -39595,7 +39288,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_chilled_ground" } }, - [1856]={ + [1833]={ [1]={ [1]={ limit={ @@ -39624,7 +39317,7 @@ return { [1]="desecrated_ground_effect_on_self_+%" } }, - [1857]={ + [1834]={ [1]={ [1]={ limit={ @@ -39640,7 +39333,7 @@ return { [1]="add_power_charge_when_interrupted_while_casting" } }, - [1858]={ + [1835]={ [1]={ [1]={ limit={ @@ -39656,7 +39349,7 @@ return { [1]="generate_endurance_charges_for_allies_in_your_presence" } }, - [1859]={ + [1836]={ [1]={ [1]={ limit={ @@ -39672,7 +39365,7 @@ return { [1]="generate_frenzy_charges_for_allies_in_your_presence" } }, - [1860]={ + [1837]={ [1]={ [1]={ limit={ @@ -39688,7 +39381,7 @@ return { [1]="generate_power_charges_for_allies_in_your_presence" } }, - [1861]={ + [1838]={ [1]={ [1]={ limit={ @@ -39717,7 +39410,7 @@ return { [1]="base_leech_amount_+%" } }, - [1862]={ + [1839]={ [1]={ [1]={ limit={ @@ -39746,7 +39439,7 @@ return { [1]="leech_rate_+%" } }, - [1863]={ + [1840]={ [1]={ [1]={ limit={ @@ -39775,7 +39468,7 @@ return { [1]="base_life_leech_amount_+%" } }, - [1864]={ + [1841]={ [1]={ [1]={ limit={ @@ -39804,7 +39497,7 @@ return { [1]="base_life_leech_rate_+%" } }, - [1865]={ + [1842]={ [1]={ [1]={ limit={ @@ -39833,7 +39526,7 @@ return { [1]="base_mana_leech_amount_+%" } }, - [1866]={ + [1843]={ [1]={ [1]={ limit={ @@ -39862,7 +39555,7 @@ return { [1]="base_mana_leech_rate_+%" } }, - [1867]={ + [1844]={ [1]={ [1]={ limit={ @@ -39891,7 +39584,7 @@ return { [1]="base_energy_shield_leech_rate_+%" } }, - [1868]={ + [1845]={ [1]={ [1]={ limit={ @@ -39907,7 +39600,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [1869]={ + [1846]={ [1]={ [1]={ limit={ @@ -39923,7 +39616,7 @@ return { [1]="base_number_of_skeletons_allowed" } }, - [1870]={ + [1847]={ [1]={ [1]={ limit={ @@ -39939,7 +39632,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [1871]={ + [1848]={ [1]={ [1]={ limit={ @@ -39948,14 +39641,14 @@ return { [2]="#" } }, - text="Your Curses have infinite Duration" + text="Curses you inflict have infinite Duration" } }, stats={ [1]="curses_never_expire" } }, - [1872]={ + [1849]={ [1]={ [1]={ limit={ @@ -39971,7 +39664,7 @@ return { [1]="no_physical_damage_reduction_rating" } }, - [1873]={ + [1850]={ [1]={ [1]={ limit={ @@ -39987,7 +39680,7 @@ return { [1]="no_energy_shield" } }, - [1874]={ + [1851]={ [1]={ [1]={ limit={ @@ -40003,7 +39696,7 @@ return { [1]="no_evasion_rating" } }, - [1875]={ + [1852]={ [1]={ [1]={ limit={ @@ -40019,7 +39712,7 @@ return { [1]="chaos_immunity" } }, - [1876]={ + [1853]={ [1]={ [1]={ limit={ @@ -40057,7 +39750,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [1877]={ + [1854]={ [1]={ [1]={ limit={ @@ -40095,7 +39788,7 @@ return { [1]="number_of_additional_marks_allowed" } }, - [1878]={ + [1855]={ [1]={ [1]={ limit={ @@ -40120,7 +39813,7 @@ return { [1]="number_of_additional_curses_allowed_on_self" } }, - [1879]={ + [1856]={ [1]={ [1]={ limit={ @@ -40153,7 +39846,7 @@ return { [1]="curse_effect_on_self_+%" } }, - [1880]={ + [1857]={ [1]={ [1]={ limit={ @@ -40182,7 +39875,7 @@ return { [1]="self_curse_duration_+%" } }, - [1881]={ + [1858]={ [1]={ [1]={ limit={ @@ -40198,7 +39891,7 @@ return { [1]="cannot_be_stunned" } }, - [1882]={ + [1859]={ [1]={ [1]={ limit={ @@ -40214,7 +39907,7 @@ return { [1]="base_cannot_be_stunned" } }, - [1883]={ + [1860]={ [1]={ [1]={ limit={ @@ -40230,7 +39923,7 @@ return { [1]="cannot_be_stunned_when_on_low_life" } }, - [1884]={ + [1861]={ [1]={ [1]={ limit={ @@ -40246,7 +39939,7 @@ return { [1]="mana_%_to_gain_as_energy_shield" } }, - [1885]={ + [1862]={ [1]={ [1]={ limit={ @@ -40262,7 +39955,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies" } }, - [1886]={ + [1863]={ [1]={ [1]={ limit={ @@ -40278,7 +39971,7 @@ return { [1]="global_cannot_crit" } }, - [1887]={ + [1864]={ [1]={ [1]={ limit={ @@ -40294,7 +39987,7 @@ return { [1]="ignore_armour_movement_penalties" } }, - [1888]={ + [1865]={ [1]={ [1]={ limit={ @@ -40310,7 +40003,39 @@ return { [1]="minions_use_parents_flasks_on_summon" } }, - [1889]={ + [1866]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Life Flask also applies to your Minions" + } + }, + stats={ + [1]="your_life_flasks_also_apply_to_your_minions" + } + }, + [1867]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions cannot Die while affected by a Life Flask" + } + }, + stats={ + [1]="minions_cannot_die_while_affected_by_life_flask" + } + }, + [1868]={ [1]={ [1]={ limit={ @@ -40343,7 +40068,7 @@ return { [1]="flask_mana_charges_used_+%" } }, - [1890]={ + [1869]={ [1]={ [1]={ limit={ @@ -40376,7 +40101,7 @@ return { [1]="minion_flask_charges_used_+%" } }, - [1891]={ + [1870]={ [1]={ [1]={ limit={ @@ -40405,7 +40130,7 @@ return { [1]="flask_duration_on_minions_+%" } }, - [1892]={ + [1871]={ [1]={ [1]={ limit={ @@ -40421,7 +40146,7 @@ return { [1]="cannot_resist_cold_damage" } }, - [1893]={ + [1872]={ [1]={ [1]={ limit={ @@ -40437,7 +40162,7 @@ return { [1]="minions_get_amulet_stats_instead_of_you" } }, - [1894]={ + [1873]={ [1]={ [1]={ limit={ @@ -40466,7 +40191,7 @@ return { [1]="chaos_inoculation_keystone_energy_shield_+%_final" } }, - [1895]={ + [1874]={ [1]={ [1]={ limit={ @@ -40495,7 +40220,7 @@ return { [1]="pain_attunement_keystone_critical_strike_multiplier_+%_final" } }, - [1896]={ + [1875]={ [1]={ [1]={ limit={ @@ -40529,7 +40254,7 @@ return { [2]="maximum_physical_damage_to_reflect_to_self_on_attack" } }, - [1897]={ + [1876]={ [1]={ [1]={ limit={ @@ -40550,7 +40275,7 @@ return { [2]="maximum_physical_damage_to_return_to_melee_attacker" } }, - [1898]={ + [1877]={ [1]={ [1]={ limit={ @@ -40571,7 +40296,7 @@ return { [2]="maximum_fire_damage_to_return_to_melee_attacker" } }, - [1899]={ + [1878]={ [1]={ [1]={ limit={ @@ -40592,7 +40317,7 @@ return { [2]="maximum_cold_damage_to_return_to_melee_attacker" } }, - [1900]={ + [1879]={ [1]={ [1]={ limit={ @@ -40613,7 +40338,7 @@ return { [2]="maximum_lightning_damage_to_return_to_melee_attacker" } }, - [1901]={ + [1880]={ [1]={ [1]={ limit={ @@ -40634,7 +40359,7 @@ return { [2]="maximum_chaos_damage_to_return_to_melee_attacker" } }, - [1902]={ + [1881]={ [1]={ [1]={ limit={ @@ -40650,7 +40375,7 @@ return { [1]="cold_damage_to_return_to_melee_attacker" } }, - [1903]={ + [1882]={ [1]={ [1]={ limit={ @@ -40666,7 +40391,7 @@ return { [1]="fire_damage_to_return_to_melee_attacker" } }, - [1904]={ + [1883]={ [1]={ [1]={ limit={ @@ -40682,7 +40407,7 @@ return { [1]="lightning_damage_to_return_to_melee_attacker" } }, - [1905]={ + [1884]={ [1]={ [1]={ limit={ @@ -40698,7 +40423,7 @@ return { [1]="chaos_damage_to_return_to_melee_attacker" } }, - [1906]={ + [1885]={ [1]={ [1]={ limit={ @@ -40714,7 +40439,7 @@ return { [1]="physical_damage_to_return_when_hit" } }, - [1907]={ + [1886]={ [1]={ [1]={ limit={ @@ -40730,7 +40455,7 @@ return { [1]="fire_damage_to_return_when_hit" } }, - [1908]={ + [1887]={ [1]={ [1]={ limit={ @@ -40746,7 +40471,7 @@ return { [1]="cold_damage_to_return_when_hit" } }, - [1909]={ + [1888]={ [1]={ [1]={ limit={ @@ -40762,7 +40487,7 @@ return { [1]="lightning_damage_to_return_when_hit" } }, - [1910]={ + [1889]={ [1]={ [1]={ limit={ @@ -40778,7 +40503,7 @@ return { [1]="chaos_damage_to_return_when_hit" } }, - [1911]={ + [1890]={ [1]={ [1]={ limit={ @@ -40807,7 +40532,7 @@ return { [1]="curse_cast_speed_+%" } }, - [1912]={ + [1891]={ [1]={ [1]={ limit={ @@ -40836,7 +40561,7 @@ return { [1]="hex_skill_cast_speed_+%" } }, - [1913]={ + [1892]={ [1]={ [1]={ limit={ @@ -40845,7 +40570,7 @@ return { [2]="#" } }, - text="Mark Skills have {0}% increased Cast Speed" + text="Mark Skills have {0}% increased Use Speed" }, [2]={ [1]={ @@ -40858,14 +40583,14 @@ return { [2]=-1 } }, - text="Mark Skills have {0}% reduced Cast Speed" + text="Mark Skills have {0}% reduced Use Speed" } }, stats={ - [1]="mark_skill_cast_speed_+%" + [1]="mark_use_speed_+%" } }, - [1914]={ + [1893]={ [1]={ [1]={ limit={ @@ -40881,7 +40606,7 @@ return { [1]="ignite_proliferation_radius_15" } }, - [1915]={ + [1894]={ [1]={ [1]={ [1]={ @@ -40914,7 +40639,7 @@ return { [1]="passive_notable_ignite_proliferation_radius" } }, - [1916]={ + [1895]={ [1]={ [1]={ limit={ @@ -40943,7 +40668,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [1917]={ + [1896]={ [1]={ [1]={ limit={ @@ -40972,7 +40697,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [1918]={ + [1897]={ [1]={ [1]={ limit={ @@ -41001,7 +40726,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [1919]={ + [1898]={ [1]={ [1]={ limit={ @@ -41030,7 +40755,7 @@ return { [1]="base_life_reservation_+%" } }, - [1920]={ + [1899]={ [1]={ [1]={ limit={ @@ -41059,7 +40784,7 @@ return { [1]="base_mana_reservation_efficiency_+%" } }, - [1921]={ + [1900]={ [1]={ [1]={ limit={ @@ -41088,7 +40813,7 @@ return { [1]="base_mana_reservation_+%" } }, - [1922]={ + [1901]={ [1]={ [1]={ limit={ @@ -41117,7 +40842,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [1923]={ + [1902]={ [1]={ [1]={ limit={ @@ -41146,7 +40871,7 @@ return { [1]="base_reservation_+%" } }, - [1924]={ + [1903]={ [1]={ [1]={ [1]={ @@ -41183,7 +40908,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1" } }, - [1925]={ + [1904]={ [1]={ [1]={ [1]={ @@ -41220,7 +40945,7 @@ return { [1]="reservation_efficiency_-2%_per_1" } }, - [1926]={ + [1905]={ [1]={ [1]={ limit={ @@ -41236,7 +40961,7 @@ return { [1]="physical_attack_damage_taken_+" } }, - [1927]={ + [1906]={ [1]={ [1]={ limit={ @@ -41252,7 +40977,7 @@ return { [1]="physical_damage_taken_+" } }, - [1928]={ + [1907]={ [1]={ [1]={ limit={ @@ -41268,7 +40993,7 @@ return { [1]="physical_damage_taken_+_per_level" } }, - [1929]={ + [1908]={ [1]={ [1]={ limit={ @@ -41284,7 +41009,7 @@ return { [1]="fire_damage_taken_+" } }, - [1930]={ + [1909]={ [1]={ [1]={ limit={ @@ -41313,7 +41038,7 @@ return { [1]="base_damage_taken_+%" } }, - [1931]={ + [1910]={ [1]={ [1]={ limit={ @@ -41346,7 +41071,7 @@ return { [1]="area_damage_taken_from_hits_+%" } }, - [1932]={ + [1911]={ [1]={ [1]={ limit={ @@ -41375,7 +41100,7 @@ return { [1]="damage_taken_+%_from_hits" } }, - [1933]={ + [1912]={ [1]={ [1]={ limit={ @@ -41404,7 +41129,7 @@ return { [1]="physical_damage_taken_+%" } }, - [1934]={ + [1913]={ [1]={ [1]={ limit={ @@ -41433,7 +41158,7 @@ return { [1]="fire_damage_taken_+%" } }, - [1935]={ + [1914]={ [1]={ [1]={ limit={ @@ -41466,7 +41191,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [1936]={ + [1915]={ [1]={ [1]={ limit={ @@ -41495,7 +41220,7 @@ return { [1]="damage_taken_+%_while_es_full" } }, - [1937]={ + [1916]={ [1]={ [1]={ limit={ @@ -41528,7 +41253,7 @@ return { [1]="degen_effect_+%" } }, - [1938]={ + [1917]={ [1]={ [1]={ limit={ @@ -41544,7 +41269,7 @@ return { [1]="physical_ranged_attack_damage_taken_+" } }, - [1939]={ + [1918]={ [1]={ [1]={ limit={ @@ -41573,7 +41298,7 @@ return { [1]="damage_taken_+%_from_skeletons" } }, - [1940]={ + [1919]={ [1]={ [1]={ limit={ @@ -41602,7 +41327,7 @@ return { [1]="damage_taken_+%_from_ghosts" } }, - [1941]={ + [1920]={ [1]={ [1]={ limit={ @@ -41618,7 +41343,7 @@ return { [1]="deal_no_damage_yourself" } }, - [1942]={ + [1921]={ [1]={ [1]={ limit={ @@ -41634,7 +41359,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [1943]={ + [1922]={ [1]={ [1]={ limit={ @@ -41659,7 +41384,7 @@ return { [1]="base_number_of_traps_allowed" } }, - [1944]={ + [1923]={ [1]={ [1]={ limit={ @@ -41684,7 +41409,7 @@ return { [1]="base_number_of_remote_mines_allowed" } }, - [1945]={ + [1924]={ [1]={ [1]={ limit={ @@ -41700,7 +41425,7 @@ return { [1]="number_of_additional_totems_allowed" } }, - [1946]={ + [1925]={ [1]={ [1]={ limit={ @@ -41751,7 +41476,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [1947]={ + [1926]={ [1]={ [1]={ limit={ @@ -41802,23 +41527,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [1948]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You cannot Block" - } - }, - stats={ - [1]="cannot_block_attacks" - } - }, - [1949]={ + [1927]={ [1]={ [1]={ limit={ @@ -41834,23 +41543,7 @@ return { [1]="additional_physical_damage_reduction_%_when_on_low_life" } }, - [1950]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Conductivity Skills" - } - }, - stats={ - [1]="conductivity_gem_level_+" - } - }, - [1951]={ + [1928]={ [1]={ [1]={ limit={ @@ -41866,23 +41559,7 @@ return { [1]="despair_gem_level_+" } }, - [1952]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Enfeeble Skills" - } - }, - stats={ - [1]="enfeeble_gem_level_+" - } - }, - [1953]={ + [1929]={ [1]={ [1]={ limit={ @@ -41891,14 +41568,14 @@ return { [2]="#" } }, - text="{0:+d} to Level of Flammability Skills" + text="{0:+d} to Level of Elemental Weakness Skills" } }, stats={ - [1]="flammability_gem_level_+" + [1]="elemental_weakness_gem_level_+" } }, - [1954]={ + [1930]={ [1]={ [1]={ limit={ @@ -41907,14 +41584,14 @@ return { [2]="#" } }, - text="{0:+d} to Level of Hypothermia Skills" + text="{0:+d} to Level of Enfeeble Skills" } }, stats={ - [1]="hypothermia_gem_level_+" + [1]="enfeeble_gem_level_+" } }, - [1955]={ + [1931]={ [1]={ [1]={ limit={ @@ -41939,7 +41616,7 @@ return { [1]="map_addtional_magic_chest_amount" } }, - [1956]={ + [1932]={ [1]={ [1]={ limit={ @@ -41964,7 +41641,7 @@ return { [1]="map_addtional_rare_chest_amount" } }, - [1957]={ + [1933]={ [1]={ [1]={ limit={ @@ -41993,7 +41670,7 @@ return { [1]="map_chest_amount_+%" } }, - [1958]={ + [1934]={ [1]={ [1]={ limit={ @@ -42009,7 +41686,7 @@ return { [1]="map_contains_buried_treasure" } }, - [1959]={ + [1935]={ [1]={ [1]={ limit={ @@ -42025,7 +41702,7 @@ return { [1]="map_contains_x_additional_packs_with_mirrored_rare_monsters" } }, - [1960]={ + [1936]={ [1]={ [1]={ limit={ @@ -42041,7 +41718,7 @@ return { [1]="map_all_items_drop_as_gold" } }, - [1961]={ + [1937]={ [1]={ [1]={ limit={ @@ -42057,65 +41734,7 @@ return { [1]="map_duplicate_all_rare_monsters" } }, - [1962]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Experience gain" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Experience gain" - } - }, - stats={ - [1]="map_experience_gain_+%" - } - }, - [1963]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Gold found in this Area" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Gold found in this Area" - } - }, - stats={ - [1]="map_extra_gold_piles_chance_%" - } - }, - [1964]={ + [1938]={ [1]={ [1]={ limit={ @@ -42144,65 +41763,7 @@ return { [1]="map_gold_+%" } }, - [1965]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Quantity of Items found in this Area" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Quantity of Items found in this Area" - } - }, - stats={ - [1]="map_item_drop_quantity_+%" - } - }, - [1966]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Rarity of Items found in this Area" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Rarity of Items found in this Area" - } - }, - stats={ - [1]="map_item_drop_rarity_+%" - } - }, - [1967]={ + [1939]={ [1]={ [1]={ limit={ @@ -42231,7 +41792,7 @@ return { [1]="map_magic_chest_amount_+%" } }, - [1968]={ + [1940]={ [1]={ [1]={ limit={ @@ -42260,7 +41821,7 @@ return { [1]="map_magic_pack_size_+%" } }, - [1969]={ + [1941]={ [1]={ [1]={ limit={ @@ -42276,7 +41837,7 @@ return { [1]="map_monster_additional_baron_packs" } }, - [1970]={ + [1942]={ [1]={ [1]={ limit={ @@ -42292,7 +41853,7 @@ return { [1]="map_monster_additional_beasts_packs" } }, - [1971]={ + [1943]={ [1]={ [1]={ limit={ @@ -42308,7 +41869,7 @@ return { [1]="map_monster_additional_bramble_packs" } }, - [1972]={ + [1944]={ [1]={ [1]={ limit={ @@ -42324,7 +41885,7 @@ return { [1]="map_monster_additional_doryani_packs" } }, - [1973]={ + [1945]={ [1]={ [1]={ limit={ @@ -42340,7 +41901,7 @@ return { [1]="map_monster_additional_ezomyte_packs" } }, - [1974]={ + [1946]={ [1]={ [1]={ limit={ @@ -42356,7 +41917,7 @@ return { [1]="map_monster_additional_faridun_packs" } }, - [1975]={ + [1947]={ [1]={ [1]={ limit={ @@ -42372,7 +41933,7 @@ return { [1]="map_monster_additional_perennial_packs" } }, - [1976]={ + [1948]={ [1]={ [1]={ limit={ @@ -42388,7 +41949,7 @@ return { [1]="map_monster_additional_undead_packs" } }, - [1977]={ + [1949]={ [1]={ [1]={ limit={ @@ -42404,7 +41965,7 @@ return { [1]="map_monster_additional_vaal_packs" } }, - [1978]={ + [1950]={ [1]={ [1]={ limit={ @@ -42433,68 +41994,7 @@ return { [1]="map_monster_tre_+%" } }, - [1979]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased Magic Monsters" - } - }, - stats={ - [1]="map_number_of_magic_packs_+%" - } - }, - [1980]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased number of Rare Monsters" - } - }, - stats={ - [1]="map_number_of_rare_packs_+%" - } - }, - [1981]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Pack size" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Pack size" - } - }, - stats={ - [1]="map_pack_size_+%" - } - }, - [1982]={ + [1951]={ [1]={ [1]={ limit={ @@ -42523,7 +42023,7 @@ return { [1]="map_rare_chest_amount_+%" } }, - [1983]={ + [1952]={ [1]={ [1]={ limit={ @@ -42539,7 +42039,7 @@ return { [1]="temporal_chains_gem_level_+" } }, - [1984]={ + [1953]={ [1]={ [1]={ limit={ @@ -42555,7 +42055,7 @@ return { [1]="vulnerability_gem_level_+" } }, - [1985]={ + [1954]={ [1]={ [1]={ limit={ @@ -42571,7 +42071,7 @@ return { [1]="endurance_only_conduit" } }, - [1986]={ + [1955]={ [1]={ [1]={ limit={ @@ -42587,7 +42087,7 @@ return { [1]="frenzy_only_conduit" } }, - [1987]={ + [1956]={ [1]={ [1]={ limit={ @@ -42603,7 +42103,7 @@ return { [1]="power_only_conduit" } }, - [1988]={ + [1957]={ [1]={ [1]={ limit={ @@ -42619,7 +42119,7 @@ return { [1]="local_chance_to_blind_on_hit_%" } }, - [1989]={ + [1958]={ [1]={ [1]={ limit={ @@ -42644,7 +42144,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [1990]={ + [1959]={ [1]={ [1]={ limit={ @@ -42673,7 +42173,7 @@ return { [1]="fortify_duration_+%" } }, - [1991]={ + [1960]={ [1]={ [1]={ limit={ @@ -42689,23 +42189,7 @@ return { [1]="should_use_alternate_fortify" } }, - [1992]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage per Fortification" - } - }, - stats={ - [1]="spell_suppression_chance_%_per_fortification" - } - }, - [1993]={ + [1961]={ [1]={ [1]={ limit={ @@ -42734,7 +42218,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_fortify" } }, - [1994]={ + [1962]={ [1]={ [1]={ limit={ @@ -42763,7 +42247,7 @@ return { [1]="melee_cold_damage_+%_while_fortify_is_active" } }, - [1995]={ + [1963]={ [1]={ [1]={ limit={ @@ -42792,7 +42276,7 @@ return { [1]="melee_physical_damage_+%_while_fortify_is_active" } }, - [1996]={ + [1964]={ [1]={ [1]={ limit={ @@ -42808,7 +42292,7 @@ return { [1]="no_life_regeneration" } }, - [1997]={ + [1965]={ [1]={ [1]={ limit={ @@ -42824,7 +42308,7 @@ return { [1]="no_mana_regeneration" } }, - [1998]={ + [1966]={ [1]={ [1]={ limit={ @@ -42840,7 +42324,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1999]={ + [1967]={ [1]={ [1]={ limit={ @@ -42856,7 +42340,7 @@ return { [1]="physical_damage_reduction_%_per_endurance_charge" } }, - [2000]={ + [1968]={ [1]={ [1]={ limit={ @@ -42872,7 +42356,7 @@ return { [1]="map_size_+%" } }, - [2001]={ + [1969]={ [1]={ [1]={ limit={ @@ -42888,7 +42372,7 @@ return { [1]="delve_biome_contains_delve_boss" } }, - [2002]={ + [1970]={ [1]={ [1]={ limit={ @@ -42904,7 +42388,7 @@ return { [1]="delve_biome_boss_drops_additional_unique_item" } }, - [2003]={ + [1971]={ [1]={ [1]={ limit={ @@ -42920,7 +42404,7 @@ return { [1]="delve_biome_boss_drops_extra_precursor_component_ring" } }, - [2004]={ + [1972]={ [1]={ [1]={ limit={ @@ -42936,7 +42420,7 @@ return { [1]="delve_biome_boss_drops_x_additional_fossils" } }, - [2005]={ + [1973]={ [1]={ [1]={ limit={ @@ -42952,7 +42436,7 @@ return { [1]="delve_biome_boss_hits_always_crit" } }, - [2006]={ + [1974]={ [1]={ [1]={ limit={ @@ -42968,7 +42452,7 @@ return { [1]="delve_biome_boss_life_+%_final" } }, - [2007]={ + [1975]={ [1]={ [1]={ limit={ @@ -42984,7 +42468,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_gain_as_cold" } }, - [2008]={ + [1976]={ [1]={ [1]={ limit={ @@ -43000,7 +42484,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_gain_as_fire" } }, - [2009]={ + [1977]={ [1]={ [1]={ limit={ @@ -43016,7 +42500,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_gain_as_lightning" } }, - [2010]={ + [1978]={ [1]={ [1]={ limit={ @@ -43032,7 +42516,7 @@ return { [1]="map_is_branchy" } }, - [2011]={ + [1979]={ [1]={ [1]={ limit={ @@ -43061,7 +42545,7 @@ return { [1]="delve_biome_azurite_collected_+%" } }, - [2012]={ + [1980]={ [1]={ [1]={ limit={ @@ -43090,7 +42574,7 @@ return { [1]="delve_biome_sulphite_cost_+%_final" } }, - [2013]={ + [1981]={ [1]={ [1]={ limit={ @@ -43106,7 +42590,7 @@ return { [1]="delve_biome_city_chambers_can_contain_special_delve_chest" } }, - [2014]={ + [1982]={ [1]={ [1]={ limit={ @@ -43122,7 +42606,7 @@ return { [1]="delve_biome_encounters_extra_reward_chest_%_chance" } }, - [2015]={ + [1983]={ [1]={ [1]={ limit={ @@ -43138,7 +42622,7 @@ return { [1]="delve_biome_monster_drop_fossil_chance_%" } }, - [2016]={ + [1984]={ [1]={ [1]={ limit={ @@ -43154,7 +42638,7 @@ return { [1]="map_display_area_contains_unbridged_gaps_to_cross" } }, - [2017]={ + [1985]={ [1]={ [1]={ limit={ @@ -43170,7 +42654,7 @@ return { [1]="delve_biome_node_tier_upgrade_+%" } }, - [2018]={ + [1986]={ [1]={ [1]={ limit={ @@ -43186,7 +42670,7 @@ return { [1]="map_additional_number_of_packs_to_choose" } }, - [2019]={ + [1987]={ [1]={ [1]={ limit={ @@ -43202,7 +42686,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_azurite" } }, - [2020]={ + [1988]={ [1]={ [1]={ limit={ @@ -43218,7 +42702,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_currency" } }, - [2021]={ + [1989]={ [1]={ [1]={ limit={ @@ -43234,7 +42718,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_fossils" } }, - [2022]={ + [1990]={ [1]={ [1]={ limit={ @@ -43250,7 +42734,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_resonators" } }, - [2023]={ + [1991]={ [1]={ [1]={ limit={ @@ -43266,7 +42750,7 @@ return { [1]="delve_biome_off_path_reward_chests_azurite_chance_+%_final" } }, - [2024]={ + [1992]={ [1]={ [1]={ limit={ @@ -43282,7 +42766,7 @@ return { [1]="delve_biome_off_path_reward_chests_currency_chance_+%_final" } }, - [2025]={ + [1993]={ [1]={ [1]={ limit={ @@ -43298,7 +42782,7 @@ return { [1]="delve_biome_off_path_reward_chests_fossil_chance_+%_final" } }, - [2026]={ + [1994]={ [1]={ [1]={ limit={ @@ -43314,7 +42798,7 @@ return { [1]="delve_biome_off_path_reward_chests_resonator_chance_+%_final" } }, - [2027]={ + [1995]={ [1]={ [1]={ limit={ @@ -43330,7 +42814,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_minute" } }, - [2028]={ + [1996]={ [1]={ [1]={ limit={ @@ -43346,7 +42830,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_10_seconds" } }, - [2029]={ + [1997]={ [1]={ [1]={ limit={ @@ -43362,7 +42846,7 @@ return { [1]="map_ground_ice" } }, - [2030]={ + [1998]={ [1]={ [1]={ limit={ @@ -43378,7 +42862,7 @@ return { [1]="map_ground_ice_base_magnitude" } }, - [2031]={ + [1999]={ [1]={ [1]={ limit={ @@ -43394,7 +42878,23 @@ return { [1]="map_ground_lightning" } }, - [2032]={ + [2000]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area has patches of Mana Siphoning Ground" + } + }, + stats={ + [1]="map_ground_mana_siphoning" + } + }, + [2001]={ [1]={ [1]={ limit={ @@ -43410,7 +42910,7 @@ return { [1]="map_ground_lightning_base_magnitude" } }, - [2033]={ + [2002]={ [1]={ [1]={ limit={ @@ -43426,7 +42926,7 @@ return { [1]="map_ground_tar_movement_speed_+%" } }, - [2034]={ + [2003]={ [1]={ [1]={ limit={ @@ -43442,7 +42942,7 @@ return { [1]="map_base_ground_desecration_damage_to_deal_per_minute" } }, - [2035]={ + [2004]={ [1]={ [1]={ limit={ @@ -43458,7 +42958,7 @@ return { [1]="map_tempest_base_ground_fire_damage_to_deal_per_minute" } }, - [2036]={ + [2005]={ [1]={ [1]={ limit={ @@ -43474,7 +42974,7 @@ return { [1]="map_tempest_ground_ice" } }, - [2037]={ + [2006]={ [1]={ [1]={ limit={ @@ -43490,7 +42990,7 @@ return { [1]="map_tempest_ground_lightning" } }, - [2038]={ + [2007]={ [1]={ [1]={ limit={ @@ -43506,7 +43006,7 @@ return { [1]="map_tempest_ground_tar_movement_speed_+%" } }, - [2039]={ + [2008]={ [1]={ [1]={ limit={ @@ -43522,7 +43022,7 @@ return { [1]="map_tempest_base_ground_desecration_damage_to_deal_per_minute" } }, - [2040]={ + [2009]={ [1]={ [1]={ limit={ @@ -43538,7 +43038,7 @@ return { [1]="map_fixed_seed" } }, - [2041]={ + [2010]={ [1]={ [1]={ limit={ @@ -43554,7 +43054,7 @@ return { [1]="map_minimap_revealed" } }, - [2042]={ + [2011]={ [1]={ [1]={ limit={ @@ -43570,7 +43070,7 @@ return { [1]="map_no_refills_in_town" } }, - [2043]={ + [2012]={ [1]={ [1]={ limit={ @@ -43586,7 +43086,7 @@ return { [1]="map_packs_are_totems" } }, - [2044]={ + [2013]={ [1]={ [1]={ limit={ @@ -43602,7 +43102,7 @@ return { [1]="map_packs_are_str_mission_totems" } }, - [2045]={ + [2014]={ [1]={ [1]={ limit={ @@ -43618,7 +43118,7 @@ return { [1]="map_packs_are_skeletons" } }, - [2046]={ + [2015]={ [1]={ [1]={ limit={ @@ -43634,7 +43134,7 @@ return { [1]="map_packs_are_bandits" } }, - [2047]={ + [2016]={ [1]={ [1]={ limit={ @@ -43650,7 +43150,7 @@ return { [1]="map_packs_are_goatmen" } }, - [2048]={ + [2017]={ [1]={ [1]={ limit={ @@ -43666,7 +43166,7 @@ return { [1]="map_packs_are_animals" } }, - [2049]={ + [2018]={ [1]={ [1]={ limit={ @@ -43682,7 +43182,7 @@ return { [1]="map_packs_are_demons" } }, - [2050]={ + [2019]={ [1]={ [1]={ limit={ @@ -43698,7 +43198,7 @@ return { [1]="map_packs_are_humanoids" } }, - [2051]={ + [2020]={ [1]={ [1]={ limit={ @@ -43714,7 +43214,7 @@ return { [1]="map_packs_are_sea_witches_and_spawn" } }, - [2052]={ + [2021]={ [1]={ [1]={ limit={ @@ -43730,7 +43230,7 @@ return { [1]="map_packs_are_undead_and_necromancers" } }, - [2053]={ + [2022]={ [1]={ [1]={ limit={ @@ -43746,7 +43246,7 @@ return { [1]="map_packs_fire_projectiles" } }, - [2054]={ + [2023]={ [1]={ [1]={ limit={ @@ -43762,7 +43262,7 @@ return { [1]="display_map_inhabited_by_wild_beasts" } }, - [2055]={ + [2024]={ [1]={ [1]={ limit={ @@ -43787,7 +43287,7 @@ return { [1]="map_display_unique_boss_drops_X_maps" } }, - [2056]={ + [2025]={ [1]={ [1]={ limit={ @@ -43812,7 +43312,7 @@ return { [1]="map_spawn_extra_exiles" } }, - [2057]={ + [2026]={ [1]={ [1]={ limit={ @@ -43837,7 +43337,7 @@ return { [1]="map_spawn_extra_warbands" } }, - [2058]={ + [2027]={ [1]={ [1]={ limit={ @@ -43862,7 +43362,7 @@ return { [1]="map_num_extra_shrines" } }, - [2059]={ + [2028]={ [1]={ [1]={ limit={ @@ -43878,7 +43378,7 @@ return { [1]="map_shrines_are_darkshrines" } }, - [2060]={ + [2029]={ [1]={ [1]={ limit={ @@ -43894,7 +43394,7 @@ return { [1]="map_spawn_harbingers" } }, - [2061]={ + [2030]={ [1]={ [1]={ limit={ @@ -43910,7 +43410,7 @@ return { [1]="map_spawn_talismans" } }, - [2062]={ + [2031]={ [1]={ [1]={ limit={ @@ -43926,7 +43426,7 @@ return { [1]="map_spawn_perandus_chests" } }, - [2063]={ + [2032]={ [1]={ [1]={ limit={ @@ -43951,7 +43451,7 @@ return { [1]="map_spawn_extra_talismans" } }, - [2064]={ + [2033]={ [1]={ [1]={ limit={ @@ -43967,7 +43467,7 @@ return { [1]="map_force_stone_circle" } }, - [2065]={ + [2034]={ [1]={ [1]={ limit={ @@ -43992,7 +43492,7 @@ return { [1]="map_spawn_extra_torment_spirits" } }, - [2066]={ + [2035]={ [1]={ [1]={ limit={ @@ -44017,7 +43517,7 @@ return { [1]="map_num_extra_strongboxes" } }, - [2067]={ + [2036]={ [1]={ [1]={ limit={ @@ -44033,7 +43533,7 @@ return { [1]="map_non_unique_monsters_spawn_X_monsters_on_death" } }, - [2068]={ + [2037]={ [1]={ [1]={ [1]={ @@ -44053,7 +43553,7 @@ return { [1]="map_player_base_chaos_damage_taken_per_minute" } }, - [2069]={ + [2038]={ [1]={ [1]={ limit={ @@ -44069,7 +43569,7 @@ return { [1]="map_player_has_blood_magic_keystone" } }, - [2070]={ + [2039]={ [1]={ [1]={ limit={ @@ -44085,7 +43585,7 @@ return { [1]="map_player_cannot_expose" } }, - [2071]={ + [2040]={ [1]={ [1]={ limit={ @@ -44101,7 +43601,7 @@ return { [1]="map_player_has_chaos_inoculation_keystone" } }, - [2072]={ + [2041]={ [1]={ [1]={ limit={ @@ -44117,7 +43617,7 @@ return { [1]="map_player_has_level_X_vulnerability" } }, - [2073]={ + [2042]={ [1]={ [1]={ limit={ @@ -44133,7 +43633,7 @@ return { [1]="map_player_has_level_X_enfeeble" } }, - [2074]={ + [2043]={ [1]={ [1]={ limit={ @@ -44142,14 +43642,14 @@ return { [2]="#" } }, - text="Area is Cursed with Enfeeble" + text="Players are periodically Cursed with Enfeeble" } }, stats={ [1]="map_enfeeble_curse_zones" } }, - [2075]={ + [2044]={ [1]={ [1]={ limit={ @@ -44165,7 +43665,7 @@ return { [1]="map_player_has_level_X_temporal_chains" } }, - [2076]={ + [2045]={ [1]={ [1]={ limit={ @@ -44174,14 +43674,14 @@ return { [2]="#" } }, - text="Area is Cursed with Temporal Chains" + text="Players are periodically Cursed with Temporal Chains" } }, stats={ [1]="map_temporal_chains_curse_zones" } }, - [2077]={ + [2046]={ [1]={ [1]={ limit={ @@ -44197,7 +43697,7 @@ return { [1]="map_player_has_level_X_elemental_weakness" } }, - [2078]={ + [2047]={ [1]={ [1]={ limit={ @@ -44206,14 +43706,14 @@ return { [2]="#" } }, - text="Area is Cursed with Elemental Weakness" + text="Players are periodically Cursed with Elemental Weakness" } }, stats={ [1]="map_elemental_weakness_curse_zones" } }, - [2079]={ + [2048]={ [1]={ [1]={ limit={ @@ -44229,7 +43729,7 @@ return { [1]="map_player_has_level_X_punishment" } }, - [2080]={ + [2049]={ [1]={ [1]={ limit={ @@ -44245,7 +43745,7 @@ return { [1]="map_player_has_level_X_flammability" } }, - [2081]={ + [2050]={ [1]={ [1]={ limit={ @@ -44261,7 +43761,7 @@ return { [1]="map_player_has_level_X_frostbite" } }, - [2082]={ + [2051]={ [1]={ [1]={ limit={ @@ -44277,7 +43777,7 @@ return { [1]="map_player_has_level_X_conductivity" } }, - [2083]={ + [2052]={ [1]={ [1]={ limit={ @@ -44293,7 +43793,7 @@ return { [1]="map_player_has_level_X_despair" } }, - [2084]={ + [2053]={ [1]={ [1]={ limit={ @@ -44309,7 +43809,7 @@ return { [1]="map_player_has_level_X_silence" } }, - [2085]={ + [2054]={ [1]={ [1]={ limit={ @@ -44325,7 +43825,7 @@ return { [1]="map_player_no_regeneration" } }, - [2086]={ + [2055]={ [1]={ [1]={ limit={ @@ -44341,7 +43841,7 @@ return { [1]="map_additional_player_maximum_resistances_%" } }, - [2087]={ + [2056]={ [1]={ [1]={ limit={ @@ -44370,7 +43870,7 @@ return { [1]="map_player_status_recovery_speed_+%" } }, - [2088]={ + [2057]={ [1]={ [1]={ limit={ @@ -44399,7 +43899,7 @@ return { [1]="map_player_projectile_damage_+%_final" } }, - [2089]={ + [2058]={ [1]={ [1]={ limit={ @@ -44428,7 +43928,7 @@ return { [1]="map_projectile_speed_+%" } }, - [2090]={ + [2059]={ [1]={ [1]={ limit={ @@ -44457,7 +43957,7 @@ return { [1]="map_monsters_life_+%" } }, - [2091]={ + [2060]={ [1]={ [1]={ limit={ @@ -44486,7 +43986,7 @@ return { [1]="map_monsters_area_of_effect_+%" } }, - [2092]={ + [2061]={ [1]={ [1]={ limit={ @@ -44502,7 +44002,7 @@ return { [1]="map_monsters_avoid_freeze_and_chill_%" } }, - [2093]={ + [2062]={ [1]={ [1]={ limit={ @@ -44518,7 +44018,7 @@ return { [1]="map_monsters_avoid_ignite_%" } }, - [2094]={ + [2063]={ [1]={ [1]={ limit={ @@ -44534,7 +44034,7 @@ return { [1]="map_monsters_avoid_shock_%" } }, - [2095]={ + [2064]={ [1]={ [1]={ limit={ @@ -44550,7 +44050,7 @@ return { [1]="map_monster_unaffected_by_shock" } }, - [2096]={ + [2065]={ [1]={ [1]={ limit={ @@ -44566,7 +44066,7 @@ return { [1]="map_monsters_avoid_ailments_%" } }, - [2097]={ + [2066]={ [1]={ [1]={ limit={ @@ -44582,7 +44082,7 @@ return { [1]="map_monsters_avoid_elemental_ailments_%" } }, - [2098]={ + [2067]={ [1]={ [1]={ limit={ @@ -44611,7 +44111,7 @@ return { [1]="map_monsters_critical_strike_chance_+%" } }, - [2099]={ + [2068]={ [1]={ [1]={ limit={ @@ -44627,7 +44127,7 @@ return { [1]="map_monsters_critical_strike_multiplier_+" } }, - [2100]={ + [2069]={ [1]={ [1]={ [1]={ @@ -44647,7 +44147,7 @@ return { [1]="map_monsters_cannot_be_leeched_from" } }, - [2101]={ + [2070]={ [1]={ [1]={ limit={ @@ -44676,7 +44176,7 @@ return { [1]="map_monsters_life_leech_resistance_permyriad" } }, - [2102]={ + [2071]={ [1]={ [1]={ limit={ @@ -44701,7 +44201,7 @@ return { [1]="map_monsters_mana_leech_resistance_permyriad" } }, - [2103]={ + [2072]={ [1]={ [1]={ limit={ @@ -44717,7 +44217,7 @@ return { [1]="map_monsters_damage_+%" } }, - [2104]={ + [2073]={ [1]={ [1]={ limit={ @@ -44733,7 +44233,7 @@ return { [1]="map_monsters_have_onslaught" } }, - [2105]={ + [2074]={ [1]={ [1]={ limit={ @@ -44762,7 +44262,7 @@ return { [1]="map_monsters_movement_speed_+%" } }, - [2106]={ + [2075]={ [1]={ [1]={ limit={ @@ -44778,7 +44278,7 @@ return { [1]="map_monsters_attack_speed_+%" } }, - [2107]={ + [2076]={ [1]={ [1]={ limit={ @@ -44794,7 +44294,7 @@ return { [1]="map_monsters_cast_speed_+%" } }, - [2108]={ + [2077]={ [1]={ [1]={ limit={ @@ -44810,7 +44310,7 @@ return { [1]="map_monsters_reflect_%_physical_damage" } }, - [2109]={ + [2078]={ [1]={ [1]={ limit={ @@ -44826,7 +44326,7 @@ return { [1]="map_monsters_reflect_%_elemental_damage" } }, - [2110]={ + [2079]={ [1]={ [1]={ limit={ @@ -44873,7 +44373,7 @@ return { [2]="map_players_additional_number_of_projectiles" } }, - [2111]={ + [2080]={ [1]={ [1]={ limit={ @@ -44889,7 +44389,7 @@ return { [1]="map_monsters_additional_fire_resistance" } }, - [2112]={ + [2081]={ [1]={ [1]={ limit={ @@ -44905,7 +44405,7 @@ return { [1]="map_monsters_additional_cold_resistance" } }, - [2113]={ + [2082]={ [1]={ [1]={ limit={ @@ -44921,7 +44421,7 @@ return { [1]="map_monsters_additional_lightning_resistance" } }, - [2114]={ + [2083]={ [1]={ [1]={ limit={ @@ -44937,7 +44437,7 @@ return { [1]="map_monsters_additional_physical_damage_reduction" } }, - [2115]={ + [2084]={ [1]={ [1]={ limit={ @@ -44953,7 +44453,7 @@ return { [1]="map_monsters_cannot_be_stunned" } }, - [2116]={ + [2085]={ [1]={ [1]={ limit={ @@ -44969,7 +44469,7 @@ return { [1]="map_monsters_poison_on_hit" } }, - [2117]={ + [2086]={ [1]={ [1]={ limit={ @@ -44985,7 +44485,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_fire" } }, - [2118]={ + [2087]={ [1]={ [1]={ limit={ @@ -45001,7 +44501,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_cold" } }, - [2119]={ + [2088]={ [1]={ [1]={ limit={ @@ -45017,7 +44517,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_lightning" } }, - [2120]={ + [2089]={ [1]={ [1]={ limit={ @@ -45033,7 +44533,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_chaos" } }, - [2121]={ + [2090]={ [1]={ [1]={ limit={ @@ -45049,7 +44549,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_fire" } }, - [2122]={ + [2091]={ [1]={ [1]={ limit={ @@ -45065,7 +44565,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_fire" } }, - [2123]={ + [2092]={ [1]={ [1]={ limit={ @@ -45081,7 +44581,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_cold" } }, - [2124]={ + [2093]={ [1]={ [1]={ limit={ @@ -45097,7 +44597,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_cold" } }, - [2125]={ + [2094]={ [1]={ [1]={ limit={ @@ -45113,7 +44613,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_lightning" } }, - [2126]={ + [2095]={ [1]={ [1]={ limit={ @@ -45129,7 +44629,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_lightning" } }, - [2127]={ + [2096]={ [1]={ [1]={ limit={ @@ -45145,7 +44645,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_chaos" } }, - [2128]={ + [2097]={ [1]={ [1]={ limit={ @@ -45161,7 +44661,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_chaos" } }, - [2129]={ + [2098]={ [1]={ [1]={ limit={ @@ -45177,7 +44677,7 @@ return { [1]="map_monsters_physical_damage_%_to_gain_as_random_element" } }, - [2130]={ + [2099]={ [1]={ [1]={ limit={ @@ -45202,7 +44702,7 @@ return { [1]="map_monsters_gain_x_frenzy_charges_every_20_seconds" } }, - [2131]={ + [2100]={ [1]={ [1]={ limit={ @@ -45227,7 +44727,7 @@ return { [1]="map_monsters_gain_x_endurance_charges_every_20_seconds" } }, - [2132]={ + [2101]={ [1]={ [1]={ limit={ @@ -45252,7 +44752,7 @@ return { [1]="map_monsters_gain_x_power_charges_every_20_seconds" } }, - [2133]={ + [2102]={ [1]={ [1]={ limit={ @@ -45268,7 +44768,7 @@ return { [1]="map_monsters_immune_to_a_random_status_ailment_or_stun" } }, - [2134]={ + [2103]={ [1]={ [1]={ limit={ @@ -45284,7 +44784,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses" } }, - [2135]={ + [2104]={ [1]={ [1]={ limit={ @@ -45309,7 +44809,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses_%_chance" } }, - [2136]={ + [2105]={ [1]={ [1]={ limit={ @@ -45325,7 +44825,7 @@ return { [1]="map_monsters_reflect_curses" } }, - [2137]={ + [2106]={ [1]={ [1]={ limit={ @@ -45341,7 +44841,7 @@ return { [1]="map_monster_skills_chain_X_additional_times" } }, - [2138]={ + [2107]={ [1]={ [1]={ limit={ @@ -45357,7 +44857,7 @@ return { [1]="map_monsters_drop_ground_fire_on_death_base_radius" } }, - [2139]={ + [2108]={ [1]={ [1]={ limit={ @@ -45373,7 +44873,7 @@ return { [1]="map_monsters_are_immune_to_curses" } }, - [2140]={ + [2109]={ [1]={ [1]={ limit={ @@ -45389,7 +44889,7 @@ return { [1]="map_monsters_are_hexproof" } }, - [2141]={ + [2110]={ [1]={ [1]={ limit={ @@ -45422,7 +44922,7 @@ return { [1]="map_monsters_curse_effect_+%" } }, - [2142]={ + [2111]={ [1]={ [1]={ limit={ @@ -45438,7 +44938,7 @@ return { [1]="map_monster_no_drops" } }, - [2143]={ + [2112]={ [1]={ [1]={ limit={ @@ -45454,7 +44954,7 @@ return { [1]="map_spawn_two_bosses" } }, - [2144]={ + [2113]={ [1]={ [1]={ limit={ @@ -45470,7 +44970,7 @@ return { [1]="map_boss_damage_+%" } }, - [2145]={ + [2114]={ [1]={ [1]={ limit={ @@ -45499,7 +44999,7 @@ return { [1]="map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2146]={ + [2115]={ [1]={ [1]={ limit={ @@ -45528,7 +45028,7 @@ return { [1]="map_boss_life_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2147]={ + [2116]={ [1]={ [1]={ limit={ @@ -45544,7 +45044,7 @@ return { [1]="map_boss_drops_additional_conqueror_map" } }, - [2148]={ + [2117]={ [1]={ [1]={ limit={ @@ -45560,7 +45060,7 @@ return { [1]="map_boss_drops_additional_elder_guardian_map" } }, - [2149]={ + [2118]={ [1]={ [1]={ limit={ @@ -45576,7 +45076,7 @@ return { [1]="map_boss_drops_additional_shaper_guardian_map" } }, - [2150]={ + [2119]={ [1]={ [1]={ limit={ @@ -45592,7 +45092,7 @@ return { [1]="map_boss_attack_and_cast_speed_+%" } }, - [2151]={ + [2120]={ [1]={ [1]={ limit={ @@ -45621,7 +45121,7 @@ return { [1]="map_boss_maximum_life_+%" } }, - [2152]={ + [2121]={ [1]={ [1]={ limit={ @@ -45650,7 +45150,7 @@ return { [1]="map_boss_area_of_effect_+%" } }, - [2153]={ + [2122]={ [1]={ [1]={ limit={ @@ -45679,7 +45179,7 @@ return { [1]="map_chest_item_quantity_+%" } }, - [2154]={ + [2123]={ [1]={ [1]={ limit={ @@ -45708,7 +45208,7 @@ return { [1]="map_chest_item_rarity_+%" } }, - [2155]={ + [2124]={ [1]={ [1]={ limit={ @@ -45724,7 +45224,7 @@ return { [1]="map_has_X_waves_of_monsters" } }, - [2156]={ + [2125]={ [1]={ [1]={ limit={ @@ -45740,7 +45240,7 @@ return { [1]="map_has_X_seconds_between_waves" } }, - [2157]={ + [2126]={ [1]={ [1]={ limit={ @@ -45756,7 +45256,7 @@ return { [1]="display_map_no_monsters" } }, - [2158]={ + [2127]={ [1]={ [1]={ limit={ @@ -45785,7 +45285,7 @@ return { [1]="unique_facebreaker_unarmed_melee_physical_damage_+%_final" } }, - [2159]={ + [2128]={ [1]={ [1]={ limit={ @@ -45806,7 +45306,7 @@ return { [2]="attack_maximum_added_melee_lightning_damage_while_unarmed" } }, - [2160]={ + [2129]={ [1]={ [1]={ limit={ @@ -45827,7 +45327,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_unarmed" } }, - [2161]={ + [2130]={ [1]={ [1]={ limit={ @@ -45843,7 +45343,7 @@ return { [1]="life_reserved_by_stat_%" } }, - [2162]={ + [2131]={ [1]={ [1]={ limit={ @@ -45859,7 +45359,7 @@ return { [1]="cannot_have_life_leeched_from" } }, - [2163]={ + [2132]={ [1]={ [1]={ limit={ @@ -45875,7 +45375,7 @@ return { [1]="cannot_have_mana_leeched_from" } }, - [2164]={ + [2133]={ [1]={ [1]={ limit={ @@ -45891,7 +45391,7 @@ return { [1]="unique_chin_sol_close_range_bow_damage_+%_final" } }, - [2165]={ + [2134]={ [1]={ [1]={ limit={ @@ -45907,7 +45407,7 @@ return { [1]="unique_chin_sol_close_range_knockback" } }, - [2166]={ + [2135]={ [1]={ [1]={ limit={ @@ -45923,7 +45423,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical" } }, - [2167]={ + [2136]={ [1]={ [1]={ [1]={ @@ -45943,7 +45443,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical_value_negated" } }, - [2168]={ + [2137]={ [1]={ [1]={ limit={ @@ -45959,7 +45459,7 @@ return { [1]="physical_damage_taken_%_as_fire" } }, - [2169]={ + [2138]={ [1]={ [1]={ limit={ @@ -45975,7 +45475,7 @@ return { [1]="physical_damage_taken_%_as_cold" } }, - [2170]={ + [2139]={ [1]={ [1]={ limit={ @@ -45991,7 +45491,7 @@ return { [1]="physical_damage_taken_%_as_lightning" } }, - [2171]={ + [2140]={ [1]={ [1]={ limit={ @@ -46007,7 +45507,7 @@ return { [1]="bleeding_damage_on_self_taken_as_fire_instead" } }, - [2172]={ + [2141]={ [1]={ [1]={ limit={ @@ -46023,7 +45523,7 @@ return { [1]="bleeding_damage_on_self_taken_as_fire_instead" } }, - [2173]={ + [2142]={ [1]={ [1]={ limit={ @@ -46039,7 +45539,7 @@ return { [1]="physical_damage_taken_%_as_chaos" } }, - [2174]={ + [2143]={ [1]={ [1]={ limit={ @@ -46055,7 +45555,7 @@ return { [1]="take_chaos_damage_from_ignite_instead" } }, - [2175]={ + [2144]={ [1]={ [1]={ limit={ @@ -46071,7 +45571,7 @@ return { [1]="elemental_damage_taken_%_as_chaos" } }, - [2176]={ + [2145]={ [1]={ [1]={ limit={ @@ -46087,7 +45587,7 @@ return { [1]="fire_damage_taken_%_causes_additional_physical_damage" } }, - [2177]={ + [2146]={ [1]={ [1]={ limit={ @@ -46116,7 +45616,7 @@ return { [1]="unique_quill_rain_damage_+%_final" } }, - [2178]={ + [2147]={ [1]={ [1]={ limit={ @@ -46132,7 +45632,7 @@ return { [1]="melee_physical_damage_taken_%_to_deal_to_attacker" } }, - [2179]={ + [2148]={ [1]={ [1]={ limit={ @@ -46148,7 +45648,7 @@ return { [1]="additional_block_%" } }, - [2180]={ + [2149]={ [1]={ [1]={ limit={ @@ -46164,7 +45664,7 @@ return { [1]="additional_block_chance_%_for_1_second_every_5_seconds" } }, - [2181]={ + [2150]={ [1]={ [1]={ limit={ @@ -46180,7 +45680,7 @@ return { [1]="with_bow_additional_block_%" } }, - [2182]={ + [2151]={ [1]={ [1]={ limit={ @@ -46205,7 +45705,7 @@ return { [1]="frozen_monsters_take_increased_damage" } }, - [2183]={ + [2152]={ [1]={ [1]={ limit={ @@ -46221,7 +45721,7 @@ return { [1]="additional_block_chance_against_projectiles_%" } }, - [2184]={ + [2153]={ [1]={ [1]={ limit={ @@ -46237,7 +45737,7 @@ return { [1]="base_cannot_leech" } }, - [2185]={ + [2154]={ [1]={ [1]={ [1]={ @@ -46257,7 +45757,7 @@ return { [1]="unique_dewaths_hide_physical_attack_damage_dealt_-" } }, - [2186]={ + [2155]={ [1]={ [1]={ limit={ @@ -46273,7 +45773,7 @@ return { [1]="energy_shield_%_gained_on_block" } }, - [2187]={ + [2156]={ [1]={ [1]={ limit={ @@ -46289,7 +45789,7 @@ return { [1]="energy_shield_%_of_armour_rating_gained_on_block" } }, - [2188]={ + [2157]={ [1]={ [1]={ limit={ @@ -46305,7 +45805,7 @@ return { [1]="local_poison_on_hit" } }, - [2189]={ + [2158]={ [1]={ [1]={ limit={ @@ -46321,7 +45821,7 @@ return { [1]="local_all_damage_can_poison" } }, - [2190]={ + [2159]={ [1]={ [1]={ limit={ @@ -46350,7 +45850,7 @@ return { [1]="spell_damage_taken_+%_when_on_low_mana" } }, - [2191]={ + [2160]={ [1]={ [1]={ limit={ @@ -46379,7 +45879,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_staff" } }, - [2192]={ + [2161]={ [1]={ [1]={ limit={ @@ -46395,7 +45895,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_staff" } }, - [2193]={ + [2162]={ [1]={ [1]={ limit={ @@ -46424,7 +45924,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_bow" } }, - [2194]={ + [2163]={ [1]={ [1]={ limit={ @@ -46440,7 +45940,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_bow" } }, - [2195]={ + [2164]={ [1]={ [1]={ limit={ @@ -46456,7 +45956,7 @@ return { [1]="reflect_curses" } }, - [2196]={ + [2165]={ [1]={ [1]={ limit={ @@ -46472,7 +45972,7 @@ return { [1]="reflect_hexes_chance_%" } }, - [2197]={ + [2166]={ [1]={ [1]={ limit={ @@ -46488,7 +45988,7 @@ return { [1]="unaffected_by_curses" } }, - [2198]={ + [2167]={ [1]={ [1]={ limit={ @@ -46504,7 +46004,7 @@ return { [1]="attacks_deal_no_physical_damage" } }, - [2199]={ + [2168]={ [1]={ [1]={ limit={ @@ -46520,7 +46020,7 @@ return { [1]="local_bleed_on_hit" } }, - [2200]={ + [2169]={ [1]={ [1]={ limit={ @@ -46536,7 +46036,7 @@ return { [1]="local_chance_to_bleed_on_hit_25%" } }, - [2201]={ + [2170]={ [1]={ [1]={ limit={ @@ -46552,7 +46052,7 @@ return { [1]="local_chance_to_bleed_on_hit_50%" } }, - [2202]={ + [2171]={ [1]={ [1]={ limit={ @@ -46568,7 +46068,7 @@ return { [1]="local_chance_to_bleed_on_hit_%" } }, - [2203]={ + [2172]={ [1]={ [1]={ limit={ @@ -46584,7 +46084,7 @@ return { [1]="bleed_on_stun" } }, - [2204]={ + [2173]={ [1]={ [1]={ limit={ @@ -46600,7 +46100,7 @@ return { [1]="bleed_on_crit_%_with_attacks" } }, - [2205]={ + [2174]={ [1]={ [1]={ limit={ @@ -46625,7 +46125,7 @@ return { [1]="bleed_on_melee_crit_chance_%" } }, - [2206]={ + [2175]={ [1]={ [1]={ limit={ @@ -46650,7 +46150,7 @@ return { [1]="bleed_on_melee_attack_chance_%" } }, - [2207]={ + [2176]={ [1]={ [1]={ limit={ @@ -46675,7 +46175,7 @@ return { [1]="bleed_on_bow_attack_chance_%" } }, - [2208]={ + [2177]={ [1]={ [1]={ limit={ @@ -46756,7 +46256,7 @@ return { [3]="cannot_cause_bleeding" } }, - [2209]={ + [2178]={ [1]={ [1]={ limit={ @@ -46781,7 +46281,7 @@ return { [1]="minion_bleed_on_hit_with_attacks_%" } }, - [2210]={ + [2179]={ [1]={ [1]={ limit={ @@ -46810,7 +46310,7 @@ return { [1]="attack_damage_vs_bleeding_enemies_+%" } }, - [2211]={ + [2180]={ [1]={ [1]={ limit={ @@ -46839,7 +46339,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [2212]={ + [2181]={ [1]={ [1]={ limit={ @@ -46868,7 +46368,7 @@ return { [1]="enemies_you_bleed_grant_flask_charges_+%" } }, - [2213]={ + [2182]={ [1]={ [1]={ limit={ @@ -46889,7 +46389,7 @@ return { [2]="maximum_added_physical_damage_vs_bleeding_enemies" } }, - [2214]={ + [2183]={ [1]={ [1]={ limit={ @@ -46905,7 +46405,7 @@ return { [1]="display_golden_radiance" } }, - [2215]={ + [2184]={ [1]={ [1]={ limit={ @@ -46921,7 +46421,7 @@ return { [1]="disable_skill_if_melee_attack" } }, - [2216]={ + [2185]={ [1]={ [1]={ limit={ @@ -46950,7 +46450,7 @@ return { [1]="local_stun_threshold_reduction_+%" } }, - [2217]={ + [2186]={ [1]={ [1]={ limit={ @@ -46966,7 +46466,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_area_%_value" } }, - [2218]={ + [2187]={ [1]={ [1]={ limit={ @@ -46982,7 +46482,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_damage" } }, - [2219]={ + [2188]={ [1]={ [1]={ limit={ @@ -47011,7 +46511,7 @@ return { [1]="virtual_light_radius_+%" } }, - [2220]={ + [2189]={ [1]={ [1]={ limit={ @@ -47027,7 +46527,7 @@ return { [1]="gain_phasing_while_at_maximum_frenzy_charges" } }, - [2221]={ + [2190]={ [1]={ [1]={ limit={ @@ -47043,7 +46543,7 @@ return { [1]="gain_phasing_while_you_have_onslaught" } }, - [2222]={ + [2191]={ [1]={ [1]={ limit={ @@ -47059,7 +46559,7 @@ return { [1]="gain_phasing_for_4_seconds_on_begin_es_recharge" } }, - [2223]={ + [2192]={ [1]={ [1]={ limit={ @@ -47075,7 +46575,7 @@ return { [1]="evasion_rating_+%_while_phasing" } }, - [2224]={ + [2193]={ [1]={ [1]={ limit={ @@ -47091,7 +46591,7 @@ return { [1]="item_found_rarity_+%_while_phasing" } }, - [2225]={ + [2194]={ [1]={ [1]={ limit={ @@ -47120,7 +46620,7 @@ return { [1]="mana_regeneration_rate_+%_while_phasing" } }, - [2226]={ + [2195]={ [1]={ [1]={ limit={ @@ -47149,7 +46649,7 @@ return { [1]="mana_regeneration_rate_+%_while_shocked" } }, - [2227]={ + [2196]={ [1]={ [1]={ limit={ @@ -47178,7 +46678,7 @@ return { [1]="light_radius_+%_while_phased" } }, - [2228]={ + [2197]={ [1]={ [1]={ limit={ @@ -47194,7 +46694,7 @@ return { [1]="base_chaos_damage_does_not_damage_energy_shield_extra_hard" } }, - [2229]={ + [2198]={ [1]={ [1]={ limit={ @@ -47210,7 +46710,7 @@ return { [1]="ground_tar_on_take_crit_base_area_of_effect_radius" } }, - [2230]={ + [2199]={ [1]={ [1]={ limit={ @@ -47226,7 +46726,7 @@ return { [1]="random_curse_on_hit_%" } }, - [2231]={ + [2200]={ [1]={ [1]={ limit={ @@ -47251,7 +46751,7 @@ return { [1]="curse_on_hit_%_enfeeble" } }, - [2232]={ + [2201]={ [1]={ [1]={ limit={ @@ -47276,7 +46776,7 @@ return { [1]="curse_on_hit_%_conductivity" } }, - [2233]={ + [2202]={ [1]={ [1]={ limit={ @@ -47301,7 +46801,7 @@ return { [1]="curse_on_hit_%_despair" } }, - [2234]={ + [2203]={ [1]={ [1]={ limit={ @@ -47326,7 +46826,7 @@ return { [1]="curse_on_hit_%_elemental_weakness" } }, - [2235]={ + [2204]={ [1]={ [1]={ limit={ @@ -47351,7 +46851,7 @@ return { [1]="curse_on_hit_%_flammability" } }, - [2236]={ + [2205]={ [1]={ [1]={ limit={ @@ -47376,7 +46876,7 @@ return { [1]="curse_on_hit_%_frostbite" } }, - [2237]={ + [2206]={ [1]={ [1]={ limit={ @@ -47401,7 +46901,7 @@ return { [1]="curse_on_hit_%_temporal_chains" } }, - [2238]={ + [2207]={ [1]={ [1]={ limit={ @@ -47426,7 +46926,7 @@ return { [1]="curse_on_hit_%_vulnerability" } }, - [2239]={ + [2208]={ [1]={ [1]={ limit={ @@ -47451,7 +46951,7 @@ return { [1]="curse_with_enfeeble_on_hit_%_against_uncursed_enemies" } }, - [2240]={ + [2209]={ [1]={ [1]={ limit={ @@ -47467,7 +46967,7 @@ return { [1]="curse_on_hit_level_temporal_chains" } }, - [2241]={ + [2210]={ [1]={ [1]={ limit={ @@ -47483,7 +46983,7 @@ return { [1]="curse_on_hit_level_vulnerability" } }, - [2242]={ + [2211]={ [1]={ [1]={ limit={ @@ -47508,7 +47008,7 @@ return { [1]="curse_on_hit_level_10_vulnerability_%" } }, - [2243]={ + [2212]={ [1]={ [1]={ limit={ @@ -47524,7 +47024,7 @@ return { [1]="curse_on_hit_level_elemental_weakness" } }, - [2244]={ + [2213]={ [1]={ [1]={ limit={ @@ -47540,7 +47040,7 @@ return { [1]="curse_on_hit_level_cold_weakness" } }, - [2245]={ + [2214]={ [1]={ [1]={ limit={ @@ -47556,7 +47056,7 @@ return { [1]="curse_on_hit_level_conductivity" } }, - [2246]={ + [2215]={ [1]={ [1]={ limit={ @@ -47572,7 +47072,7 @@ return { [1]="curse_on_hit_level_despair" } }, - [2247]={ + [2216]={ [1]={ [1]={ limit={ @@ -47588,7 +47088,7 @@ return { [1]="curse_on_hit_level_enfeeble" } }, - [2248]={ + [2217]={ [1]={ [1]={ limit={ @@ -47604,7 +47104,7 @@ return { [1]="curse_on_hit_level_flammability" } }, - [2249]={ + [2218]={ [1]={ [1]={ limit={ @@ -47620,7 +47120,7 @@ return { [1]="curse_on_hit_level_frostbite" } }, - [2250]={ + [2219]={ [1]={ [1]={ limit={ @@ -47636,7 +47136,7 @@ return { [1]="spells_have_culling_strike" } }, - [2251]={ + [2220]={ [1]={ [1]={ limit={ @@ -47652,7 +47152,7 @@ return { [1]="local_display_aura_allies_have_culling_strike" } }, - [2252]={ + [2221]={ [1]={ [1]={ limit={ @@ -47668,7 +47168,7 @@ return { [1]="melee_range_+" } }, - [2253]={ + [2222]={ [1]={ [1]={ limit={ @@ -47697,7 +47197,7 @@ return { [1]="evasion_rating_+%_when_on_low_life" } }, - [2254]={ + [2223]={ [1]={ [1]={ limit={ @@ -47713,7 +47213,7 @@ return { [1]="base_life_leech_is_instant" } }, - [2255]={ + [2224]={ [1]={ [1]={ limit={ @@ -47729,7 +47229,7 @@ return { [1]="base_mana_leech_is_instant" } }, - [2256]={ + [2225]={ [1]={ [1]={ limit={ @@ -47745,7 +47245,7 @@ return { [1]="local_life_leech_is_instant" } }, - [2257]={ + [2226]={ [1]={ [1]={ limit={ @@ -47761,7 +47261,7 @@ return { [1]="base_leech_is_instant_on_critical" } }, - [2258]={ + [2227]={ [1]={ [1]={ limit={ @@ -47777,7 +47277,7 @@ return { [1]="display_map_restless_dead" } }, - [2259]={ + [2228]={ [1]={ [1]={ limit={ @@ -47793,7 +47293,7 @@ return { [1]="display_map_larger_maze" } }, - [2260]={ + [2229]={ [1]={ [1]={ limit={ @@ -47809,7 +47309,7 @@ return { [1]="display_map_large_chest" } }, - [2261]={ + [2230]={ [1]={ [1]={ limit={ @@ -47838,7 +47338,7 @@ return { [1]="area_of_effect_+%_per_20_int" } }, - [2262]={ + [2231]={ [1]={ [1]={ limit={ @@ -47867,7 +47367,7 @@ return { [1]="attack_speed_+%_per_20_dex" } }, - [2263]={ + [2232]={ [1]={ [1]={ limit={ @@ -47896,23 +47396,7 @@ return { [1]="physical_weapon_damage_+%_per_10_str" } }, - [2264]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage per Frenzy Charge" - } - }, - stats={ - [1]="spell_suppression_chance_%_per_frenzy_charge" - } - }, - [2265]={ + [2233]={ [1]={ [1]={ limit={ @@ -47928,7 +47412,7 @@ return { [1]="gain_power_charge_per_enemy_you_crit" } }, - [2266]={ + [2234]={ [1]={ [1]={ limit={ @@ -47957,7 +47441,7 @@ return { [1]="burning_damage_taken_+%" } }, - [2267]={ + [2235]={ [1]={ [1]={ limit={ @@ -47973,7 +47457,7 @@ return { [1]="cannot_increase_rarity_of_dropped_items" } }, - [2268]={ + [2236]={ [1]={ [1]={ limit={ @@ -47989,7 +47473,7 @@ return { [1]="cannot_increase_quantity_of_dropped_items" } }, - [2269]={ + [2237]={ [1]={ [1]={ limit={ @@ -48005,7 +47489,7 @@ return { [1]="randomly_cursed_when_totems_die_curse_level" } }, - [2270]={ + [2238]={ [1]={ [1]={ limit={ @@ -48034,7 +47518,7 @@ return { [1]="global_item_attribute_requirements_+%" } }, - [2271]={ + [2239]={ [1]={ [1]={ limit={ @@ -48050,7 +47534,7 @@ return { [1]="enemy_hits_roll_low_damage" } }, - [2272]={ + [2240]={ [1]={ [1]={ limit={ @@ -48066,7 +47550,7 @@ return { [1]="unique_loris_lantern_golden_light" } }, - [2273]={ + [2241]={ [1]={ [1]={ limit={ @@ -48082,7 +47566,7 @@ return { [1]="chaos_damage_resistance_%_when_on_low_life" } }, - [2274]={ + [2242]={ [1]={ [1]={ limit={ @@ -48111,7 +47595,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_low_life" } }, - [2275]={ + [2243]={ [1]={ [1]={ limit={ @@ -48132,7 +47616,7 @@ return { [2]="base_maximum_lightning_damage_on_charge_expiry" } }, - [2276]={ + [2244]={ [1]={ [1]={ limit={ @@ -48148,7 +47632,7 @@ return { [1]="item_drops_on_death" } }, - [2277]={ + [2245]={ [1]={ [1]={ limit={ @@ -48164,7 +47648,7 @@ return { [1]="local_item_drops_on_death_if_equipped_by_animate_armour" } }, - [2278]={ + [2246]={ [1]={ [1]={ limit={ @@ -48180,7 +47664,7 @@ return { [1]="never_ignite" } }, - [2279]={ + [2247]={ [1]={ [1]={ limit={ @@ -48196,7 +47680,7 @@ return { [1]="never_freeze" } }, - [2280]={ + [2248]={ [1]={ [1]={ limit={ @@ -48212,7 +47696,7 @@ return { [1]="never_freeze_or_chill" } }, - [2281]={ + [2249]={ [1]={ [1]={ limit={ @@ -48221,14 +47705,14 @@ return { [2]="#" } }, - text="Cannot inflict Shock" + text="Cannot Shock" } }, stats={ [1]="never_shock" } }, - [2282]={ + [2250]={ [1]={ [1]={ limit={ @@ -48244,7 +47728,7 @@ return { [1]="faster_burn_%" } }, - [2283]={ + [2251]={ [1]={ [1]={ limit={ @@ -48260,7 +47744,7 @@ return { [1]="ignite_slower_burn_%" } }, - [2284]={ + [2252]={ [1]={ [1]={ limit={ @@ -48276,7 +47760,7 @@ return { [1]="faster_burn_from_attacks_%" } }, - [2285]={ + [2253]={ [1]={ [1]={ limit={ @@ -48292,7 +47776,7 @@ return { [1]="base_cannot_leech_life" } }, - [2286]={ + [2254]={ [1]={ [1]={ limit={ @@ -48308,7 +47792,7 @@ return { [1]="base_cannot_leech_mana" } }, - [2287]={ + [2255]={ [1]={ [1]={ limit={ @@ -48324,7 +47808,7 @@ return { [1]="cannot_leech_or_regenerate_mana" } }, - [2288]={ + [2256]={ [1]={ [1]={ limit={ @@ -48340,7 +47824,7 @@ return { [1]="cannot_leech_when_on_low_life" } }, - [2289]={ + [2257]={ [1]={ [1]={ limit={ @@ -48365,7 +47849,7 @@ return { [1]="base_energy_shield_gained_on_enemy_death" } }, - [2290]={ + [2258]={ [1]={ [1]={ limit={ @@ -48381,7 +47865,7 @@ return { [1]="gain_X_energy_shield_on_killing_shocked_enemy" } }, - [2291]={ + [2259]={ [1]={ [1]={ limit={ @@ -48397,7 +47881,7 @@ return { [1]="consecrate_on_block_%_chance_to_create" } }, - [2292]={ + [2260]={ [1]={ [1]={ limit={ @@ -48413,7 +47897,7 @@ return { [1]="desecrate_on_block_%_chance_to_create" } }, - [2293]={ + [2261]={ [1]={ [1]={ limit={ @@ -48429,7 +47913,7 @@ return { [1]="avoid_blind_%" } }, - [2294]={ + [2262]={ [1]={ [1]={ limit={ @@ -48454,7 +47938,7 @@ return { [1]="ground_smoke_when_hit_%" } }, - [2295]={ + [2263]={ [1]={ [1]={ limit={ @@ -48479,7 +47963,7 @@ return { [1]="shocked_ground_when_hit_%" } }, - [2296]={ + [2264]={ [1]={ [1]={ limit={ @@ -48508,7 +47992,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [2297]={ + [2265]={ [1]={ [1]={ limit={ @@ -48524,7 +48008,7 @@ return { [1]="totem_skill_cast_speed_+%" } }, - [2298]={ + [2266]={ [1]={ [1]={ limit={ @@ -48540,7 +48024,7 @@ return { [1]="totem_skill_attack_speed_+%" } }, - [2299]={ + [2267]={ [1]={ [1]={ limit={ @@ -48556,7 +48040,7 @@ return { [1]="totem_skill_area_of_effect_+%" } }, - [2300]={ + [2268]={ [1]={ [1]={ limit={ @@ -48572,7 +48056,7 @@ return { [1]="disable_chest_slot" } }, - [2301]={ + [2269]={ [1]={ [1]={ limit={ @@ -48601,7 +48085,7 @@ return { [1]="physical_claw_damage_+%_when_on_low_life" } }, - [2302]={ + [2270]={ [1]={ [1]={ limit={ @@ -48630,7 +48114,7 @@ return { [1]="accuracy_rating_+%_when_on_low_life" } }, - [2303]={ + [2271]={ [1]={ [1]={ limit={ @@ -48668,7 +48152,7 @@ return { [2]="maximum_physical_damage_to_return_on_block" } }, - [2304]={ + [2272]={ [1]={ [1]={ limit={ @@ -48702,7 +48186,7 @@ return { [2]="maximum_lightning_damage_to_return_on_block" } }, - [2305]={ + [2273]={ [1]={ [1]={ limit={ @@ -48735,7 +48219,7 @@ return { [1]="number_of_zombies_allowed_+%" } }, - [2306]={ + [2274]={ [1]={ [1]={ limit={ @@ -48751,7 +48235,7 @@ return { [1]="zombie_maximum_life_+" } }, - [2307]={ + [2275]={ [1]={ [1]={ limit={ @@ -48767,7 +48251,7 @@ return { [1]="zombie_chaos_elemental_damage_resistance_%" } }, - [2308]={ + [2276]={ [1]={ [1]={ limit={ @@ -48783,7 +48267,7 @@ return { [1]="chill_and_freeze_duration_based_on_%_energy_shield" } }, - [2309]={ + [2277]={ [1]={ [1]={ limit={ @@ -48799,7 +48283,7 @@ return { [1]="intelligence_+%_per_equipped_unique" } }, - [2310]={ + [2278]={ [1]={ [1]={ limit={ @@ -48815,7 +48299,7 @@ return { [1]="ignited_enemies_explode_on_kill" } }, - [2311]={ + [2279]={ [1]={ [1]={ limit={ @@ -48831,7 +48315,7 @@ return { [1]="additional_scroll_of_wisdom_drop_chance_%" } }, - [2312]={ + [2280]={ [1]={ [1]={ limit={ @@ -48860,7 +48344,7 @@ return { [1]="curse_effect_+%" } }, - [2313]={ + [2281]={ [1]={ [1]={ limit={ @@ -48889,7 +48373,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [2314]={ + [2282]={ [1]={ [1]={ limit={ @@ -48918,7 +48402,7 @@ return { [1]="mark_effect_+%" } }, - [2315]={ + [2283]={ [1]={ [1]={ limit={ @@ -48927,14 +48411,14 @@ return { [2]="#" } }, - text="Your Curses can affect Hexproof Enemies" + text="Curses you inflict can affect Hexproof Enemies" } }, stats={ [1]="ignore_hexproof" } }, - [2316]={ + [2284]={ [1]={ [1]={ limit={ @@ -48950,7 +48434,7 @@ return { [1]="chaos_weakness_ignores_hexproof" } }, - [2317]={ + [2285]={ [1]={ [1]={ limit={ @@ -48966,7 +48450,7 @@ return { [1]="cold_weakness_ignores_hexproof" } }, - [2318]={ + [2286]={ [1]={ [1]={ limit={ @@ -48982,7 +48466,7 @@ return { [1]="elemental_weakness_ignores_hexproof" } }, - [2319]={ + [2287]={ [1]={ [1]={ limit={ @@ -48998,7 +48482,7 @@ return { [1]="enfeeble_ignores_hexproof" } }, - [2320]={ + [2288]={ [1]={ [1]={ limit={ @@ -49014,7 +48498,7 @@ return { [1]="fire_weakness_ignores_hexproof" } }, - [2321]={ + [2289]={ [1]={ [1]={ limit={ @@ -49030,7 +48514,7 @@ return { [1]="lightning_weakness_ignores_hexproof" } }, - [2322]={ + [2290]={ [1]={ [1]={ limit={ @@ -49046,7 +48530,7 @@ return { [1]="punishment_ignores_hexproof" } }, - [2323]={ + [2291]={ [1]={ [1]={ limit={ @@ -49062,7 +48546,7 @@ return { [1]="temporal_chains_ignores_hexproof" } }, - [2324]={ + [2292]={ [1]={ [1]={ limit={ @@ -49078,7 +48562,7 @@ return { [1]="vulnerability_ignores_hexproof" } }, - [2325]={ + [2293]={ [1]={ [1]={ limit={ @@ -49107,7 +48591,7 @@ return { [1]="movement_velocity_+%_while_phasing" } }, - [2326]={ + [2294]={ [1]={ [1]={ limit={ @@ -49123,7 +48607,7 @@ return { [1]="map_spawn_exile_per_area_%" } }, - [2327]={ + [2295]={ [1]={ [1]={ limit={ @@ -49139,7 +48623,7 @@ return { [1]="map_ambush_chests" } }, - [2328]={ + [2296]={ [1]={ [1]={ limit={ @@ -49155,7 +48639,7 @@ return { [1]="map_breach_rules" } }, - [2329]={ + [2297]={ [1]={ [1]={ limit={ @@ -49171,7 +48655,7 @@ return { [1]="map_spawn_betrayals" } }, - [2330]={ + [2298]={ [1]={ [1]={ limit={ @@ -49187,7 +48671,7 @@ return { [1]="map_invasion_monster_packs" } }, - [2331]={ + [2299]={ [1]={ [1]={ limit={ @@ -49212,7 +48696,7 @@ return { [1]="map_num_extra_invasion_bosses" } }, - [2332]={ + [2300]={ [1]={ [1]={ limit={ @@ -49228,7 +48712,7 @@ return { [1]="map_spawn_tormented_spirits" } }, - [2333]={ + [2301]={ [1]={ [1]={ limit={ @@ -49244,7 +48728,7 @@ return { [1]="map_always_has_weather" } }, - [2334]={ + [2302]={ [1]={ [1]={ limit={ @@ -49260,7 +48744,7 @@ return { [1]="map_allow_shrines" } }, - [2335]={ + [2303]={ [1]={ [1]={ limit={ @@ -49276,7 +48760,7 @@ return { [1]="map_players_gain_rampage_stacks" } }, - [2336]={ + [2304]={ [1]={ [1]={ limit={ @@ -49292,7 +48776,7 @@ return { [1]="map_beyond_rules" } }, - [2337]={ + [2305]={ [1]={ [1]={ limit={ @@ -49321,7 +48805,7 @@ return { [1]="movement_velocity_+%_while_cursed" } }, - [2338]={ + [2306]={ [1]={ [1]={ [1]={ @@ -49341,7 +48825,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_frenzy_charge" } }, - [2339]={ + [2307]={ [1]={ [1]={ limit={ @@ -49366,7 +48850,7 @@ return { [1]="endurance_charge_on_kill_%" } }, - [2340]={ + [2308]={ [1]={ [1]={ limit={ @@ -49391,7 +48875,7 @@ return { [1]="lose_endurance_charge_on_kill_%" } }, - [2341]={ + [2309]={ [1]={ [1]={ limit={ @@ -49416,7 +48900,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [2342]={ + [2310]={ [1]={ [1]={ limit={ @@ -49432,7 +48916,7 @@ return { [1]="lose_frenzy_charge_on_kill_%" } }, - [2343]={ + [2311]={ [1]={ [1]={ limit={ @@ -49457,7 +48941,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [2344]={ + [2312]={ [1]={ [1]={ limit={ @@ -49473,7 +48957,7 @@ return { [1]="lose_power_charge_on_kill_%" } }, - [2345]={ + [2313]={ [1]={ [1]={ limit={ @@ -49489,7 +48973,7 @@ return { [1]="gain_frenzy_and_power_charge_on_kill_%" } }, - [2346]={ + [2314]={ [1]={ [1]={ limit={ @@ -49505,7 +48989,7 @@ return { [1]="gain_endurance_charge_on_power_charge_expiry" } }, - [2347]={ + [2315]={ [1]={ [1]={ limit={ @@ -49521,7 +49005,7 @@ return { [1]="enemy_on_low_life_damage_taken_+%_per_frenzy_charge" } }, - [2348]={ + [2316]={ [1]={ [1]={ limit={ @@ -49550,7 +49034,7 @@ return { [1]="melee_damage_+%_when_on_full_life" } }, - [2349]={ + [2317]={ [1]={ [1]={ limit={ @@ -49575,7 +49059,7 @@ return { [1]="consecrate_on_crit_%_chance_to_create" } }, - [2350]={ + [2318]={ [1]={ [1]={ limit={ @@ -49591,7 +49075,7 @@ return { [1]="projectile_speed_+%_per_frenzy_charge" } }, - [2351]={ + [2319]={ [1]={ [1]={ limit={ @@ -49607,7 +49091,7 @@ return { [1]="projectile_damage_+%_per_power_charge" } }, - [2352]={ + [2320]={ [1]={ [1]={ limit={ @@ -49636,7 +49120,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_on_crit" } }, - [2353]={ + [2321]={ [1]={ [1]={ [1]={ @@ -49656,7 +49140,7 @@ return { [1]="onslaught_buff_duration_on_kill_ms" } }, - [2354]={ + [2322]={ [1]={ [1]={ [1]={ @@ -49676,7 +49160,7 @@ return { [1]="onslaught_buff_duration_on_killing_taunted_enemy_ms" } }, - [2355]={ + [2323]={ [1]={ [1]={ [1]={ @@ -49696,7 +49180,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute" } }, - [2356]={ + [2324]={ [1]={ [1]={ [1]={ @@ -49716,7 +49200,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute_%" } }, - [2357]={ + [2325]={ [1]={ [1]={ [1]={ @@ -49736,7 +49220,7 @@ return { [1]="energy_shield_degeneration_%_per_minute_not_in_grace" } }, - [2358]={ + [2326]={ [1]={ [1]={ limit={ @@ -49752,7 +49236,7 @@ return { [1]="local_right_ring_slot_no_mana_regeneration" } }, - [2359]={ + [2327]={ [1]={ [1]={ [1]={ @@ -49772,7 +49256,7 @@ return { [1]="local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%" } }, - [2360]={ + [2328]={ [1]={ [1]={ limit={ @@ -49788,7 +49272,7 @@ return { [1]="local_right_ring_slot_maximum_mana" } }, - [2361]={ + [2329]={ [1]={ [1]={ limit={ @@ -49804,7 +49288,7 @@ return { [1]="local_right_ring_slot_energy_shield" } }, - [2362]={ + [2330]={ [1]={ [1]={ limit={ @@ -49820,7 +49304,7 @@ return { [1]="local_left_ring_slot_no_energy_shield_recharge_or_regeneration" } }, - [2363]={ + [2331]={ [1]={ [1]={ limit={ @@ -49849,7 +49333,7 @@ return { [1]="local_left_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2364]={ + [2332]={ [1]={ [1]={ limit={ @@ -49865,7 +49349,7 @@ return { [1]="local_left_ring_slot_cold_damage_taken_%_as_fire" } }, - [2365]={ + [2333]={ [1]={ [1]={ limit={ @@ -49894,7 +49378,7 @@ return { [1]="local_left_ring_slot_curse_effect_on_self_+%" } }, - [2366]={ + [2334]={ [1]={ [1]={ limit={ @@ -49910,7 +49394,7 @@ return { [1]="local_left_ring_slot_fire_damage_taken_%_as_lightning" } }, - [2367]={ + [2335]={ [1]={ [1]={ limit={ @@ -49926,7 +49410,7 @@ return { [1]="local_left_ring_slot_lightning_damage_taken_%_as_cold" } }, - [2368]={ + [2336]={ [1]={ [1]={ [1]={ @@ -49946,7 +49430,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_per_minute" } }, - [2369]={ + [2337]={ [1]={ [1]={ limit={ @@ -49962,7 +49446,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_+%" } }, - [2370]={ + [2338]={ [1]={ [1]={ limit={ @@ -49991,7 +49475,7 @@ return { [1]="local_left_ring_slot_minion_damage_taken_+%" } }, - [2371]={ + [2339]={ [1]={ [1]={ limit={ @@ -50020,7 +49504,7 @@ return { [1]="local_left_ring_slot_skill_effect_duration_+%" } }, - [2372]={ + [2340]={ [1]={ [1]={ limit={ @@ -50049,7 +49533,7 @@ return { [1]="local_right_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2373]={ + [2341]={ [1]={ [1]={ limit={ @@ -50065,7 +49549,7 @@ return { [1]="local_right_ring_slot_cold_damage_taken_%_as_lightning" } }, - [2374]={ + [2342]={ [1]={ [1]={ limit={ @@ -50094,7 +49578,7 @@ return { [1]="local_right_ring_slot_curse_effect_on_self_+%" } }, - [2375]={ + [2343]={ [1]={ [1]={ limit={ @@ -50110,7 +49594,7 @@ return { [1]="local_right_ring_slot_fire_damage_taken_%_as_cold" } }, - [2376]={ + [2344]={ [1]={ [1]={ limit={ @@ -50126,7 +49610,7 @@ return { [1]="local_right_ring_slot_lightning_damage_taken_%_as_fire" } }, - [2377]={ + [2345]={ [1]={ [1]={ limit={ @@ -50155,7 +49639,7 @@ return { [1]="local_right_ring_slot_minion_damage_taken_+%" } }, - [2378]={ + [2346]={ [1]={ [1]={ limit={ @@ -50184,7 +49668,7 @@ return { [1]="local_right_ring_slot_skill_effect_duration_+%" } }, - [2379]={ + [2347]={ [1]={ [1]={ limit={ @@ -50200,7 +49684,7 @@ return { [1]="local_left_ring_slot_maximum_mana" } }, - [2380]={ + [2348]={ [1]={ [1]={ limit={ @@ -50216,7 +49700,7 @@ return { [1]="local_left_ring_slot_energy_shield" } }, - [2381]={ + [2349]={ [1]={ [1]={ limit={ @@ -50232,7 +49716,7 @@ return { [1]="no_energy_shield_recharge_or_regeneration" } }, - [2382]={ + [2350]={ [1]={ [1]={ limit={ @@ -50257,7 +49741,7 @@ return { [1]="extra_critical_rolls" } }, - [2383]={ + [2351]={ [1]={ [1]={ limit={ @@ -50273,7 +49757,7 @@ return { [1]="movement_velocity_+1%_per_X_evasion_rating" } }, - [2384]={ + [2352]={ [1]={ [1]={ limit={ @@ -50289,7 +49773,7 @@ return { [1]="cannot_be_killed_by_elemental_reflect" } }, - [2385]={ + [2353]={ [1]={ [1]={ limit={ @@ -50305,7 +49789,7 @@ return { [1]="cannot_freeze_shock_ignite_on_critical" } }, - [2386]={ + [2354]={ [1]={ [1]={ [1]={ @@ -50325,7 +49809,7 @@ return { [1]="onslaught_on_crit_duration_ms" } }, - [2387]={ + [2355]={ [1]={ [1]={ limit={ @@ -50354,7 +49838,7 @@ return { [1]="zombie_scale_+%" } }, - [2388]={ + [2356]={ [1]={ [1]={ limit={ @@ -50383,7 +49867,7 @@ return { [1]="zombie_physical_damage_+%" } }, - [2389]={ + [2357]={ [1]={ [1]={ limit={ @@ -50399,7 +49883,7 @@ return { [1]="zombie_explode_on_kill_%_fire_damage_to_deal" } }, - [2390]={ + [2358]={ [1]={ [1]={ limit={ @@ -50428,7 +49912,7 @@ return { [1]="weapon_elemental_damage_+%_per_power_charge" } }, - [2391]={ + [2359]={ [1]={ [1]={ limit={ @@ -50444,7 +49928,7 @@ return { [1]="cannot_cast_curses" } }, - [2392]={ + [2360]={ [1]={ [1]={ limit={ @@ -50460,7 +49944,7 @@ return { [1]="melee_attacks_usable_without_mana_cost" } }, - [2393]={ + [2361]={ [1]={ [1]={ limit={ @@ -50476,7 +49960,7 @@ return { [1]="spell_damage_modifiers_apply_to_attack_damage" } }, - [2394]={ + [2362]={ [1]={ [1]={ limit={ @@ -50492,7 +49976,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage" } }, - [2395]={ + [2363]={ [1]={ [1]={ limit={ @@ -50508,7 +49992,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value" } }, - [2396]={ + [2364]={ [1]={ [1]={ limit={ @@ -50533,7 +50017,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand" } }, - [2397]={ + [2365]={ [1]={ [1]={ limit={ @@ -50549,7 +50033,7 @@ return { [1]="additive_vaal_skill_damage_modifiers_apply_to_all_skills" } }, - [2398]={ + [2366]={ [1]={ [1]={ limit={ @@ -50565,7 +50049,7 @@ return { [1]="vaal_attack_rage_cost_instead_of_souls_per_use" } }, - [2399]={ + [2367]={ [1]={ [1]={ limit={ @@ -50581,7 +50065,7 @@ return { [1]="spell_damage_modifiers_apply_to_skill_dot" } }, - [2400]={ + [2368]={ [1]={ [1]={ limit={ @@ -50597,7 +50081,7 @@ return { [1]="projectile_damage_modifiers_apply_to_skill_dot" } }, - [2401]={ + [2369]={ [1]={ [1]={ [1]={ @@ -50617,7 +50101,7 @@ return { [1]="local_display_aura_base_chaos_damage_to_deal_per_minute" } }, - [2402]={ + [2370]={ [1]={ [1]={ [1]={ @@ -50646,7 +50130,7 @@ return { [2]="deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute" } }, - [2403]={ + [2371]={ [1]={ [1]={ limit={ @@ -50675,7 +50159,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%_when_frozen" } }, - [2404]={ + [2372]={ [1]={ [1]={ limit={ @@ -50704,7 +50188,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked" } }, - [2405]={ + [2373]={ [1]={ [1]={ limit={ @@ -50733,7 +50217,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shocked" } }, - [2406]={ + [2374]={ [1]={ [1]={ limit={ @@ -50749,7 +50233,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen" } }, - [2407]={ + [2375]={ [1]={ [1]={ limit={ @@ -50765,7 +50249,7 @@ return { [1]="local_unique_counts_as_dual_wielding" } }, - [2408]={ + [2376]={ [1]={ [1]={ limit={ @@ -50781,7 +50265,7 @@ return { [1]="base_damage_removed_from_mana_before_life_%" } }, - [2409]={ + [2377]={ [1]={ [1]={ limit={ @@ -50797,7 +50281,7 @@ return { [1]="local_display_aura_damage_+%" } }, - [2410]={ + [2378]={ [1]={ [1]={ limit={ @@ -50813,57 +50297,7 @@ return { [1]="local_display_aura_curse_effect_on_self_+%" } }, - [2411]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Attacks have {0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Attacks always Ignite" - } - }, - stats={ - [1]="attack_ignite_chance_%" - } - }, - [2412]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Projectiles have {0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Projectiles always Ignite" - } - }, - stats={ - [1]="projectile_ignite_chance_%" - } - }, - [2413]={ + [2379]={ [1]={ [1]={ limit={ @@ -50888,7 +50322,7 @@ return { [1]="projectile_freeze_chance_%" } }, - [2414]={ + [2380]={ [1]={ [1]={ limit={ @@ -50913,7 +50347,7 @@ return { [1]="projectile_shock_chance_%" } }, - [2415]={ + [2381]={ [1]={ [1]={ limit={ @@ -50929,7 +50363,7 @@ return { [1]="explode_on_kill_%_fire_damage_to_deal" } }, - [2416]={ + [2382]={ [1]={ [1]={ limit={ @@ -50945,7 +50379,7 @@ return { [1]="melee_damage_taken_%_to_deal_to_attacker" } }, - [2417]={ + [2383]={ [1]={ [1]={ limit={ @@ -50961,7 +50395,7 @@ return { [1]="mana_gained_when_hit" } }, - [2418]={ + [2384]={ [1]={ [1]={ limit={ @@ -50994,7 +50428,7 @@ return { [1]="elemental_reflect_damage_taken_+%" } }, - [2419]={ + [2385]={ [1]={ [1]={ limit={ @@ -51027,7 +50461,7 @@ return { [1]="physical_reflect_damage_taken_+%" } }, - [2420]={ + [2386]={ [1]={ [1]={ limit={ @@ -51060,7 +50494,7 @@ return { [1]="local_left_ring_slot_elemental_reflect_damage_taken_+%" } }, - [2421]={ + [2387]={ [1]={ [1]={ limit={ @@ -51093,7 +50527,7 @@ return { [1]="local_right_ring_slot_physical_reflect_damage_taken_+%" } }, - [2422]={ + [2388]={ [1]={ [1]={ limit={ @@ -51109,7 +50543,7 @@ return { [1]="local_can_only_deal_damage_with_this_weapon" } }, - [2423]={ + [2389]={ [1]={ [1]={ limit={ @@ -51138,7 +50572,7 @@ return { [1]="non_critical_damage_multiplier_+%" } }, - [2424]={ + [2390]={ [1]={ [1]={ [1]={ @@ -51163,7 +50597,7 @@ return { [2]="unique_map_boss_class_of_rare_items_to_drop" } }, - [2425]={ + [2391]={ [1]={ [1]={ limit={ @@ -51179,7 +50613,7 @@ return { [1]="attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem" } }, - [2426]={ + [2392]={ [1]={ [1]={ limit={ @@ -51195,7 +50629,7 @@ return { [1]="base_maximum_life_per_red_socket_on_item" } }, - [2427]={ + [2393]={ [1]={ [1]={ [1]={ @@ -51215,7 +50649,7 @@ return { [1]="global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad" } }, - [2428]={ + [2394]={ [1]={ [1]={ limit={ @@ -51231,7 +50665,7 @@ return { [1]="global_weapon_physical_damage_+%_per_red_socket_on_item" } }, - [2429]={ + [2395]={ [1]={ [1]={ limit={ @@ -51247,7 +50681,7 @@ return { [1]="base_maximum_mana_per_green_socket_on_item" } }, - [2430]={ + [2396]={ [1]={ [1]={ limit={ @@ -51263,7 +50697,7 @@ return { [1]="global_attack_speed_+%_per_green_socket_on_item" } }, - [2431]={ + [2397]={ [1]={ [1]={ limit={ @@ -51279,7 +50713,7 @@ return { [1]="global_critical_strike_mulitplier_+_per_green_socket_on_item" } }, - [2432]={ + [2398]={ [1]={ [1]={ limit={ @@ -51295,7 +50729,7 @@ return { [1]="base_maximum_energy_shield_per_blue_socket_on_item" } }, - [2433]={ + [2399]={ [1]={ [1]={ [1]={ @@ -51315,7 +50749,7 @@ return { [1]="global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item" } }, - [2434]={ + [2400]={ [1]={ [1]={ limit={ @@ -51331,7 +50765,7 @@ return { [1]="item_found_quantity_+%_per_white_socket_on_item" } }, - [2435]={ + [2401]={ [1]={ [1]={ limit={ @@ -51347,7 +50781,7 @@ return { [1]="item_found_rarity_+%_per_white_socket_on_item" } }, - [2436]={ + [2402]={ [1]={ [1]={ limit={ @@ -51376,7 +50810,7 @@ return { [1]="global_defences_+%_per_white_socket_on_item" } }, - [2437]={ + [2403]={ [1]={ [1]={ limit={ @@ -51392,7 +50826,7 @@ return { [1]="global_melee_range_+_per_white_socket_on_item" } }, - [2438]={ + [2404]={ [1]={ [1]={ limit={ @@ -51408,7 +50842,7 @@ return { [1]="cannot_block_while_no_energy_shield" } }, - [2439]={ + [2405]={ [1]={ [1]={ limit={ @@ -51424,7 +50858,7 @@ return { [1]="damage_+%_when_currently_has_no_energy_shield" } }, - [2440]={ + [2406]={ [1]={ [1]={ limit={ @@ -51453,7 +50887,7 @@ return { [1]="armour_+%_while_no_energy_shield" } }, - [2441]={ + [2407]={ [1]={ [1]={ limit={ @@ -51469,7 +50903,7 @@ return { [1]="unholy_might_while_you_have_no_energy_shield" } }, - [2442]={ + [2408]={ [1]={ [1]={ limit={ @@ -51485,7 +50919,7 @@ return { [1]="spell_damage_+%_per_5%_block_chance" } }, - [2443]={ + [2409]={ [1]={ [1]={ limit={ @@ -51514,7 +50948,7 @@ return { [1]="spell_damage_+%_per_10_int" } }, - [2444]={ + [2410]={ [1]={ [1]={ limit={ @@ -51530,7 +50964,7 @@ return { [1]="energy_shield_%_to_lose_on_block" } }, - [2445]={ + [2411]={ [1]={ [1]={ limit={ @@ -51546,7 +50980,7 @@ return { [1]="light_radius_scales_with_energy_shield" } }, - [2446]={ + [2412]={ [1]={ [1]={ limit={ @@ -51575,7 +51009,7 @@ return { [1]="flask_effect_+%" } }, - [2447]={ + [2413]={ [1]={ [1]={ limit={ @@ -51604,7 +51038,7 @@ return { [1]="magic_charm_effect_+%" } }, - [2448]={ + [2414]={ [1]={ [1]={ limit={ @@ -51633,7 +51067,7 @@ return { [1]="non_unique_flask_effect_+%" } }, - [2449]={ + [2415]={ [1]={ [1]={ limit={ @@ -51649,7 +51083,7 @@ return { [1]="local_weapon_range_+" } }, - [2450]={ + [2416]={ [1]={ [1]={ limit={ @@ -51678,7 +51112,7 @@ return { [1]="weapon_physical_damage_+%" } }, - [2451]={ + [2417]={ [1]={ [1]={ [1]={ @@ -51698,7 +51132,7 @@ return { [1]="maximum_critical_strike_chance" } }, - [2452]={ + [2418]={ [1]={ [1]={ limit={ @@ -51727,7 +51161,7 @@ return { [1]="melee_damage_taken_+%" } }, - [2453]={ + [2419]={ [1]={ [1]={ limit={ @@ -51760,7 +51194,7 @@ return { [1]="projectile_damage_taken_+%" } }, - [2454]={ + [2420]={ [1]={ [1]={ [1]={ @@ -51780,7 +51214,7 @@ return { [1]="gain_onslaught_on_stun_duration_ms" } }, - [2455]={ + [2421]={ [1]={ [1]={ limit={ @@ -51805,7 +51239,7 @@ return { [1]="chance_to_gain_endurance_charge_when_hit_%" } }, - [2456]={ + [2422]={ [1]={ [1]={ limit={ @@ -51821,7 +51255,7 @@ return { [1]="lose_all_endurance_charges_when_reaching_maximum" } }, - [2457]={ + [2423]={ [1]={ [1]={ [1]={ @@ -51841,7 +51275,7 @@ return { [1]="gain_onslaught_ms_when_reaching_maximum_endurance_charges" } }, - [2458]={ + [2424]={ [1]={ [1]={ limit={ @@ -51857,7 +51291,7 @@ return { [1]="cannot_gain_endurance_charges_while_have_onslaught" } }, - [2459]={ + [2425]={ [1]={ [1]={ limit={ @@ -51873,7 +51307,7 @@ return { [1]="flasks_dispel_burning" } }, - [2460]={ + [2426]={ [1]={ [1]={ limit={ @@ -51902,7 +51336,7 @@ return { [1]="item_rarity_+%_while_using_flask" } }, - [2461]={ + [2427]={ [1]={ [1]={ limit={ @@ -51931,7 +51365,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_while_using_flask" } }, - [2462]={ + [2428]={ [1]={ [1]={ limit={ @@ -51960,7 +51394,7 @@ return { [1]="weapon_elemental_damage_+%_while_using_flask" } }, - [2463]={ + [2429]={ [1]={ [1]={ limit={ @@ -51976,7 +51410,7 @@ return { [1]="supported_active_skill_gem_level_+" } }, - [2464]={ + [2430]={ [1]={ [1]={ limit={ @@ -51992,7 +51426,7 @@ return { [1]="physical_damage_reduction_rating_per_level" } }, - [2465]={ + [2431]={ [1]={ [1]={ limit={ @@ -52008,7 +51442,7 @@ return { [1]="maximum_life_per_10_levels" } }, - [2466]={ + [2432]={ [1]={ [1]={ limit={ @@ -52024,7 +51458,7 @@ return { [1]="resist_all_elements_%_per_10_levels" } }, - [2467]={ + [2433]={ [1]={ [1]={ limit={ @@ -52040,7 +51474,7 @@ return { [1]="chance_to_gain_random_curse_when_hit_%_per_10_levels" } }, - [2468]={ + [2434]={ [1]={ [1]={ limit={ @@ -52069,7 +51503,7 @@ return { [1]="damage_taken_+%_vs_demons" } }, - [2469]={ + [2435]={ [1]={ [1]={ limit={ @@ -52078,7 +51512,7 @@ return { [2]="#" } }, - text="{0}% increased Damage with Hits against Demons" + text="{0}% increased Damage against Demons" }, [2]={ [1]={ @@ -52091,14 +51525,14 @@ return { [2]=-1 } }, - text="{0}% reduced Damage with Hits against Demons" + text="{0}% reduced Damage against Demons" } }, stats={ [1]="damage_+%_vs_demons" } }, - [2470]={ + [2436]={ [1]={ [1]={ limit={ @@ -52114,32 +51548,7 @@ return { [1]="chilled_monsters_take_+%_burning_damage" } }, - [2471]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Ignite when in Main Hand" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Ignite when in Main Hand" - } - }, - stats={ - [1]="unique_ignite_chance_%_when_in_main_hand" - } - }, - [2472]={ + [2437]={ [1]={ [1]={ limit={ @@ -52168,7 +51577,7 @@ return { [1]="unique_chill_duration_+%_when_in_off_hand" } }, - [2473]={ + [2438]={ [1]={ [1]={ limit={ @@ -52215,7 +51624,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [2474]={ + [2439]={ [1]={ [1]={ limit={ @@ -52231,7 +51640,7 @@ return { [1]="chance_to_gain_power_charge_on_melee_stun_%" } }, - [2475]={ + [2440]={ [1]={ [1]={ limit={ @@ -52247,7 +51656,7 @@ return { [1]="chance_to_gain_power_charge_on_stun_%" } }, - [2476]={ + [2441]={ [1]={ [1]={ [1]={ @@ -52297,7 +51706,7 @@ return { [2]="movement_speed_+%_on_throwing_trap" } }, - [2477]={ + [2442]={ [1]={ [1]={ limit={ @@ -52322,7 +51731,7 @@ return { [1]="poison_on_melee_critical_strike_%" } }, - [2478]={ + [2443]={ [1]={ [1]={ limit={ @@ -52338,7 +51747,7 @@ return { [1]="shocks_reflected_to_self" } }, - [2479]={ + [2444]={ [1]={ [1]={ limit={ @@ -52367,7 +51776,7 @@ return { [1]="damage_+%_per_shock" } }, - [2480]={ + [2445]={ [1]={ [1]={ limit={ @@ -52383,7 +51792,7 @@ return { [1]="damage_+1%_per_X_strength_when_in_main_hand" } }, - [2481]={ + [2446]={ [1]={ [1]={ limit={ @@ -52399,7 +51808,7 @@ return { [1]="physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand" } }, - [2482]={ + [2447]={ [1]={ [1]={ [1]={ @@ -52419,7 +51828,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [2483]={ + [2448]={ [1]={ [1]={ limit={ @@ -52435,7 +51844,7 @@ return { [1]="traps_do_not_explode_on_timeout" } }, - [2484]={ + [2449]={ [1]={ [1]={ limit={ @@ -52451,7 +51860,7 @@ return { [1]="traps_explode_on_timeout" } }, - [2485]={ + [2450]={ [1]={ [1]={ limit={ @@ -52467,7 +51876,7 @@ return { [1]="mine_detonation_is_instant" } }, - [2486]={ + [2451]={ [1]={ [1]={ limit={ @@ -52483,7 +51892,7 @@ return { [1]="trap_damage_penetrates_%_elemental_resistance" } }, - [2487]={ + [2452]={ [1]={ [1]={ limit={ @@ -52499,7 +51908,7 @@ return { [1]="mine_damage_penetrates_%_elemental_resistance" } }, - [2488]={ + [2453]={ [1]={ [1]={ limit={ @@ -52515,7 +51924,7 @@ return { [1]="trap_and_mine_damage_penetrates_%_elemental_resistance" } }, - [2489]={ + [2454]={ [1]={ [1]={ [1]={ @@ -52535,7 +51944,7 @@ return { [1]="traps_invulnerable_for_duration_ms" } }, - [2490]={ + [2455]={ [1]={ [1]={ [1]={ @@ -52555,7 +51964,7 @@ return { [1]="mines_invulnerable_for_duration_ms" } }, - [2491]={ + [2456]={ [1]={ [1]={ limit={ @@ -52571,7 +51980,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [2492]={ + [2457]={ [1]={ [1]={ limit={ @@ -52587,7 +51996,7 @@ return { [1]="slash_ancestor_totem_elemental_resistance_%" } }, - [2493]={ + [2458]={ [1]={ [1]={ limit={ @@ -52603,7 +52012,7 @@ return { [1]="totem_additional_physical_damage_reduction_%" } }, - [2494]={ + [2459]={ [1]={ [1]={ limit={ @@ -52619,7 +52028,7 @@ return { [1]="base_deal_no_physical_damage" } }, - [2495]={ + [2460]={ [1]={ [1]={ limit={ @@ -52635,7 +52044,7 @@ return { [1]="deal_no_non_physical_damage" } }, - [2496]={ + [2461]={ [1]={ [1]={ limit={ @@ -52651,7 +52060,7 @@ return { [1]="base_deal_no_cold_damage" } }, - [2497]={ + [2462]={ [1]={ [1]={ limit={ @@ -52667,7 +52076,7 @@ return { [1]="deal_no_non_fire_damage" } }, - [2498]={ + [2463]={ [1]={ [1]={ limit={ @@ -52683,7 +52092,7 @@ return { [1]="deal_no_non_lightning_damage" } }, - [2499]={ + [2464]={ [1]={ [1]={ limit={ @@ -52699,7 +52108,7 @@ return { [1]="deal_no_non_cold_damage" } }, - [2500]={ + [2465]={ [1]={ [1]={ limit={ @@ -52732,7 +52141,7 @@ return { [1]="jorrhasts_blacksteel_animate_weapon_duration_+%_final" } }, - [2501]={ + [2466]={ [1]={ [1]={ limit={ @@ -52761,7 +52170,7 @@ return { [1]="animate_weapon_duration_+%" } }, - [2502]={ + [2467]={ [1]={ [1]={ limit={ @@ -52786,7 +52195,7 @@ return { [1]="animate_weapon_number_of_additional_copies" } }, - [2503]={ + [2468]={ [1]={ [1]={ limit={ @@ -52802,7 +52211,7 @@ return { [1]="fire_and_cold_damage_resistance_%" } }, - [2504]={ + [2469]={ [1]={ [1]={ limit={ @@ -52818,7 +52227,7 @@ return { [1]="fire_and_lightning_damage_resistance_%" } }, - [2505]={ + [2470]={ [1]={ [1]={ limit={ @@ -52834,32 +52243,7 @@ return { [1]="cold_and_lightning_damage_resistance_%" } }, - [2506]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Freeze, Shock and Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Freeze, Shock and Ignite" - } - }, - stats={ - [1]="chance_to_freeze_shock_ignite_%" - } - }, - [2507]={ + [2471]={ [1]={ [1]={ limit={ @@ -52888,7 +52272,7 @@ return { [1]="damage_+%_while_ignited" } }, - [2508]={ + [2472]={ [1]={ [1]={ limit={ @@ -52904,7 +52288,7 @@ return { [1]="physical_damage_reduction_rating_while_frozen" } }, - [2509]={ + [2473]={ [1]={ [1]={ limit={ @@ -52933,7 +52317,7 @@ return { [1]="physical_damage_taken_+%_while_frozen" } }, - [2510]={ + [2474]={ [1]={ [1]={ limit={ @@ -52962,7 +52346,7 @@ return { [1]="movement_velocity_+%_while_ignited" } }, - [2511]={ + [2475]={ [1]={ [1]={ limit={ @@ -52991,7 +52375,7 @@ return { [1]="movement_velocity_+%_per_shock" } }, - [2512]={ + [2476]={ [1]={ [1]={ limit={ @@ -53020,7 +52404,7 @@ return { [1]="damage_+%_vs_rare_monsters" } }, - [2513]={ + [2477]={ [1]={ [1]={ limit={ @@ -53036,7 +52420,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [2514]={ + [2478]={ [1]={ [1]={ limit={ @@ -53052,7 +52436,7 @@ return { [1]="ascendancy_assassin_damage_vs_enemies_on_low_life_+%_final" } }, - [2515]={ + [2479]={ [1]={ [1]={ limit={ @@ -53081,7 +52465,7 @@ return { [1]="damage_+%_vs_enemies_on_low_life_per_frenzy_charge" } }, - [2516]={ + [2480]={ [1]={ [1]={ limit={ @@ -53110,7 +52494,7 @@ return { [1]="damage_+%_vs_blinded_enemies" } }, - [2517]={ + [2481]={ [1]={ [1]={ limit={ @@ -53139,7 +52523,7 @@ return { [1]="shrine_buff_effect_on_self_+%" } }, - [2518]={ + [2482]={ [1]={ [1]={ limit={ @@ -53168,7 +52552,7 @@ return { [1]="shrine_effect_duration_+%" } }, - [2519]={ + [2483]={ [1]={ [1]={ [1]={ @@ -53181,14 +52565,14 @@ return { [2]=1 } }, - text="When you kill a Shocked enemy, Shock each wnemy within {0} metres for 2 seconds" + text="When you kill a Shocked enemy, Shock each enemy within {0} metres for 2 seconds" } }, stats={ [1]="shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy" } }, - [2520]={ + [2484]={ [1]={ [1]={ limit={ @@ -53204,7 +52588,7 @@ return { [1]="gain_rare_monster_mods_on_kill_ms" } }, - [2521]={ + [2485]={ [1]={ [1]={ limit={ @@ -53233,7 +52617,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked" } }, - [2522]={ + [2486]={ [1]={ [1]={ limit={ @@ -53262,7 +52646,7 @@ return { [1]="aura_effect_+%" } }, - [2523]={ + [2487]={ [1]={ [1]={ limit={ @@ -53278,7 +52662,7 @@ return { [1]="supported_active_skill_gem_quality_%" } }, - [2524]={ + [2488]={ [1]={ [1]={ limit={ @@ -53294,7 +52678,7 @@ return { [1]="phase_through_objects" } }, - [2525]={ + [2489]={ [1]={ [1]={ limit={ @@ -53310,7 +52694,7 @@ return { [1]="local_support_gem_max_skill_level_requirement_to_support" } }, - [2526]={ + [2490]={ [1]={ [1]={ limit={ @@ -53357,7 +52741,7 @@ return { [2]="projectile_return_%_chance" } }, - [2527]={ + [2491]={ [1]={ [1]={ limit={ @@ -53373,7 +52757,7 @@ return { [1]="attack_projectiles_return" } }, - [2528]={ + [2492]={ [1]={ [1]={ limit={ @@ -53406,7 +52790,7 @@ return { [1]="unique_critical_strike_chance_+%_final" } }, - [2529]={ + [2493]={ [1]={ [1]={ limit={ @@ -53422,7 +52806,7 @@ return { [1]="unique_lose_all_endurance_charges_when_hit" } }, - [2530]={ + [2494]={ [1]={ [1]={ [1]={ @@ -53442,7 +52826,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms" } }, - [2531]={ + [2495]={ [1]={ [1]={ limit={ @@ -53458,7 +52842,7 @@ return { [1]="add_endurance_charge_on_kill" } }, - [2532]={ + [2496]={ [1]={ [1]={ limit={ @@ -53474,7 +52858,7 @@ return { [1]="chance_to_counter_strike_when_hit_%" } }, - [2533]={ + [2497]={ [1]={ [1]={ limit={ @@ -53490,7 +52874,7 @@ return { [1]="regenerate_X_life_over_1_second_on_cast" } }, - [2534]={ + [2498]={ [1]={ [1]={ limit={ @@ -53506,7 +52890,7 @@ return { [1]="regenerate_%_armour_as_life_over_1_second_on_block" } }, - [2535]={ + [2499]={ [1]={ [1]={ limit={ @@ -53535,7 +52919,7 @@ return { [1]="global_defences_+%" } }, - [2536]={ + [2500]={ [1]={ [1]={ limit={ @@ -53564,7 +52948,7 @@ return { [1]="map_monster_defences_+%" } }, - [2537]={ + [2501]={ [1]={ [1]={ limit={ @@ -53593,7 +52977,7 @@ return { [1]="map_player_global_defences_+%_final_from_sanctum_boon" } }, - [2538]={ + [2502]={ [1]={ [1]={ limit={ @@ -53609,7 +52993,7 @@ return { [1]="your_elemental_resistances_do_not_exist" } }, - [2539]={ + [2503]={ [1]={ [1]={ limit={ @@ -53625,7 +53009,7 @@ return { [1]="culling_strike_on_burning_enemies" } }, - [2540]={ + [2504]={ [1]={ [1]={ limit={ @@ -53641,7 +53025,7 @@ return { [1]="gain_frenzy_charge_if_attack_ignites" } }, - [2541]={ + [2505]={ [1]={ [1]={ limit={ @@ -53670,7 +53054,7 @@ return { [1]="damage_+%_per_10_levels" } }, - [2542]={ + [2506]={ [1]={ [1]={ limit={ @@ -53686,7 +53070,7 @@ return { [1]="chaos_damage_taken_+" } }, - [2543]={ + [2507]={ [1]={ [1]={ limit={ @@ -53702,7 +53086,7 @@ return { [1]="display_map_final_boss_drops_higher_level_gear" } }, - [2544]={ + [2508]={ [1]={ [1]={ limit={ @@ -53718,7 +53102,7 @@ return { [1]="display_map_boss_gives_experience_+%" } }, - [2545]={ + [2509]={ [1]={ [1]={ [1]={ @@ -53751,7 +53135,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge" } }, - [2546]={ + [2510]={ [1]={ [1]={ limit={ @@ -53780,7 +53164,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [2547]={ + [2511]={ [1]={ [1]={ limit={ @@ -53809,7 +53193,7 @@ return { [1]="fishing_line_strength_+%" } }, - [2548]={ + [2512]={ [1]={ [1]={ limit={ @@ -53842,7 +53226,7 @@ return { [1]="fishing_pool_consumption_+%" } }, - [2549]={ + [2513]={ [1]={ [1]={ limit={ @@ -53885,7 +53269,7 @@ return { [1]="fishing_lure_type" } }, - [2550]={ + [2514]={ [1]={ [1]={ limit={ @@ -53928,7 +53312,7 @@ return { [1]="fishing_hook_type" } }, - [2551]={ + [2515]={ [1]={ [1]={ limit={ @@ -53957,7 +53341,7 @@ return { [1]="fishing_range_+%" } }, - [2552]={ + [2516]={ [1]={ [1]={ limit={ @@ -53986,7 +53370,7 @@ return { [1]="fish_quantity_+%" } }, - [2553]={ + [2517]={ [1]={ [1]={ limit={ @@ -54015,7 +53399,7 @@ return { [1]="fish_rarity_+%" } }, - [2554]={ + [2518]={ [1]={ [1]={ limit={ @@ -54031,7 +53415,7 @@ return { [1]="local_ring_duplicate_other_ring" } }, - [2555]={ + [2519]={ [1]={ [1]={ limit={ @@ -54047,7 +53431,7 @@ return { [1]="can_catch_exotic_fish" } }, - [2556]={ + [2520]={ [1]={ [1]={ limit={ @@ -54063,7 +53447,7 @@ return { [1]="can_catch_corrupted_fish" } }, - [2557]={ + [2521]={ [1]={ [1]={ limit={ @@ -54072,14 +53456,14 @@ return { [2]="#" } }, - text="Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude" + text="Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes" } }, stats={ [1]="unique_fire_damage_shocks" } }, - [2558]={ + [2522]={ [1]={ [1]={ limit={ @@ -54088,14 +53472,14 @@ return { [2]="#" } }, - text="Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup" + text="Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup" } }, stats={ [1]="unique_cold_damage_ignites" } }, - [2559]={ + [2523]={ [1]={ [1]={ limit={ @@ -54111,7 +53495,7 @@ return { [1]="unique_lightning_damage_freezes" } }, - [2560]={ + [2524]={ [1]={ [1]={ limit={ @@ -54120,14 +53504,14 @@ return { [2]="#" } }, - text="All Damage from Hits Contributes to Ignite Chance and Magnitude" + text="All Damage from Hits Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="all_damage_can_ignite" } }, - [2561]={ + [2525]={ [1]={ [1]={ limit={ @@ -54143,7 +53527,7 @@ return { [1]="all_damage_can_chill" } }, - [2562]={ + [2526]={ [1]={ [1]={ limit={ @@ -54159,7 +53543,7 @@ return { [1]="all_damage_can_freeze" } }, - [2563]={ + [2527]={ [1]={ [1]={ limit={ @@ -54175,7 +53559,7 @@ return { [1]="all_damage_can_shock" } }, - [2564]={ + [2528]={ [1]={ [1]={ limit={ @@ -54191,7 +53575,7 @@ return { [1]="base_all_damage_taken_can_chill" } }, - [2565]={ + [2529]={ [1]={ [1]={ limit={ @@ -54207,7 +53591,7 @@ return { [1]="base_cold_damage_can_poison" } }, - [2566]={ + [2530]={ [1]={ [1]={ limit={ @@ -54223,7 +53607,7 @@ return { [1]="base_fire_damage_can_poison" } }, - [2567]={ + [2531]={ [1]={ [1]={ limit={ @@ -54239,7 +53623,7 @@ return { [1]="base_lightning_damage_can_poison" } }, - [2568]={ + [2532]={ [1]={ [1]={ limit={ @@ -54255,7 +53639,7 @@ return { [1]="chaos_damage_can_chill" } }, - [2569]={ + [2533]={ [1]={ [1]={ limit={ @@ -54271,7 +53655,7 @@ return { [1]="chaos_damage_can_freeze" } }, - [2570]={ + [2534]={ [1]={ [1]={ limit={ @@ -54287,7 +53671,7 @@ return { [1]="chaos_damage_can_shock" } }, - [2571]={ + [2535]={ [1]={ [1]={ limit={ @@ -54296,14 +53680,14 @@ return { [2]="#" } }, - text="Cold Damage from Hits also Contributes to Ignite Chance and Magnitude" + text="Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="cold_damage_can_ignite" } }, - [2572]={ + [2536]={ [1]={ [1]={ limit={ @@ -54319,7 +53703,7 @@ return { [1]="cold_damage_can_shock" } }, - [2573]={ + [2537]={ [1]={ [1]={ limit={ @@ -54335,7 +53719,7 @@ return { [1]="elemental_damage_can_shock" } }, - [2574]={ + [2538]={ [1]={ [1]={ limit={ @@ -54351,7 +53735,7 @@ return { [1]="fire_damage_can_chill" } }, - [2575]={ + [2539]={ [1]={ [1]={ limit={ @@ -54367,7 +53751,7 @@ return { [1]="fire_damage_can_freeze" } }, - [2576]={ + [2540]={ [1]={ [1]={ limit={ @@ -54383,7 +53767,7 @@ return { [1]="fire_damage_can_shock" } }, - [2577]={ + [2541]={ [1]={ [1]={ limit={ @@ -54399,7 +53783,7 @@ return { [1]="lightning_damage_can_chill" } }, - [2578]={ + [2542]={ [1]={ [1]={ limit={ @@ -54408,14 +53792,14 @@ return { [2]="#" } }, - text="Lightning Damage from Hits also Contributes to Ignite Chance and Magnitude" + text="Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="lightning_damage_can_ignite" } }, - [2579]={ + [2543]={ [1]={ [1]={ limit={ @@ -54431,7 +53815,7 @@ return { [1]="physical_damage_can_chill" } }, - [2580]={ + [2544]={ [1]={ [1]={ limit={ @@ -54447,7 +53831,7 @@ return { [1]="physical_damage_can_freeze" } }, - [2581]={ + [2545]={ [1]={ [1]={ limit={ @@ -54463,7 +53847,7 @@ return { [1]="physical_damage_can_shock" } }, - [2582]={ + [2546]={ [1]={ [1]={ limit={ @@ -54479,7 +53863,7 @@ return { [1]="lightning_damage_can_freeze" } }, - [2583]={ + [2547]={ [1]={ [1]={ limit={ @@ -54488,14 +53872,14 @@ return { [2]="#" } }, - text="Fire Damage from Hits does not contribute to Ignite Chance or Magnitude" + text="Fire Damage from Hits does not contribute to Flammability or Ignite Magnitudes" } }, stats={ [1]="fire_damage_cannot_ignite" } }, - [2584]={ + [2548]={ [1]={ [1]={ limit={ @@ -54511,7 +53895,7 @@ return { [1]="cold_damage_cannot_freeze" } }, - [2585]={ + [2549]={ [1]={ [1]={ limit={ @@ -54527,7 +53911,7 @@ return { [1]="cold_damage_cannot_chill" } }, - [2586]={ + [2550]={ [1]={ [1]={ limit={ @@ -54536,14 +53920,14 @@ return { [2]="#" } }, - text="Chaos Damage from Hits also Contributes to Ignite Chance and Magnitude, Chill Magnitude, and Shock Chance" + text="Chaos Damage from Hits also Contributes to Flammability and Ignite Magnitudes, Chill Magnitude, and Shock Chance" } }, stats={ [1]="chaos_damage_can_ignite_chill_and_shock" } }, - [2587]={ + [2551]={ [1]={ [1]={ limit={ @@ -54559,7 +53943,7 @@ return { [1]="chaos_damage_cannot_poison" } }, - [2588]={ + [2552]={ [1]={ [1]={ limit={ @@ -54575,7 +53959,7 @@ return { [1]="lightning_damage_cannot_shock" } }, - [2589]={ + [2553]={ [1]={ [1]={ limit={ @@ -54591,7 +53975,7 @@ return { [1]="physical_damage_cannot_poison" } }, - [2590]={ + [2554]={ [1]={ [1]={ limit={ @@ -54620,36 +54004,7 @@ return { [1]="supported_active_skill_gem_expereince_gained_+%" } }, - [2591]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemies are Frozen as if you had dealt {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Enemies are Frozen as if you had dealt {0}% less Damage" - } - }, - stats={ - [1]="freeze_as_though_dealt_damage_+%" - } - }, - [2592]={ + [2555]={ [1]={ [1]={ [1]={ @@ -54682,7 +54037,7 @@ return { [1]="chill_prevention_ms_when_chilled" } }, - [2593]={ + [2556]={ [1]={ [1]={ limit={ @@ -54698,7 +54053,7 @@ return { [1]="base_immune_to_chill" } }, - [2594]={ + [2557]={ [1]={ [1]={ [1]={ @@ -54731,7 +54086,7 @@ return { [1]="freeze_prevention_ms_when_frozen" } }, - [2595]={ + [2558]={ [1]={ [1]={ [1]={ @@ -54764,7 +54119,7 @@ return { [1]="ignite_prevention_ms_when_ignited" } }, - [2596]={ + [2559]={ [1]={ [1]={ [1]={ @@ -54797,7 +54152,7 @@ return { [1]="shock_prevention_ms_when_shocked" } }, - [2597]={ + [2560]={ [1]={ [1]={ limit={ @@ -54813,7 +54168,7 @@ return { [1]="cannot_be_shocked_while_frozen" } }, - [2598]={ + [2561]={ [1]={ [1]={ limit={ @@ -54829,7 +54184,7 @@ return { [1]="grant_X_frenzy_charges_to_nearby_allies_on_death" } }, - [2599]={ + [2562]={ [1]={ [1]={ limit={ @@ -54845,7 +54200,7 @@ return { [1]="unique_gain_power_charge_on_non_crit" } }, - [2600]={ + [2563]={ [1]={ [1]={ limit={ @@ -54861,7 +54216,7 @@ return { [1]="unique_lose_all_power_charges_on_crit" } }, - [2601]={ + [2564]={ [1]={ [1]={ limit={ @@ -54877,7 +54232,7 @@ return { [1]="flask_minion_heal_%" } }, - [2602]={ + [2565]={ [1]={ [1]={ limit={ @@ -54893,23 +54248,7 @@ return { [1]="minion_block_%" } }, - [2603]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Minions have {0:+d}% Chance to Block Spell Damage" - } - }, - stats={ - [1]="minion_additional_spell_block_%" - } - }, - [2604]={ + [2566]={ [1]={ [1]={ limit={ @@ -54925,7 +54264,7 @@ return { [1]="minion_physical_damage_reduction_rating" } }, - [2605]={ + [2567]={ [1]={ [1]={ limit={ @@ -54941,7 +54280,7 @@ return { [1]="local_display_aura_damage_+%_allies_only" } }, - [2606]={ + [2568]={ [1]={ [1]={ limit={ @@ -54970,7 +54309,7 @@ return { [1]="minion_attack_speed_+%" } }, - [2607]={ + [2569]={ [1]={ [1]={ limit={ @@ -54999,7 +54338,7 @@ return { [1]="minion_cast_speed_+%" } }, - [2608]={ + [2570]={ [1]={ [1]={ [1]={ @@ -55019,7 +54358,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [2609]={ + [2571]={ [1]={ [1]={ limit={ @@ -55035,7 +54374,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [2610]={ + [2572]={ [1]={ [1]={ limit={ @@ -55051,7 +54390,7 @@ return { [1]="minion_chaos_resistance_%" } }, - [2611]={ + [2573]={ [1]={ [1]={ [1]={ @@ -55071,7 +54410,7 @@ return { [1]="onslaught_on_vaal_skill_use_duration_ms" } }, - [2612]={ + [2574]={ [1]={ [1]={ [1]={ @@ -55091,39 +54430,7 @@ return { [1]="phase_on_vaal_skill_use_duration_ms" } }, - [2613]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance to Ignite during any Flask Effect" - } - }, - stats={ - [1]="chance_to_ignite_%_while_using_flask" - } - }, - [2614]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance to Freeze during any Flask Effect" - } - }, - stats={ - [1]="chance_to_freeze_%_while_using_flask" - } - }, - [2615]={ + [2575]={ [1]={ [1]={ limit={ @@ -55139,7 +54446,7 @@ return { [1]="chance_to_shock_%_while_using_flask" } }, - [2616]={ + [2576]={ [1]={ [1]={ limit={ @@ -55168,7 +54475,7 @@ return { [1]="unique_voltaxic_rift_shock_as_though_damage_+%_final" } }, - [2617]={ + [2577]={ [1]={ [1]={ limit={ @@ -55184,7 +54491,7 @@ return { [1]="spell_chance_to_shock_frozen_enemies_%" } }, - [2618]={ + [2578]={ [1]={ [1]={ limit={ @@ -55200,7 +54507,7 @@ return { [1]="stun_threshold_reduction_+%_while_using_flask" } }, - [2619]={ + [2579]={ [1]={ [1]={ limit={ @@ -55216,7 +54523,7 @@ return { [1]="physical_damage_taken_+_vs_beasts" } }, - [2620]={ + [2580]={ [1]={ [1]={ limit={ @@ -55245,7 +54552,7 @@ return { [1]="local_attacks_with_this_weapon_elemental_damage_+%" } }, - [2621]={ + [2581]={ [1]={ [1]={ limit={ @@ -55274,7 +54581,7 @@ return { [1]="damage_taken_+%_per_frenzy_charge" } }, - [2622]={ + [2582]={ [1]={ [1]={ limit={ @@ -55303,7 +54610,7 @@ return { [1]="lightning_damage_+%_per_frenzy_charge" } }, - [2623]={ + [2583]={ [1]={ [1]={ limit={ @@ -55319,7 +54626,7 @@ return { [1]="life_gained_on_enemy_death_per_frenzy_charge" } }, - [2624]={ + [2584]={ [1]={ [1]={ limit={ @@ -55335,7 +54642,7 @@ return { [1]="life_%_gained_on_kill_if_spent_life_recently" } }, - [2625]={ + [2585]={ [1]={ [1]={ limit={ @@ -55351,7 +54658,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [2626]={ + [2586]={ [1]={ [1]={ limit={ @@ -55367,7 +54674,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_random_element" } }, - [2627]={ + [2587]={ [1]={ [1]={ limit={ @@ -55392,7 +54699,7 @@ return { [1]="unique_add_power_charge_on_melee_knockback_%" } }, - [2628]={ + [2588]={ [1]={ [1]={ limit={ @@ -55417,7 +54724,7 @@ return { [1]="gain_power_charge_when_throwing_trap_%" } }, - [2629]={ + [2589]={ [1]={ [1]={ limit={ @@ -55433,7 +54740,7 @@ return { [1]="critical_strike_chance_+%_per_8_strength" } }, - [2630]={ + [2590]={ [1]={ [1]={ limit={ @@ -55462,7 +54769,7 @@ return { [1]="attack_speed_+%_while_ignited" } }, - [2631]={ + [2591]={ [1]={ [1]={ limit={ @@ -55491,32 +54798,7 @@ return { [1]="cast_speed_+%_while_ignited" } }, - [2632]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Ignite while Ignited" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Ignite while Ignited" - } - }, - stats={ - [1]="chance_to_ignite_%_while_ignited" - } - }, - [2633]={ + [2592]={ [1]={ [1]={ limit={ @@ -55545,7 +54827,7 @@ return { [1]="wand_damage_+%" } }, - [2634]={ + [2593]={ [1]={ [1]={ limit={ @@ -55574,7 +54856,7 @@ return { [1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion" } }, - [2635]={ + [2594]={ [1]={ [1]={ limit={ @@ -55603,7 +54885,7 @@ return { [1]="attack_damage_+%_per_450_evasion" } }, - [2636]={ + [2595]={ [1]={ [1]={ limit={ @@ -55619,7 +54901,7 @@ return { [1]="chance_to_be_frozen_%" } }, - [2637]={ + [2596]={ [1]={ [1]={ limit={ @@ -55635,7 +54917,7 @@ return { [1]="chance_to_be_ignited_%" } }, - [2638]={ + [2597]={ [1]={ [1]={ limit={ @@ -55651,7 +54933,7 @@ return { [1]="chance_to_be_shocked_%" } }, - [2639]={ + [2598]={ [1]={ [1]={ limit={ @@ -55667,7 +54949,7 @@ return { [1]="chance_to_be_frozen_shocked_ignited_%" } }, - [2640]={ + [2599]={ [1]={ [1]={ limit={ @@ -55692,7 +54974,7 @@ return { [1]="claw_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2641]={ + [2600]={ [1]={ [1]={ limit={ @@ -55717,7 +54999,7 @@ return { [1]="bow_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2642]={ + [2601]={ [1]={ [1]={ limit={ @@ -55733,7 +55015,7 @@ return { [1]="recover_%_maximum_life_on_rampage_threshold" } }, - [2643]={ + [2602]={ [1]={ [1]={ limit={ @@ -55749,7 +55031,7 @@ return { [1]="dispel_status_ailments_on_rampage_threshold" } }, - [2644]={ + [2603]={ [1]={ [1]={ [1]={ @@ -55782,7 +55064,7 @@ return { [1]="gain_physical_damage_immunity_on_rampage_threshold_ms" } }, - [2645]={ + [2604]={ [1]={ [1]={ limit={ @@ -55798,7 +55080,7 @@ return { [1]="gain_X_vaal_souls_on_rampage_threshold" } }, - [2646]={ + [2605]={ [1]={ [1]={ limit={ @@ -55823,7 +55105,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [2647]={ + [2606]={ [1]={ [1]={ limit={ @@ -55852,7 +55134,7 @@ return { [1]="physical_damage_+%_vs_poisoned_enemies" } }, - [2648]={ + [2607]={ [1]={ [1]={ limit={ @@ -55868,7 +55150,7 @@ return { [1]="block_causes_monster_flee_%" } }, - [2649]={ + [2608]={ [1]={ [1]={ [1]={ @@ -55888,7 +55170,7 @@ return { [1]="life_regeneration_rate_per_minute_per_level" } }, - [2650]={ + [2609]={ [1]={ [1]={ limit={ @@ -55917,7 +55199,7 @@ return { [1]="critical_strike_chance_+%_per_level" } }, - [2651]={ + [2610]={ [1]={ [1]={ limit={ @@ -55946,7 +55228,7 @@ return { [1]="attack_damage_+%_per_level" } }, - [2652]={ + [2611]={ [1]={ [1]={ limit={ @@ -55975,7 +55257,7 @@ return { [1]="spell_damage_+%_per_level" } }, - [2653]={ + [2612]={ [1]={ [1]={ limit={ @@ -56000,7 +55282,7 @@ return { [1]="recharge_flasks_on_crit" } }, - [2654]={ + [2613]={ [1]={ [1]={ limit={ @@ -56029,7 +55311,7 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [2655]={ + [2614]={ [1]={ [1]={ limit={ @@ -56045,7 +55327,7 @@ return { [1]="ground_smoke_on_rampage_threshold_ms" } }, - [2656]={ + [2615]={ [1]={ [1]={ [1]={ @@ -56078,7 +55360,7 @@ return { [1]="phasing_on_rampage_threshold_ms" } }, - [2657]={ + [2616]={ [1]={ [1]={ limit={ @@ -56107,7 +55389,7 @@ return { [1]="movement_velocity_+%_on_full_energy_shield" } }, - [2658]={ + [2617]={ [1]={ [1]={ limit={ @@ -56150,7 +55432,7 @@ return { [3]="unique_maximum_chaos_damage_to_reflect_to_self_on_attack" } }, - [2659]={ + [2618]={ [1]={ [1]={ limit={ @@ -56166,7 +55448,7 @@ return { [1]="life_gained_on_enemy_death_per_level" } }, - [2660]={ + [2619]={ [1]={ [1]={ limit={ @@ -56182,7 +55464,7 @@ return { [1]="mana_gained_on_enemy_death_per_level" } }, - [2661]={ + [2620]={ [1]={ [1]={ limit={ @@ -56198,7 +55480,7 @@ return { [1]="energy_shield_gained_on_enemy_death_per_level" } }, - [2662]={ + [2621]={ [1]={ [1]={ limit={ @@ -56214,7 +55496,7 @@ return { [1]="cannot_be_blinded" } }, - [2663]={ + [2622]={ [1]={ [1]={ limit={ @@ -56243,7 +55525,7 @@ return { [1]="elemental_damage_+%_per_level" } }, - [2664]={ + [2623]={ [1]={ [1]={ limit={ @@ -56272,7 +55554,7 @@ return { [1]="chaos_damage_+%_per_level" } }, - [2665]={ + [2624]={ [1]={ [1]={ limit={ @@ -56288,7 +55570,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [2666]={ + [2625]={ [1]={ [1]={ limit={ @@ -56304,7 +55586,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [2667]={ + [2626]={ [1]={ [1]={ limit={ @@ -56333,7 +55615,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [2668]={ + [2627]={ [1]={ [1]={ limit={ @@ -56362,7 +55644,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [2669]={ + [2628]={ [1]={ [1]={ limit={ @@ -56391,71 +55673,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [2670]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Curse Enemies with Vulnerability on Block" - } - }, - stats={ - [1]="curse_on_block_level_5_vulnerability" - } - }, - [2671]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Curse Enemies with Flammability on Block" - } - }, - stats={ - [1]="curse_on_block_%_chance_flammability_with_+20%_effect" - } - }, - [2672]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit" - } - }, - stats={ - [1]="curse_on_projectile_block_level_15_temporal_chains" - } - }, - [2673]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit" - } - }, - stats={ - [1]="curse_on_spell_block_level_15_elemental_weakness" - } - }, - [2674]={ + [2629]={ [1]={ [1]={ limit={ @@ -56471,7 +55689,7 @@ return { [1]="display_map_has_oxygen" } }, - [2675]={ + [2630]={ [1]={ [1]={ [1]={ @@ -56491,7 +55709,7 @@ return { [1]="unique_nearby_allies_recover_permyriad_max_life_on_death" } }, - [2676]={ + [2631]={ [1]={ [1]={ limit={ @@ -56516,7 +55734,7 @@ return { [1]="base_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2677]={ + [2632]={ [1]={ [1]={ limit={ @@ -56584,7 +55802,7 @@ return { [2]="onslaught_time_granted_on_kill_ms" } }, - [2678]={ + [2633]={ [1]={ [1]={ [1]={ @@ -56604,7 +55822,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [2679]={ + [2634]={ [1]={ [1]={ limit={ @@ -56620,7 +55838,7 @@ return { [1]="penetrate_elemental_resistance_per_frenzy_charge_%" } }, - [2680]={ + [2635]={ [1]={ [1]={ limit={ @@ -56649,7 +55867,7 @@ return { [1]="damage_vs_enemies_on_full_life_per_power_charge_+%" } }, - [2681]={ + [2636]={ [1]={ [1]={ limit={ @@ -56678,7 +55896,7 @@ return { [1]="damage_vs_enemies_on_low_life_per_power_charge_+%" } }, - [2682]={ + [2637]={ [1]={ [1]={ limit={ @@ -56694,7 +55912,7 @@ return { [1]="local_display_nearby_enemies_all_resistances_%" } }, - [2683]={ + [2638]={ [1]={ [1]={ [1]={ @@ -56714,7 +55932,7 @@ return { [1]="shapers_seed_unique_aura_life_regeneration_rate_per_minute_%" } }, - [2684]={ + [2639]={ [1]={ [1]={ limit={ @@ -56730,7 +55948,7 @@ return { [1]="dominance_additional_block_%_on_nearby_allies_per_100_strength" } }, - [2685]={ + [2640]={ [1]={ [1]={ limit={ @@ -56759,7 +55977,7 @@ return { [1]="dominance_defences_+%_on_nearby_allies_per_100_strength" } }, - [2686]={ + [2641]={ [1]={ [1]={ limit={ @@ -56775,7 +55993,7 @@ return { [1]="dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity" } }, - [2687]={ + [2642]={ [1]={ [1]={ limit={ @@ -56804,7 +56022,7 @@ return { [1]="dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence" } }, - [2688]={ + [2643]={ [1]={ [1]={ limit={ @@ -56820,7 +56038,7 @@ return { [1]="shapers_seed_unique_aura_mana_regeneration_rate_+%" } }, - [2689]={ + [2644]={ [1]={ [1]={ limit={ @@ -56841,7 +56059,7 @@ return { [2]="local_grants_aura_maximum_added_fire_damage_per_red_socket" } }, - [2690]={ + [2645]={ [1]={ [1]={ limit={ @@ -56862,7 +56080,7 @@ return { [2]="local_grants_aura_maximum_added_cold_damage_per_green_socket" } }, - [2691]={ + [2646]={ [1]={ [1]={ limit={ @@ -56883,7 +56101,7 @@ return { [2]="local_grants_aura_maximum_added_lightning_damage_per_blue_socket" } }, - [2692]={ + [2647]={ [1]={ [1]={ limit={ @@ -56904,7 +56122,7 @@ return { [2]="local_grants_aura_maximum_added_chaos_damage_per_white_socket" } }, - [2693]={ + [2648]={ [1]={ [1]={ [1]={ @@ -56924,7 +56142,7 @@ return { [1]="life_regen_per_minute_per_endurance_charge" } }, - [2694]={ + [2649]={ [1]={ [1]={ limit={ @@ -56940,7 +56158,7 @@ return { [1]="cannot_knockback" } }, - [2695]={ + [2650]={ [1]={ [1]={ limit={ @@ -56956,7 +56174,7 @@ return { [1]="attack_damage_that_stuns_also_chills" } }, - [2696]={ + [2651]={ [1]={ [1]={ limit={ @@ -56972,7 +56190,7 @@ return { [1]="gain_x_life_when_endurance_charge_expires_or_consumed" } }, - [2697]={ + [2652]={ [1]={ [1]={ limit={ @@ -57001,7 +56219,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [2698]={ + [2653]={ [1]={ [1]={ limit={ @@ -57017,7 +56235,7 @@ return { [1]="cannot_gain_power_charges" } }, - [2699]={ + [2654]={ [1]={ [1]={ limit={ @@ -57033,7 +56251,7 @@ return { [1]="no_maximum_power_charges" } }, - [2700]={ + [2655]={ [1]={ [1]={ limit={ @@ -57049,7 +56267,7 @@ return { [1]="enemy_knockback_direction_is_reversed" } }, - [2701]={ + [2656]={ [1]={ [1]={ limit={ @@ -57065,7 +56283,7 @@ return { [1]="immune_to_ally_buff_auras" } }, - [2702]={ + [2657]={ [1]={ [1]={ limit={ @@ -57081,7 +56299,7 @@ return { [1]="allow_2_active_banners" } }, - [2703]={ + [2658]={ [1]={ [1]={ limit={ @@ -57090,14 +56308,14 @@ return { [2]="#" } }, - text="Your Aura Buffs do not affect allies" + text="Your Aura Buffs do not affect Allies" } }, stats={ [1]="buff_auras_dont_affect_allies" } }, - [2704]={ + [2659]={ [1]={ [1]={ limit={ @@ -57113,7 +56331,7 @@ return { [1]="hits_can_only_kill_frozen_enemies" } }, - [2705]={ + [2660]={ [1]={ [1]={ limit={ @@ -57129,7 +56347,7 @@ return { [1]="maximum_life_taken_as_physical_damage_on_minion_death_%" } }, - [2706]={ + [2661]={ [1]={ [1]={ limit={ @@ -57145,7 +56363,7 @@ return { [1]="maximum_es_taken_as_physical_damage_on_minion_death_%" } }, - [2707]={ + [2662]={ [1]={ [1]={ limit={ @@ -57174,7 +56392,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [2708]={ + [2663]={ [1]={ [1]={ [1]={ @@ -57194,7 +56412,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_while_shocked" } }, - [2709]={ + [2664]={ [1]={ [1]={ limit={ @@ -57223,7 +56441,7 @@ return { [1]="charge_duration_+%" } }, - [2710]={ + [2665]={ [1]={ [1]={ limit={ @@ -57239,7 +56457,7 @@ return { [1]="physical_damage_taken_on_minion_death" } }, - [2711]={ + [2666]={ [1]={ [1]={ [1]={ @@ -57259,7 +56477,7 @@ return { [1]="onslaught_buff_duration_on_culling_strike_ms" } }, - [2712]={ + [2667]={ [1]={ [1]={ limit={ @@ -57288,7 +56506,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [2713]={ + [2668]={ [1]={ [1]={ limit={ @@ -57304,7 +56522,7 @@ return { [1]="base_avoid_chill_%_while_have_onslaught" } }, - [2714]={ + [2669]={ [1]={ [1]={ limit={ @@ -57329,7 +56547,7 @@ return { [1]="mine_extra_uses" } }, - [2715]={ + [2670]={ [1]={ [1]={ limit={ @@ -57345,7 +56563,7 @@ return { [1]="base_fire_damage_heals" } }, - [2716]={ + [2671]={ [1]={ [1]={ limit={ @@ -57361,7 +56579,7 @@ return { [1]="base_cold_damage_heals" } }, - [2717]={ + [2672]={ [1]={ [1]={ limit={ @@ -57377,7 +56595,7 @@ return { [1]="base_lightning_damage_heals" } }, - [2718]={ + [2673]={ [1]={ [1]={ limit={ @@ -57393,7 +56611,7 @@ return { [1]="base_elemental_damage_heals" } }, - [2719]={ + [2674]={ [1]={ [1]={ limit={ @@ -57409,7 +56627,7 @@ return { [1]="avoid_freeze_chill_ignite_%_while_have_onslaught" } }, - [2720]={ + [2675]={ [1]={ [1]={ limit={ @@ -57425,7 +56643,7 @@ return { [1]="ignites_reflected_to_self" } }, - [2721]={ + [2676]={ [1]={ [1]={ [1]={ @@ -57458,7 +56676,7 @@ return { [1]="gain_onslaught_when_ignited_ms" } }, - [2722]={ + [2677]={ [1]={ [1]={ limit={ @@ -57483,7 +56701,7 @@ return { [1]="blind_nearby_enemies_when_ignited_%" } }, - [2723]={ + [2678]={ [1]={ [1]={ limit={ @@ -57499,7 +56717,7 @@ return { [1]="map_non_unique_equipment_drops_as_sell_price" } }, - [2724]={ + [2679]={ [1]={ [1]={ limit={ @@ -57515,7 +56733,7 @@ return { [1]="map_items_drop_corrupted" } }, - [2725]={ + [2680]={ [1]={ [1]={ limit={ @@ -57531,7 +56749,7 @@ return { [1]="map_items_drop_corrupted_%" } }, - [2726]={ + [2681]={ [1]={ [1]={ limit={ @@ -57547,7 +56765,7 @@ return { [1]="map_weapons_drop_animated" } }, - [2727]={ + [2682]={ [1]={ [1]={ limit={ @@ -57594,7 +56812,7 @@ return { [2]="allies_in_presence_have_unholy_might_while_you_not_on_low_mana" } }, - [2728]={ + [2683]={ [1]={ [1]={ [1]={ @@ -57627,7 +56845,7 @@ return { [1]="gain_unholy_might_on_block_ms" } }, - [2729]={ + [2684]={ [1]={ [1]={ limit={ @@ -57643,7 +56861,7 @@ return { [1]="local_jewel_nearby_passives_str_to_dex" } }, - [2730]={ + [2685]={ [1]={ [1]={ limit={ @@ -57659,7 +56877,7 @@ return { [1]="local_jewel_nearby_passives_str_to_int" } }, - [2731]={ + [2686]={ [1]={ [1]={ limit={ @@ -57675,7 +56893,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_str" } }, - [2732]={ + [2687]={ [1]={ [1]={ limit={ @@ -57691,7 +56909,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_int" } }, - [2733]={ + [2688]={ [1]={ [1]={ limit={ @@ -57707,7 +56925,7 @@ return { [1]="local_jewel_nearby_passives_int_to_str" } }, - [2734]={ + [2689]={ [1]={ [1]={ limit={ @@ -57723,7 +56941,7 @@ return { [1]="local_jewel_nearby_passives_int_to_dex" } }, - [2735]={ + [2690]={ [1]={ [1]={ limit={ @@ -57752,7 +56970,7 @@ return { [1]="skill_area_of_effect_when_unarmed_+%" } }, - [2736]={ + [2691]={ [1]={ [1]={ limit={ @@ -57768,7 +56986,7 @@ return { [1]="recover_%_maximum_life_when_corpse_destroyed_or_consumed" } }, - [2737]={ + [2692]={ [1]={ [1]={ limit={ @@ -57797,7 +57015,7 @@ return { [1]="local_unique_jewel_totem_life_+X%_per_10_str_in_radius" } }, - [2738]={ + [2693]={ [1]={ [1]={ limit={ @@ -57813,7 +57031,7 @@ return { [1]="local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill" } }, - [2739]={ + [2694]={ [1]={ [1]={ limit={ @@ -57829,23 +57047,36 @@ return { [1]="gain_X_random_rare_monster_mods_on_kill" } }, - [2740]={ + [2695]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, text="Recover {0}% of maximum Life when you Block" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0}% of maximum Life when you Block" } }, stats={ [1]="recover_%_of_maximum_life_on_block" } }, - [2741]={ + [2696]={ [1]={ [1]={ limit={ @@ -57861,7 +57092,7 @@ return { [1]="minion_recover_%_of_maximum_life_on_block" } }, - [2742]={ + [2697]={ [1]={ [1]={ limit={ @@ -57877,7 +57108,7 @@ return { [1]="totems_cannot_be_stunned" } }, - [2743]={ + [2698]={ [1]={ [1]={ limit={ @@ -57906,7 +57137,7 @@ return { [1]="damage_+%_while_leeching" } }, - [2744]={ + [2699]={ [1]={ [1]={ limit={ @@ -57922,7 +57153,7 @@ return { [1]="display_bow_range_+" } }, - [2745]={ + [2700]={ [1]={ [1]={ limit={ @@ -57938,7 +57169,7 @@ return { [1]="local_unique_jewel_melee_applies_to_bow" } }, - [2746]={ + [2701]={ [1]={ [1]={ limit={ @@ -57954,7 +57185,7 @@ return { [1]="local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius" } }, - [2747]={ + [2702]={ [1]={ [1]={ limit={ @@ -57970,7 +57201,7 @@ return { [1]="local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius" } }, - [2748]={ + [2703]={ [1]={ [1]={ limit={ @@ -57986,7 +57217,7 @@ return { [1]="local_unique_jewel_X_strength_per_1_strength_allocated_in_radius" } }, - [2749]={ + [2704]={ [1]={ [1]={ limit={ @@ -58015,7 +57246,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_10_int_in_radius" } }, - [2750]={ + [2705]={ [1]={ [1]={ limit={ @@ -58031,7 +57262,7 @@ return { [1]="local_unique_jewel_passives_in_radius_applied_to_minions_instead" } }, - [2751]={ + [2706]={ [1]={ [1]={ limit={ @@ -58047,7 +57278,7 @@ return { [1]="passive_applies_to_minions" } }, - [2752]={ + [2707]={ [1]={ [1]={ limit={ @@ -58063,7 +57294,7 @@ return { [1]="life_gained_on_hit_per_enemy_status_ailment" } }, - [2753]={ + [2708]={ [1]={ [1]={ limit={ @@ -58092,7 +57323,7 @@ return { [1]="life_gained_on_spell_hit_per_enemy_status_ailment" } }, - [2754]={ + [2709]={ [1]={ [1]={ limit={ @@ -58121,7 +57352,7 @@ return { [1]="life_regeneration_rate_+%_while_es_full" } }, - [2755]={ + [2710]={ [1]={ [1]={ limit={ @@ -58137,7 +57368,7 @@ return { [1]="local_unique_jewel_with_x_int_in_radius_+1_curse" } }, - [2756]={ + [2711]={ [1]={ [1]={ limit={ @@ -58153,7 +57384,7 @@ return { [1]="melee_range_+_while_unarmed" } }, - [2757]={ + [2712]={ [1]={ [1]={ limit={ @@ -58182,7 +57413,7 @@ return { [1]="damage_+%_per_equipped_magic_item" } }, - [2758]={ + [2713]={ [1]={ [1]={ limit={ @@ -58211,7 +57442,7 @@ return { [1]="spell_damage_+%_while_es_full" } }, - [2759]={ + [2714]={ [1]={ [1]={ limit={ @@ -58236,7 +57467,7 @@ return { [1]="totem_number_of_additional_projectiles" } }, - [2760]={ + [2715]={ [1]={ [1]={ limit={ @@ -58265,7 +57496,7 @@ return { [1]="spell_damage_+%_while_no_mana_reserved" } }, - [2761]={ + [2716]={ [1]={ [1]={ limit={ @@ -58294,7 +57525,7 @@ return { [1]="spell_damage_+%_while_not_low_mana" } }, - [2762]={ + [2717]={ [1]={ [1]={ limit={ @@ -58323,7 +57554,7 @@ return { [1]="mana_cost_+%_while_not_low_mana" } }, - [2763]={ + [2718]={ [1]={ [1]={ limit={ @@ -58352,7 +57583,7 @@ return { [1]="all_attributes_+%_per_assigned_keystone" } }, - [2764]={ + [2719]={ [1]={ [1]={ limit={ @@ -58377,7 +57608,7 @@ return { [1]="number_of_additional_clones" } }, - [2765]={ + [2720]={ [1]={ [1]={ limit={ @@ -58406,7 +57637,7 @@ return { [1]="object_inherent_attack_skills_damage_+%_final_per_frenzy_charge" } }, - [2766]={ + [2721]={ [1]={ [1]={ [1]={ @@ -58426,7 +57657,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [2767]={ + [2722]={ [1]={ [1]={ limit={ @@ -58442,7 +57673,7 @@ return { [1]="local_unique_jewel_intelligence_per_unallocated_node_in_radius" } }, - [2768]={ + [2723]={ [1]={ [1]={ limit={ @@ -58458,7 +57689,7 @@ return { [1]="local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%" } }, - [2769]={ + [2724]={ [1]={ [1]={ limit={ @@ -58474,7 +57705,7 @@ return { [1]="local_unique_jewel_with_70_str_life_recovery_speed_+%" } }, - [2770]={ + [2725]={ [1]={ [1]={ limit={ @@ -58490,7 +57721,7 @@ return { [1]="cannot_be_cursed_with_silence" } }, - [2771]={ + [2726]={ [1]={ [1]={ limit={ @@ -58519,7 +57750,7 @@ return { [1]="vaal_skill_damage_+%" } }, - [2772]={ + [2727]={ [1]={ [1]={ limit={ @@ -58548,7 +57779,7 @@ return { [1]="damage_+%_while_dead" } }, - [2773]={ + [2728]={ [1]={ [1]={ limit={ @@ -58577,7 +57808,7 @@ return { [1]="maximum_life_+%_per_equipped_corrupted_item" } }, - [2774]={ + [2729]={ [1]={ [1]={ limit={ @@ -58606,7 +57837,7 @@ return { [1]="maximum_es_+%_per_equipped_corrupted_item" } }, - [2775]={ + [2730]={ [1]={ [1]={ limit={ @@ -58635,7 +57866,7 @@ return { [1]="chaos_damage_+%_per_equipped_corrupted_item" } }, - [2776]={ + [2731]={ [1]={ [1]={ limit={ @@ -58664,7 +57895,7 @@ return { [1]="life_leech_rate_+%_per_equipped_corrupted_item" } }, - [2777]={ + [2732]={ [1]={ [1]={ [1]={ @@ -58684,7 +57915,7 @@ return { [1]="life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item" } }, - [2778]={ + [2733]={ [1]={ [1]={ limit={ @@ -58713,7 +57944,7 @@ return { [1]="mana_leech_rate_+%_per_equipped_corrupted_item" } }, - [2779]={ + [2734]={ [1]={ [1]={ limit={ @@ -58729,7 +57960,7 @@ return { [1]="all_resistances_%_per_equipped_corrupted_item" } }, - [2780]={ + [2735]={ [1]={ [1]={ limit={ @@ -58745,7 +57976,7 @@ return { [1]="chance_to_gain_vaal_soul_on_kill_%" } }, - [2781]={ + [2736]={ [1]={ [1]={ limit={ @@ -58774,7 +58005,7 @@ return { [1]="vaal_skill_effect_duration_+%" } }, - [2782]={ + [2737]={ [1]={ [1]={ limit={ @@ -58803,7 +58034,7 @@ return { [1]="vaal_skill_soul_gain_preventation_duration_+%" } }, - [2783]={ + [2738]={ [1]={ [1]={ limit={ @@ -58832,7 +58063,7 @@ return { [1]="vaal_skill_critical_strike_chance_+%" } }, - [2784]={ + [2739]={ [1]={ [1]={ limit={ @@ -58848,7 +58079,7 @@ return { [1]="vaal_skill_critical_strike_multiplier_+" } }, - [2785]={ + [2740]={ [1]={ [1]={ limit={ @@ -58864,7 +58095,7 @@ return { [1]="chance_to_gain_vaal_soul_on_enemy_shatter_%" } }, - [2786]={ + [2741]={ [1]={ [1]={ limit={ @@ -58897,7 +58128,7 @@ return { [1]="mana_cost_+%_on_totemified_aura_skills" } }, - [2787]={ + [2742]={ [1]={ [1]={ limit={ @@ -58926,7 +58157,7 @@ return { [1]="corrupted_gem_experience_gain_+%" } }, - [2788]={ + [2743]={ [1]={ [1]={ [1]={ @@ -58946,7 +58177,7 @@ return { [1]="gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms" } }, - [2789]={ + [2744]={ [1]={ [1]={ limit={ @@ -58962,7 +58193,7 @@ return { [1]="spend_energy_shield_for_costs_before_mana" } }, - [2790]={ + [2745]={ [1]={ [1]={ limit={ @@ -58978,7 +58209,7 @@ return { [1]="energy_shield_protects_mana" } }, - [2791]={ + [2746]={ [1]={ [1]={ limit={ @@ -59007,7 +58238,7 @@ return { [1]="enemy_extra_damage_rolls_while_affected_by_vulnerability" } }, - [2792]={ + [2747]={ [1]={ [1]={ limit={ @@ -59023,7 +58254,7 @@ return { [1]="cannot_have_current_energy_shield" } }, - [2793]={ + [2748]={ [1]={ [1]={ limit={ @@ -59039,7 +58270,7 @@ return { [1]="base_no_energy_shield_recovery" } }, - [2794]={ + [2749]={ [1]={ [1]={ limit={ @@ -59055,7 +58286,7 @@ return { [1]="you_count_as_full_life_while_affected_by_vulnerability" } }, - [2795]={ + [2750]={ [1]={ [1]={ limit={ @@ -59071,7 +58302,7 @@ return { [1]="you_count_as_low_life_while_affected_by_vulnerability" } }, - [2796]={ + [2751]={ [1]={ [1]={ limit={ @@ -59096,7 +58327,7 @@ return { [1]="chance_to_curse_self_with_punishment_on_kill_%" } }, - [2797]={ + [2752]={ [1]={ [1]={ limit={ @@ -59112,7 +58343,7 @@ return { [1]="self_cursed_with_level_x_vulnerability" } }, - [2798]={ + [2753]={ [1]={ [1]={ limit={ @@ -59128,7 +58359,7 @@ return { [1]="local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius" } }, - [2799]={ + [2754]={ [1]={ [1]={ limit={ @@ -59144,7 +58375,7 @@ return { [1]="local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius" } }, - [2800]={ + [2755]={ [1]={ [1]={ limit={ @@ -59160,7 +58391,7 @@ return { [1]="local_unique_jewel_damage_increases_applies_to_fire_damage" } }, - [2801]={ + [2756]={ [1]={ [1]={ limit={ @@ -59176,7 +58407,7 @@ return { [1]="local_unique_jewel_physical_damage_increases_applies_to_cold_damage" } }, - [2802]={ + [2757]={ [1]={ [1]={ limit={ @@ -59192,7 +58423,7 @@ return { [1]="local_unique_jewel_cold_damage_increases_applies_to_physical_damage" } }, - [2803]={ + [2758]={ [1]={ [1]={ limit={ @@ -59208,7 +58439,7 @@ return { [1]="local_unique_jewel_energy_shield_increases_applies_to_armour_doubled" } }, - [2804]={ + [2759]={ [1]={ [1]={ limit={ @@ -59224,7 +58455,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_energy_shield" } }, - [2805]={ + [2760]={ [1]={ [1]={ limit={ @@ -59253,7 +58484,7 @@ return { [1]="base_enemy_critical_strike_chance_+%_against_self" } }, - [2806]={ + [2761]={ [1]={ [1]={ [1]={ @@ -59273,7 +58504,7 @@ return { [1]="enemy_additional_critical_strike_chance_permyriad_against_self" } }, - [2807]={ + [2762]={ [1]={ [1]={ [1]={ @@ -59310,7 +58541,7 @@ return { [1]="enemy_critical_strike_chance_+%_against_self_20_times_value" } }, - [2808]={ + [2763]={ [1]={ [1]={ limit={ @@ -59326,7 +58557,7 @@ return { [1]="local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex" } }, - [2809]={ + [2764]={ [1]={ [1]={ limit={ @@ -59342,7 +58573,7 @@ return { [1]="local_unique_jewel_additional_life_per_X_int_in_radius" } }, - [2810]={ + [2765]={ [1]={ [1]={ limit={ @@ -59358,7 +58589,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_X_int_in_radius" } }, - [2811]={ + [2766]={ [1]={ [1]={ limit={ @@ -59374,7 +58605,7 @@ return { [1]="local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius" } }, - [2812]={ + [2767]={ [1]={ [1]={ limit={ @@ -59390,7 +58621,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_mana_doubled" } }, - [2813]={ + [2768]={ [1]={ [1]={ limit={ @@ -59406,7 +58637,7 @@ return { [1]="local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius" } }, - [2814]={ + [2769]={ [1]={ [1]={ limit={ @@ -59435,7 +58666,7 @@ return { [1]="local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius" } }, - [2815]={ + [2770]={ [1]={ [1]={ [1]={ @@ -59468,7 +58699,7 @@ return { [1]="chill_enemy_when_hit_duration_ms" } }, - [2816]={ + [2771]={ [1]={ [1]={ limit={ @@ -59497,7 +58728,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [2817]={ + [2772]={ [1]={ [1]={ limit={ @@ -59526,7 +58757,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [2818]={ + [2773]={ [1]={ [1]={ limit={ @@ -59555,7 +58786,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [2819]={ + [2774]={ [1]={ [1]={ [1]={ @@ -59580,7 +58811,7 @@ return { [2]="local_unique_regen_es_from_removed_life_duration_ms" } }, - [2820]={ + [2775]={ [1]={ [1]={ limit={ @@ -59596,7 +58827,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius" } }, - [2821]={ + [2776]={ [1]={ [1]={ limit={ @@ -59612,7 +58843,7 @@ return { [1]="local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius" } }, - [2822]={ + [2777]={ [1]={ [1]={ limit={ @@ -59628,7 +58859,7 @@ return { [1]="local_unique_jewel_fire_damage_+1%_per_x_int_in_radius" } }, - [2823]={ + [2778]={ [1]={ [1]={ limit={ @@ -59644,7 +58875,7 @@ return { [1]="local_unique_jewel_cold_damage_+1%_per_x_int_in_radius" } }, - [2824]={ + [2779]={ [1]={ [1]={ limit={ @@ -59660,7 +58891,7 @@ return { [1]="local_unique_jewel_physical_damage_+1%_per_int_in_radius" } }, - [2825]={ + [2780]={ [1]={ [1]={ limit={ @@ -59676,7 +58907,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius" } }, - [2826]={ + [2781]={ [1]={ [1]={ limit={ @@ -59692,7 +58923,7 @@ return { [1]="local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius" } }, - [2827]={ + [2782]={ [1]={ [1]={ [1]={ @@ -59712,7 +58943,7 @@ return { [1]="local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius" } }, - [2828]={ + [2783]={ [1]={ [1]={ limit={ @@ -59741,7 +58972,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius" } }, - [2829]={ + [2784]={ [1]={ [1]={ limit={ @@ -59757,7 +58988,7 @@ return { [1]="local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius" } }, - [2830]={ + [2785]={ [1]={ [1]={ limit={ @@ -59773,7 +59004,7 @@ return { [1]="local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius" } }, - [2831]={ + [2786]={ [1]={ [1]={ limit={ @@ -59789,7 +59020,7 @@ return { [1]="local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius" } }, - [2832]={ + [2787]={ [1]={ [1]={ limit={ @@ -59805,7 +59036,7 @@ return { [1]="local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius" } }, - [2833]={ + [2788]={ [1]={ [1]={ limit={ @@ -59821,7 +59052,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius" } }, - [2834]={ + [2789]={ [1]={ [1]={ limit={ @@ -59837,7 +59068,7 @@ return { [1]="local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius" } }, - [2835]={ + [2790]={ [1]={ [1]={ limit={ @@ -59853,7 +59084,7 @@ return { [1]="local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius" } }, - [2836]={ + [2791]={ [1]={ [1]={ limit={ @@ -59878,7 +59109,7 @@ return { [1]="split_arrow_number_of_additional_arrows" } }, - [2837]={ + [2792]={ [1]={ [1]={ limit={ @@ -59894,7 +59125,7 @@ return { [1]="animate_weapon_can_animate_bows" } }, - [2838]={ + [2793]={ [1]={ [1]={ limit={ @@ -59910,7 +59141,7 @@ return { [1]="animate_weapon_can_animate_wands" } }, - [2839]={ + [2794]={ [1]={ [1]={ [1]={ @@ -59930,7 +59161,7 @@ return { [1]="local_display_nearby_enemies_take_X_lightning_damage_per_minute" } }, - [2840]={ + [2795]={ [1]={ [1]={ limit={ @@ -59946,7 +59177,7 @@ return { [1]="damage_taken_goes_to_mana_%_per_power_charge" } }, - [2841]={ + [2796]={ [1]={ [1]={ limit={ @@ -59979,7 +59210,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [2842]={ + [2797]={ [1]={ [1]={ [1]={ @@ -59999,7 +59230,7 @@ return { [1]="enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit" } }, - [2843]={ + [2798]={ [1]={ [1]={ limit={ @@ -60028,7 +59259,7 @@ return { [1]="ball_lightning_damage_+%" } }, - [2844]={ + [2799]={ [1]={ [1]={ limit={ @@ -60057,7 +59288,7 @@ return { [1]="base_poison_duration_+%" } }, - [2845]={ + [2800]={ [1]={ [1]={ limit={ @@ -60090,7 +59321,7 @@ return { [1]="unique_volkuurs_clutch_poison_duration_+%_final" } }, - [2846]={ + [2801]={ [1]={ [1]={ limit={ @@ -60106,7 +59337,7 @@ return { [1]="global_poison_on_hit" } }, - [2847]={ + [2802]={ [1]={ [1]={ limit={ @@ -60131,7 +59362,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [2848]={ + [2803]={ [1]={ [1]={ limit={ @@ -60156,7 +59387,7 @@ return { [1]="minions_chance_to_poison_on_hit_%" } }, - [2849]={ + [2804]={ [1]={ [1]={ limit={ @@ -60181,7 +59412,7 @@ return { [1]="chance_to_poison_on_hit_with_attacks_%" } }, - [2850]={ + [2805]={ [1]={ [1]={ limit={ @@ -60197,7 +59428,7 @@ return { [1]="fire_damage_taken_%_as_cold" } }, - [2851]={ + [2806]={ [1]={ [1]={ limit={ @@ -60213,7 +59444,7 @@ return { [1]="fire_damage_taken_%_as_lightning" } }, - [2852]={ + [2807]={ [1]={ [1]={ limit={ @@ -60229,7 +59460,7 @@ return { [1]="cold_damage_taken_%_as_fire" } }, - [2853]={ + [2808]={ [1]={ [1]={ limit={ @@ -60245,7 +59476,7 @@ return { [1]="cold_damage_taken_%_as_lightning" } }, - [2854]={ + [2809]={ [1]={ [1]={ limit={ @@ -60261,7 +59492,7 @@ return { [1]="lightning_damage_taken_%_as_fire" } }, - [2855]={ + [2810]={ [1]={ [1]={ limit={ @@ -60277,7 +59508,7 @@ return { [1]="lightning_damage_taken_%_as_cold" } }, - [2856]={ + [2811]={ [1]={ [1]={ limit={ @@ -60306,7 +59537,7 @@ return { [1]="flask_charges_gained_+%_during_flask_effect" } }, - [2857]={ + [2812]={ [1]={ [1]={ limit={ @@ -60335,7 +59566,7 @@ return { [1]="mana_regeneration_rate_+%_during_flask_effect" } }, - [2858]={ + [2813]={ [1]={ [1]={ limit={ @@ -60364,7 +59595,7 @@ return { [1]="movement_speed_+%_during_flask_effect" } }, - [2859]={ + [2814]={ [1]={ [1]={ limit={ @@ -60380,7 +59611,7 @@ return { [1]="critical_strike_multiplier_+_vs_bleeding_enemies" } }, - [2860]={ + [2815]={ [1]={ [1]={ limit={ @@ -60396,7 +59627,7 @@ return { [1]="critical_strike_multiplier_+_vs_burning_enemies" } }, - [2861]={ + [2816]={ [1]={ [1]={ limit={ @@ -60412,7 +59643,7 @@ return { [1]="critical_strike_multiplier_+_per_1%_block_chance" } }, - [2862]={ + [2817]={ [1]={ [1]={ limit={ @@ -60441,7 +59672,7 @@ return { [1]="critical_strike_chance_+%_vs_bleeding_enemies" } }, - [2863]={ + [2818]={ [1]={ [1]={ limit={ @@ -60457,7 +59688,7 @@ return { [1]="minion_no_extra_bleeding_damage_while_moving" } }, - [2864]={ + [2819]={ [1]={ [1]={ limit={ @@ -60473,7 +59704,7 @@ return { [1]="no_extra_bleeding_damage_while_moving" } }, - [2865]={ + [2820]={ [1]={ [1]={ limit={ @@ -60489,7 +59720,7 @@ return { [1]="map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack" } }, - [2866]={ + [2821]={ [1]={ [1]={ limit={ @@ -60505,7 +59736,7 @@ return { [1]="action_speed_cannot_be_reduced_below_base" } }, - [2867]={ + [2822]={ [1]={ [1]={ limit={ @@ -60521,7 +59752,7 @@ return { [1]="movement_speed_cannot_be_reduced_below_base" } }, - [2868]={ + [2823]={ [1]={ [1]={ limit={ @@ -60550,7 +59781,7 @@ return { [1]="damage_+%_while_fortified" } }, - [2869]={ + [2824]={ [1]={ [1]={ [1]={ @@ -60570,7 +59801,7 @@ return { [1]="life_regeneration_per_minute_%_while_fortified" } }, - [2870]={ + [2825]={ [1]={ [1]={ limit={ @@ -60599,7 +59830,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [2871]={ + [2826]={ [1]={ [1]={ limit={ @@ -60615,7 +59846,7 @@ return { [1]="restore_life_and_mana_on_warcry_%" } }, - [2872]={ + [2827]={ [1]={ [1]={ limit={ @@ -60631,7 +59862,7 @@ return { [1]="restore_life_on_warcry_%" } }, - [2873]={ + [2828]={ [1]={ [1]={ limit={ @@ -60660,7 +59891,7 @@ return { [1]="warcry_duration_+%" } }, - [2874]={ + [2829]={ [1]={ [1]={ limit={ @@ -60689,7 +59920,7 @@ return { [1]="attack_speed_+%_when_hit" } }, - [2875]={ + [2830]={ [1]={ [1]={ limit={ @@ -60718,7 +59949,7 @@ return { [1]="damage_+%_when_not_on_low_life" } }, - [2876]={ + [2831]={ [1]={ [1]={ limit={ @@ -60747,7 +59978,7 @@ return { [1]="damage_+%_while_totem_active" } }, - [2877]={ + [2832]={ [1]={ [1]={ limit={ @@ -60763,7 +59994,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_on_kill" } }, - [2878]={ + [2833]={ [1]={ [1]={ limit={ @@ -60792,7 +60023,7 @@ return { [1]="attack_and_cast_speed_+%_on_placing_totem" } }, - [2879]={ + [2834]={ [1]={ [1]={ limit={ @@ -60821,7 +60052,7 @@ return { [1]="damage_+%_to_rare_and_unique_enemies" } }, - [2880]={ + [2835]={ [1]={ [1]={ limit={ @@ -60850,7 +60081,7 @@ return { [1]="attack_speed_+%_while_leeching" } }, - [2881]={ + [2836]={ [1]={ [1]={ limit={ @@ -60866,7 +60097,7 @@ return { [1]="base_life_leech_does_not_stop_at_full_life" } }, - [2882]={ + [2837]={ [1]={ [1]={ limit={ @@ -60882,7 +60113,7 @@ return { [1]="cannot_be_stunned_while_leeching" } }, - [2883]={ + [2838]={ [1]={ [1]={ limit={ @@ -60911,7 +60142,7 @@ return { [1]="armour_and_evasion_on_low_life_+%" } }, - [2884]={ + [2839]={ [1]={ [1]={ limit={ @@ -60940,7 +60171,7 @@ return { [1]="taunted_enemies_chance_to_be_stunned_+%" } }, - [2885]={ + [2840]={ [1]={ [1]={ limit={ @@ -60969,7 +60200,7 @@ return { [1]="taunted_enemies_damage_taken_+%" } }, - [2886]={ + [2841]={ [1]={ [1]={ limit={ @@ -60998,7 +60229,7 @@ return { [1]="attack_speed_while_fortified_+%" } }, - [2887]={ + [2842]={ [1]={ [1]={ limit={ @@ -61014,7 +60245,7 @@ return { [1]="block_chance_on_damage_taken_%" } }, - [2888]={ + [2843]={ [1]={ [1]={ limit={ @@ -61043,7 +60274,7 @@ return { [1]="damage_while_no_damage_taken_+%" } }, - [2889]={ + [2844]={ [1]={ [1]={ limit={ @@ -61072,7 +60303,7 @@ return { [1]="physical_damage_on_block_+%" } }, - [2890]={ + [2845]={ [1]={ [1]={ limit={ @@ -61101,7 +60332,7 @@ return { [1]="attack_and_cast_speed_when_hit_+%" } }, - [2891]={ + [2846]={ [1]={ [1]={ limit={ @@ -61130,7 +60361,7 @@ return { [1]="fire_damage_+%_to_blinded_enemies" } }, - [2892]={ + [2847]={ [1]={ [1]={ limit={ @@ -61163,7 +60394,7 @@ return { [1]="spell_damage_taken_+%_from_blinded_enemies" } }, - [2893]={ + [2848]={ [1]={ [1]={ limit={ @@ -61192,7 +60423,7 @@ return { [1]="movement_velocity_while_not_hit_+%" } }, - [2894]={ + [2849]={ [1]={ [1]={ limit={ @@ -61208,7 +60439,7 @@ return { [1]="chance_to_taunt_on_hit_%" } }, - [2895]={ + [2850]={ [1]={ [1]={ limit={ @@ -61224,7 +60455,7 @@ return { [1]="local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius" } }, - [2896]={ + [2851]={ [1]={ [1]={ limit={ @@ -61240,7 +60471,7 @@ return { [1]="local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius" } }, - [2897]={ + [2852]={ [1]={ [1]={ limit={ @@ -61256,7 +60487,7 @@ return { [1]="local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius" } }, - [2898]={ + [2853]={ [1]={ [1]={ limit={ @@ -61272,7 +60503,7 @@ return { [1]="local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius" } }, - [2899]={ + [2854]={ [1]={ [1]={ limit={ @@ -61288,7 +60519,7 @@ return { [1]="glacial_hammer_item_rarity_on_shattering_enemy_+%" } }, - [2900]={ + [2855]={ [1]={ [1]={ limit={ @@ -61304,7 +60535,7 @@ return { [1]="spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%" } }, - [2901]={ + [2856]={ [1]={ [1]={ limit={ @@ -61320,7 +60551,7 @@ return { [1]="double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%" } }, - [2902]={ + [2857]={ [1]={ [1]={ limit={ @@ -61336,7 +60567,7 @@ return { [1]="heavy_strike_chance_to_deal_double_damage_%" } }, - [2903]={ + [2858]={ [1]={ [1]={ limit={ @@ -61369,7 +60600,7 @@ return { [1]="enchantment_boots_mana_costs_when_hit_+%" } }, - [2904]={ + [2859]={ [1]={ [1]={ limit={ @@ -61385,23 +60616,7 @@ return { [1]="enchantment_boots_stun_avoid_%_on_kill" } }, - [2905]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage if you've\ntaken Spell Damage Recently" - } - }, - stats={ - [1]="spell_suppression_chance_%_if_taken_spell_damage_recently" - } - }, - [2906]={ + [2860]={ [1]={ [1]={ limit={ @@ -61417,7 +60632,7 @@ return { [1]="enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill" } }, - [2907]={ + [2861]={ [1]={ [1]={ limit={ @@ -61438,7 +60653,7 @@ return { [2]="enchantment_boots_added_cold_damage_when_hit_maximum" } }, - [2908]={ + [2862]={ [1]={ [1]={ limit={ @@ -61459,7 +60674,7 @@ return { [2]="enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds" } }, - [2909]={ + [2863]={ [1]={ [1]={ limit={ @@ -61480,7 +60695,7 @@ return { [2]="enchantment_boots_maximum_added_fire_damage_on_kill_4s" } }, - [2910]={ + [2864]={ [1]={ [1]={ limit={ @@ -61509,23 +60724,7 @@ return { [1]="enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds" } }, - [2911]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% chance to Freeze, Shock and Ignite if you haven't Crit Recently" - } - }, - stats={ - [1]="enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds" - } - }, - [2912]={ + [2865]={ [1]={ [1]={ limit={ @@ -61541,7 +60740,7 @@ return { [1]="extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently" } }, - [2913]={ + [2866]={ [1]={ [1]={ limit={ @@ -61557,7 +60756,7 @@ return { [1]="local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons" } }, - [2914]={ + [2867]={ [1]={ [1]={ limit={ @@ -61573,7 +60772,7 @@ return { [1]="number_of_melee_skeletons_to_summon_as_mage_skeletons" } }, - [2915]={ + [2868]={ [1]={ [1]={ limit={ @@ -61589,7 +60788,7 @@ return { [1]="local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius" } }, - [2916]={ + [2869]={ [1]={ [1]={ limit={ @@ -61605,7 +60804,7 @@ return { [1]="vigilant_strike_applies_to_nearby_allies_for_X_seconds" } }, - [2917]={ + [2870]={ [1]={ [1]={ limit={ @@ -61634,7 +60833,7 @@ return { [1]="local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius" } }, - [2918]={ + [2871]={ [1]={ [1]={ limit={ @@ -61650,7 +60849,7 @@ return { [1]="local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius" } }, - [2919]={ + [2872]={ [1]={ [1]={ limit={ @@ -61679,7 +60878,7 @@ return { [1]="fireball_radius_up_to_+%_at_longer_ranges" } }, - [2920]={ + [2873]={ [1]={ [1]={ limit={ @@ -61695,7 +60894,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [2921]={ + [2874]={ [1]={ [1]={ limit={ @@ -61711,7 +60910,7 @@ return { [1]="local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius" } }, - [2922]={ + [2875]={ [1]={ [1]={ limit={ @@ -61727,7 +60926,7 @@ return { [1]="animate_weapon_can_animate_up_to_x_additional_ranged_weapons" } }, - [2923]={ + [2876]={ [1]={ [1]={ limit={ @@ -61752,7 +60951,7 @@ return { [1]="local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius" } }, - [2924]={ + [2877]={ [1]={ [1]={ limit={ @@ -61781,7 +60980,7 @@ return { [1]="local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius" } }, - [2925]={ + [2878]={ [1]={ [1]={ limit={ @@ -61810,7 +61009,7 @@ return { [1]="ground_slam_angle_+%" } }, - [2926]={ + [2879]={ [1]={ [1]={ limit={ @@ -61826,7 +61025,7 @@ return { [1]="local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius" } }, - [2927]={ + [2880]={ [1]={ [1]={ limit={ @@ -61842,7 +61041,7 @@ return { [1]="cold_snap_gain_power_charge_on_kill_%" } }, - [2928]={ + [2881]={ [1]={ [1]={ limit={ @@ -61858,7 +61057,7 @@ return { [1]="local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius" } }, - [2929]={ + [2882]={ [1]={ [1]={ limit={ @@ -61874,7 +61073,7 @@ return { [1]="warcry_damage_taken_goes_to_mana_%" } }, - [2930]={ + [2883]={ [1]={ [1]={ limit={ @@ -61899,7 +61098,7 @@ return { [1]="local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius" } }, - [2931]={ + [2884]={ [1]={ [1]={ limit={ @@ -61924,7 +61123,7 @@ return { [1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously" } }, - [2932]={ + [2885]={ [1]={ [1]={ limit={ @@ -61937,10 +61136,10 @@ return { } }, stats={ - [1]="never_block" + [1]="cannot_block" } }, - [2933]={ + [2886]={ [1]={ [1]={ limit={ @@ -61956,7 +61155,7 @@ return { [1]="mana_cost_-%_per_endurance_charge" } }, - [2934]={ + [2887]={ [1]={ [1]={ limit={ @@ -61972,7 +61171,7 @@ return { [1]="gain_rampage_while_at_maximum_endurance_charges" } }, - [2935]={ + [2888]={ [1]={ [1]={ limit={ @@ -61988,7 +61187,7 @@ return { [1]="lose_endurance_charges_on_rampage_end" } }, - [2936]={ + [2889]={ [1]={ [1]={ limit={ @@ -62004,7 +61203,7 @@ return { [1]="virtual_number_of_ranged_animated_weapons_allowed" } }, - [2937]={ + [2890]={ [1]={ [1]={ limit={ @@ -62020,7 +61219,7 @@ return { [1]="stun_threshold_based_on_%_mana_instead_of_life" } }, - [2938]={ + [2891]={ [1]={ [1]={ limit={ @@ -62049,7 +61248,7 @@ return { [1]="stun_threshold_+%" } }, - [2939]={ + [2892]={ [1]={ [1]={ limit={ @@ -62078,7 +61277,7 @@ return { [1]="freeze_threshold_+%" } }, - [2940]={ + [2893]={ [1]={ [1]={ limit={ @@ -62107,7 +61306,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_active_skeleton" } }, - [2941]={ + [2894]={ [1]={ [1]={ limit={ @@ -62136,7 +61335,7 @@ return { [1]="minion_duration_+%_per_active_zombie" } }, - [2942]={ + [2895]={ [1]={ [1]={ limit={ @@ -62165,7 +61364,7 @@ return { [1]="minion_damage_+%_per_active_spectre" } }, - [2943]={ + [2896]={ [1]={ [1]={ [1]={ @@ -62185,7 +61384,7 @@ return { [1]="minion_life_regeneration_per_minute_per_active_raging_spirit" } }, - [2944]={ + [2897]={ [1]={ [1]={ limit={ @@ -62214,7 +61413,7 @@ return { [1]="warcry_speed_+%" } }, - [2945]={ + [2898]={ [1]={ [1]={ limit={ @@ -62243,7 +61442,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [2946]={ + [2899]={ [1]={ [1]={ limit={ @@ -62268,7 +61467,7 @@ return { [1]="apply_poison_on_hit_vs_bleeding_enemies_%" } }, - [2947]={ + [2900]={ [1]={ [1]={ limit={ @@ -62297,7 +61496,7 @@ return { [1]="damage_taken_+%_from_blinded_enemies" } }, - [2948]={ + [2901]={ [1]={ [1]={ limit={ @@ -62326,7 +61525,7 @@ return { [1]="attack_damage_+%_per_frenzy_charge" } }, - [2949]={ + [2902]={ [1]={ [1]={ limit={ @@ -62355,7 +61554,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [2950]={ + [2903]={ [1]={ [1]={ limit={ @@ -62384,7 +61583,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%" } }, - [2951]={ + [2904]={ [1]={ [1]={ limit={ @@ -62413,7 +61612,7 @@ return { [1]="arcane_surge_effect_on_self_+%" } }, - [2952]={ + [2905]={ [1]={ [1]={ limit={ @@ -62442,7 +61641,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_200_mana_spent_recently_up_to_50%" } }, - [2953]={ + [2906]={ [1]={ [1]={ limit={ @@ -62471,7 +61670,7 @@ return { [1]="onslaught_effect_+%" } }, - [2954]={ + [2907]={ [1]={ [1]={ limit={ @@ -62500,7 +61699,7 @@ return { [1]="attack_damage_+%_while_onslaught_active" } }, - [2955]={ + [2908]={ [1]={ [1]={ limit={ @@ -62529,7 +61728,7 @@ return { [1]="critical_strike_chance_+%_vs_poisoned_enemies" } }, - [2956]={ + [2909]={ [1]={ [1]={ limit={ @@ -62558,7 +61757,7 @@ return { [1]="elemental_damage_taken_+%" } }, - [2957]={ + [2910]={ [1]={ [1]={ limit={ @@ -62587,7 +61786,7 @@ return { [1]="damage_taken_from_traps_and_mines_+%" } }, - [2958]={ + [2911]={ [1]={ [1]={ limit={ @@ -62612,65 +61811,7 @@ return { [1]="maim_on_hit_%_vs_poisoned_enemies" } }, - [2959]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more chance to Evade Melee Attacks during Onslaught" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less chance to Evade Melee Attacks during Onslaught" - } - }, - stats={ - [1]="raider_passive_evade_melee_attacks_while_onslaughted_+%_final" - } - }, - [2960]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more chance to Evade Projectile Attacks during Onslaught" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less chance to Evade Projectile Attacks during Onslaught" - } - }, - stats={ - [1]="raider_passive_evade_projectile_attacks_while_onslaughted_+%_final" - } - }, - [2961]={ + [2912]={ [1]={ [1]={ limit={ @@ -62686,7 +61827,7 @@ return { [1]="dispel_status_ailments_on_flask_use" } }, - [2962]={ + [2913]={ [1]={ [1]={ limit={ @@ -62702,7 +61843,7 @@ return { [1]="avoid_status_ailments_%_during_flask_effect" } }, - [2963]={ + [2914]={ [1]={ [1]={ limit={ @@ -62731,7 +61872,7 @@ return { [1]="attack_speed_+%_during_flask_effect" } }, - [2964]={ + [2915]={ [1]={ [1]={ limit={ @@ -62747,7 +61888,7 @@ return { [1]="chaos_resistance_+_while_using_flask" } }, - [2965]={ + [2916]={ [1]={ [1]={ limit={ @@ -62772,7 +61913,7 @@ return { [1]="poison_on_hit_during_flask_effect_%" } }, - [2966]={ + [2917]={ [1]={ [1]={ limit={ @@ -62788,7 +61929,7 @@ return { [1]="explode_on_kill_%_chaos_damage_to_deal" } }, - [2967]={ + [2918]={ [1]={ [1]={ limit={ @@ -62804,7 +61945,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%" } }, - [2968]={ + [2919]={ [1]={ [1]={ limit={ @@ -62820,7 +61961,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [2969]={ + [2920]={ [1]={ [1]={ limit={ @@ -62867,7 +62008,7 @@ return { [2]="allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [2970]={ + [2921]={ [1]={ [1]={ limit={ @@ -62883,7 +62024,7 @@ return { [1]="enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds" } }, - [2971]={ + [2922]={ [1]={ [1]={ limit={ @@ -62899,7 +62040,7 @@ return { [1]="enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds" } }, - [2972]={ + [2923]={ [1]={ [1]={ limit={ @@ -62920,7 +62061,7 @@ return { [2]="enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s" } }, - [2973]={ + [2924]={ [1]={ [1]={ limit={ @@ -62936,7 +62077,7 @@ return { [1]="movement_speed_+%_while_not_affected_by_status_ailments" } }, - [2974]={ + [2925]={ [1]={ [1]={ limit={ @@ -62952,7 +62093,7 @@ return { [1]="stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds" } }, - [2975]={ + [2926]={ [1]={ [1]={ limit={ @@ -62968,7 +62109,7 @@ return { [1]="totems_explode_for_%_of_max_life_as_fire_damage_on_low_life" } }, - [2976]={ + [2927]={ [1]={ [1]={ limit={ @@ -62984,7 +62125,7 @@ return { [1]="guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%" } }, - [2977]={ + [2928]={ [1]={ [1]={ limit={ @@ -63009,7 +62150,7 @@ return { [1]="chance_to_avoid_stun_%_aura_while_wielding_a_staff" } }, - [2978]={ + [2929]={ [1]={ [1]={ limit={ @@ -63038,7 +62179,7 @@ return { [1]="damage_taken_+%_from_bleeding_enemies" } }, - [2979]={ + [2930]={ [1]={ [1]={ limit={ @@ -63063,7 +62204,7 @@ return { [1]="maim_bleeding_enemies_on_hit_%" } }, - [2980]={ + [2931]={ [1]={ [1]={ limit={ @@ -63092,7 +62233,7 @@ return { [1]="one_handed_attack_speed_+%" } }, - [2981]={ + [2932]={ [1]={ [1]={ limit={ @@ -63121,7 +62262,7 @@ return { [1]="movement_speed_+%_for_4_seconds_on_block" } }, - [2982]={ + [2933]={ [1]={ [1]={ limit={ @@ -63150,7 +62291,7 @@ return { [1]="movement_speed_+%_while_fortified" } }, - [2983]={ + [2934]={ [1]={ [1]={ limit={ @@ -63179,7 +62320,7 @@ return { [1]="elemental_damage_taken_+%_at_maximum_endurance_charges" } }, - [2984]={ + [2935]={ [1]={ [1]={ limit={ @@ -63195,7 +62336,7 @@ return { [1]="status_ailments_removed_at_low_life" } }, - [2985]={ + [2936]={ [1]={ [1]={ limit={ @@ -63220,7 +62361,7 @@ return { [1]="gain_frenzy_charge_on_main_hand_kill_%" } }, - [2986]={ + [2937]={ [1]={ [1]={ limit={ @@ -63245,7 +62386,7 @@ return { [1]="gain_endurance_charge_on_main_hand_kill_%" } }, - [2987]={ + [2938]={ [1]={ [1]={ limit={ @@ -63274,7 +62415,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_kill" } }, - [2988]={ + [2939]={ [1]={ [1]={ limit={ @@ -63290,7 +62431,7 @@ return { [1]="avoid_stun_%_for_4_seconds_on_kill" } }, - [2989]={ + [2940]={ [1]={ [1]={ limit={ @@ -63315,7 +62456,7 @@ return { [1]="you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%" } }, - [2990]={ + [2941]={ [1]={ [1]={ limit={ @@ -63340,7 +62481,7 @@ return { [1]="minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%" } }, - [2991]={ + [2942]={ [1]={ [1]={ limit={ @@ -63369,7 +62510,7 @@ return { [1]="warcry_cooldown_speed_+%" } }, - [2992]={ + [2943]={ [1]={ [1]={ limit={ @@ -63398,7 +62539,7 @@ return { [1]="golem_skill_cooldown_recovery_+%" } }, - [2993]={ + [2944]={ [1]={ [1]={ limit={ @@ -63427,7 +62568,7 @@ return { [1]="golem_cooldown_recovery_+%" } }, - [2994]={ + [2945]={ [1]={ [1]={ limit={ @@ -63443,7 +62584,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [2995]={ + [2946]={ [1]={ [1]={ limit={ @@ -63472,7 +62613,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [2996]={ + [2947]={ [1]={ [1]={ limit={ @@ -63501,7 +62642,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_low_life" } }, - [2997]={ + [2948]={ [1]={ [1]={ limit={ @@ -63530,7 +62671,7 @@ return { [1]="damage_+%_with_one_handed_weapons" } }, - [2998]={ + [2949]={ [1]={ [1]={ limit={ @@ -63559,7 +62700,7 @@ return { [1]="damage_+%_with_two_handed_weapons" } }, - [2999]={ + [2950]={ [1]={ [1]={ limit={ @@ -63575,7 +62716,7 @@ return { [1]="damage_reduction_rating_from_body_armour_doubled" } }, - [3000]={ + [2951]={ [1]={ [1]={ limit={ @@ -63591,7 +62732,7 @@ return { [1]="damage_reduction_rating_%_with_active_totem" } }, - [3001]={ + [2952]={ [1]={ [1]={ limit={ @@ -63607,7 +62748,7 @@ return { [1]="local_display_cast_level_x_manifest_dancing_dervish" } }, - [3002]={ + [2953]={ [1]={ [1]={ limit={ @@ -63623,7 +62764,7 @@ return { [1]="local_display_manifest_dancing_dervish_disables_weapons" } }, - [3003]={ + [2954]={ [1]={ [1]={ limit={ @@ -63639,7 +62780,7 @@ return { [1]="local_display_manifest_dancing_dervish_destroy_on_end_rampage" } }, - [3004]={ + [2955]={ [1]={ [1]={ limit={ @@ -63655,7 +62796,7 @@ return { [1]="local_display_minions_grant_onslaught" } }, - [3005]={ + [2956]={ [1]={ [1]={ limit={ @@ -63684,7 +62825,7 @@ return { [1]="physical_damage_+%_while_frozen" } }, - [3006]={ + [2957]={ [1]={ [1]={ limit={ @@ -63700,7 +62841,7 @@ return { [1]="local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius" } }, - [3007]={ + [2958]={ [1]={ [1]={ limit={ @@ -63716,7 +62857,7 @@ return { [1]="local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius" } }, - [3008]={ + [2959]={ [1]={ [1]={ limit={ @@ -63741,7 +62882,7 @@ return { [1]="local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius" } }, - [3009]={ + [2960]={ [1]={ [1]={ limit={ @@ -63757,7 +62898,7 @@ return { [1]="local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius" } }, - [3010]={ + [2961]={ [1]={ [1]={ limit={ @@ -63773,7 +62914,7 @@ return { [1]="local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius" } }, - [3011]={ + [2962]={ [1]={ [1]={ limit={ @@ -63789,7 +62930,7 @@ return { [1]="local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius" } }, - [3012]={ + [2963]={ [1]={ [1]={ limit={ @@ -63814,7 +62955,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius" } }, - [3013]={ + [2964]={ [1]={ [1]={ limit={ @@ -63839,7 +62980,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius" } }, - [3014]={ + [2965]={ [1]={ [1]={ limit={ @@ -63864,7 +63005,7 @@ return { [1]="local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius" } }, - [3015]={ + [2966]={ [1]={ [1]={ limit={ @@ -63893,7 +63034,7 @@ return { [1]="local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius" } }, - [3016]={ + [2967]={ [1]={ [1]={ limit={ @@ -63922,7 +63063,7 @@ return { [1]="anger_aura_effect_+%" } }, - [3017]={ + [2968]={ [1]={ [1]={ limit={ @@ -63951,7 +63092,7 @@ return { [1]="purity_of_elements_aura_effect_+%" } }, - [3018]={ + [2969]={ [1]={ [1]={ limit={ @@ -63980,7 +63121,7 @@ return { [1]="purity_of_fire_aura_effect_+%" } }, - [3019]={ + [2970]={ [1]={ [1]={ limit={ @@ -64009,7 +63150,7 @@ return { [1]="purity_of_ice_aura_effect_+%" } }, - [3020]={ + [2971]={ [1]={ [1]={ limit={ @@ -64038,7 +63179,7 @@ return { [1]="purity_of_lightning_aura_effect_+%" } }, - [3021]={ + [2972]={ [1]={ [1]={ limit={ @@ -64067,7 +63208,7 @@ return { [1]="wrath_aura_effect_+%" } }, - [3022]={ + [2973]={ [1]={ [1]={ limit={ @@ -64096,7 +63237,7 @@ return { [1]="banner_aura_effect_+%" } }, - [3023]={ + [2974]={ [1]={ [1]={ limit={ @@ -64125,7 +63266,7 @@ return { [1]="grace_aura_effect_+%" } }, - [3024]={ + [2975]={ [1]={ [1]={ limit={ @@ -64154,7 +63295,7 @@ return { [1]="haste_aura_effect_+%" } }, - [3025]={ + [2976]={ [1]={ [1]={ limit={ @@ -64183,7 +63324,7 @@ return { [1]="precision_aura_effect_+%" } }, - [3026]={ + [2977]={ [1]={ [1]={ limit={ @@ -64212,7 +63353,7 @@ return { [1]="hatred_aura_effect_+%" } }, - [3027]={ + [2978]={ [1]={ [1]={ limit={ @@ -64241,7 +63382,7 @@ return { [1]="determination_aura_effect_+%" } }, - [3028]={ + [2979]={ [1]={ [1]={ limit={ @@ -64270,7 +63411,7 @@ return { [1]="discipline_aura_effect_+%" } }, - [3029]={ + [2980]={ [1]={ [1]={ limit={ @@ -64286,7 +63427,7 @@ return { [1]="cannot_be_poisoned" } }, - [3030]={ + [2981]={ [1]={ [1]={ limit={ @@ -64302,7 +63443,7 @@ return { [1]="chance_to_be_poisoned_%" } }, - [3031]={ + [2982]={ [1]={ [1]={ limit={ @@ -64327,7 +63468,7 @@ return { [1]="avoid_physical_damage_%" } }, - [3032]={ + [2983]={ [1]={ [1]={ limit={ @@ -64352,7 +63493,7 @@ return { [1]="avoid_elemental_damage_%_per_frenzy_charge" } }, - [3033]={ + [2984]={ [1]={ [1]={ limit={ @@ -64377,7 +63518,7 @@ return { [1]="avoid_fire_damage_%" } }, - [3034]={ + [2985]={ [1]={ [1]={ limit={ @@ -64402,7 +63543,7 @@ return { [1]="avoid_cold_damage_%" } }, - [3035]={ + [2986]={ [1]={ [1]={ limit={ @@ -64427,7 +63568,7 @@ return { [1]="avoid_lightning_damage_%" } }, - [3036]={ + [2987]={ [1]={ [1]={ limit={ @@ -64452,7 +63593,7 @@ return { [1]="avoid_chaos_damage_%" } }, - [3037]={ + [2988]={ [1]={ [1]={ limit={ @@ -64477,7 +63618,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3038]={ + [2989]={ [1]={ [1]={ limit={ @@ -64502,7 +63643,7 @@ return { [1]="minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3039]={ + [2990]={ [1]={ [1]={ limit={ @@ -64527,7 +63668,7 @@ return { [1]="chance_to_grant_nearby_enemies_onslaught_on_kill_%" } }, - [3040]={ + [2991]={ [1]={ [1]={ limit={ @@ -64552,7 +63693,7 @@ return { [1]="chance_to_grant_power_charge_to_nearby_allies_on_kill_%" } }, - [3041]={ + [2992]={ [1]={ [1]={ limit={ @@ -64577,7 +63718,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%" } }, - [3042]={ + [2993]={ [1]={ [1]={ limit={ @@ -64593,7 +63734,7 @@ return { [1]="remove_bleed_on_flask_use" } }, - [3043]={ + [2994]={ [1]={ [1]={ limit={ @@ -64609,7 +63750,7 @@ return { [1]="remove_corrupted_blood_when_you_use_a_flask" } }, - [3044]={ + [2995]={ [1]={ [1]={ limit={ @@ -64642,7 +63783,7 @@ return { [1]="lightning_damage_taken_+%" } }, - [3045]={ + [2996]={ [1]={ [1]={ limit={ @@ -64675,7 +63816,7 @@ return { [1]="cold_damage_taken_+%" } }, - [3046]={ + [2997]={ [1]={ [1]={ [1]={ @@ -64695,7 +63836,7 @@ return { [1]="mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy" } }, - [3047]={ + [2998]={ [1]={ [1]={ limit={ @@ -64720,7 +63861,7 @@ return { [1]="gain_flask_chance_on_crit_%" } }, - [3048]={ + [2999]={ [1]={ [1]={ limit={ @@ -64736,39 +63877,7 @@ return { [1]="virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies" } }, - [3049]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Shrapnel Ballista has +{0} to maximum number of Summoned Totems per 200 Strength" - } - }, - stats={ - [1]="number_of_additional_shrapnel_ballistae_per_200_strength" - } - }, - [3050]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Siege Ballista has {0:+d} to maximum number of Summoned Totems per 200 Dexterity" - } - }, - stats={ - [1]="number_of_additional_siege_ballistae_per_200_dexterity" - } - }, - [3051]={ + [3000]={ [1]={ [1]={ limit={ @@ -64789,7 +63898,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_dexterity" } }, - [3052]={ + [3001]={ [1]={ [1]={ limit={ @@ -64805,7 +63914,7 @@ return { [1]="local_display_nearby_enemies_are_blinded" } }, - [3053]={ + [3002]={ [1]={ [1]={ limit={ @@ -64821,7 +63930,7 @@ return { [1]="local_display_nearby_enemies_are_crushed" } }, - [3054]={ + [3003]={ [1]={ [1]={ limit={ @@ -64837,7 +63946,7 @@ return { [1]="local_display_nearby_enemies_have_malediction" } }, - [3055]={ + [3004]={ [1]={ [1]={ limit={ @@ -64853,7 +63962,7 @@ return { [1]="local_display_nearby_enemies_scorched" } }, - [3056]={ + [3005]={ [1]={ [1]={ limit={ @@ -64869,7 +63978,7 @@ return { [1]="local_display_hits_against_nearby_enemies_critical_strike_chance_+50%" } }, - [3057]={ + [3006]={ [1]={ [1]={ limit={ @@ -64898,7 +64007,7 @@ return { [1]="local_display_nearby_enemies_critical_strike_chance_+%_against_self" } }, - [3058]={ + [3007]={ [1]={ [1]={ limit={ @@ -64927,7 +64036,7 @@ return { [1]="local_display_nearby_enemies_flask_charges_granted_+%" } }, - [3059]={ + [3008]={ [1]={ [1]={ limit={ @@ -64960,7 +64069,7 @@ return { [1]="local_display_nearby_enemies_movement_speed_+%" } }, - [3060]={ + [3009]={ [1]={ [1]={ limit={ @@ -64993,7 +64102,7 @@ return { [1]="local_display_nearby_enemies_stun_and_block_recovery_+%" } }, - [3061]={ + [3010]={ [1]={ [1]={ limit={ @@ -65018,7 +64127,7 @@ return { [1]="gain_power_charge_on_non_critical_strike_%" } }, - [3062]={ + [3011]={ [1]={ [1]={ limit={ @@ -65047,7 +64156,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [3063]={ + [3012]={ [1]={ [1]={ limit={ @@ -65072,7 +64181,7 @@ return { [1]="chilled_ground_on_freeze_%_chance_for_3_seconds" } }, - [3064]={ + [3013]={ [1]={ [1]={ limit={ @@ -65097,7 +64206,7 @@ return { [1]="consecrate_ground_on_kill_%_for_3_seconds" } }, - [3065]={ + [3014]={ [1]={ [1]={ limit={ @@ -65126,7 +64235,7 @@ return { [1]="frost_blades_damage_+%" } }, - [3066]={ + [3015]={ [1]={ [1]={ limit={ @@ -65155,7 +64264,7 @@ return { [1]="frost_blades_projectile_speed_+%" } }, - [3067]={ + [3016]={ [1]={ [1]={ limit={ @@ -65180,7 +64289,7 @@ return { [1]="frost_blades_number_of_additional_projectiles_in_chain" } }, - [3068]={ + [3017]={ [1]={ [1]={ limit={ @@ -65209,7 +64318,7 @@ return { [1]="summoned_raging_spirit_duration_+%" } }, - [3069]={ + [3018]={ [1]={ [1]={ limit={ @@ -65234,7 +64343,7 @@ return { [1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%" } }, - [3070]={ + [3019]={ [1]={ [1]={ limit={ @@ -65263,7 +64372,7 @@ return { [1]="discharge_damage_+%" } }, - [3071]={ + [3020]={ [1]={ [1]={ limit={ @@ -65292,7 +64401,7 @@ return { [1]="discharge_radius_+%" } }, - [3072]={ + [3021]={ [1]={ [1]={ limit={ @@ -65317,7 +64426,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [3073]={ + [3022]={ [1]={ [1]={ limit={ @@ -65350,7 +64459,7 @@ return { [1]="anger_mana_reservation_+%" } }, - [3074]={ + [3023]={ [1]={ [1]={ limit={ @@ -65379,7 +64488,7 @@ return { [1]="lightning_trap_damage_+%" } }, - [3075]={ + [3024]={ [1]={ [1]={ limit={ @@ -65404,7 +64513,7 @@ return { [1]="lightning_trap_number_of_additional_projectiles" } }, - [3076]={ + [3025]={ [1]={ [1]={ limit={ @@ -65433,7 +64542,7 @@ return { [1]="lightning_trap_cooldown_speed_+%" } }, - [3077]={ + [3026]={ [1]={ [1]={ limit={ @@ -65449,7 +64558,7 @@ return { [1]="piercing_attacks_cause_bleeding" } }, - [3078]={ + [3027]={ [1]={ [1]={ limit={ @@ -65465,32 +64574,7 @@ return { [1]="energy_shield_recharges_on_block_%" } }, - [3079]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance for Energy Shield Recharge to start when you Suppress Spell Damage" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } - }, - text="Energy Shield Recharge starts when you Suppress Spell Damage" - } - }, - stats={ - [1]="energy_shield_recharges_on_suppress_%" - } - }, - [3080]={ + [3028]={ [1]={ [1]={ [1]={ @@ -65510,7 +64594,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_ms" } }, - [3081]={ + [3029]={ [1]={ [1]={ [1]={ @@ -65530,7 +64614,7 @@ return { [1]="soul_eater_on_rare_kill_ms" } }, - [3082]={ + [3030]={ [1]={ [1]={ [1]={ @@ -65550,7 +64634,7 @@ return { [1]="map_players_gain_soul_eater_on_rare_kill_ms" } }, - [3083]={ + [3031]={ [1]={ [1]={ limit={ @@ -65566,7 +64650,7 @@ return { [1]="gain_soul_eater_during_flask_effect" } }, - [3084]={ + [3032]={ [1]={ [1]={ limit={ @@ -65582,7 +64666,7 @@ return { [1]="lose_soul_eater_souls_on_flask_use" } }, - [3085]={ + [3033]={ [1]={ [1]={ limit={ @@ -65598,7 +64682,7 @@ return { [1]="totemified_skills_taunt_on_hit_%" } }, - [3086]={ + [3034]={ [1]={ [1]={ limit={ @@ -65614,7 +64698,7 @@ return { [1]="chance_to_taunt_on_hit_%" } }, - [3087]={ + [3035]={ [1]={ [1]={ limit={ @@ -65639,7 +64723,7 @@ return { [1]="minion_attacks_chance_to_taunt_on_hit_%" } }, - [3088]={ + [3036]={ [1]={ [1]={ limit={ @@ -65668,7 +64752,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_killing_taunted_enemy" } }, - [3089]={ + [3037]={ [1]={ [1]={ limit={ @@ -65684,7 +64768,7 @@ return { [1]="critical_strike_multiplier_vs_enemies_on_full_life_+" } }, - [3090]={ + [3038]={ [1]={ [1]={ limit={ @@ -65713,7 +64797,7 @@ return { [1]="ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [3091]={ + [3039]={ [1]={ [1]={ limit={ @@ -65742,7 +64826,7 @@ return { [1]="blind_duration_+%" } }, - [3092]={ + [3040]={ [1]={ [1]={ limit={ @@ -65771,7 +64855,7 @@ return { [1]="assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final" } }, - [3093]={ + [3041]={ [1]={ [1]={ limit={ @@ -65787,7 +64871,7 @@ return { [1]="crits_have_culling_strike" } }, - [3094]={ + [3042]={ [1]={ [1]={ [1]={ @@ -65807,7 +64891,7 @@ return { [1]="caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3095]={ + [3043]={ [1]={ [1]={ [1]={ @@ -65827,7 +64911,7 @@ return { [1]="minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3096]={ + [3044]={ [1]={ [1]={ limit={ @@ -65843,7 +64927,7 @@ return { [1]="storm_cloud_charge_count" } }, - [3097]={ + [3045]={ [1]={ [1]={ limit={ @@ -65859,7 +64943,7 @@ return { [1]="storm_cloud_charged_damage_+%_final" } }, - [3098]={ + [3046]={ [1]={ [1]={ limit={ @@ -65875,7 +64959,7 @@ return { [1]="gain_damage_+%_for_4_seconds_if_taken_savage_hit" } }, - [3099]={ + [3047]={ [1]={ [1]={ limit={ @@ -65891,7 +64975,7 @@ return { [1]="gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3100]={ + [3048]={ [1]={ [1]={ limit={ @@ -65920,7 +65004,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [3101]={ + [3049]={ [1]={ [1]={ limit={ @@ -65945,7 +65029,7 @@ return { [1]="endurance_charge_on_off_hand_kill_%" } }, - [3102]={ + [3050]={ [1]={ [1]={ limit={ @@ -65961,7 +65045,7 @@ return { [1]="aura_melee_physical_damage_+%_per_10_strength" } }, - [3103]={ + [3051]={ [1]={ [1]={ limit={ @@ -65977,7 +65061,7 @@ return { [1]="critical_strikes_ignore_elemental_resistances" } }, - [3104]={ + [3052]={ [1]={ [1]={ limit={ @@ -66006,7 +65090,7 @@ return { [1]="damage_+%_for_4_seconds_on_crit" } }, - [3105]={ + [3053]={ [1]={ [1]={ limit={ @@ -66022,7 +65106,7 @@ return { [1]="critical_strike_chance_+%_for_4_seconds_on_kill" } }, - [3106]={ + [3054]={ [1]={ [1]={ limit={ @@ -66038,7 +65122,7 @@ return { [1]="damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse" } }, - [3107]={ + [3055]={ [1]={ [1]={ limit={ @@ -66054,7 +65138,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie" } }, - [3108]={ + [3056]={ [1]={ [1]={ limit={ @@ -66083,7 +65167,7 @@ return { [1]="spectre_damage_+%" } }, - [3109]={ + [3057]={ [1]={ [1]={ limit={ @@ -66112,7 +65196,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [3110]={ + [3058]={ [1]={ [1]={ limit={ @@ -66128,7 +65212,7 @@ return { [1]="damage_+%_vs_enemies_affected_by_status_ailments" } }, - [3111]={ + [3059]={ [1]={ [1]={ limit={ @@ -66144,7 +65228,7 @@ return { [1]="warcries_are_instant" } }, - [3112]={ + [3060]={ [1]={ [1]={ limit={ @@ -66160,7 +65244,7 @@ return { [1]="aura_grant_shield_defences_to_nearby_allies" } }, - [3113]={ + [3061]={ [1]={ [1]={ limit={ @@ -66185,7 +65269,7 @@ return { [1]="phasing_for_4_seconds_on_kill_%" } }, - [3114]={ + [3062]={ [1]={ [1]={ limit={ @@ -66201,7 +65285,7 @@ return { [1]="damage_+%_per_active_trap" } }, - [3115]={ + [3063]={ [1]={ [1]={ limit={ @@ -66217,7 +65301,7 @@ return { [1]="skill_area_of_effect_+%_per_active_mine" } }, - [3116]={ + [3064]={ [1]={ [1]={ limit={ @@ -66233,7 +65317,7 @@ return { [1]="immune_to_status_ailments_while_phased" } }, - [3117]={ + [3065]={ [1]={ [1]={ [1]={ @@ -66253,7 +65337,7 @@ return { [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [3118]={ + [3066]={ [1]={ [1]={ [1]={ @@ -66273,7 +65357,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_at_maximum_power_charges" } }, - [3119]={ + [3067]={ [1]={ [1]={ limit={ @@ -66289,7 +65373,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges" } }, - [3120]={ + [3068]={ [1]={ [1]={ limit={ @@ -66305,7 +65389,7 @@ return { [1]="movement_skills_cost_no_mana" } }, - [3121]={ + [3069]={ [1]={ [1]={ limit={ @@ -66334,7 +65418,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use" } }, - [3122]={ + [3070]={ [1]={ [1]={ limit={ @@ -66350,7 +65434,7 @@ return { [1]="lose_10%_of_maximum_mana_on_skill_use_%_chance" } }, - [3123]={ + [3071]={ [1]={ [1]={ limit={ @@ -66366,7 +65450,7 @@ return { [1]="recover_10%_of_maximum_mana_on_skill_use_%" } }, - [3124]={ + [3072]={ [1]={ [1]={ limit={ @@ -66382,7 +65466,7 @@ return { [1]="mine_laying_speed_+%_for_4_seconds_on_detonation" } }, - [3125]={ + [3073]={ [1]={ [1]={ limit={ @@ -66398,7 +65482,7 @@ return { [1]="damage_+%_for_4_seconds_on_detonation" } }, - [3126]={ + [3074]={ [1]={ [1]={ limit={ @@ -66427,7 +65511,7 @@ return { [1]="flask_charges_recovered_per_3_seconds" } }, - [3127]={ + [3075]={ [1]={ [1]={ limit={ @@ -66456,7 +65540,7 @@ return { [1]="trap_skill_area_of_effect_+%" } }, - [3128]={ + [3076]={ [1]={ [1]={ limit={ @@ -66472,7 +65556,7 @@ return { [1]="bleeding_enemies_explode_for_%_life_as_physical_damage" } }, - [3129]={ + [3077]={ [1]={ [1]={ limit={ @@ -66488,7 +65572,7 @@ return { [1]="nearby_traps_within_x_units_also_trigger_on_triggering_trap" } }, - [3130]={ + [3078]={ [1]={ [1]={ limit={ @@ -66513,7 +65597,7 @@ return { [1]="display_cast_word_of_blades_on_hit_%" } }, - [3131]={ + [3079]={ [1]={ [1]={ limit={ @@ -66538,7 +65622,7 @@ return { [1]="display_cast_edict_of_blades_on_hit_%_" } }, - [3132]={ + [3080]={ [1]={ [1]={ limit={ @@ -66563,7 +65647,7 @@ return { [1]="display_cast_decree_of_blades_on_hit_%__" } }, - [3133]={ + [3081]={ [1]={ [1]={ limit={ @@ -66588,7 +65672,7 @@ return { [1]="display_cast_commandment_of_blades_on_hit_%_" } }, - [3134]={ + [3082]={ [1]={ [1]={ limit={ @@ -66613,7 +65697,7 @@ return { [1]="display_cast_word_of_winter_when_hit_%" } }, - [3135]={ + [3083]={ [1]={ [1]={ limit={ @@ -66638,7 +65722,7 @@ return { [1]="display_cast_edict_of_winter_when_hit_%" } }, - [3136]={ + [3084]={ [1]={ [1]={ limit={ @@ -66663,7 +65747,7 @@ return { [1]="display_cast_decree_of_winter_when_hit_%" } }, - [3137]={ + [3085]={ [1]={ [1]={ limit={ @@ -66688,7 +65772,7 @@ return { [1]="display_cast_commandment_of_winter_when_hit_%" } }, - [3138]={ + [3086]={ [1]={ [1]={ limit={ @@ -66713,7 +65797,7 @@ return { [1]="display_cast_word_of_inferno_on_kill_%" } }, - [3139]={ + [3087]={ [1]={ [1]={ limit={ @@ -66738,7 +65822,7 @@ return { [1]="display_cast_edict_of_inferno_on_kill_%" } }, - [3140]={ + [3088]={ [1]={ [1]={ limit={ @@ -66763,7 +65847,7 @@ return { [1]="display_cast_decree_of_inferno_on_kill_%" } }, - [3141]={ + [3089]={ [1]={ [1]={ limit={ @@ -66788,7 +65872,7 @@ return { [1]="display_cast_commandment_of_inferno_on_kill_%" } }, - [3142]={ + [3090]={ [1]={ [1]={ limit={ @@ -66813,7 +65897,7 @@ return { [1]="display_cast_word_of_tempest_on_hit_%" } }, - [3143]={ + [3091]={ [1]={ [1]={ limit={ @@ -66838,7 +65922,7 @@ return { [1]="display_cast_edict_of_tempest_on_hit_%" } }, - [3144]={ + [3092]={ [1]={ [1]={ limit={ @@ -66863,7 +65947,7 @@ return { [1]="display_cast_decree_of_tempest_on_hit_%" } }, - [3145]={ + [3093]={ [1]={ [1]={ limit={ @@ -66888,7 +65972,7 @@ return { [1]="display_cast_commandment_of_tempest_on_hit_%" } }, - [3146]={ + [3094]={ [1]={ [1]={ limit={ @@ -66913,7 +65997,7 @@ return { [1]="display_cast_word_of_the_grave_on_kill_%" } }, - [3147]={ + [3095]={ [1]={ [1]={ limit={ @@ -66938,7 +66022,7 @@ return { [1]="display_cast_edict_of_the_grave_on_kill_%" } }, - [3148]={ + [3096]={ [1]={ [1]={ limit={ @@ -66963,7 +66047,7 @@ return { [1]="display_cast_decree_of_the_grave_on_kill_%" } }, - [3149]={ + [3097]={ [1]={ [1]={ limit={ @@ -66988,7 +66072,7 @@ return { [1]="display_cast_commandment_of_the_grave_on_kill_%" } }, - [3150]={ + [3098]={ [1]={ [1]={ limit={ @@ -67013,7 +66097,7 @@ return { [1]="display_cast_word_of_reflection_when_hit_%" } }, - [3151]={ + [3099]={ [1]={ [1]={ limit={ @@ -67038,7 +66122,7 @@ return { [1]="display_cast_edict_of_reflection_when_hit_%" } }, - [3152]={ + [3100]={ [1]={ [1]={ limit={ @@ -67063,7 +66147,7 @@ return { [1]="display_cast_decree_of_reflection_when_hit_%" } }, - [3153]={ + [3101]={ [1]={ [1]={ limit={ @@ -67088,7 +66172,7 @@ return { [1]="display_cast_commandment_of_reflection_when_hit_%" } }, - [3154]={ + [3102]={ [1]={ [1]={ limit={ @@ -67113,7 +66197,7 @@ return { [1]="display_attack_with_word_of_force_on_hit_%" } }, - [3155]={ + [3103]={ [1]={ [1]={ limit={ @@ -67138,7 +66222,7 @@ return { [1]="display_attack_with_edict_of_force_on_hit_%" } }, - [3156]={ + [3104]={ [1]={ [1]={ limit={ @@ -67163,7 +66247,7 @@ return { [1]="display_attack_with_decree_of_force_on_hit_%" } }, - [3157]={ + [3105]={ [1]={ [1]={ limit={ @@ -67188,7 +66272,7 @@ return { [1]="display_attack_with_commandment_of_force_on_hit_%" } }, - [3158]={ + [3106]={ [1]={ [1]={ limit={ @@ -67213,7 +66297,7 @@ return { [1]="display_attack_with_word_of_light_when_critically_hit_%" } }, - [3159]={ + [3107]={ [1]={ [1]={ limit={ @@ -67238,7 +66322,7 @@ return { [1]="display_attack_with_edict_of_light_when_critically_hit_%" } }, - [3160]={ + [3108]={ [1]={ [1]={ limit={ @@ -67263,7 +66347,7 @@ return { [1]="display_attack_with_decree_of_light_when_critically_hit_%" } }, - [3161]={ + [3109]={ [1]={ [1]={ limit={ @@ -67288,7 +66372,7 @@ return { [1]="display_attack_with_commandment_of_light_when_critically_hit_%" } }, - [3162]={ + [3110]={ [1]={ [1]={ limit={ @@ -67313,7 +66397,7 @@ return { [1]="display_cast_word_of_war_on_kill_%" } }, - [3163]={ + [3111]={ [1]={ [1]={ limit={ @@ -67338,7 +66422,7 @@ return { [1]="display_cast_edict_of_war_on_kill_%" } }, - [3164]={ + [3112]={ [1]={ [1]={ limit={ @@ -67363,7 +66447,7 @@ return { [1]="display_cast_decree_of_war_on_kill_%" } }, - [3165]={ + [3113]={ [1]={ [1]={ limit={ @@ -67388,7 +66472,7 @@ return { [1]="display_cast_commandment_of_war_on_kill_%" } }, - [3166]={ + [3114]={ [1]={ [1]={ limit={ @@ -67413,7 +66497,7 @@ return { [1]="display_attack_with_word_of_fury_on_hit_%" } }, - [3167]={ + [3115]={ [1]={ [1]={ limit={ @@ -67438,7 +66522,7 @@ return { [1]="display_attack_with_edict_of_fury_on_hit_%" } }, - [3168]={ + [3116]={ [1]={ [1]={ limit={ @@ -67463,7 +66547,7 @@ return { [1]="display_attack_with_decree_of_fury_on_hit_%" } }, - [3169]={ + [3117]={ [1]={ [1]={ limit={ @@ -67488,7 +66572,7 @@ return { [1]="display_attack_with_commandment_of_fury_on_hit_%" } }, - [3170]={ + [3118]={ [1]={ [1]={ limit={ @@ -67513,7 +66597,7 @@ return { [1]="display_attack_with_word_of_spite_when_hit_%" } }, - [3171]={ + [3119]={ [1]={ [1]={ limit={ @@ -67538,7 +66622,7 @@ return { [1]="display_attack_with_edict_of_spite_when_hit_%" } }, - [3172]={ + [3120]={ [1]={ [1]={ limit={ @@ -67563,7 +66647,7 @@ return { [1]="display_attack_with_decree_of_spite_when_hit_%" } }, - [3173]={ + [3121]={ [1]={ [1]={ limit={ @@ -67588,7 +66672,7 @@ return { [1]="display_attack_with_commandment_of_spite_when_hit_%" } }, - [3174]={ + [3122]={ [1]={ [1]={ limit={ @@ -67617,36 +66701,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge" } }, - [3175]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more chance to Evade Attack Hits while not on full Energy Shield" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less chance to Evade Attack Hits while not on full Energy Shield" - } - }, - stats={ - [1]="trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final" - } - }, - [3176]={ + [3123]={ [1]={ [1]={ limit={ @@ -67675,7 +66730,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments" } }, - [3177]={ + [3124]={ [1]={ [1]={ limit={ @@ -67704,7 +66759,7 @@ return { [1]="spell_damage_+%_for_4_seconds_on_cast" } }, - [3178]={ + [3125]={ [1]={ [1]={ limit={ @@ -67733,7 +66788,7 @@ return { [1]="attack_damage_+%_for_4_seconds_on_cast" } }, - [3179]={ + [3126]={ [1]={ [1]={ limit={ @@ -67762,7 +66817,7 @@ return { [1]="attack_speed_+%_for_4_seconds_on_attack" } }, - [3180]={ + [3127]={ [1]={ [1]={ limit={ @@ -67791,7 +66846,7 @@ return { [1]="cast_speed_+%_for_4_seconds_on_attack" } }, - [3181]={ + [3128]={ [1]={ [1]={ limit={ @@ -67816,7 +66871,7 @@ return { [1]="display_cast_word_of_flames_on_hit_%" } }, - [3182]={ + [3129]={ [1]={ [1]={ limit={ @@ -67841,7 +66896,7 @@ return { [1]="display_cast_edict_of_flames_on_hit_%" } }, - [3183]={ + [3130]={ [1]={ [1]={ limit={ @@ -67866,7 +66921,7 @@ return { [1]="display_cast_decree_of_flames_on_hit_%" } }, - [3184]={ + [3131]={ [1]={ [1]={ limit={ @@ -67891,7 +66946,7 @@ return { [1]="display_cast_commandment_of_flames_on_hit_%" } }, - [3185]={ + [3132]={ [1]={ [1]={ limit={ @@ -67916,7 +66971,7 @@ return { [1]="display_cast_word_of_frost_on_kill_%" } }, - [3186]={ + [3133]={ [1]={ [1]={ limit={ @@ -67941,7 +66996,7 @@ return { [1]="display_cast_edict_of_frost_on_kill_%" } }, - [3187]={ + [3134]={ [1]={ [1]={ limit={ @@ -67966,7 +67021,7 @@ return { [1]="display_cast_decree_of_frost_on_kill_%" } }, - [3188]={ + [3135]={ [1]={ [1]={ limit={ @@ -67991,7 +67046,7 @@ return { [1]="display_cast_commandment_of_frost_on_kill_%" } }, - [3189]={ + [3136]={ [1]={ [1]={ limit={ @@ -68016,7 +67071,7 @@ return { [1]="display_cast_word_of_thunder_on_kill_%" } }, - [3190]={ + [3137]={ [1]={ [1]={ limit={ @@ -68041,7 +67096,7 @@ return { [1]="display_cast_edict_of_thunder_on_kill_%" } }, - [3191]={ + [3138]={ [1]={ [1]={ limit={ @@ -68066,7 +67121,7 @@ return { [1]="display_cast_decree_of_thunder_on_kill_%" } }, - [3192]={ + [3139]={ [1]={ [1]={ limit={ @@ -68091,7 +67146,7 @@ return { [1]="display_cast_commandment_of_thunder_on_kill_%" } }, - [3193]={ + [3140]={ [1]={ [1]={ limit={ @@ -68107,7 +67162,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [3194]={ + [3141]={ [1]={ [1]={ limit={ @@ -68132,7 +67187,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [3195]={ + [3142]={ [1]={ [1]={ limit={ @@ -68148,7 +67203,7 @@ return { [1]="hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos" } }, - [3196]={ + [3143]={ [1]={ [1]={ limit={ @@ -68177,7 +67232,7 @@ return { [1]="enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds" } }, - [3197]={ + [3144]={ [1]={ [1]={ limit={ @@ -68206,7 +67261,7 @@ return { [1]="damage_+%_on_consecrated_ground" } }, - [3198]={ + [3145]={ [1]={ [1]={ limit={ @@ -68231,7 +67286,7 @@ return { [1]="consecrate_ground_for_3_seconds_when_hit_%" } }, - [3199]={ + [3146]={ [1]={ [1]={ limit={ @@ -68260,7 +67315,7 @@ return { [1]="mana_cost_+%_on_consecrated_ground" } }, - [3200]={ + [3147]={ [1]={ [1]={ limit={ @@ -68276,7 +67331,7 @@ return { [1]="avoid_ailments_%_on_consecrated_ground" } }, - [3201]={ + [3148]={ [1]={ [1]={ limit={ @@ -68292,7 +67347,7 @@ return { [1]="critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment" } }, - [3202]={ + [3149]={ [1]={ [1]={ limit={ @@ -68308,7 +67363,7 @@ return { [1]="non_critical_strikes_penetrate_elemental_resistances_%" } }, - [3203]={ + [3150]={ [1]={ [1]={ limit={ @@ -68324,7 +67379,7 @@ return { [1]="base_attack_damage_penetrates_elemental_resist_%" } }, - [3204]={ + [3151]={ [1]={ [1]={ limit={ @@ -68340,7 +67395,7 @@ return { [1]="base_penetrate_elemental_resistances_%" } }, - [3205]={ + [3152]={ [1]={ [1]={ limit={ @@ -68356,7 +67411,7 @@ return { [1]="base_attack_damage_penetrates_fire_resist_%" } }, - [3206]={ + [3153]={ [1]={ [1]={ limit={ @@ -68372,7 +67427,7 @@ return { [1]="base_attack_damage_penetrates_cold_resist_%" } }, - [3207]={ + [3154]={ [1]={ [1]={ limit={ @@ -68388,7 +67443,7 @@ return { [1]="base_attack_damage_penetrates_lightning_resist_%" } }, - [3208]={ + [3155]={ [1]={ [1]={ limit={ @@ -68404,7 +67459,7 @@ return { [1]="base_attack_damage_penetrates_chaos_resist_%" } }, - [3209]={ + [3156]={ [1]={ [1]={ limit={ @@ -68420,7 +67475,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [3210]={ + [3157]={ [1]={ [1]={ limit={ @@ -68449,7 +67504,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [3211]={ + [3158]={ [1]={ [1]={ limit={ @@ -68478,7 +67533,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [3212]={ + [3159]={ [1]={ [1]={ limit={ @@ -68507,7 +67562,7 @@ return { [1]="unarmed_damage_+%_vs_bleeding_enemies" } }, - [3213]={ + [3160]={ [1]={ [1]={ limit={ @@ -68536,7 +67591,7 @@ return { [1]="aura_effect_on_self_from_your_skills_+%" } }, - [3214]={ + [3161]={ [1]={ [1]={ limit={ @@ -68561,7 +67616,7 @@ return { [1]="life_gained_on_bleeding_enemy_hit" } }, - [3215]={ + [3162]={ [1]={ [1]={ [1]={ @@ -68581,7 +67636,7 @@ return { [1]="base_melee_critical_strike_chance_while_unarmed_%" } }, - [3216]={ + [3163]={ [1]={ [1]={ limit={ @@ -68597,7 +67652,7 @@ return { [1]="modifiers_to_claw_damage_also_affect_unarmed_melee_damage" } }, - [3217]={ + [3164]={ [1]={ [1]={ limit={ @@ -68613,7 +67668,7 @@ return { [1]="modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed" } }, - [3218]={ + [3165]={ [1]={ [1]={ limit={ @@ -68629,7 +67684,7 @@ return { [1]="modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance" } }, - [3219]={ + [3166]={ [1]={ [1]={ limit={ @@ -68658,7 +67713,7 @@ return { [1]="damage_+%_while_unarmed" } }, - [3220]={ + [3167]={ [1]={ [1]={ limit={ @@ -68687,7 +67742,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shattered" } }, - [3221]={ + [3168]={ [1]={ [1]={ limit={ @@ -68720,7 +67775,7 @@ return { [1]="energy_shield_delay_during_flask_effect_-%" } }, - [3222]={ + [3169]={ [1]={ [1]={ limit={ @@ -68749,7 +67804,7 @@ return { [1]="virtual_energy_shield_delay_-%" } }, - [3223]={ + [3170]={ [1]={ [1]={ limit={ @@ -68778,7 +67833,7 @@ return { [1]="energy_shield_recharge_rate_during_flask_effect_+%" } }, - [3224]={ + [3171]={ [1]={ [1]={ limit={ @@ -68807,7 +67862,7 @@ return { [1]="virtual_energy_shield_recharge_rate_+%" } }, - [3225]={ + [3172]={ [1]={ [1]={ limit={ @@ -68823,7 +67878,7 @@ return { [1]="arrows_fork" } }, - [3226]={ + [3173]={ [1]={ [1]={ limit={ @@ -68839,7 +67894,7 @@ return { [1]="projectiles_fork" } }, - [3227]={ + [3174]={ [1]={ [1]={ limit={ @@ -68855,7 +67910,7 @@ return { [1]="fishing_bite_sensitivity_+%" } }, - [3228]={ + [3175]={ [1]={ [1]={ limit={ @@ -68884,36 +67939,7 @@ return { [1]="cold_damage_+%_per_1%_block_chance" } }, - [3229]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Maximum Mana per 2% Chance to Block Spell Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Maximum Mana per 2% Chance to Block Spell Damage" - } - }, - stats={ - [1]="maximum_mana_+%_per_2%_spell_block_chance" - } - }, - [3230]={ + [3176]={ [1]={ [1]={ limit={ @@ -68942,7 +67968,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_chilled_or_frozen" } }, - [3231]={ + [3177]={ [1]={ [1]={ limit={ @@ -68958,7 +67984,7 @@ return { [1]="reduce_enemy_cold_resistance_with_weapons_%" } }, - [3232]={ + [3178]={ [1]={ [1]={ limit={ @@ -68974,7 +68000,7 @@ return { [1]="reduce_enemy_fire_resistance_with_weapons_%" } }, - [3233]={ + [3179]={ [1]={ [1]={ limit={ @@ -68990,7 +68016,7 @@ return { [1]="reduce_enemy_lightning_resistance_with_weapons_%" } }, - [3234]={ + [3180]={ [1]={ [1]={ limit={ @@ -69006,7 +68032,7 @@ return { [1]="reduce_enemy_chaos_resistance_with_weapons_%" } }, - [3235]={ + [3181]={ [1]={ [1]={ limit={ @@ -69035,7 +68061,7 @@ return { [1]="inquisitor_aura_elemental_damage_+%_final" } }, - [3236]={ + [3182]={ [1]={ [1]={ limit={ @@ -69064,7 +68090,7 @@ return { [1]="support_gem_elemental_damage_+%_final" } }, - [3237]={ + [3183]={ [1]={ [1]={ limit={ @@ -69089,7 +68115,7 @@ return { [1]="map_monster_drop_higher_level_gear" } }, - [3238]={ + [3184]={ [1]={ [1]={ limit={ @@ -69105,7 +68131,7 @@ return { [1]="modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity" } }, - [3239]={ + [3185]={ [1]={ [1]={ limit={ @@ -69121,7 +68147,7 @@ return { [1]="base_should_have_onslaught_from_stat" } }, - [3240]={ + [3186]={ [1]={ [1]={ limit={ @@ -69137,7 +68163,7 @@ return { [1]="silver_flask_display_onslaught" } }, - [3241]={ + [3187]={ [1]={ [1]={ limit={ @@ -69153,7 +68179,7 @@ return { [1]="reduce_enemy_elemental_resistance_with_weapons_%" } }, - [3242]={ + [3188]={ [1]={ [1]={ limit={ @@ -69178,7 +68204,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [3243]={ + [3189]={ [1]={ [1]={ limit={ @@ -69203,7 +68229,7 @@ return { [1]="%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy" } }, - [3244]={ + [3190]={ [1]={ [1]={ limit={ @@ -69219,7 +68245,7 @@ return { [1]="add_power_charge_on_hit_%" } }, - [3245]={ + [3191]={ [1]={ [1]={ limit={ @@ -69235,7 +68261,7 @@ return { [1]="lose_all_power_charges_on_reaching_maximum_power_charges" } }, - [3246]={ + [3192]={ [1]={ [1]={ limit={ @@ -69251,7 +68277,7 @@ return { [1]="shocked_for_4_seconds_on_reaching_maximum_power_charges" } }, - [3247]={ + [3193]={ [1]={ [1]={ limit={ @@ -69267,7 +68293,7 @@ return { [1]="gain_frenzy_charge_on_reaching_maximum_power_charges" } }, - [3248]={ + [3194]={ [1]={ [1]={ limit={ @@ -69283,7 +68309,7 @@ return { [1]="is_petrified" } }, - [3249]={ + [3195]={ [1]={ [1]={ limit={ @@ -69299,7 +68325,7 @@ return { [1]="add_endurance_charge_on_gain_power_charge_%" } }, - [3250]={ + [3196]={ [1]={ [1]={ limit={ @@ -69328,7 +68354,7 @@ return { [1]="stacking_damage_+%_on_kill_for_4_seconds" } }, - [3251]={ + [3197]={ [1]={ [1]={ limit={ @@ -69357,7 +68383,7 @@ return { [1]="attack_and_cast_speed_+%_while_totem_active" } }, - [3252]={ + [3198]={ [1]={ [1]={ limit={ @@ -69373,7 +68399,7 @@ return { [1]="number_of_additional_totems_allowed_on_kill_for_8_seconds" } }, - [3253]={ + [3199]={ [1]={ [1]={ limit={ @@ -69402,7 +68428,7 @@ return { [1]="map_monsters_base_self_critical_strike_multiplier_-%" } }, - [3254]={ + [3200]={ [1]={ [1]={ limit={ @@ -69427,7 +68453,7 @@ return { [1]="power_frenzy_or_endurance_charge_on_kill_%" } }, - [3255]={ + [3201]={ [1]={ [1]={ limit={ @@ -69443,7 +68469,7 @@ return { [1]="immune_to_poison" } }, - [3256]={ + [3202]={ [1]={ [1]={ limit={ @@ -69472,7 +68498,7 @@ return { [1]="elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element" } }, - [3257]={ + [3203]={ [1]={ [1]={ limit={ @@ -69501,7 +68527,7 @@ return { [1]="damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element" } }, - [3258]={ + [3204]={ [1]={ [1]={ limit={ @@ -69530,7 +68556,7 @@ return { [1]="elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds" } }, - [3259]={ + [3205]={ [1]={ [1]={ limit={ @@ -69546,7 +68572,7 @@ return { [1]="elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill" } }, - [3260]={ + [3206]={ [1]={ [1]={ limit={ @@ -69562,7 +68588,7 @@ return { [1]="elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill" } }, - [3261]={ + [3207]={ [1]={ [1]={ limit={ @@ -69578,7 +68604,7 @@ return { [1]="elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill" } }, - [3262]={ + [3208]={ [1]={ [1]={ limit={ @@ -69594,7 +68620,7 @@ return { [1]="elementalist_summon_elemental_golem_on_killing_enemy_with_element_%" } }, - [3263]={ + [3209]={ [1]={ [1]={ limit={ @@ -69610,7 +68636,7 @@ return { [1]="elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%" } }, - [3264]={ + [3210]={ [1]={ [1]={ limit={ @@ -69626,7 +68652,7 @@ return { [1]="knockback_on_counterattack_%" } }, - [3265]={ + [3211]={ [1]={ [1]={ limit={ @@ -69655,7 +68681,7 @@ return { [1]="melee_ancestor_totem_damage_+%" } }, - [3266]={ + [3212]={ [1]={ [1]={ limit={ @@ -69684,7 +68710,7 @@ return { [1]="animate_weapon_damage_+%" } }, - [3267]={ + [3213]={ [1]={ [1]={ limit={ @@ -69713,7 +68739,7 @@ return { [1]="burning_arrow_damage_+%" } }, - [3268]={ + [3214]={ [1]={ [1]={ limit={ @@ -69742,7 +68768,7 @@ return { [1]="cleave_damage_+%" } }, - [3269]={ + [3215]={ [1]={ [1]={ limit={ @@ -69771,7 +68797,7 @@ return { [1]="double_strike_damage_+%" } }, - [3270]={ + [3216]={ [1]={ [1]={ limit={ @@ -69800,7 +68826,7 @@ return { [1]="dual_strike_damage_+%" } }, - [3271]={ + [3217]={ [1]={ [1]={ limit={ @@ -69829,7 +68855,7 @@ return { [1]="fire_trap_damage_+%" } }, - [3272]={ + [3218]={ [1]={ [1]={ limit={ @@ -69858,7 +68884,7 @@ return { [1]="fireball_damage_+%" } }, - [3273]={ + [3219]={ [1]={ [1]={ limit={ @@ -69887,7 +68913,7 @@ return { [1]="freezing_pulse_damage_+%" } }, - [3274]={ + [3220]={ [1]={ [1]={ limit={ @@ -69916,7 +68942,7 @@ return { [1]="glacial_hammer_damage_+%" } }, - [3275]={ + [3221]={ [1]={ [1]={ limit={ @@ -69945,7 +68971,7 @@ return { [1]="ground_slam_damage_+%" } }, - [3276]={ + [3222]={ [1]={ [1]={ limit={ @@ -69974,7 +69000,7 @@ return { [1]="heavy_strike_damage_+%" } }, - [3277]={ + [3223]={ [1]={ [1]={ limit={ @@ -70003,7 +69029,7 @@ return { [1]="infernal_blow_damage_+%" } }, - [3278]={ + [3224]={ [1]={ [1]={ limit={ @@ -70032,7 +69058,7 @@ return { [1]="lightning_strike_damage_+%" } }, - [3279]={ + [3225]={ [1]={ [1]={ limit={ @@ -70061,7 +69087,7 @@ return { [1]="lightning_tendrils_damage_+%" } }, - [3280]={ + [3226]={ [1]={ [1]={ limit={ @@ -70090,7 +69116,7 @@ return { [1]="magma_orb_damage_+%" } }, - [3281]={ + [3227]={ [1]={ [1]={ limit={ @@ -70119,7 +69145,7 @@ return { [1]="molten_strike_damage_+%" } }, - [3282]={ + [3228]={ [1]={ [1]={ limit={ @@ -70148,7 +69174,7 @@ return { [1]="zombie_damage_+%" } }, - [3283]={ + [3229]={ [1]={ [1]={ limit={ @@ -70177,7 +69203,7 @@ return { [1]="reave_damage_+%" } }, - [3284]={ + [3230]={ [1]={ [1]={ limit={ @@ -70206,7 +69232,7 @@ return { [1]="spark_damage_+%" } }, - [3285]={ + [3231]={ [1]={ [1]={ limit={ @@ -70235,7 +69261,7 @@ return { [1]="spectral_throw_damage_+%" } }, - [3286]={ + [3232]={ [1]={ [1]={ limit={ @@ -70264,7 +69290,7 @@ return { [1]="split_arrow_damage_+%" } }, - [3287]={ + [3233]={ [1]={ [1]={ limit={ @@ -70293,7 +69319,7 @@ return { [1]="ethereal_knives_damage_+%" } }, - [3288]={ + [3234]={ [1]={ [1]={ limit={ @@ -70322,7 +69348,7 @@ return { [1]="ice_shot_damage_+%" } }, - [3289]={ + [3235]={ [1]={ [1]={ limit={ @@ -70351,7 +69377,7 @@ return { [1]="rain_of_arrows_damage_+%" } }, - [3290]={ + [3236]={ [1]={ [1]={ limit={ @@ -70380,7 +69406,7 @@ return { [1]="raging_spirit_damage_+%" } }, - [3291]={ + [3237]={ [1]={ [1]={ limit={ @@ -70409,7 +69435,7 @@ return { [1]="viper_strike_damage_+%" } }, - [3292]={ + [3238]={ [1]={ [1]={ limit={ @@ -70438,7 +69464,7 @@ return { [1]="flicker_strike_damage_+%" } }, - [3293]={ + [3239]={ [1]={ [1]={ limit={ @@ -70467,7 +69493,7 @@ return { [1]="leap_slam_damage_+%" } }, - [3294]={ + [3240]={ [1]={ [1]={ limit={ @@ -70496,7 +69522,7 @@ return { [1]="lightning_arrow_damage_+%" } }, - [3295]={ + [3241]={ [1]={ [1]={ limit={ @@ -70525,7 +69551,7 @@ return { [1]="lightning_warp_damage_+%" } }, - [3296]={ + [3242]={ [1]={ [1]={ limit={ @@ -70554,7 +69580,7 @@ return { [1]="puncture_damage_+%" } }, - [3297]={ + [3243]={ [1]={ [1]={ limit={ @@ -70583,7 +69609,7 @@ return { [1]="shield_charge_damage_+%" } }, - [3298]={ + [3244]={ [1]={ [1]={ limit={ @@ -70612,7 +69638,7 @@ return { [1]="skeletons_damage_+%" } }, - [3299]={ + [3245]={ [1]={ [1]={ limit={ @@ -70641,7 +69667,7 @@ return { [1]="arc_damage_+%" } }, - [3300]={ + [3246]={ [1]={ [1]={ limit={ @@ -70670,7 +69696,7 @@ return { [1]="barrage_damage_+%" } }, - [3301]={ + [3247]={ [1]={ [1]={ limit={ @@ -70699,7 +69725,7 @@ return { [1]="fire_nova_mine_damage_+%" } }, - [3302]={ + [3248]={ [1]={ [1]={ limit={ @@ -70728,7 +69754,7 @@ return { [1]="fire_storm_damage_+%" } }, - [3303]={ + [3249]={ [1]={ [1]={ limit={ @@ -70757,7 +69783,7 @@ return { [1]="flame_surge_damage_+%" } }, - [3304]={ + [3250]={ [1]={ [1]={ limit={ @@ -70786,7 +69812,7 @@ return { [1]="ice_nova_damage_+%" } }, - [3305]={ + [3251]={ [1]={ [1]={ limit={ @@ -70815,7 +69841,7 @@ return { [1]="ice_spear_damage_+%" } }, - [3306]={ + [3252]={ [1]={ [1]={ limit={ @@ -70844,7 +69870,7 @@ return { [1]="incinerate_damage_+%" } }, - [3307]={ + [3253]={ [1]={ [1]={ limit={ @@ -70873,7 +69899,7 @@ return { [1]="power_siphon_damage_+%" } }, - [3308]={ + [3254]={ [1]={ [1]={ limit={ @@ -70902,7 +69928,7 @@ return { [1]="searing_bond_damage_+%" } }, - [3309]={ + [3255]={ [1]={ [1]={ limit={ @@ -70931,7 +69957,7 @@ return { [1]="static_strike_damage_+%" } }, - [3310]={ + [3256]={ [1]={ [1]={ limit={ @@ -70960,7 +69986,7 @@ return { [1]="storm_call_damage_+%" } }, - [3311]={ + [3257]={ [1]={ [1]={ limit={ @@ -70989,7 +70015,7 @@ return { [1]="sweep_damage_+%" } }, - [3312]={ + [3258]={ [1]={ [1]={ limit={ @@ -71018,7 +70044,7 @@ return { [1]="frenzy_damage_+%" } }, - [3313]={ + [3259]={ [1]={ [1]={ limit={ @@ -71047,7 +70073,7 @@ return { [1]="righteous_fire_damage_+%" } }, - [3314]={ + [3260]={ [1]={ [1]={ limit={ @@ -71076,7 +70102,7 @@ return { [1]="elemental_hit_damage_+%" } }, - [3315]={ + [3261]={ [1]={ [1]={ limit={ @@ -71105,7 +70131,7 @@ return { [1]="cyclone_damage_+%" } }, - [3316]={ + [3262]={ [1]={ [1]={ limit={ @@ -71134,7 +70160,7 @@ return { [1]="tornado_shot_damage_+%" } }, - [3317]={ + [3263]={ [1]={ [1]={ limit={ @@ -71163,7 +70189,7 @@ return { [1]="arctic_breath_damage_+%" } }, - [3318]={ + [3264]={ [1]={ [1]={ limit={ @@ -71192,7 +70218,7 @@ return { [1]="explosive_arrow_damage_+%" } }, - [3319]={ + [3265]={ [1]={ [1]={ limit={ @@ -71221,7 +70247,7 @@ return { [1]="flameblast_damage_+%" } }, - [3320]={ + [3266]={ [1]={ [1]={ limit={ @@ -71250,7 +70276,7 @@ return { [1]="glacial_cascade_damage_+%" } }, - [3321]={ + [3267]={ [1]={ [1]={ limit={ @@ -71279,7 +70305,7 @@ return { [1]="ice_crash_damage_+%" } }, - [3322]={ + [3268]={ [1]={ [1]={ limit={ @@ -71308,7 +70334,7 @@ return { [1]="kinetic_blast_damage_+%" } }, - [3323]={ + [3269]={ [1]={ [1]={ limit={ @@ -71337,7 +70363,7 @@ return { [1]="shock_nova_damage_+%" } }, - [3324]={ + [3270]={ [1]={ [1]={ limit={ @@ -71366,7 +70392,7 @@ return { [1]="shockwave_totem_damage_+%" } }, - [3325]={ + [3271]={ [1]={ [1]={ limit={ @@ -71395,7 +70421,7 @@ return { [1]="wild_strike_damage_+%" } }, - [3326]={ + [3272]={ [1]={ [1]={ limit={ @@ -71424,7 +70450,7 @@ return { [1]="detonate_dead_damage_+%" } }, - [3327]={ + [3273]={ [1]={ [1]={ limit={ @@ -71453,7 +70479,7 @@ return { [1]="caustic_arrow_damage_+%" } }, - [3328]={ + [3274]={ [1]={ [1]={ [1]={ @@ -71529,7 +70555,7 @@ return { [2]="caustic_arrow_withered_base_duration_ms" } }, - [3329]={ + [3275]={ [1]={ [1]={ limit={ @@ -71545,7 +70571,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [3330]={ + [3276]={ [1]={ [1]={ limit={ @@ -71561,7 +70587,7 @@ return { [1]="you_cannot_have_non_golem_minions" } }, - [3331]={ + [3277]={ [1]={ [1]={ limit={ @@ -71594,7 +70620,7 @@ return { [1]="golem_scale_+%" } }, - [3332]={ + [3278]={ [1]={ [1]={ limit={ @@ -71623,7 +70649,7 @@ return { [1]="stone_golem_damage_+%" } }, - [3333]={ + [3279]={ [1]={ [1]={ limit={ @@ -71652,7 +70678,7 @@ return { [1]="flame_golem_damage_+%" } }, - [3334]={ + [3280]={ [1]={ [1]={ limit={ @@ -71681,7 +70707,7 @@ return { [1]="ice_golem_damage_+%" } }, - [3335]={ + [3281]={ [1]={ [1]={ limit={ @@ -71710,7 +70736,7 @@ return { [1]="lightning_golem_damage_+%" } }, - [3336]={ + [3282]={ [1]={ [1]={ limit={ @@ -71739,7 +70765,7 @@ return { [1]="chaos_golem_damage_+%" } }, - [3337]={ + [3283]={ [1]={ [1]={ limit={ @@ -71768,7 +70794,7 @@ return { [1]="damage_+%_if_golem_summoned_in_past_8_seconds" } }, - [3338]={ + [3284]={ [1]={ [1]={ limit={ @@ -71797,7 +70823,7 @@ return { [1]="golem_damage_+%_if_summoned_in_past_8_seconds" } }, - [3339]={ + [3285]={ [1]={ [1]={ limit={ @@ -71830,7 +70856,7 @@ return { [1]="unique_primordial_tether_golem_damage_+%_final" } }, - [3340]={ + [3286]={ [1]={ [1]={ limit={ @@ -71859,7 +70885,7 @@ return { [1]="dominating_blow_minion_damage_+%" } }, - [3341]={ + [3287]={ [1]={ [1]={ limit={ @@ -71888,7 +70914,7 @@ return { [1]="dominating_blow_skill_attack_damage_+%" } }, - [3342]={ + [3288]={ [1]={ [1]={ limit={ @@ -71917,7 +70943,7 @@ return { [1]="cold_snap_damage_+%" } }, - [3343]={ + [3289]={ [1]={ [1]={ limit={ @@ -71946,7 +70972,7 @@ return { [1]="flame_totem_damage_+%" } }, - [3344]={ + [3290]={ [1]={ [1]={ limit={ @@ -71975,7 +71001,7 @@ return { [1]="animate_guardian_damage_+%" } }, - [3345]={ + [3291]={ [1]={ [1]={ limit={ @@ -72004,7 +71030,7 @@ return { [1]="bear_trap_damage_+%" } }, - [3346]={ + [3292]={ [1]={ [1]={ limit={ @@ -72033,7 +71059,7 @@ return { [1]="frost_wall_damage_+%" } }, - [3347]={ + [3293]={ [1]={ [1]={ limit={ @@ -72062,7 +71088,7 @@ return { [1]="molten_shell_damage_+%" } }, - [3348]={ + [3294]={ [1]={ [1]={ limit={ @@ -72091,7 +71117,7 @@ return { [1]="reckoning_damage_+%" } }, - [3349]={ + [3295]={ [1]={ [1]={ limit={ @@ -72120,7 +71146,7 @@ return { [1]="vigilant_strike_damage_+%" } }, - [3350]={ + [3296]={ [1]={ [1]={ limit={ @@ -72149,7 +71175,7 @@ return { [1]="whirling_blades_damage_+%" } }, - [3351]={ + [3297]={ [1]={ [1]={ limit={ @@ -72178,7 +71204,7 @@ return { [1]="flame_dash_damage_+%" } }, - [3352]={ + [3298]={ [1]={ [1]={ limit={ @@ -72207,7 +71233,7 @@ return { [1]="freeze_mine_damage_+%" } }, - [3353]={ + [3299]={ [1]={ [1]={ limit={ @@ -72236,7 +71262,7 @@ return { [1]="herald_of_ash_damage_+%" } }, - [3354]={ + [3300]={ [1]={ [1]={ limit={ @@ -72265,7 +71291,7 @@ return { [1]="herald_of_ice_damage_+%" } }, - [3355]={ + [3301]={ [1]={ [1]={ limit={ @@ -72294,7 +71320,7 @@ return { [1]="herald_of_thunder_damage_+%" } }, - [3356]={ + [3302]={ [1]={ [1]={ limit={ @@ -72323,7 +71349,7 @@ return { [1]="tempest_shield_damage_+%" } }, - [3357]={ + [3303]={ [1]={ [1]={ limit={ @@ -72352,7 +71378,7 @@ return { [1]="desecrate_damage_+%" } }, - [3358]={ + [3304]={ [1]={ [1]={ limit={ @@ -72381,7 +71407,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_damage_+%" } }, - [3359]={ + [3305]={ [1]={ [1]={ limit={ @@ -72410,7 +71436,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_damage_+%" } }, - [3360]={ + [3306]={ [1]={ [1]={ limit={ @@ -72439,7 +71465,7 @@ return { [1]="riposte_damage_+%" } }, - [3361]={ + [3307]={ [1]={ [1]={ limit={ @@ -72468,7 +71494,7 @@ return { [1]="vengeance_damage_+%" } }, - [3362]={ + [3308]={ [1]={ [1]={ limit={ @@ -72497,7 +71523,7 @@ return { [1]="converted_enemies_damage_+%" } }, - [3363]={ + [3309]={ [1]={ [1]={ limit={ @@ -72526,7 +71552,7 @@ return { [1]="abyssal_cry_damage_+%" } }, - [3364]={ + [3310]={ [1]={ [1]={ limit={ @@ -72555,7 +71581,7 @@ return { [1]="shrapnel_shot_damage_+%" } }, - [3365]={ + [3311]={ [1]={ [1]={ limit={ @@ -72584,7 +71610,7 @@ return { [1]="blast_rain_damage_+%" } }, - [3366]={ + [3312]={ [1]={ [1]={ limit={ @@ -72613,7 +71639,7 @@ return { [1]="essence_drain_damage_+%" } }, - [3367]={ + [3313]={ [1]={ [1]={ limit={ @@ -72642,7 +71668,7 @@ return { [1]="contagion_damage_+%" } }, - [3368]={ + [3314]={ [1]={ [1]={ limit={ @@ -72671,7 +71697,7 @@ return { [1]="blade_vortex_damage_+%" } }, - [3369]={ + [3315]={ [1]={ [1]={ limit={ @@ -72700,7 +71726,7 @@ return { [1]="bladefall_damage_+%" } }, - [3370]={ + [3316]={ [1]={ [1]={ limit={ @@ -72729,7 +71755,7 @@ return { [1]="ice_trap_damage_+%" } }, - [3371]={ + [3317]={ [1]={ [1]={ limit={ @@ -72758,7 +71784,7 @@ return { [1]="charged_dash_damage_+%" } }, - [3372]={ + [3318]={ [1]={ [1]={ limit={ @@ -72787,7 +71813,7 @@ return { [1]="earthquake_damage_+%" } }, - [3373]={ + [3319]={ [1]={ [1]={ limit={ @@ -72816,7 +71842,7 @@ return { [1]="skeletal_chains_damage_+%" } }, - [3374]={ + [3320]={ [1]={ [1]={ limit={ @@ -72845,7 +71871,7 @@ return { [1]="storm_burst_damage_+%" } }, - [3375]={ + [3321]={ [1]={ [1]={ limit={ @@ -72874,7 +71900,7 @@ return { [1]="frost_bomb_damage_+%" } }, - [3376]={ + [3322]={ [1]={ [1]={ limit={ @@ -72903,7 +71929,7 @@ return { [1]="orb_of_storms_damage_+%" } }, - [3377]={ + [3323]={ [1]={ [1]={ limit={ @@ -72932,7 +71958,7 @@ return { [1]="siege_ballista_damage_+%" } }, - [3378]={ + [3324]={ [1]={ [1]={ limit={ @@ -72961,7 +71987,7 @@ return { [1]="blight_damage_+%" } }, - [3379]={ + [3325]={ [1]={ [1]={ limit={ @@ -72990,7 +72016,7 @@ return { [1]="shockwave_slam_damage_+%" } }, - [3380]={ + [3326]={ [1]={ [1]={ [1]={ @@ -73010,7 +72036,7 @@ return { [1]="life_regeneration_per_minute_%_while_frozen" } }, - [3381]={ + [3327]={ [1]={ [1]={ [1]={ @@ -73030,7 +72056,7 @@ return { [1]="occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds" } }, - [3382]={ + [3328]={ [1]={ [1]={ limit={ @@ -73046,7 +72072,7 @@ return { [1]="occultist_immune_to_stun_while_has_energy_shield" } }, - [3383]={ + [3329]={ [1]={ [1]={ limit={ @@ -73062,7 +72088,7 @@ return { [1]="energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently" } }, - [3384]={ + [3330]={ [1]={ [1]={ limit={ @@ -73091,7 +72117,7 @@ return { [1]="hierophant_passive_damage_+%_final_per_totem" } }, - [3385]={ + [3331]={ [1]={ [1]={ limit={ @@ -73120,7 +72146,7 @@ return { [1]="totem_damage_+%_final_per_active_totem" } }, - [3386]={ + [3332]={ [1]={ [1]={ limit={ @@ -73136,7 +72162,7 @@ return { [1]="cannot_be_affected_by_flasks" } }, - [3387]={ + [3333]={ [1]={ [1]={ limit={ @@ -73152,7 +72178,7 @@ return { [1]="flasks_apply_to_your_zombies_and_spectres" } }, - [3388]={ + [3334]={ [1]={ [1]={ limit={ @@ -73168,7 +72194,7 @@ return { [1]="modifiers_to_minion_damage_also_affect_you" } }, - [3389]={ + [3335]={ [1]={ [1]={ limit={ @@ -73184,7 +72210,7 @@ return { [1]="additive_modifiers_to_minion_attack_speed_also_affect_you" } }, - [3390]={ + [3336]={ [1]={ [1]={ limit={ @@ -73200,7 +72226,7 @@ return { [1]="modifiers_to_minion_cast_speed_also_affect_you" } }, - [3391]={ + [3337]={ [1]={ [1]={ limit={ @@ -73216,7 +72242,7 @@ return { [1]="modifiers_to_minion_life_regeneration_also_affect_you" } }, - [3392]={ + [3338]={ [1]={ [1]={ limit={ @@ -73232,7 +72258,7 @@ return { [1]="modifiers_to_minion_movement_speed_also_affect_you" } }, - [3393]={ + [3339]={ [1]={ [1]={ limit={ @@ -73248,7 +72274,7 @@ return { [1]="non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds" } }, - [3394]={ + [3340]={ [1]={ [1]={ limit={ @@ -73264,7 +72290,7 @@ return { [1]="enemies_damage_taken_+%_while_cursed" } }, - [3395]={ + [3341]={ [1]={ [1]={ limit={ @@ -73280,7 +72306,7 @@ return { [1]="enemies_you_curse_have_malediction" } }, - [3396]={ + [3342]={ [1]={ [1]={ limit={ @@ -73296,7 +72322,7 @@ return { [1]="local_double_damage_to_chilled_enemies" } }, - [3397]={ + [3343]={ [1]={ [1]={ limit={ @@ -73312,7 +72338,7 @@ return { [1]="local_elemental_penetration_%" } }, - [3398]={ + [3344]={ [1]={ [1]={ limit={ @@ -73328,7 +72354,7 @@ return { [1]="local_fire_penetration_%" } }, - [3399]={ + [3345]={ [1]={ [1]={ limit={ @@ -73344,7 +72370,7 @@ return { [1]="local_cold_penetration_%" } }, - [3400]={ + [3346]={ [1]={ [1]={ limit={ @@ -73360,7 +72386,7 @@ return { [1]="local_lightning_penetration_%" } }, - [3401]={ + [3347]={ [1]={ [1]={ limit={ @@ -73389,7 +72415,7 @@ return { [1]="damage_while_no_frenzy_charges_+%" } }, - [3402]={ + [3348]={ [1]={ [1]={ limit={ @@ -73418,7 +72444,7 @@ return { [1]="critical_strike_chance_against_enemies_on_full_life_+%" } }, - [3403]={ + [3349]={ [1]={ [1]={ limit={ @@ -73439,7 +72465,7 @@ return { [2]="minion_attack_maximum_added_physical_damage" } }, - [3404]={ + [3350]={ [1]={ [1]={ limit={ @@ -73460,7 +72486,7 @@ return { [2]="minion_global_maximum_added_chaos_damage" } }, - [3405]={ + [3351]={ [1]={ [1]={ limit={ @@ -73481,7 +72507,7 @@ return { [2]="minion_global_maximum_added_cold_damage" } }, - [3406]={ + [3352]={ [1]={ [1]={ limit={ @@ -73502,7 +72528,7 @@ return { [2]="minion_global_maximum_added_fire_damage" } }, - [3407]={ + [3353]={ [1]={ [1]={ limit={ @@ -73523,7 +72549,7 @@ return { [2]="minion_global_maximum_added_lightning_damage" } }, - [3408]={ + [3354]={ [1]={ [1]={ limit={ @@ -73544,7 +72570,7 @@ return { [2]="minion_global_maximum_added_physical_damage" } }, - [3409]={ + [3355]={ [1]={ [1]={ limit={ @@ -73560,7 +72586,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_with_attacks" } }, - [3410]={ + [3356]={ [1]={ [1]={ limit={ @@ -73576,7 +72602,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_cold_with_attacks" } }, - [3411]={ + [3357]={ [1]={ [1]={ limit={ @@ -73592,7 +72618,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_lightning_with_attacks" } }, - [3412]={ + [3358]={ [1]={ [1]={ limit={ @@ -73608,7 +72634,7 @@ return { [1]="maximum_energy_shield_+_per_5_strength" } }, - [3413]={ + [3359]={ [1]={ [1]={ limit={ @@ -73624,7 +72650,7 @@ return { [1]="attack_always_crit" } }, - [3414]={ + [3360]={ [1]={ [1]={ limit={ @@ -73640,7 +72666,7 @@ return { [1]="local_varunastra_weapon_counts_as_all_1h_melee_weapon_types" } }, - [3415]={ + [3361]={ [1]={ [1]={ limit={ @@ -73656,7 +72682,7 @@ return { [1]="guardian_nearby_enemies_cannot_gain_charges" } }, - [3416]={ + [3362]={ [1]={ [1]={ limit={ @@ -73672,7 +72698,7 @@ return { [1]="guardian_reserved_life_granted_to_you_and_allies_as_armour_%" } }, - [3417]={ + [3363]={ [1]={ [1]={ limit={ @@ -73688,7 +72714,7 @@ return { [1]="guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield" } }, - [3418]={ + [3364]={ [1]={ [1]={ limit={ @@ -73704,7 +72730,7 @@ return { [1]="guardian_remove_curses_and_status_ailments_every_10_seconds" } }, - [3419]={ + [3365]={ [1]={ [1]={ [1]={ @@ -73724,7 +72750,7 @@ return { [1]="guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds" } }, - [3420]={ + [3366]={ [1]={ [1]={ limit={ @@ -73740,7 +72766,7 @@ return { [1]="base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3421]={ + [3367]={ [1]={ [1]={ limit={ @@ -73756,7 +72782,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3422]={ + [3368]={ [1]={ [1]={ limit={ @@ -73772,7 +72798,7 @@ return { [1]="active_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [3423]={ + [3369]={ [1]={ [1]={ limit={ @@ -73801,7 +72827,7 @@ return { [1]="totem_aura_enemy_damage_+%_final" } }, - [3424]={ + [3370]={ [1]={ [1]={ limit={ @@ -73830,7 +72856,7 @@ return { [1]="totem_aura_enemy_fire_and_physical_damage_taken_+%" } }, - [3425]={ + [3371]={ [1]={ [1]={ limit={ @@ -73859,7 +72885,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_when_first_set" } }, - [3426]={ + [3372]={ [1]={ [1]={ limit={ @@ -73888,7 +72914,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_after_4_seconds" } }, - [3427]={ + [3373]={ [1]={ [1]={ [1]={ @@ -73908,7 +72934,7 @@ return { [1]="local_weapon_base_crit_chance_permyriad_override" } }, - [3428]={ + [3374]={ [1]={ [1]={ limit={ @@ -73929,7 +72955,7 @@ return { [2]="trap_and_mine_maximum_added_physical_damage" } }, - [3429]={ + [3375]={ [1]={ [1]={ limit={ @@ -73954,7 +72980,7 @@ return { [1]="trap_%_chance_to_trigger_twice" } }, - [3430]={ + [3376]={ [1]={ [1]={ limit={ @@ -73983,7 +73009,7 @@ return { [1]="physical_damage_over_time_per_10_dexterity_+%" } }, - [3431]={ + [3377]={ [1]={ [1]={ limit={ @@ -74012,7 +73038,7 @@ return { [1]="bleed_duration_per_12_intelligence_+%" } }, - [3432]={ + [3378]={ [1]={ [1]={ limit={ @@ -74028,7 +73054,7 @@ return { [1]="%_chance_to_cause_bleeding_enemies_to_flee_on_hit" } }, - [3433]={ + [3379]={ [1]={ [1]={ limit={ @@ -74057,7 +73083,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [3434]={ + [3380]={ [1]={ [1]={ limit={ @@ -74073,7 +73099,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [3435]={ + [3381]={ [1]={ [1]={ limit={ @@ -74102,7 +73128,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [3436]={ + [3382]={ [1]={ [1]={ limit={ @@ -74118,7 +73144,7 @@ return { [1]="gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius" } }, - [3437]={ + [3383]={ [1]={ [1]={ limit={ @@ -74147,7 +73173,7 @@ return { [1]="cleave_radius_+%" } }, - [3438]={ + [3384]={ [1]={ [1]={ limit={ @@ -74176,7 +73202,7 @@ return { [1]="ground_slam_radius_+%" } }, - [3439]={ + [3385]={ [1]={ [1]={ limit={ @@ -74205,7 +73231,7 @@ return { [1]="infernal_blow_radius_+%" } }, - [3440]={ + [3386]={ [1]={ [1]={ limit={ @@ -74234,7 +73260,7 @@ return { [1]="lightning_tendrils_radius_+%" } }, - [3441]={ + [3387]={ [1]={ [1]={ limit={ @@ -74263,7 +73289,7 @@ return { [1]="magma_orb_radius_+%" } }, - [3442]={ + [3388]={ [1]={ [1]={ limit={ @@ -74292,7 +73318,7 @@ return { [1]="reave_radius_+%" } }, - [3443]={ + [3389]={ [1]={ [1]={ limit={ @@ -74321,7 +73347,7 @@ return { [1]="molten_strike_radius_+%" } }, - [3444]={ + [3390]={ [1]={ [1]={ limit={ @@ -74350,7 +73376,7 @@ return { [1]="ice_shot_radius_+%" } }, - [3445]={ + [3391]={ [1]={ [1]={ limit={ @@ -74379,7 +73405,7 @@ return { [1]="rain_of_arrows_radius_+%" } }, - [3446]={ + [3392]={ [1]={ [1]={ limit={ @@ -74408,7 +73434,7 @@ return { [1]="leap_slam_radius_+%" } }, - [3447]={ + [3393]={ [1]={ [1]={ limit={ @@ -74437,7 +73463,7 @@ return { [1]="lightning_arrow_radius_+%" } }, - [3448]={ + [3394]={ [1]={ [1]={ limit={ @@ -74466,7 +73492,7 @@ return { [1]="ice_nova_radius_+%" } }, - [3449]={ + [3395]={ [1]={ [1]={ limit={ @@ -74495,7 +73521,7 @@ return { [1]="static_strike_radius_+%" } }, - [3450]={ + [3396]={ [1]={ [1]={ limit={ @@ -74524,7 +73550,7 @@ return { [1]="storm_call_radius_+%" } }, - [3451]={ + [3397]={ [1]={ [1]={ limit={ @@ -74549,7 +73575,7 @@ return { [1]="sweep_add_endurance_charge_on_hit_%" } }, - [3452]={ + [3398]={ [1]={ [1]={ limit={ @@ -74578,7 +73604,7 @@ return { [1]="sweep_radius_+%" } }, - [3453]={ + [3399]={ [1]={ [1]={ limit={ @@ -74607,7 +73633,7 @@ return { [1]="righteous_fire_radius_+%" } }, - [3454]={ + [3400]={ [1]={ [1]={ limit={ @@ -74636,7 +73662,7 @@ return { [1]="arctic_breath_radius_+%" } }, - [3455]={ + [3401]={ [1]={ [1]={ limit={ @@ -74665,7 +73691,7 @@ return { [1]="ball_lightning_radius_+%" } }, - [3456]={ + [3402]={ [1]={ [1]={ limit={ @@ -74694,7 +73720,7 @@ return { [1]="explosive_arrow_radius_+%" } }, - [3457]={ + [3403]={ [1]={ [1]={ limit={ @@ -74723,7 +73749,7 @@ return { [1]="flameblast_radius_+%" } }, - [3458]={ + [3404]={ [1]={ [1]={ limit={ @@ -74752,7 +73778,7 @@ return { [1]="glacial_cascade_radius_+%" } }, - [3459]={ + [3405]={ [1]={ [1]={ limit={ @@ -74781,7 +73807,7 @@ return { [1]="wild_strike_radius_+%" } }, - [3460]={ + [3406]={ [1]={ [1]={ limit={ @@ -74810,7 +73836,7 @@ return { [1]="detonate_dead_radius_+%" } }, - [3461]={ + [3407]={ [1]={ [1]={ limit={ @@ -74839,7 +73865,7 @@ return { [1]="ice_crash_radius_+%" } }, - [3462]={ + [3408]={ [1]={ [1]={ limit={ @@ -74868,7 +73894,7 @@ return { [1]="kinetic_blast_radius_+%" } }, - [3463]={ + [3409]={ [1]={ [1]={ limit={ @@ -74897,7 +73923,7 @@ return { [1]="caustic_arrow_radius_+%" } }, - [3464]={ + [3410]={ [1]={ [1]={ limit={ @@ -74926,7 +73952,7 @@ return { [1]="cold_snap_radius_+%" } }, - [3465]={ + [3411]={ [1]={ [1]={ limit={ @@ -74955,7 +73981,7 @@ return { [1]="decoy_totem_radius_+%" } }, - [3466]={ + [3412]={ [1]={ [1]={ limit={ @@ -74984,7 +74010,7 @@ return { [1]="shock_nova_radius_+%" } }, - [3467]={ + [3413]={ [1]={ [1]={ limit={ @@ -75013,7 +74039,7 @@ return { [1]="freeze_mine_radius_+%" } }, - [3468]={ + [3414]={ [1]={ [1]={ limit={ @@ -75042,7 +74068,7 @@ return { [1]="shrapnel_shot_radius_+%" } }, - [3469]={ + [3415]={ [1]={ [1]={ limit={ @@ -75071,7 +74097,7 @@ return { [1]="blast_rain_radius_+%" } }, - [3470]={ + [3416]={ [1]={ [1]={ limit={ @@ -75100,7 +74126,7 @@ return { [1]="contagion_radius_+%" } }, - [3471]={ + [3417]={ [1]={ [1]={ limit={ @@ -75129,7 +74155,7 @@ return { [1]="wither_radius_+%" } }, - [3472]={ + [3418]={ [1]={ [1]={ limit={ @@ -75158,7 +74184,7 @@ return { [1]="blade_vortex_radius_+%" } }, - [3473]={ + [3419]={ [1]={ [1]={ limit={ @@ -75187,7 +74213,7 @@ return { [1]="bladefall_radius_+%" } }, - [3474]={ + [3420]={ [1]={ [1]={ limit={ @@ -75216,7 +74242,7 @@ return { [1]="ice_trap_radius_+%" } }, - [3475]={ + [3421]={ [1]={ [1]={ limit={ @@ -75245,7 +74271,7 @@ return { [1]="earthquake_radius_+%" } }, - [3476]={ + [3422]={ [1]={ [1]={ limit={ @@ -75274,7 +74300,7 @@ return { [1]="frost_bomb_radius_+%" } }, - [3477]={ + [3423]={ [1]={ [1]={ limit={ @@ -75303,7 +74329,7 @@ return { [1]="storm_cloud_radius_+%" } }, - [3478]={ + [3424]={ [1]={ [1]={ limit={ @@ -75332,7 +74358,7 @@ return { [1]="blight_radius_+%" } }, - [3479]={ + [3425]={ [1]={ [1]={ limit={ @@ -75361,7 +74387,7 @@ return { [1]="shockwave_slam_radius_+%" } }, - [3480]={ + [3426]={ [1]={ [1]={ limit={ @@ -75390,7 +74416,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [3481]={ + [3427]={ [1]={ [1]={ limit={ @@ -75419,7 +74445,7 @@ return { [1]="shockwave_totem_radius_+%" } }, - [3482]={ + [3428]={ [1]={ [1]={ limit={ @@ -75435,7 +74461,7 @@ return { [1]="charged_dash_area_of_effect_radius_+_of_final_explosion" } }, - [3483]={ + [3429]={ [1]={ [1]={ limit={ @@ -75464,7 +74490,7 @@ return { [1]="cleave_attack_speed_+%" } }, - [3484]={ + [3430]={ [1]={ [1]={ limit={ @@ -75493,7 +74519,7 @@ return { [1]="double_strike_attack_speed_+%" } }, - [3485]={ + [3431]={ [1]={ [1]={ limit={ @@ -75522,7 +74548,7 @@ return { [1]="dual_strike_attack_speed_+%" } }, - [3486]={ + [3432]={ [1]={ [1]={ limit={ @@ -75551,7 +74577,7 @@ return { [1]="heavy_strike_attack_speed_+%" } }, - [3487]={ + [3433]={ [1]={ [1]={ limit={ @@ -75580,7 +74606,7 @@ return { [1]="zombie_attack_speed_+%" } }, - [3488]={ + [3434]={ [1]={ [1]={ limit={ @@ -75609,7 +74635,7 @@ return { [1]="rain_of_arrows_attack_speed_+%" } }, - [3489]={ + [3435]={ [1]={ [1]={ limit={ @@ -75638,7 +74664,7 @@ return { [1]="leap_slam_attack_speed_+%" } }, - [3490]={ + [3436]={ [1]={ [1]={ limit={ @@ -75667,7 +74693,7 @@ return { [1]="shield_charge_attack_speed_+%" } }, - [3491]={ + [3437]={ [1]={ [1]={ limit={ @@ -75696,7 +74722,7 @@ return { [1]="barrage_attack_speed_+%" } }, - [3492]={ + [3438]={ [1]={ [1]={ limit={ @@ -75725,7 +74751,7 @@ return { [1]="elemental_hit_attack_speed_+%" } }, - [3493]={ + [3439]={ [1]={ [1]={ limit={ @@ -75754,7 +74780,7 @@ return { [1]="cyclone_attack_speed_+%" } }, - [3494]={ + [3440]={ [1]={ [1]={ limit={ @@ -75783,7 +74809,7 @@ return { [1]="power_siphon_attack_speed_+%" } }, - [3495]={ + [3441]={ [1]={ [1]={ limit={ @@ -75812,7 +74838,7 @@ return { [1]="siege_ballista_attack_speed_+%" } }, - [3496]={ + [3442]={ [1]={ [1]={ limit={ @@ -75841,7 +74867,7 @@ return { [1]="shockwave_slam_attack_speed_+%" } }, - [3497]={ + [3443]={ [1]={ [1]={ limit={ @@ -75870,7 +74896,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_attack_speed_+%" } }, - [3498]={ + [3444]={ [1]={ [1]={ limit={ @@ -75899,7 +74925,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_attack_speed_+%" } }, - [3499]={ + [3445]={ [1]={ [1]={ limit={ @@ -75928,7 +74954,7 @@ return { [1]="whirling_blades_attack_speed_+%" } }, - [3500]={ + [3446]={ [1]={ [1]={ limit={ @@ -75957,7 +74983,7 @@ return { [1]="spectre_attack_and_cast_speed_+%" } }, - [3501]={ + [3447]={ [1]={ [1]={ limit={ @@ -75986,7 +75012,7 @@ return { [1]="freezing_pulse_cast_speed_+%" } }, - [3502]={ + [3448]={ [1]={ [1]={ limit={ @@ -76015,7 +75041,7 @@ return { [1]="fireball_cast_speed_+%" } }, - [3503]={ + [3449]={ [1]={ [1]={ limit={ @@ -76044,7 +75070,7 @@ return { [1]="fire_nova_mine_cast_speed_+%" } }, - [3504]={ + [3450]={ [1]={ [1]={ limit={ @@ -76073,7 +75099,7 @@ return { [1]="lightning_warp_cast_speed_+%" } }, - [3505]={ + [3451]={ [1]={ [1]={ limit={ @@ -76102,7 +75128,7 @@ return { [1]="fire_trap_cooldown_speed_+%" } }, - [3506]={ + [3452]={ [1]={ [1]={ limit={ @@ -76131,7 +75157,7 @@ return { [1]="flicker_strike_cooldown_speed_+%" } }, - [3507]={ + [3453]={ [1]={ [1]={ limit={ @@ -76160,7 +75186,7 @@ return { [1]="cold_snap_cooldown_speed_+%" } }, - [3508]={ + [3454]={ [1]={ [1]={ limit={ @@ -76189,7 +75215,7 @@ return { [1]="convocation_cooldown_speed_+%" } }, - [3509]={ + [3455]={ [1]={ [1]={ limit={ @@ -76218,7 +75244,7 @@ return { [1]="bear_trap_cooldown_speed_+%" } }, - [3510]={ + [3456]={ [1]={ [1]={ limit={ @@ -76247,7 +75273,7 @@ return { [1]="frost_wall_cooldown_speed_+%" } }, - [3511]={ + [3457]={ [1]={ [1]={ limit={ @@ -76276,7 +75302,7 @@ return { [1]="reckoning_cooldown_speed_+%" } }, - [3512]={ + [3458]={ [1]={ [1]={ limit={ @@ -76305,7 +75331,7 @@ return { [1]="flame_dash_cooldown_speed_+%" } }, - [3513]={ + [3459]={ [1]={ [1]={ limit={ @@ -76334,7 +75360,7 @@ return { [1]="desecrate_cooldown_speed_+%" } }, - [3514]={ + [3460]={ [1]={ [1]={ limit={ @@ -76363,7 +75389,7 @@ return { [1]="blink_arrow_cooldown_speed_+%" } }, - [3515]={ + [3461]={ [1]={ [1]={ limit={ @@ -76392,7 +75418,7 @@ return { [1]="mirror_arrow_cooldown_speed_+%" } }, - [3516]={ + [3462]={ [1]={ [1]={ limit={ @@ -76421,7 +75447,7 @@ return { [1]="riposte_cooldown_speed_+%" } }, - [3517]={ + [3463]={ [1]={ [1]={ limit={ @@ -76450,7 +75476,7 @@ return { [1]="vengeance_cooldown_speed_+%" } }, - [3518]={ + [3464]={ [1]={ [1]={ limit={ @@ -76479,7 +75505,7 @@ return { [1]="enduring_cry_cooldown_speed_+%" } }, - [3519]={ + [3465]={ [1]={ [1]={ limit={ @@ -76508,7 +75534,7 @@ return { [1]="frost_bomb_cooldown_speed_+%" } }, - [3520]={ + [3466]={ [1]={ [1]={ limit={ @@ -76537,7 +75563,7 @@ return { [1]="conversion_trap_cooldown_speed_+%" } }, - [3521]={ + [3467]={ [1]={ [1]={ limit={ @@ -76566,7 +75592,7 @@ return { [1]="ice_trap_cooldown_speed_+%" } }, - [3522]={ + [3468]={ [1]={ [1]={ limit={ @@ -76599,7 +75625,7 @@ return { [1]="ball_lightning_projectile_speed_+%" } }, - [3523]={ + [3469]={ [1]={ [1]={ limit={ @@ -76628,7 +75654,7 @@ return { [1]="freezing_pulse_projectile_speed_+%" } }, - [3524]={ + [3470]={ [1]={ [1]={ limit={ @@ -76657,7 +75683,7 @@ return { [1]="spark_projectile_speed_+%" } }, - [3525]={ + [3471]={ [1]={ [1]={ limit={ @@ -76686,7 +75712,7 @@ return { [1]="spectral_throw_projectile_speed_+%" } }, - [3526]={ + [3472]={ [1]={ [1]={ limit={ @@ -76715,7 +75741,7 @@ return { [1]="ethereal_knives_projectile_speed_+%" } }, - [3527]={ + [3473]={ [1]={ [1]={ limit={ @@ -76744,7 +75770,7 @@ return { [1]="flame_totem_projectile_speed_+%" } }, - [3528]={ + [3474]={ [1]={ [1]={ limit={ @@ -76773,7 +75799,7 @@ return { [1]="incinerate_projectile_speed_+%" } }, - [3529]={ + [3475]={ [1]={ [1]={ limit={ @@ -76802,7 +75828,7 @@ return { [1]="dominating_blow_duration_+%" } }, - [3530]={ + [3476]={ [1]={ [1]={ limit={ @@ -76831,7 +75857,7 @@ return { [1]="puncture_duration_+%" } }, - [3531]={ + [3477]={ [1]={ [1]={ limit={ @@ -76860,7 +75886,7 @@ return { [1]="immortal_call_duration_+%" } }, - [3532]={ + [3478]={ [1]={ [1]={ limit={ @@ -76889,7 +75915,7 @@ return { [1]="bone_offering_duration_+%" } }, - [3533]={ + [3479]={ [1]={ [1]={ limit={ @@ -76918,7 +75944,7 @@ return { [1]="flesh_offering_duration_+%" } }, - [3534]={ + [3480]={ [1]={ [1]={ limit={ @@ -76947,7 +75973,7 @@ return { [1]="spirit_offering_duration_+%" } }, - [3535]={ + [3481]={ [1]={ [1]={ limit={ @@ -76976,7 +76002,7 @@ return { [1]="smoke_mine_duration_+%" } }, - [3536]={ + [3482]={ [1]={ [1]={ limit={ @@ -77005,7 +76031,7 @@ return { [1]="frost_wall_duration_+%" } }, - [3537]={ + [3483]={ [1]={ [1]={ limit={ @@ -77034,7 +76060,7 @@ return { [1]="vigilant_strike_fortify_duration_+%" } }, - [3538]={ + [3484]={ [1]={ [1]={ limit={ @@ -77063,7 +76089,7 @@ return { [1]="poachers_mark_duration_+%" } }, - [3539]={ + [3485]={ [1]={ [1]={ limit={ @@ -77092,7 +76118,7 @@ return { [1]="projectile_weakness_duration_+%" } }, - [3540]={ + [3486]={ [1]={ [1]={ limit={ @@ -77121,7 +76147,7 @@ return { [1]="temporal_chains_duration_+%" } }, - [3541]={ + [3487]={ [1]={ [1]={ limit={ @@ -77150,7 +76176,7 @@ return { [1]="warlords_mark_duration_+%" } }, - [3542]={ + [3488]={ [1]={ [1]={ limit={ @@ -77179,7 +76205,7 @@ return { [1]="vulnerability_duration_+%" } }, - [3543]={ + [3489]={ [1]={ [1]={ limit={ @@ -77208,7 +76234,7 @@ return { [1]="punishment_duration_+%" } }, - [3544]={ + [3490]={ [1]={ [1]={ limit={ @@ -77237,7 +76263,7 @@ return { [1]="frostbite_duration_+%" } }, - [3545]={ + [3491]={ [1]={ [1]={ limit={ @@ -77266,7 +76292,7 @@ return { [1]="flammability_duration_+%" } }, - [3546]={ + [3492]={ [1]={ [1]={ limit={ @@ -77295,7 +76321,7 @@ return { [1]="enfeeble_duration_+%" } }, - [3547]={ + [3493]={ [1]={ [1]={ limit={ @@ -77324,7 +76350,7 @@ return { [1]="elemental_weakness_duration_+%" } }, - [3548]={ + [3494]={ [1]={ [1]={ limit={ @@ -77353,7 +76379,7 @@ return { [1]="conductivity_duration_+%" } }, - [3549]={ + [3495]={ [1]={ [1]={ limit={ @@ -77382,7 +76408,7 @@ return { [1]="assassins_mark_duration_+%" } }, - [3550]={ + [3496]={ [1]={ [1]={ limit={ @@ -77411,7 +76437,7 @@ return { [1]="desecrate_duration_+%" } }, - [3551]={ + [3497]={ [1]={ [1]={ limit={ @@ -77440,7 +76466,7 @@ return { [1]="rallying_cry_duration_+%" } }, - [3552]={ + [3498]={ [1]={ [1]={ limit={ @@ -77469,7 +76495,7 @@ return { [1]="abyssal_cry_duration_+%" } }, - [3553]={ + [3499]={ [1]={ [1]={ limit={ @@ -77498,7 +76524,7 @@ return { [1]="contagion_duration_+%" } }, - [3554]={ + [3500]={ [1]={ [1]={ limit={ @@ -77527,7 +76553,7 @@ return { [1]="siphon_duration_+%" } }, - [3555]={ + [3501]={ [1]={ [1]={ limit={ @@ -77556,7 +76582,7 @@ return { [1]="wither_duration_+%" } }, - [3556]={ + [3502]={ [1]={ [1]={ limit={ @@ -77585,7 +76611,7 @@ return { [1]="blade_vortex_duration_+%" } }, - [3557]={ + [3503]={ [1]={ [1]={ limit={ @@ -77618,7 +76644,7 @@ return { [1]="earthquake_duration_+%" } }, - [3558]={ + [3504]={ [1]={ [1]={ limit={ @@ -77647,7 +76673,7 @@ return { [1]="blight_duration_+%" } }, - [3559]={ + [3505]={ [1]={ [1]={ limit={ @@ -77676,7 +76702,7 @@ return { [1]="viper_strike_poison_duration_+%" } }, - [3560]={ + [3506]={ [1]={ [1]={ limit={ @@ -77705,7 +76731,7 @@ return { [1]="firestorm_duration_+%" } }, - [3561]={ + [3507]={ [1]={ [1]={ limit={ @@ -77734,7 +76760,7 @@ return { [1]="static_strike_duration_+%" } }, - [3562]={ + [3508]={ [1]={ [1]={ limit={ @@ -77767,7 +76793,7 @@ return { [1]="storm_call_duration_+%" } }, - [3563]={ + [3509]={ [1]={ [1]={ limit={ @@ -77796,7 +76822,7 @@ return { [1]="arctic_breath_duration_+%" } }, - [3564]={ + [3510]={ [1]={ [1]={ limit={ @@ -77829,7 +76855,7 @@ return { [1]="lightning_warp_duration_+%" } }, - [3565]={ + [3511]={ [1]={ [1]={ limit={ @@ -77858,7 +76884,7 @@ return { [1]="ice_shot_duration_+%" } }, - [3566]={ + [3512]={ [1]={ [1]={ limit={ @@ -77887,7 +76913,7 @@ return { [1]="caustic_arrow_duration_+%" } }, - [3567]={ + [3513]={ [1]={ [1]={ limit={ @@ -77916,7 +76942,7 @@ return { [1]="double_strike_critical_strike_chance_+%" } }, - [3568]={ + [3514]={ [1]={ [1]={ limit={ @@ -77945,7 +76971,7 @@ return { [1]="dual_strike_critical_strike_chance_+%" } }, - [3569]={ + [3515]={ [1]={ [1]={ limit={ @@ -77974,7 +77000,7 @@ return { [1]="split_arrow_critical_strike_chance_+%" } }, - [3570]={ + [3516]={ [1]={ [1]={ limit={ @@ -78003,7 +77029,7 @@ return { [1]="viper_strike_critical_strike_chance_+%" } }, - [3571]={ + [3517]={ [1]={ [1]={ limit={ @@ -78032,7 +77058,7 @@ return { [1]="flameblast_critical_strike_chance_+%" } }, - [3572]={ + [3518]={ [1]={ [1]={ limit={ @@ -78061,7 +77087,7 @@ return { [1]="flame_surge_critical_strike_chance_+%" } }, - [3573]={ + [3519]={ [1]={ [1]={ limit={ @@ -78090,7 +77116,7 @@ return { [1]="tornado_shot_critical_strike_chance_+%" } }, - [3574]={ + [3520]={ [1]={ [1]={ limit={ @@ -78119,7 +77145,7 @@ return { [1]="storm_cloud_critical_strike_chance_+%" } }, - [3575]={ + [3521]={ [1]={ [1]={ limit={ @@ -78148,7 +77174,7 @@ return { [1]="bladefall_critical_strike_chance_+%" } }, - [3576]={ + [3522]={ [1]={ [1]={ limit={ @@ -78173,7 +77199,7 @@ return { [1]="lightning_strike_num_of_additional_projectiles" } }, - [3577]={ + [3523]={ [1]={ [1]={ limit={ @@ -78198,7 +77224,7 @@ return { [1]="molten_strike_num_of_additional_projectiles" } }, - [3578]={ + [3524]={ [1]={ [1]={ limit={ @@ -78223,7 +77249,7 @@ return { [1]="spark_num_of_additional_projectiles" } }, - [3579]={ + [3525]={ [1]={ [1]={ limit={ @@ -78248,7 +77274,7 @@ return { [1]="split_arrow_num_of_additional_projectiles" } }, - [3580]={ + [3526]={ [1]={ [1]={ limit={ @@ -78273,7 +77299,7 @@ return { [1]="barrage_num_of_additional_projectiles" } }, - [3581]={ + [3527]={ [1]={ [1]={ limit={ @@ -78298,7 +77324,7 @@ return { [1]="tornado_shot_num_of_secondary_projectiles" } }, - [3582]={ + [3528]={ [1]={ [1]={ limit={ @@ -78323,7 +77349,7 @@ return { [1]="magma_orb_num_of_additional_projectiles_in_chain" } }, - [3583]={ + [3529]={ [1]={ [1]={ limit={ @@ -78348,7 +77374,7 @@ return { [1]="arc_num_of_additional_projectiles_in_chain" } }, - [3584]={ + [3530]={ [1]={ [1]={ limit={ @@ -78373,7 +77399,7 @@ return { [1]="flame_totem_num_of_additional_projectiles" } }, - [3585]={ + [3531]={ [1]={ [1]={ limit={ @@ -78398,7 +77424,7 @@ return { [1]="lightning_strike_additional_pierce" } }, - [3586]={ + [3532]={ [1]={ [1]={ limit={ @@ -78423,32 +77449,7 @@ return { [1]="lightning_trap_additional_pierce" } }, - [3587]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Burning Arrow Always Ignites" - }, - [2]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Burning Arrow has {0:+d}% chance to Ignite" - } - }, - stats={ - [1]="burning_arrow_ignite_chance_%" - } - }, - [3588]={ + [3533]={ [1]={ [1]={ limit={ @@ -78464,7 +77465,7 @@ return { [1]="burning_arrow_physical_damage_%_to_gain_as_fire_damage" } }, - [3589]={ + [3534]={ [1]={ [1]={ limit={ @@ -78480,7 +77481,7 @@ return { [1]="infernal_blow_physical_damage_%_to_gain_as_fire_damage" } }, - [3590]={ + [3535]={ [1]={ [1]={ limit={ @@ -78509,32 +77510,7 @@ return { [1]="fire_trap_burning_damage_+%" } }, - [3591]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Fireball Always Ignites" - }, - [2]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Fireball has {0:+d}% chance to Ignite" - } - }, - stats={ - [1]="fireball_ignite_chance_%" - } - }, - [3592]={ + [3536]={ [1]={ [1]={ limit={ @@ -78563,7 +77539,7 @@ return { [1]="glacial_hammer_freeze_chance_%" } }, - [3593]={ + [3537]={ [1]={ [1]={ limit={ @@ -78588,7 +77564,7 @@ return { [1]="ice_nova_freeze_chance_%" } }, - [3594]={ + [3538]={ [1]={ [1]={ limit={ @@ -78617,7 +77593,7 @@ return { [1]="reave_attack_speed_per_reave_stack_+%" } }, - [3595]={ + [3539]={ [1]={ [1]={ limit={ @@ -78650,7 +77626,7 @@ return { [1]="spectral_throw_projectile_deceleration_+%" } }, - [3596]={ + [3540]={ [1]={ [1]={ limit={ @@ -78679,7 +77655,7 @@ return { [1]="flicker_strike_damage_+%_per_frenzy_charge" } }, - [3597]={ + [3541]={ [1]={ [1]={ limit={ @@ -78695,7 +77671,7 @@ return { [1]="puncture_maim_on_hit_%_chance" } }, - [3598]={ + [3542]={ [1]={ [1]={ limit={ @@ -78724,7 +77700,7 @@ return { [1]="arc_shock_chance_%" } }, - [3599]={ + [3543]={ [1]={ [1]={ limit={ @@ -78740,7 +77716,7 @@ return { [1]="fire_nova_mine_num_of_additional_repeats" } }, - [3600]={ + [3544]={ [1]={ [1]={ limit={ @@ -78769,7 +77745,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [3601]={ + [3545]={ [1]={ [1]={ limit={ @@ -78798,7 +77774,7 @@ return { [1]="flame_surge_damage_+%_vs_burning_enemies" } }, - [3602]={ + [3546]={ [1]={ [1]={ limit={ @@ -78814,7 +77790,7 @@ return { [1]="ice_spear_%_chance_to_gain_power_charge_on_critical_strike" } }, - [3603]={ + [3547]={ [1]={ [1]={ limit={ @@ -78830,7 +77806,7 @@ return { [1]="power_siphon_%_chance_to_gain_power_charge_on_kill" } }, - [3604]={ + [3548]={ [1]={ [1]={ limit={ @@ -78859,7 +77835,7 @@ return { [1]="melee_ancestor_totem_placement_speed_+%" } }, - [3605]={ + [3549]={ [1]={ [1]={ limit={ @@ -78888,7 +77864,7 @@ return { [1]="searing_bond_totem_placement_speed_+%" } }, - [3606]={ + [3550]={ [1]={ [1]={ limit={ @@ -78904,7 +77880,7 @@ return { [1]="sweep_knockback_chance_%" } }, - [3607]={ + [3551]={ [1]={ [1]={ limit={ @@ -78933,7 +77909,7 @@ return { [1]="frenzy_damage_+%_per_frenzy_charge" } }, - [3608]={ + [3552]={ [1]={ [1]={ limit={ @@ -78949,32 +77925,7 @@ return { [1]="frenzy_%_chance_to_gain_additional_frenzy_charge" } }, - [3609]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Elemental Hit Always Freezes, Shocks and Ignites" - }, - [2]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Elemental Hit has {0:+d}% chance to Freeze, Shock and Ignite" - } - }, - stats={ - [1]="elemental_hit_chance_to_freeze_shock_ignite_%" - } - }, - [3610]={ + [3553]={ [1]={ [1]={ limit={ @@ -78990,7 +77941,7 @@ return { [1]="glacial_hammer_physical_damage_%_to_gain_as_cold_damage" } }, - [3611]={ + [3554]={ [1]={ [1]={ limit={ @@ -79006,7 +77957,7 @@ return { [1]="ice_crash_physical_damage_%_to_gain_as_cold_damage" } }, - [3612]={ + [3555]={ [1]={ [1]={ limit={ @@ -79022,7 +77973,7 @@ return { [1]="spectre_elemental_resistances_%" } }, - [3613]={ + [3556]={ [1]={ [1]={ limit={ @@ -79038,7 +77989,7 @@ return { [1]="zombie_elemental_resistances_%" } }, - [3614]={ + [3557]={ [1]={ [1]={ limit={ @@ -79054,7 +78005,7 @@ return { [1]="stone_golem_elemental_resistances_%" } }, - [3615]={ + [3558]={ [1]={ [1]={ limit={ @@ -79070,7 +78021,7 @@ return { [1]="flame_golem_elemental_resistances_%" } }, - [3616]={ + [3559]={ [1]={ [1]={ limit={ @@ -79086,7 +78037,7 @@ return { [1]="ice_golem_elemental_resistances_%" } }, - [3617]={ + [3560]={ [1]={ [1]={ limit={ @@ -79102,7 +78053,7 @@ return { [1]="lightning_golem_elemental_resistances_%" } }, - [3618]={ + [3561]={ [1]={ [1]={ limit={ @@ -79118,7 +78069,7 @@ return { [1]="chaos_golem_elemental_resistances_%" } }, - [3619]={ + [3562]={ [1]={ [1]={ limit={ @@ -79134,7 +78085,7 @@ return { [1]="animate_guardian_elemental_resistances_%" } }, - [3620]={ + [3563]={ [1]={ [1]={ limit={ @@ -79163,7 +78114,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [3621]={ + [3564]={ [1]={ [1]={ limit={ @@ -79188,7 +78139,7 @@ return { [1]="blast_rain_number_of_blasts" } }, - [3622]={ + [3565]={ [1]={ [1]={ limit={ @@ -79204,7 +78155,7 @@ return { [1]="blast_rain_single_additional_projectile" } }, - [3623]={ + [3566]={ [1]={ [1]={ limit={ @@ -79220,7 +78171,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [3624]={ + [3567]={ [1]={ [1]={ limit={ @@ -79236,7 +78187,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [3625]={ + [3568]={ [1]={ [1]={ limit={ @@ -79265,7 +78216,7 @@ return { [1]="decoy_totem_life_+%" } }, - [3626]={ + [3569]={ [1]={ [1]={ limit={ @@ -79281,7 +78232,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [3627]={ + [3570]={ [1]={ [1]={ limit={ @@ -79310,7 +78261,7 @@ return { [1]="rejuvenation_totem_aura_effect_+%" } }, - [3628]={ + [3571]={ [1]={ [1]={ limit={ @@ -79335,7 +78286,7 @@ return { [1]="wild_strike_num_of_additional_projectiles_in_chain" } }, - [3629]={ + [3572]={ [1]={ [1]={ limit={ @@ -79360,7 +78311,7 @@ return { [1]="summon_skeletons_num_additional_warrior_skeletons" } }, - [3630]={ + [3573]={ [1]={ [1]={ limit={ @@ -79389,7 +78340,7 @@ return { [1]="shockwave_totem_cast_speed_+%" } }, - [3631]={ + [3574]={ [1]={ [1]={ limit={ @@ -79418,7 +78369,7 @@ return { [1]="devouring_totem_%_chance_to_consume_additional_corpse" } }, - [3632]={ + [3575]={ [1]={ [1]={ limit={ @@ -79447,7 +78398,7 @@ return { [1]="siege_ballista_totem_placement_speed_+%" } }, - [3633]={ + [3576]={ [1]={ [1]={ limit={ @@ -79476,7 +78427,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [3634]={ + [3577]={ [1]={ [1]={ limit={ @@ -79505,7 +78456,7 @@ return { [1]="poachers_mark_curse_effect_+%" } }, - [3635]={ + [3578]={ [1]={ [1]={ limit={ @@ -79534,7 +78485,7 @@ return { [1]="projectile_weakness_curse_effect_+%" } }, - [3636]={ + [3579]={ [1]={ [1]={ limit={ @@ -79563,7 +78514,7 @@ return { [1]="temporal_chains_curse_effect_+%" } }, - [3637]={ + [3580]={ [1]={ [1]={ limit={ @@ -79592,7 +78543,7 @@ return { [1]="assassins_mark_curse_effect_+%" } }, - [3638]={ + [3581]={ [1]={ [1]={ limit={ @@ -79621,7 +78572,7 @@ return { [1]="conductivity_curse_effect_+%" } }, - [3639]={ + [3582]={ [1]={ [1]={ limit={ @@ -79650,7 +78601,7 @@ return { [1]="elemental_weakness_curse_effect_+%" } }, - [3640]={ + [3583]={ [1]={ [1]={ limit={ @@ -79679,7 +78630,7 @@ return { [1]="enfeeble_curse_effect_+%" } }, - [3641]={ + [3584]={ [1]={ [1]={ limit={ @@ -79708,7 +78659,7 @@ return { [1]="flammability_curse_effect_+%" } }, - [3642]={ + [3585]={ [1]={ [1]={ limit={ @@ -79737,7 +78688,7 @@ return { [1]="frostbite_curse_effect_+%" } }, - [3643]={ + [3586]={ [1]={ [1]={ limit={ @@ -79766,7 +78717,7 @@ return { [1]="punishment_curse_effect_+%" } }, - [3644]={ + [3587]={ [1]={ [1]={ limit={ @@ -79795,7 +78746,7 @@ return { [1]="vulnerability_curse_effect_+%" } }, - [3645]={ + [3588]={ [1]={ [1]={ limit={ @@ -79824,7 +78775,7 @@ return { [1]="warlords_mark_curse_effect_+%" } }, - [3646]={ + [3589]={ [1]={ [1]={ limit={ @@ -79849,7 +78800,7 @@ return { [1]="display_attack_with_word_of_ire_when_hit_%" } }, - [3647]={ + [3590]={ [1]={ [1]={ limit={ @@ -79874,7 +78825,7 @@ return { [1]="display_attack_with_edict_of_ire_when_hit_%" } }, - [3648]={ + [3591]={ [1]={ [1]={ limit={ @@ -79899,7 +78850,7 @@ return { [1]="display_attack_with_decree_of_ire_when_hit_%" } }, - [3649]={ + [3592]={ [1]={ [1]={ limit={ @@ -79924,7 +78875,7 @@ return { [1]="display_attack_with_commandment_of_ire_when_hit_%" } }, - [3650]={ + [3593]={ [1]={ [1]={ limit={ @@ -79953,7 +78904,7 @@ return { [1]="arctic_armour_buff_effect_+%" } }, - [3651]={ + [3594]={ [1]={ [1]={ limit={ @@ -79982,7 +78933,7 @@ return { [1]="convocation_buff_effect_+%" } }, - [3652]={ + [3595]={ [1]={ [1]={ limit={ @@ -80011,7 +78962,7 @@ return { [1]="molten_shell_buff_effect_+%" } }, - [3653]={ + [3596]={ [1]={ [1]={ limit={ @@ -80036,7 +78987,7 @@ return { [1]="immortal_call_%_chance_to_not_consume_endurance_charges" } }, - [3654]={ + [3597]={ [1]={ [1]={ limit={ @@ -80061,7 +79012,7 @@ return { [1]="phase_run_%_chance_to_not_consume_frenzy_charges" } }, - [3655]={ + [3598]={ [1]={ [1]={ limit={ @@ -80077,7 +79028,7 @@ return { [1]="shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage" } }, - [3656]={ + [3599]={ [1]={ [1]={ limit={ @@ -80102,7 +79053,7 @@ return { [1]="tempest_shield_num_of_additional_projectiles_in_chain" } }, - [3657]={ + [3600]={ [1]={ [1]={ limit={ @@ -80135,7 +79086,7 @@ return { [1]="arctic_armour_mana_reservation_+%" } }, - [3658]={ + [3601]={ [1]={ [1]={ limit={ @@ -80168,7 +79119,7 @@ return { [1]="herald_of_ash_mana_reservation_+%" } }, - [3659]={ + [3602]={ [1]={ [1]={ limit={ @@ -80201,7 +79152,7 @@ return { [1]="herald_of_ice_mana_reservation_+%" } }, - [3660]={ + [3603]={ [1]={ [1]={ limit={ @@ -80234,7 +79185,7 @@ return { [1]="herald_of_thunder_mana_reservation_+%" } }, - [3661]={ + [3604]={ [1]={ [1]={ limit={ @@ -80267,7 +79218,7 @@ return { [1]="clarity_mana_reservation_+%" } }, - [3662]={ + [3605]={ [1]={ [1]={ limit={ @@ -80300,7 +79251,7 @@ return { [1]="hatred_mana_reservation_+%" } }, - [3663]={ + [3606]={ [1]={ [1]={ limit={ @@ -80333,7 +79284,7 @@ return { [1]="purity_of_ice_mana_reservation_+%" } }, - [3664]={ + [3607]={ [1]={ [1]={ limit={ @@ -80366,7 +79317,7 @@ return { [1]="determination_mana_reservation_+%" } }, - [3665]={ + [3608]={ [1]={ [1]={ limit={ @@ -80399,7 +79350,7 @@ return { [1]="discipline_mana_reservation_+%" } }, - [3666]={ + [3609]={ [1]={ [1]={ limit={ @@ -80432,7 +79383,7 @@ return { [1]="purity_of_elements_mana_reservation_+%" } }, - [3667]={ + [3610]={ [1]={ [1]={ limit={ @@ -80465,7 +79416,7 @@ return { [1]="purity_of_fire_mana_reservation_+%" } }, - [3668]={ + [3611]={ [1]={ [1]={ limit={ @@ -80498,7 +79449,7 @@ return { [1]="purity_of_lightning_mana_reservation_+%" } }, - [3669]={ + [3612]={ [1]={ [1]={ limit={ @@ -80531,7 +79482,7 @@ return { [1]="vitality_mana_reservation_+%" } }, - [3670]={ + [3613]={ [1]={ [1]={ limit={ @@ -80564,7 +79515,7 @@ return { [1]="wrath_mana_reservation_+%" } }, - [3671]={ + [3614]={ [1]={ [1]={ limit={ @@ -80597,7 +79548,7 @@ return { [1]="grace_mana_reservation_+%" } }, - [3672]={ + [3615]={ [1]={ [1]={ limit={ @@ -80630,7 +79581,7 @@ return { [1]="haste_mana_reservation_+%" } }, - [3673]={ + [3616]={ [1]={ [1]={ limit={ @@ -80663,7 +79614,7 @@ return { [1]="chaos_weakness_mana_reservation_+%" } }, - [3674]={ + [3617]={ [1]={ [1]={ limit={ @@ -80696,7 +79647,7 @@ return { [1]="conductivity_mana_reservation_+%" } }, - [3675]={ + [3618]={ [1]={ [1]={ limit={ @@ -80729,7 +79680,7 @@ return { [1]="flammability_mana_reservation_+%" } }, - [3676]={ + [3619]={ [1]={ [1]={ limit={ @@ -80762,7 +79713,7 @@ return { [1]="frostbite_mana_reservation_+%" } }, - [3677]={ + [3620]={ [1]={ [1]={ limit={ @@ -80795,7 +79746,7 @@ return { [1]="temporal_chains_mana_reservation_+%" } }, - [3678]={ + [3621]={ [1]={ [1]={ limit={ @@ -80828,7 +79779,7 @@ return { [1]="vulnerability_mana_reservation_+%" } }, - [3679]={ + [3622]={ [1]={ [1]={ limit={ @@ -80844,7 +79795,7 @@ return { [1]="cannot_be_stunned_while_at_max_endurance_charges" } }, - [3680]={ + [3623]={ [1]={ [1]={ limit={ @@ -80873,7 +79824,7 @@ return { [1]="life_regenerate_rate_per_second_%_while_totem_active" } }, - [3681]={ + [3624]={ [1]={ [1]={ limit={ @@ -80902,7 +79853,7 @@ return { [1]="gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3682]={ + [3625]={ [1]={ [1]={ limit={ @@ -80931,7 +79882,7 @@ return { [1]="berserker_damage_+%_final" } }, - [3683]={ + [3626]={ [1]={ [1]={ limit={ @@ -80960,7 +79911,7 @@ return { [1]="elemental_damage_taken_+%_while_on_consecrated_ground" } }, - [3684]={ + [3627]={ [1]={ [1]={ limit={ @@ -80989,7 +79940,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments" } }, - [3685]={ + [3628]={ [1]={ [1]={ limit={ @@ -81005,7 +79956,7 @@ return { [1]="%_chance_to_gain_power_charge_on_placing_a_totem" } }, - [3686]={ + [3629]={ [1]={ [1]={ [1]={ @@ -81025,7 +79976,7 @@ return { [1]="gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy" } }, - [3687]={ + [3630]={ [1]={ [1]={ limit={ @@ -81041,7 +79992,7 @@ return { [1]="enemies_chaos_resistance_%_while_cursed" } }, - [3688]={ + [3631]={ [1]={ [1]={ limit={ @@ -81070,7 +80021,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy" } }, - [3689]={ + [3632]={ [1]={ [1]={ limit={ @@ -81086,7 +80037,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%" } }, - [3690]={ + [3633]={ [1]={ [1]={ limit={ @@ -81095,7 +80046,7 @@ return { [2]="#" } }, - text="{0}% increased effect of Offerings" + text="Offering Skills have {0}% increased Buff effect" }, [2]={ [1]={ @@ -81108,14 +80059,14 @@ return { [2]=-1 } }, - text="{0}% reduced effect of Offerings" + text="Offering Skills have {0}% reduced Buff effect" } }, stats={ [1]="offering_spells_effect_+%" } }, - [3691]={ + [3634]={ [1]={ [1]={ limit={ @@ -81131,7 +80082,7 @@ return { [1]="additional_block_chance_%_for_you_and_allies_affected_by_your_auras" } }, - [3692]={ + [3635]={ [1]={ [1]={ limit={ @@ -81147,7 +80098,7 @@ return { [1]="additional_elemental_damage_reduction_as_half_of_chaos_resistance" } }, - [3693]={ + [3636]={ [1]={ [1]={ limit={ @@ -81176,7 +80127,7 @@ return { [1]="attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [3694]={ + [3637]={ [1]={ [1]={ limit={ @@ -81205,7 +80156,7 @@ return { [1]="attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [3695]={ + [3638]={ [1]={ [1]={ limit={ @@ -81221,7 +80172,7 @@ return { [1]="chaos_resistance_%_for_you_and_allies_affected_by_your_auras" } }, - [3696]={ + [3639]={ [1]={ [1]={ limit={ @@ -81250,7 +80201,7 @@ return { [1]="damage_+%_for_you_and_allies_affected_by_your_auras" } }, - [3697]={ + [3640]={ [1]={ [1]={ limit={ @@ -81279,27 +80230,7 @@ return { [1]="elemental_resistances_+%_for_you_and_allies_affected_by_your_auras" } }, - [3698]={ - [1]={ - [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You and Allies affected by your placed Banners Regenerate {0}% of\nmaximum Life per second for each Stage" - } - }, - stats={ - [1]="you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage" - } - }, - [3699]={ + [3641]={ [1]={ [1]={ limit={ @@ -81328,7 +80259,7 @@ return { [1]="you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed" } }, - [3700]={ + [3642]={ [1]={ [1]={ limit={ @@ -81344,7 +80275,7 @@ return { [1]="%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life" } }, - [3701]={ + [3643]={ [1]={ [1]={ limit={ @@ -81360,7 +80291,7 @@ return { [1]="cause_maim_on_critical_strike_attack" } }, - [3702]={ + [3644]={ [1]={ [1]={ limit={ @@ -81376,7 +80307,7 @@ return { [1]="%_chance_to_create_smoke_cloud_on_mine_or_trap_creation" } }, - [3703]={ + [3645]={ [1]={ [1]={ limit={ @@ -81405,7 +80336,7 @@ return { [1]="damage_+%_for_each_trap_and_mine_active" } }, - [3704]={ + [3646]={ [1]={ [1]={ limit={ @@ -81434,7 +80365,7 @@ return { [1]="evasion_rating_while_es_full_+%_final" } }, - [3705]={ + [3647]={ [1]={ [1]={ limit={ @@ -81463,7 +80394,7 @@ return { [1]="damage_+%_while_es_not_full" } }, - [3706]={ + [3648]={ [1]={ [1]={ limit={ @@ -81492,7 +80423,7 @@ return { [1]="mana_regeneration_+%_for_4_seconds_on_movement_skill_use" } }, - [3707]={ + [3649]={ [1]={ [1]={ limit={ @@ -81508,7 +80439,7 @@ return { [1]="gain_onslaught_while_frenzy_charges_full" } }, - [3708]={ + [3650]={ [1]={ [1]={ limit={ @@ -81524,7 +80455,7 @@ return { [1]="projectile_damage_+%_max_as_distance_travelled_increases" } }, - [3709]={ + [3651]={ [1]={ [1]={ limit={ @@ -81553,7 +80484,7 @@ return { [1]="damage_+%_during_flask_effect" } }, - [3710]={ + [3652]={ [1]={ [1]={ limit={ @@ -81569,7 +80500,7 @@ return { [1]="avoid_freeze_shock_ignite_bleed_%_during_flask_effect" } }, - [3711]={ + [3653]={ [1]={ [1]={ limit={ @@ -81598,7 +80529,7 @@ return { [1]="elemental_damage_taken_+%_during_flask_effect" } }, - [3712]={ + [3654]={ [1]={ [1]={ limit={ @@ -81627,7 +80558,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy" } }, - [3713]={ + [3655]={ [1]={ [1]={ limit={ @@ -81656,7 +80587,7 @@ return { [1]="damage_+%_to_you_and_nearby_allies_while_you_have_fortify" } }, - [3714]={ + [3656]={ [1]={ [1]={ limit={ @@ -81685,7 +80616,7 @@ return { [1]="damage_taken_+%_from_taunted_enemies" } }, - [3715]={ + [3657]={ [1]={ [1]={ limit={ @@ -81714,7 +80645,7 @@ return { [1]="attack_and_cast_speed_+%_while_leeching" } }, - [3716]={ + [3658]={ [1]={ [1]={ limit={ @@ -81743,7 +80674,7 @@ return { [1]="shield_charge_damage_per_target_hit_+%" } }, - [3717]={ + [3659]={ [1]={ [1]={ limit={ @@ -81768,7 +80699,7 @@ return { [1]="traps_and_mines_%_chance_to_poison" } }, - [3718]={ + [3660]={ [1]={ [1]={ limit={ @@ -81784,7 +80715,7 @@ return { [1]="damage_+%_of_each_type_that_you_have_an_active_golem_of" } }, - [3719]={ + [3661]={ [1]={ [1]={ limit={ @@ -81800,7 +80731,7 @@ return { [1]="elemental_golem_immunity_to_elemental_damage" } }, - [3720]={ + [3662]={ [1]={ [1]={ limit={ @@ -81816,7 +80747,7 @@ return { [1]="golem_immunity_to_elemental_damage" } }, - [3721]={ + [3663]={ [1]={ [1]={ limit={ @@ -81849,7 +80780,7 @@ return { [1]="unique_primordial_tether_golem_life_+%_final" } }, - [3722]={ + [3664]={ [1]={ [1]={ limit={ @@ -81878,7 +80809,7 @@ return { [1]="elemental_golem_granted_buff_effect_+%" } }, - [3723]={ + [3665]={ [1]={ [1]={ limit={ @@ -81907,7 +80838,7 @@ return { [1]="base_stone_golem_granted_buff_effect_+%" } }, - [3724]={ + [3666]={ [1]={ [1]={ limit={ @@ -81936,7 +80867,7 @@ return { [1]="base_fire_golem_granted_buff_effect_+%" } }, - [3725]={ + [3667]={ [1]={ [1]={ limit={ @@ -81965,7 +80896,7 @@ return { [1]="base_ice_golem_granted_buff_effect_+%" } }, - [3726]={ + [3668]={ [1]={ [1]={ limit={ @@ -81994,7 +80925,7 @@ return { [1]="base_lightning_golem_granted_buff_effect_+%" } }, - [3727]={ + [3669]={ [1]={ [1]={ limit={ @@ -82023,7 +80954,7 @@ return { [1]="base_chaos_golem_granted_buff_effect_+%" } }, - [3728]={ + [3670]={ [1]={ [1]={ limit={ @@ -82039,7 +80970,7 @@ return { [1]="gain_elemental_penetration_for_4_seconds_on_mine_detonation" } }, - [3729]={ + [3671]={ [1]={ [1]={ limit={ @@ -82055,7 +80986,7 @@ return { [1]="base_cold_immunity" } }, - [3730]={ + [3672]={ [1]={ [1]={ limit={ @@ -82071,7 +81002,7 @@ return { [1]="base_lightning_immunity" } }, - [3731]={ + [3673]={ [1]={ [1]={ limit={ @@ -82100,7 +81031,7 @@ return { [1]="blood_rage_grants_additional_attack_speed_+%" } }, - [3732]={ + [3674]={ [1]={ [1]={ limit={ @@ -82116,7 +81047,7 @@ return { [1]="blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill" } }, - [3733]={ + [3675]={ [1]={ [1]={ limit={ @@ -82132,7 +81063,7 @@ return { [1]="is_hindered" } }, - [3734]={ + [3676]={ [1]={ [1]={ limit={ @@ -82161,7 +81092,7 @@ return { [1]="damage_+%_vs_hindered_enemies" } }, - [3735]={ + [3677]={ [1]={ [1]={ limit={ @@ -82186,7 +81117,7 @@ return { [1]="blast_rain_%_chance_for_additional_blast" } }, - [3736]={ + [3678]={ [1]={ [1]={ limit={ @@ -82215,7 +81146,7 @@ return { [1]="smoke_mine_base_movement_velocity_+%" } }, - [3737]={ + [3679]={ [1]={ [1]={ limit={ @@ -82244,7 +81175,7 @@ return { [1]="enduring_cry_buff_effect_+%" } }, - [3738]={ + [3680]={ [1]={ [1]={ limit={ @@ -82269,7 +81200,7 @@ return { [1]="cluster_burst_spawn_amount" } }, - [3739]={ + [3681]={ [1]={ [1]={ limit={ @@ -82298,7 +81229,7 @@ return { [1]="lightning_tendrils_critical_strike_chance_+%" } }, - [3740]={ + [3682]={ [1]={ [1]={ limit={ @@ -82327,7 +81258,7 @@ return { [1]="righteous_fire_spell_damage_+%" } }, - [3741]={ + [3683]={ [1]={ [1]={ limit={ @@ -82356,7 +81287,7 @@ return { [1]="rallying_cry_buff_effect_+%" } }, - [3742]={ + [3684]={ [1]={ [1]={ limit={ @@ -82372,7 +81303,7 @@ return { [1]="melee_ancestor_totem_elemental_resistance_%" } }, - [3743]={ + [3685]={ [1]={ [1]={ limit={ @@ -82397,7 +81328,7 @@ return { [1]="kinetic_blast_%_chance_for_additional_blast" } }, - [3744]={ + [3686]={ [1]={ [1]={ limit={ @@ -82413,7 +81344,7 @@ return { [1]="guardian_nearby_allies_share_charges" } }, - [3745]={ + [3687]={ [1]={ [1]={ limit={ @@ -82442,7 +81373,7 @@ return { [1]="phase_run_skill_effect_duration_+%" } }, - [3746]={ + [3688]={ [1]={ [1]={ limit={ @@ -82471,7 +81402,7 @@ return { [1]="searing_totem_elemental_resistance_+%" } }, - [3747]={ + [3689]={ [1]={ [1]={ limit={ @@ -82487,7 +81418,7 @@ return { [1]="bone_offering_block_chance_+%" } }, - [3748]={ + [3690]={ [1]={ [1]={ limit={ @@ -82512,7 +81443,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [3749]={ + [3691]={ [1]={ [1]={ limit={ @@ -82541,7 +81472,7 @@ return { [1]="flesh_offering_attack_speed_+%" } }, - [3750]={ + [3692]={ [1]={ [1]={ limit={ @@ -82570,7 +81501,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [3751]={ + [3693]={ [1]={ [1]={ limit={ @@ -82586,7 +81517,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [3752]={ + [3694]={ [1]={ [1]={ limit={ @@ -82615,7 +81546,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [3753]={ + [3695]={ [1]={ [1]={ limit={ @@ -82640,7 +81571,7 @@ return { [1]="consecrate_ground_on_shatter_%_chance_for_3_seconds" } }, - [3754]={ + [3696]={ [1]={ [1]={ limit={ @@ -82656,7 +81587,7 @@ return { [1]="glows_in_area_with_unique_fish" } }, - [3755]={ + [3697]={ [1]={ [1]={ limit={ @@ -82681,7 +81612,7 @@ return { [1]="attacks_num_of_additional_chains" } }, - [3756]={ + [3698]={ [1]={ [1]={ limit={ @@ -82710,7 +81641,7 @@ return { [1]="explosive_arrow_attack_speed_+%" } }, - [3757]={ + [3699]={ [1]={ [1]={ limit={ @@ -82739,7 +81670,7 @@ return { [1]="lightning_damage_+%_per_10_intelligence" } }, - [3758]={ + [3700]={ [1]={ [1]={ limit={ @@ -82755,7 +81686,7 @@ return { [1]="local_maim_on_hit" } }, - [3759]={ + [3701]={ [1]={ [1]={ limit={ @@ -82771,7 +81702,7 @@ return { [1]="warcries_cost_no_mana" } }, - [3760]={ + [3702]={ [1]={ [1]={ limit={ @@ -82787,7 +81718,7 @@ return { [1]="gain_a_power_charge_when_you_or_your_totems_kill_%_chance" } }, - [3761]={ + [3703]={ [1]={ [1]={ limit={ @@ -82803,7 +81734,7 @@ return { [1]="always_crit_shocked_enemies" } }, - [3762]={ + [3704]={ [1]={ [1]={ limit={ @@ -82819,7 +81750,7 @@ return { [1]="cannot_crit_non_shocked_enemies" } }, - [3763]={ + [3705]={ [1]={ [1]={ limit={ @@ -82848,7 +81779,7 @@ return { [1]="frost_bolt_damage_+%" } }, - [3764]={ + [3706]={ [1]={ [1]={ limit={ @@ -82877,7 +81808,7 @@ return { [1]="frost_bolt_nova_damage_+%" } }, - [3765]={ + [3707]={ [1]={ [1]={ limit={ @@ -82906,7 +81837,7 @@ return { [1]="double_slash_damage_+%" } }, - [3766]={ + [3708]={ [1]={ [1]={ limit={ @@ -82935,7 +81866,7 @@ return { [1]="charged_attack_damage_+%" } }, - [3767]={ + [3709]={ [1]={ [1]={ limit={ @@ -82964,7 +81895,7 @@ return { [1]="slam_ancestor_totem_damage_+%" } }, - [3768]={ + [3710]={ [1]={ [1]={ limit={ @@ -82993,7 +81924,7 @@ return { [1]="slash_ancestor_totem_damage_+%" } }, - [3769]={ + [3711]={ [1]={ [1]={ limit={ @@ -83022,7 +81953,7 @@ return { [1]="slash_ancestor_totem_radius_+%" } }, - [3770]={ + [3712]={ [1]={ [1]={ limit={ @@ -83051,7 +81982,7 @@ return { [1]="slam_ancestor_totem_radius_+%" } }, - [3771]={ + [3713]={ [1]={ [1]={ limit={ @@ -83080,7 +82011,7 @@ return { [1]="frost_bolt_nova_radius_+%" } }, - [3772]={ + [3714]={ [1]={ [1]={ limit={ @@ -83109,7 +82040,7 @@ return { [1]="double_slash_critical_strike_chance_+%" } }, - [3773]={ + [3715]={ [1]={ [1]={ limit={ @@ -83138,7 +82069,7 @@ return { [1]="charged_attack_radius_+%" } }, - [3774]={ + [3716]={ [1]={ [1]={ limit={ @@ -83167,7 +82098,7 @@ return { [1]="double_slash_radius_+%" } }, - [3775]={ + [3717]={ [1]={ [1]={ limit={ @@ -83196,7 +82127,7 @@ return { [1]="charged_attack_damage_per_stack_+%_final" } }, - [3776]={ + [3718]={ [1]={ [1]={ limit={ @@ -83225,7 +82156,7 @@ return { [1]="frost_bolt_cast_speed_+%" } }, - [3777]={ + [3719]={ [1]={ [1]={ limit={ @@ -83254,7 +82185,7 @@ return { [1]="frost_bolt_freeze_chance_%" } }, - [3778]={ + [3720]={ [1]={ [1]={ limit={ @@ -83283,7 +82214,7 @@ return { [1]="frost_bolt_nova_duration_+%" } }, - [3779]={ + [3721]={ [1]={ [1]={ limit={ @@ -83299,7 +82230,7 @@ return { [1]="minions_cannot_be_blinded" } }, - [3780]={ + [3722]={ [1]={ [1]={ limit={ @@ -83315,7 +82246,7 @@ return { [1]="minions_%_chance_to_blind_on_hit" } }, - [3781]={ + [3723]={ [1]={ [1]={ limit={ @@ -83331,7 +82262,7 @@ return { [1]="magic_items_drop_identified" } }, - [3782]={ + [3724]={ [1]={ [1]={ limit={ @@ -83347,7 +82278,7 @@ return { [1]="X_mana_per_stackable_unique_jewel" } }, - [3783]={ + [3725]={ [1]={ [1]={ limit={ @@ -83363,7 +82294,7 @@ return { [1]="X_armour_per_stackable_unique_jewel" } }, - [3784]={ + [3726]={ [1]={ [1]={ limit={ @@ -83379,7 +82310,7 @@ return { [1]="avoid_all_elemental_status_%_per_stackable_unique_jewel" } }, - [3785]={ + [3727]={ [1]={ [1]={ limit={ @@ -83395,7 +82326,7 @@ return { [1]="critical_strike_chance_+%_per_stackable_unique_jewel" } }, - [3786]={ + [3728]={ [1]={ [1]={ limit={ @@ -83411,7 +82342,7 @@ return { [1]="elemental_damage_+%_per_stackable_unique_jewel" } }, - [3787]={ + [3729]={ [1]={ [1]={ limit={ @@ -83427,7 +82358,7 @@ return { [1]="elemental_resistance_%_per_stackable_unique_jewel" } }, - [3788]={ + [3730]={ [1]={ [1]={ limit={ @@ -83456,7 +82387,7 @@ return { [1]="maximum_life_+%_per_stackable_unique_jewel" } }, - [3789]={ + [3731]={ [1]={ [1]={ limit={ @@ -83472,7 +82403,7 @@ return { [1]="minimum_endurance_charges_per_stackable_unique_jewel" } }, - [3790]={ + [3732]={ [1]={ [1]={ limit={ @@ -83488,7 +82419,7 @@ return { [1]="minimum_frenzy_charges_per_stackable_unique_jewel" } }, - [3791]={ + [3733]={ [1]={ [1]={ limit={ @@ -83504,7 +82435,7 @@ return { [1]="minimum_power_charges_per_stackable_unique_jewel" } }, - [3792]={ + [3734]={ [1]={ [1]={ limit={ @@ -83520,7 +82451,7 @@ return { [1]="minion_critical_strike_multiplier_+_per_stackable_unique_jewel" } }, - [3793]={ + [3735]={ [1]={ [1]={ limit={ @@ -83549,7 +82480,7 @@ return { [1]="damage_+%_per_abyss_jewel_type" } }, - [3794]={ + [3736]={ [1]={ [1]={ limit={ @@ -83565,7 +82496,7 @@ return { [1]="lightning_damage_%_taken_from_mana_before_life" } }, - [3795]={ + [3737]={ [1]={ [1]={ limit={ @@ -83581,7 +82512,7 @@ return { [1]="physical_damage_%_taken_from_mana_before_life" } }, - [3796]={ + [3738]={ [1]={ [1]={ limit={ @@ -83606,7 +82537,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_shocked" } }, - [3797]={ + [3739]={ [1]={ [1]={ limit={ @@ -83635,7 +82566,7 @@ return { [1]="quantity_of_items_dropped_by_maimed_enemies_+%" } }, - [3798]={ + [3740]={ [1]={ [1]={ limit={ @@ -83664,7 +82595,7 @@ return { [1]="rarity_of_items_dropped_by_maimed_enemies_+%" } }, - [3799]={ + [3741]={ [1]={ [1]={ limit={ @@ -83693,7 +82624,7 @@ return { [1]="damage_taken_+%_if_you_have_taken_a_savage_hit_recently" } }, - [3800]={ + [3742]={ [1]={ [1]={ limit={ @@ -83722,7 +82653,7 @@ return { [1]="stun_duration_on_self_+%" } }, - [3801]={ + [3743]={ [1]={ [1]={ limit={ @@ -83751,7 +82682,7 @@ return { [1]="melee_damage_+%_per_endurance_charge" } }, - [3802]={ + [3744]={ [1]={ [1]={ limit={ @@ -83767,7 +82698,7 @@ return { [1]="totems_resist_all_elements_+%_per_active_totem" } }, - [3803]={ + [3745]={ [1]={ [1]={ limit={ @@ -83783,7 +82714,7 @@ return { [1]="gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit" } }, - [3804]={ + [3746]={ [1]={ [1]={ limit={ @@ -83799,7 +82730,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_endurance_charges" } }, - [3805]={ + [3747]={ [1]={ [1]={ limit={ @@ -83815,7 +82746,7 @@ return { [1]="movement_speed_+%_if_used_a_warcry_recently" } }, - [3806]={ + [3748]={ [1]={ [1]={ limit={ @@ -83844,7 +82775,7 @@ return { [1]="totems_spells_cast_speed_+%_per_active_totem" } }, - [3807]={ + [3749]={ [1]={ [1]={ limit={ @@ -83873,7 +82804,7 @@ return { [1]="movement_skills_mana_cost_+%" } }, - [3808]={ + [3750]={ [1]={ [1]={ limit={ @@ -83889,7 +82820,7 @@ return { [1]="critical_strike_chance_+%_when_in_main_hand" } }, - [3809]={ + [3751]={ [1]={ [1]={ limit={ @@ -83905,7 +82836,7 @@ return { [1]="additional_block_chance_%_when_in_off_hand" } }, - [3810]={ + [3752]={ [1]={ [1]={ limit={ @@ -83921,7 +82852,7 @@ return { [1]="spirit_offering_physical_damage_%_to_gain_as_chaos" } }, - [3811]={ + [3753]={ [1]={ [1]={ limit={ @@ -83954,7 +82885,7 @@ return { [1]="damage_taken_+%_if_not_hit_recently_final" } }, - [3812]={ + [3754]={ [1]={ [1]={ limit={ @@ -83983,23 +82914,7 @@ return { [1]="evasion_+%_if_hit_recently" } }, - [3813]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Attack Damage from Taunted Enemies" - } - }, - stats={ - [1]="block_chance_%_vs_taunted_enemies" - } - }, - [3814]={ + [3755]={ [1]={ [1]={ limit={ @@ -84015,7 +82930,7 @@ return { [1]="minion_cold_damage_resistance_%" } }, - [3815]={ + [3756]={ [1]={ [1]={ limit={ @@ -84031,7 +82946,7 @@ return { [1]="minion_lightning_damage_resistance_%" } }, - [3816]={ + [3757]={ [1]={ [1]={ limit={ @@ -84047,7 +82962,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_cold" } }, - [3817]={ + [3758]={ [1]={ [1]={ limit={ @@ -84076,7 +82991,7 @@ return { [1]="armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently" } }, - [3818]={ + [3759]={ [1]={ [1]={ limit={ @@ -84105,7 +83020,7 @@ return { [1]="damage_+%_for_each_level_the_enemy_is_higher_than_you" } }, - [3819]={ + [3760]={ [1]={ [1]={ limit={ @@ -84134,7 +83049,7 @@ return { [1]="totems_attack_speed_+%_per_active_totem" } }, - [3820]={ + [3761]={ [1]={ [1]={ limit={ @@ -84159,7 +83074,7 @@ return { [1]="attacks_num_of_additional_chains_when_in_main_hand" } }, - [3821]={ + [3762]={ [1]={ [1]={ limit={ @@ -84184,7 +83099,32 @@ return { [1]="attacks_number_of_additional_projectiles" } }, - [3822]={ + [3763]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Melee Attacks fire an additional Projectile" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Melee Attacks fire {0} additional Projectiles" + } + }, + stats={ + [1]="melee_attacks_number_of_additional_projectiles" + } + }, + [3764]={ [1]={ [1]={ limit={ @@ -84209,7 +83149,7 @@ return { [1]="attacks_number_of_additional_projectiles_when_in_off_hand" } }, - [3823]={ + [3765]={ [1]={ [1]={ limit={ @@ -84230,7 +83170,7 @@ return { [2]="counter_attacks_maximum_added_physical_damage" } }, - [3824]={ + [3766]={ [1]={ [1]={ limit={ @@ -84259,7 +83199,7 @@ return { [1]="golem_damage_+%_per_active_golem_type" } }, - [3825]={ + [3767]={ [1]={ [1]={ limit={ @@ -84288,7 +83228,7 @@ return { [1]="golem_damage_+%_per_active_golem" } }, - [3826]={ + [3768]={ [1]={ [1]={ limit={ @@ -84304,7 +83244,7 @@ return { [1]="life_+%_with_no_corrupted_equipped_items" } }, - [3827]={ + [3769]={ [1]={ [1]={ [1]={ @@ -84324,7 +83264,7 @@ return { [1]="life_regeneration_per_minute_with_no_corrupted_equipped_items" } }, - [3828]={ + [3770]={ [1]={ [1]={ [1]={ @@ -84344,7 +83284,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [3829]={ + [3771]={ [1]={ [1]={ limit={ @@ -84360,7 +83300,7 @@ return { [1]="local_display_nearby_enemies_take_X_chaos_damage_per_minute" } }, - [3830]={ + [3772]={ [1]={ [1]={ limit={ @@ -84381,7 +83321,7 @@ return { [2]="counter_attacks_maximum_added_cold_damage" } }, - [3831]={ + [3773]={ [1]={ [1]={ limit={ @@ -84410,7 +83350,7 @@ return { [1]="movement_speed_+%_if_pierced_recently" } }, - [3832]={ + [3774]={ [1]={ [1]={ limit={ @@ -84426,7 +83366,7 @@ return { [1]="poison_cursed_enemies_on_hit" } }, - [3833]={ + [3775]={ [1]={ [1]={ limit={ @@ -84451,7 +83391,7 @@ return { [1]="chance_to_poison_%_vs_cursed_enemies" } }, - [3834]={ + [3776]={ [1]={ [1]={ limit={ @@ -84480,7 +83420,7 @@ return { [1]="item_found_rarity_+%_if_wearing_a_normal_item" } }, - [3835]={ + [3777]={ [1]={ [1]={ limit={ @@ -84509,7 +83449,7 @@ return { [1]="item_found_quantity_+%_if_wearing_a_magic_item" } }, - [3836]={ + [3778]={ [1]={ [1]={ [1]={ @@ -84529,7 +83469,7 @@ return { [1]="gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster" } }, - [3837]={ + [3779]={ [1]={ [1]={ limit={ @@ -84545,7 +83485,7 @@ return { [1]="kill_enemy_on_hit_if_under_15%_life" } }, - [3838]={ + [3780]={ [1]={ [1]={ limit={ @@ -84561,7 +83501,7 @@ return { [1]="kill_enemy_on_hit_if_under_20%_life" } }, - [3839]={ + [3781]={ [1]={ [1]={ limit={ @@ -84577,7 +83517,7 @@ return { [1]="immune_to_bleeding" } }, - [3840]={ + [3782]={ [1]={ [1]={ limit={ @@ -84593,7 +83533,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [3841]={ + [3783]={ [1]={ [1]={ limit={ @@ -84609,7 +83549,7 @@ return { [1]="base_avoid_bleed_%" } }, - [3842]={ + [3784]={ [1]={ [1]={ limit={ @@ -84638,7 +83578,7 @@ return { [1]="damage_+%_if_enemy_killed_recently_final" } }, - [3843]={ + [3785]={ [1]={ [1]={ limit={ @@ -84667,7 +83607,7 @@ return { [1]="skill_area_of_effect_+%_if_enemy_killed_recently" } }, - [3844]={ + [3786]={ [1]={ [1]={ limit={ @@ -84692,7 +83632,7 @@ return { [1]="max_charged_attack_stacks" } }, - [3845]={ + [3787]={ [1]={ [1]={ limit={ @@ -84721,7 +83661,7 @@ return { [1]="skill_effect_duration_+%_if_killed_maimed_enemy_recently" } }, - [3846]={ + [3788]={ [1]={ [1]={ limit={ @@ -84750,7 +83690,7 @@ return { [1]="damage_taken_+%_if_taunted_an_enemy_recently" } }, - [3847]={ + [3789]={ [1]={ [1]={ [1]={ @@ -84770,7 +83710,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently" } }, - [3848]={ + [3790]={ [1]={ [1]={ limit={ @@ -84786,7 +83726,7 @@ return { [1]="immune_to_elemental_status_ailments_during_flask_effect" } }, - [3849]={ + [3791]={ [1]={ [1]={ limit={ @@ -84815,32 +83755,7 @@ return { [1]="elemental_damage_+%_during_flask_effect" } }, - [3850]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Freeze, Shock and Ignite during any Flask Effect" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Freeze, Shock and Ignite during any Flask Effect" - } - }, - stats={ - [1]="chance_to_freeze_shock_ignite_%_during_flask_effect" - } - }, - [3851]={ + [3792]={ [1]={ [1]={ [1]={ @@ -84860,7 +83775,7 @@ return { [1]="es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground" } }, - [3852]={ + [3793]={ [1]={ [1]={ limit={ @@ -84889,7 +83804,7 @@ return { [1]="attack_and_cast_speed_+%_while_on_consecrated_ground" } }, - [3853]={ + [3794]={ [1]={ [1]={ limit={ @@ -84918,7 +83833,7 @@ return { [1]="mine_arming_speed_+%" } }, - [3854]={ + [3795]={ [1]={ [1]={ limit={ @@ -84934,7 +83849,7 @@ return { [1]="flasks_%_chance_to_not_consume_charges" } }, - [3855]={ + [3796]={ [1]={ [1]={ limit={ @@ -84963,7 +83878,7 @@ return { [1]="physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit" } }, - [3856]={ + [3797]={ [1]={ [1]={ limit={ @@ -84979,7 +83894,7 @@ return { [1]="your_consecrated_ground_grants_damage_+%" } }, - [3857]={ + [3798]={ [1]={ [1]={ limit={ @@ -85008,7 +83923,7 @@ return { [1]="attack_speed_+%_if_enemy_not_killed_recently" } }, - [3858]={ + [3799]={ [1]={ [1]={ limit={ @@ -85037,7 +83952,7 @@ return { [1]="physical_damage_+%_while_at_maximum_frenzy_charges_final" } }, - [3859]={ + [3800]={ [1]={ [1]={ limit={ @@ -85066,7 +83981,7 @@ return { [1]="physical_damage_taken_+%_while_at_maximum_endurance_charges" } }, - [3860]={ + [3801]={ [1]={ [1]={ limit={ @@ -85095,7 +84010,7 @@ return { [1]="attack_speed_+%_per_200_accuracy_rating" } }, - [3861]={ + [3802]={ [1]={ [1]={ limit={ @@ -85111,7 +84026,7 @@ return { [1]="gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance" } }, - [3862]={ + [3803]={ [1]={ [1]={ limit={ @@ -85140,7 +84055,7 @@ return { [1]="elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds" } }, - [3863]={ + [3804]={ [1]={ [1]={ limit={ @@ -85156,7 +84071,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies" } }, - [3864]={ + [3805]={ [1]={ [1]={ limit={ @@ -85232,7 +84147,7 @@ return { [2]="phasing_on_trap_triggered_by_an_enemy_ms" } }, - [3865]={ + [3806]={ [1]={ [1]={ limit={ @@ -85248,7 +84163,7 @@ return { [1]="gain_x_life_on_trap_triggered_by_an_enemy" } }, - [3866]={ + [3807]={ [1]={ [1]={ limit={ @@ -85264,7 +84179,7 @@ return { [1]="gain_x_es_on_trap_triggered_by_an_enemy" } }, - [3867]={ + [3808]={ [1]={ [1]={ limit={ @@ -85280,7 +84195,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [3868]={ + [3809]={ [1]={ [1]={ limit={ @@ -85296,7 +84211,7 @@ return { [1]="attack_skills_additional_totems_allowed" } }, - [3869]={ + [3810]={ [1]={ [1]={ limit={ @@ -85325,7 +84240,7 @@ return { [1]="ascendancy_assasin_critical_hit_poison_effect_+%_final" } }, - [3870]={ + [3811]={ [1]={ [1]={ limit={ @@ -85354,7 +84269,7 @@ return { [1]="flask_charges_+%_from_enemies_with_status_ailments" } }, - [3871]={ + [3812]={ [1]={ [1]={ limit={ @@ -85383,7 +84298,7 @@ return { [1]="armour_and_evasion_+%_while_fortified" } }, - [3872]={ + [3813]={ [1]={ [1]={ limit={ @@ -85412,7 +84327,7 @@ return { [1]="melee_damage_+%_while_fortified" } }, - [3873]={ + [3814]={ [1]={ [1]={ limit={ @@ -85437,7 +84352,7 @@ return { [1]="desecrate_creates_X_additional_corpses" } }, - [3874]={ + [3815]={ [1]={ [1]={ limit={ @@ -85466,7 +84381,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [3875]={ + [3816]={ [1]={ [1]={ limit={ @@ -85495,7 +84410,7 @@ return { [1]="attack_and_cast_speed_+%_per_corpse_consumed_recently" } }, - [3876]={ + [3817]={ [1]={ [1]={ limit={ @@ -85511,7 +84426,7 @@ return { [1]="permanently_intimidate_enemies_you_hit_on_full_life" } }, - [3877]={ + [3818]={ [1]={ [1]={ limit={ @@ -85540,7 +84455,7 @@ return { [1]="taunted_enemies_damage_+%_final_vs_non_taunt_target" } }, - [3878]={ + [3819]={ [1]={ [1]={ limit={ @@ -85556,7 +84471,7 @@ return { [1]="poison_on_melee_hit" } }, - [3879]={ + [3820]={ [1]={ [1]={ limit={ @@ -85581,7 +84496,7 @@ return { [1]="chance_to_poison_on_melee_hit_%" } }, - [3880]={ + [3821]={ [1]={ [1]={ limit={ @@ -85610,7 +84525,7 @@ return { [1]="movement_speed_+%_if_enemy_killed_recently" } }, - [3881]={ + [3822]={ [1]={ [1]={ limit={ @@ -85626,7 +84541,7 @@ return { [1]="local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon" } }, - [3882]={ + [3823]={ [1]={ [1]={ limit={ @@ -85642,7 +84557,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems" } }, - [3883]={ + [3824]={ [1]={ [1]={ limit={ @@ -85658,7 +84573,7 @@ return { [1]="global_critical_strike_multiplier_while_dual_wielding_+" } }, - [3884]={ + [3825]={ [1]={ [1]={ limit={ @@ -85687,7 +84602,7 @@ return { [1]="global_critical_strike_chance_while_dual_wielding_+%" } }, - [3885]={ + [3826]={ [1]={ [1]={ limit={ @@ -85703,7 +84618,7 @@ return { [1]="elemental_penetration_%_during_flask_effect" } }, - [3886]={ + [3827]={ [1]={ [1]={ limit={ @@ -85719,7 +84634,7 @@ return { [1]="additional_physical_damage_reduction_%_during_flask_effect" } }, - [3887]={ + [3828]={ [1]={ [1]={ limit={ @@ -85752,7 +84667,7 @@ return { [1]="reflect_damage_taken_+%" } }, - [3888]={ + [3829]={ [1]={ [1]={ limit={ @@ -85768,7 +84683,7 @@ return { [1]="power_charge_on_block_%_chance" } }, - [3889]={ + [3830]={ [1]={ [1]={ [1]={ @@ -85801,7 +84716,7 @@ return { [1]="nearby_enemies_chilled_on_block" } }, - [3890]={ + [3831]={ [1]={ [1]={ limit={ @@ -85822,7 +84737,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken_per_frenzy_charge" } }, - [3891]={ + [3832]={ [1]={ [1]={ limit={ @@ -85843,7 +84758,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [3892]={ + [3833]={ [1]={ [1]={ limit={ @@ -85872,7 +84787,7 @@ return { [1]="attack_and_cast_speed_+%_during_flask_effect" } }, - [3893]={ + [3834]={ [1]={ [1]={ limit={ @@ -85893,7 +84808,7 @@ return { [2]="maximum_added_fire_damage_if_blocked_recently" } }, - [3894]={ + [3835]={ [1]={ [1]={ limit={ @@ -85909,7 +84824,7 @@ return { [1]="stun_threshold_based_on_energy_shield_instead_of_life" } }, - [3895]={ + [3836]={ [1]={ [1]={ limit={ @@ -85925,7 +84840,7 @@ return { [1]="cannot_leech_life_from_critical_strikes" } }, - [3896]={ + [3837]={ [1]={ [1]={ limit={ @@ -85941,7 +84856,7 @@ return { [1]="%_chance_to_blind_on_critical_strike" } }, - [3897]={ + [3838]={ [1]={ [1]={ limit={ @@ -85957,7 +84872,7 @@ return { [1]="bleed_on_melee_critical_strike" } }, - [3898]={ + [3839]={ [1]={ [1]={ limit={ @@ -85982,7 +84897,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [3899]={ + [3840]={ [1]={ [1]={ limit={ @@ -86007,7 +84922,7 @@ return { [1]="gain_elusive_on_kill_chance_%" } }, - [3900]={ + [3841]={ [1]={ [1]={ limit={ @@ -86023,7 +84938,7 @@ return { [1]="map_packs_have_pop_up_traps" } }, - [3901]={ + [3842]={ [1]={ [1]={ [1]={ @@ -86043,7 +84958,7 @@ return { [1]="gain_defiance_when_lose_life_to_hit_once_per_x_ms" } }, - [3902]={ + [3843]={ [1]={ [1]={ limit={ @@ -86072,7 +84987,7 @@ return { [1]="armour_+%_per_defiance" } }, - [3903]={ + [3844]={ [1]={ [1]={ limit={ @@ -86088,7 +85003,7 @@ return { [1]="lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance" } }, - [3904]={ + [3845]={ [1]={ [1]={ limit={ @@ -86104,7 +85019,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes" } }, - [3905]={ + [3846]={ [1]={ [1]={ limit={ @@ -86137,7 +85052,7 @@ return { [1]="enemies_you_shock_cast_speed_+%" } }, - [3906]={ + [3847]={ [1]={ [1]={ limit={ @@ -86170,7 +85085,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [3907]={ + [3848]={ [1]={ [1]={ [1]={ @@ -86190,7 +85105,7 @@ return { [1]="map_normal_monster_life_regeneration_rate_per_minute_%" } }, - [3908]={ + [3849]={ [1]={ [1]={ [1]={ @@ -86210,7 +85125,7 @@ return { [1]="map_magic_monster_life_regeneration_rate_per_minute_%" } }, - [3909]={ + [3850]={ [1]={ [1]={ [1]={ @@ -86230,7 +85145,7 @@ return { [1]="map_rare_monster_life_regeneration_rate_per_minute_%" } }, - [3910]={ + [3851]={ [1]={ [1]={ limit={ @@ -86259,7 +85174,7 @@ return { [1]="flail_damage_+%" } }, - [3911]={ + [3852]={ [1]={ [1]={ limit={ @@ -86288,7 +85203,7 @@ return { [1]="flail_elemental_damage_+%" } }, - [3912]={ + [3853]={ [1]={ [1]={ limit={ @@ -86304,7 +85219,7 @@ return { [1]="flail_accuracy_rating" } }, - [3913]={ + [3854]={ [1]={ [1]={ limit={ @@ -86333,7 +85248,7 @@ return { [1]="flail_accuracy_rating_+%" } }, - [3914]={ + [3855]={ [1]={ [1]={ limit={ @@ -86362,7 +85277,7 @@ return { [1]="flail_attack_speed_+%" } }, - [3915]={ + [3856]={ [1]={ [1]={ limit={ @@ -86391,7 +85306,7 @@ return { [1]="flail_critical_strike_chance_+%" } }, - [3916]={ + [3857]={ [1]={ [1]={ limit={ @@ -86407,7 +85322,7 @@ return { [1]="flail_critical_strike_multiplier_+" } }, - [3917]={ + [3858]={ [1]={ [1]={ limit={ @@ -86428,7 +85343,7 @@ return { [2]="attack_maximum_added_cold_damage_with_flails" } }, - [3918]={ + [3859]={ [1]={ [1]={ limit={ @@ -86449,7 +85364,7 @@ return { [2]="attack_maximum_added_fire_damage_with_flails" } }, - [3919]={ + [3860]={ [1]={ [1]={ limit={ @@ -86470,7 +85385,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_flails" } }, - [3920]={ + [3861]={ [1]={ [1]={ limit={ @@ -86491,7 +85406,7 @@ return { [2]="attack_maximum_added_physical_damage_with_flails" } }, - [3921]={ + [3862]={ [1]={ [1]={ limit={ @@ -86520,7 +85435,7 @@ return { [1]="crossbow_damage_+%" } }, - [3922]={ + [3863]={ [1]={ [1]={ limit={ @@ -86549,7 +85464,7 @@ return { [1]="crossbow_elemental_damage_+%" } }, - [3923]={ + [3864]={ [1]={ [1]={ limit={ @@ -86565,7 +85480,7 @@ return { [1]="crossbow_accuracy_rating" } }, - [3924]={ + [3865]={ [1]={ [1]={ limit={ @@ -86594,7 +85509,7 @@ return { [1]="crossbow_accuracy_rating_+%" } }, - [3925]={ + [3866]={ [1]={ [1]={ limit={ @@ -86623,7 +85538,7 @@ return { [1]="crossbow_attack_speed_+%" } }, - [3926]={ + [3867]={ [1]={ [1]={ limit={ @@ -86652,7 +85567,7 @@ return { [1]="crossbow_critical_strike_chance_+%" } }, - [3927]={ + [3868]={ [1]={ [1]={ limit={ @@ -86668,7 +85583,7 @@ return { [1]="crossbow_critical_strike_multiplier_+" } }, - [3928]={ + [3869]={ [1]={ [1]={ limit={ @@ -86697,7 +85612,7 @@ return { [1]="crossbow_physical_damage_+%" } }, - [3929]={ + [3870]={ [1]={ [1]={ limit={ @@ -86718,7 +85633,7 @@ return { [2]="attack_maximum_added_cold_damage_with_crossbows" } }, - [3930]={ + [3871]={ [1]={ [1]={ limit={ @@ -86739,7 +85654,7 @@ return { [2]="attack_maximum_added_fire_damage_with_crossbows" } }, - [3931]={ + [3872]={ [1]={ [1]={ limit={ @@ -86760,7 +85675,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_crossbows" } }, - [3932]={ + [3873]={ [1]={ [1]={ limit={ @@ -86781,7 +85696,7 @@ return { [2]="attack_maximum_added_physical_damage_with_crossbows" } }, - [3933]={ + [3874]={ [1]={ [1]={ limit={ @@ -86810,7 +85725,7 @@ return { [1]="siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem" } }, - [3934]={ + [3875]={ [1]={ [1]={ limit={ @@ -86835,7 +85750,7 @@ return { [1]="memory_line_number_of_shrines" } }, - [3935]={ + [3876]={ [1]={ [1]={ limit={ @@ -86860,7 +85775,7 @@ return { [1]="memory_line_number_of_pantheon_shrines" } }, - [3936]={ + [3877]={ [1]={ [1]={ limit={ @@ -86889,7 +85804,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [3937]={ + [3878]={ [1]={ [1]={ limit={ @@ -86918,7 +85833,7 @@ return { [1]="map_monsters_energy_shield_leech_resistance_permyriad" } }, - [3938]={ + [3879]={ [1]={ [1]={ limit={ @@ -86947,7 +85862,7 @@ return { [1]="map_incursion_memory_line_monster_life_+%_final" } }, - [3939]={ + [3880]={ [1]={ [1]={ limit={ @@ -86976,7 +85891,7 @@ return { [1]="map_incursion_memory_line_monster_damage_+%_final" } }, - [3940]={ + [3881]={ [1]={ [1]={ limit={ @@ -87005,7 +85920,7 @@ return { [1]="burning_damage_+%_if_ignited_an_enemy_recently" } }, - [3941]={ + [3882]={ [1]={ [1]={ limit={ @@ -87021,7 +85936,7 @@ return { [1]="recover_%_maximum_life_on_enemy_ignited" } }, - [3942]={ + [3883]={ [1]={ [1]={ limit={ @@ -87050,7 +85965,7 @@ return { [1]="melee_physical_damage_+%_vs_ignited_enemies" } }, - [3943]={ + [3884]={ [1]={ [1]={ limit={ @@ -87079,7 +85994,7 @@ return { [1]="critical_strike_chance_+%_for_forking_arrows" } }, - [3944]={ + [3885]={ [1]={ [1]={ limit={ @@ -87095,7 +86010,7 @@ return { [1]="arrows_that_pierce_cause_bleeding" } }, - [3945]={ + [3886]={ [1]={ [1]={ limit={ @@ -87111,7 +86026,7 @@ return { [1]="arrows_that_pierce_chance_to_bleed_25%" } }, - [3946]={ + [3887]={ [1]={ [1]={ limit={ @@ -87127,7 +86042,7 @@ return { [1]="arrows_always_pierce_after_chaining" } }, - [3947]={ + [3888]={ [1]={ [1]={ limit={ @@ -87152,7 +86067,7 @@ return { [1]="spells_number_of_additional_projectiles" } }, - [3948]={ + [3889]={ [1]={ [1]={ limit={ @@ -87168,7 +86083,7 @@ return { [1]="minion_damage_increases_and_reductions_also_affects_you" } }, - [3949]={ + [3890]={ [1]={ [1]={ limit={ @@ -87197,7 +86112,7 @@ return { [1]="projectile_attack_damage_+%_per_200_accuracy" } }, - [3950]={ + [3891]={ [1]={ [1]={ [1]={ @@ -87239,7 +86154,7 @@ return { [2]="essence_buff_ground_fire_duration_ms" } }, - [3951]={ + [3892]={ [1]={ [1]={ limit={ @@ -87255,7 +86170,7 @@ return { [1]="unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life" } }, - [3952]={ + [3893]={ [1]={ [1]={ limit={ @@ -87271,7 +86186,7 @@ return { [1]="unique_boots_secondary_ground_shock_while_moving" } }, - [3953]={ + [3894]={ [1]={ [1]={ limit={ @@ -87304,7 +86219,7 @@ return { [1]="essence_display_elemental_damage_taken_while_not_moving_+%" } }, - [3954]={ + [3895]={ [1]={ [1]={ limit={ @@ -87329,7 +86244,7 @@ return { [1]="physical_damage_reduction_rating_%_while_not_moving" } }, - [3955]={ + [3896]={ [1]={ [1]={ limit={ @@ -87345,7 +86260,7 @@ return { [1]="armour_while_stationary" } }, - [3956]={ + [3897]={ [1]={ [1]={ limit={ @@ -87374,7 +86289,7 @@ return { [1]="physical_damage_taken_+%_while_moving" } }, - [3957]={ + [3898]={ [1]={ [1]={ limit={ @@ -87403,7 +86318,7 @@ return { [1]="mana_regeneration_rate_+%_while_stationary" } }, - [3958]={ + [3899]={ [1]={ [1]={ limit={ @@ -87432,7 +86347,7 @@ return { [1]="projectile_attack_skill_critical_strike_chance_+%" } }, - [3959]={ + [3900]={ [1]={ [1]={ limit={ @@ -87448,7 +86363,7 @@ return { [1]="projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion" } }, - [3960]={ + [3901]={ [1]={ [1]={ limit={ @@ -87464,7 +86379,7 @@ return { [1]="projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion" } }, - [3961]={ + [3902]={ [1]={ [1]={ limit={ @@ -87480,7 +86395,7 @@ return { [1]="projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion" } }, - [3962]={ + [3903]={ [1]={ [1]={ limit={ @@ -87501,7 +86416,7 @@ return { [2]="attack_maximum_added_physical_damage_if_you_have_beast_minion" } }, - [3963]={ + [3904]={ [1]={ [1]={ limit={ @@ -87522,7 +86437,7 @@ return { [2]="attack_maximum_added_chaos_damage_if_you_have_beast_minion" } }, - [3964]={ + [3905]={ [1]={ [1]={ limit={ @@ -87538,7 +86453,7 @@ return { [1]="attack_and_movement_speed_+%_if_you_have_beast_minion" } }, - [3965]={ + [3906]={ [1]={ [1]={ limit={ @@ -87567,7 +86482,7 @@ return { [1]="attack_damage_+%_if_other_ring_is_shaper_item" } }, - [3966]={ + [3907]={ [1]={ [1]={ limit={ @@ -87596,7 +86511,7 @@ return { [1]="spell_damage_+%_if_other_ring_is_elder_item" } }, - [3967]={ + [3908]={ [1]={ [1]={ limit={ @@ -87612,7 +86527,7 @@ return { [1]="cannot_be_stunned_by_spells_if_other_ring_is_shaper_item" } }, - [3968]={ + [3909]={ [1]={ [1]={ limit={ @@ -87628,7 +86543,7 @@ return { [1]="cannot_be_stunned_by_attacks_if_other_ring_is_elder_item" } }, - [3969]={ + [3910]={ [1]={ [1]={ limit={ @@ -87644,7 +86559,7 @@ return { [1]="maximum_life_per_equipped_elder_item" } }, - [3970]={ + [3911]={ [1]={ [1]={ limit={ @@ -87673,7 +86588,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge" } }, - [3971]={ + [3912]={ [1]={ [1]={ limit={ @@ -87689,7 +86604,7 @@ return { [1]="skill_mana_cost_+_for_each_equipped_corrupted_item" } }, - [3972]={ + [3913]={ [1]={ [1]={ limit={ @@ -87705,7 +86620,7 @@ return { [1]="non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped" } }, - [3973]={ + [3914]={ [1]={ [1]={ limit={ @@ -87721,7 +86636,7 @@ return { [1]="recover_%_maximum_life_on_flask_use" } }, - [3974]={ + [3915]={ [1]={ [1]={ limit={ @@ -87737,7 +86652,7 @@ return { [1]="recover_%_maximum_life_on_mana_flask_use" } }, - [3975]={ + [3916]={ [1]={ [1]={ limit={ @@ -87753,7 +86668,7 @@ return { [1]="non_instant_mana_recovery_from_flasks_also_recovers_life" } }, - [3976]={ + [3917]={ [1]={ [1]={ limit={ @@ -87782,7 +86697,7 @@ return { [1]="mana_cost_+%_per_200_mana_spent_recently" } }, - [3977]={ + [3918]={ [1]={ [1]={ limit={ @@ -87811,7 +86726,7 @@ return { [1]="spell_damage_+%_per_200_mana_spent_recently" } }, - [3978]={ + [3919]={ [1]={ [1]={ limit={ @@ -87827,7 +86742,7 @@ return { [1]="cannot_be_stunned_if_you_have_10_or_more_crab_charges" } }, - [3979]={ + [3920]={ [1]={ [1]={ limit={ @@ -87843,7 +86758,7 @@ return { [1]="cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently" } }, - [3980]={ + [3921]={ [1]={ [1]={ limit={ @@ -87859,7 +86774,7 @@ return { [1]="crab_aspect_crab_barrier_max_+" } }, - [3981]={ + [3922]={ [1]={ [1]={ limit={ @@ -87875,7 +86790,7 @@ return { [1]="damage_+%_per_crab_charge" } }, - [3982]={ + [3923]={ [1]={ [1]={ limit={ @@ -87891,7 +86806,7 @@ return { [1]="number_of_crab_charges_lost_when_hit" } }, - [3983]={ + [3924]={ [1]={ [1]={ limit={ @@ -87907,7 +86822,7 @@ return { [1]="additional_block_%_while_you_have_at_least_5_crab_charges" } }, - [3984]={ + [3925]={ [1]={ [1]={ limit={ @@ -87923,7 +86838,7 @@ return { [1]="additional_block_%_while_you_have_at_least_10_crab_charges" } }, - [3985]={ + [3926]={ [1]={ [1]={ limit={ @@ -87939,7 +86854,7 @@ return { [1]="chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%" } }, - [3986]={ + [3927]={ [1]={ [1]={ limit={ @@ -87955,7 +86870,7 @@ return { [1]="maximum_blood_scythe_charges" } }, - [3987]={ + [3928]={ [1]={ [1]={ limit={ @@ -87971,7 +86886,7 @@ return { [1]="maximum_void_arrows" } }, - [3988]={ + [3929]={ [1]={ [1]={ limit={ @@ -87987,7 +86902,7 @@ return { [1]="hit_%_chance_to_gain_25%_damage_as_chaos" } }, - [3989]={ + [3930]={ [1]={ [1]={ limit={ @@ -88003,7 +86918,7 @@ return { [1]="hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos" } }, - [3990]={ + [3931]={ [1]={ [1]={ limit={ @@ -88019,7 +86934,7 @@ return { [1]="hit_%_chance_to_gain_50%_damage_as_chaos" } }, - [3991]={ + [3932]={ [1]={ [1]={ limit={ @@ -88035,7 +86950,7 @@ return { [1]="hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos" } }, - [3992]={ + [3933]={ [1]={ [1]={ limit={ @@ -88051,7 +86966,7 @@ return { [1]="hit_%_chance_to_gain_100%_damage_as_chaos" } }, - [3993]={ + [3934]={ [1]={ [1]={ limit={ @@ -88067,7 +86982,7 @@ return { [1]="hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos" } }, - [3994]={ + [3935]={ [1]={ [1]={ [1]={ @@ -88087,7 +87002,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect" } }, - [3995]={ + [3936]={ [1]={ [1]={ limit={ @@ -88103,7 +87018,7 @@ return { [1]="%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth" } }, - [3996]={ + [3937]={ [1]={ [1]={ limit={ @@ -88119,7 +87034,7 @@ return { [1]="resist_all_elements_%_with_200_or_more_strength" } }, - [3997]={ + [3938]={ [1]={ [1]={ limit={ @@ -88148,7 +87063,7 @@ return { [1]="projectile_attack_damage_+%_with_at_least_200_dex" } }, - [3998]={ + [3939]={ [1]={ [1]={ limit={ @@ -88177,7 +87092,7 @@ return { [1]="critical_strike_chance_+%_with_at_least_200_int" } }, - [3999]={ + [3940]={ [1]={ [1]={ limit={ @@ -88193,7 +87108,7 @@ return { [1]="local_physical_damage_%_to_convert_to_a_random_element" } }, - [4000]={ + [3941]={ [1]={ [1]={ limit={ @@ -88209,7 +87124,7 @@ return { [1]="local_hits_always_inflict_elemental_ailments" } }, - [4001]={ + [3942]={ [1]={ [1]={ limit={ @@ -88238,7 +87153,7 @@ return { [1]="local_hit_damage_+%_vs_ignited_enemies" } }, - [4002]={ + [3943]={ [1]={ [1]={ limit={ @@ -88267,7 +87182,7 @@ return { [1]="local_hit_damage_+%_vs_frozen_enemies" } }, - [4003]={ + [3944]={ [1]={ [1]={ limit={ @@ -88296,7 +87211,7 @@ return { [1]="local_hit_damage_+%_vs_shocked_enemies" } }, - [4004]={ + [3945]={ [1]={ [1]={ [1]={ @@ -88316,7 +87231,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield" } }, - [4005]={ + [3946]={ [1]={ [1]={ [1]={ @@ -88336,7 +87251,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield" } }, - [4006]={ + [3947]={ [1]={ [1]={ [1]={ @@ -88356,7 +87271,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield" } }, - [4007]={ + [3948]={ [1]={ [1]={ limit={ @@ -88385,7 +87300,7 @@ return { [1]="area_of_effect_+%_per_25_rampage_stacks" } }, - [4008]={ + [3949]={ [1]={ [1]={ limit={ @@ -88401,7 +87316,7 @@ return { [1]="add_frenzy_charge_every_50_rampage_stacks" } }, - [4009]={ + [3950]={ [1]={ [1]={ limit={ @@ -88410,14 +87325,14 @@ return { [2]="#" } }, - text="{0:+d} to Maximum Energy Shield per 5 Armour on Equipped Shield" + text="{0:+d} to Maximum Energy Shield per 5 Item Armour on Equipped Shield" } }, stats={ [1]="maximum_energy_shield_+_per_5_armour_on_shield" } }, - [4010]={ + [3951]={ [1]={ [1]={ limit={ @@ -88433,7 +87348,7 @@ return { [1]="physical_damage_reduction_rating_per_5_evasion_on_shield" } }, - [4011]={ + [3952]={ [1]={ [1]={ limit={ @@ -88442,14 +87357,14 @@ return { [2]="#" } }, - text="{0:+d} to Evasion Rating per 5 Energy Shield on Equipped Shield" + text="{0:+d} to Evasion Rating per 5 Item Energy Shield on Equipped Shield" } }, stats={ [1]="evasion_rating_+_per_5_maximum_energy_shield_on_shield" } }, - [4012]={ + [3953]={ [1]={ [1]={ limit={ @@ -88465,7 +87380,7 @@ return { [1]="maximum_spirit_charges_per_abyss_jewel_equipped" } }, - [4013]={ + [3954]={ [1]={ [1]={ limit={ @@ -88494,7 +87409,7 @@ return { [1]="travel_skill_cooldown_speed_+%" } }, - [4014]={ + [3955]={ [1]={ [1]={ limit={ @@ -88523,7 +87438,7 @@ return { [1]="gain_spirit_charge_every_x_ms" } }, - [4015]={ + [3956]={ [1]={ [1]={ limit={ @@ -88548,7 +87463,7 @@ return { [1]="gain_spirit_charge_on_kill_%_chance" } }, - [4016]={ + [3957]={ [1]={ [1]={ limit={ @@ -88564,7 +87479,7 @@ return { [1]="lose_spirit_charges_on_savage_hit_taken" } }, - [4017]={ + [3958]={ [1]={ [1]={ limit={ @@ -88580,7 +87495,7 @@ return { [1]="gain_%_life_when_spirit_charge_expires_or_consumed" } }, - [4018]={ + [3959]={ [1]={ [1]={ limit={ @@ -88596,7 +87511,7 @@ return { [1]="gain_%_es_when_spirit_charge_expires_or_consumed" } }, - [4019]={ + [3960]={ [1]={ [1]={ limit={ @@ -88612,7 +87527,7 @@ return { [1]="maximum_divine_charges" } }, - [4020]={ + [3961]={ [1]={ [1]={ limit={ @@ -88637,7 +87552,7 @@ return { [1]="gain_divine_charge_on_hit_%" } }, - [4021]={ + [3962]={ [1]={ [1]={ limit={ @@ -88666,7 +87581,7 @@ return { [1]="elemental_damage_+%_per_divine_charge" } }, - [4022]={ + [3963]={ [1]={ [1]={ [1]={ @@ -88686,7 +87601,7 @@ return { [1]="gain_divinity_ms_when_reaching_maximum_divine_charges" } }, - [4023]={ + [3964]={ [1]={ [1]={ limit={ @@ -88715,7 +87630,7 @@ return { [1]="travel_skills_cooldown_speed_+%_per_frenzy_charge" } }, - [4024]={ + [3965]={ [1]={ [1]={ limit={ @@ -88744,7 +87659,7 @@ return { [1]="elusive_effect_on_self_+%_per_power_charge" } }, - [4025]={ + [3966]={ [1]={ [1]={ limit={ @@ -88769,7 +87684,7 @@ return { [1]="lose_a_frenzy_charge_on_travel_skill_use_%_chance" } }, - [4026]={ + [3967]={ [1]={ [1]={ limit={ @@ -88794,7 +87709,7 @@ return { [1]="lose_a_power_charge_when_you_gain_elusive_%_chance" } }, - [4027]={ + [3968]={ [1]={ [1]={ limit={ @@ -88819,7 +87734,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [4028]={ + [3969]={ [1]={ [1]={ limit={ @@ -88848,7 +87763,7 @@ return { [1]="enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits" } }, - [4029]={ + [3970]={ [1]={ [1]={ limit={ @@ -88864,7 +87779,7 @@ return { [1]="local_display_gain_fragile_growth_each_second" } }, - [4030]={ + [3971]={ [1]={ [1]={ limit={ @@ -88880,7 +87795,7 @@ return { [1]="base_maximum_fragile_regrowth" } }, - [4031]={ + [3972]={ [1]={ [1]={ [1]={ @@ -88900,7 +87815,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_fragile_regrowth" } }, - [4032]={ + [3973]={ [1]={ [1]={ limit={ @@ -88929,7 +87844,7 @@ return { [1]="mana_regeneration_rate_+%_per_fragile_regrowth" } }, - [4033]={ + [3974]={ [1]={ [1]={ limit={ @@ -88945,7 +87860,7 @@ return { [1]="lose_all_fragile_regrowth_when_hit" } }, - [4034]={ + [3975]={ [1]={ [1]={ limit={ @@ -88961,7 +87876,7 @@ return { [1]="minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance" } }, - [4035]={ + [3976]={ [1]={ [1]={ limit={ @@ -88977,7 +87892,7 @@ return { [1]="chaos_damage_does_not_damage_minions_energy_shield_extra_hard" } }, - [4036]={ + [3977]={ [1]={ [1]={ limit={ @@ -89006,7 +87921,7 @@ return { [1]="minion_energy_shield_delay_-%" } }, - [4037]={ + [3978]={ [1]={ [1]={ limit={ @@ -89022,7 +87937,7 @@ return { [1]="minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield" } }, - [4038]={ + [3979]={ [1]={ [1]={ limit={ @@ -89038,7 +87953,7 @@ return { [1]="arrows_from_first_firing_point_always_pierce" } }, - [4039]={ + [3980]={ [1]={ [1]={ limit={ @@ -89054,7 +87969,7 @@ return { [1]="arrows_from_second_firing_point_fork" } }, - [4040]={ + [3981]={ [1]={ [1]={ limit={ @@ -89070,7 +87985,7 @@ return { [1]="arrows_from_third_firing_point_return" } }, - [4041]={ + [3982]={ [1]={ [1]={ limit={ @@ -89095,7 +88010,7 @@ return { [1]="arrows_from_fourth_firing_point_additional_chains" } }, - [4042]={ + [3983]={ [1]={ [1]={ limit={ @@ -89120,7 +88035,7 @@ return { [1]="local_withered_on_hit_for_2_seconds_%_chance" } }, - [4043]={ + [3984]={ [1]={ [1]={ limit={ @@ -89136,7 +88051,7 @@ return { [1]="summoned_skeleton_warriors_get_weapon_stats_in_main_hand" } }, - [4044]={ + [3985]={ [1]={ [1]={ limit={ @@ -89152,7 +88067,7 @@ return { [1]="local_grant_skeleton_warriors_triple_damage_on_hit" } }, - [4045]={ + [3986]={ [1]={ [1]={ limit={ @@ -89168,7 +88083,7 @@ return { [1]="mirage_archers_do_not_attach" } }, - [4046]={ + [3987]={ [1]={ [1]={ limit={ @@ -89184,7 +88099,7 @@ return { [1]="additional_max_mirage_archers" } }, - [4047]={ + [3988]={ [1]={ [1]={ limit={ @@ -89200,7 +88115,7 @@ return { [1]="cannot_summon_mirage_archer_if_near_mirage_archer_radius" } }, - [4048]={ + [3989]={ [1]={ [1]={ limit={ @@ -89229,7 +88144,7 @@ return { [1]="damage_+%_per_fire_adaptation" } }, - [4049]={ + [3990]={ [1]={ [1]={ limit={ @@ -89258,7 +88173,7 @@ return { [1]="attack_and_cast_speed_+%_per_cold_adaptation" } }, - [4050]={ + [3991]={ [1]={ [1]={ limit={ @@ -89287,64 +88202,7 @@ return { [1]="critical_strike_chance_+%_per_lightning_adaptation" } }, - [4051]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Magic Utility Flasks cannot be Used" - } - }, - stats={ - [1]="magic_utility_flasks_cannot_be_used" - } - }, - [4052]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Leftmost {0} Magic Utility Flask constantly applies its Flask Effect to you" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Leftmost {0} Magic Utility Flasks constantly apply their Flask Effects to you" - } - }, - stats={ - [1]="num_magic_utility_flasks_always_apply" - } - }, - [4053]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Magic Utility Flask Effects cannot be removed" - } - }, - stats={ - [1]="magic_utility_flasks_cannot_be_removed" - } - }, - [4054]={ + [3992]={ [1]={ [1]={ limit={ @@ -89369,7 +88227,7 @@ return { [1]="gain_x_grasping_vines_when_you_take_a_critical_strike" } }, - [4055]={ + [3993]={ [1]={ [1]={ limit={ @@ -89398,7 +88256,7 @@ return { [1]="local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms" } }, - [4056]={ + [3994]={ [1]={ [1]={ limit={ @@ -89423,7 +88281,7 @@ return { [1]="unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines" } }, - [4057]={ + [3995]={ [1]={ [1]={ limit={ @@ -89452,7 +88310,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_cursed_enemy" } }, - [4058]={ + [3996]={ [1]={ [1]={ limit={ @@ -89481,7 +88339,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_poisoned_enemy" } }, - [4059]={ + [3997]={ [1]={ [1]={ limit={ @@ -89506,7 +88364,7 @@ return { [1]="pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask" } }, - [4060]={ + [3998]={ [1]={ [1]={ limit={ @@ -89535,7 +88393,7 @@ return { [1]="pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask" } }, - [4061]={ + [3999]={ [1]={ [1]={ limit={ @@ -89551,7 +88409,7 @@ return { [1]="pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask" } }, - [4062]={ + [4000]={ [1]={ [1]={ limit={ @@ -89567,7 +88425,7 @@ return { [1]="pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask" } }, - [4063]={ + [4001]={ [1]={ [1]={ limit={ @@ -89583,7 +88441,7 @@ return { [1]="display_ailment_bearer_charge_interval" } }, - [4064]={ + [4002]={ [1]={ [1]={ [1]={ @@ -89629,7 +88487,7 @@ return { [1]="dodge_roll_travel_distance_+_if_not_dodge_rolled_recently" } }, - [4065]={ + [4003]={ [1]={ [1]={ [1]={ @@ -89675,7 +88533,7 @@ return { [1]="dodge_roll_travel_distance_+_if_dodge_rolled_recently" } }, - [4066]={ + [4004]={ [1]={ [1]={ limit={ @@ -89700,7 +88558,23 @@ return { [1]="unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence" } }, - [4067]={ + [4005]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Withered you inflict has infinite Duration" + } + }, + stats={ + [1]="wither_never_expires" + } + }, + [4006]={ [1]={ [1]={ limit={ @@ -89716,7 +88590,7 @@ return { [1]="chill_minimum_slow_%" } }, - [4068]={ + [4007]={ [1]={ [1]={ limit={ @@ -89732,7 +88606,7 @@ return { [1]="shock_minimum_damage_taken_increase_%" } }, - [4069]={ + [4008]={ [1]={ [1]={ limit={ @@ -89748,7 +88622,7 @@ return { [1]="gain_convergence_on_hitting_unique_enemy" } }, - [4070]={ + [4009]={ [1]={ [1]={ limit={ @@ -89777,7 +88651,7 @@ return { [1]="area_of_effect_+%_while_you_do_not_have_convergence" } }, - [4071]={ + [4010]={ [1]={ [1]={ limit={ @@ -89793,7 +88667,7 @@ return { [1]="X_armour_if_you_have_blocked_recently" } }, - [4072]={ + [4011]={ [1]={ [1]={ limit={ @@ -89809,7 +88683,7 @@ return { [1]="X_armour_per_active_totem" } }, - [4073]={ + [4012]={ [1]={ [1]={ limit={ @@ -89825,7 +88699,7 @@ return { [1]="X_to_armour_per_2_strength" } }, - [4074]={ + [4013]={ [1]={ [1]={ limit={ @@ -89854,7 +88728,7 @@ return { [1]="local_jewel_expansion_passive_node_count" } }, - [4075]={ + [4014]={ [1]={ [1]={ limit={ @@ -89883,7 +88757,7 @@ return { [1]="absolution_cast_speed_+%" } }, - [4076]={ + [4015]={ [1]={ [1]={ limit={ @@ -89912,7 +88786,7 @@ return { [1]="absolution_duration_+%" } }, - [4077]={ + [4016]={ [1]={ [1]={ limit={ @@ -89941,7 +88815,175 @@ return { [1]="absolution_minion_area_of_effect_+%" } }, - [4078]={ + [4017]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Abyssal Wasting also applies {0:+d}% to Cold Resistance" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Abyssal Wasting also applies {0:-d}% to Cold Resistance" + } + }, + stats={ + [1]="abyssal_wasting_cold_resistance_%" + } + }, + [4018]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Abyssal Wasting you inflict" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Abyssal Wasting you inflict" + } + }, + stats={ + [1]="abyssal_wasting_effect_+%" + } + }, + [4019]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Abyssal Wasting also applies {0:+d}% to Fire Resistance" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Abyssal Wasting also applies {0:-d}% to Fire Resistance" + } + }, + stats={ + [1]="abyssal_wasting_fire_resistance_%" + } + }, + [4020]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Abyssal Wasting you inflict has Infinite Duration" + } + }, + stats={ + [1]="abyssal_wasting_infinite_duration" + } + }, + [4021]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Life Leeched from targets affected by Abyssal Wasting is Instant" + } + }, + stats={ + [1]="abyssal_wasting_instant_life_leech_%" + } + }, + [4022]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Mana Leeched from targets affected by Abyssal Wasting is Instant" + } + }, + stats={ + [1]="abyssal_wasting_instant_mana_leech_%" + } + }, + [4023]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Abyssal Wasting also applies {0:+d}% to Lightning Resistance" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Abyssal Wasting also applies {0:-d}% to Lightning Resistance" + } + }, + stats={ + [1]="abyssal_wasting_lightning_resistance_%" + } + }, + [4024]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflict Abyssal Wasting on Hit" + } + }, + stats={ + [1]="abyssal_wasting_on_hit" + } + }, + [4025]={ [1]={ [1]={ limit={ @@ -89966,7 +89008,7 @@ return { [1]="accuracy_rating_+%_equal_to_%_attack_critical_strike_chance" } }, - [4079]={ + [4026]={ [1]={ [1]={ limit={ @@ -89982,7 +89024,94 @@ return { [1]="accuracy_rating_+%_final_at_max_distance_scaled" } }, - [4080]={ + [4027]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Accuracy Rating per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Accuracy Rating per 10 Tribute" + } + }, + stats={ + [1]="accuracy_rating_+%_per_10_tribute" + } + }, + [4028]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Accuracy Rating per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Accuracy Rating per 25 Tribute" + } + }, + stats={ + [1]="accuracy_rating_+%_per_25_tribute" + } + }, + [4029]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Accuracy Rating against Enemies affected by Abyssal Wasting" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Accuracy Rating against Enemies affected by Abyssal Wasting" + } + }, + stats={ + [1]="accuracy_rating_+%_vs_abyssal_wasting_afflicted" + } + }, + [4030]={ [1]={ [1]={ limit={ @@ -90011,7 +89140,7 @@ return { [1]="accuracy_rating_+%_vs_enemies_in_close_range" } }, - [4081]={ + [4031]={ [1]={ [1]={ limit={ @@ -90040,7 +89169,7 @@ return { [1]="accuracy_rating_+%_vs_rare_or_unique_enemy" } }, - [4082]={ + [4032]={ [1]={ [1]={ limit={ @@ -90069,7 +89198,81 @@ return { [1]="accuracy_rating_+%_vs_unique_enemies" } }, - [4083]={ + [4033]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Accuracy Rating while moving" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Accuracy Rating while moving" + } + }, + stats={ + [1]="accuracy_rating_+%_while_moving" + } + }, + [4034]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Accuracy Rating while Surrounded" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Accuracy Rating while Surrounded" + } + }, + stats={ + [1]="accuracy_rating_+%_while_surrounded" + } + }, + [4035]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet" + } + }, + stats={ + [1]="accuracy_rating_+_per_evasion_rating_on_helmet" + } + }, + [4036]={ [1]={ [1]={ limit={ @@ -90098,7 +89301,7 @@ return { [1]="accuracy_rating_against_marked_enemies_+%" } }, - [4084]={ + [4037]={ [1]={ [1]={ limit={ @@ -90114,7 +89317,7 @@ return { [1]="accuracy_rating_is_doubled" } }, - [4085]={ + [4038]={ [1]={ [1]={ limit={ @@ -90130,7 +89333,7 @@ return { [1]="accuracy_rating_per_level" } }, - [4086]={ + [4039]={ [1]={ [1]={ limit={ @@ -90146,7 +89349,7 @@ return { [1]="accuracy_rating_+_per_frenzy_charge" } }, - [4087]={ + [4040]={ [1]={ [1]={ limit={ @@ -90162,7 +89365,7 @@ return { [1]="accuracy_rating_+_per_green_socket_on_bow" } }, - [4088]={ + [4041]={ [1]={ [1]={ limit={ @@ -90191,7 +89394,7 @@ return { [1]="accuracy_rating_+%_during_onslaught" } }, - [4089]={ + [4042]={ [1]={ [1]={ limit={ @@ -90220,7 +89423,7 @@ return { [1]="accuracy_rating_+%_if_enemy_not_killed_recently" } }, - [4090]={ + [4043]={ [1]={ [1]={ limit={ @@ -90249,7 +89452,7 @@ return { [1]="accuracy_rating_+%_if_have_crit_in_past_8_seconds" } }, - [4091]={ + [4044]={ [1]={ [1]={ limit={ @@ -90265,7 +89468,7 @@ return { [1]="accuracy_rating_vs_bleeding_enemies" } }, - [4092]={ + [4045]={ [1]={ [1]={ limit={ @@ -90281,7 +89484,7 @@ return { [1]="accuracy_rating_while_at_maximum_frenzy_charges" } }, - [4093]={ + [4046]={ [1]={ [1]={ limit={ @@ -90297,7 +89500,7 @@ return { [1]="action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds" } }, - [4094]={ + [4047]={ [1]={ [1]={ limit={ @@ -90330,7 +89533,100 @@ return { [1]="action_speed_-%" } }, - [4095]={ + [4048]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Parry Range" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Parry Range" + } + }, + stats={ + [1]="active_block_maximum_distance_+%" + } + }, + [4049]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Generates {0}% of Monster Power as Glory for this Skill on Fully Breaking Armour" + } + }, + stats={ + [1]="active_skill_generates_mp_%_glory_per_armour_break" + } + }, + [4050]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Generates {0}% of Monster Power as Glory for this Skill on Hitting with an Attack" + } + }, + stats={ + [1]="active_skill_generates_mp_%_glory_per_attack_hit" + } + }, + [4051]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Generates {0}% of Monster Power as Glory for\nthis Skill on Heavy Stunning an enemy" + } + }, + stats={ + [1]="active_skill_generates_mp_%_glory_per_heavy_stun" + } + }, + [4052]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Generates {0}% of Monster Power as Glory for\nthis Skill on Igniting an enemy" + } + }, + stats={ + [1]="active_skill_generates_mp_%_glory_per_ignite" + } + }, + [4053]={ [1]={ [1]={ limit={ @@ -90359,7 +89655,36 @@ return { [1]="active_skill_impale_magnitude_+%_final" } }, - [4096]={ + [4054]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Poison inflicted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Poison inflicted" + } + }, + stats={ + [1]="active_skill_poison_effect_+%_final" + } + }, + [4055]={ [1]={ [1]={ limit={ @@ -90368,14 +89693,14 @@ return { [2]="#" } }, - text="Gain additional Stun Threshold equal to {0}% of Armour on Equipped Items" + text="Gain additional Stun Threshold equal to {0}% of Item Armour on Equipped Armour Items" } }, stats={ [1]="add_%_base_armour_on_equipment_to_stun_threshold" } }, - [4097]={ + [4056]={ [1]={ [1]={ limit={ @@ -90391,7 +89716,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance_while_dual_wielding" } }, - [4098]={ + [4057]={ [1]={ [1]={ limit={ @@ -90407,7 +89732,7 @@ return { [1]="add_frenzy_charge_when_hit_%" } }, - [4099]={ + [4058]={ [1]={ [1]={ limit={ @@ -90432,7 +89757,7 @@ return { [1]="add_power_charge_on_hit_while_poisoned_%" } }, - [4100]={ + [4059]={ [1]={ [1]={ limit={ @@ -90457,7 +89782,48 @@ return { [1]="add_x_grasping_vines_on_hit" } }, - [4101]={ + [4060]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=-1, + [2]=1 + } + }, + text="Non-Instant skills with Cooldowns have {0:+d} Cooldown Use if you have at least 100 Tribute" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Non-Instant skills with Cooldowns have {0:+d} Cooldown Uses if you have at least 100 Tribute" + } + }, + stats={ + [1]="added_cooldown_count_if_not_instant_and_you_have_at_least_100_tribute" + } + }, + [4061]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Cold Thorns Damage equal to {0}% of your maximum Mana" + } + }, + stats={ + [1]="added_thorns_cold_base_damage_%_of_maximum_mana" + } + }, + [4062]={ [1]={ [1]={ limit={ @@ -90473,7 +89839,7 @@ return { [1]="additional_attack_block_%_if_used_shield_skill_recently" } }, - [4102]={ + [4063]={ [1]={ [1]={ limit={ @@ -90489,7 +89855,7 @@ return { [1]="additional_attack_block_%_per_endurance_charge" } }, - [4103]={ + [4064]={ [1]={ [1]={ limit={ @@ -90505,7 +89871,7 @@ return { [1]="additional_attack_block_%_per_frenzy_charge" } }, - [4104]={ + [4065]={ [1]={ [1]={ limit={ @@ -90521,7 +89887,7 @@ return { [1]="additional_attack_block_%_per_power_charge" } }, - [4105]={ + [4066]={ [1]={ [1]={ limit={ @@ -90537,7 +89903,7 @@ return { [1]="additional_attack_block_%_per_summoned_skeleton" } }, - [4106]={ + [4067]={ [1]={ [1]={ limit={ @@ -90553,7 +89919,7 @@ return { [1]="additional_ballista_totems_allowed" } }, - [4107]={ + [4068]={ [1]={ [1]={ limit={ @@ -90578,7 +89944,7 @@ return { [1]="additional_beam_only_chains" } }, - [4108]={ + [4069]={ [1]={ [1]={ limit={ @@ -90594,7 +89960,7 @@ return { [1]="additional_block_chance_%_while_holding_focus" } }, - [4109]={ + [4070]={ [1]={ [1]={ limit={ @@ -90623,7 +89989,7 @@ return { [1]="additional_block_%_against_frontal_attacks" } }, - [4110]={ + [4071]={ [1]={ [1]={ limit={ @@ -90639,7 +90005,7 @@ return { [1]="additional_block_%_if_you_have_crit_recently" } }, - [4111]={ + [4072]={ [1]={ [1]={ limit={ @@ -90655,7 +90021,7 @@ return { [1]="additional_block_%_per_endurance_charge" } }, - [4112]={ + [4073]={ [1]={ [1]={ limit={ @@ -90671,7 +90037,7 @@ return { [1]="additional_block_%_per_hit_you_have_blocked_in_past_10_seconds" } }, - [4113]={ + [4074]={ [1]={ [1]={ limit={ @@ -90687,7 +90053,7 @@ return { [1]="additional_block_%_while_not_cursed" } }, - [4114]={ + [4075]={ [1]={ [1]={ limit={ @@ -90703,7 +90069,7 @@ return { [1]="additional_block_%_while_on_consecrated_ground" } }, - [4115]={ + [4076]={ [1]={ [1]={ limit={ @@ -90719,7 +90085,32 @@ return { [1]="additional_block_%_with_5_or_more_nearby_enemies" } }, - [4116]={ + [4077]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to build an additional Combo on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Build an additional Combo on Hit" + } + }, + stats={ + [1]="additional_combo_gain_chance_%" + } + }, + [4078]={ [1]={ [1]={ [1]={ @@ -90739,7 +90130,7 @@ return { [1]="additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad" } }, - [4117]={ + [4079]={ [1]={ [1]={ [1]={ @@ -90759,7 +90150,7 @@ return { [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [4118]={ + [4080]={ [1]={ [1]={ [1]={ @@ -90779,7 +90170,7 @@ return { [1]="additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%" } }, - [4119]={ + [4081]={ [1]={ [1]={ [1]={ @@ -90799,7 +90190,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_hatred" } }, - [4120]={ + [4082]={ [1]={ [1]={ [1]={ @@ -90819,7 +90210,7 @@ return { [1]="additional_critical_strike_chance_permyriad_with_herald_skills" } }, - [4121]={ + [4083]={ [1]={ [1]={ limit={ @@ -90828,14 +90219,14 @@ return { [2]="#" } }, - text="{0:+d}% chance to Deflect Attack Damage" + text="{0:+d} to Deflection Rating" } }, stats={ - [1]="additional_deflect_chance_%" + [1]="additional_deflection_rating" } }, - [4122]={ + [4084]={ [1]={ [1]={ limit={ @@ -90851,7 +90242,32 @@ return { [1]="additional_dexterity_per_allocated_mastery" } }, - [4123]={ + [4085]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="When collecting an Elemental Infusion, gain an additional Elemental Infusion of the same type" + } + }, + stats={ + [1]="additional_infusion_gain_chance_%" + } + }, + [4086]={ [1]={ [1]={ limit={ @@ -90867,7 +90283,7 @@ return { [1]="additional_intelligence_per_allocated_mastery" } }, - [4124]={ + [4087]={ [1]={ [1]={ limit={ @@ -90892,7 +90308,7 @@ return { [1]="additional_max_number_of_dominated_magic_monsters" } }, - [4125]={ + [4088]={ [1]={ [1]={ limit={ @@ -90917,7 +90333,7 @@ return { [1]="additional_max_number_of_dominated_rare_monsters" } }, - [4126]={ + [4089]={ [1]={ [1]={ limit={ @@ -90926,14 +90342,14 @@ return { [2]="#" } }, - text="{0:+d}% to all maximum Elemental Resistances if you have Killed a Cursed Enemy Recently" + text="{0:+d}% to all Maximum Elemental Resistances if you have at\nleast 5 Red, Green and Blue Support Gems Socketed" } }, stats={ - [1]="additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently" + [1]="additional_maximum_all_elemental_resistances_%_if_at_least_5_red_green_blue_supports_socketed" } }, - [4127]={ + [4090]={ [1]={ [1]={ limit={ @@ -90942,14 +90358,14 @@ return { [2]="#" } }, - text="{0:+d}% to all maximum Elemental Resistances if you've Suppressed Spell Damage Recently" + text="{0:+d}% to all maximum Elemental Resistances if you have Killed a Cursed Enemy Recently" } }, stats={ - [1]="additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently" + [1]="additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently" } }, - [4128]={ + [4091]={ [1]={ [1]={ limit={ @@ -90965,7 +90381,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements" } }, - [4129]={ + [4092]={ [1]={ [1]={ limit={ @@ -90981,7 +90397,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana" } }, - [4130]={ + [4093]={ [1]={ [1]={ limit={ @@ -90997,7 +90413,23 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour" } }, - [4131]={ + [4094]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to all maximum Resistances if you have at least 100 Tribute" + } + }, + stats={ + [1]="additional_maximum_all_resistances_%_if_you_have_at_least_100_tribute" + } + }, + [4095]={ [1]={ [1]={ limit={ @@ -91013,7 +90445,7 @@ return { [1]="additional_maximum_all_resistances_%_while_poisoned" } }, - [4132]={ + [4096]={ [1]={ [1]={ limit={ @@ -91029,7 +90461,7 @@ return { [1]="additional_maximum_all_resistances_%_at_devotion_threshold" } }, - [4133]={ + [4097]={ [1]={ [1]={ limit={ @@ -91045,7 +90477,7 @@ return { [1]="additional_maximum_all_resistances_%_with_no_endurance_charges" } }, - [4134]={ + [4098]={ [1]={ [1]={ limit={ @@ -91070,7 +90502,7 @@ return { [1]="additional_number_of_brands_to_create" } }, - [4135]={ + [4099]={ [1]={ [1]={ [1]={ @@ -91090,7 +90522,7 @@ return { [1]="additional_off_hand_critical_strike_chance_permyriad" } }, - [4136]={ + [4100]={ [1]={ [1]={ [1]={ @@ -91110,23 +90542,7 @@ return { [1]="additional_off_hand_critical_strike_chance_while_dual_wielding" } }, - [4137]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Evade Attack Hits if you've\ntaken a Savage Hit Recently" - } - }, - stats={ - [1]="additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently" - } - }, - [4138]={ + [4101]={ [1]={ [1]={ limit={ @@ -91142,7 +90558,7 @@ return { [1]="additional_physical_damage_reduction_if_warcried_in_past_8_seconds" } }, - [4139]={ + [4102]={ [1]={ [1]={ limit={ @@ -91158,7 +90574,7 @@ return { [1]="additional_physical_damage_reduction_%_during_focus" } }, - [4140]={ + [4103]={ [1]={ [1]={ limit={ @@ -91174,7 +90590,7 @@ return { [1]="additional_physical_damage_reduction_%_during_life_or_mana_flask_effect" } }, - [4141]={ + [4104]={ [1]={ [1]={ limit={ @@ -91190,7 +90606,7 @@ return { [1]="additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently" } }, - [4142]={ + [4105]={ [1]={ [1]={ limit={ @@ -91206,7 +90622,7 @@ return { [1]="additional_physical_damage_reduction_%_per_keystone" } }, - [4143]={ + [4106]={ [1]={ [1]={ limit={ @@ -91222,7 +90638,7 @@ return { [1]="additional_physical_damage_reduction_%_per_minion_up_to_10%" } }, - [4144]={ + [4107]={ [1]={ [1]={ limit={ @@ -91238,7 +90654,7 @@ return { [1]="additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity" } }, - [4145]={ + [4108]={ [1]={ [1]={ limit={ @@ -91254,7 +90670,7 @@ return { [1]="additional_physical_damage_reduction_%_vs_abyssal_monsters" } }, - [4146]={ + [4109]={ [1]={ [1]={ limit={ @@ -91270,7 +90686,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_determination" } }, - [4147]={ + [4110]={ [1]={ [1]={ limit={ @@ -91286,7 +90702,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_guard_skill" } }, - [4148]={ + [4111]={ [1]={ [1]={ limit={ @@ -91302,7 +90718,7 @@ return { [1]="additional_physical_damage_reduction_%_while_bleeding" } }, - [4149]={ + [4112]={ [1]={ [1]={ limit={ @@ -91318,7 +90734,7 @@ return { [1]="additional_physical_damage_reduction_%_while_channelling" } }, - [4150]={ + [4113]={ [1]={ [1]={ limit={ @@ -91334,7 +90750,7 @@ return { [1]="additional_physical_damage_reduction_%_while_frozen" } }, - [4151]={ + [4114]={ [1]={ [1]={ limit={ @@ -91350,55 +90766,7 @@ return { [1]="additional_physical_damage_reduction_%_while_moving" } }, - [4152]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage per Power Charge" - } - }, - stats={ - [1]="additional_spell_block_%_per_power_charge" - } - }, - [4153]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{:+d}% Chance to Block Spell Damage if you have not Blocked Recently" - } - }, - stats={ - [1]="additional_spell_block_%_if_havent_blocked_recently" - } - }, - [4154]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while Cursed" - } - }, - stats={ - [1]="additional_spell_block_%_while_cursed" - } - }, - [4155]={ + [4115]={ [1]={ [1]={ limit={ @@ -91414,32 +90782,27 @@ return { [1]="additional_strength_per_allocated_mastery" } }, - [4156]={ + [4116]={ [1]={ [1]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } + [1]={ + k="divide_by_one_hundred", + v=1 }, - text="Increases and Reductions to Armour also apply to Energy Shield Recharge Rate" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Increases and Reductions to Armour also apply to Energy Shield\nRecharge Rate at {0}% of their value" + text="{0:+d}% to Thorns Critical Hit Chance per 50 Tribute" } }, stats={ - [1]="additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value" + [1]="additional_thorns_critical_strike_chance_permyriad_per_50_tribute" } }, - [4157]={ + [4117]={ [1]={ [1]={ limit={ @@ -91455,7 +90818,7 @@ return { [1]="additive_cast_speed_modifiers_apply_to_trap_throwing_speed" } }, - [4158]={ + [4118]={ [1]={ [1]={ limit={ @@ -91471,7 +90834,7 @@ return { [1]="additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value" } }, - [4159]={ + [4119]={ [1]={ [1]={ limit={ @@ -91487,7 +90850,7 @@ return { [1]="additive_life_modifiers_apply_to_attack_damage_at_30%_value" } }, - [4160]={ + [4120]={ [1]={ [1]={ limit={ @@ -91503,7 +90866,7 @@ return { [1]="additive_mana_modifiers_apply_to_damage_at_30%_value" } }, - [4161]={ + [4121]={ [1]={ [1]={ limit={ @@ -91519,7 +90882,7 @@ return { [1]="additive_mana_modifiers_apply_to_shock_effect_at_30%_value" } }, - [4162]={ + [4122]={ [1]={ [1]={ limit={ @@ -91535,7 +90898,23 @@ return { [1]="additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [4163]={ + [4123]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate" + } + }, + stats={ + [1]="additive_modifiers_to_life_regeneration_also_apply_to_mana_regeneration_rate" + } + }, + [4124]={ [1]={ [1]={ limit={ @@ -91551,7 +90930,7 @@ return { [1]="additive_modifiers_to_mana_regeneration_also_apply_to_energy_shield_recharge_rate" } }, - [4164]={ + [4125]={ [1]={ [1]={ limit={ @@ -91580,7 +90959,7 @@ return { [1]="aftershock_area_of_effect_+%" } }, - [4165]={ + [4126]={ [1]={ [1]={ [1]={ @@ -91613,7 +90992,7 @@ return { [1]="aggravate_bleeding_older_than_ms_on_hit" } }, - [4166]={ + [4127]={ [1]={ [1]={ limit={ @@ -91638,7 +91017,7 @@ return { [1]="aggravate_bleeding_on_attack_crit_chance_%" } }, - [4167]={ + [4128]={ [1]={ [1]={ limit={ @@ -91654,7 +91033,7 @@ return { [1]="base_aggravate_bleeding_on_attack_hit_chance_%" } }, - [4168]={ + [4129]={ [1]={ [1]={ limit={ @@ -91670,7 +91049,7 @@ return { [1]="aggravate_bleeding_on_attack_knockback_chance_%" } }, - [4169]={ + [4130]={ [1]={ [1]={ limit={ @@ -91686,7 +91065,7 @@ return { [1]="aggravate_bleeding_on_enemies_when_they_enter_your_presence" } }, - [4170]={ + [4131]={ [1]={ [1]={ limit={ @@ -91702,7 +91081,7 @@ return { [1]="aggravate_bleeding_on_exerted_attack_hit_chance_%" } }, - [4171]={ + [4132]={ [1]={ [1]={ limit={ @@ -91718,7 +91097,7 @@ return { [1]="aggravate_bleeding_when_inflicted_vs_cursed_enemy" } }, - [4172]={ + [4133]={ [1]={ [1]={ limit={ @@ -91734,7 +91113,23 @@ return { [1]="aggravate_bleeding_when_inflicted_vs_enemies_on_jagged_ground_chance_%" } }, - [4173]={ + [4134]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bleeding you inflict on Pinned Enemies is Aggravated" + } + }, + stats={ + [1]="aggravate_bleeding_when_inflicted_vs_pinned_enemy" + } + }, + [4135]={ [1]={ [1]={ limit={ @@ -91750,7 +91145,7 @@ return { [1]="aggravate_inflicted_bleeding" } }, - [4174]={ + [4136]={ [1]={ [1]={ limit={ @@ -91766,7 +91161,7 @@ return { [1]="local_aggravating_bleeds_also_causes_you_to_aggravate_ignites" } }, - [4175]={ + [4137]={ [1]={ [1]={ limit={ @@ -91795,7 +91190,7 @@ return { [1]="agony_crawler_damage_+%" } }, - [4176]={ + [4138]={ [1]={ [1]={ limit={ @@ -91811,7 +91206,7 @@ return { [1]="ailment_bearer_always_freeze_shock_ignite" } }, - [4177]={ + [4139]={ [1]={ [1]={ limit={ @@ -91840,7 +91235,65 @@ return { [1]="ailment_bearer_elemental_damage_+%_final" } }, - [4178]={ + [4140]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to inflict Ailments against Enemies affected by Abyssal Wasting" + } + }, + stats={ + [1]="ailment_chance_+%_vs_abyssal_wasting_afflicted" + } + }, + [4141]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to inflict Ailments against Enemies with Exposure" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to inflict Ailments against Enemies with Exposure" + } + }, + stats={ + [1]="ailment_chance_+%_vs_exposed" + } + }, + [4142]={ [1]={ [1]={ limit={ @@ -91869,7 +91322,7 @@ return { [1]="ailment_chance_+%_vs_rare_or_unique_enemy" } }, - [4179]={ + [4143]={ [1]={ [1]={ limit={ @@ -91898,7 +91351,94 @@ return { [1]="ailment_chance_+%" } }, - [4180]={ + [4144]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Duration of Ailments on Beasts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Duration of Ailments on Beasts" + } + }, + stats={ + [1]="ailment_duration_+%_vs_beasts" + } + }, + [4145]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased duration of Ailments you inflict against Cursed Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced duration of Ailments you inflict against Cursed Enemies" + } + }, + stats={ + [1]="ailment_duration_+%_vs_cursed_enemy" + } + }, + [4146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Duration of Ailments against Enemies with Exposure" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Duration of Ailments against Enemies with Exposure" + } + }, + stats={ + [1]="ailment_duration_+%_vs_exposed" + } + }, + [4147]={ [1]={ [1]={ limit={ @@ -91927,7 +91467,36 @@ return { [1]="ailment_effect_+%" } }, - [4181]={ + [4148]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Ailments you inflict against Marked Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Ailments you inflict against Marked Enemies" + } + }, + stats={ + [1]="ailment_magnitude_+%_vs_marked_enemies" + } + }, + [4149]={ [1]={ [1]={ limit={ @@ -91943,7 +91512,7 @@ return { [1]="ailment_threshold_+_from_lowest_of_base_boots_evasion_rating_and_armour" } }, - [4182]={ + [4150]={ [1]={ [1]={ limit={ @@ -91959,7 +91528,7 @@ return { [1]="ailment_threshold_+_per_dexterity" } }, - [4183]={ + [4151]={ [1]={ [1]={ limit={ @@ -91975,7 +91544,7 @@ return { [1]="ailment_threshold_increased_by_overcapped_chaos_resistance" } }, - [4184]={ + [4152]={ [1]={ [1]={ limit={ @@ -91991,7 +91560,7 @@ return { [1]="ailment_threshold_+" } }, - [4185]={ + [4153]={ [1]={ [1]={ limit={ @@ -92007,7 +91576,7 @@ return { [1]="ailment_threshold_+_from_%_maximum_energy_shield" } }, - [4186]={ + [4154]={ [1]={ [1]={ limit={ @@ -92036,7 +91605,7 @@ return { [1]="ailment_threshold_+%" } }, - [4187]={ + [4155]={ [1]={ [1]={ limit={ @@ -92065,7 +91634,7 @@ return { [1]="alchemists_mark_curse_effect_+%" } }, - [4188]={ + [4156]={ [1]={ [1]={ limit={ @@ -92081,7 +91650,7 @@ return { [1]="all_attacks_count_as_exerted" } }, - [4189]={ + [4157]={ [1]={ [1]={ limit={ @@ -92097,7 +91666,7 @@ return { [1]="all_damage_can_electrocute" } }, - [4190]={ + [4158]={ [1]={ [1]={ limit={ @@ -92113,7 +91682,7 @@ return { [1]="all_damage_can_freeze" } }, - [4191]={ + [4159]={ [1]={ [1]={ limit={ @@ -92122,14 +91691,14 @@ return { [2]="#" } }, - text="All Damage from Hits Contributes to Ignite Chance and Magnitude" + text="All Damage from Hits Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="all_damage_can_ignite" } }, - [4192]={ + [4160]={ [1]={ [1]={ limit={ @@ -92145,7 +91714,7 @@ return { [1]="all_damage_can_poison" } }, - [4193]={ + [4161]={ [1]={ [1]={ limit={ @@ -92161,7 +91730,7 @@ return { [1]="all_damage_can_shock" } }, - [4194]={ + [4162]={ [1]={ [1]={ limit={ @@ -92170,14 +91739,14 @@ return { [2]="#" } }, - text="While not on Low Infernal Flame, all Damage from you and\nyour Minions contributes to Ignite Chance and Magnitude" + text="While not on Low Infernal Flame, all Damage from you and\nyour Minions contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame" } }, - [4195]={ + [4163]={ [1]={ [1]={ limit={ @@ -92193,7 +91762,7 @@ return { [1]="all_damage_taken_%_as_chaos_damage" } }, - [4196]={ + [4164]={ [1]={ [1]={ limit={ @@ -92209,7 +91778,7 @@ return { [1]="all_damage_taken_can_ignite" } }, - [4197]={ + [4165]={ [1]={ [1]={ limit={ @@ -92225,7 +91794,7 @@ return { [1]="all_damage_taken_can_sap" } }, - [4198]={ + [4166]={ [1]={ [1]={ limit={ @@ -92241,7 +91810,7 @@ return { [1]="all_damage_taken_can_scorch" } }, - [4199]={ + [4167]={ [1]={ [1]={ limit={ @@ -92257,7 +91826,7 @@ return { [1]="all_damage_taken_chills_you_while_bleeding" } }, - [4200]={ + [4168]={ [1]={ [1]={ limit={ @@ -92273,7 +91842,7 @@ return { [1]="all_damage_taken_chills_you_while_poisoned" } }, - [4201]={ + [4169]={ [1]={ [1]={ limit={ @@ -92289,7 +91858,7 @@ return { [1]="all_damage_to_bleeding_enemies_contributes_to_chill" } }, - [4202]={ + [4170]={ [1]={ [1]={ limit={ @@ -92305,7 +91874,32 @@ return { [1]="all_damage_to_poisoned_enemies_contributes_to_chill" } }, - [4203]={ + [4171]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=40, + [2]=40 + } + }, + text="Inflict Elemental Exposure on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by {0}%" + } + }, + stats={ + [1]="all_exposure_on_hit_magnitude" + } + }, + [4172]={ [1]={ [1]={ limit={ @@ -92321,7 +91915,7 @@ return { [1]="all_projectile_damage_can_pin" } }, - [4204]={ + [4173]={ [1]={ [1]={ limit={ @@ -92337,7 +91931,7 @@ return { [1]="all_skill_gem_level_+" } }, - [4205]={ + [4174]={ [1]={ [1]={ limit={ @@ -92353,7 +91947,7 @@ return { [1]="all_skill_gem_quality_+" } }, - [4206]={ + [4175]={ [1]={ [1]={ limit={ @@ -92369,7 +91963,23 @@ return { [1]="allies_in_presence_damage_%_to_gain_as_fire" } }, - [4207]={ + [4176]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Allies in your Presence have {0}% increased Glory generation" + } + }, + stats={ + [1]="allies_in_presence_glory_generation_+%" + } + }, + [4177]={ [1]={ [1]={ limit={ @@ -92385,7 +91995,7 @@ return { [1]="allies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [4208]={ + [4178]={ [1]={ [1]={ limit={ @@ -92401,7 +92011,7 @@ return { [1]="allow_hellscaping_unique_items" } }, - [4209]={ + [4179]={ [1]={ [1]={ limit={ @@ -92417,7 +92027,7 @@ return { [1]="allow_multiple_offerings" } }, - [4210]={ + [4180]={ [1]={ [1]={ limit={ @@ -92433,7 +92043,7 @@ return { [1]="always_frostburn_while_affected_by_hatred" } }, - [4211]={ + [4181]={ [1]={ [1]={ limit={ @@ -92449,7 +92059,7 @@ return { [1]="always_ignite_while_burning" } }, - [4212]={ + [4182]={ [1]={ [1]={ limit={ @@ -92465,7 +92075,7 @@ return { [1]="always_pierce" } }, - [4213]={ + [4183]={ [1]={ [1]={ limit={ @@ -92481,7 +92091,7 @@ return { [1]="always_pierce_burning_enemies" } }, - [4214]={ + [4184]={ [1]={ [1]={ limit={ @@ -92497,7 +92107,7 @@ return { [1]="always_sap_while_affected_by_wrath" } }, - [4215]={ + [4185]={ [1]={ [1]={ limit={ @@ -92513,7 +92123,7 @@ return { [1]="always_scorch_while_affected_by_anger" } }, - [4216]={ + [4186]={ [1]={ [1]={ limit={ @@ -92529,7 +92139,7 @@ return { [1]="ambush_buff_critical_strike_multiplier_+" } }, - [4217]={ + [4187]={ [1]={ [1]={ limit={ @@ -92558,7 +92168,7 @@ return { [1]="ambush_cooldown_speed_+%" } }, - [4218]={ + [4188]={ [1]={ [1]={ limit={ @@ -92587,7 +92197,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [4219]={ + [4189]={ [1]={ [1]={ [1]={ @@ -92620,7 +92230,7 @@ return { [1]="ancestor_totem_buff_linger_time_ms" } }, - [4220]={ + [4190]={ [1]={ [1]={ limit={ @@ -92649,7 +92259,55 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [4221]={ + [4191]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Area of Effect of Ancestrally Boosted Attacks" + } + }, + stats={ + [1]="ancestral_boosted_area_of_effect_+%" + } + }, + [4192]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ancestrally Boosted Attacks deal {0}% increased Damage" + } + }, + stats={ + [1]="ancestral_boosted_attack_damage_+%" + } + }, + [4193]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ancestrally Boosted Attacks have {0}% increased Stun Buildup" + } + }, + stats={ + [1]="ancestral_boosted_attack_hit_damage_stun_multiplier_+%" + } + }, + [4194]={ [1]={ [1]={ limit={ @@ -92674,7 +92332,7 @@ return { [1]="ancestral_cry_attacks_exerted_+" } }, - [4222]={ + [4195]={ [1]={ [1]={ limit={ @@ -92690,7 +92348,7 @@ return { [1]="ancestral_cry_exerted_attack_damage_+%" } }, - [4223]={ + [4196]={ [1]={ [1]={ limit={ @@ -92706,7 +92364,7 @@ return { [1]="ancestral_cry_minimum_power" } }, - [4224]={ + [4197]={ [1]={ [1]={ limit={ @@ -92722,7 +92380,7 @@ return { [1]="ancestral_slam_every_other_slam" } }, - [4225]={ + [4198]={ [1]={ [1]={ [1]={ @@ -92759,7 +92417,7 @@ return { [1]="anger_mana_reservation_efficiency_-2%_per_1" } }, - [4226]={ + [4199]={ [1]={ [1]={ limit={ @@ -92788,7 +92446,7 @@ return { [1]="anger_mana_reservation_efficiency_+%" } }, - [4227]={ + [4200]={ [1]={ [1]={ limit={ @@ -92804,7 +92462,7 @@ return { [1]="anger_reserves_no_mana" } }, - [4228]={ + [4201]={ [1]={ [1]={ limit={ @@ -92833,7 +92491,7 @@ return { [1]="animate_guardian_damage_+%_per_animated_weapon" } }, - [4229]={ + [4202]={ [1]={ [1]={ [1]={ @@ -92853,7 +92511,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [4230]={ + [4203]={ [1]={ [1]={ limit={ @@ -92882,7 +92540,7 @@ return { [1]="animated_guardian_damage_taken_+%_final" } }, - [4231]={ + [4204]={ [1]={ [1]={ limit={ @@ -92898,7 +92556,7 @@ return { [1]="animated_minions_melee_splash" } }, - [4232]={ + [4205]={ [1]={ [1]={ limit={ @@ -92927,7 +92585,7 @@ return { [1]="aoe_+%_per_second_while_stationary_up_to_50" } }, - [4233]={ + [4206]={ [1]={ [1]={ limit={ @@ -92943,7 +92601,7 @@ return { [1]="apply_X_armour_break_on_hit" } }, - [4234]={ + [4207]={ [1]={ [1]={ limit={ @@ -92968,7 +92626,7 @@ return { [1]="apply_X_incision_on_thorns_hit" } }, - [4235]={ + [4208]={ [1]={ [1]={ limit={ @@ -92993,7 +92651,23 @@ return { [1]="apply_X_stacks_of_critical_weakness_on_critical_hit_with_spells" } }, - [4236]={ + [4209]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Applies {0} Critical Weakness on Hit" + } + }, + stats={ + [1]="apply_X_stacks_of_critical_weakness_on_hit" + } + }, + [4210]={ [1]={ [1]={ limit={ @@ -93018,7 +92692,7 @@ return { [1]="apply_X_stacks_of_critical_weakness_on_parry" } }, - [4237]={ + [4211]={ [1]={ [1]={ limit={ @@ -93043,7 +92717,7 @@ return { [1]="apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy" } }, - [4238]={ + [4212]={ [1]={ [1]={ limit={ @@ -93068,7 +92742,7 @@ return { [1]="apply_covered_in_ash_to_attacker_when_hit_%" } }, - [4239]={ + [4213]={ [1]={ [1]={ limit={ @@ -93084,7 +92758,7 @@ return { [1]="apply_maximum_wither_stacks_%_chance_when_you_apply_withered" } }, - [4240]={ + [4214]={ [1]={ [1]={ limit={ @@ -93100,7 +92774,7 @@ return { [1]="arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable" } }, - [4241]={ + [4215]={ [1]={ [1]={ limit={ @@ -93129,7 +92803,7 @@ return { [1]="arc_and_crackling_lance_base_cost_+%" } }, - [4242]={ + [4216]={ [1]={ [1]={ limit={ @@ -93145,7 +92819,7 @@ return { [1]="arc_damage_+%_per_chain" } }, - [4243]={ + [4217]={ [1]={ [1]={ limit={ @@ -93161,7 +92835,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [4244]={ + [4218]={ [1]={ [1]={ [1]={ @@ -93181,7 +92855,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [4245]={ + [4219]={ [1]={ [1]={ limit={ @@ -93197,7 +92871,7 @@ return { [1]="arcane_surge_effect_+1%_per_X_maximum_mana" } }, - [4246]={ + [4220]={ [1]={ [1]={ limit={ @@ -93226,7 +92900,23 @@ return { [1]="arcane_surge_effect_on_self_+%_while_affected_by_clarity" } }, - [4247]={ + [4221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate" + } + }, + stats={ + [1]="arcane_surge_mana_regen_modifier_on_you_applies_to_life_regen_instead" + } + }, + [4222]={ [1]={ [1]={ limit={ @@ -93255,7 +92945,7 @@ return { [1]="arcane_surge_on_you_spell_damage_+%_final_from_hierophant" } }, - [4248]={ + [4223]={ [1]={ [1]={ limit={ @@ -93271,7 +92961,7 @@ return { [1]="arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%" } }, - [4249]={ + [4224]={ [1]={ [1]={ limit={ @@ -93300,7 +92990,7 @@ return { [1]="arcanist_brand_cast_speed_+%" } }, - [4250]={ + [4225]={ [1]={ [1]={ limit={ @@ -93316,7 +93006,122 @@ return { [1]="arcanist_brand_unnerve_on_hit" } }, - [4251]={ + [4226]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Archon recovery period expires {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]=-1, + [2]="#" + } + }, + text="Archon recovery period expires {0}% slower" + } + }, + stats={ + [1]="archon_delay_expires_x%_faster" + } + }, + [4227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Archon Buff duration" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Archon Buff duration" + } + }, + stats={ + [1]="archon_duration_+%" + } + }, + [4228]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased effect of Archon Buffs on you" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced effect of Archon Buffs on you" + } + }, + stats={ + [1]="archon_effect_on_you_+%" + } + }, + [4229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Archon Buffs also grant {0:+d}% to all Elemental Resistances" + } + }, + stats={ + [1]="archon_grants_all_elemental_resistance_+%" + } + }, + [4230]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Archon Buffs also grant {0}% increased Movement Speed" + } + }, + stats={ + [1]="archon_grants_movement_speed_+%" + } + }, + [4231]={ [1]={ [1]={ [1]={ @@ -93349,7 +93154,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [4252]={ + [4232]={ [1]={ [1]={ [1]={ @@ -93386,7 +93191,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_-2%_per_1" } }, - [4253]={ + [4233]={ [1]={ [1]={ limit={ @@ -93415,7 +93220,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_+%" } }, - [4254]={ + [4234]={ [1]={ [1]={ limit={ @@ -93436,7 +93241,7 @@ return { [2]="arctic_armour_maximum_added_cold_damage_per_stack" } }, - [4255]={ + [4235]={ [1]={ [1]={ limit={ @@ -93452,7 +93257,7 @@ return { [1]="arctic_armour_no_reservation" } }, - [4256]={ + [4236]={ [1]={ [1]={ limit={ @@ -93481,7 +93286,7 @@ return { [1]="arctic_breath_chilling_area_movement_velocity_+%" } }, - [4257]={ + [4237]={ [1]={ [1]={ limit={ @@ -93510,7 +93315,7 @@ return { [1]="area_damage_+%_per_10_devotion" } }, - [4258]={ + [4238]={ [1]={ [1]={ limit={ @@ -93539,7 +93344,7 @@ return { [1]="area_damage_+%_per_12_strength" } }, - [4259]={ + [4239]={ [1]={ [1]={ limit={ @@ -93568,7 +93373,7 @@ return { [1]="area_of_effect_+%_if_below_100_intelligence" } }, - [4260]={ + [4240]={ [1]={ [1]={ limit={ @@ -93597,7 +93402,7 @@ return { [1]="area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently" } }, - [4261]={ + [4241]={ [1]={ [1]={ limit={ @@ -93626,7 +93431,7 @@ return { [1]="area_of_effect_+%_if_culled_recently" } }, - [4262]={ + [4242]={ [1]={ [1]={ limit={ @@ -93655,7 +93460,7 @@ return { [1]="area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently" } }, - [4263]={ + [4243]={ [1]={ [1]={ limit={ @@ -93684,7 +93489,7 @@ return { [1]="area_of_effect_+%_if_have_crit_recently" } }, - [4264]={ + [4244]={ [1]={ [1]={ limit={ @@ -93713,7 +93518,7 @@ return { [1]="area_of_effect_+%_if_have_stunned_an_enemy_recently" } }, - [4265]={ + [4245]={ [1]={ [1]={ limit={ @@ -93742,7 +93547,7 @@ return { [1]="area_of_effect_+%_if_killed_at_least_5_enemies_recently" } }, - [4266]={ + [4246]={ [1]={ [1]={ limit={ @@ -93771,7 +93576,7 @@ return { [1]="area_of_effect_+%_if_you_have_blocked_recently" } }, - [4267]={ + [4247]={ [1]={ [1]={ limit={ @@ -93800,7 +93605,7 @@ return { [1]="area_of_effect_+%_per_50_strength" } }, - [4268]={ + [4248]={ [1]={ [1]={ limit={ @@ -93829,7 +93634,7 @@ return { [1]="area_of_effect_+%_per_active_herald_of_light_minion" } }, - [4269]={ + [4249]={ [1]={ [1]={ limit={ @@ -93858,7 +93663,7 @@ return { [1]="area_of_effect_+%_per_endurance_charge" } }, - [4270]={ + [4250]={ [1]={ [1]={ limit={ @@ -93887,7 +93692,7 @@ return { [1]="area_of_effect_+%_per_enemy_killed_recently" } }, - [4271]={ + [4251]={ [1]={ [1]={ limit={ @@ -93916,7 +93721,7 @@ return { [1]="area_of_effect_+%_while_fortified" } }, - [4272]={ + [4252]={ [1]={ [1]={ limit={ @@ -93945,7 +93750,7 @@ return { [1]="area_of_effect_+%_while_totem_active" } }, - [4273]={ + [4253]={ [1]={ [1]={ limit={ @@ -93974,7 +93779,7 @@ return { [1]="area_of_effect_+%_while_wielding_bow" } }, - [4274]={ + [4254]={ [1]={ [1]={ limit={ @@ -94003,7 +93808,7 @@ return { [1]="area_of_effect_+%_while_wielding_staff" } }, - [4275]={ + [4255]={ [1]={ [1]={ limit={ @@ -94032,7 +93837,7 @@ return { [1]="area_of_effect_+%_while_you_have_arcane_surge" } }, - [4276]={ + [4256]={ [1]={ [1]={ limit={ @@ -94061,7 +93866,7 @@ return { [1]="area_of_effect_+%_with_500_or_more_strength" } }, - [4277]={ + [4257]={ [1]={ [1]={ limit={ @@ -94090,7 +93895,7 @@ return { [1]="area_of_effect_+%_with_bow_skills" } }, - [4278]={ + [4258]={ [1]={ [1]={ limit={ @@ -94119,7 +93924,7 @@ return { [1]="area_of_effect_+%_with_herald_skills" } }, - [4279]={ + [4259]={ [1]={ [1]={ limit={ @@ -94148,7 +93953,7 @@ return { [1]="area_skill_accuracy_rating_+%" } }, - [4280]={ + [4260]={ [1]={ [1]={ limit={ @@ -94164,7 +93969,7 @@ return { [1]="area_skill_knockback_chance_%" } }, - [4281]={ + [4261]={ [1]={ [1]={ limit={ @@ -94180,7 +93985,7 @@ return { [1]="armageddon_brand_attached_target_fire_penetration_%" } }, - [4282]={ + [4262]={ [1]={ [1]={ limit={ @@ -94209,7 +94014,7 @@ return { [1]="armageddon_brand_damage_+%" } }, - [4283]={ + [4263]={ [1]={ [1]={ limit={ @@ -94238,32 +94043,23 @@ return { [1]="armageddon_brand_repeat_frequency_+%" } }, - [4284]={ + [4264]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% of Armour applies to Elemental Damage" - }, - [2]={ - limit={ - [1]={ - [1]=100, + [1]="#", [2]="#" } }, - text="Armour applies to Elemental Damage" + text="{0:+d}% of Armour also applies to Elemental Damage if you have at least 100 Tribute" } }, stats={ - [1]="armour_%_applies_to_fire_cold_lightning_damage" + [1]="armour_%_applies_to_fire_cold_lightning_damage_if_you_have_at_least_100_tribute" } }, - [4285]={ + [4265]={ [1]={ [1]={ limit={ @@ -94279,7 +94075,7 @@ return { [1]="armour_%_to_gain_as_stun_threshold" } }, - [4286]={ + [4266]={ [1]={ [1]={ limit={ @@ -94308,7 +94104,7 @@ return { [1]="armour_+%_if_consumed_endurance_charge_recently" } }, - [4287]={ + [4267]={ [1]={ [1]={ limit={ @@ -94337,7 +94133,7 @@ return { [1]="armour_+%_if_have_been_hit_recently" } }, - [4288]={ + [4268]={ [1]={ [1]={ limit={ @@ -94366,7 +94162,36 @@ return { [1]="armour_+%_if_hit_enemy_with_melee_attack_recently" } }, - [4289]={ + [4269]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour if you haven't Dodge Rolled Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour if you haven't Dodge Rolled Recently" + } + }, + stats={ + [1]="armour_+%_if_not_dodge_rolled_recently" + } + }, + [4270]={ [1]={ [1]={ limit={ @@ -94395,7 +94220,23 @@ return { [1]="armour_+%_if_you_havent_been_hit_recently" } }, - [4290]={ + [4271]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Armour while Ignited" + } + }, + stats={ + [1]="armour_+%_while_ignited" + } + }, + [4272]={ [1]={ [1]={ limit={ @@ -94424,7 +94265,7 @@ return { [1]="armour_+%_while_surrounded" } }, - [4291]={ + [4273]={ [1]={ [1]={ limit={ @@ -94440,7 +94281,7 @@ return { [1]="armour_+_from_%_strength_requirements_from_boots_gloves_helmets" } }, - [4292]={ + [4274]={ [1]={ [1]={ limit={ @@ -94456,7 +94297,23 @@ return { [1]="armour_+_per_10_unreserved_max_mana" } }, - [4293]={ + [4275]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Armour per 1 Spirit" + } + }, + stats={ + [1]="armour_+_per_1_spirit" + } + }, + [4276]={ [1]={ [1]={ limit={ @@ -94485,7 +94342,7 @@ return { [1]="armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield" } }, - [4294]={ + [4277]={ [1]={ [1]={ limit={ @@ -94514,7 +94371,32 @@ return { [1]="armour_and_evasion_+%_during_onslaught" } }, - [4295]={ + [4278]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour and Evasion Rating per Summoned Totem in your Presence" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour and Evasion Rating per Summoned Totem in your Presence" + } + }, + stats={ + [1]="armour_and_evasion_rating_+%_per_active_totem_in_presence" + } + }, + [4279]={ [1]={ [1]={ limit={ @@ -94530,7 +94412,7 @@ return { [1]="armour_and_evasion_rating_+_per_1%_attack_block_chance" } }, - [4296]={ + [4280]={ [1]={ [1]={ limit={ @@ -94546,7 +94428,7 @@ return { [1]="armour_and_evasion_rating_+_while_fortified" } }, - [4297]={ + [4281]={ [1]={ [1]={ limit={ @@ -94562,7 +94444,7 @@ return { [1]="armour_break_%_of_armour_on_critical_strike_with_spells" } }, - [4298]={ + [4282]={ [1]={ [1]={ limit={ @@ -94578,7 +94460,7 @@ return { [1]="armour_break_%_of_armour_on_heavy_stunning" } }, - [4299]={ + [4283]={ [1]={ [1]={ limit={ @@ -94607,7 +94489,7 @@ return { [1]="armour_break_amount_+%" } }, - [4300]={ + [4284]={ [1]={ [1]={ limit={ @@ -94636,23 +94518,7 @@ return { [1]="armour_break_amount_+%_vs_enemies_affected_by_ailments" } }, - [4301]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Break Armour equal to {0}% of Hit Damage dealt" - } - }, - stats={ - [1]="armour_break_damage_%_dealt_as_armour_break" - } - }, - [4302]={ + [4285]={ [1]={ [1]={ limit={ @@ -94678,10 +94544,26 @@ return { } }, stats={ - [1]="armour_break_duration_+%" + [1]="armour_break_and_sundered_armour_duration_+%" } }, - [4303]={ + [4286]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Break Armour equal to {0}% of Hit Damage dealt" + } + }, + stats={ + [1]="armour_break_damage_%_dealt_as_armour_break" + } + }, + [4287]={ [1]={ [1]={ limit={ @@ -94697,7 +94579,23 @@ return { [1]="armour_break_equal_to_%_physical_damage_dealt_on_critical_strike_with_spells" } }, - [4304]={ + [4288]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Break Armour equal to {0}% of Fire Damage dealt" + } + }, + stats={ + [1]="armour_break_fire_damage_%_dealt_as_armour_break" + } + }, + [4289]={ [1]={ [1]={ limit={ @@ -94713,7 +94611,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [4305]={ + [4290]={ [1]={ [1]={ limit={ @@ -94742,7 +94640,7 @@ return { [1]="armour_evasion_+%_while_leeching" } }, - [4306]={ + [4291]={ [1]={ [1]={ limit={ @@ -94771,7 +94669,7 @@ return { [1]="armour_from_gloves_and_boots_+%" } }, - [4307]={ + [4292]={ [1]={ [1]={ limit={ @@ -94800,7 +94698,7 @@ return { [1]="armour_from_helmet_and_gloves_+%" } }, - [4308]={ + [4293]={ [1]={ [1]={ limit={ @@ -94816,7 +94714,7 @@ return { [1]="armour_increased_by_overcapped_fire_resistance" } }, - [4309]={ + [4294]={ [1]={ [1]={ limit={ @@ -94825,14 +94723,14 @@ return { [2]="#" } }, - text="{:+d} to Armour per 1 Energy Shield on Equipped Helmet" + text="{:+d} to Armour per 1 Item Energy Shield on Equipped Helmet" } }, stats={ [1]="armour_+_per_1_helmet_maximum_energy_shield" } }, - [4310]={ + [4295]={ [1]={ [1]={ limit={ @@ -94848,7 +94746,7 @@ return { [1]="armour_+_while_affected_by_determination" } }, - [4311]={ + [4296]={ [1]={ [1]={ limit={ @@ -94864,7 +94762,7 @@ return { [1]="armour_+_while_affected_by_guard_skill" } }, - [4312]={ + [4297]={ [1]={ [1]={ limit={ @@ -94880,7 +94778,7 @@ return { [1]="armour_+_while_you_have_fortify" } }, - [4313]={ + [4298]={ [1]={ [1]={ limit={ @@ -94896,7 +94794,7 @@ return { [1]="armour_+%_final_vs_hits_per_1%_current_energy_shield" } }, - [4314]={ + [4299]={ [1]={ [1]={ limit={ @@ -94925,7 +94823,7 @@ return { [1]="armour_+%_if_enemy_not_killed_recently" } }, - [4315]={ + [4300]={ [1]={ [1]={ limit={ @@ -94954,7 +94852,7 @@ return { [1]="armour_+%_per_50_str" } }, - [4316]={ + [4301]={ [1]={ [1]={ limit={ @@ -94970,7 +94868,7 @@ return { [1]="armour_+%_per_rage" } }, - [4317]={ + [4302]={ [1]={ [1]={ limit={ @@ -94999,7 +94897,7 @@ return { [1]="armour_+%_per_red_socket_on_main_hand_weapon" } }, - [4318]={ + [4303]={ [1]={ [1]={ limit={ @@ -95028,7 +94926,7 @@ return { [1]="armour_+%_per_second_while_stationary_up_to_100" } }, - [4319]={ + [4304]={ [1]={ [1]={ limit={ @@ -95044,7 +94942,7 @@ return { [1]="armour_+%_while_bleeding" } }, - [4320]={ + [4305]={ [1]={ [1]={ limit={ @@ -95073,7 +94971,7 @@ return { [1]="armour_+%_while_stationary" } }, - [4321]={ + [4306]={ [1]={ [1]={ limit={ @@ -95089,7 +94987,7 @@ return { [1]="arrow_critical_strike_chance_+%_max_as_distance_travelled_increases" } }, - [4322]={ + [4307]={ [1]={ [1]={ limit={ @@ -95118,7 +95016,7 @@ return { [1]="arrow_damage_+%_vs_pierced_targets" } }, - [4323]={ + [4308]={ [1]={ [1]={ limit={ @@ -95134,7 +95032,7 @@ return { [1]="arrow_damage_+50%_vs_pierced_targets" } }, - [4324]={ + [4309]={ [1]={ [1]={ limit={ @@ -95150,7 +95048,7 @@ return { [1]="arrow_damage_+%_max_as_distance_travelled_increases" } }, - [4325]={ + [4310]={ [1]={ [1]={ limit={ @@ -95171,7 +95069,7 @@ return { [2]="maximum_arrow_fire_damage_added_for_each_pierce" } }, - [4326]={ + [4311]={ [1]={ [1]={ limit={ @@ -95187,7 +95085,7 @@ return { [1]="arrow_speed_additive_modifiers_also_apply_to_bow_damage" } }, - [4327]={ + [4312]={ [1]={ [1]={ limit={ @@ -95203,7 +95101,7 @@ return { [1]="arrows_always_pierce_after_forking" } }, - [4328]={ + [4313]={ [1]={ [1]={ limit={ @@ -95219,7 +95117,7 @@ return { [1]="arrows_pierce_additional_target" } }, - [4329]={ + [4314]={ [1]={ [1]={ limit={ @@ -95235,7 +95133,7 @@ return { [1]="arrows_that_pierce_also_return" } }, - [4330]={ + [4315]={ [1]={ [1]={ limit={ @@ -95251,7 +95149,7 @@ return { [1]="artillery_ballista_cross_strafe_pattern" } }, - [4331]={ + [4316]={ [1]={ [1]={ limit={ @@ -95267,7 +95165,7 @@ return { [1]="artillery_ballista_fire_pen_+%" } }, - [4332]={ + [4317]={ [1]={ [1]={ limit={ @@ -95292,7 +95190,7 @@ return { [1]="artillery_ballista_num_additional_arrows" } }, - [4333]={ + [4318]={ [1]={ [1]={ limit={ @@ -95308,7 +95206,7 @@ return { [1]="ascendancy_beidats_gaze_mana_+_per_X_maximum_life" } }, - [4334]={ + [4319]={ [1]={ [1]={ limit={ @@ -95324,7 +95222,7 @@ return { [1]="ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life" } }, - [4335]={ + [4320]={ [1]={ [1]={ limit={ @@ -95340,7 +95238,7 @@ return { [1]="ascendancy_beidats_will_spirit_+_per_X_maximum_life" } }, - [4336]={ + [4321]={ [1]={ [1]={ limit={ @@ -95369,7 +95267,7 @@ return { [1]="ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final" } }, - [4337]={ + [4322]={ [1]={ [1]={ limit={ @@ -95398,7 +95296,7 @@ return { [1]="ascendancy_pathfinder_flask_charges_gained_+%_final" } }, - [4338]={ + [4323]={ [1]={ [1]={ limit={ @@ -95427,7 +95325,7 @@ return { [1]="ascendancy_titan_damage_reduction_rating_from_body_armour_+%_final" } }, - [4339]={ + [4324]={ [1]={ [1]={ limit={ @@ -95456,7 +95354,7 @@ return { [1]="ascendancy_warbringer_block_chance_+%_final" } }, - [4340]={ + [4325]={ [1]={ [1]={ limit={ @@ -95485,7 +95383,7 @@ return { [1]="ascendency_tactician_totem_skill_speed_+%_final" } }, - [4341]={ + [4326]={ [1]={ [1]={ limit={ @@ -95514,7 +95412,7 @@ return { [1]="aspect_of_the_avian_buff_effect_+%" } }, - [4342]={ + [4327]={ [1]={ [1]={ limit={ @@ -95530,7 +95428,7 @@ return { [1]="aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies" } }, - [4343]={ + [4328]={ [1]={ [1]={ [1]={ @@ -95550,7 +95448,7 @@ return { [1]="aspect_of_the_cat_base_secondary_duration" } }, - [4344]={ + [4329]={ [1]={ [1]={ limit={ @@ -95575,7 +95473,7 @@ return { [1]="aspect_of_the_spider_web_count_+" } }, - [4345]={ + [4330]={ [1]={ [1]={ limit={ @@ -95591,7 +95489,7 @@ return { [1]="attack_added_chaos_damage_%_of_maximum_life" } }, - [4346]={ + [4331]={ [1]={ [1]={ limit={ @@ -95607,7 +95505,7 @@ return { [1]="attack_added_physical_damage_%_of_maximum_life" } }, - [4347]={ + [4332]={ [1]={ [1]={ [1]={ @@ -95627,7 +95525,27 @@ return { [1]="attack_additional_critical_strike_chance_permyriad" } }, - [4348]={ + [4333]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attacks have {0:+d}% to Critical Hit Chance against Parried enemies if you have at least 100 Tribute" + } + }, + stats={ + [1]="attack_additional_critical_strike_chance_permyriad_vs_parried_enemies_if_you_have_at_least_100_tribute" + } + }, + [4334]={ [1]={ [1]={ limit={ @@ -95656,7 +95574,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_mana_flask" } }, - [4349]={ + [4335]={ [1]={ [1]={ limit={ @@ -95685,7 +95603,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_elusive" } }, - [4350]={ + [4336]={ [1]={ [1]={ limit={ @@ -95714,7 +95632,7 @@ return { [1]="attack_and_cast_speed_per_ghost_dance_stack_+%" } }, - [4351]={ + [4337]={ [1]={ [1]={ limit={ @@ -95730,7 +95648,7 @@ return { [1]="attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds" } }, - [4352]={ + [4338]={ [1]={ [1]={ limit={ @@ -95759,7 +95677,7 @@ return { [1]="attack_and_cast_speed_+%_if_enemy_hit_recently" } }, - [4353]={ + [4339]={ [1]={ [1]={ limit={ @@ -95788,7 +95706,7 @@ return { [1]="attack_and_cast_speed_+%_if_havent_been_hit_recently" } }, - [4354]={ + [4340]={ [1]={ [1]={ limit={ @@ -95817,7 +95735,7 @@ return { [1]="attack_and_cast_speed_+%_per_endurance_charge" } }, - [4355]={ + [4341]={ [1]={ [1]={ limit={ @@ -95846,7 +95764,7 @@ return { [1]="attack_and_cast_speed_+%_per_power_charge" } }, - [4356]={ + [4342]={ [1]={ [1]={ limit={ @@ -95875,7 +95793,7 @@ return { [1]="attack_and_cast_speed_+%_per_summoned_raging_spirit" } }, - [4357]={ + [4343]={ [1]={ [1]={ limit={ @@ -95904,7 +95822,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_herald" } }, - [4358]={ + [4344]={ [1]={ [1]={ limit={ @@ -95933,7 +95851,7 @@ return { [1]="attack_and_cast_speed_+%_while_channelling" } }, - [4359]={ + [4345]={ [1]={ [1]={ limit={ @@ -95962,7 +95880,36 @@ return { [1]="attack_and_cast_speed_+%_while_focused" } }, - [4360]={ + [4346]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack and Cast Speed during Effect of any Flask" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack and Cast Speed during Effect of any Flask" + } + }, + stats={ + [1]="attack_and_cast_speed_+%_while_using_flask" + } + }, + [4347]={ [1]={ [1]={ limit={ @@ -95991,7 +95938,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis" } }, - [4361]={ + [4348]={ [1]={ [1]={ limit={ @@ -96020,7 +95967,7 @@ return { [1]="attack_and_cast_speed_+%_with_channelling_skills" } }, - [4362]={ + [4349]={ [1]={ [1]={ limit={ @@ -96049,7 +95996,7 @@ return { [1]="attack_and_cast_speed_+%_with_chaos_skills" } }, - [4363]={ + [4350]={ [1]={ [1]={ limit={ @@ -96078,7 +96025,7 @@ return { [1]="attack_and_cast_speed_+%_with_cold_skills" } }, - [4364]={ + [4351]={ [1]={ [1]={ limit={ @@ -96107,7 +96054,7 @@ return { [1]="attack_and_cast_speed_+%_with_elemental_skills" } }, - [4365]={ + [4352]={ [1]={ [1]={ limit={ @@ -96136,7 +96083,7 @@ return { [1]="attack_and_cast_speed_+%_with_fire_skills" } }, - [4366]={ + [4353]={ [1]={ [1]={ limit={ @@ -96165,7 +96112,7 @@ return { [1]="attack_and_cast_speed_+%_with_lightning_skills" } }, - [4367]={ + [4354]={ [1]={ [1]={ limit={ @@ -96194,7 +96141,7 @@ return { [1]="attack_and_cast_speed_+%_with_physical_skills" } }, - [4368]={ + [4355]={ [1]={ [1]={ limit={ @@ -96223,7 +96170,7 @@ return { [1]="attack_and_cast_speed_+%_with_shield_skills" } }, - [4369]={ + [4356]={ [1]={ [1]={ limit={ @@ -96239,7 +96186,7 @@ return { [1]="attack_and_movement_speed_+%_final_per_challenger_charge" } }, - [4370]={ + [4357]={ [1]={ [1]={ limit={ @@ -96268,7 +96215,7 @@ return { [1]="attack_area_damage_+%" } }, - [4371]={ + [4358]={ [1]={ [1]={ limit={ @@ -96297,7 +96244,7 @@ return { [1]="attack_area_of_effect_+%_while_wielding_quarterstaff" } }, - [4372]={ + [4359]={ [1]={ [1]={ limit={ @@ -96326,7 +96273,7 @@ return { [1]="attack_area_of_effect_+%" } }, - [4373]={ + [4360]={ [1]={ [1]={ limit={ @@ -96355,7 +96302,7 @@ return { [1]="attack_area_of_effect_+%_per_10_int" } }, - [4374]={ + [4361]={ [1]={ [1]={ limit={ @@ -96371,23 +96318,7 @@ return { [1]="attack_block_%_per_200_fire_hit_damage_taken_recently" } }, - [4375]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Attack Damage if you have Blocked Spell Damage Recently" - } - }, - stats={ - [1]="attack_block_%_if_blocked_a_spell_recently" - } - }, - [4376]={ + [4362]={ [1]={ [1]={ limit={ @@ -96403,7 +96334,7 @@ return { [1]="attack_block_%_while_at_max_endurance_charges" } }, - [4377]={ + [4363]={ [1]={ [1]={ limit={ @@ -96432,7 +96363,7 @@ return { [1]="attack_cast_and_movement_speed_+%_during_onslaught" } }, - [4378]={ + [4364]={ [1]={ [1]={ limit={ @@ -96461,7 +96392,7 @@ return { [1]="attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently" } }, - [4379]={ + [4365]={ [1]={ [1]={ limit={ @@ -96477,7 +96408,7 @@ return { [1]="attack_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [4380]={ + [4366]={ [1]={ [1]={ limit={ @@ -96493,7 +96424,7 @@ return { [1]="attack_chance_to_maim_on_hit_%_vs_blinded_enemies" } }, - [4381]={ + [4367]={ [1]={ [1]={ limit={ @@ -96509,7 +96440,36 @@ return { [1]="attack_consume_endurance_charge_to_always_crit" } }, - [4382]={ + [4368]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Critical Hit Chance per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Critical Hit Chance per 10 Tribute" + } + }, + stats={ + [1]="attack_critical_strike_chance_+%_per_10_tribute" + } + }, + [4369]={ [1]={ [1]={ limit={ @@ -96525,7 +96485,65 @@ return { [1]="attack_critical_strikes_ignore_elemental_resistances" } }, - [4383]={ + [4370]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Damage if you have been Heavy Stunned Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Damage if you have been Heavy Stunned Recently" + } + }, + stats={ + [1]="attack_damage_+%_if_been_heavy_stunned_recently" + } + }, + [4371]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Damage per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Damage per 10 Tribute" + } + }, + stats={ + [1]="attack_damage_+%_per_10_tribute" + } + }, + [4372]={ [1]={ [1]={ limit={ @@ -96554,7 +96572,7 @@ return { [1]="attack_damage_+%_per_5%_block_chance" } }, - [4384]={ + [4373]={ [1]={ [1]={ limit={ @@ -96583,7 +96601,32 @@ return { [1]="attack_damage_+%_per_500_maximum_mana" } }, - [4385]={ + [4374]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Damage per Summoned Totem in your Presence" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Damage per Summoned Totem in your Presence" + } + }, + stats={ + [1]="attack_damage_+%_per_active_totem_in_presence" + } + }, + [4375]={ [1]={ [1]={ limit={ @@ -96599,7 +96642,7 @@ return { [1]="attack_damage_+%_per_explicit_map_mod_affecting_area" } }, - [4386]={ + [4376]={ [1]={ [1]={ limit={ @@ -96628,7 +96671,36 @@ return { [1]="attack_damage_+%_vs_rare_or_unique_enemy" } }, - [4387]={ + [4377]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Damage while you have no Life Flask uses left" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Damage while you have no Life Flask uses left" + } + }, + stats={ + [1]="attack_damage_+%_when_no_remaining_life_flask_uses" + } + }, + [4378]={ [1]={ [1]={ limit={ @@ -96657,7 +96729,7 @@ return { [1]="attack_damage_+%_while_ally_in_presence" } }, - [4388]={ + [4379]={ [1]={ [1]={ limit={ @@ -96686,7 +96758,36 @@ return { [1]="attack_damage_+%_while_in_blood_stance" } }, - [4389]={ + [4380]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack damage while moving" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack damage while moving" + } + }, + stats={ + [1]="attack_damage_+%_while_moving" + } + }, + [4381]={ [1]={ [1]={ limit={ @@ -96715,7 +96816,7 @@ return { [1]="attack_damage_+%_while_surrounded" } }, - [4390]={ + [4382]={ [1]={ [1]={ limit={ @@ -96744,7 +96845,7 @@ return { [1]="attack_damage_+%_while_you_have_at_least_20_fortification" } }, - [4391]={ + [4383]={ [1]={ [1]={ limit={ @@ -96760,7 +96861,7 @@ return { [1]="attack_damage_lucky_if_blocked_in_past_20_seconds" } }, - [4392]={ + [4384]={ [1]={ [1]={ limit={ @@ -96776,7 +96877,7 @@ return { [1]="attack_damage_+1%_per_300_of_min_of_armour_or_evasion" } }, - [4393]={ + [4385]={ [1]={ [1]={ limit={ @@ -96805,7 +96906,7 @@ return { [1]="attack_damage_+%_per_16_strength" } }, - [4394]={ + [4386]={ [1]={ [1]={ limit={ @@ -96821,7 +96922,7 @@ return { [1]="attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [4395]={ + [4387]={ [1]={ [1]={ limit={ @@ -96830,7 +96931,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + text="{0}% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield" }, [2]={ [1]={ @@ -96843,14 +96944,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Damage per 75 Armour or Evasion Rating on Shield" + text="{0}% reduced Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield" } }, stats={ [1]="attack_damage_+%_per_75_armour_or_evasion_on_shield" } }, - [4396]={ + [4388]={ [1]={ [1]={ limit={ @@ -96879,7 +96980,7 @@ return { [1]="attack_damage_+%_vs_maimed_enemies" } }, - [4397]={ + [4389]={ [1]={ [1]={ limit={ @@ -96908,7 +97009,7 @@ return { [1]="attack_damage_+%_when_on_full_life" } }, - [4398]={ + [4390]={ [1]={ [1]={ limit={ @@ -96937,7 +97038,7 @@ return { [1]="attack_damage_+%_when_on_low_life" } }, - [4399]={ + [4391]={ [1]={ [1]={ limit={ @@ -96966,7 +97067,7 @@ return { [1]="attack_damage_+%_while_affected_by_precision" } }, - [4400]={ + [4392]={ [1]={ [1]={ limit={ @@ -96995,7 +97096,7 @@ return { [1]="attack_damage_+%_while_channelling" } }, - [4401]={ + [4393]={ [1]={ [1]={ limit={ @@ -97024,7 +97125,7 @@ return { [1]="attack_damage_+%_while_leeching" } }, - [4402]={ + [4394]={ [1]={ [1]={ limit={ @@ -97053,7 +97154,7 @@ return { [1]="attack_damage_+%_while_not_on_low_mana" } }, - [4403]={ + [4395]={ [1]={ [1]={ limit={ @@ -97082,7 +97183,7 @@ return { [1]="attack_damage_+%_while_you_have_fortify" } }, - [4404]={ + [4396]={ [1]={ [1]={ limit={ @@ -97111,7 +97212,23 @@ return { [1]="attack_damage_+%_with_channelling_skills" } }, - [4405]={ + [4397]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect" + } + }, + stats={ + [1]="attack_mana_cost_efficiency_+%_during_mana_flask" + } + }, + [4398]={ [1]={ [1]={ limit={ @@ -97144,7 +97261,7 @@ return { [1]="attack_mana_cost_+%" } }, - [4406]={ + [4399]={ [1]={ [1]={ limit={ @@ -97165,7 +97282,7 @@ return { [2]="attack_maximum_added_fire_damage_per_10_strength" } }, - [4407]={ + [4400]={ [1]={ [1]={ limit={ @@ -97186,7 +97303,7 @@ return { [2]="local_maximum_added_fire_damage_vs_bleeding_enemies" } }, - [4408]={ + [4401]={ [1]={ [1]={ limit={ @@ -97207,7 +97324,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_dex" } }, - [4409]={ + [4402]={ [1]={ [1]={ limit={ @@ -97228,7 +97345,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_int" } }, - [4410]={ + [4403]={ [1]={ [1]={ limit={ @@ -97249,7 +97366,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_200_accuracy_rating" } }, - [4411]={ + [4404]={ [1]={ [1]={ limit={ @@ -97270,7 +97387,7 @@ return { [2]="attack_maximum_added_physical_damage_if_have_crit_recently" } }, - [4412]={ + [4405]={ [1]={ [1]={ limit={ @@ -97291,7 +97408,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_strength" } }, - [4413]={ + [4406]={ [1]={ [1]={ limit={ @@ -97312,7 +97429,7 @@ return { [2]="attack_maximum_added_physical_damage_per_level" } }, - [4414]={ + [4407]={ [1]={ [1]={ limit={ @@ -97333,7 +97450,7 @@ return { [2]="local_maximum_added_physical_damage_vs_ignited_enemies" } }, - [4415]={ + [4408]={ [1]={ [1]={ limit={ @@ -97349,7 +97466,7 @@ return { [1]="attack_projectiles_fork" } }, - [4416]={ + [4409]={ [1]={ [1]={ limit={ @@ -97374,48 +97491,52 @@ return { [1]="attack_projectiles_fork_additional_times" } }, - [4417]={ + [4410]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Attack Skills fire an additional Projectile while wielding a Claw or Dagger" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Attack Skills fire {0} additional Projectiles while wielding a Claw or Dagger" + text="Attack Skills have Added Lightning Damage equal to {0}% of maximum Mana" } }, stats={ - [1]="attack_skill_additional_num_projectiles_while_wielding_claws_daggers" + [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" } }, - [4418]={ + [4411]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Attack Skills have Added Lightning Damage equal to {0}% of maximum Mana" + text="{0}% increased Attack Speed if you haven't Attacked Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Speed if you haven't Attacked Recently" } }, stats={ - [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" + [1]="attack_speed_+%_if_you_have_not_attacked_recently" } }, - [4419]={ + [4412]={ [1]={ [1]={ limit={ @@ -97424,7 +97545,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you haven't Attacked Recently" + text="{0}% increased Attack Speed per 20 Spirit" }, [2]={ [1]={ @@ -97437,14 +97558,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you haven't Attacked Recently" + text="{0}% reduced Attack Speed per 20 Spirit" } }, stats={ - [1]="attack_speed_+%_if_you_have_not_attacked_recently" + [1]="attack_speed_+%_per_20_spirit" } }, - [4420]={ + [4413]={ [1]={ [1]={ limit={ @@ -97473,7 +97594,7 @@ return { [1]="attack_speed_+%_per_enemy_in_close_range" } }, - [4421]={ + [4414]={ [1]={ [1]={ limit={ @@ -97489,7 +97610,7 @@ return { [1]="attack_speed_+%_per_explicit_map_mod_affecting_area" } }, - [4422]={ + [4415]={ [1]={ [1]={ limit={ @@ -97498,7 +97619,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed while in the Presence of your Companion" + text="{0}% increased Attack Speed while your Companion is in your Presence" }, [2]={ [1]={ @@ -97511,14 +97632,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed while in the Presence of your Companion" + text="{0}% reduced Attack Speed while your Companion is in your Presence" } }, stats={ [1]="attack_speed_+%_while_in_presence_of_companion" } }, - [4423]={ + [4416]={ [1]={ [1]={ limit={ @@ -97547,7 +97668,7 @@ return { [1]="attack_speed_+%_while_in_sand_stance" } }, - [4424]={ + [4417]={ [1]={ [1]={ limit={ @@ -97576,7 +97697,7 @@ return { [1]="attack_speed_+%_while_on_full_mana" } }, - [4425]={ + [4418]={ [1]={ [1]={ limit={ @@ -97605,7 +97726,7 @@ return { [1]="attack_speed_+%_while_surrounded" } }, - [4426]={ + [4419]={ [1]={ [1]={ limit={ @@ -97634,7 +97755,7 @@ return { [1]="attack_speed_+%_final_per_blitz_charge" } }, - [4427]={ + [4420]={ [1]={ [1]={ limit={ @@ -97643,7 +97764,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've cast a Mark Spell Recently" + text="{0}% increased Attack Speed if you've Hit with your Main Hand Weapon Recently" }, [2]={ [1]={ @@ -97656,14 +97777,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've cast a Mark Spell Recently" + text="{0}% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently" } }, stats={ - [1]="attack_speed_+%_if_cast_a_mark_spell_recently" + [1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently" } }, - [4428]={ + [4421]={ [1]={ [1]={ limit={ @@ -97672,7 +97793,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've Hit with your Main Hand Weapon Recently" + text="{0}% increased Attack Speed if you've Killed Recently" }, [2]={ [1]={ @@ -97685,14 +97806,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently" + text="{0}% reduced Attack Speed if you've Killed Recently" } }, stats={ - [1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently" + [1]="attack_speed_+%_if_enemy_killed_recently" } }, - [4429]={ + [4422]={ [1]={ [1]={ limit={ @@ -97701,7 +97822,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've Killed Recently" + text="{0}% increased Attack Speed if you've been Hit Recently" }, [2]={ [1]={ @@ -97714,14 +97835,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've Killed Recently" + text="{0}% reduced Attack Speed if you've been Hit Recently" } }, stats={ - [1]="attack_speed_+%_if_enemy_killed_recently" + [1]="attack_speed_+%_if_have_been_hit_recently" } }, - [4430]={ + [4423]={ [1]={ [1]={ limit={ @@ -97730,7 +97851,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've been Hit Recently" + text="{0}% increased Attack Speed if you have Blocked Recently" }, [2]={ [1]={ @@ -97743,14 +97864,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've been Hit Recently" + text="{0}% reduced Attack Speed if you have Blocked Recently" } }, stats={ - [1]="attack_speed_+%_if_have_been_hit_recently" + [1]="attack_speed_+%_if_have_blocked_recently" } }, - [4431]={ + [4424]={ [1]={ [1]={ limit={ @@ -97759,7 +97880,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you have Blocked Recently" + text="{0}% increased Attack Speed if you've dealt a Critical Hit Recently" }, [2]={ [1]={ @@ -97772,14 +97893,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you have Blocked Recently" + text="{0}% reduced Attack Speed if you've dealt a Critical Hit Recently" } }, stats={ - [1]="attack_speed_+%_if_have_blocked_recently" + [1]="attack_speed_+%_if_have_crit_recently" } }, - [4432]={ + [4425]={ [1]={ [1]={ limit={ @@ -97788,7 +97909,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've dealt a Critical Hit Recently" + text="{0}% increased Attack Speed if you haven't Cast Dash recently" }, [2]={ [1]={ @@ -97801,14 +97922,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've dealt a Critical Hit Recently" + text="{0}% reduced Attack Speed if you haven't Cast Dash recently" } }, stats={ - [1]="attack_speed_+%_if_have_crit_recently" + [1]="attack_speed_+%_if_havent_cast_dash_recently" } }, - [4433]={ + [4426]={ [1]={ [1]={ limit={ @@ -97817,7 +97938,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you haven't Cast Dash recently" + text="{0}% increased Attack Speed if you haven't gained a Frenzy Charge Recently" }, [2]={ [1]={ @@ -97830,14 +97951,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you haven't Cast Dash recently" + text="{0}% reduced Attack Speed if you haven't gained a Frenzy Charge Recently" } }, stats={ - [1]="attack_speed_+%_if_havent_cast_dash_recently" + [1]="attack_speed_+%_if_not_gained_frenzy_charge_recently" } }, - [4434]={ + [4427]={ [1]={ [1]={ limit={ @@ -97846,7 +97967,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you haven't gained a Frenzy Charge Recently" + text="{0}% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, [2]={ [1]={ @@ -97859,14 +97980,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you haven't gained a Frenzy Charge Recently" + text="{0}% reduced Attack Speed while a Rare or Unique is in your Presence" } }, stats={ - [1]="attack_speed_+%_if_not_gained_frenzy_charge_recently" + [1]="attack_speed_+%_if_rare_or_unique_enemy_nearby" } }, - [4435]={ + [4428]={ [1]={ [1]={ limit={ @@ -97875,7 +97996,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed while a Rare or Unique Enemy is in your Presence" + text="{0}% increased Attack Speed if you've used a Mark Recently" }, [2]={ [1]={ @@ -97888,14 +98009,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed while a Rare or Unique is in your Presence" + text="{0}% reduced Attack Speed if you've used a Mark Recently" } }, stats={ - [1]="attack_speed_+%_if_rare_or_unique_enemy_nearby" + [1]="attack_speed_+%_if_used_a_mark_recently" } }, - [4436]={ + [4429]={ [1]={ [1]={ limit={ @@ -97924,7 +98045,36 @@ return { [1]="attack_speed_+%_if_you_have_at_least_600_strength" } }, - [4437]={ + [4430]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Speed if you've used a Life Flask Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Speed if you've used a Life Flask Recently" + } + }, + stats={ + [1]="attack_speed_+%_if_you_have_used_a_life_flask_recently" + } + }, + [4431]={ [1]={ [1]={ limit={ @@ -97953,7 +98103,7 @@ return { [1]="attack_speed_+%_per_1%_overcapped_block_chance" } }, - [4438]={ + [4432]={ [1]={ [1]={ limit={ @@ -97982,7 +98132,7 @@ return { [1]="attack_speed_+%_per_10_dex" } }, - [4439]={ + [4433]={ [1]={ [1]={ limit={ @@ -97998,7 +98148,7 @@ return { [1]="attack_speed_+%_per_25_dex" } }, - [4440]={ + [4434]={ [1]={ [1]={ limit={ @@ -98027,7 +98177,7 @@ return { [1]="attack_speed_+%_while_affected_by_precision" } }, - [4441]={ + [4435]={ [1]={ [1]={ limit={ @@ -98056,7 +98206,7 @@ return { [1]="attack_speed_+%_while_chilled" } }, - [4442]={ + [4436]={ [1]={ [1]={ limit={ @@ -98085,7 +98235,7 @@ return { [1]="attack_speed_+%_while_not_on_low_mana" } }, - [4443]={ + [4437]={ [1]={ [1]={ limit={ @@ -98114,7 +98264,7 @@ return { [1]="attack_speed_+%_while_phasing" } }, - [4444]={ + [4438]={ [1]={ [1]={ limit={ @@ -98143,7 +98293,7 @@ return { [1]="attack_speed_+%_with_channelling_skills" } }, - [4445]={ + [4439]={ [1]={ [1]={ limit={ @@ -98168,7 +98318,7 @@ return { [1]="steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles" } }, - [4446]={ + [4440]={ [1]={ [1]={ limit={ @@ -98184,7 +98334,7 @@ return { [1]="attacks_base_mana_cost_+_%_of_maximum_mana" } }, - [4447]={ + [4441]={ [1]={ [1]={ limit={ @@ -98200,7 +98350,7 @@ return { [1]="attacks_bleed_on_hit_while_you_have_cat_stealth" } }, - [4448]={ + [4442]={ [1]={ [1]={ limit={ @@ -98216,7 +98366,7 @@ return { [1]="attacks_cause_bleeding_vs_cursed_enemies" } }, - [4449]={ + [4443]={ [1]={ [1]={ limit={ @@ -98232,7 +98382,7 @@ return { [1]="local_chance_bleed_on_hit_%_vs_ignited_enemies" } }, - [4450]={ + [4444]={ [1]={ [1]={ limit={ @@ -98248,7 +98398,7 @@ return { [1]="attacks_chance_to_bleed_25%_vs_cursed_enemies" } }, - [4451]={ + [4445]={ [1]={ [1]={ limit={ @@ -98264,7 +98414,7 @@ return { [1]="attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies" } }, - [4452]={ + [4446]={ [1]={ [1]={ limit={ @@ -98289,7 +98439,7 @@ return { [1]="attacks_chance_to_blind_on_hit_%" } }, - [4453]={ + [4447]={ [1]={ [1]={ limit={ @@ -98314,7 +98464,7 @@ return { [1]="attacks_chance_to_taunt_on_hit_%" } }, - [4454]={ + [4448]={ [1]={ [1]={ limit={ @@ -98339,7 +98489,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [4455]={ + [4449]={ [1]={ [1]={ limit={ @@ -98355,7 +98505,7 @@ return { [1]="attacks_inflict_bleeding_if_last_movement_skill_was_advancing_strike" } }, - [4456]={ + [4450]={ [1]={ [1]={ limit={ @@ -98380,7 +98530,7 @@ return { [1]="attacks_intimidate_on_hit_%" } }, - [4457]={ + [4451]={ [1]={ [1]={ limit={ @@ -98401,7 +98551,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute" } }, - [4458]={ + [4452]={ [1]={ [1]={ limit={ @@ -98422,7 +98572,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity" } }, - [4459]={ + [4453]={ [1]={ [1]={ limit={ @@ -98438,7 +98588,36 @@ return { [1]="attacks_with_two_handed_weapons_impale_on_hit_%_chance" } }, - [4460]={ + [4454]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Aura Magnitudes if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Aura Magnitudes if you have at least 100 Tribute" + } + }, + stats={ + [1]="aura_effect_+%_if_you_have_at_least_100_tribute" + } + }, + [4455]={ [1]={ [1]={ limit={ @@ -98467,7 +98646,7 @@ return { [1]="aura_effect_on_self_from_skills_+%_per_herald_effecting_you" } }, - [4461]={ + [4456]={ [1]={ [1]={ limit={ @@ -98483,7 +98662,7 @@ return { [1]="aura_grant_%_base_main_hand_attack_damage_to_nearby_allies" } }, - [4462]={ + [4457]={ [1]={ [1]={ [1]={ @@ -98503,7 +98682,7 @@ return { [1]="avians_flight_duration_ms_+" } }, - [4463]={ + [4458]={ [1]={ [1]={ [1]={ @@ -98523,7 +98702,7 @@ return { [1]="avians_might_duration_ms_+" } }, - [4464]={ + [4459]={ [1]={ [1]={ limit={ @@ -98539,7 +98718,7 @@ return { [1]="avoid_ailments_%_from_crit" } }, - [4465]={ + [4460]={ [1]={ [1]={ limit={ @@ -98555,7 +98734,7 @@ return { [1]="avoid_ailments_%_while_holding_shield" } }, - [4466]={ + [4461]={ [1]={ [1]={ limit={ @@ -98571,7 +98750,7 @@ return { [1]="avoid_all_elemental_ailment_%_per_summoned_golem" } }, - [4467]={ + [4462]={ [1]={ [1]={ limit={ @@ -98596,7 +98775,7 @@ return { [1]="avoid_chained_projectile_%_chance" } }, - [4468]={ + [4463]={ [1]={ [1]={ limit={ @@ -98612,7 +98791,7 @@ return { [1]="avoid_chill_freeze_while_casting_%" } }, - [4469]={ + [4464]={ [1]={ [1]={ limit={ @@ -98628,7 +98807,7 @@ return { [1]="avoid_corrupted_blood_%_chance" } }, - [4470]={ + [4465]={ [1]={ [1]={ limit={ @@ -98644,7 +98823,7 @@ return { [1]="avoid_elemental_ailments_%_while_affected_by_elusive" } }, - [4471]={ + [4466]={ [1]={ [1]={ limit={ @@ -98660,7 +98839,7 @@ return { [1]="avoid_elemental_ailments_%_while_phasing" } }, - [4472]={ + [4467]={ [1]={ [1]={ limit={ @@ -98676,7 +98855,7 @@ return { [1]="avoid_elemental_damage_chance_%_during_soul_gain_prevention" } }, - [4473]={ + [4468]={ [1]={ [1]={ limit={ @@ -98692,7 +98871,7 @@ return { [1]="avoid_elemental_damage_while_phasing_%" } }, - [4474]={ + [4469]={ [1]={ [1]={ limit={ @@ -98708,7 +98887,7 @@ return { [1]="avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently" } }, - [4475]={ + [4470]={ [1]={ [1]={ limit={ @@ -98733,7 +98912,7 @@ return { [1]="avoid_impale_%" } }, - [4476]={ + [4471]={ [1]={ [1]={ limit={ @@ -98762,7 +98941,7 @@ return { [1]="avoid_maim_%_chance" } }, - [4477]={ + [4472]={ [1]={ [1]={ limit={ @@ -98778,7 +98957,7 @@ return { [1]="avoid_physical_damage_%_while_phasing" } }, - [4478]={ + [4473]={ [1]={ [1]={ limit={ @@ -98794,7 +98973,7 @@ return { [1]="avoid_projectiles_%_chance_if_taken_projectile_damage_recently" } }, - [4479]={ + [4474]={ [1]={ [1]={ limit={ @@ -98810,7 +98989,7 @@ return { [1]="avoid_projectiles_while_phasing_%_chance" } }, - [4480]={ + [4475]={ [1]={ [1]={ limit={ @@ -98826,7 +99005,7 @@ return { [1]="avoid_shock_%_while_chilled" } }, - [4481]={ + [4476]={ [1]={ [1]={ limit={ @@ -98842,7 +99021,7 @@ return { [1]="avoid_stun_35%_per_active_herald" } }, - [4482]={ + [4477]={ [1]={ [1]={ limit={ @@ -98858,7 +99037,7 @@ return { [1]="avoid_stun_%_while_channeling_snipe" } }, - [4483]={ + [4478]={ [1]={ [1]={ limit={ @@ -98874,7 +99053,7 @@ return { [1]="avoid_stun_%_while_channelling" } }, - [4484]={ + [4479]={ [1]={ [1]={ limit={ @@ -98890,7 +99069,7 @@ return { [1]="avoid_stun_%_while_holding_shield" } }, - [4485]={ + [4480]={ [1]={ [1]={ limit={ @@ -98915,6 +99094,151 @@ return { [1]="ball_lightning_number_of_additional_projectiles" } }, + [4481]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks used by Ballistas have {0}% increased Attack Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Attacks used by Ballista have {0}% reduced Attack Speed" + } + }, + stats={ + [1]="ballista_attack_speed_+%" + } + }, + [4482]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Ballista Critical Damage Bonus" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Ballista Critical Damage Bonus" + } + }, + stats={ + [1]="ballista_critical_damage_+%" + } + }, + [4483]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Ballista Critical Hit Chance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Ballista Critical Hit Chance" + } + }, + stats={ + [1]="ballista_critical_hit_chance_+%" + } + }, + [4484]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Ballista damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Ballista damage" + } + }, + stats={ + [1]="ballista_damage_+%" + } + }, + [4485]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Ballista Immobilisation buildup" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Ballista Immobilisation buildup" + } + }, + stats={ + [1]="ballista_hit_damage_immobilisation_multiplier_+%" + } + }, [4486]={ [1]={ [1]={ @@ -99093,31 +99417,6 @@ return { } }, [4493]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Valour gained" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Valour gained" - } - }, - stats={ - [1]="banner_resource_gained_+%" - } - }, - [4494]={ [1]={ [1]={ limit={ @@ -99133,7 +99432,7 @@ return { [1]="banner_resource_maximum_+" } }, - [4495]={ + [4494]={ [1]={ [1]={ [1]={ @@ -99170,7 +99469,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_-2%_per_1" } }, - [4496]={ + [4495]={ [1]={ [1]={ limit={ @@ -99199,7 +99498,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_+%" } }, - [4497]={ + [4496]={ [1]={ [1]={ limit={ @@ -99215,7 +99514,7 @@ return { [1]="banner_skills_reserve_no_mana" } }, - [4498]={ + [4497]={ [1]={ [1]={ limit={ @@ -99244,7 +99543,7 @@ return { [1]="banner_taunt_duration_+%" } }, - [4499]={ + [4498]={ [1]={ [1]={ limit={ @@ -99260,6 +99559,22 @@ return { [1]="banners_always_have_max_valour" } }, + [4499]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Banners gain {0} Glory per second" + } + }, + stats={ + [1]="banners_gain_X_glory_per_second" + } + }, [4500]={ [1]={ [1]={ @@ -99372,7 +99687,7 @@ return { [2]="#" } }, - text="{0}% of Armour also applies to Chaos Damage taken from Hits" + text="{0:+d}% of Armour also applies to Chaos Damage" } }, stats={ @@ -99388,7 +99703,7 @@ return { [2]="#" } }, - text="{0}% of Armour also applies to Cold Damage taken from Hits" + text="{0:+d}% of Armour also applies to Cold Damage" } }, stats={ @@ -99404,7 +99719,7 @@ return { [2]="#" } }, - text="{0}% of Armour also applies to Fire Damage taken from Hits" + text="{0:+d}% of Armour also applies to Fire Damage" } }, stats={ @@ -99420,7 +99735,7 @@ return { [2]="#" } }, - text="{0}% of Armour also applies to Lightning Damage taken from Hits" + text="{0:+d}% of Armour also applies to Lightning Damage" } }, stats={ @@ -99436,7 +99751,7 @@ return { [2]="#" } }, - text="Armour also applies to Chaos Damage taken from Hits" + text="+100% of Armour also applies to Chaos Damage" } }, stats={ @@ -99452,7 +99767,7 @@ return { [2]="#" } }, - text="Armour also applies to Lightning damage taken from Hits" + text="+100% of Armour also applies to Lightning Damage" } }, stats={ @@ -99478,30 +99793,21 @@ return { [4511]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Chance to Block Attack Damage is Lucky" - }, - [2]={ [1]={ - k="canonical_line", - v=true + k="divide_by_one_hundred", + v=1 }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]=1, + [2]="#" } }, - text="Chance to Block Attack Damage is Unlucky" + text="{0:+d}% to Attack Critical Hit Chance per 1% missing Enemy Life" } }, stats={ - [1]="base_attack_block_luck" + [1]="base_attack_critical_strike_chance_permyriad_+_per_1_percent_enemy_missing_life" } }, [4512]={ @@ -99513,20 +99819,24 @@ return { [2]="#" } }, - text="Prevent {0:+d}% of Deflected Attack Damage" + text="{0}% increased Cost Efficiency of Attacks" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0:+d}% to amount of Deflected Attack Damage Prevented" + text="{0}% reduced Cost Efficiency of Attacks" } }, stats={ - [1]="base_attack_damage_%_deflected" + [1]="base_attack_skill_cost_efficiency_+%" } }, [4513]={ @@ -99600,6 +99910,31 @@ return { } }, [4516]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Chance to Block Damage is Lucky" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Chance to Block Attack Damage is Unlucky" + } + }, + stats={ + [1]="base_block_chance_luck" + } + }, + [4517]={ [1]={ [1]={ limit={ @@ -99615,7 +99950,7 @@ return { [1]="base_block_%_damage_taken" } }, - [4517]={ + [4518]={ [1]={ [1]={ [1]={ @@ -99628,14 +99963,14 @@ return { [2]="#" } }, - text="Gain Physical Thorns damage equal to {0:d}% of Armour on Equipped Body Armour" + text="Gain Physical Thorns damage equal to {0:d}% of Item Armour on Equipped Body Armour" } }, stats={ [1]="base_body_armour_permyriad_to_gain_as_physical_thorns_damage" } }, - [4518]={ + [4519]={ [1]={ [1]={ limit={ @@ -99664,7 +99999,7 @@ return { [1]="base_bone_golem_granted_buff_effect_+%" } }, - [4519]={ + [4520]={ [1]={ [1]={ limit={ @@ -99680,7 +100015,7 @@ return { [1]="base_cannot_gain_endurance_charges" } }, - [4520]={ + [4521]={ [1]={ [1]={ limit={ @@ -99696,7 +100031,32 @@ return { [1]="base_cannot_leech_energy_shield" } }, - [4521]={ + [4522]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Dazes on Hit" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Daze on Hit" + } + }, + stats={ + [1]="base_chance_to_daze_%" + } + }, + [4523]={ [1]={ [1]={ limit={ @@ -99721,7 +100081,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [4522]={ + [4524]={ [1]={ [1]={ limit={ @@ -99746,7 +100106,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [4523]={ + [4525]={ [1]={ [1]={ limit={ @@ -99775,7 +100135,7 @@ return { [1]="base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies" } }, - [4524]={ + [4526]={ [1]={ [1]={ limit={ @@ -99791,7 +100151,7 @@ return { [1]="base_chaos_damage_bypass_energy_shield_%" } }, - [4525]={ + [4527]={ [1]={ [1]={ limit={ @@ -99807,7 +100167,7 @@ return { [1]="base_chaos_damage_can_electrocute" } }, - [4526]={ + [4528]={ [1]={ [1]={ limit={ @@ -99816,14 +100176,14 @@ return { [2]="#" } }, - text="Chaos Damage from Hits also Contributes to Ignite Chance and Magnitude" + text="Chaos Damage from Hits also Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="base_chaos_damage_can_ignite" } }, - [4527]={ + [4529]={ [1]={ [1]={ limit={ @@ -99852,7 +100212,36 @@ return { [1]="base_charge_duration_+%" } }, - [4528]={ + [4530]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cooldown Recovery Rate per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cooldown Recovery Rate per 10 Tribute" + } + }, + stats={ + [1]="base_cooldown_speed_+%_per_10_tribute" + } + }, + [4531]={ [1]={ [1]={ limit={ @@ -99881,7 +100270,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [4529]={ + [4532]={ [1]={ [1]={ limit={ @@ -99897,7 +100286,115 @@ return { [1]="base_damage_bypass_ward_%" } }, - [4530]={ + [4533]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Prevent {0:+d}% of Damage from Deflected Hits" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d}% to amount of Damage Prevented by Deflection" + } + }, + stats={ + [1]="base_damage_%_deflected" + } + }, + [4534]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Prevent {0:+d}% of Damage from Deflected Critical Hits" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d}% to amount of Damage Prevented from Deflecting Critical Hits" + } + }, + stats={ + [1]="base_damage_%_deflected_vs_crit" + } + }, + [4535]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased damage taken per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced damage taken per 10 Tribute" + } + }, + stats={ + [1]="base_damage_taken_+%_per_10_tribute" + } + }, + [4536]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Damaging Ailments you inflict per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Damaging Ailments you inflict per 10 Tribute" + } + }, + stats={ + [1]="base_damaging_ailment_effect_+%_per_10_tribute" + } + }, + [4537]={ [1]={ [1]={ limit={ @@ -99913,7 +100410,7 @@ return { [1]="base_darkness" } }, - [4531]={ + [4538]={ [1]={ [1]={ [1]={ @@ -99933,7 +100430,7 @@ return { [1]="base_darkness_refresh_rate_ms" } }, - [4532]={ + [4539]={ [1]={ [1]={ limit={ @@ -99949,7 +100446,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [4533]={ + [4540]={ [1]={ [1]={ limit={ @@ -99965,7 +100462,7 @@ return { [1]="base_deal_no_fire_damage" } }, - [4534]={ + [4541]={ [1]={ [1]={ limit={ @@ -99981,7 +100478,7 @@ return { [1]="base_deal_no_lightning_damage" } }, - [4535]={ + [4542]={ [1]={ [1]={ limit={ @@ -99997,7 +100494,7 @@ return { [1]="base_deal_no_thorns_damage" } }, - [4536]={ + [4543]={ [1]={ [1]={ limit={ @@ -100026,7 +100523,71 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [4537]={ + [4544]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chance to Deflect is Lucky" + } + }, + stats={ + [1]="base_deflect_chance_luck" + } + }, + [4545]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chance to Deflect Damage is Lucky" + } + }, + stats={ + [1]="base_deflect_chance_luck" + } + }, + [4546]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Deflection Rating equal to {0}% of Evasion Rating per 25 Tribute" + } + }, + stats={ + [1]="base_deflection_rating_%_of_evasion_rating_per_25_tribute" + } + }, + [4547]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Dexterity per 25 Tribute" + } + }, + stats={ + [1]="base_dexterity_per_25_tribute" + } + }, + [4548]={ [1]={ [1]={ limit={ @@ -100051,7 +100612,23 @@ return { [1]="base_elemental_hit_damage_bypass_energy_shield_%" } }, - [4538]={ + [4549]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills have {0}% chance to not remove Endurance Charges but still count as consuming them" + } + }, + stats={ + [1]="base_endurance_charge_skip_consume_chance_%" + } + }, + [4550]={ [1]={ [1]={ limit={ @@ -100076,7 +100653,23 @@ return { [1]="base_extra_damage_rolls" } }, - [4539]={ + [4551]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills have {0}% chance to not remove Frenzy Charges but still count as consuming them" + } + }, + stats={ + [1]="base_frenzy_charge_skip_consume_chance_%" + } + }, + [4552]={ [1]={ [1]={ limit={ @@ -100105,7 +100698,7 @@ return { [1]="base_frozen_effect_on_self_+%" } }, - [4540]={ + [4553]={ [1]={ [1]={ limit={ @@ -100121,7 +100714,7 @@ return { [1]="base_immune_to_cold_ailments" } }, - [4541]={ + [4554]={ [1]={ [1]={ limit={ @@ -100137,7 +100730,7 @@ return { [1]="base_immune_to_freeze" } }, - [4542]={ + [4555]={ [1]={ [1]={ limit={ @@ -100153,7 +100746,7 @@ return { [1]="base_immune_to_ignite" } }, - [4543]={ + [4556]={ [1]={ [1]={ limit={ @@ -100169,7 +100762,7 @@ return { [1]="base_immune_to_shock" } }, - [4544]={ + [4557]={ [1]={ [1]={ limit={ @@ -100178,7 +100771,7 @@ return { [2]=99 } }, - text="{0}% chance to inflict Cold Exposure on Hit" + text="{0}% chance to inflict Exposure on Hit" }, [2]={ limit={ @@ -100187,14 +100780,14 @@ return { [2]="#" } }, - text="Inflict Cold Exposure on Hit" + text="Inflict Exposure on Hit" } }, stats={ [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [4545]={ + [4558]={ [1]={ [1]={ limit={ @@ -100203,7 +100796,7 @@ return { [2]=99 } }, - text="{0}% chance to inflict Fire Exposure on Hit" + text="{0}% chance to inflict Exposure on Hit" }, [2]={ limit={ @@ -100212,14 +100805,14 @@ return { [2]="#" } }, - text="Inflict Fire Exposure on Hit" + text="Inflict Exposure on Hit" } }, stats={ [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [4546]={ + [4559]={ [1]={ [1]={ limit={ @@ -100228,7 +100821,7 @@ return { [2]=99 } }, - text="{0}% chance to inflict Lightning Exposure on Hit" + text="{0}% chance to inflict Exposure on Hit" }, [2]={ limit={ @@ -100237,14 +100830,59 @@ return { [2]="#" } }, - text="Inflict Lightning Exposure on Hit" + text="Inflict Exposure on Hit" } }, stats={ [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [4547]={ + [4560]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Intelligence per 25 Tribute" + } + }, + stats={ + [1]="base_intelligence_per_25_tribute" + } + }, + [4561]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Life Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Life Cost Efficiency" + } + }, + stats={ + [1]="base_life_cost_efficiency_+%" + } + }, + [4562]={ [1]={ [1]={ limit={ @@ -100260,7 +100898,7 @@ return { [1]="base_life_cost_+_with_non_channelling_spells_%_maximum_life" } }, - [4548]={ + [4563]={ [1]={ [1]={ limit={ @@ -100276,7 +100914,7 @@ return { [1]="base_life_flasks_do_not_recover_life" } }, - [4549]={ + [4564]={ [1]={ [1]={ [1]={ @@ -100296,7 +100934,7 @@ return { [1]="base_life_leech_from_all_spell_damage_permyriad" } }, - [4550]={ + [4565]={ [1]={ [1]={ [1]={ @@ -100316,7 +100954,7 @@ return { [1]="base_life_leech_from_all_thorns_damage_permyriad" } }, - [4551]={ + [4566]={ [1]={ [1]={ limit={ @@ -100332,7 +100970,7 @@ return { [1]="base_life_recharges_like_energy_shield" } }, - [4552]={ + [4567]={ [1]={ [1]={ limit={ @@ -100348,7 +100986,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [4553]={ + [4568]={ [1]={ [1]={ limit={ @@ -100364,7 +101002,7 @@ return { [1]="base_limit_+" } }, - [4554]={ + [4569]={ [1]={ [1]={ limit={ @@ -100380,7 +101018,168 @@ return { [1]="base_main_hand_maim_on_hit_%" } }, - [4555]={ + [4570]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Off Hand attacks have Added Attack Damage equal to {0}% of the Damage of your Main Hand Weapon" + } + }, + stats={ + [1]="base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%" + } + }, + [4571]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%" + } + }, + [4572]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Curses" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Curses" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_curse_skills" + } + }, + [4573]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Marks" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Marks" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_mark_skills" + } + }, + [4574]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency per 10 Tribute" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_per_10_tribute" + } + }, + [4575]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency while on Low Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency while on Low Mana" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_while_on_low_mana" + } + }, + [4576]={ [1]={ [1]={ limit={ @@ -100396,7 +101195,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana" } }, - [4556]={ + [4577]={ [1]={ [1]={ limit={ @@ -100412,7 +101211,23 @@ return { [1]="base_max_fortification" } }, - [4557]={ + [4578]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Maximum Fire Resistance while Ignited" + } + }, + stats={ + [1]="base_maximum_fire_damage_resistance_%_while_ignited" + } + }, + [4579]={ [1]={ [1]={ limit={ @@ -100441,7 +101256,7 @@ return { [1]="base_minion_duration_+%" } }, - [4558]={ + [4580]={ [1]={ [1]={ limit={ @@ -100457,7 +101272,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [4559]={ + [4581]={ [1]={ [1]={ limit={ @@ -100482,7 +101297,7 @@ return { [1]="base_number_of_herald_scorpions_allowed" } }, - [4560]={ + [4582]={ [1]={ [1]={ limit={ @@ -100498,7 +101313,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [4561]={ + [4583]={ [1]={ [1]={ limit={ @@ -100523,7 +101338,7 @@ return { [1]="base_number_of_sigils_allowed_per_target" } }, - [4562]={ + [4584]={ [1]={ [1]={ limit={ @@ -100539,7 +101354,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [4563]={ + [4585]={ [1]={ [1]={ limit={ @@ -100555,7 +101370,7 @@ return { [1]="base_off_hand_chance_to_blind_on_hit_%" } }, - [4564]={ + [4586]={ [1]={ [1]={ limit={ @@ -100580,7 +101395,7 @@ return { [1]="base_onlsaught_on_hit_%_chance" } }, - [4565]={ + [4587]={ [1]={ [1]={ limit={ @@ -100596,7 +101411,7 @@ return { [1]="base_physical_damage_can_pin" } }, - [4566]={ + [4588]={ [1]={ [1]={ limit={ @@ -100629,7 +101444,23 @@ return { [1]="base_physical_damage_over_time_taken_+%" } }, - [4567]={ + [4589]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills have {0}% chance to not remove Power Charges but still count as consuming them" + } + }, + stats={ + [1]="base_power_charge_skip_consume_chance_%" + } + }, + [4590]={ [1]={ [1]={ [1]={ @@ -100649,7 +101480,7 @@ return { [1]="base_rage_regeneration_per_minute" } }, - [4568]={ + [4591]={ [1]={ [1]={ limit={ @@ -100665,7 +101496,36 @@ return { [1]="base_should_have_arcane_surge_from_stat" } }, - [4569]={ + [4592]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency" + } + }, + stats={ + [1]="base_skill_cost_efficiency_+%" + } + }, + [4593]={ [1]={ [1]={ limit={ @@ -100690,7 +101550,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [4570]={ + [4594]={ [1]={ [1]={ [1]={ @@ -100723,7 +101583,7 @@ return { [1]="base_skill_detonation_time" } }, - [4571]={ + [4595]={ [1]={ [1]={ limit={ @@ -100739,7 +101599,7 @@ return { [1]="base_skill_gain_life_cost_%_of_mana_cost" } }, - [4572]={ + [4596]={ [1]={ [1]={ limit={ @@ -100768,7 +101628,36 @@ return { [1]="base_slow_potency_+%" } }, - [4573]={ + [4597]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spells have {0}% increased Cooldown Recovery Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spells have {0}% reduced Cooldown Recovery Rate" + } + }, + stats={ + [1]="base_spell_cooldown_speed_+%" + } + }, + [4598]={ [1]={ [1]={ limit={ @@ -100784,7 +101673,7 @@ return { [1]="base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon" } }, - [4574]={ + [4599]={ [1]={ [1]={ [1]={ @@ -100804,7 +101693,7 @@ return { [1]="base_spell_critical_strike_chance_override_permyriad" } }, - [4575]={ + [4600]={ [1]={ [1]={ limit={ @@ -100820,7 +101709,81 @@ return { [1]="base_spell_projectile_block_%" } }, - [4576]={ + [4601]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency of Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit Reservation Efficiency of Skills" + } + }, + stats={ + [1]="base_spirit_reservation_efficiency_+%" + } + }, + [4602]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency of Skills per 20 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit Reservation Efficiency of Skills per 20 Tribute" + } + }, + stats={ + [1]="base_spirit_reservation_efficiency_+%_per_20_tribute" + } + }, + [4603]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Strength per 25 Tribute" + } + }, + stats={ + [1]="base_strength_per_25_tribute" + } + }, + [4604]={ [1]={ [1]={ [1]={ @@ -100840,7 +101803,7 @@ return { [1]="base_thorns_critical_strike_chance" } }, - [4577]={ + [4605]={ [1]={ [1]={ limit={ @@ -100869,7 +101832,7 @@ return { [1]="base_thorns_critical_strike_multiplier_+" } }, - [4578]={ + [4606]={ [1]={ [1]={ limit={ @@ -100894,7 +101857,7 @@ return { [1]="base_total_number_of_sigils_allowed" } }, - [4579]={ + [4607]={ [1]={ [1]={ limit={ @@ -100910,7 +101873,7 @@ return { [1]="base_unaffected_by_poison" } }, - [4580]={ + [4608]={ [1]={ [1]={ limit={ @@ -100939,7 +101902,7 @@ return { [1]="base_unholy_might_granted_magnitude_+%" } }, - [4581]={ + [4609]={ [1]={ [1]={ limit={ @@ -100968,7 +101931,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [4582]={ + [4610]={ [1]={ [1]={ [1]={ @@ -100988,7 +101951,7 @@ return { [1]="base_weapon_trap_total_rotation_%" } }, - [4583]={ + [4611]={ [1]={ [1]={ limit={ @@ -101017,7 +101980,7 @@ return { [1]="battlemages_cry_buff_effect_+%" } }, - [4584]={ + [4612]={ [1]={ [1]={ limit={ @@ -101042,7 +102005,7 @@ return { [1]="battlemages_cry_exerts_x_additional_attacks" } }, - [4585]={ + [4613]={ [1]={ [1]={ limit={ @@ -101058,7 +102021,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [4586]={ + [4614]={ [1]={ [1]={ limit={ @@ -101087,7 +102050,7 @@ return { [1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines" } }, - [4587]={ + [4615]={ [1]={ [1]={ limit={ @@ -101116,7 +102079,7 @@ return { [1]="bear_trap_damage_taken_+%_from_traps_and_mines" } }, - [4588]={ + [4616]={ [1]={ [1]={ limit={ @@ -101145,7 +102108,7 @@ return { [1]="bear_trap_movement_speed_+%_final" } }, - [4589]={ + [4617]={ [1]={ [1]={ limit={ @@ -101174,7 +102137,7 @@ return { [1]="belt_enchant_enemies_you_taunt_have_area_damage_+%_final" } }, - [4590]={ + [4618]={ [1]={ [1]={ limit={ @@ -101199,7 +102162,7 @@ return { [1]="local_charm_slots" } }, - [4591]={ + [4619]={ [1]={ [1]={ limit={ @@ -101228,7 +102191,7 @@ return { [1]="berserk_buff_effect_+%" } }, - [4592]={ + [4620]={ [1]={ [1]={ limit={ @@ -101261,7 +102224,7 @@ return { [1]="berserk_rage_loss_+%" } }, - [4593]={ + [4621]={ [1]={ [1]={ [1]={ @@ -101281,7 +102244,7 @@ return { [1]="berserker_gain_rage_on_attack_hit_cooldown_ms" } }, - [4594]={ + [4622]={ [1]={ [1]={ limit={ @@ -101297,7 +102260,7 @@ return { [1]="berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage" } }, - [4595]={ + [4623]={ [1]={ [1]={ limit={ @@ -101313,7 +102276,7 @@ return { [1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies" } }, - [4596]={ + [4624]={ [1]={ [1]={ limit={ @@ -101329,7 +102292,7 @@ return { [1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies" } }, - [4597]={ + [4625]={ [1]={ [1]={ limit={ @@ -101354,7 +102317,7 @@ return { [1]="berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final" } }, - [4598]={ + [4626]={ [1]={ [1]={ limit={ @@ -101383,7 +102346,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [4599]={ + [4627]={ [1]={ [1]={ limit={ @@ -101412,7 +102375,7 @@ return { [1]="blackhole_pulse_frequency_+%" } }, - [4600]={ + [4628]={ [1]={ [1]={ limit={ @@ -101441,7 +102404,7 @@ return { [1]="blackstar_moonlight_cold_damage_taken_+%_final" } }, - [4601]={ + [4629]={ [1]={ [1]={ limit={ @@ -101470,7 +102433,7 @@ return { [1]="blackstar_moonlight_fire_damage_taken_+%_final" } }, - [4602]={ + [4630]={ [1]={ [1]={ limit={ @@ -101499,7 +102462,7 @@ return { [1]="blackstar_sunlight_cold_damage_taken_+%_final" } }, - [4603]={ + [4631]={ [1]={ [1]={ limit={ @@ -101528,7 +102491,7 @@ return { [1]="blackstar_sunlight_fire_damage_taken_+%_final" } }, - [4604]={ + [4632]={ [1]={ [1]={ limit={ @@ -101557,7 +102520,7 @@ return { [1]="blade_blase_damage_+%" } }, - [4605]={ + [4633]={ [1]={ [1]={ limit={ @@ -101586,7 +102549,7 @@ return { [1]="blade_blast_skill_area_of_effect_+%" } }, - [4606]={ + [4634]={ [1]={ [1]={ limit={ @@ -101615,7 +102578,7 @@ return { [1]="blade_blast_trigger_detonation_area_of_effect_+%" } }, - [4607]={ + [4635]={ [1]={ [1]={ limit={ @@ -101644,7 +102607,7 @@ return { [1]="blade_trap_damage_+%" } }, - [4608]={ + [4636]={ [1]={ [1]={ limit={ @@ -101673,7 +102636,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%" } }, - [4609]={ + [4637]={ [1]={ [1]={ limit={ @@ -101698,7 +102661,7 @@ return { [1]="blade_vortex_blade_blast_impale_on_hit_%_chance" } }, - [4610]={ + [4638]={ [1]={ [1]={ limit={ @@ -101714,7 +102677,7 @@ return { [1]="blade_vortex_blade_deal_no_non_physical_damage" } }, - [4611]={ + [4639]={ [1]={ [1]={ limit={ @@ -101730,7 +102693,7 @@ return { [1]="blade_vortex_critical_strike_multiplier_+_per_blade" } }, - [4612]={ + [4640]={ [1]={ [1]={ limit={ @@ -101755,7 +102718,7 @@ return { [1]="bladefall_number_of_volleys" } }, - [4613]={ + [4641]={ [1]={ [1]={ limit={ @@ -101771,7 +102734,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [4614]={ + [4642]={ [1]={ [1]={ limit={ @@ -101800,7 +102763,7 @@ return { [1]="bladestorm_damage_+%" } }, - [4615]={ + [4643]={ [1]={ [1]={ limit={ @@ -101816,7 +102779,7 @@ return { [1]="bladestorm_maximum_number_of_storms_allowed" } }, - [4616]={ + [4644]={ [1]={ [1]={ limit={ @@ -101845,7 +102808,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [4617]={ + [4645]={ [1]={ [1]={ limit={ @@ -101874,7 +102837,7 @@ return { [1]="blazing_salvo_damage_+%" } }, - [4618]={ + [4646]={ [1]={ [1]={ limit={ @@ -101899,7 +102862,7 @@ return { [1]="blazing_salvo_number_of_additional_projectiles" } }, - [4619]={ + [4647]={ [1]={ [1]={ limit={ @@ -101915,7 +102878,7 @@ return { [1]="blazing_salvo_projectiles_fork_when_passing_a_flame_wall" } }, - [4620]={ + [4648]={ [1]={ [1]={ limit={ @@ -101944,7 +102907,7 @@ return { [1]="bleed_chance_+%" } }, - [4621]={ + [4649]={ [1]={ [1]={ limit={ @@ -101960,7 +102923,7 @@ return { [1]="bleed_on_crit_%" } }, - [4622]={ + [4650]={ [1]={ [1]={ limit={ @@ -101989,7 +102952,7 @@ return { [1]="base_bleeding_effect_+%" } }, - [4623]={ + [4651]={ [1]={ [1]={ limit={ @@ -102018,7 +102981,7 @@ return { [1]="bleeding_effect_+%_per_endurance_charge" } }, - [4624]={ + [4652]={ [1]={ [1]={ limit={ @@ -102047,7 +103010,7 @@ return { [1]="bleeding_effect_+%_per_frenzy_charge" } }, - [4625]={ + [4653]={ [1]={ [1]={ limit={ @@ -102076,7 +103039,7 @@ return { [1]="bleeding_effect_+%_per_impale_on_enemy" } }, - [4626]={ + [4654]={ [1]={ [1]={ limit={ @@ -102105,7 +103068,7 @@ return { [1]="bleeding_effect_+%_per_rage_if_equipped_axe" } }, - [4627]={ + [4655]={ [1]={ [1]={ limit={ @@ -102134,7 +103097,7 @@ return { [1]="bleeding_effect_+%_vs_poisoned_enemies" } }, - [4628]={ + [4656]={ [1]={ [1]={ limit={ @@ -102163,7 +103126,39 @@ return { [1]="bleeding_effect_+%_when_consuming_incision" } }, - [4629]={ + [4657]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies you inflict Bleeding on cannot Regenerate Life" + } + }, + stats={ + [1]="bleeding_enemies_cannot_regenerate_life" + } + }, + [4658]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Magnitude of Bleeding you inflict against Pinned Enemies" + } + }, + stats={ + [1]="bleeding_magnitude_+%_against_pinned_enemies" + } + }, + [4659]={ [1]={ [1]={ limit={ @@ -102179,7 +103174,7 @@ return { [1]="bleeding_no_extra_damage_while_target_is_moving" } }, - [4630]={ + [4660]={ [1]={ [1]={ limit={ @@ -102208,7 +103203,7 @@ return { [1]="bleeding_on_self_expire_speed_+%_while_moving" } }, - [4631]={ + [4661]={ [1]={ [1]={ limit={ @@ -102224,7 +103219,7 @@ return { [1]="bleeding_reflected_to_self" } }, - [4632]={ + [4662]={ [1]={ [1]={ limit={ @@ -102240,7 +103235,7 @@ return { [1]="bleeding_stacks_up_to_x_times" } }, - [4633]={ + [4663]={ [1]={ [1]={ limit={ @@ -102256,7 +103251,7 @@ return { [1]="blight_arc_tower_additional_chains" } }, - [4634]={ + [4664]={ [1]={ [1]={ limit={ @@ -102272,7 +103267,7 @@ return { [1]="blight_arc_tower_additional_repeats" } }, - [4635]={ + [4665]={ [1]={ [1]={ limit={ @@ -102288,7 +103283,7 @@ return { [1]="blight_arc_tower_chance_to_sap_%" } }, - [4636]={ + [4666]={ [1]={ [1]={ limit={ @@ -102317,7 +103312,7 @@ return { [1]="blight_arc_tower_damage_+%" } }, - [4637]={ + [4667]={ [1]={ [1]={ limit={ @@ -102346,7 +103341,7 @@ return { [1]="blight_arc_tower_range_+%" } }, - [4638]={ + [4668]={ [1]={ [1]={ limit={ @@ -102362,7 +103357,7 @@ return { [1]="blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [4639]={ + [4669]={ [1]={ [1]={ limit={ @@ -102391,7 +103386,7 @@ return { [1]="blight_cast_speed_+%" } }, - [4640]={ + [4670]={ [1]={ [1]={ limit={ @@ -102420,7 +103415,7 @@ return { [1]="blight_chilling_tower_chill_effect_+%" } }, - [4641]={ + [4671]={ [1]={ [1]={ limit={ @@ -102449,7 +103444,7 @@ return { [1]="blight_chilling_tower_damage_+%" } }, - [4642]={ + [4672]={ [1]={ [1]={ limit={ @@ -102478,7 +103473,7 @@ return { [1]="blight_chilling_tower_duration_+%" } }, - [4643]={ + [4673]={ [1]={ [1]={ limit={ @@ -102507,7 +103502,7 @@ return { [1]="blight_chilling_tower_range_+%" } }, - [4644]={ + [4674]={ [1]={ [1]={ limit={ @@ -102536,7 +103531,7 @@ return { [1]="blight_empowering_tower_buff_effect_+%" } }, - [4645]={ + [4675]={ [1]={ [1]={ limit={ @@ -102565,7 +103560,7 @@ return { [1]="blight_empowering_tower_grant_cast_speed_+%" } }, - [4646]={ + [4676]={ [1]={ [1]={ limit={ @@ -102594,7 +103589,7 @@ return { [1]="blight_empowering_tower_grant_damage_+%" } }, - [4647]={ + [4677]={ [1]={ [1]={ limit={ @@ -102619,7 +103614,7 @@ return { [1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage" } }, - [4648]={ + [4678]={ [1]={ [1]={ limit={ @@ -102648,7 +103643,7 @@ return { [1]="blight_empowering_tower_range_+%" } }, - [4649]={ + [4679]={ [1]={ [1]={ limit={ @@ -102673,7 +103668,7 @@ return { [1]="blight_fireball_tower_additional_projectiles_+" } }, - [4650]={ + [4680]={ [1]={ [1]={ limit={ @@ -102702,7 +103697,7 @@ return { [1]="blight_fireball_tower_cast_speed_+%" } }, - [4651]={ + [4681]={ [1]={ [1]={ limit={ @@ -102731,7 +103726,7 @@ return { [1]="blight_fireball_tower_damage_+%" } }, - [4652]={ + [4682]={ [1]={ [1]={ limit={ @@ -102747,7 +103742,7 @@ return { [1]="blight_fireball_tower_projectiles_nova" } }, - [4653]={ + [4683]={ [1]={ [1]={ limit={ @@ -102776,7 +103771,7 @@ return { [1]="blight_fireball_tower_range_+%" } }, - [4654]={ + [4684]={ [1]={ [1]={ limit={ @@ -102805,7 +103800,7 @@ return { [1]="blight_flamethrower_tower_cast_speed_+%" } }, - [4655]={ + [4685]={ [1]={ [1]={ limit={ @@ -102821,7 +103816,7 @@ return { [1]="blight_flamethrower_tower_chance_to_scorch_%" } }, - [4656]={ + [4686]={ [1]={ [1]={ limit={ @@ -102850,7 +103845,7 @@ return { [1]="blight_flamethrower_tower_damage_+%" } }, - [4657]={ + [4687]={ [1]={ [1]={ limit={ @@ -102866,7 +103861,7 @@ return { [1]="blight_flamethrower_tower_full_damage_fire_enemies" } }, - [4658]={ + [4688]={ [1]={ [1]={ limit={ @@ -102895,7 +103890,7 @@ return { [1]="blight_flamethrower_tower_range_+%" } }, - [4659]={ + [4689]={ [1]={ [1]={ limit={ @@ -102911,7 +103906,7 @@ return { [1]="blight_freezebolt_tower_chance_to_brittle_%" } }, - [4660]={ + [4690]={ [1]={ [1]={ limit={ @@ -102940,7 +103935,7 @@ return { [1]="blight_freezebolt_tower_damage_+%" } }, - [4661]={ + [4691]={ [1]={ [1]={ limit={ @@ -102956,7 +103951,7 @@ return { [1]="blight_freezebolt_tower_full_damage_cold_enemies" } }, - [4662]={ + [4692]={ [1]={ [1]={ limit={ @@ -102981,7 +103976,7 @@ return { [1]="blight_freezebolt_tower_projectiles_+" } }, - [4663]={ + [4693]={ [1]={ [1]={ limit={ @@ -103010,7 +104005,7 @@ return { [1]="blight_freezebolt_tower_range_+%" } }, - [4664]={ + [4694]={ [1]={ [1]={ limit={ @@ -103026,7 +104021,7 @@ return { [1]="blight_glacialcage_tower_area_of_effect_+%" } }, - [4665]={ + [4695]={ [1]={ [1]={ limit={ @@ -103055,7 +104050,7 @@ return { [1]="blight_glacialcage_tower_cooldown_recovery_+%" } }, - [4666]={ + [4696]={ [1]={ [1]={ limit={ @@ -103084,7 +104079,7 @@ return { [1]="blight_glacialcage_tower_duration_+%" } }, - [4667]={ + [4697]={ [1]={ [1]={ limit={ @@ -103113,7 +104108,7 @@ return { [1]="blight_glacialcage_tower_enemy_damage_taken_+%" } }, - [4668]={ + [4698]={ [1]={ [1]={ limit={ @@ -103142,7 +104137,7 @@ return { [1]="blight_glacialcage_tower_range_+%" } }, - [4669]={ + [4699]={ [1]={ [1]={ limit={ @@ -103158,7 +104153,7 @@ return { [1]="blight_hinder_enemy_chaos_damage_taken_+%" } }, - [4670]={ + [4700]={ [1]={ [1]={ limit={ @@ -103187,7 +104182,7 @@ return { [1]="blight_imbuing_tower_buff_effect_+%" } }, - [4671]={ + [4701]={ [1]={ [1]={ limit={ @@ -103216,7 +104211,7 @@ return { [1]="blight_imbuing_tower_grant_critical_strike_+%" } }, - [4672]={ + [4702]={ [1]={ [1]={ limit={ @@ -103245,7 +104240,7 @@ return { [1]="blight_imbuing_tower_grant_damage_+%" } }, - [4673]={ + [4703]={ [1]={ [1]={ limit={ @@ -103261,7 +104256,7 @@ return { [1]="blight_imbuing_tower_grants_onslaught" } }, - [4674]={ + [4704]={ [1]={ [1]={ limit={ @@ -103290,7 +104285,7 @@ return { [1]="blight_imbuing_tower_range_+%" } }, - [4675]={ + [4705]={ [1]={ [1]={ limit={ @@ -103319,7 +104314,7 @@ return { [1]="blight_lightningstorm_tower_area_of_effect_+%" } }, - [4676]={ + [4706]={ [1]={ [1]={ limit={ @@ -103348,7 +104343,7 @@ return { [1]="blight_lightningstorm_tower_damage_+%" } }, - [4677]={ + [4707]={ [1]={ [1]={ limit={ @@ -103377,7 +104372,7 @@ return { [1]="blight_lightningstorm_tower_delay_+%" } }, - [4678]={ + [4708]={ [1]={ [1]={ limit={ @@ -103406,7 +104401,7 @@ return { [1]="blight_lightningstorm_tower_range_+%" } }, - [4679]={ + [4709]={ [1]={ [1]={ limit={ @@ -103422,7 +104417,7 @@ return { [1]="blight_lightningstorm_tower_storms_on_enemies" } }, - [4680]={ + [4710]={ [1]={ [1]={ limit={ @@ -103447,7 +104442,7 @@ return { [1]="blight_meteor_tower_additional_meteor_+" } }, - [4681]={ + [4711]={ [1]={ [1]={ limit={ @@ -103463,7 +104458,7 @@ return { [1]="blight_meteor_tower_always_stun" } }, - [4682]={ + [4712]={ [1]={ [1]={ [1]={ @@ -103483,7 +104478,7 @@ return { [1]="blight_meteor_tower_creates_burning_ground_ms" } }, - [4683]={ + [4713]={ [1]={ [1]={ limit={ @@ -103512,7 +104507,7 @@ return { [1]="blight_meteor_tower_damage_+%" } }, - [4684]={ + [4714]={ [1]={ [1]={ limit={ @@ -103541,7 +104536,7 @@ return { [1]="blight_meteor_tower_range_+%" } }, - [4685]={ + [4715]={ [1]={ [1]={ limit={ @@ -103579,7 +104574,7 @@ return { [1]="blight_scout_tower_additional_minions_+" } }, - [4686]={ + [4716]={ [1]={ [1]={ limit={ @@ -103608,7 +104603,7 @@ return { [1]="blight_scout_tower_minion_damage_+%" } }, - [4687]={ + [4717]={ [1]={ [1]={ limit={ @@ -103637,7 +104632,7 @@ return { [1]="blight_scout_tower_minion_life_+%" } }, - [4688]={ + [4718]={ [1]={ [1]={ limit={ @@ -103666,7 +104661,7 @@ return { [1]="blight_scout_tower_minion_movement_speed_+%" } }, - [4689]={ + [4719]={ [1]={ [1]={ limit={ @@ -103682,7 +104677,7 @@ return { [1]="blight_scout_tower_minions_inflict_malediction" } }, - [4690]={ + [4720]={ [1]={ [1]={ limit={ @@ -103711,7 +104706,7 @@ return { [1]="blight_scout_tower_range_+%" } }, - [4691]={ + [4721]={ [1]={ [1]={ limit={ @@ -103740,7 +104735,7 @@ return { [1]="blight_secondary_skill_effect_duration_+%" } }, - [4692]={ + [4722]={ [1]={ [1]={ limit={ @@ -103765,7 +104760,7 @@ return { [1]="blight_seismic_tower_additional_cascades_+" } }, - [4693]={ + [4723]={ [1]={ [1]={ limit={ @@ -103794,7 +104789,7 @@ return { [1]="blight_seismic_tower_cascade_range_+%" } }, - [4694]={ + [4724]={ [1]={ [1]={ limit={ @@ -103823,7 +104818,7 @@ return { [1]="blight_seismic_tower_damage_+%" } }, - [4695]={ + [4725]={ [1]={ [1]={ limit={ @@ -103852,7 +104847,7 @@ return { [1]="blight_seismic_tower_range_+%" } }, - [4696]={ + [4726]={ [1]={ [1]={ limit={ @@ -103881,7 +104876,7 @@ return { [1]="blight_seismic_tower_stun_duration_+%" } }, - [4697]={ + [4727]={ [1]={ [1]={ limit={ @@ -103910,7 +104905,7 @@ return { [1]="blight_sentinel_tower_minion_damage_+%" } }, - [4698]={ + [4728]={ [1]={ [1]={ limit={ @@ -103939,7 +104934,7 @@ return { [1]="blight_sentinel_tower_minion_life_+%" } }, - [4699]={ + [4729]={ [1]={ [1]={ limit={ @@ -103968,7 +104963,7 @@ return { [1]="blight_sentinel_tower_minion_movement_speed_+%" } }, - [4700]={ + [4730]={ [1]={ [1]={ limit={ @@ -103997,7 +104992,7 @@ return { [1]="blight_sentinel_tower_range_+%" } }, - [4701]={ + [4731]={ [1]={ [1]={ limit={ @@ -104026,7 +105021,7 @@ return { [1]="blight_shocking_tower_damage_+%" } }, - [4702]={ + [4732]={ [1]={ [1]={ limit={ @@ -104055,7 +105050,7 @@ return { [1]="blight_shocking_tower_range_+%" } }, - [4703]={ + [4733]={ [1]={ [1]={ limit={ @@ -104071,7 +105066,7 @@ return { [1]="blight_shocknova_tower_full_damage_lightning_enemies" } }, - [4704]={ + [4734]={ [1]={ [1]={ limit={ @@ -104087,7 +105082,7 @@ return { [1]="blight_shocknova_tower_shock_additional_repeats" } }, - [4705]={ + [4735]={ [1]={ [1]={ limit={ @@ -104116,7 +105111,7 @@ return { [1]="blight_shocknova_tower_shock_effect_+%" } }, - [4706]={ + [4736]={ [1]={ [1]={ limit={ @@ -104145,7 +105140,7 @@ return { [1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%" } }, - [4707]={ + [4737]={ [1]={ [1]={ limit={ @@ -104174,7 +105169,7 @@ return { [1]="blight_skill_area_of_effect_+%_after_1_second_channelling" } }, - [4708]={ + [4738]={ [1]={ [1]={ limit={ @@ -104203,7 +105198,7 @@ return { [1]="blight_smothering_tower_buff_effect_+%" } }, - [4709]={ + [4739]={ [1]={ [1]={ limit={ @@ -104219,7 +105214,7 @@ return { [1]="blight_smothering_tower_freeze_shock_ignite_%" } }, - [4710]={ + [4740]={ [1]={ [1]={ limit={ @@ -104248,7 +105243,7 @@ return { [1]="blight_smothering_tower_grant_damage_+%" } }, - [4711]={ + [4741]={ [1]={ [1]={ limit={ @@ -104277,7 +105272,7 @@ return { [1]="blight_smothering_tower_grant_movement_speed_+%" } }, - [4712]={ + [4742]={ [1]={ [1]={ limit={ @@ -104306,7 +105301,7 @@ return { [1]="blight_smothering_tower_range_+%" } }, - [4713]={ + [4743]={ [1]={ [1]={ limit={ @@ -104335,7 +105330,7 @@ return { [1]="blight_stonegaze_tower_cooldown_recovery_+%" } }, - [4714]={ + [4744]={ [1]={ [1]={ limit={ @@ -104364,7 +105359,7 @@ return { [1]="blight_stonegaze_tower_duration_+%" } }, - [4715]={ + [4745]={ [1]={ [1]={ limit={ @@ -104380,7 +105375,7 @@ return { [1]="blight_stonegaze_tower_petrified_enemies_take_damage_+%" } }, - [4716]={ + [4746]={ [1]={ [1]={ limit={ @@ -104409,7 +105404,7 @@ return { [1]="blight_stonegaze_tower_petrify_tick_speed_+%" } }, - [4717]={ + [4747]={ [1]={ [1]={ limit={ @@ -104438,7 +105433,7 @@ return { [1]="blight_stonegaze_tower_range_+%" } }, - [4718]={ + [4748]={ [1]={ [1]={ limit={ @@ -104467,7 +105462,7 @@ return { [1]="blight_summoning_tower_minion_damage_+%" } }, - [4719]={ + [4749]={ [1]={ [1]={ limit={ @@ -104496,7 +105491,7 @@ return { [1]="blight_summoning_tower_minion_life_+%" } }, - [4720]={ + [4750]={ [1]={ [1]={ limit={ @@ -104525,7 +105520,7 @@ return { [1]="blight_summoning_tower_minion_movement_speed_+%" } }, - [4721]={ + [4751]={ [1]={ [1]={ limit={ @@ -104541,7 +105536,7 @@ return { [1]="blight_summoning_tower_minions_summoned_+" } }, - [4722]={ + [4752]={ [1]={ [1]={ limit={ @@ -104570,7 +105565,7 @@ return { [1]="blight_summoning_tower_range_+%" } }, - [4723]={ + [4753]={ [1]={ [1]={ limit={ @@ -104599,7 +105594,7 @@ return { [1]="blight_temporal_tower_buff_effect_+%" } }, - [4724]={ + [4754]={ [1]={ [1]={ limit={ @@ -104628,7 +105623,7 @@ return { [1]="blight_temporal_tower_grant_you_action_speed_-%" } }, - [4725]={ + [4755]={ [1]={ [1]={ limit={ @@ -104644,7 +105639,7 @@ return { [1]="blight_temporal_tower_grants_stun_immunity" } }, - [4726]={ + [4756]={ [1]={ [1]={ limit={ @@ -104673,7 +105668,7 @@ return { [1]="blight_temporal_tower_range_+%" } }, - [4727]={ + [4757]={ [1]={ [1]={ limit={ @@ -104702,7 +105697,7 @@ return { [1]="blight_temporal_tower_tick_speed_+%" } }, - [4728]={ + [4758]={ [1]={ [1]={ [1]={ @@ -104722,7 +105717,7 @@ return { [1]="blight_tertiary_skill_effect_duration" } }, - [4729]={ + [4759]={ [1]={ [1]={ limit={ @@ -104751,7 +105746,7 @@ return { [1]="blight_tower_arc_damage_+%" } }, - [4730]={ + [4760]={ [1]={ [1]={ limit={ @@ -104780,7 +105775,7 @@ return { [1]="blight_tower_chilling_cost_+%" } }, - [4731]={ + [4761]={ [1]={ [1]={ limit={ @@ -104796,7 +105791,7 @@ return { [1]="blight_tower_damage_per_tower_type_+%" } }, - [4732]={ + [4762]={ [1]={ [1]={ limit={ @@ -104821,7 +105816,7 @@ return { [1]="blight_tower_fireball_additional_projectile" } }, - [4733]={ + [4763]={ [1]={ [1]={ limit={ @@ -104837,7 +105832,7 @@ return { [1]="blighted_map_chest_reward_lucky_count" } }, - [4734]={ + [4764]={ [1]={ [1]={ limit={ @@ -104866,7 +105861,7 @@ return { [1]="blighted_map_tower_damage_+%_final" } }, - [4735]={ + [4765]={ [1]={ [1]={ limit={ @@ -104895,7 +105890,7 @@ return { [1]="blind_chance_+%" } }, - [4736]={ + [4766]={ [1]={ [1]={ limit={ @@ -104920,7 +105915,7 @@ return { [1]="blind_chilled_enemies_on_hit_%" } }, - [4737]={ + [4767]={ [1]={ [1]={ limit={ @@ -104936,7 +105931,7 @@ return { [1]="blind_does_not_affect_chance_to_hit" } }, - [4738]={ + [4768]={ [1]={ [1]={ limit={ @@ -104952,7 +105947,7 @@ return { [1]="blind_does_not_affect_light_radius" } }, - [4739]={ + [4769]={ [1]={ [1]={ limit={ @@ -104981,7 +105976,7 @@ return { [1]="blind_effect_+%" } }, - [4740]={ + [4770]={ [1]={ [1]={ limit={ @@ -104997,7 +105992,7 @@ return { [1]="blind_enemies_when_hit_%_chance" } }, - [4741]={ + [4771]={ [1]={ [1]={ limit={ @@ -105022,7 +106017,7 @@ return { [1]="blind_enemies_when_hit_while_affected_by_grace_%_chance" } }, - [4742]={ + [4772]={ [1]={ [1]={ limit={ @@ -105038,7 +106033,7 @@ return { [1]="blind_enemies_when_they_stun_you" } }, - [4743]={ + [4773]={ [1]={ [1]={ limit={ @@ -105054,7 +106049,7 @@ return { [1]="blind_on_poison_inflicted" } }, - [4744]={ + [4774]={ [1]={ [1]={ limit={ @@ -105070,7 +106065,7 @@ return { [1]="blind_reflected_to_self" } }, - [4745]={ + [4775]={ [1]={ [1]={ limit={ @@ -105099,7 +106094,7 @@ return { [1]="blink_and_mirror_arrow_cooldown_speed_+%" } }, - [4746]={ + [4776]={ [1]={ [1]={ limit={ @@ -105128,7 +106123,7 @@ return { [1]="block_and_stun_+%_recovery_per_fortification" } }, - [4747]={ + [4777]={ [1]={ [1]={ limit={ @@ -105137,14 +106132,14 @@ return { [2]="#" } }, - text="{0:+d}% Chance to Block Attack Damage from Cursed Enemies" + text="{0}% increased Block chance against Projectiles" } }, stats={ - [1]="block_chance_%_vs_cursed_enemies" + [1]="block_chance_+%_against_projectiles" } }, - [4748]={ + [4778]={ [1]={ [1]={ limit={ @@ -105153,14 +106148,27 @@ return { [2]="#" } }, - text="{0}% increased Block chance against Projectiles" + text="{0}% increased Chance to Block if you've Blocked with Active Block Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Chance to Block if you've Blocked with Active Block Recently" } }, stats={ - [1]="block_chance_+%_against_projectiles" + [1]="block_chance_+%_if_blocked_with_active_block_recently" } }, - [4749]={ + [4779]={ [1]={ [1]={ limit={ @@ -105169,43 +106177,48 @@ return { [2]="#" } }, - text="{0}% increased Chance to Block if you've Blocked with Active Block Recently" + text="{0}% increased Block chance if you have at least 100 Tribute" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% reduced Chance to Block if you've Blocked with Active Block Recently" + text="{0}% reduced Block chance if you have at least 100 Tribute" } }, stats={ - [1]="block_chance_+%_if_blocked_with_active_block_recently" + [1]="block_chance_+%_if_you_have_at_least_100_tribute" } }, - [4750]={ + [4780]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Gain {0}% Base Chance to Block from Equipped Shield instead of the Shield's value" + text="{0}% increased Block chance while Surrounded" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Block chance while Surrounded" } }, stats={ - [1]="block_chance_from_equipped_shield_is_%" + [1]="block_chance_+%_while_surrounded" } }, - [4751]={ + [4781]={ [1]={ [1]={ limit={ @@ -105214,14 +106227,14 @@ return { [2]="#" } }, - text="Block chance is Lucky" + text="Gain {0}% Base Chance to Block from Equipped Shield instead of the Shield's value" } }, stats={ - [1]="block_chance_is_lucky" + [1]="block_chance_from_equipped_shield_is_%" } }, - [4752]={ + [4782]={ [1]={ [1]={ limit={ @@ -105237,7 +106250,23 @@ return { [1]="block_%_damage_taken_from_elemental" } }, - [4753]={ + [4783]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You take {0}% of damage from Blocked Hits while Active Blocking" + } + }, + stats={ + [1]="block_%_damage_taken_while_active_blocking" + } + }, + [4784]={ [1]={ [1]={ limit={ @@ -105253,7 +106282,7 @@ return { [1]="block_%_if_blocked_an_attack_recently" } }, - [4754]={ + [4785]={ [1]={ [1]={ limit={ @@ -105269,23 +106298,36 @@ return { [1]="block_%_while_affected_by_determination" } }, - [4755]={ + [4786]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d}% chance to Block Spell Damage while holding a Shield" + text="{0}% more Life Recovery from Flasks" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Life Recovery from Flasks" } }, stats={ - [1]="block_spells_chance_%_while_holding_shield" + [1]="blood_mage_flask_life_to_recover_+%_final" } }, - [4756]={ + [4787]={ [1]={ [1]={ limit={ @@ -105318,7 +106360,7 @@ return { [1]="blood_sand_armour_mana_reservation_+%" } }, - [4757]={ + [4788]={ [1]={ [1]={ [1]={ @@ -105355,7 +106397,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_-2%_per_1" } }, - [4758]={ + [4789]={ [1]={ [1]={ limit={ @@ -105384,7 +106426,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_+%" } }, - [4759]={ + [4790]={ [1]={ [1]={ limit={ @@ -105413,7 +106455,7 @@ return { [1]="blood_sand_stance_buff_effect_+%" } }, - [4760]={ + [4791]={ [1]={ [1]={ limit={ @@ -105442,7 +106484,7 @@ return { [1]="blood_spears_area_of_effect_+%" } }, - [4761]={ + [4792]={ [1]={ [1]={ limit={ @@ -105467,7 +106509,7 @@ return { [1]="blood_spears_base_number_of_spears" } }, - [4762]={ + [4793]={ [1]={ [1]={ limit={ @@ -105496,7 +106538,7 @@ return { [1]="blood_spears_damage_+%" } }, - [4763]={ + [4794]={ [1]={ [1]={ limit={ @@ -105512,7 +106554,7 @@ return { [1]="bloodlust_zone_%_of_max_health" } }, - [4764]={ + [4795]={ [1]={ [1]={ limit={ @@ -105541,7 +106583,7 @@ return { [1]="bloodreap_damage_+%" } }, - [4765]={ + [4796]={ [1]={ [1]={ limit={ @@ -105570,7 +106612,7 @@ return { [1]="bloodreap_skill_area_of_effect_+%" } }, - [4766]={ + [4797]={ [1]={ [1]={ limit={ @@ -105599,7 +106641,7 @@ return { [1]="body_armour_+%" } }, - [4767]={ + [4798]={ [1]={ [1]={ limit={ @@ -105628,7 +106670,23 @@ return { [1]="body_armour_evasion_rating_+%" } }, - [4768]={ + [4799]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Body Armour grants {0:+d}% of Armour also applies to Elemental Damage" + } + }, + stats={ + [1]="body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage" + } + }, + [4800]={ [1]={ [1]={ limit={ @@ -105637,14 +106695,14 @@ return { [2]="#" } }, - text="Body Armour grants Armour also applies to Chaos Damage taken from Hits" + text="Body Armour grants +100% of Armour also applies to Chaos Damage" } }, stats={ [1]="body_armour_grants_base_armour_applies_to_chaos_damage" } }, - [4769]={ + [4801]={ [1]={ [1]={ limit={ @@ -105660,7 +106718,7 @@ return { [1]="body_armour_grants_unaffected_by_ignite" } }, - [4770]={ + [4802]={ [1]={ [1]={ limit={ @@ -105676,7 +106734,7 @@ return { [1]="body_armour_grants_x_base_cold_damage_resistance_%" } }, - [4771]={ + [4803]={ [1]={ [1]={ limit={ @@ -105692,7 +106750,7 @@ return { [1]="body_armour_grants_x_base_fire_damage_resistance_%" } }, - [4772]={ + [4804]={ [1]={ [1]={ limit={ @@ -105708,7 +106766,7 @@ return { [1]="body_armour_grants_x_base_lightning_damage_resistance_%" } }, - [4773]={ + [4805]={ [1]={ [1]={ limit={ @@ -105724,7 +106782,7 @@ return { [1]="body_armour_grants_x_base_maximum_fire_damage_resistance_%" } }, - [4774]={ + [4806]={ [1]={ [1]={ limit={ @@ -105753,7 +106811,7 @@ return { [1]="body_armour_grants_x_base_self_critical_strike_multiplier_-%" } }, - [4775]={ + [4807]={ [1]={ [1]={ [1]={ @@ -105773,7 +106831,7 @@ return { [1]="body_armour_grants_x_life_regeneration_rate_per_minute_%" } }, - [4776]={ + [4808]={ [1]={ [1]={ limit={ @@ -105802,7 +106860,7 @@ return { [1]="body_armour_grants_x_maximum_life_+%" } }, - [4777]={ + [4809]={ [1]={ [1]={ limit={ @@ -105818,7 +106876,7 @@ return { [1]="body_armour_grants_x_physical_damage_taken_%_as_fire" } }, - [4778]={ + [4810]={ [1]={ [1]={ limit={ @@ -105847,7 +106905,7 @@ return { [1]="body_armour_grants_x_strength_+%" } }, - [4779]={ + [4811]={ [1]={ [1]={ limit={ @@ -105876,7 +106934,7 @@ return { [1]="body_armour_grants_x_stun_threshold_+%" } }, - [4780]={ + [4812]={ [1]={ [1]={ limit={ @@ -105892,7 +106950,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_dexterity" } }, - [4781]={ + [4813]={ [1]={ [1]={ limit={ @@ -105908,7 +106966,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_intelligence" } }, - [4782]={ + [4814]={ [1]={ [1]={ limit={ @@ -105924,7 +106982,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_strength" } }, - [4783]={ + [4815]={ [1]={ [1]={ [1]={ @@ -105944,7 +107002,7 @@ return { [1]="body_armour_implicit_gain_endurance_charge_every_x_ms" } }, - [4784]={ + [4816]={ [1]={ [1]={ [1]={ @@ -105964,7 +107022,7 @@ return { [1]="body_armour_implicit_gain_frenzy_charge_every_x_ms" } }, - [4785]={ + [4817]={ [1]={ [1]={ [1]={ @@ -105984,7 +107042,7 @@ return { [1]="body_armour_implicit_gain_power_charge_every_x_ms" } }, - [4786]={ + [4818]={ [1]={ [1]={ limit={ @@ -106013,7 +107071,7 @@ return { [1]="bone_golem_damage_+%" } }, - [4787]={ + [4819]={ [1]={ [1]={ limit={ @@ -106029,7 +107087,7 @@ return { [1]="bone_golem_elemental_resistances_%" } }, - [4788]={ + [4820]={ [1]={ [1]={ limit={ @@ -106058,7 +107116,7 @@ return { [1]="bone_lance_cast_speed_+%" } }, - [4789]={ + [4821]={ [1]={ [1]={ limit={ @@ -106087,7 +107145,7 @@ return { [1]="bone_lance_damage_+%" } }, - [4790]={ + [4822]={ [1]={ [1]={ limit={ @@ -106103,7 +107161,36 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [4791]={ + [4823]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for Shockwaves originating from a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for Shockwaves originating from a Unique enemy" + } + }, + stats={ + [1]="boneshatter_damage_+%_final_if_created_from_unique" + } + }, + [4824]={ [1]={ [1]={ limit={ @@ -106132,7 +107219,7 @@ return { [1]="boneshatter_damage_+%" } }, - [4792]={ + [4825]={ [1]={ [1]={ limit={ @@ -106161,7 +107248,7 @@ return { [1]="boneshatter_stun_duration_+%" } }, - [4793]={ + [4826]={ [1]={ [1]={ limit={ @@ -106190,7 +107277,7 @@ return { [1]="boots_implicit_accuracy_rating_+%_final" } }, - [4794]={ + [4827]={ [1]={ [1]={ limit={ @@ -106219,7 +107306,7 @@ return { [1]="boss_maximum_life_+%_final" } }, - [4795]={ + [4828]={ [1]={ [1]={ limit={ @@ -106235,7 +107322,7 @@ return { [1]="bow_attacks_have_culling_strike" } }, - [4796]={ + [4829]={ [1]={ [1]={ limit={ @@ -106251,7 +107338,7 @@ return { [1]="bow_skill_gem_level_+" } }, - [4797]={ + [4830]={ [1]={ [1]={ limit={ @@ -106267,7 +107354,7 @@ return { [1]="brand_activation_rate_+%_final_during_first_20%_of_active_duration" } }, - [4798]={ + [4831]={ [1]={ [1]={ limit={ @@ -106283,7 +107370,7 @@ return { [1]="brand_activation_rate_+%_final_during_last_20%_of_active_duration" } }, - [4799]={ + [4832]={ [1]={ [1]={ limit={ @@ -106299,7 +107386,7 @@ return { [1]="brand_area_of_effect_+%_if_50%_attached_duration_expired" } }, - [4800]={ + [4833]={ [1]={ [1]={ limit={ @@ -106315,7 +107402,7 @@ return { [1]="brands_reattach_on_activation" } }, - [4801]={ + [4834]={ [1]={ [1]={ limit={ @@ -106331,7 +107418,7 @@ return { [1]="breach_flame_effects_doubled" } }, - [4802]={ + [4835]={ [1]={ [1]={ limit={ @@ -106347,7 +107434,7 @@ return { [1]="breachstone_commanders_%_drop_additional_fragments" } }, - [4803]={ + [4836]={ [1]={ [1]={ limit={ @@ -106363,7 +107450,7 @@ return { [1]="breachstone_commanders_%_drop_additional_maps" } }, - [4804]={ + [4837]={ [1]={ [1]={ limit={ @@ -106379,7 +107466,7 @@ return { [1]="breachstone_commanders_%_drop_additional_scarabs" } }, - [4805]={ + [4838]={ [1]={ [1]={ limit={ @@ -106395,7 +107482,7 @@ return { [1]="breachstone_commanders_%_drop_additional_unique_items" } }, - [4806]={ + [4839]={ [1]={ [1]={ limit={ @@ -106420,7 +107507,7 @@ return { [1]="breachstone_commanders_drop_additional_catalysts" } }, - [4807]={ + [4840]={ [1]={ [1]={ limit={ @@ -106436,7 +107523,7 @@ return { [1]="breachstone_commanders_drop_additional_currency_items" } }, - [4808]={ + [4841]={ [1]={ [1]={ limit={ @@ -106452,7 +107539,7 @@ return { [1]="breachstone_commanders_drop_additional_delirium_items" } }, - [4809]={ + [4842]={ [1]={ [1]={ limit={ @@ -106477,7 +107564,7 @@ return { [1]="breachstone_commanders_drop_additional_divination_cards" } }, - [4810]={ + [4843]={ [1]={ [1]={ limit={ @@ -106502,7 +107589,7 @@ return { [1]="breachstone_commanders_drop_additional_enchanted_items" } }, - [4811]={ + [4844]={ [1]={ [1]={ limit={ @@ -106527,7 +107614,7 @@ return { [1]="breachstone_commanders_drop_additional_essences" } }, - [4812]={ + [4845]={ [1]={ [1]={ limit={ @@ -106552,7 +107639,7 @@ return { [1]="breachstone_commanders_drop_additional_fossils" } }, - [4813]={ + [4846]={ [1]={ [1]={ limit={ @@ -106577,7 +107664,7 @@ return { [1]="breachstone_commanders_drop_additional_gem_items" } }, - [4814]={ + [4847]={ [1]={ [1]={ limit={ @@ -106602,7 +107689,7 @@ return { [1]="breachstone_commanders_drop_additional_harbinger_shards" } }, - [4815]={ + [4848]={ [1]={ [1]={ limit={ @@ -106627,7 +107714,7 @@ return { [1]="breachstone_commanders_drop_additional_incubators" } }, - [4816]={ + [4849]={ [1]={ [1]={ limit={ @@ -106652,7 +107739,7 @@ return { [1]="breachstone_commanders_drop_additional_legion_splinters" } }, - [4817]={ + [4850]={ [1]={ [1]={ limit={ @@ -106677,7 +107764,23 @@ return { [1]="breachstone_commanders_drop_additional_oils" } }, - [4818]={ + [4851]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Break {0}% of Armour on Pinning an Enemy" + } + }, + stats={ + [1]="break_%_armour_on_pin" + } + }, + [4852]={ [1]={ [1]={ limit={ @@ -106690,10 +107793,26 @@ return { } }, stats={ - [1]="broken_armour_debuff_effect_+%" + [1]="broken_armour_and_sundered_armour_debuff_effect_+%" } }, - [4819]={ + [4853]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies you Fully Armour Break cannot Regenerate Life" + } + }, + stats={ + [1]="broken_armour_enemies_cannot_regenerate_life" + } + }, + [4854]={ [1]={ [1]={ limit={ @@ -106722,7 +107841,7 @@ return { [1]="buff_effect_+%_on_low_energy_shield" } }, - [4820]={ + [4855]={ [1]={ [1]={ limit={ @@ -106751,7 +107870,7 @@ return { [1]="buff_time_passed_+%_only_buff_category" } }, - [4821]={ + [4856]={ [1]={ [1]={ limit={ @@ -106780,7 +107899,7 @@ return { [1]="buff_time_passed_+%" } }, - [4822]={ + [4857]={ [1]={ [1]={ [1]={ @@ -106813,7 +107932,7 @@ return { [1]="buildup_jade_every_x_ms" } }, - [4823]={ + [4858]={ [1]={ [1]={ limit={ @@ -106829,7 +107948,7 @@ return { [1]="burning_and_explosive_arrow_shatter_on_killing_blow" } }, - [4824]={ + [4859]={ [1]={ [1]={ limit={ @@ -106858,7 +107977,7 @@ return { [1]="burning_arrow_debuff_effect_+%" } }, - [4825]={ + [4860]={ [1]={ [1]={ limit={ @@ -106887,7 +108006,7 @@ return { [1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%" } }, - [4826]={ + [4861]={ [1]={ [1]={ limit={ @@ -106903,7 +108022,7 @@ return { [1]="can_apply_additional_chill" } }, - [4827]={ + [4862]={ [1]={ [1]={ limit={ @@ -106919,39 +108038,7 @@ return { [1]="can_apply_additional_shock" } }, - [4828]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Can Block damage from all Hits" - } - }, - stats={ - [1]="can_block_all_hits" - } - }, - [4829]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Can Block Damage from all Hits while Shield is not Raised" - } - }, - stats={ - [1]="can_block_all_hits_while_shield_is_lowered" - } - }, - [4830]={ + [4863]={ [1]={ [1]={ limit={ @@ -106967,7 +108054,7 @@ return { [1]="can_block_from_all_directions" } }, - [4831]={ + [4864]={ [1]={ [1]={ limit={ @@ -106983,23 +108070,7 @@ return { [1]="can_catch_scourged_fish" } }, - [4832]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Can Evade all Hits if you have not been Hit Recently" - } - }, - stats={ - [1]="can_evade_all_hits_if_you_havent_been_hit_recently" - } - }, - [4833]={ + [4865]={ [1]={ [1]={ limit={ @@ -107015,7 +108086,7 @@ return { [1]="can_have_2_companions" } }, - [4834]={ + [4866]={ [1]={ [1]={ limit={ @@ -107031,7 +108102,7 @@ return { [1]="can_only_have_one_ancestor_totem_buff" } }, - [4835]={ + [4867]={ [1]={ [1]={ limit={ @@ -107047,7 +108118,7 @@ return { [1]="can_place_multiple_banners" } }, - [4836]={ + [4868]={ [1]={ [1]={ limit={ @@ -107063,7 +108134,7 @@ return { [1]="can_use_one_hand_mace_skills_while_unarmed" } }, - [4837]={ + [4869]={ [1]={ [1]={ limit={ @@ -107079,7 +108150,7 @@ return { [1]="can_use_quarterstaff_skills_while_unarmed" } }, - [4838]={ + [4870]={ [1]={ [1]={ limit={ @@ -107095,7 +108166,7 @@ return { [1]="can_wield_2h_axe_sword_mace_in_one_hand" } }, - [4839]={ + [4871]={ [1]={ [1]={ limit={ @@ -107111,7 +108182,7 @@ return { [1]="cannot_adapt_to_cold" } }, - [4840]={ + [4872]={ [1]={ [1]={ limit={ @@ -107127,7 +108198,7 @@ return { [1]="cannot_adapt_to_fire" } }, - [4841]={ + [4873]={ [1]={ [1]={ limit={ @@ -107143,7 +108214,7 @@ return { [1]="cannot_adapt_to_lightning" } }, - [4842]={ + [4874]={ [1]={ [1]={ limit={ @@ -107159,7 +108230,7 @@ return { [1]="cannot_be_blinded_while_affected_by_precision" } }, - [4843]={ + [4875]={ [1]={ [1]={ limit={ @@ -107175,7 +108246,7 @@ return { [1]="cannot_be_blinded_while_on_full_life" } }, - [4844]={ + [4876]={ [1]={ [1]={ limit={ @@ -107191,7 +108262,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_ice_golem_summoned" } }, - [4845]={ + [4877]={ [1]={ [1]={ limit={ @@ -107207,7 +108278,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_moving" } }, - [4846]={ + [4878]={ [1]={ [1]={ limit={ @@ -107223,7 +108294,7 @@ return { [1]="cannot_be_chilled_while_at_maximum_frenzy_charges" } }, - [4847]={ + [4879]={ [1]={ [1]={ limit={ @@ -107239,7 +108310,7 @@ return { [1]="cannot_be_chilled_while_burning" } }, - [4848]={ + [4880]={ [1]={ [1]={ limit={ @@ -107255,7 +108326,7 @@ return { [1]="cannot_be_crit_if_you_have_been_stunned_recently" } }, - [4849]={ + [4881]={ [1]={ [1]={ limit={ @@ -107271,7 +108342,7 @@ return { [1]="cannot_be_frozen_if_energy_shield_recharge_has_started_recently" } }, - [4850]={ + [4882]={ [1]={ [1]={ limit={ @@ -107287,7 +108358,7 @@ return { [1]="cannot_be_frozen_if_you_have_been_frozen_recently" } }, - [4851]={ + [4883]={ [1]={ [1]={ limit={ @@ -107303,7 +108374,7 @@ return { [1]="cannot_be_frozen_with_dex_higher_than_int" } }, - [4852]={ + [4884]={ [1]={ [1]={ limit={ @@ -107319,7 +108390,7 @@ return { [1]="cannot_be_ignited_if_you_have_been_ignited_recently" } }, - [4853]={ + [4885]={ [1]={ [1]={ limit={ @@ -107335,7 +108406,7 @@ return { [1]="cannot_be_ignited_while_at_maximum_endurance_charges" } }, - [4854]={ + [4886]={ [1]={ [1]={ limit={ @@ -107351,7 +108422,7 @@ return { [1]="cannot_be_ignited_while_flame_golem_summoned" } }, - [4855]={ + [4887]={ [1]={ [1]={ limit={ @@ -107367,7 +108438,7 @@ return { [1]="cannot_be_ignited_with_strength_higher_than_dex" } }, - [4856]={ + [4888]={ [1]={ [1]={ limit={ @@ -107383,7 +108454,7 @@ return { [1]="cannot_be_inflicted_by_corrupted_blood" } }, - [4857]={ + [4889]={ [1]={ [1]={ limit={ @@ -107399,32 +108470,23 @@ return { [1]="cannot_be_light_stunned" } }, - [4858]={ + [4890]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="You cannot be Poisoned if there is at least {0} Poison on you" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="You cannot be Poisoned while there are at least {0} Poisons on you" + text="You cannot be Stunned if you've been Stunned in the past 2 seconds" } }, stats={ - [1]="cannot_be_poisoned_if_x_poisons_on_you" + [1]="cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds" } }, - [4859]={ + [4891]={ [1]={ [1]={ limit={ @@ -107433,14 +108495,14 @@ return { [2]="#" } }, - text="Cannot be Poisoned while Bleeding" + text="Cannot be Light Stunned if you haven't been Hit Recently" } }, stats={ - [1]="cannot_be_poisoned_while_bleeding" + [1]="cannot_be_light_stunned_if_have_not_been_hit_recently" } }, - [4860]={ + [4892]={ [1]={ [1]={ limit={ @@ -107449,46 +108511,39 @@ return { [2]="#" } }, - text="You cannot be Shocked if you've been Shocked Recently" + text="You cannot be Light Stunned if you've been Stunned Recently" } }, stats={ - [1]="cannot_be_shocked_if_you_have_been_shocked_recently" + [1]="cannot_be_light_stunned_if_you_have_been_stunned_recently" } }, - [4861]={ + [4893]={ [1]={ [1]={ limit={ [1]={ - [1]="#", - [2]="#" + [1]=1, + [2]=1 } }, - text="Cannot be Shocked or Ignited while moving" - } - }, - stats={ - [1]="cannot_be_shocked_or_ignited_while_moving" - } - }, - [4862]={ - [1]={ - [1]={ + text="You cannot be Poisoned if there is at least {0} Poison on you" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Cannot be Shocked while at maximum Power Charges" + text="You cannot be Poisoned while there are at least {0} Poisons on you" } }, stats={ - [1]="cannot_be_shocked_while_at_maximum_power_charges" + [1]="cannot_be_poisoned_if_x_poisons_on_you" } }, - [4863]={ + [4894]={ [1]={ [1]={ limit={ @@ -107497,14 +108552,14 @@ return { [2]="#" } }, - text="You cannot be Shocked while you have a Lightning Golem Summoned" + text="Cannot be Poisoned while Bleeding" } }, stats={ - [1]="cannot_be_shocked_while_lightning_golem_summoned" + [1]="cannot_be_poisoned_while_bleeding" } }, - [4864]={ + [4895]={ [1]={ [1]={ limit={ @@ -107513,30 +108568,30 @@ return { [2]="#" } }, - text="Cannot be Shocked if Intelligence is higher than Strength" + text="You cannot be Shocked if you've been Shocked Recently" } }, stats={ - [1]="cannot_be_shocked_with_int_higher_than_strength" + [1]="cannot_be_shocked_if_you_have_been_shocked_recently" } }, - [4865]={ + [4896]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Cannot be Stunned by Hits you Block" + text="Cannot be Shocked or Ignited while moving" } }, stats={ - [1]="cannot_be_stunned_by_blocked_hits" + [1]="cannot_be_shocked_or_ignited_while_moving" } }, - [4866]={ + [4897]={ [1]={ [1]={ limit={ @@ -107545,14 +108600,14 @@ return { [2]="#" } }, - text="Cannot be Stunned by Hits that deal only Physical Damage" + text="Cannot be Shocked while at maximum Power Charges" } }, stats={ - [1]="cannot_be_stunned_by_hits_of_only_physical_damage" + [1]="cannot_be_shocked_while_at_maximum_power_charges" } }, - [4867]={ + [4898]={ [1]={ [1]={ limit={ @@ -107561,14 +108616,14 @@ return { [2]="#" } }, - text="Cannot be Stunned by Suppressed Spell Damage" + text="You cannot be Shocked while you have a Lightning Golem Summoned" } }, stats={ - [1]="cannot_be_stunned_by_suppressed_spell_damage" + [1]="cannot_be_shocked_while_lightning_golem_summoned" } }, - [4868]={ + [4899]={ [1]={ [1]={ limit={ @@ -107577,30 +108632,30 @@ return { [2]="#" } }, - text="You cannot be Stunned if you've been Stunned or Blocked a Stunning Hit in the past 2 seconds" + text="Cannot be Shocked if Intelligence is higher than Strength" } }, stats={ - [1]="cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds" + [1]="cannot_be_shocked_with_int_higher_than_strength" } }, - [4869]={ + [4900]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Cannot be Stunned if you haven't been Hit Recently" + text="Cannot be Stunned by Hits you Block" } }, stats={ - [1]="cannot_be_stunned_if_have_not_been_hit_recently" + [1]="cannot_be_stunned_by_blocked_hits" } }, - [4870]={ + [4901]={ [1]={ [1]={ limit={ @@ -107609,14 +108664,14 @@ return { [2]="#" } }, - text="You cannot be Stunned if you've been Stunned Recently" + text="Cannot be Stunned by Hits that deal only Physical Damage" } }, stats={ - [1]="cannot_be_stunned_if_you_have_been_stunned_recently" + [1]="cannot_be_stunned_by_hits_of_only_physical_damage" } }, - [4871]={ + [4902]={ [1]={ [1]={ limit={ @@ -107632,7 +108687,7 @@ return { [1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently" } }, - [4872]={ + [4903]={ [1]={ [1]={ limit={ @@ -107648,7 +108703,7 @@ return { [1]="cannot_be_stunned_if_you_have_ghost_dance" } }, - [4873]={ + [4904]={ [1]={ [1]={ limit={ @@ -107664,7 +108719,7 @@ return { [1]="cannot_be_stunned_while_bleeding" } }, - [4874]={ + [4905]={ [1]={ [1]={ limit={ @@ -107680,7 +108735,7 @@ return { [1]="cannot_be_stunned_while_fortified" } }, - [4875]={ + [4906]={ [1]={ [1]={ limit={ @@ -107696,23 +108751,7 @@ return { [1]="cannot_be_stunned_while_using_chaos_skill" } }, - [4876]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Cannot Block Spell Damage" - } - }, - stats={ - [1]="cannot_block_spells" - } - }, - [4877]={ + [4907]={ [1]={ [1]={ limit={ @@ -107728,7 +108767,7 @@ return { [1]="cannot_cast_spells" } }, - [4878]={ + [4908]={ [1]={ [1]={ limit={ @@ -107744,7 +108783,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [4879]={ + [4909]={ [1]={ [1]={ limit={ @@ -107760,7 +108799,7 @@ return { [1]="cannot_critical_strike_with_attacks" } }, - [4880]={ + [4910]={ [1]={ [1]={ limit={ @@ -107776,7 +108815,7 @@ return { [1]="cannot_fish_from_water" } }, - [4881]={ + [4911]={ [1]={ [1]={ limit={ @@ -107792,7 +108831,7 @@ return { [1]="cannot_gain_charges" } }, - [4882]={ + [4912]={ [1]={ [1]={ limit={ @@ -107808,7 +108847,7 @@ return { [1]="cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks" } }, - [4883]={ + [4913]={ [1]={ [1]={ limit={ @@ -107824,7 +108863,7 @@ return { [1]="cannot_gain_rage_during_soul_gain_prevention" } }, - [4884]={ + [4914]={ [1]={ [1]={ limit={ @@ -107840,7 +108879,7 @@ return { [1]="cannot_gain_spirit_from_equipment" } }, - [4885]={ + [4915]={ [1]={ [1]={ limit={ @@ -107856,7 +108895,7 @@ return { [1]="cannot_have_energy_shield_leeched_from" } }, - [4886]={ + [4916]={ [1]={ [1]={ limit={ @@ -107872,7 +108911,7 @@ return { [1]="cannot_have_more_than_1_damaging_ailment" } }, - [4887]={ + [4917]={ [1]={ [1]={ limit={ @@ -107888,7 +108927,7 @@ return { [1]="cannot_have_more_than_1_non_damaging_ailment" } }, - [4888]={ + [4918]={ [1]={ [1]={ limit={ @@ -107904,7 +108943,23 @@ return { [1]="cannot_immobilise_enemies" } }, - [4889]={ + [4919]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot kill Enemies with Hits" + } + }, + stats={ + [1]="cannot_kill_enemies_with_hits" + } + }, + [4920]={ [1]={ [1]={ limit={ @@ -107920,7 +108975,7 @@ return { [1]="cannot_penetrate_or_ignore_elemental_resistances" } }, - [4890]={ + [4921]={ [1]={ [1]={ limit={ @@ -107936,7 +108991,7 @@ return { [1]="cannot_pierce" } }, - [4891]={ + [4922]={ [1]={ [1]={ limit={ @@ -107952,7 +109007,7 @@ return { [1]="cannot_pin" } }, - [4892]={ + [4923]={ [1]={ [1]={ limit={ @@ -107968,7 +109023,7 @@ return { [1]="cannot_receive_elemental_ailments_from_cursed_enemies" } }, - [4893]={ + [4924]={ [1]={ [1]={ limit={ @@ -107984,7 +109039,7 @@ return { [1]="cannot_recharge_energy_shield" } }, - [4894]={ + [4925]={ [1]={ [1]={ limit={ @@ -108000,7 +109055,7 @@ return { [1]="cannot_recover_above_low_life_except_flasks" } }, - [4895]={ + [4926]={ [1]={ [1]={ limit={ @@ -108016,7 +109071,7 @@ return { [1]="cannot_recover_life_or_energy_shield_above_%" } }, - [4896]={ + [4927]={ [1]={ [1]={ limit={ @@ -108032,7 +109087,7 @@ return { [1]="cannot_recover_mana_except_regeneration" } }, - [4897]={ + [4928]={ [1]={ [1]={ limit={ @@ -108048,7 +109103,23 @@ return { [1]="cannot_regenerate_energy_shield" } }, - [4898]={ + [4929]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot Sprint" + } + }, + stats={ + [1]="cannot_sprint" + } + }, + [4930]={ [1]={ [1]={ limit={ @@ -108064,7 +109135,7 @@ return { [1]="cannot_take_reflected_elemental_damage" } }, - [4899]={ + [4931]={ [1]={ [1]={ limit={ @@ -108080,7 +109151,7 @@ return { [1]="cannot_take_reflected_physical_damage" } }, - [4900]={ + [4932]={ [1]={ [1]={ limit={ @@ -108096,7 +109167,7 @@ return { [1]="cannot_taunt_enemies" } }, - [4901]={ + [4933]={ [1]={ [1]={ limit={ @@ -108112,7 +109183,7 @@ return { [1]="cannot_use_flask_in_fifth_slot" } }, - [4902]={ + [4934]={ [1]={ [1]={ limit={ @@ -108128,7 +109199,7 @@ return { [1]="cannot_use_non_normal_body_armour" } }, - [4903]={ + [4935]={ [1]={ [1]={ limit={ @@ -108144,7 +109215,7 @@ return { [1]="cannot_use_warcries" } }, - [4904]={ + [4936]={ [1]={ [1]={ limit={ @@ -108160,7 +109231,7 @@ return { [1]="carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems" } }, - [4905]={ + [4937]={ [1]={ [1]={ limit={ @@ -108176,7 +109247,7 @@ return { [1]="cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash" } }, - [4906]={ + [4938]={ [1]={ [1]={ limit={ @@ -108192,7 +109263,7 @@ return { [1]="cast_blink_arrow_on_attack_with_mirror_arrow" } }, - [4907]={ + [4939]={ [1]={ [1]={ limit={ @@ -108208,7 +109279,7 @@ return { [1]="cast_body_swap_on_detonate_dead_cast" } }, - [4908]={ + [4940]={ [1]={ [1]={ limit={ @@ -108224,7 +109295,7 @@ return { [1]="cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter" } }, - [4909]={ + [4941]={ [1]={ [1]={ limit={ @@ -108240,7 +109311,7 @@ return { [1]="cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire" } }, - [4910]={ + [4942]={ [1]={ [1]={ limit={ @@ -108256,7 +109327,7 @@ return { [1]="cast_hydrosphere_while_channeling_winter_orb" } }, - [4911]={ + [4943]={ [1]={ [1]={ limit={ @@ -108272,7 +109343,7 @@ return { [1]="cast_ice_nova_on_final_burst_of_glacial_cascade" } }, - [4912]={ + [4944]={ [1]={ [1]={ limit={ @@ -108288,7 +109359,36 @@ return { [1]="cast_mirror_arrow_on_attack_with_blink_arrow" } }, - [4913]={ + [4945]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed per 20 Spirit" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cast Speed per 20 Spirit" + } + }, + stats={ + [1]="cast_speed_+%_per_20_spirit" + } + }, + [4946]={ [1]={ [1]={ limit={ @@ -108317,7 +109417,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [4914]={ + [4947]={ [1]={ [1]={ limit={ @@ -108346,7 +109446,7 @@ return { [1]="cast_speed_for_brand_skills_+%" } }, - [4915]={ + [4948]={ [1]={ [1]={ limit={ @@ -108375,7 +109475,7 @@ return { [1]="cast_speed_for_elemental_skills_+%" } }, - [4916]={ + [4949]={ [1]={ [1]={ limit={ @@ -108404,7 +109504,7 @@ return { [1]="cast_speed_+%_during_flask_effect" } }, - [4917]={ + [4950]={ [1]={ [1]={ limit={ @@ -108433,7 +109533,7 @@ return { [1]="cast_speed_+%_if_enemy_killed_recently" } }, - [4918]={ + [4951]={ [1]={ [1]={ limit={ @@ -108458,7 +109558,7 @@ return { [1]="cast_speed_+%_if_have_crit_recently" } }, - [4919]={ + [4952]={ [1]={ [1]={ limit={ @@ -108487,7 +109587,36 @@ return { [1]="cast_speed_+%_if_player_minion_has_been_killed_recently" } }, - [4920]={ + [4953]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed if you've used a Mana Flask Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cast Speed if you've used a Mana Flask Recently" + } + }, + stats={ + [1]="cast_speed_+%_if_you_have_used_a_mana_flask_recently" + } + }, + [4954]={ [1]={ [1]={ limit={ @@ -108516,7 +109645,7 @@ return { [1]="cast_speed_+%_per_corpse_consumed_recently" } }, - [4921]={ + [4955]={ [1]={ [1]={ limit={ @@ -108545,7 +109674,7 @@ return { [1]="cast_speed_+%_while_affected_by_zealotry" } }, - [4922]={ + [4956]={ [1]={ [1]={ limit={ @@ -108574,7 +109703,36 @@ return { [1]="cast_speed_+%_while_chilled" } }, - [4923]={ + [4957]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed while on Full Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cast Speed while on Full Mana" + } + }, + stats={ + [1]="cast_speed_+%_while_on_full_mana" + } + }, + [4958]={ [1]={ [1]={ limit={ @@ -108590,7 +109748,7 @@ return { [1]="cast_stance_change_on_attack_from_perforate_or_lacerate" } }, - [4924]={ + [4959]={ [1]={ [1]={ limit={ @@ -108606,7 +109764,7 @@ return { [1]="cast_summon_spectral_wolf_on_crit_with_cleave_or_reave" } }, - [4925]={ + [4960]={ [1]={ [1]={ limit={ @@ -108622,7 +109780,7 @@ return { [1]="cast_tornado_on_attack_with_split_arrow_or_tornado_shot" } }, - [4926]={ + [4961]={ [1]={ [1]={ limit={ @@ -108638,7 +109796,7 @@ return { [1]="cat_aspect_reserves_no_mana" } }, - [4927]={ + [4962]={ [1]={ [1]={ [1]={ @@ -108658,7 +109816,7 @@ return { [1]="cats_stealth_duration_ms_+" } }, - [4928]={ + [4963]={ [1]={ [1]={ [1]={ @@ -108687,7 +109845,7 @@ return { [1]="caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill" } }, - [4929]={ + [4964]={ [1]={ [1]={ limit={ @@ -108703,7 +109861,7 @@ return { [1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground" } }, - [4930]={ + [4965]={ [1]={ [1]={ limit={ @@ -108732,7 +109890,7 @@ return { [1]="caustic_arrow_damage_over_time_+%" } }, - [4931]={ + [4966]={ [1]={ [1]={ limit={ @@ -108761,7 +109919,7 @@ return { [1]="caustic_arrow_hit_damage_+%" } }, - [4932]={ + [4967]={ [1]={ [1]={ limit={ @@ -108790,7 +109948,7 @@ return { [1]="chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks" } }, - [4933]={ + [4968]={ [1]={ [1]={ limit={ @@ -108806,7 +109964,7 @@ return { [1]="chain_strike_cone_radius_+_per_12_rage" } }, - [4934]={ + [4969]={ [1]={ [1]={ limit={ @@ -108822,7 +109980,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [4935]={ + [4970]={ [1]={ [1]={ limit={ @@ -108851,7 +110009,7 @@ return { [1]="chain_strike_damage_+%" } }, - [4936]={ + [4971]={ [1]={ [1]={ limit={ @@ -108867,7 +110025,7 @@ return { [1]="chain_strike_gain_rage_on_hit_%_chance" } }, - [4937]={ + [4972]={ [1]={ [1]={ limit={ @@ -108896,7 +110054,7 @@ return { [1]="chaining_range_+%" } }, - [4938]={ + [4973]={ [1]={ [1]={ limit={ @@ -108912,7 +110070,7 @@ return { [1]="champion_ascendancy_nearby_allies_fortification_is_equal_to_yours" } }, - [4939]={ + [4974]={ [1]={ [1]={ limit={ @@ -108928,7 +110086,7 @@ return { [1]="chance_%_for_other_flasks_to_gain_charge_on_charge_gain" } }, - [4940]={ + [4975]={ [1]={ [1]={ limit={ @@ -108953,7 +110111,7 @@ return { [1]="chance_%_to_create_shocking_ground_on_shock" } }, - [4941]={ + [4976]={ [1]={ [1]={ limit={ @@ -108978,7 +110136,7 @@ return { [1]="chance_%_to_double_effect_of_removing_frenzy_charges" } }, - [4942]={ + [4977]={ [1]={ [1]={ [1]={ @@ -108998,7 +110156,7 @@ return { [1]="chance_%_to_drop_additional_awakened_sextant" } }, - [4943]={ + [4978]={ [1]={ [1]={ [1]={ @@ -109018,7 +110176,7 @@ return { [1]="chance_%_to_drop_additional_blessed_orb" } }, - [4944]={ + [4979]={ [1]={ [1]={ [1]={ @@ -109038,7 +110196,7 @@ return { [1]="chance_%_to_drop_additional_cartographers_chisel" } }, - [4945]={ + [4980]={ [1]={ [1]={ [1]={ @@ -109058,7 +110216,7 @@ return { [1]="chance_%_to_drop_additional_chaos_orb" } }, - [4946]={ + [4981]={ [1]={ [1]={ [1]={ @@ -109078,7 +110236,7 @@ return { [1]="chance_%_to_drop_additional_chromatic_orb" } }, - [4947]={ + [4982]={ [1]={ [1]={ [1]={ @@ -109098,7 +110256,7 @@ return { [1]="chance_%_to_drop_additional_divine_orb" } }, - [4948]={ + [4983]={ [1]={ [1]={ [1]={ @@ -109118,7 +110276,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_chaos_orb" } }, - [4949]={ + [4984]={ [1]={ [1]={ [1]={ @@ -109138,7 +110296,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_exalted_orb" } }, - [4950]={ + [4985]={ [1]={ [1]={ [1]={ @@ -109158,7 +110316,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_orb_of_annulment" } }, - [4951]={ + [4986]={ [1]={ [1]={ [1]={ @@ -109178,7 +110336,7 @@ return { [1]="chance_%_to_drop_additional_enkindling_orb" } }, - [4952]={ + [4987]={ [1]={ [1]={ [1]={ @@ -109198,7 +110356,7 @@ return { [1]="chance_%_to_drop_additional_exalted_orb" } }, - [4953]={ + [4988]={ [1]={ [1]={ [1]={ @@ -109218,7 +110376,7 @@ return { [1]="chance_%_to_drop_additional_fusing_orb" } }, - [4954]={ + [4989]={ [1]={ [1]={ [1]={ @@ -109238,7 +110396,7 @@ return { [1]="chance_%_to_drop_additional_gemcutters_prism" } }, - [4955]={ + [4990]={ [1]={ [1]={ [1]={ @@ -109258,7 +110416,7 @@ return { [1]="chance_%_to_drop_additional_glassblowers_bauble" } }, - [4956]={ + [4991]={ [1]={ [1]={ [1]={ @@ -109278,7 +110436,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ember" } }, - [4957]={ + [4992]={ [1]={ [1]={ [1]={ @@ -109298,7 +110456,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ichor" } }, - [4958]={ + [4993]={ [1]={ [1]={ [1]={ @@ -109318,7 +110476,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ember" } }, - [4959]={ + [4994]={ [1]={ [1]={ [1]={ @@ -109338,7 +110496,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ichor" } }, - [4960]={ + [4995]={ [1]={ [1]={ [1]={ @@ -109358,7 +110516,7 @@ return { [1]="chance_%_to_drop_additional_instilling_orb" } }, - [4961]={ + [4996]={ [1]={ [1]={ [1]={ @@ -109378,7 +110536,7 @@ return { [1]="chance_%_to_drop_additional_jewellers_orb" } }, - [4962]={ + [4997]={ [1]={ [1]={ [1]={ @@ -109398,7 +110556,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ember" } }, - [4963]={ + [4998]={ [1]={ [1]={ [1]={ @@ -109418,7 +110576,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ichor" } }, - [4964]={ + [4999]={ [1]={ [1]={ [1]={ @@ -109438,7 +110596,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_alteration" } }, - [4965]={ + [5000]={ [1]={ [1]={ [1]={ @@ -109458,7 +110616,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_annulment" } }, - [4966]={ + [5001]={ [1]={ [1]={ [1]={ @@ -109478,7 +110636,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_binding" } }, - [4967]={ + [5002]={ [1]={ [1]={ [1]={ @@ -109498,7 +110656,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_horizons" } }, - [4968]={ + [5003]={ [1]={ [1]={ [1]={ @@ -109518,7 +110676,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_regret" } }, - [4969]={ + [5004]={ [1]={ [1]={ [1]={ @@ -109538,7 +110696,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_scouring" } }, - [4970]={ + [5005]={ [1]={ [1]={ [1]={ @@ -109558,7 +110716,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_unmaking" } }, - [4971]={ + [5006]={ [1]={ [1]={ [1]={ @@ -109578,7 +110736,7 @@ return { [1]="chance_%_to_drop_additional_regal_orb" } }, - [4972]={ + [5007]={ [1]={ [1]={ [1]={ @@ -109598,27 +110756,7 @@ return { [1]="chance_%_to_drop_additional_vaal_orb" } }, - [4973]={ - [1]={ - [1]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% chance to drop an additional Veiled Chaos Orb" - } - }, - stats={ - [1]="chance_%_to_drop_additional_veiled_chaos_orb" - } - }, - [4974]={ + [5008]={ [1]={ [1]={ limit={ @@ -109643,7 +110781,7 @@ return { [1]="chance_for_double_items_from_heist_chests_%" } }, - [4975]={ + [5009]={ [1]={ [1]={ limit={ @@ -109659,7 +110797,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [4976]={ + [5010]={ [1]={ [1]={ limit={ @@ -109675,7 +110813,7 @@ return { [1]="chance_for_extra_damage_roll_with_lightning_damage_%" } }, - [4977]={ + [5011]={ [1]={ [1]={ limit={ @@ -109691,7 +110829,23 @@ return { [1]="chance_for_skills_to_avoid_cooldown_%" } }, - [4978]={ + [5012]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spells have a {0}% chance to not pay costs when cast" + } + }, + stats={ + [1]="chance_for_spells_to_not_pay_costs_%" + } + }, + [5013]={ [1]={ [1]={ [1]={ @@ -109711,7 +110865,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_currency" } }, - [4979]={ + [5014]={ [1]={ [1]={ [1]={ @@ -109731,7 +110885,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_influenced_item" } }, - [4980]={ + [5015]={ [1]={ [1]={ [1]={ @@ -109751,7 +110905,7 @@ return { [1]="chance_%_to_drop_additional_currency" } }, - [4981]={ + [5016]={ [1]={ [1]={ [1]={ @@ -109771,7 +110925,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards" } }, - [4982]={ + [5017]={ [1]={ [1]={ [1]={ @@ -109791,7 +110945,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_corrupted" } }, - [4983]={ + [5018]={ [1]={ [1]={ [1]={ @@ -109811,7 +110965,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency" } }, - [4984]={ + [5019]={ [1]={ [1]={ [1]={ @@ -109831,7 +110985,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_basic" } }, - [4985]={ + [5020]={ [1]={ [1]={ [1]={ @@ -109851,7 +111005,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_exotic" } }, - [4986]={ + [5021]={ [1]={ [1]={ [1]={ @@ -109871,7 +111025,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_league" } }, - [4987]={ + [5022]={ [1]={ [1]={ [1]={ @@ -109891,7 +111045,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems" } }, - [4988]={ + [5023]={ [1]={ [1]={ [1]={ @@ -109911,7 +111065,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_levelled" } }, - [4989]={ + [5024]={ [1]={ [1]={ [1]={ @@ -109931,7 +111085,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_quality" } }, - [4990]={ + [5025]={ [1]={ [1]={ [1]={ @@ -109951,7 +111105,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gives_other_divination_cards" } }, - [4991]={ + [5026]={ [1]={ [1]={ [1]={ @@ -109971,7 +111125,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map" } }, - [4992]={ + [5027]={ [1]={ [1]={ [1]={ @@ -109991,7 +111145,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map_unique" } }, - [4993]={ + [5028]={ [1]={ [1]={ [1]={ @@ -110011,7 +111165,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique" } }, - [4994]={ + [5029]={ [1]={ [1]={ [1]={ @@ -110031,7 +111185,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_armour" } }, - [4995]={ + [5030]={ [1]={ [1]={ [1]={ @@ -110051,7 +111205,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_corrupted" } }, - [4996]={ + [5031]={ [1]={ [1]={ [1]={ @@ -110071,7 +111225,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_jewellery" } }, - [4997]={ + [5032]={ [1]={ [1]={ [1]={ @@ -110091,7 +111245,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_weapon" } }, - [4998]={ + [5033]={ [1]={ [1]={ [1]={ @@ -110111,7 +111265,7 @@ return { [1]="chance_%_to_drop_additional_gem" } }, - [4999]={ + [5034]={ [1]={ [1]={ [1]={ @@ -110131,7 +111285,7 @@ return { [1]="chance_%_to_drop_additional_maps" } }, - [5000]={ + [5035]={ [1]={ [1]={ [1]={ @@ -110151,7 +111305,7 @@ return { [1]="chance_%_to_drop_additional_map_currency" } }, - [5001]={ + [5036]={ [1]={ [1]={ [1]={ @@ -110171,7 +111325,7 @@ return { [1]="chance_%_to_drop_additional_scarab" } }, - [5002]={ + [5037]={ [1]={ [1]={ [1]={ @@ -110191,7 +111345,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_gilded" } }, - [5003]={ + [5038]={ [1]={ [1]={ [1]={ @@ -110211,7 +111365,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_polished" } }, - [5004]={ + [5039]={ [1]={ [1]={ [1]={ @@ -110231,7 +111385,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_rusted" } }, - [5005]={ + [5040]={ [1]={ [1]={ [1]={ @@ -110251,7 +111405,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_gilded" } }, - [5006]={ + [5041]={ [1]={ [1]={ [1]={ @@ -110271,7 +111425,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_polished" } }, - [5007]={ + [5042]={ [1]={ [1]={ [1]={ @@ -110291,7 +111445,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_rusted" } }, - [5008]={ + [5043]={ [1]={ [1]={ [1]={ @@ -110311,7 +111465,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_gilded" } }, - [5009]={ + [5044]={ [1]={ [1]={ [1]={ @@ -110331,7 +111485,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_polished" } }, - [5010]={ + [5045]={ [1]={ [1]={ [1]={ @@ -110351,7 +111505,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_rusted" } }, - [5011]={ + [5046]={ [1]={ [1]={ [1]={ @@ -110371,7 +111525,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_gilded" } }, - [5012]={ + [5047]={ [1]={ [1]={ [1]={ @@ -110391,7 +111545,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_polished" } }, - [5013]={ + [5048]={ [1]={ [1]={ [1]={ @@ -110411,7 +111565,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_rusted" } }, - [5014]={ + [5049]={ [1]={ [1]={ [1]={ @@ -110431,7 +111585,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_gilded" } }, - [5015]={ + [5050]={ [1]={ [1]={ [1]={ @@ -110451,7 +111605,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_polished" } }, - [5016]={ + [5051]={ [1]={ [1]={ [1]={ @@ -110471,7 +111625,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_rusted" } }, - [5017]={ + [5052]={ [1]={ [1]={ [1]={ @@ -110491,7 +111645,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_gilded" } }, - [5018]={ + [5053]={ [1]={ [1]={ [1]={ @@ -110511,7 +111665,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_polished" } }, - [5019]={ + [5054]={ [1]={ [1]={ [1]={ @@ -110531,7 +111685,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_rusted" } }, - [5020]={ + [5055]={ [1]={ [1]={ [1]={ @@ -110551,7 +111705,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_gilded" } }, - [5021]={ + [5056]={ [1]={ [1]={ [1]={ @@ -110571,7 +111725,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_polished" } }, - [5022]={ + [5057]={ [1]={ [1]={ [1]={ @@ -110591,7 +111745,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_rusted" } }, - [5023]={ + [5058]={ [1]={ [1]={ [1]={ @@ -110611,7 +111765,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_gilded" } }, - [5024]={ + [5059]={ [1]={ [1]={ [1]={ @@ -110631,7 +111785,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_polished" } }, - [5025]={ + [5060]={ [1]={ [1]={ [1]={ @@ -110651,7 +111805,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_rusted" } }, - [5026]={ + [5061]={ [1]={ [1]={ [1]={ @@ -110671,7 +111825,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_gilded" } }, - [5027]={ + [5062]={ [1]={ [1]={ [1]={ @@ -110691,7 +111845,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_polished" } }, - [5028]={ + [5063]={ [1]={ [1]={ [1]={ @@ -110711,7 +111865,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_rusted" } }, - [5029]={ + [5064]={ [1]={ [1]={ [1]={ @@ -110731,7 +111885,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_gilded" } }, - [5030]={ + [5065]={ [1]={ [1]={ [1]={ @@ -110751,7 +111905,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_polished" } }, - [5031]={ + [5066]={ [1]={ [1]={ [1]={ @@ -110771,7 +111925,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_rusted" } }, - [5032]={ + [5067]={ [1]={ [1]={ [1]={ @@ -110791,7 +111945,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_gilded" } }, - [5033]={ + [5068]={ [1]={ [1]={ [1]={ @@ -110811,7 +111965,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_polished" } }, - [5034]={ + [5069]={ [1]={ [1]={ [1]={ @@ -110831,7 +111985,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_rusted" } }, - [5035]={ + [5070]={ [1]={ [1]={ [1]={ @@ -110851,7 +112005,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_gilded" } }, - [5036]={ + [5071]={ [1]={ [1]={ [1]={ @@ -110871,7 +112025,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_polished" } }, - [5037]={ + [5072]={ [1]={ [1]={ [1]={ @@ -110891,7 +112045,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_rusted" } }, - [5038]={ + [5073]={ [1]={ [1]={ [1]={ @@ -110911,7 +112065,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_gilded" } }, - [5039]={ + [5074]={ [1]={ [1]={ [1]={ @@ -110931,7 +112085,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_polished" } }, - [5040]={ + [5075]={ [1]={ [1]={ [1]={ @@ -110951,7 +112105,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_rusted" } }, - [5041]={ + [5076]={ [1]={ [1]={ [1]={ @@ -110971,7 +112125,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_gilded" } }, - [5042]={ + [5077]={ [1]={ [1]={ [1]={ @@ -110991,7 +112145,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_polished" } }, - [5043]={ + [5078]={ [1]={ [1]={ [1]={ @@ -111011,7 +112165,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_rusted" } }, - [5044]={ + [5079]={ [1]={ [1]={ [1]={ @@ -111031,7 +112185,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_gilded" } }, - [5045]={ + [5080]={ [1]={ [1]={ [1]={ @@ -111051,7 +112205,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_polished" } }, - [5046]={ + [5081]={ [1]={ [1]={ [1]={ @@ -111071,7 +112225,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_rusted" } }, - [5047]={ + [5082]={ [1]={ [1]={ [1]={ @@ -111091,7 +112245,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_gilded" } }, - [5048]={ + [5083]={ [1]={ [1]={ [1]={ @@ -111111,7 +112265,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_polished" } }, - [5049]={ + [5084]={ [1]={ [1]={ [1]={ @@ -111131,7 +112285,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_rusted" } }, - [5050]={ + [5085]={ [1]={ [1]={ [1]={ @@ -111151,7 +112305,7 @@ return { [1]="chance_%_to_drop_additional_tangled_currency" } }, - [5051]={ + [5086]={ [1]={ [1]={ [1]={ @@ -111171,7 +112325,7 @@ return { [1]="chance_%_to_drop_additional_tangled_influenced_item" } }, - [5052]={ + [5087]={ [1]={ [1]={ [1]={ @@ -111191,7 +112345,7 @@ return { [1]="chance_%_to_drop_additional_unique" } }, - [5053]={ + [5088]={ [1]={ [1]={ limit={ @@ -111207,7 +112361,7 @@ return { [1]="chance_to_avoid_death_%" } }, - [5054]={ + [5089]={ [1]={ [1]={ limit={ @@ -111232,7 +112386,7 @@ return { [1]="chance_to_be_hindered_when_hit_by_spells_%" } }, - [5055]={ + [5090]={ [1]={ [1]={ limit={ @@ -111261,7 +112415,7 @@ return { [1]="chance_to_be_inflicted_with_an_ailment_+%" } }, - [5056]={ + [5091]={ [1]={ [1]={ limit={ @@ -111277,7 +112431,7 @@ return { [1]="chance_to_be_maimed_when_hit_%" } }, - [5057]={ + [5092]={ [1]={ [1]={ limit={ @@ -111293,7 +112447,7 @@ return { [1]="chance_to_be_sapped_when_hit_%" } }, - [5058]={ + [5093]={ [1]={ [1]={ limit={ @@ -111309,7 +112463,7 @@ return { [1]="chance_to_be_scorched_when_hit_%" } }, - [5059]={ + [5094]={ [1]={ [1]={ limit={ @@ -111325,7 +112479,7 @@ return { [1]="chance_to_block_attack_damage_if_not_blocked_recently_%" } }, - [5060]={ + [5095]={ [1]={ [1]={ limit={ @@ -111341,7 +112495,7 @@ return { [1]="chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%" } }, - [5061]={ + [5096]={ [1]={ [1]={ limit={ @@ -111357,7 +112511,7 @@ return { [1]="chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%" } }, - [5062]={ + [5097]={ [1]={ [1]={ limit={ @@ -111373,71 +112527,7 @@ return { [1]="chance_to_block_attacks_%_while_channelling" } }, - [5063]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage if you've Cast a Spell Recently" - } - }, - stats={ - [1]="chance_to_block_spells_%_if_cast_a_spell_recently" - } - }, - [5064]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage if you were Damaged by a Hit Recently" - } - }, - stats={ - [1]="chance_to_block_spells_%_if_damaged_by_a_hit_recently" - } - }, - [5065]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while affected by Discipline" - } - }, - stats={ - [1]="chance_to_block_spells_%_while_affected_by_discipline" - } - }, - [5066]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage while Channelling" - } - }, - stats={ - [1]="chance_to_block_spells_%_while_channelling" - } - }, - [5067]={ + [5098]={ [1]={ [1]={ limit={ @@ -111453,7 +112543,7 @@ return { [1]="chance_to_create_consecrated_ground_on_melee_kill_%" } }, - [5068]={ + [5099]={ [1]={ [1]={ limit={ @@ -111487,7 +112577,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [5069]={ + [5100]={ [1]={ [1]={ limit={ @@ -111503,7 +112593,7 @@ return { [1]="chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second" } }, - [5070]={ + [5101]={ [1]={ [1]={ limit={ @@ -111519,7 +112609,7 @@ return { [1]="chance_to_deal_double_damage_%_while_at_least_200_strength" } }, - [5071]={ + [5102]={ [1]={ [1]={ limit={ @@ -111535,7 +112625,7 @@ return { [1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds" } }, - [5072]={ + [5103]={ [1]={ [1]={ limit={ @@ -111551,7 +112641,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [5073]={ + [5104]={ [1]={ [1]={ limit={ @@ -111567,7 +112657,7 @@ return { [1]="chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently" } }, - [5074]={ + [5105]={ [1]={ [1]={ limit={ @@ -111583,7 +112673,7 @@ return { [1]="chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently" } }, - [5075]={ + [5106]={ [1]={ [1]={ limit={ @@ -111599,7 +112689,7 @@ return { [1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds" } }, - [5076]={ + [5107]={ [1]={ [1]={ limit={ @@ -111615,7 +112705,7 @@ return { [1]="chance_to_deal_double_damage_%_per_4_rage" } }, - [5077]={ + [5108]={ [1]={ [1]={ limit={ @@ -111631,7 +112721,7 @@ return { [1]="chance_to_deal_double_damage_%_per_500_strength" } }, - [5078]={ + [5109]={ [1]={ [1]={ limit={ @@ -111656,7 +112746,7 @@ return { [1]="chance_to_deal_double_damage_%_while_focused" } }, - [5079]={ + [5110]={ [1]={ [1]={ limit={ @@ -111672,7 +112762,7 @@ return { [1]="chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds" } }, - [5080]={ + [5111]={ [1]={ [1]={ limit={ @@ -111688,7 +112778,7 @@ return { [1]="chance_to_deal_double_damage_while_on_full_life_%" } }, - [5081]={ + [5112]={ [1]={ [1]={ limit={ @@ -111704,7 +112794,7 @@ return { [1]="chance_to_deal_triple_damage_%_while_at_least_400_strength" } }, - [5082]={ + [5113]={ [1]={ [1]={ limit={ @@ -111720,7 +112810,7 @@ return { [1]="chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield" } }, - [5083]={ + [5114]={ [1]={ [1]={ limit={ @@ -111736,23 +112826,7 @@ return { [1]="chance_to_double_armour_effect_on_hit_%" } }, - [5084]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d}% chance to Evade Attack Hits" - } - }, - stats={ - [1]="chance_to_evade_attacks_%" - } - }, - [5085]={ + [5115]={ [1]={ [1]={ limit={ @@ -111761,46 +112835,14 @@ return { [2]="#" } }, - text="{0:+d}% chance to Evade Attack Hits if you haven't been Hit Recently" - } - }, - stats={ - [1]="chance_to_evade_attacks_%_if_havent_been_hit_recently" - } - }, - [5086]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Evade Attack Hits while affected by Grace" - } - }, - stats={ - [1]="chance_to_evade_attacks_%_while_affected_by_grace" - } - }, - [5087]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to Chance to Evade while you have Energy Shield" + text="Projectiles have {0}% chance for an additional Projectile when Forking per 10 Tribute" } }, stats={ - [1]="chance_to_evade_%_while_you_have_energy_shield" + [1]="chance_to_fork_extra_projectile_%_per_10_tribute" } }, - [5088]={ + [5116]={ [1]={ [1]={ limit={ @@ -111816,7 +112858,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [5089]={ + [5117]={ [1]={ [1]={ limit={ @@ -111841,23 +112883,32 @@ return { [1]="chance_to_fortify_on_melee_stun_%" } }, - [5090]={ + [5118]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, + [2]=99 + } + }, + text="{0}% chance when you gain a Charge to gain an additional Charge per 10 Tribute" + }, + [2]={ + limit={ + [1]={ + [1]=100, [2]="#" } }, - text="{0}% chance to Freeze, Shock and Ignite while affected by a Herald" + text="Gain an additional Charge when you gain a Charge per 10 Tribute" } }, stats={ - [1]="chance_to_freeze_shock_ignite_%_while_affected_by_a_herald" + [1]="chance_to_gain_1_more_charge_%_per_10_tribute" } }, - [5091]={ + [5119]={ [1]={ [1]={ limit={ @@ -111882,7 +112933,7 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [5092]={ + [5120]={ [1]={ [1]={ limit={ @@ -111907,7 +112958,7 @@ return { [1]="chance_to_gain_1_more_endurance_charge_%" } }, - [5093]={ + [5121]={ [1]={ [1]={ limit={ @@ -111932,7 +112983,7 @@ return { [1]="chance_to_gain_1_more_frenzy_charge_%" } }, - [5094]={ + [5122]={ [1]={ [1]={ limit={ @@ -111957,7 +113008,7 @@ return { [1]="chance_to_gain_1_more_power_charge_%" } }, - [5095]={ + [5123]={ [1]={ [1]={ limit={ @@ -111973,7 +113024,7 @@ return { [1]="chance_to_gain_200_life_on_hit_with_attacks_%" } }, - [5096]={ + [5124]={ [1]={ [1]={ limit={ @@ -111989,7 +113040,7 @@ return { [1]="chance_to_gain_3_additional_exerted_attacks_%" } }, - [5097]={ + [5125]={ [1]={ [1]={ limit={ @@ -112005,7 +113056,7 @@ return { [1]="chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5098]={ + [5126]={ [1]={ [1]={ limit={ @@ -112021,7 +113072,7 @@ return { [1]="chance_to_gain_elusive_when_you_block_while_dual_wielding_%" } }, - [5099]={ + [5127]={ [1]={ [1]={ limit={ @@ -112037,7 +113088,7 @@ return { [1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy" } }, - [5100]={ + [5128]={ [1]={ [1]={ limit={ @@ -112053,7 +113104,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%" } }, - [5101]={ + [5129]={ [1]={ [1]={ limit={ @@ -112078,7 +113129,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_attack_%" } }, - [5102]={ + [5130]={ [1]={ [1]={ limit={ @@ -112103,7 +113154,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_%" } }, - [5103]={ + [5131]={ [1]={ [1]={ limit={ @@ -112119,7 +113170,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_stun_%" } }, - [5104]={ + [5132]={ [1]={ [1]={ limit={ @@ -112135,7 +113186,7 @@ return { [1]="chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5105]={ + [5133]={ [1]={ [1]={ limit={ @@ -112151,7 +113202,7 @@ return { [1]="chance_to_gain_onslaught_on_flask_use_%" } }, - [5106]={ + [5134]={ [1]={ [1]={ limit={ @@ -112167,7 +113218,7 @@ return { [1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy" } }, - [5107]={ + [5135]={ [1]={ [1]={ limit={ @@ -112192,7 +113243,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%" } }, - [5108]={ + [5136]={ [1]={ [1]={ limit={ @@ -112208,7 +113259,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_with_axes_%" } }, - [5109]={ + [5137]={ [1]={ [1]={ limit={ @@ -112224,7 +113275,7 @@ return { [1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%" } }, - [5110]={ + [5138]={ [1]={ [1]={ limit={ @@ -112249,7 +113300,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [5111]={ + [5139]={ [1]={ [1]={ limit={ @@ -112265,7 +113316,7 @@ return { [1]="chance_to_gain_random_standard_charge_on_hit_%" } }, - [5112]={ + [5140]={ [1]={ [1]={ limit={ @@ -112281,7 +113332,7 @@ return { [1]="chance_to_gain_skill_cost_as_mana_when_paid_%" } }, - [5113]={ + [5141]={ [1]={ [1]={ limit={ @@ -112306,7 +113357,7 @@ return { [1]="chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%" } }, - [5114]={ + [5142]={ [1]={ [1]={ limit={ @@ -112331,7 +113382,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%" } }, - [5115]={ + [5143]={ [1]={ [1]={ limit={ @@ -112347,7 +113398,7 @@ return { [1]="chance_to_grant_power_charge_on_shocking_chilled_enemy_%" } }, - [5116]={ + [5144]={ [1]={ [1]={ limit={ @@ -112356,14 +113407,14 @@ return { [2]="#" } }, - text="Chance to Ignite is doubled" + text="Flammability Magnitude is doubled" } }, stats={ [1]="chance_to_ignite_is_doubled" } }, - [5117]={ + [5145]={ [1]={ [1]={ limit={ @@ -112379,7 +113430,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [5118]={ + [5146]={ [1]={ [1]={ limit={ @@ -112404,7 +113455,7 @@ return { [1]="chance_to_inflict_10_incision_on_attack_hit_%" } }, - [5119]={ + [5147]={ [1]={ [1]={ limit={ @@ -112429,7 +113480,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [5120]={ + [5148]={ [1]={ [1]={ limit={ @@ -112454,7 +113505,7 @@ return { [1]="chance_to_inflict_brittle_on_enemy_on_block_%" } }, - [5121]={ + [5149]={ [1]={ [1]={ limit={ @@ -112470,7 +113521,7 @@ return { [1]="chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%" } }, - [5122]={ + [5150]={ [1]={ [1]={ limit={ @@ -112486,7 +113537,7 @@ return { [1]="chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%" } }, - [5123]={ + [5151]={ [1]={ [1]={ limit={ @@ -112511,7 +113562,7 @@ return { [1]="chance_to_inflict_incision_on_attack_hit_%" } }, - [5124]={ + [5152]={ [1]={ [1]={ limit={ @@ -112520,14 +113571,14 @@ return { [2]="#" } }, - text="{0}% Chance to Inflict Lightning Exposure on Hit with Lightning Damage" + text="{0}% Chance to Inflict Exposure on Hit with Lightning Damage" } }, stats={ [1]="chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%" } }, - [5125]={ + [5153]={ [1]={ [1]={ limit={ @@ -112552,7 +113603,7 @@ return { [1]="chance_to_inflict_sap_on_enemy_on_block_%" } }, - [5126]={ + [5154]={ [1]={ [1]={ limit={ @@ -112577,7 +113628,7 @@ return { [1]="chance_to_inflict_scorch_on_enemy_on_block_%" } }, - [5127]={ + [5155]={ [1]={ [1]={ limit={ @@ -112593,7 +113644,7 @@ return { [1]="chance_to_intimidate_nearby_enemies_on_melee_kill_%" } }, - [5128]={ + [5156]={ [1]={ [1]={ limit={ @@ -112618,7 +113669,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [5129]={ + [5157]={ [1]={ [1]={ limit={ @@ -112634,7 +113685,7 @@ return { [1]="chance_to_leave_2_ground_blades_%" } }, - [5130]={ + [5158]={ [1]={ [1]={ limit={ @@ -112650,7 +113701,7 @@ return { [1]="chance_to_load_a_bolt_on_killing_an_enemy_%" } }, - [5131]={ + [5159]={ [1]={ [1]={ limit={ @@ -112675,7 +113726,39 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [5132]={ + [5160]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills have a {0}% chance to not consume Glory" + } + }, + stats={ + [1]="chance_to_not_consume_glory_%" + } + }, + [5161]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills have {0}% chance to not remove Elemental Infusions but still count as consuming them" + } + }, + stats={ + [1]="chance_to_not_consume_infusion_%" + } + }, + [5162]={ [1]={ [1]={ limit={ @@ -112684,7 +113767,7 @@ return { [2]=99 } }, - text="{0}% chance for Infusions to Infuse your Projectiles without being Consumed" + text="{0}% chance for Surges to suffuse your Projectiles without being Consumed" }, [2]={ limit={ @@ -112693,14 +113776,14 @@ return { [2]="#" } }, - text="Infusions Infuse your Projectiles without being Consumed" + text="Surges suffuse your Projectiles without being Consumed" } }, stats={ - [1]="chance_to_not_consume_infusion_%" + [1]="chance_to_not_consume_instilling_%" } }, - [5133]={ + [5163]={ [1]={ [1]={ limit={ @@ -112729,7 +113812,7 @@ return { [1]="chance_to_poison_on_hit_+%_vs_non_poisoned_enemies" } }, - [5134]={ + [5164]={ [1]={ [1]={ limit={ @@ -112745,7 +113828,7 @@ return { [1]="chance_to_poison_on_hit_can_apply_multiple_stacks" } }, - [5135]={ + [5165]={ [1]={ [1]={ limit={ @@ -112761,7 +113844,7 @@ return { [1]="chance_to_poison_on_hit_%_per_power_charge" } }, - [5136]={ + [5166]={ [1]={ [1]={ limit={ @@ -112790,7 +113873,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5137]={ + [5167]={ [1]={ [1]={ limit={ @@ -112806,7 +113889,23 @@ return { [1]="chance_to_shock_chilled_enemies_%" } }, - [5138]={ + [5168]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Energy Shield Recharge to start when you gain an Infusion" + } + }, + stats={ + [1]="chance_to_start_energy_shield_recharge_%_on_gaining_infusion" + } + }, + [5169]={ [1]={ [1]={ limit={ @@ -112822,7 +113921,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_linking_target" } }, - [5139]={ + [5170]={ [1]={ [1]={ limit={ @@ -112838,7 +113937,7 @@ return { [1]="chance_to_summon_two_totems_%" } }, - [5140]={ + [5171]={ [1]={ [1]={ limit={ @@ -112854,7 +113953,7 @@ return { [1]="chance_to_throw_4_additional_traps_%" } }, - [5141]={ + [5172]={ [1]={ [1]={ limit={ @@ -112879,7 +113978,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [5142]={ + [5173]={ [1]={ [1]={ limit={ @@ -112908,7 +114007,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [5143]={ + [5174]={ [1]={ [1]={ limit={ @@ -112937,7 +114036,36 @@ return { [1]="channelled_skill_damage_+%_per_10_devotion" } }, - [5144]={ + [5175]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Chaos Damage while affected by Herald of Plague" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Chaos Damage while affected by Herald of Plague" + } + }, + stats={ + [1]="chaos_damage_+%_while_affected_by_herald_of_plague" + } + }, + [5176]={ [1]={ [1]={ limit={ @@ -112953,7 +114081,7 @@ return { [1]="chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life" } }, - [5145]={ + [5177]={ [1]={ [1]={ limit={ @@ -112969,7 +114097,7 @@ return { [1]="chaos_damage_over_time_heals_while_leeching_life" } }, - [5146]={ + [5178]={ [1]={ [1]={ limit={ @@ -112985,7 +114113,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_per_4_chaos_resistance" } }, - [5147]={ + [5179]={ [1]={ [1]={ limit={ @@ -113001,7 +114129,7 @@ return { [1]="additional_chaos_resistance_against_damage_over_time_%" } }, - [5148]={ + [5180]={ [1]={ [1]={ limit={ @@ -113026,7 +114154,7 @@ return { [1]="chaos_damage_%_taken_from_mana_before_life" } }, - [5149]={ + [5181]={ [1]={ [1]={ limit={ @@ -113042,7 +114170,7 @@ return { [1]="chaos_damage_+%_per_100_max_mana_up_to_80" } }, - [5150]={ + [5182]={ [1]={ [1]={ limit={ @@ -113071,7 +114199,7 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_agony" } }, - [5151]={ + [5183]={ [1]={ [1]={ limit={ @@ -113087,7 +114215,7 @@ return { [1]="chaos_damage_resistance_%_per_endurance_charge" } }, - [5152]={ + [5184]={ [1]={ [1]={ limit={ @@ -113103,7 +114231,7 @@ return { [1]="chaos_damage_resistance_is_doubled" } }, - [5153]={ + [5185]={ [1]={ [1]={ limit={ @@ -113119,7 +114247,7 @@ return { [1]="chaos_damage_resistance_%_per_poison_stack" } }, - [5154]={ + [5186]={ [1]={ [1]={ limit={ @@ -113144,7 +114272,7 @@ return { [1]="chaos_damage_resistance_%_when_stationary" } }, - [5155]={ + [5187]={ [1]={ [1]={ limit={ @@ -113160,7 +114288,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony" } }, - [5156]={ + [5188]={ [1]={ [1]={ limit={ @@ -113176,7 +114304,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements" } }, - [5157]={ + [5189]={ [1]={ [1]={ limit={ @@ -113192,7 +114320,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [5158]={ + [5190]={ [1]={ [1]={ limit={ @@ -113221,7 +114349,7 @@ return { [1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud" } }, - [5159]={ + [5191]={ [1]={ [1]={ limit={ @@ -113250,7 +114378,7 @@ return { [1]="chaos_damage_with_attack_skills_+%" } }, - [5160]={ + [5192]={ [1]={ [1]={ limit={ @@ -113279,7 +114407,7 @@ return { [1]="chaos_damage_with_spell_skills_+%" } }, - [5161]={ + [5193]={ [1]={ [1]={ limit={ @@ -113295,7 +114423,7 @@ return { [1]="chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems" } }, - [5162]={ + [5194]={ [1]={ [1]={ limit={ @@ -113311,7 +114439,7 @@ return { [1]="chaos_hit_and_dot_damage_%_taken_as_fire" } }, - [5163]={ + [5195]={ [1]={ [1]={ limit={ @@ -113327,7 +114455,7 @@ return { [1]="chaos_hit_and_dot_damage_%_taken_as_lightning" } }, - [5164]={ + [5196]={ [1]={ [1]={ limit={ @@ -113343,7 +114471,7 @@ return { [1]="chaos_resist_unnaffected_by_area_penalites" } }, - [5165]={ + [5197]={ [1]={ [1]={ limit={ @@ -113359,23 +114487,7 @@ return { [1]="chaos_skill_chance_to_hinder_on_hit_%" } }, - [5166]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Chaos Skills have {0}% chance to Ignite" - } - }, - stats={ - [1]="chaos_skill_chance_to_ignite_%" - } - }, - [5167]={ + [5198]={ [1]={ [1]={ limit={ @@ -113391,7 +114503,7 @@ return { [1]="chaos_skill_gem_level_+" } }, - [5168]={ + [5199]={ [1]={ [1]={ limit={ @@ -113420,7 +114532,7 @@ return { [1]="chaos_skills_area_of_effect_+%" } }, - [5169]={ + [5200]={ [1]={ [1]={ limit={ @@ -113449,7 +114561,7 @@ return { [1]="charged_dash_movement_speed_+%_final" } }, - [5170]={ + [5201]={ [1]={ [1]={ limit={ @@ -113478,7 +114590,7 @@ return { [1]="charm_charges_gained_+%" } }, - [5171]={ + [5202]={ [1]={ [1]={ limit={ @@ -113494,7 +114606,7 @@ return { [1]="charm_charges_used_%_granted_to_life_flasks" } }, - [5172]={ + [5203]={ [1]={ [1]={ limit={ @@ -113527,7 +114639,7 @@ return { [1]="charm_charges_used_+%" } }, - [5173]={ + [5204]={ [1]={ [1]={ limit={ @@ -113543,7 +114655,7 @@ return { [1]="charm_create_consecrated_ground_when_used" } }, - [5174]={ + [5205]={ [1]={ [1]={ limit={ @@ -113559,7 +114671,65 @@ return { [1]="charm_defend_with_double_armour_during_effect" } }, - [5175]={ + [5206]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Charm Effect Duration per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Charm Effect Duration per 25 Tribute" + } + }, + stats={ + [1]="charm_duration_+%_per_25_tribute" + } + }, + [5207]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Charms applied to you have {0}% increased Effect per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Charms applied to you have {0}% reduced Effect per 10 Tribute" + } + }, + stats={ + [1]="charm_effect_+%_per_10_tribute" + } + }, + [5208]={ [1]={ [1]={ limit={ @@ -113588,7 +114758,7 @@ return { [1]="charm_effect_+%" } }, - [5176]={ + [5209]={ [1]={ [1]={ limit={ @@ -113613,7 +114783,7 @@ return { [1]="charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect" } }, - [5177]={ + [5210]={ [1]={ [1]={ limit={ @@ -113629,7 +114799,7 @@ return { [1]="charm_energy_shield_recharge_starts_when_used" } }, - [5178]={ + [5211]={ [1]={ [1]={ limit={ @@ -113645,7 +114815,7 @@ return { [1]="charm_gain_onslaught_during_effect" } }, - [5179]={ + [5212]={ [1]={ [1]={ limit={ @@ -113661,7 +114831,7 @@ return { [1]="charm_grants_frenzy_charge_when_used" } }, - [5180]={ + [5213]={ [1]={ [1]={ limit={ @@ -113677,7 +114847,7 @@ return { [1]="charm_grants_power_charge_when_used" } }, - [5181]={ + [5214]={ [1]={ [1]={ limit={ @@ -113693,7 +114863,7 @@ return { [1]="charm_grants_up_to_your_maximum_rage_when_used" } }, - [5182]={ + [5215]={ [1]={ [1]={ limit={ @@ -113702,14 +114872,14 @@ return { [2]="#" } }, - text="Ignite Enemies in Presence as though dealing Fire damage equal to {0}% of your maximum Life when used" + text="Creates Ignited Ground in for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to {0}% of your maximum Life" } }, stats={ - [1]="charm_ignite_enemies_in_presence_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used" + [1]="charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used" } }, - [5183]={ + [5216]={ [1]={ [1]={ limit={ @@ -113725,7 +114895,7 @@ return { [1]="charm_possesed_by_bear_spirit_for_x_seconds_when_used" } }, - [5184]={ + [5217]={ [1]={ [1]={ limit={ @@ -113741,7 +114911,7 @@ return { [1]="charm_possesed_by_boar_spirit_for_x_seconds_when_used" } }, - [5185]={ + [5218]={ [1]={ [1]={ limit={ @@ -113757,7 +114927,7 @@ return { [1]="charm_possesed_by_cat_spirit_for_x_seconds_when_used" } }, - [5186]={ + [5219]={ [1]={ [1]={ limit={ @@ -113773,7 +114943,7 @@ return { [1]="charm_possesed_by_owl_spirit_for_x_seconds_when_used" } }, - [5187]={ + [5220]={ [1]={ [1]={ limit={ @@ -113789,7 +114959,7 @@ return { [1]="charm_possesed_by_ox_spirit_for_x_seconds_when_used" } }, - [5188]={ + [5221]={ [1]={ [1]={ limit={ @@ -113805,7 +114975,7 @@ return { [1]="charm_possesed_by_primate_spirit_for_x_seconds_when_used" } }, - [5189]={ + [5222]={ [1]={ [1]={ limit={ @@ -113821,7 +114991,7 @@ return { [1]="charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used" } }, - [5190]={ + [5223]={ [1]={ [1]={ limit={ @@ -113837,7 +115007,7 @@ return { [1]="charm_possesed_by_serpent_spirit_for_x_seconds_when_used" } }, - [5191]={ + [5224]={ [1]={ [1]={ limit={ @@ -113853,7 +115023,7 @@ return { [1]="charm_possesed_by_stag_spirit_for_x_seconds_when_used" } }, - [5192]={ + [5225]={ [1]={ [1]={ limit={ @@ -113869,7 +115039,7 @@ return { [1]="charm_possesed_by_wolf_spirit_for_x_seconds_when_used" } }, - [5193]={ + [5226]={ [1]={ [1]={ limit={ @@ -113885,7 +115055,7 @@ return { [1]="charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount" } }, - [5194]={ + [5227]={ [1]={ [1]={ limit={ @@ -113901,7 +115071,7 @@ return { [1]="charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount" } }, - [5195]={ + [5228]={ [1]={ [1]={ limit={ @@ -113917,7 +115087,7 @@ return { [1]="charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect" } }, - [5196]={ + [5229]={ [1]={ [1]={ limit={ @@ -113933,7 +115103,7 @@ return { [1]="charms_%_chance_on_use_to_use_another_charm_without_consuming_charges" } }, - [5197]={ + [5230]={ [1]={ [1]={ limit={ @@ -113949,7 +115119,7 @@ return { [1]="charms_%_chance_to_not_consume_charges" } }, - [5198]={ + [5231]={ [1]={ [1]={ limit={ @@ -113965,7 +115135,7 @@ return { [1]="charms_use_no_charges" } }, - [5199]={ + [5232]={ [1]={ [1]={ limit={ @@ -113981,7 +115151,7 @@ return { [1]="chest_drop_additional_corrupted_item_divination_cards" } }, - [5200]={ + [5233]={ [1]={ [1]={ limit={ @@ -113997,7 +115167,7 @@ return { [1]="chest_drop_additional_currency_item_divination_cards" } }, - [5201]={ + [5234]={ [1]={ [1]={ limit={ @@ -114013,7 +115183,7 @@ return { [1]="chest_drop_additional_divination_cards_from_current_world_area" } }, - [5202]={ + [5235]={ [1]={ [1]={ limit={ @@ -114029,7 +115199,7 @@ return { [1]="chest_drop_additional_divination_cards_from_same_set" } }, - [5203]={ + [5236]={ [1]={ [1]={ limit={ @@ -114045,7 +115215,7 @@ return { [1]="chest_drop_additional_unique_item_divination_cards" } }, - [5204]={ + [5237]={ [1]={ [1]={ limit={ @@ -114061,7 +115231,7 @@ return { [1]="chest_number_of_additional_pirate_uniques_to_drop" } }, - [5205]={ + [5238]={ [1]={ [1]={ limit={ @@ -114090,7 +115260,7 @@ return { [1]="chill_and_freeze_duration_+%" } }, - [5206]={ + [5239]={ [1]={ [1]={ limit={ @@ -114115,7 +115285,7 @@ return { [1]="chill_attackers_for_4_seconds_on_block_%_chance" } }, - [5207]={ + [5240]={ [1]={ [1]={ limit={ @@ -114131,7 +115301,7 @@ return { [1]="chill_chance_based_on_damage_fixed_magnitude" } }, - [5208]={ + [5241]={ [1]={ [1]={ limit={ @@ -114160,7 +115330,7 @@ return { [1]="chill_effect_+%_while_mana_leeching" } }, - [5209]={ + [5242]={ [1]={ [1]={ limit={ @@ -114176,7 +115346,7 @@ return { [1]="chill_effect_is_reversed" } }, - [5210]={ + [5243]={ [1]={ [1]={ limit={ @@ -114205,7 +115375,7 @@ return { [1]="chill_effect_+%" } }, - [5211]={ + [5244]={ [1]={ [1]={ limit={ @@ -114234,7 +115404,7 @@ return { [1]="chill_effect_+%_with_critical_strikes" } }, - [5212]={ + [5245]={ [1]={ [1]={ limit={ @@ -114250,7 +115420,7 @@ return { [1]="chill_minimum_slow_%_from_mastery" } }, - [5213]={ + [5246]={ [1]={ [1]={ limit={ @@ -114266,7 +115436,7 @@ return { [1]="chill_nearby_enemies_when_you_focus" } }, - [5214]={ + [5247]={ [1]={ [1]={ limit={ @@ -114282,7 +115452,7 @@ return { [1]="chilled_enemies_have_no_elemental_resistance" } }, - [5215]={ + [5248]={ [1]={ [1]={ limit={ @@ -114307,7 +115477,7 @@ return { [1]="chilled_ground_when_hit_with_attack_%" } }, - [5216]={ + [5249]={ [1]={ [1]={ limit={ @@ -114336,7 +115506,7 @@ return { [1]="chilling_areas_also_grant_curse_effect_+%" } }, - [5217]={ + [5250]={ [1]={ [1]={ limit={ @@ -114365,7 +115535,7 @@ return { [1]="chilling_areas_also_grant_lightning_damage_taken_+%" } }, - [5218]={ + [5251]={ [1]={ [1]={ limit={ @@ -114381,7 +115551,7 @@ return { [1]="chills_from_your_hits_cause_shattering" } }, - [5219]={ + [5252]={ [1]={ [1]={ limit={ @@ -114406,7 +115576,7 @@ return { [1]="chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds" } }, - [5220]={ + [5253]={ [1]={ [1]={ limit={ @@ -114422,7 +115592,7 @@ return { [1]="chronomancer_reserves_no_mana" } }, - [5221]={ + [5254]={ [1]={ [1]={ [1]={ @@ -114459,7 +115629,7 @@ return { [1]="clarity_mana_reservation_efficiency_-2%_per_1" } }, - [5222]={ + [5255]={ [1]={ [1]={ limit={ @@ -114488,7 +115658,7 @@ return { [1]="clarity_mana_reservation_efficiency_+%" } }, - [5223]={ + [5256]={ [1]={ [1]={ limit={ @@ -114504,7 +115674,7 @@ return { [1]="clarity_reserves_no_mana" } }, - [5224]={ + [5257]={ [1]={ [1]={ limit={ @@ -114520,7 +115690,7 @@ return { [1]="claw_damage_against_enemies_on_low_life_+%" } }, - [5225]={ + [5258]={ [1]={ [1]={ limit={ @@ -114549,7 +115719,7 @@ return { [1]="claw_damage_+%_while_on_low_life" } }, - [5226]={ + [5259]={ [1]={ [1]={ limit={ @@ -114565,7 +115735,7 @@ return { [1]="cleave_fortify_on_hit" } }, - [5227]={ + [5260]={ [1]={ [1]={ limit={ @@ -114581,7 +115751,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [5228]={ + [5261]={ [1]={ [1]={ limit={ @@ -114610,7 +115780,7 @@ return { [1]="cobra_lash_damage_+%" } }, - [5229]={ + [5262]={ [1]={ [1]={ limit={ @@ -114635,7 +115805,7 @@ return { [1]="cobra_lash_number_of_additional_chains" } }, - [5230]={ + [5263]={ [1]={ [1]={ limit={ @@ -114664,7 +115834,7 @@ return { [1]="cobra_lash_projectile_speed_+%" } }, - [5231]={ + [5264]={ [1]={ [1]={ limit={ @@ -114693,7 +115863,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [5232]={ + [5265]={ [1]={ [1]={ limit={ @@ -114722,7 +115892,7 @@ return { [1]="cold_ailment_effect_+%_against_shocked_enemies" } }, - [5233]={ + [5266]={ [1]={ [1]={ limit={ @@ -114751,7 +115921,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [5234]={ + [5267]={ [1]={ [1]={ limit={ @@ -114767,7 +115937,7 @@ return { [1]="cold_and_chaos_damage_resistance_%" } }, - [5235]={ + [5268]={ [1]={ [1]={ limit={ @@ -114783,7 +115953,7 @@ return { [1]="cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire" } }, - [5236]={ + [5269]={ [1]={ [1]={ limit={ @@ -114799,7 +115969,7 @@ return { [1]="cold_damage_+%_per_cold_resistance_above_75" } }, - [5237]={ + [5270]={ [1]={ [1]={ limit={ @@ -114828,7 +115998,7 @@ return { [1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently" } }, - [5238]={ + [5271]={ [1]={ [1]={ limit={ @@ -114844,7 +116014,7 @@ return { [1]="cold_damage_+%_per_25_dexterity" } }, - [5239]={ + [5272]={ [1]={ [1]={ limit={ @@ -114860,7 +116030,7 @@ return { [1]="cold_damage_+%_per_25_intelligence" } }, - [5240]={ + [5273]={ [1]={ [1]={ limit={ @@ -114876,7 +116046,7 @@ return { [1]="cold_damage_+%_per_25_strength" } }, - [5241]={ + [5274]={ [1]={ [1]={ limit={ @@ -114905,7 +116075,7 @@ return { [1]="cold_damage_+%_per_frenzy_charge" } }, - [5242]={ + [5275]={ [1]={ [1]={ limit={ @@ -114934,7 +116104,7 @@ return { [1]="cold_damage_+%_per_missing_cold_resistance" } }, - [5243]={ + [5276]={ [1]={ [1]={ limit={ @@ -114963,7 +116133,7 @@ return { [1]="cold_damage_+%_while_affected_by_hatred" } }, - [5244]={ + [5277]={ [1]={ [1]={ limit={ @@ -114992,7 +116162,7 @@ return { [1]="cold_damage_+%_while_affected_by_herald_of_ice" } }, - [5245]={ + [5278]={ [1]={ [1]={ limit={ @@ -115021,7 +116191,7 @@ return { [1]="cold_damage_+%_while_off_hand_is_empty" } }, - [5246]={ + [5279]={ [1]={ [1]={ limit={ @@ -115037,7 +116207,7 @@ return { [1]="cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [5247]={ + [5280]={ [1]={ [1]={ limit={ @@ -115053,7 +116223,7 @@ return { [1]="cold_damage_taken_goes_to_life_over_4_seconds_%" } }, - [5248]={ + [5281]={ [1]={ [1]={ limit={ @@ -115069,7 +116239,7 @@ return { [1]="cold_damage_taken_+" } }, - [5249]={ + [5282]={ [1]={ [1]={ limit={ @@ -115098,7 +116268,7 @@ return { [1]="cold_damage_taken_+%_if_have_been_hit_recently" } }, - [5250]={ + [5283]={ [1]={ [1]={ limit={ @@ -115127,7 +116297,7 @@ return { [1]="cold_damage_with_attack_skills_+%" } }, - [5251]={ + [5284]={ [1]={ [1]={ limit={ @@ -115156,7 +116326,7 @@ return { [1]="cold_damage_with_spell_skills_+%" } }, - [5252]={ + [5285]={ [1]={ [1]={ limit={ @@ -115185,7 +116355,7 @@ return { [1]="cold_exposure_effect_+%" } }, - [5253]={ + [5286]={ [1]={ [1]={ limit={ @@ -115210,7 +116380,7 @@ return { [1]="cold_exposure_on_hit_magnitude" } }, - [5254]={ + [5287]={ [1]={ [1]={ limit={ @@ -115226,7 +116396,7 @@ return { [1]="cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%" } }, - [5255]={ + [5288]={ [1]={ [1]={ limit={ @@ -115242,7 +116412,7 @@ return { [1]="cold_hit_and_dot_damage_%_taken_as_fire" } }, - [5256]={ + [5289]={ [1]={ [1]={ limit={ @@ -115258,7 +116428,7 @@ return { [1]="cold_hit_and_dot_damage_%_taken_as_lightning" } }, - [5257]={ + [5290]={ [1]={ [1]={ limit={ @@ -115287,7 +116457,7 @@ return { [1]="cold_hit_damage_+%_vs_shocked_enemies" } }, - [5258]={ + [5291]={ [1]={ [1]={ limit={ @@ -115303,7 +116473,7 @@ return { [1]="cold_penetration_%_vs_chilled_enemies" } }, - [5259]={ + [5292]={ [1]={ [1]={ limit={ @@ -115319,7 +116489,7 @@ return { [1]="cold_projectile_mine_critical_multiplier_+" } }, - [5260]={ + [5293]={ [1]={ [1]={ limit={ @@ -115348,7 +116518,7 @@ return { [1]="cold_projectile_mine_damage_+%" } }, - [5261]={ + [5294]={ [1]={ [1]={ [1]={ @@ -115377,7 +116547,7 @@ return { [1]="cold_projectile_mine_throwing_speed_negated_+%" } }, - [5262]={ + [5295]={ [1]={ [1]={ limit={ @@ -115406,7 +116576,7 @@ return { [1]="cold_projectile_mine_throwing_speed_+%" } }, - [5263]={ + [5296]={ [1]={ [1]={ limit={ @@ -115435,7 +116605,7 @@ return { [1]="cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice" } }, - [5264]={ + [5297]={ [1]={ [1]={ limit={ @@ -115451,7 +116621,7 @@ return { [1]="cold_resist_unaffected_by_area_penalties" } }, - [5265]={ + [5298]={ [1]={ [1]={ limit={ @@ -115467,7 +116637,7 @@ return { [1]="cold_skill_chance_to_inflict_cold_exposure_%" } }, - [5266]={ + [5299]={ [1]={ [1]={ limit={ @@ -115483,7 +116653,7 @@ return { [1]="cold_skill_gem_level_+" } }, - [5267]={ + [5300]={ [1]={ [1]={ limit={ @@ -115499,7 +116669,7 @@ return { [1]="cold_skills_chance_to_poison_on_hit_%" } }, - [5268]={ + [5301]={ [1]={ [1]={ limit={ @@ -115515,7 +116685,36 @@ return { [1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy" } }, - [5269]={ + [5302]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills deal {0}% increased Damage per Combo consumed, up to 40%" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Skills deal {0}% reduced Damage per Combo consumed, up to 40%" + } + }, + stats={ + [1]="combo_finisher_damage_+%_up_to_40%" + } + }, + [5303]={ [1]={ [1]={ limit={ @@ -115531,7 +116730,7 @@ return { [1]="combust_area_of_effect_+%" } }, - [5270]={ + [5304]={ [1]={ [1]={ limit={ @@ -115547,7 +116746,7 @@ return { [1]="combust_is_disabled" } }, - [5271]={ + [5305]={ [1]={ [1]={ limit={ @@ -115576,7 +116775,7 @@ return { [1]="companion_accuracy_rating_+%" } }, - [5272]={ + [5306]={ [1]={ [1]={ limit={ @@ -115605,7 +116804,7 @@ return { [1]="companion_area_of_effect_+%" } }, - [5273]={ + [5307]={ [1]={ [1]={ limit={ @@ -115634,7 +116833,7 @@ return { [1]="companion_attack_speed_+%" } }, - [5274]={ + [5308]={ [1]={ [1]={ limit={ @@ -115650,7 +116849,36 @@ return { [1]="companion_chaos_resistance_%" } }, - [5275]={ + [5309]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions deal {0}% increased damage against Immobilised enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Companions deal {0}% reduced damage against Immobilised enemies" + } + }, + stats={ + [1]="companion_damage_+%_vs_immobilised_enemies" + } + }, + [5310]={ [1]={ [1]={ limit={ @@ -115666,7 +116894,7 @@ return { [1]="companion_damage_increases_and_reductions_also_affects_you" } }, - [5276]={ + [5311]={ [1]={ [1]={ limit={ @@ -115695,7 +116923,7 @@ return { [1]="companion_damage_+%" } }, - [5277]={ + [5312]={ [1]={ [1]={ limit={ @@ -115711,7 +116939,7 @@ return { [1]="companion_elemental_resistance_%" } }, - [5278]={ + [5313]={ [1]={ [1]={ limit={ @@ -115740,7 +116968,7 @@ return { [1]="companion_maximum_life_+%" } }, - [5279]={ + [5314]={ [1]={ [1]={ limit={ @@ -115769,7 +116997,7 @@ return { [1]="companion_reservation_+%" } }, - [5280]={ + [5315]={ [1]={ [1]={ limit={ @@ -115785,7 +117013,7 @@ return { [1]="companion_takes_%_damage_before_you" } }, - [5281]={ + [5316]={ [1]={ [1]={ limit={ @@ -115801,7 +117029,7 @@ return { [1]="companion_takes_%_damage_before_you_from_support" } }, - [5282]={ + [5317]={ [1]={ [1]={ limit={ @@ -115817,7 +117045,7 @@ return { [1]="companions_gain_your_dexterity" } }, - [5283]={ + [5318]={ [1]={ [1]={ limit={ @@ -115833,7 +117061,7 @@ return { [1]="companions_gain_your_strength" } }, - [5284]={ + [5319]={ [1]={ [1]={ limit={ @@ -115849,7 +117077,7 @@ return { [1]="conductivity_no_reservation" } }, - [5285]={ + [5320]={ [1]={ [1]={ limit={ @@ -115865,7 +117093,7 @@ return { [1]="consecrated_ground_additional_physical_damage_reduction_%" } }, - [5286]={ + [5321]={ [1]={ [1]={ limit={ @@ -115881,7 +117109,7 @@ return { [1]="consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration" } }, - [5287]={ + [5322]={ [1]={ [1]={ limit={ @@ -115910,7 +117138,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [5288]={ + [5323]={ [1]={ [1]={ limit={ @@ -115939,7 +117167,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [5289]={ + [5324]={ [1]={ [1]={ limit={ @@ -115968,7 +117196,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [5290]={ + [5325]={ [1]={ [1]={ limit={ @@ -115997,7 +117225,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry" } }, - [5291]={ + [5326]={ [1]={ [1]={ limit={ @@ -116013,7 +117241,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [5292]={ + [5327]={ [1]={ [1]={ limit={ @@ -116029,7 +117257,7 @@ return { [1]="consecrated_ground_immune_to_status_ailments" } }, - [5293]={ + [5328]={ [1]={ [1]={ [1]={ @@ -116049,7 +117277,7 @@ return { [1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry" } }, - [5294]={ + [5329]={ [1]={ [1]={ limit={ @@ -116074,7 +117302,7 @@ return { [1]="consecrated_ground_on_death" } }, - [5295]={ + [5330]={ [1]={ [1]={ limit={ @@ -116099,7 +117327,7 @@ return { [1]="consecrated_ground_on_hit" } }, - [5296]={ + [5331]={ [1]={ [1]={ limit={ @@ -116115,7 +117343,7 @@ return { [1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds" } }, - [5297]={ + [5332]={ [1]={ [1]={ limit={ @@ -116131,7 +117359,7 @@ return { [1]="consecrated_ground_while_stationary_radius" } }, - [5298]={ + [5333]={ [1]={ [1]={ limit={ @@ -116147,7 +117375,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength" } }, - [5299]={ + [5334]={ [1]={ [1]={ limit={ @@ -116163,7 +117391,7 @@ return { [1]="consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground" } }, - [5300]={ + [5335]={ [1]={ [1]={ limit={ @@ -116192,7 +117420,7 @@ return { [1]="consecrated_path_area_of_effect_+%" } }, - [5301]={ + [5336]={ [1]={ [1]={ limit={ @@ -116221,7 +117449,7 @@ return { [1]="consecrated_path_damage_+%" } }, - [5302]={ + [5337]={ [1]={ [1]={ limit={ @@ -116237,7 +117465,7 @@ return { [1]="consume_X_life_instead_of_last_crossbow_bolt" } }, - [5303]={ + [5338]={ [1]={ [1]={ limit={ @@ -116253,7 +117481,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [5304]={ + [5339]={ [1]={ [1]={ limit={ @@ -116282,7 +117510,7 @@ return { [1]="consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life" } }, - [5305]={ + [5340]={ [1]={ [1]={ limit={ @@ -116303,7 +117531,7 @@ return { [2]="bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount" } }, - [5306]={ + [5341]={ [1]={ [1]={ limit={ @@ -116328,7 +117556,7 @@ return { [1]="contagion_spread_on_hit_affected_enemy_%" } }, - [5307]={ + [5342]={ [1]={ [1]={ limit={ @@ -116357,7 +117585,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [5308]={ + [5343]={ [1]={ [1]={ limit={ @@ -116386,7 +117614,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [5309]={ + [5344]={ [1]={ [1]={ limit={ @@ -116402,7 +117630,7 @@ return { [1]="convert_all_life_leech_to_energy_shield_leech" } }, - [5310]={ + [5345]={ [1]={ [1]={ limit={ @@ -116418,7 +117646,7 @@ return { [1]="cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds" } }, - [5311]={ + [5346]={ [1]={ [1]={ limit={ @@ -116447,7 +117675,7 @@ return { [1]="cooldown_recovery_+%_per_power_charge" } }, - [5312]={ + [5347]={ [1]={ [1]={ limit={ @@ -116476,7 +117704,7 @@ return { [1]="cooldown_speed_+%_per_brand_up_to_40%" } }, - [5313]={ + [5348]={ [1]={ [1]={ limit={ @@ -116501,7 +117729,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [5314]={ + [5349]={ [1]={ [1]={ limit={ @@ -116530,7 +117758,7 @@ return { [1]="corpse_eruption_cast_speed_+%" } }, - [5315]={ + [5350]={ [1]={ [1]={ limit={ @@ -116559,7 +117787,7 @@ return { [1]="corpse_eruption_damage_+%" } }, - [5316]={ + [5351]={ [1]={ [1]={ limit={ @@ -116588,7 +117816,7 @@ return { [1]="corpse_warp_cast_speed_+%" } }, - [5317]={ + [5352]={ [1]={ [1]={ limit={ @@ -116617,7 +117845,7 @@ return { [1]="corpse_warp_damage_+%" } }, - [5318]={ + [5353]={ [1]={ [1]={ limit={ @@ -116633,7 +117861,7 @@ return { [1]="corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry" } }, - [5319]={ + [5354]={ [1]={ [1]={ limit={ @@ -116649,7 +117877,7 @@ return { [1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second" } }, - [5320]={ + [5355]={ [1]={ [1]={ limit={ @@ -116665,7 +117893,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [5321]={ + [5356]={ [1]={ [1]={ limit={ @@ -116694,7 +117922,7 @@ return { [1]="corrupting_fever_damage_+%" } }, - [5322]={ + [5357]={ [1]={ [1]={ limit={ @@ -116723,7 +117951,7 @@ return { [1]="corrupting_fever_duration_+%" } }, - [5323]={ + [5358]={ [1]={ [1]={ limit={ @@ -116752,7 +117980,7 @@ return { [1]="counterattacks_cooldown_recovery_+%" } }, - [5324]={ + [5359]={ [1]={ [1]={ limit={ @@ -116768,7 +117996,7 @@ return { [1]="counterattacks_deal_double_damage" } }, - [5325]={ + [5360]={ [1]={ [1]={ limit={ @@ -116793,7 +118021,7 @@ return { [1]="counterattacks_debilitate_for_1_second_on_hit_%_chance" } }, - [5326]={ + [5361]={ [1]={ [1]={ limit={ @@ -116809,7 +118037,7 @@ return { [1]="cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [5327]={ + [5362]={ [1]={ [1]={ limit={ @@ -116834,7 +118062,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [5328]={ + [5363]={ [1]={ [1]={ limit={ @@ -116850,7 +118078,7 @@ return { [1]="cover_in_ash_on_hit_%_while_you_are_burning" } }, - [5329]={ + [5364]={ [1]={ [1]={ limit={ @@ -116866,7 +118094,7 @@ return { [1]="cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [5330]={ + [5365]={ [1]={ [1]={ limit={ @@ -116882,7 +118110,7 @@ return { [1]="cover_in_frost_on_hit" } }, - [5331]={ + [5366]={ [1]={ [1]={ limit={ @@ -116911,7 +118139,7 @@ return { [1]="crackling_lance_cast_speed_+%" } }, - [5332]={ + [5367]={ [1]={ [1]={ limit={ @@ -116940,7 +118168,7 @@ return { [1]="crackling_lance_damage_+%" } }, - [5333]={ + [5368]={ [1]={ [1]={ limit={ @@ -116956,7 +118184,7 @@ return { [1]="create_additional_brand_%_chance" } }, - [5334]={ + [5369]={ [1]={ [1]={ limit={ @@ -116972,7 +118200,7 @@ return { [1]="create_blighted_spore_on_killing_rare_enemy" } }, - [5335]={ + [5370]={ [1]={ [1]={ limit={ @@ -116988,7 +118216,7 @@ return { [1]="create_chilling_ground_on_freeze" } }, - [5336]={ + [5371]={ [1]={ [1]={ limit={ @@ -117004,7 +118232,7 @@ return { [1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy" } }, - [5337]={ + [5372]={ [1]={ [1]={ limit={ @@ -117020,7 +118248,7 @@ return { [1]="create_consecrated_ground_on_kill_%" } }, - [5338]={ + [5373]={ [1]={ [1]={ limit={ @@ -117045,7 +118273,7 @@ return { [1]="create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [5339]={ + [5374]={ [1]={ [1]={ limit={ @@ -117066,7 +118294,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [5340]={ + [5375]={ [1]={ [1]={ limit={ @@ -117082,7 +118310,7 @@ return { [1]="create_profane_ground_instead_of_consecrated_ground" } }, - [5341]={ + [5376]={ [1]={ [1]={ limit={ @@ -117098,7 +118326,23 @@ return { [1]="create_smoke_cloud_on_kill_%_chance" } }, - [5342]={ + [5377]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Remnants you pick up to count as picking up an additional Remnant" + } + }, + stats={ + [1]="created_remnants_have_%_chance_to_duplicate_pick_up_results" + } + }, + [5378]={ [1]={ [1]={ limit={ @@ -117127,7 +118371,7 @@ return { [1]="creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5343]={ + [5379]={ [1]={ [1]={ [1]={ @@ -117147,7 +118391,7 @@ return { [1]="cremation_base_fires_projectile_every_x_ms" } }, - [5344]={ + [5380]={ [1]={ [1]={ limit={ @@ -117176,7 +118420,32 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [5345]={ + [5381]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Critical Hit chance is Lucky against Parried enemies" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Critical Hit chance is Unlucky against Parried enemies" + } + }, + stats={ + [1]="critical_chance_luck_against_parry_debuffed_enemies" + } + }, + [5382]={ [1]={ [1]={ limit={ @@ -117192,7 +118461,7 @@ return { [1]="critical_damage_+1%_per_X_current_life" } }, - [5346]={ + [5383]={ [1]={ [1]={ limit={ @@ -117221,7 +118490,7 @@ return { [1]="critical_hit_bleeding_effect_+%" } }, - [5347]={ + [5384]={ [1]={ [1]={ limit={ @@ -117250,7 +118519,36 @@ return { [1]="critical_hit_chance_+%_against_enemies_entered_your_presence_recently" } }, - [5348]={ + [5385]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Hit Chance against Humanoids" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Hit Chance against Humanoids" + } + }, + stats={ + [1]="critical_hit_chance_+%_vs_humanoids" + } + }, + [5386]={ [1]={ [1]={ limit={ @@ -117279,7 +118577,7 @@ return { [1]="critical_hit_damage_+%_against_enemies_exited_your_presence_recently" } }, - [5349]={ + [5387]={ [1]={ [1]={ limit={ @@ -117308,7 +118606,36 @@ return { [1]="critical_hit_damage_bonus_+%_if_consumed_power_charge_recently" } }, - [5350]={ + [5388]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Projectiles have {0}% increased Critical Damage Bonus against Enemies further than 6m" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Projectiles have {0}% reduced Critical Damage Bonus against Enemies further than 6m" + } + }, + stats={ + [1]="critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance" + } + }, + [5389]={ [1]={ [1]={ limit={ @@ -117337,7 +118664,7 @@ return { [1]="critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance" } }, - [5351]={ + [5390]={ [1]={ [1]={ limit={ @@ -117366,7 +118693,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [5352]={ + [5391]={ [1]={ [1]={ limit={ @@ -117395,7 +118722,7 @@ return { [1]="critical_hit_ignite_effect_+%" } }, - [5353]={ + [5392]={ [1]={ [1]={ limit={ @@ -117424,7 +118751,7 @@ return { [1]="critical_hit_poison_effect_+%" } }, - [5354]={ + [5393]={ [1]={ [1]={ limit={ @@ -117440,7 +118767,7 @@ return { [1]="critical_hits_always_apply_impale" } }, - [5355]={ + [5394]={ [1]={ [1]={ limit={ @@ -117456,7 +118783,7 @@ return { [1]="critical_hits_cannot_consume_impale" } }, - [5356]={ + [5395]={ [1]={ [1]={ limit={ @@ -117472,7 +118799,7 @@ return { [1]="critical_hits_ignore_armour" } }, - [5357]={ + [5396]={ [1]={ [1]={ limit={ @@ -117488,7 +118815,36 @@ return { [1]="critical_multiplier_+%_per_10_max_es_on_shield" } }, - [5358]={ + [5397]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Hit Chance against Marked Enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Hit Chance against Marked Enemy" + } + }, + stats={ + [1]="critical_strike_chance_+%_against_enemies_marked_by_you" + } + }, + [5398]={ [1]={ [1]={ limit={ @@ -117517,7 +118873,36 @@ return { [1]="critical_strike_chance_+%_final_while_affected_by_precision" } }, - [5359]={ + [5399]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Hit Chance if you've Triggered a Skill Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Hit Chance if you've Triggered a Skill Recently" + } + }, + stats={ + [1]="critical_strike_chance_+%_if_triggered_skill_recently" + } + }, + [5400]={ [1]={ [1]={ limit={ @@ -117546,7 +118931,7 @@ return { [1]="critical_strike_chance_+%_per_socketed_blue_support_gem" } }, - [5360]={ + [5401]={ [1]={ [1]={ limit={ @@ -117575,7 +118960,7 @@ return { [1]="critical_strike_chance_+%_vs_dazed_enemies" } }, - [5361]={ + [5402]={ [1]={ [1]={ limit={ @@ -117604,7 +118989,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_further_than_6m_distance" } }, - [5362]={ + [5403]={ [1]={ [1]={ limit={ @@ -117613,7 +118998,7 @@ return { [2]="#" } }, - text="{0}% increased Critical Hit Chance against enemies with Lightning Exposure" + text="{0}% increased Critical Hit Chance against enemies with Exposure" }, [2]={ [1]={ @@ -117626,14 +119011,72 @@ return { [2]=-1 } }, - text="{0}% reduced Critical Hit Chance against enemies with Lightning Exposure" + text="{0}% reduced Critical Hit Chance against enemies with Exposure" } }, stats={ - [1]="critical_strike_chance_+%_vs_enemies_with_lightning_exposure" + [1]="critical_strike_chance_+%_vs_exposed" } }, - [5363]={ + [5404]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Hit Chance against Immobilised enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Hit Chance against Immobilised enemies" + } + }, + stats={ + [1]="critical_strike_chance_+%_vs_immobilised_enemies" + } + }, + [5405]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Hit Chance against Marked Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Hit Chance against Marked Enemies" + } + }, + stats={ + [1]="critical_strike_chance_+%_vs_marked_enemies" + } + }, + [5406]={ [1]={ [1]={ limit={ @@ -117662,7 +119105,7 @@ return { [1]="critical_strike_chance_+%_with_unarmed_attacks" } }, - [5364]={ + [5407]={ [1]={ [1]={ limit={ @@ -117691,7 +119134,7 @@ return { [1]="critical_strike_chance_against_cursed_enemies_+%" } }, - [5365]={ + [5408]={ [1]={ [1]={ limit={ @@ -117707,7 +119150,7 @@ return { [1]="critical_strike_chance_increased_by_lightning_resistance" } }, - [5366]={ + [5409]={ [1]={ [1]={ limit={ @@ -117723,23 +119166,7 @@ return { [1]="critical_strike_chance_increased_by_overcapped_lightning_resistance" } }, - [5367]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Critical Hit Chance is increased by chance to Suppress Spell Damage" - } - }, - stats={ - [1]="critical_strike_chance_increased_by_spell_suppression_chance" - } - }, - [5368]={ + [5410]={ [1]={ [1]={ limit={ @@ -117755,7 +119182,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry" } }, - [5369]={ + [5411]={ [1]={ [1]={ limit={ @@ -117784,7 +119211,7 @@ return { [1]="critical_strike_chance_+%_during_any_flask_effect" } }, - [5370]={ + [5412]={ [1]={ [1]={ limit={ @@ -117813,7 +119240,7 @@ return { [1]="critical_strike_chance_+%_final_while_unhinged" } }, - [5371]={ + [5413]={ [1]={ [1]={ limit={ @@ -117842,7 +119269,7 @@ return { [1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently" } }, - [5372]={ + [5414]={ [1]={ [1]={ limit={ @@ -117871,7 +119298,7 @@ return { [1]="critical_strike_chance_+%_if_enemy_killed_recently" } }, - [5373]={ + [5415]={ [1]={ [1]={ limit={ @@ -117900,7 +119327,7 @@ return { [1]="critical_strike_chance_+%_if_have_been_shocked_recently" } }, - [5374]={ + [5416]={ [1]={ [1]={ limit={ @@ -117929,7 +119356,7 @@ return { [1]="critical_strike_chance_+%_if_have_not_crit_recently" } }, - [5375]={ + [5417]={ [1]={ [1]={ limit={ @@ -117958,7 +119385,7 @@ return { [1]="critical_strike_chance_+%_if_havent_blocked_recently" } }, - [5376]={ + [5418]={ [1]={ [1]={ limit={ @@ -117987,7 +119414,7 @@ return { [1]="critical_strike_chance_+%_if_not_gained_power_charge_recently" } }, - [5377]={ + [5419]={ [1]={ [1]={ limit={ @@ -118016,7 +119443,7 @@ return { [1]="critical_strike_chance_+%_per_10_strength" } }, - [5378]={ + [5420]={ [1]={ [1]={ limit={ @@ -118032,7 +119459,7 @@ return { [1]="critical_strike_chance_+%_per_25_intelligence" } }, - [5379]={ + [5421]={ [1]={ [1]={ limit={ @@ -118061,7 +119488,7 @@ return { [1]="critical_strike_chance_+%_per_blitz_charge" } }, - [5380]={ + [5422]={ [1]={ [1]={ limit={ @@ -118090,7 +119517,7 @@ return { [1]="critical_strike_chance_+%_per_brand" } }, - [5381]={ + [5423]={ [1]={ [1]={ limit={ @@ -118119,7 +119546,7 @@ return { [1]="critical_strike_chance_+%_per_endurance_charge" } }, - [5382]={ + [5424]={ [1]={ [1]={ limit={ @@ -118148,7 +119575,7 @@ return { [1]="critical_strike_chance_+%_per_frenzy_charge" } }, - [5383]={ + [5425]={ [1]={ [1]={ limit={ @@ -118177,7 +119604,7 @@ return { [1]="critical_strike_chance_+%_per_intensity" } }, - [5384]={ + [5426]={ [1]={ [1]={ limit={ @@ -118206,7 +119633,7 @@ return { [1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%" } }, - [5385]={ + [5427]={ [1]={ [1]={ limit={ @@ -118235,36 +119662,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [5386]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Critical Hit Chance against Marked Enemy" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Critical Hit Chance against Marked Enemy" - } - }, - stats={ - [1]="critical_strike_chance_+%_vs_marked_enemy" - } - }, - [5387]={ + [5428]={ [1]={ [1]={ limit={ @@ -118293,7 +119691,7 @@ return { [1]="critical_strike_chance_+%_vs_taunted_enemies" } }, - [5388]={ + [5429]={ [1]={ [1]={ limit={ @@ -118322,7 +119720,7 @@ return { [1]="critical_strike_chance_+%_while_affected_by_wrath" } }, - [5389]={ + [5430]={ [1]={ [1]={ limit={ @@ -118351,7 +119749,7 @@ return { [1]="critical_strike_chance_+%_while_channelling" } }, - [5390]={ + [5431]={ [1]={ [1]={ limit={ @@ -118380,7 +119778,7 @@ return { [1]="spell_critical_strike_chance_+%_while_dual_wielding" } }, - [5391]={ + [5432]={ [1]={ [1]={ limit={ @@ -118409,7 +119807,7 @@ return { [1]="spell_critical_strike_chance_+%_while_holding_shield" } }, - [5392]={ + [5433]={ [1]={ [1]={ limit={ @@ -118438,7 +119836,7 @@ return { [1]="spell_critical_strike_chance_+%_while_wielding_staff" } }, - [5393]={ + [5434]={ [1]={ [1]={ limit={ @@ -118467,7 +119865,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_depleted_physical_aegis" } }, - [5394]={ + [5435]={ [1]={ [1]={ limit={ @@ -118483,7 +119881,7 @@ return { [1]="critical_strike_damage_cannot_be_reflected" } }, - [5395]={ + [5436]={ [1]={ [1]={ limit={ @@ -118499,7 +119897,7 @@ return { [1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently" } }, - [5396]={ + [5437]={ [1]={ [1]={ limit={ @@ -118515,7 +119913,7 @@ return { [1]="critical_strike_multiplier_+_vs_stunned_enemies" } }, - [5397]={ + [5438]={ [1]={ [1]={ limit={ @@ -118531,7 +119929,7 @@ return { [1]="critical_strike_multiplier_for_arrows_that_pierce_+" } }, - [5398]={ + [5439]={ [1]={ [1]={ limit={ @@ -118540,14 +119938,14 @@ return { [2]="#" } }, - text="Your Critical Damage Bonus is 300%" + text="Your Critical Damage Bonus is 250%" } }, stats={ - [1]="critical_strike_multiplier_is_300" + [1]="critical_strike_multiplier_is_250" } }, - [5399]={ + [5440]={ [1]={ [1]={ limit={ @@ -118563,7 +119961,7 @@ return { [1]="critical_strike_multiplier_+_during_any_flask_effect" } }, - [5400]={ + [5441]={ [1]={ [1]={ limit={ @@ -118579,7 +119977,7 @@ return { [1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently" } }, - [5401]={ + [5442]={ [1]={ [1]={ limit={ @@ -118595,7 +119993,7 @@ return { [1]="critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently" } }, - [5402]={ + [5443]={ [1]={ [1]={ limit={ @@ -118611,7 +120009,7 @@ return { [1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence" } }, - [5403]={ + [5444]={ [1]={ [1]={ limit={ @@ -118627,7 +120025,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_killed_recently" } }, - [5404]={ + [5445]={ [1]={ [1]={ limit={ @@ -118643,7 +120041,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_shattered_recently" } }, - [5405]={ + [5446]={ [1]={ [1]={ limit={ @@ -118668,7 +120066,7 @@ return { [1]="critical_strike_multiplier_+_if_gained_power_charge_recently" } }, - [5406]={ + [5447]={ [1]={ [1]={ limit={ @@ -118697,7 +120095,7 @@ return { [1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently" } }, - [5407]={ + [5448]={ [1]={ [1]={ limit={ @@ -118713,7 +120111,7 @@ return { [1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby" } }, - [5408]={ + [5449]={ [1]={ [1]={ limit={ @@ -118729,7 +120127,7 @@ return { [1]="critical_strike_multiplier_+_if_taken_a_savage_hit_recently" } }, - [5409]={ + [5450]={ [1]={ [1]={ limit={ @@ -118745,7 +120143,7 @@ return { [1]="critical_strike_multiplier_+_if_you_have_blocked_recently" } }, - [5410]={ + [5451]={ [1]={ [1]={ limit={ @@ -118761,7 +120159,7 @@ return { [1]="critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second" } }, - [5411]={ + [5452]={ [1]={ [1]={ limit={ @@ -118777,7 +120175,7 @@ return { [1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40" } }, - [5412]={ + [5453]={ [1]={ [1]={ limit={ @@ -118793,7 +120191,7 @@ return { [1]="critical_strike_multiplier_+_vs_taunted_enemies" } }, - [5413]={ + [5454]={ [1]={ [1]={ limit={ @@ -118809,7 +120207,7 @@ return { [1]="critical_strike_multiplier_+_vs_unique_enemies" } }, - [5414]={ + [5455]={ [1]={ [1]={ limit={ @@ -118825,7 +120223,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_anger" } }, - [5415]={ + [5456]={ [1]={ [1]={ limit={ @@ -118841,7 +120239,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_precision" } }, - [5416]={ + [5457]={ [1]={ [1]={ limit={ @@ -118857,7 +120255,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_dual_wielding" } }, - [5417]={ + [5458]={ [1]={ [1]={ limit={ @@ -118873,7 +120271,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_holding_shield" } }, - [5418]={ + [5459]={ [1]={ [1]={ limit={ @@ -118889,7 +120287,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_wielding_staff" } }, - [5419]={ + [5460]={ [1]={ [1]={ limit={ @@ -118905,7 +120303,7 @@ return { [1]="critical_strike_multiplier_+_with_herald_skills" } }, - [5420]={ + [5461]={ [1]={ [1]={ limit={ @@ -118921,7 +120319,7 @@ return { [1]="critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds" } }, - [5421]={ + [5462]={ [1]={ [1]={ limit={ @@ -118937,7 +120335,7 @@ return { [1]="critical_strike_multiplier_+%_with_claws_daggers" } }, - [5422]={ + [5463]={ [1]={ [1]={ limit={ @@ -118953,7 +120351,7 @@ return { [1]="critical_strike_%_chance_to_deal_double_damage" } }, - [5423]={ + [5464]={ [1]={ [1]={ limit={ @@ -118969,7 +120367,7 @@ return { [1]="critical_strikes_always_knockback_shocked_enemies" } }, - [5424]={ + [5465]={ [1]={ [1]={ limit={ @@ -118985,7 +120383,7 @@ return { [1]="critical_strikes_deal_no_damage" } }, - [5425]={ + [5466]={ [1]={ [1]={ limit={ @@ -119001,7 +120399,7 @@ return { [1]="critical_strikes_do_not_always_ignite" } }, - [5426]={ + [5467]={ [1]={ [1]={ limit={ @@ -119017,7 +120415,7 @@ return { [1]="critical_strikes_from_spells_have_no_multiplier" } }, - [5427]={ + [5468]={ [1]={ [1]={ limit={ @@ -119033,7 +120431,7 @@ return { [1]="critical_strikes_ignore_lightning_resistance" } }, - [5428]={ + [5469]={ [1]={ [1]={ limit={ @@ -119049,7 +120447,7 @@ return { [1]="critical_strikes_ignore_positive_elemental_resistances" } }, - [5429]={ + [5470]={ [1]={ [1]={ limit={ @@ -119065,7 +120463,7 @@ return { [1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry" } }, - [5430]={ + [5471]={ [1]={ [1]={ limit={ @@ -119081,7 +120479,7 @@ return { [1]="critical_support_gem_level_+" } }, - [5431]={ + [5472]={ [1]={ [1]={ limit={ @@ -119097,7 +120495,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo" } }, - [5432]={ + [5473]={ [1]={ [1]={ limit={ @@ -119113,7 +120511,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently" } }, - [5433]={ + [5474]={ [1]={ [1]={ limit={ @@ -119142,7 +120540,7 @@ return { [1]="crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds" } }, - [5434]={ + [5475]={ [1]={ [1]={ limit={ @@ -119158,7 +120556,7 @@ return { [1]="crossbow_skill_gem_level_+" } }, - [5435]={ + [5476]={ [1]={ [1]={ limit={ @@ -119174,7 +120572,7 @@ return { [1]="crowd_control_effects_are_triggered_at_%_poise_threshold_instead" } }, - [5436]={ + [5477]={ [1]={ [1]={ limit={ @@ -119203,7 +120601,7 @@ return { [1]="cruelty_effect_+%" } }, - [5437]={ + [5478]={ [1]={ [1]={ limit={ @@ -119228,7 +120626,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [5438]={ + [5479]={ [1]={ [1]={ [1]={ @@ -119248,7 +120646,7 @@ return { [1]="crush_on_hit_ms_vs_full_life_enemies" } }, - [5439]={ + [5480]={ [1]={ [1]={ limit={ @@ -119264,7 +120662,7 @@ return { [1]="culling_strike_enemies_on_block" } }, - [5440]={ + [5481]={ [1]={ [1]={ limit={ @@ -119280,7 +120678,65 @@ return { [1]="culling_strike_on_enemies_affected_by_poachers_mark" } }, - [5441]={ + [5482]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Culling Strike Threshold against Immobilised Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Culling Strike Threshold against Immobilised Enemies" + } + }, + stats={ + [1]="culling_strike_threshold_+%_vs_immobilised_enemies" + } + }, + [5483]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Culling Strike Threshold against Rare or Unique Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Culling Strike Threshold against Rare or Unique Enemies" + } + }, + stats={ + [1]="culling_strike_threshold_+%_vs_rare_or_unique_monsters" + } + }, + [5484]={ [1]={ [1]={ limit={ @@ -119309,7 +120765,23 @@ return { [1]="culling_strike_threshold_+%" } }, - [5442]={ + [5485]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Culling Strike against Beasts while your Companion is in your Presence" + } + }, + stats={ + [1]="culling_strike_vs_beasts_while_in_presence_of_beast_companion" + } + }, + [5486]={ [1]={ [1]={ limit={ @@ -119325,7 +120797,7 @@ return { [1]="culling_strike_vs_cursed_enemies" } }, - [5443]={ + [5487]={ [1]={ [1]={ limit={ @@ -119341,7 +120813,7 @@ return { [1]="culling_strike_vs_marked_enemy" } }, - [5444]={ + [5488]={ [1]={ [1]={ limit={ @@ -119375,7 +120847,7 @@ return { [1]="current_energy_shield_%_as_elemental_damage_reduction" } }, - [5445]={ + [5489]={ [1]={ [1]={ limit={ @@ -119404,7 +120876,7 @@ return { [1]="curse_aura_skill_area_of_effect_+%" } }, - [5446]={ + [5490]={ [1]={ [1]={ limit={ @@ -119433,7 +120905,7 @@ return { [1]="curse_aura_skills_reservation_efficiency_+%" } }, - [5447]={ + [5491]={ [1]={ [1]={ [1]={ @@ -119470,7 +120942,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_-2%_per_1" } }, - [5448]={ + [5492]={ [1]={ [1]={ limit={ @@ -119499,7 +120971,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_+%" } }, - [5449]={ + [5493]={ [1]={ [1]={ limit={ @@ -119532,7 +121004,94 @@ return { [1]="curse_delay_+%" } }, - [5450]={ + [5494]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% slower Curse Activation per 20 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% faster Curse Activation per 20 Tribute" + } + }, + stats={ + [1]="curse_delay_+%_per_20_tribute" + } + }, + [5495]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Curse Duration if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Curse Duration if you have at least 100 Tribute" + } + }, + stats={ + [1]="curse_duration_+%_if_you_have_at_least_100_tribute" + } + }, + [5496]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Curse Duration per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Curse Duration per 10 Tribute" + } + }, + stats={ + [1]="curse_duration_+%_per_10_tribute" + } + }, + [5497]={ [1]={ [1]={ limit={ @@ -119561,7 +121120,7 @@ return { [1]="curse_effect_on_self_+%_while_on_consecrated_ground" } }, - [5451]={ + [5498]={ [1]={ [1]={ limit={ @@ -119590,7 +121149,7 @@ return { [1]="curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask" } }, - [5452]={ + [5499]={ [1]={ [1]={ limit={ @@ -119619,7 +121178,7 @@ return { [1]="curse_effect_+%_if_200_mana_spent_recently" } }, - [5453]={ + [5500]={ [1]={ [1]={ limit={ @@ -119652,7 +121211,7 @@ return { [1]="curse_mana_cost_+%" } }, - [5454]={ + [5501]={ [1]={ [1]={ limit={ @@ -119677,7 +121236,7 @@ return { [1]="curse_on_block_enfeeble_chance_%" } }, - [5455]={ + [5502]={ [1]={ [1]={ limit={ @@ -119706,7 +121265,7 @@ return { [1]="curse_skill_effect_duration_+%" } }, - [5456]={ + [5503]={ [1]={ [1]={ limit={ @@ -119722,7 +121281,7 @@ return { [1]="curse_skill_gem_level_+" } }, - [5457]={ + [5504]={ [1]={ [1]={ limit={ @@ -119747,7 +121306,7 @@ return { [1]="curse_with_punishment_on_hit_%" } }, - [5458]={ + [5505]={ [1]={ [1]={ limit={ @@ -119763,7 +121322,7 @@ return { [1]="cursed_enemies_are_exorcised_on_kill" } }, - [5459]={ + [5506]={ [1]={ [1]={ limit={ @@ -119788,7 +121347,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_endurance_charge_when_hit" } }, - [5460]={ + [5507]={ [1]={ [1]={ limit={ @@ -119813,7 +121372,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit" } }, - [5461]={ + [5508]={ [1]={ [1]={ limit={ @@ -119838,7 +121397,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_power_charge_when_hit" } }, - [5462]={ + [5509]={ [1]={ [1]={ limit={ @@ -119863,7 +121422,7 @@ return { [1]="cursed_with_silence_when_hit_%_chance" } }, - [5463]={ + [5510]={ [1]={ [1]={ limit={ @@ -119879,7 +121438,7 @@ return { [1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds" } }, - [5464]={ + [5511]={ [1]={ [1]={ limit={ @@ -119895,7 +121454,7 @@ return { [1]="curses_reflected_to_self" } }, - [5465]={ + [5512]={ [1]={ [1]={ limit={ @@ -119911,7 +121470,7 @@ return { [1]="curses_you_inflict_remain_after_death" } }, - [5466]={ + [5513]={ [1]={ [1]={ limit={ @@ -119927,7 +121486,7 @@ return { [1]="cyclone_and_sweep_enemy_knockback_direction_is_reversed" } }, - [5467]={ + [5514]={ [1]={ [1]={ limit={ @@ -119943,7 +121502,7 @@ return { [1]="cyclone_and_sweep_melee_knockback" } }, - [5468]={ + [5515]={ [1]={ [1]={ limit={ @@ -119972,7 +121531,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [5469]={ + [5516]={ [1]={ [1]={ limit={ @@ -120001,7 +121560,7 @@ return { [1]="damage_+%_against_enemies_with_fully_broken_armour" } }, - [5470]={ + [5517]={ [1]={ [1]={ limit={ @@ -120030,7 +121589,7 @@ return { [1]="damage_+%_final_against_bloodlusting_enemies" } }, - [5471]={ + [5518]={ [1]={ [1]={ limit={ @@ -120059,7 +121618,36 @@ return { [1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [5472]={ + [5519]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage if you've consumed a Frenzy Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage if you've consumed a Frenzy Charge Recently" + } + }, + stats={ + [1]="damage_+%_if_consumed_frenzy_charge_recently" + } + }, + [5520]={ [1]={ [1]={ limit={ @@ -120088,7 +121676,7 @@ return { [1]="damage_+%_if_triggered_skill_recently" } }, - [5473]={ + [5521]={ [1]={ [1]={ limit={ @@ -120117,7 +121705,7 @@ return { [1]="damage_+%_per_enemy_elemental_ailment" } }, - [5474]={ + [5522]={ [1]={ [1]={ limit={ @@ -120146,7 +121734,7 @@ return { [1]="damage_+%_per_poison_stack" } }, - [5475]={ + [5523]={ [1]={ [1]={ limit={ @@ -120175,7 +121763,7 @@ return { [1]="damage_+%_per_raised_zombie" } }, - [5476]={ + [5524]={ [1]={ [1]={ limit={ @@ -120204,7 +121792,36 @@ return { [1]="damage_+%_per_socketed_red_support_gem" } }, - [5477]={ + [5525]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage with Hits against Rare and Unique Enemies if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage with Hits against Rare and Unique Enemies if you have at least 100 Tribute" + } + }, + stats={ + [1]="damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute" + } + }, + [5526]={ [1]={ [1]={ limit={ @@ -120233,7 +121850,36 @@ return { [1]="damage_+%_vs_dazed_enemies" } }, - [5478]={ + [5527]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased damage against Immobilised Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced damage against Immobilised Enemies" + } + }, + stats={ + [1]="damage_+%_vs_immobilised_enemies" + } + }, + [5528]={ [1]={ [1]={ limit={ @@ -120242,7 +121888,7 @@ return { [2]="#" } }, - text="{0}% increased Damage while in the Presence of your Companion" + text="{0}% increased Damage while your Companion is in your Presence" }, [2]={ [1]={ @@ -120255,14 +121901,43 @@ return { [2]=-1 } }, - text="{0}% reduced Damage while in the Presence of your Companion" + text="{0}% reduced Damage while your Companion is in your Presence" } }, stats={ [1]="damage_+%_while_in_presence_of_companion" } }, - [5479]={ + [5529]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased damage against Undead Enemies" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced damage against Undead Enemies" + } + }, + stats={ + [1]="damage_against_undead_+%" + } + }, + [5530]={ [1]={ [1]={ limit={ @@ -120287,7 +121962,7 @@ return { [1]="damage_blocked_%_recouped_as_mana" } }, - [5480]={ + [5531]={ [1]={ [1]={ limit={ @@ -120303,7 +121978,7 @@ return { [1]="damage_over_time_multiplier_+_if_enemy_killed_recently" } }, - [5481]={ + [5532]={ [1]={ [1]={ limit={ @@ -120332,7 +122007,7 @@ return { [1]="damage_over_time_+%_while_affected_by_a_herald" } }, - [5482]={ + [5533]={ [1]={ [1]={ limit={ @@ -120361,7 +122036,7 @@ return { [1]="damage_over_time_+%_with_attack_skills" } }, - [5483]={ + [5534]={ [1]={ [1]={ limit={ @@ -120390,7 +122065,7 @@ return { [1]="damage_over_time_+%_with_bow_skills" } }, - [5484]={ + [5535]={ [1]={ [1]={ limit={ @@ -120419,7 +122094,7 @@ return { [1]="damage_over_time_+%_with_herald_skills" } }, - [5485]={ + [5536]={ [1]={ [1]={ limit={ @@ -120448,7 +122123,7 @@ return { [1]="damage_over_time_taken_+%_while_you_have_at_least_20_fortification" } }, - [5486]={ + [5537]={ [1]={ [1]={ limit={ @@ -120464,7 +122139,7 @@ return { [1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice" } }, - [5487]={ + [5538]={ [1]={ [1]={ limit={ @@ -120480,7 +122155,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently" } }, - [5488]={ + [5539]={ [1]={ [1]={ limit={ @@ -120496,7 +122171,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies" } }, - [5489]={ + [5540]={ [1]={ [1]={ limit={ @@ -120512,7 +122187,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_cursed_enemies" } }, - [5490]={ + [5541]={ [1]={ [1]={ limit={ @@ -120528,7 +122203,7 @@ return { [1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash" } }, - [5491]={ + [5542]={ [1]={ [1]={ limit={ @@ -120544,7 +122219,7 @@ return { [1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder" } }, - [5492]={ + [5543]={ [1]={ [1]={ limit={ @@ -120573,7 +122248,7 @@ return { [1]="damage_+%_against_enemies_marked_by_you" } }, - [5493]={ + [5544]={ [1]={ [1]={ limit={ @@ -120589,7 +122264,7 @@ return { [1]="damage_+%_final_if_lost_endurance_charge_in_past_8_seconds" } }, - [5494]={ + [5545]={ [1]={ [1]={ limit={ @@ -120618,7 +122293,7 @@ return { [1]="damage_+%_final_with_at_least_1_nearby_ally" } }, - [5495]={ + [5546]={ [1]={ [1]={ limit={ @@ -120647,7 +122322,7 @@ return { [1]="damage_+%_for_each_herald_affecting_you" } }, - [5496]={ + [5547]={ [1]={ [1]={ limit={ @@ -120680,7 +122355,7 @@ return { [1]="damage_+%_for_enemies_you_inflict_spiders_web_upon" } }, - [5497]={ + [5548]={ [1]={ [1]={ limit={ @@ -120709,7 +122384,7 @@ return { [1]="damage_+%_if_enemy_killed_recently" } }, - [5498]={ + [5549]={ [1]={ [1]={ limit={ @@ -120738,7 +122413,7 @@ return { [1]="damage_+%_if_enemy_shattered_recently" } }, - [5499]={ + [5550]={ [1]={ [1]={ limit={ @@ -120767,7 +122442,7 @@ return { [1]="damage_+%_if_firing_atleast_7_projectiles" } }, - [5500]={ + [5551]={ [1]={ [1]={ limit={ @@ -120796,7 +122471,7 @@ return { [1]="damage_+%_if_have_been_ignited_recently" } }, - [5501]={ + [5552]={ [1]={ [1]={ limit={ @@ -120825,7 +122500,7 @@ return { [1]="damage_+%_if_have_crit_in_past_8_seconds" } }, - [5502]={ + [5553]={ [1]={ [1]={ limit={ @@ -120854,7 +122529,7 @@ return { [1]="damage_+%_if_only_one_enemy_nearby" } }, - [5503]={ + [5554]={ [1]={ [1]={ limit={ @@ -120883,7 +122558,7 @@ return { [1]="damage_+%_if_skill_costs_life" } }, - [5504]={ + [5555]={ [1]={ [1]={ limit={ @@ -120912,7 +122587,7 @@ return { [1]="damage_+%_if_used_travel_skill_recently" } }, - [5505]={ + [5556]={ [1]={ [1]={ limit={ @@ -120941,7 +122616,7 @@ return { [1]="damage_+%_if_you_have_frozen_enemy_recently" } }, - [5506]={ + [5557]={ [1]={ [1]={ limit={ @@ -120970,7 +122645,7 @@ return { [1]="damage_+%_if_you_have_shocked_recently" } }, - [5507]={ + [5558]={ [1]={ [1]={ limit={ @@ -120999,7 +122674,7 @@ return { [1]="damage_+%_per_100_dexterity" } }, - [5508]={ + [5559]={ [1]={ [1]={ limit={ @@ -121028,7 +122703,7 @@ return { [1]="damage_+%_per_100_intelligence" } }, - [5509]={ + [5560]={ [1]={ [1]={ limit={ @@ -121057,7 +122732,7 @@ return { [1]="damage_+%_per_100_strength" } }, - [5510]={ + [5561]={ [1]={ [1]={ limit={ @@ -121073,7 +122748,7 @@ return { [1]="damage_+%_per_10_dex" } }, - [5511]={ + [5562]={ [1]={ [1]={ limit={ @@ -121089,7 +122764,7 @@ return { [1]="damage_+%_per_15_dex" } }, - [5512]={ + [5563]={ [1]={ [1]={ limit={ @@ -121105,7 +122780,7 @@ return { [1]="damage_+%_per_15_int" } }, - [5513]={ + [5564]={ [1]={ [1]={ limit={ @@ -121121,7 +122796,7 @@ return { [1]="damage_+%_per_15_strength" } }, - [5514]={ + [5565]={ [1]={ [1]={ limit={ @@ -121150,7 +122825,7 @@ return { [1]="damage_+%_per_1%_block_chance" } }, - [5515]={ + [5566]={ [1]={ [1]={ limit={ @@ -121166,7 +122841,7 @@ return { [1]="damage_+%_per_1%_increased_item_found_quantity" } }, - [5516]={ + [5567]={ [1]={ [1]={ limit={ @@ -121195,7 +122870,7 @@ return { [1]="damage_+%_per_5_of_your_lowest_attribute" } }, - [5517]={ + [5568]={ [1]={ [1]={ limit={ @@ -121224,7 +122899,7 @@ return { [1]="damage_+%_per_active_golem" } }, - [5518]={ + [5569]={ [1]={ [1]={ limit={ @@ -121253,7 +122928,7 @@ return { [1]="damage_+%_per_active_link" } }, - [5519]={ + [5570]={ [1]={ [1]={ limit={ @@ -121278,7 +122953,7 @@ return { [1]="damage_+%_per_different_warcry_used_recently" } }, - [5520]={ + [5571]={ [1]={ [1]={ limit={ @@ -121307,7 +122982,7 @@ return { [1]="damage_+%_per_frenzy_power_or_endurance_charge" } }, - [5521]={ + [5572]={ [1]={ [1]={ limit={ @@ -121336,7 +123011,7 @@ return { [1]="damage_+%_per_poison_up_to_75%" } }, - [5522]={ + [5573]={ [1]={ [1]={ limit={ @@ -121365,7 +123040,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [5523]={ + [5574]={ [1]={ [1]={ limit={ @@ -121394,7 +123069,7 @@ return { [1]="damage_+%_per_recently_triggered_hazard_up_to_50%" } }, - [5524]={ + [5575]={ [1]={ [1]={ limit={ @@ -121423,7 +123098,7 @@ return { [1]="damage_+%_per_warcry_used_recently" } }, - [5525]={ + [5576]={ [1]={ [1]={ limit={ @@ -121439,7 +123114,7 @@ return { [1]="damage_+%_per_your_aura_or_herald_skill_affecting_you" } }, - [5526]={ + [5577]={ [1]={ [1]={ limit={ @@ -121468,7 +123143,7 @@ return { [1]="damage_+%_vs_abyssal_monsters" } }, - [5527]={ + [5578]={ [1]={ [1]={ limit={ @@ -121497,7 +123172,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [5528]={ + [5579]={ [1]={ [1]={ limit={ @@ -121526,7 +123201,7 @@ return { [1]="damage_+%_vs_magic_monsters" } }, - [5529]={ + [5580]={ [1]={ [1]={ limit={ @@ -121555,7 +123230,7 @@ return { [1]="damage_+%_vs_taunted_enemies" } }, - [5530]={ + [5581]={ [1]={ [1]={ limit={ @@ -121584,7 +123259,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [5531]={ + [5582]={ [1]={ [1]={ limit={ @@ -121613,7 +123288,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [5532]={ + [5583]={ [1]={ [1]={ limit={ @@ -121642,7 +123317,7 @@ return { [1]="damage_+%_while_affected_by_a_herald" } }, - [5533]={ + [5584]={ [1]={ [1]={ limit={ @@ -121671,7 +123346,7 @@ return { [1]="damage_+%_while_channelling" } }, - [5534]={ + [5585]={ [1]={ [1]={ limit={ @@ -121700,7 +123375,7 @@ return { [1]="damage_+%_while_in_blood_stance" } }, - [5535]={ + [5586]={ [1]={ [1]={ limit={ @@ -121729,7 +123404,7 @@ return { [1]="damage_+%_while_using_charm" } }, - [5536]={ + [5587]={ [1]={ [1]={ limit={ @@ -121758,7 +123433,7 @@ return { [1]="damage_+%_while_wielding_bow_if_totem_summoned" } }, - [5537]={ + [5588]={ [1]={ [1]={ limit={ @@ -121787,7 +123462,7 @@ return { [1]="damage_+%_while_wielding_two_different_weapon_types" } }, - [5538]={ + [5589]={ [1]={ [1]={ limit={ @@ -121816,7 +123491,7 @@ return { [1]="damage_+%_while_you_have_a_summoned_golem" } }, - [5539]={ + [5590]={ [1]={ [1]={ limit={ @@ -121845,7 +123520,7 @@ return { [1]="damage_+%_with_daggers_against_full_life_enemies" } }, - [5540]={ + [5591]={ [1]={ [1]={ limit={ @@ -121874,7 +123549,7 @@ return { [1]="damage_+%_with_herald_skills" } }, - [5541]={ + [5592]={ [1]={ [1]={ limit={ @@ -121903,7 +123578,7 @@ return { [1]="damage_+%_with_maces_sceptres_staves" } }, - [5542]={ + [5593]={ [1]={ [1]={ limit={ @@ -121932,7 +123607,7 @@ return { [1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention" } }, - [5543]={ + [5594]={ [1]={ [1]={ limit={ @@ -121961,7 +123636,7 @@ return { [1]="damage_+%_with_shield_skills" } }, - [5544]={ + [5595]={ [1]={ [1]={ limit={ @@ -121990,7 +123665,7 @@ return { [1]="damage_+%_with_shield_skills_per_2%_attack_block" } }, - [5545]={ + [5596]={ [1]={ [1]={ limit={ @@ -122006,7 +123681,7 @@ return { [1]="damage_recouped_as_life_%_if_leech_removed_by_filling_recently" } }, - [5546]={ + [5597]={ [1]={ [1]={ limit={ @@ -122022,7 +123697,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity" } }, - [5547]={ + [5598]={ [1]={ [1]={ limit={ @@ -122038,7 +123713,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_focused" } }, - [5548]={ + [5599]={ [1]={ [1]={ limit={ @@ -122054,7 +123729,7 @@ return { [1]="damage_removed_from_spectres_before_life_or_es_%" } }, - [5549]={ + [5600]={ [1]={ [1]={ limit={ @@ -122070,7 +123745,7 @@ return { [1]="damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [5550]={ + [5601]={ [1]={ [1]={ limit={ @@ -122099,7 +123774,36 @@ return { [1]="damage_taken_+%_for_4_seconds_after_spending_200_mana" } }, - [5551]={ + [5602]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage taken from Volatility if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage taken from Volatility if you have at least 100 Tribute" + } + }, + stats={ + [1]="damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute" + } + }, + [5603]={ [1]={ [1]={ limit={ @@ -122128,7 +123832,7 @@ return { [1]="damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby" } }, - [5552]={ + [5604]={ [1]={ [1]={ limit={ @@ -122157,7 +123861,7 @@ return { [1]="damage_taken_+%_while_affected_by_elusive" } }, - [5553]={ + [5605]={ [1]={ [1]={ limit={ @@ -122166,14 +123870,14 @@ return { [2]="#" } }, - text="Suppressed Spell Damage dealt to you is Unlucky" + text="{}% of Damage Taken Recouped as Life, Mana and Energy Shield" } }, stats={ - [1]="damage_taken_from_suppressed_hits_is_unlucky" + [1]="damage_taken_goes_to_life_mana_es_over_4_seconds_%" } }, - [5554]={ + [5606]={ [1]={ [1]={ limit={ @@ -122182,14 +123886,30 @@ return { [2]="#" } }, - text="{}% of Damage Taken Recouped as Life, Mana and Energy Shield" + text="{0}% of damage taken Recouped as Life per 10 Tribute" } }, stats={ - [1]="damage_taken_goes_to_life_mana_es_over_4_seconds_%" + [1]="damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute" } }, - [5555]={ + [5607]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of damage taken Recouped as Mana per 10 Tribute" + } + }, + stats={ + [1]="damage_taken_goes_to_mana_%_per_10_tribute" + } + }, + [5608]={ [1]={ [1]={ limit={ @@ -122205,7 +123925,7 @@ return { [1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity" } }, - [5556]={ + [5609]={ [1]={ [1]={ limit={ @@ -122234,7 +123954,7 @@ return { [1]="damage_taken_over_time_+%_final_during_life_flask_effect" } }, - [5557]={ + [5610]={ [1]={ [1]={ limit={ @@ -122263,7 +123983,7 @@ return { [1]="damage_taken_per_250_dexterity_+%" } }, - [5558]={ + [5611]={ [1]={ [1]={ limit={ @@ -122292,7 +124012,7 @@ return { [1]="damage_taken_per_250_intelligence_+%" } }, - [5559]={ + [5612]={ [1]={ [1]={ limit={ @@ -122321,7 +124041,7 @@ return { [1]="damage_taken_per_250_strength_+%" } }, - [5560]={ + [5613]={ [1]={ [1]={ limit={ @@ -122350,7 +124070,7 @@ return { [1]="damage_taken_per_ghost_dance_stack_+%" } }, - [5561]={ + [5614]={ [1]={ [1]={ limit={ @@ -122366,7 +124086,7 @@ return { [1]="damage_taken_%_recovered_as_energy_shield_from_stunning_hits" } }, - [5562]={ + [5615]={ [1]={ [1]={ limit={ @@ -122382,7 +124102,7 @@ return { [1]="damage_taken_%_recovered_as_life_from_stunning_hits" } }, - [5563]={ + [5616]={ [1]={ [1]={ limit={ @@ -122411,7 +124131,7 @@ return { [1]="damage_taken_+%_final_from_enemies_near_marked_enemy" } }, - [5564]={ + [5617]={ [1]={ [1]={ limit={ @@ -122440,7 +124160,7 @@ return { [1]="damage_taken_+%_final_per_tailwind" } }, - [5565]={ + [5618]={ [1]={ [1]={ limit={ @@ -122469,7 +124189,7 @@ return { [1]="damage_taken_+%_final_per_totem" } }, - [5566]={ + [5619]={ [1]={ [1]={ limit={ @@ -122498,7 +124218,7 @@ return { [1]="damage_taken_+%_if_have_been_frozen_recently" } }, - [5567]={ + [5620]={ [1]={ [1]={ limit={ @@ -122527,7 +124247,7 @@ return { [1]="damage_taken_+%_if_have_not_been_hit_recently" } }, - [5568]={ + [5621]={ [1]={ [1]={ limit={ @@ -122556,7 +124276,7 @@ return { [1]="damage_taken_+%_on_full_life" } }, - [5569]={ + [5622]={ [1]={ [1]={ limit={ @@ -122585,7 +124305,7 @@ return { [1]="damage_taken_+%_on_low_life" } }, - [5570]={ + [5623]={ [1]={ [1]={ limit={ @@ -122614,7 +124334,7 @@ return { [1]="damage_taken_+%_while_leeching" } }, - [5571]={ + [5624]={ [1]={ [1]={ limit={ @@ -122643,7 +124363,7 @@ return { [1]="damage_taken_+%_while_phasing" } }, - [5572]={ + [5625]={ [1]={ [1]={ limit={ @@ -122659,7 +124379,7 @@ return { [1]="damage_with_hits_is_lucky_vs_enemies_on_low_life" } }, - [5573]={ + [5626]={ [1]={ [1]={ limit={ @@ -122675,7 +124395,7 @@ return { [1]="damage_with_hits_is_lucky_vs_heavy_stunned_enemies" } }, - [5574]={ + [5627]={ [1]={ [1]={ limit={ @@ -122704,7 +124424,36 @@ return { [1]="damaging_ailment_duration_+%" } }, - [5575]={ + [5628]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Duration of Damaging Ailments per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Duration of Damaging Ailments per 10 Tribute" + } + }, + stats={ + [1]="damaging_ailment_duration_+%_per_10_tribute" + } + }, + [5629]={ [1]={ [1]={ limit={ @@ -122733,7 +124482,7 @@ return { [1]="base_damaging_ailment_effect_+%" } }, - [5576]={ + [5630]={ [1]={ [1]={ limit={ @@ -122749,7 +124498,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [5577]={ + [5631]={ [1]={ [1]={ limit={ @@ -122765,7 +124514,7 @@ return { [1]="dark_pact_minions_recover_%_life_on_hit" } }, - [5578]={ + [5632]={ [1]={ [1]={ limit={ @@ -122794,7 +124543,7 @@ return { [1]="dark_ritual_area_of_effect_+%" } }, - [5579]={ + [5633]={ [1]={ [1]={ limit={ @@ -122823,7 +124572,7 @@ return { [1]="dark_ritual_damage_+%" } }, - [5580]={ + [5634]={ [1]={ [1]={ limit={ @@ -122852,7 +124601,7 @@ return { [1]="dark_ritual_linked_curse_effect_+%" } }, - [5581]={ + [5635]={ [1]={ [1]={ limit={ @@ -122868,7 +124617,7 @@ return { [1]="darkness_per_level" } }, - [5582]={ + [5636]={ [1]={ [1]={ limit={ @@ -122897,7 +124646,7 @@ return { [1]="darkness_refresh_rate_+%" } }, - [5583]={ + [5637]={ [1]={ [1]={ limit={ @@ -122926,7 +124675,7 @@ return { [1]="daytime_fish_caught_size_+%" } }, - [5584]={ + [5638]={ [1]={ [1]={ limit={ @@ -122955,7 +124704,7 @@ return { [1]="daze_build_up_+%" } }, - [5585]={ + [5639]={ [1]={ [1]={ limit={ @@ -122984,7 +124733,36 @@ return { [1]="daze_duration_+%" } }, - [5586]={ + [5640]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Daze" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Daze" + } + }, + stats={ + [1]="daze_magnitude_+%" + } + }, + [5641]={ [1]={ [1]={ limit={ @@ -123000,7 +124778,7 @@ return { [1]="deadeye_accuracy_unaffected_by_range" } }, - [5587]={ + [5642]={ [1]={ [1]={ limit={ @@ -123029,7 +124807,7 @@ return { [1]="deadeye_damage_taken_+%_final_from_marked_enemy" } }, - [5588]={ + [5643]={ [1]={ [1]={ limit={ @@ -123058,7 +124836,7 @@ return { [1]="deadeye_movement_speed_penalty_+%_final_while_performing_action" } }, - [5589]={ + [5644]={ [1]={ [1]={ limit={ @@ -123074,7 +124852,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases" } }, - [5590]={ + [5645]={ [1]={ [1]={ limit={ @@ -123090,7 +124868,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases" } }, - [5591]={ + [5646]={ [1]={ [1]={ limit={ @@ -123106,7 +124884,7 @@ return { [1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [5592]={ + [5647]={ [1]={ [1]={ limit={ @@ -123122,7 +124900,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [5593]={ + [5648]={ [1]={ [1]={ limit={ @@ -123138,7 +124916,7 @@ return { [1]="deal_chaos_damage_per_second_for_8_seconds_on_curse" } }, - [5594]={ + [5649]={ [1]={ [1]={ limit={ @@ -123154,7 +124932,7 @@ return { [1]="deal_double_damage_to_enemies_on_full_life" } }, - [5595]={ + [5650]={ [1]={ [1]={ limit={ @@ -123170,7 +124948,7 @@ return { [1]="deal_no_damage_when_not_on_low_life" } }, - [5596]={ + [5651]={ [1]={ [1]={ limit={ @@ -123186,7 +124964,7 @@ return { [1]="deal_no_elemental_damage" } }, - [5597]={ + [5652]={ [1]={ [1]={ limit={ @@ -123202,7 +124980,7 @@ return { [1]="deal_no_elemental_physical_damage" } }, - [5598]={ + [5653]={ [1]={ [1]={ limit={ @@ -123218,7 +124996,7 @@ return { [1]="deal_no_non_chaos_damage" } }, - [5599]={ + [5654]={ [1]={ [1]={ limit={ @@ -123234,7 +125012,7 @@ return { [1]="deal_no_non_elemental_damage" } }, - [5600]={ + [5655]={ [1]={ [1]={ limit={ @@ -123250,7 +125028,7 @@ return { [1]="deal_thorns_damage_chance_%_on_hit" } }, - [5601]={ + [5656]={ [1]={ [1]={ limit={ @@ -123266,7 +125044,7 @@ return { [1]="deal_thorns_damage_on_hit" } }, - [5602]={ + [5657]={ [1]={ [1]={ limit={ @@ -123282,7 +125060,7 @@ return { [1]="deal_thorns_damage_on_stun" } }, - [5603]={ + [5658]={ [1]={ [1]={ limit={ @@ -123298,7 +125076,7 @@ return { [1]="deathgrip_presence" } }, - [5604]={ + [5659]={ [1]={ [1]={ limit={ @@ -123323,27 +125101,23 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [5605]={ + [5660]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Debilitate Enemies for {0} Seconds when you Suppress their Spell Damage" + text="Apply Debilitate to Enemies 3 Metres in front of you while actively Blocking" } }, stats={ - [1]="debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell" + [1]="debilitate_enemies_within_X_metres_while_active_blocking" } }, - [5606]={ + [5661]={ [1]={ [1]={ limit={ @@ -123376,7 +125150,7 @@ return { [1]="debuff_time_passed_-%_while_affected_by_haste" } }, - [5607]={ + [5662]={ [1]={ [1]={ limit={ @@ -123405,7 +125179,7 @@ return { [1]="debuff_time_passed_+%" } }, - [5608]={ + [5663]={ [1]={ [1]={ limit={ @@ -123421,7 +125195,7 @@ return { [1]="decimating_strike" } }, - [5609]={ + [5664]={ [1]={ [1]={ limit={ @@ -123437,7 +125211,36 @@ return { [1]="decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [5610]={ + [5665]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Defences while on Low Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Defences while on [LowLife|Low Life" + } + }, + stats={ + [1]="defences_+%_while_on_low_life" + } + }, + [5666]={ [1]={ [1]={ limit={ @@ -123466,7 +125269,7 @@ return { [1]="defences_+%_while_wielding_quarterstaff" } }, - [5611]={ + [5667]={ [1]={ [1]={ limit={ @@ -123495,7 +125298,7 @@ return { [1]="defences_+%_while_you_have_four_linked_targets" } }, - [5612]={ + [5668]={ [1]={ [1]={ limit={ @@ -123511,7 +125314,7 @@ return { [1]="defences_are_zero" } }, - [5613]={ + [5669]={ [1]={ [1]={ limit={ @@ -123527,7 +125330,7 @@ return { [1]="defences_from_animated_guardians_items_apply_to_animated_weapon" } }, - [5614]={ + [5670]={ [1]={ [1]={ limit={ @@ -123536,14 +125339,14 @@ return { [2]="#" } }, - text="Defend with {0}% of Armour against Attacks from further than 6m" + text="Defend with {0}% of Armour against Critical Hits" } }, stats={ - [1]="defend_with_%_armour_against_attacks_from_distance_greater_than_6m" + [1]="defend_with_%_armour_against_critical_strikes" } }, - [5615]={ + [5671]={ [1]={ [1]={ limit={ @@ -123552,14 +125355,14 @@ return { [2]="#" } }, - text="Defend with {0}% of Armour against Critical Hits" + text="Defend with {0}% of Armour against Hits from Enemies that are further than 6m away" } }, stats={ - [1]="defend_with_%_armour_against_critical_strikes" + [1]="defend_with_%_armour_against_hits_from_distance_greater_than_6m" } }, - [5616]={ + [5672]={ [1]={ [1]={ limit={ @@ -123575,7 +125378,7 @@ return { [1]="defend_with_%_armour_against_ranged_attacks" } }, - [5617]={ + [5673]={ [1]={ [1]={ limit={ @@ -123591,7 +125394,7 @@ return { [1]="defend_with_%_of_armour_while_not_on_low_energy_shield" } }, - [5618]={ + [5674]={ [1]={ [1]={ limit={ @@ -123620,7 +125423,7 @@ return { [1]="defiance_banner_aura_effect_+%" } }, - [5619]={ + [5675]={ [1]={ [1]={ limit={ @@ -123649,7 +125452,23 @@ return { [1]="defiance_banner_mana_reservation_efficiency_+%" } }, - [5620]={ + [5676]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Damage taken from Deflected Hits Recouped as Life" + } + }, + stats={ + [1]="deflected_hit_damage_taken_%_recouped_as_life" + } + }, + [5677]={ [1]={ [1]={ limit={ @@ -123658,14 +125477,30 @@ return { [2]="#" } }, - text="Chance to Deflect Attack Damage is Lucky" + text="Deflected Hits cannot inflict Maim on you" } }, stats={ - [1]="deflect_chance_is_lucky" + [1]="deflected_hits_cannot_directly_inflict_maim_on_self" } }, - [5621]={ + [5678]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Deflected Hits cannot inflict Bleeding on you" + } + }, + stats={ + [1]="deflected_hits_cannot_inflict_bleeding_on_self" + } + }, + [5679]={ [1]={ [1]={ limit={ @@ -123674,7 +125509,7 @@ return { [2]="#" } }, - text="{0}% increased chance to Deflect" + text="{0}% increased Deflection Rating" }, [2]={ [1]={ @@ -123687,14 +125522,39 @@ return { [2]=-1 } }, - text="{0}% reduced chance to Deflect" + text="{0}% reduced Deflection Rating" } }, stats={ - [1]="deflect_chance_+%" + [1]="deflection_rating_+%" } }, - [5622]={ + [5680]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Deflection Rating while Surrounded" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Deflection Rating while Surrounded" + } + }, + stats={ + [1]="deflection_rating_+%_while_surrounded" + } + }, + [5681]={ [1]={ [1]={ limit={ @@ -123723,7 +125583,7 @@ return { [1]="delirium_aura_effect_+%" } }, - [5623]={ + [5682]={ [1]={ [1]={ limit={ @@ -123756,7 +125616,7 @@ return { [1]="delirium_mana_reservation_+%" } }, - [5624]={ + [5683]={ [1]={ [1]={ limit={ @@ -123772,7 +125632,7 @@ return { [1]="delirium_reserves_no_mana" } }, - [5625]={ + [5684]={ [1]={ [1]={ limit={ @@ -123788,7 +125648,7 @@ return { [1]="delve_biome_area_contains_x_extra_packs_of_insects" } }, - [5626]={ + [5685]={ [1]={ [1]={ limit={ @@ -123804,7 +125664,7 @@ return { [1]="delve_biome_monster_projectiles_always_pierce" } }, - [5627]={ + [5686]={ [1]={ [1]={ limit={ @@ -123820,7 +125680,7 @@ return { [1]="delve_boss_life_+%_final_from_biome" } }, - [5628]={ + [5687]={ [1]={ [1]={ limit={ @@ -123836,7 +125696,7 @@ return { [1]="demon_form_has_no_max_stacks" } }, - [5629]={ + [5688]={ [1]={ [1]={ limit={ @@ -123869,7 +125729,7 @@ return { [1]="demon_minion_reservation_+%" } }, - [5630]={ + [5689]={ [1]={ [1]={ limit={ @@ -123885,7 +125745,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [5631]={ + [5690]={ [1]={ [1]={ limit={ @@ -123914,7 +125774,7 @@ return { [1]="despair_curse_effect_+%" } }, - [5632]={ + [5691]={ [1]={ [1]={ limit={ @@ -123943,7 +125803,7 @@ return { [1]="despair_duration_+%" } }, - [5633]={ + [5692]={ [1]={ [1]={ limit={ @@ -123959,7 +125819,7 @@ return { [1]="despair_no_reservation" } }, - [5634]={ + [5693]={ [1]={ [1]={ limit={ @@ -123988,7 +125848,7 @@ return { [1]="destructive_link_duration_+%" } }, - [5635]={ + [5694]={ [1]={ [1]={ [1]={ @@ -124025,7 +125885,7 @@ return { [1]="determination_mana_reservation_efficiency_-2%_per_1" } }, - [5636]={ + [5695]={ [1]={ [1]={ limit={ @@ -124054,7 +125914,7 @@ return { [1]="determination_mana_reservation_efficiency_+%" } }, - [5637]={ + [5696]={ [1]={ [1]={ limit={ @@ -124070,7 +125930,65 @@ return { [1]="determination_reserves_no_mana" } }, - [5638]={ + [5697]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Detonator skills have {0}% increased Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Detonator skills have {0}% reduced Area of Effect" + } + }, + stats={ + [1]="detonator_skill_area_of_effect_+%" + } + }, + [5698]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Detonator skills have {0}% increased damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Detonator skills have {0}% reduced damage" + } + }, + stats={ + [1]="detonator_skill_damage_+%" + } + }, + [5699]={ [1]={ [1]={ limit={ @@ -124099,7 +126017,7 @@ return { [1]="dexterity_+%_if_strength_higher_than_intelligence" } }, - [5639]={ + [5700]={ [1]={ [1]={ limit={ @@ -124115,7 +126033,7 @@ return { [1]="dexterity_skill_gem_level_+" } }, - [5640]={ + [5701]={ [1]={ [1]={ limit={ @@ -124131,7 +126049,7 @@ return { [1]="discharge_and_voltaxic_burst_nova_spells_cast_at_target_location" } }, - [5641]={ + [5702]={ [1]={ [1]={ limit={ @@ -124160,7 +126078,7 @@ return { [1]="discharge_area_of_effect_+%_final" } }, - [5642]={ + [5703]={ [1]={ [1]={ limit={ @@ -124176,7 +126094,7 @@ return { [1]="discharge_cooldown_override_ms" } }, - [5643]={ + [5704]={ [1]={ [1]={ limit={ @@ -124205,7 +126123,7 @@ return { [1]="discharge_damage_+%_final" } }, - [5644]={ + [5705]={ [1]={ [1]={ limit={ @@ -124221,7 +126139,7 @@ return { [1]="discharge_radius_+" } }, - [5645]={ + [5706]={ [1]={ [1]={ limit={ @@ -124250,7 +126168,7 @@ return { [1]="discharge_triggered_damage_+%_final" } }, - [5646]={ + [5707]={ [1]={ [1]={ [1]={ @@ -124287,7 +126205,7 @@ return { [1]="discipline_mana_reservation_efficiency_-2%_per_1" } }, - [5647]={ + [5708]={ [1]={ [1]={ limit={ @@ -124316,7 +126234,7 @@ return { [1]="discipline_mana_reservation_efficiency_+%" } }, - [5648]={ + [5709]={ [1]={ [1]={ limit={ @@ -124332,7 +126250,7 @@ return { [1]="discipline_reserves_no_mana" } }, - [5649]={ + [5710]={ [1]={ [1]={ limit={ @@ -124361,7 +126279,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [5650]={ + [5711]={ [1]={ [1]={ limit={ @@ -124377,7 +126295,7 @@ return { [1]="dispel_bleed_on_guard_skill_use" } }, - [5651]={ + [5712]={ [1]={ [1]={ limit={ @@ -124393,7 +126311,7 @@ return { [1]="dispel_corrupted_blood_on_guard_skill_use" } }, - [5652]={ + [5713]={ [1]={ [1]={ limit={ @@ -124409,7 +126327,7 @@ return { [1]="display_altar_chaos_aura" } }, - [5653]={ + [5714]={ [1]={ [1]={ limit={ @@ -124425,7 +126343,7 @@ return { [1]="display_altar_cold_aura" } }, - [5654]={ + [5715]={ [1]={ [1]={ limit={ @@ -124441,7 +126359,7 @@ return { [1]="display_altar_fire_aura" } }, - [5655]={ + [5716]={ [1]={ [1]={ limit={ @@ -124457,7 +126375,7 @@ return { [1]="display_altar_lightning_aura" } }, - [5656]={ + [5717]={ [1]={ [1]={ limit={ @@ -124473,7 +126391,7 @@ return { [1]="display_altar_tangle_tentalces_daemon" } }, - [5657]={ + [5718]={ [1]={ [1]={ limit={ @@ -124489,7 +126407,7 @@ return { [1]="display_area_contains_alluring_vaal_side_area" } }, - [5658]={ + [5719]={ [1]={ [1]={ limit={ @@ -124505,7 +126423,7 @@ return { [1]="display_area_contains_corrupting_tempest" } }, - [5659]={ + [5720]={ [1]={ [1]={ limit={ @@ -124521,7 +126439,7 @@ return { [1]="display_area_contains_improved_labyrinth_trial" } }, - [5660]={ + [5721]={ [1]={ [1]={ limit={ @@ -124537,7 +126455,7 @@ return { [1]="display_cowards_trial_waves_of_monsters" } }, - [5661]={ + [5722]={ [1]={ [1]={ limit={ @@ -124553,7 +126471,7 @@ return { [1]="display_cowards_trial_waves_of_undead_monsters" } }, - [5662]={ + [5723]={ [1]={ [1]={ limit={ @@ -124569,7 +126487,7 @@ return { [1]="display_dark_ritual_curse_max_skill_level_requirement" } }, - [5663]={ + [5724]={ [1]={ [1]={ limit={ @@ -124598,7 +126516,7 @@ return { [1]="display_heist_contract_lockdown_timer_+%" } }, - [5664]={ + [5725]={ [1]={ [1]={ limit={ @@ -124623,7 +126541,7 @@ return { [1]="display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value" } }, - [5665]={ + [5726]={ [1]={ [1]={ limit={ @@ -124648,7 +126566,7 @@ return { [1]="display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value" } }, - [5666]={ + [5727]={ [1]={ [1]={ limit={ @@ -124664,7 +126582,7 @@ return { [1]="display_legion_uber_fragment_improved_rewards_+%" } }, - [5667]={ + [5728]={ [1]={ [1]={ limit={ @@ -124680,7 +126598,7 @@ return { [1]="display_map_augmentable_boss" } }, - [5668]={ + [5729]={ [1]={ [1]={ limit={ @@ -124696,7 +126614,7 @@ return { [1]="display_map_inhabited_by_lunaris_fanatics" } }, - [5669]={ + [5730]={ [1]={ [1]={ limit={ @@ -124712,7 +126630,7 @@ return { [1]="display_map_inhabited_by_solaris_fanatics" } }, - [5670]={ + [5731]={ [1]={ [1]={ limit={ @@ -124728,7 +126646,7 @@ return { [1]="display_map_labyrinth_chests_fortune" } }, - [5671]={ + [5732]={ [1]={ [1]={ limit={ @@ -124744,7 +126662,7 @@ return { [1]="display_map_labyrinth_enchant_belts" } }, - [5672]={ + [5733]={ [1]={ [1]={ limit={ @@ -124814,7 +126732,7 @@ return { [1]="display_map_mission_id" } }, - [5673]={ + [5734]={ [1]={ [1]={ limit={ @@ -124830,7 +126748,7 @@ return { [1]="display_memory_line_abyss_beyond_monsters_from_cracks" } }, - [5674]={ + [5735]={ [1]={ [1]={ limit={ @@ -124846,7 +126764,7 @@ return { [1]="display_memory_line_ambush_contains_standalone_map_boss" } }, - [5675]={ + [5736]={ [1]={ [1]={ limit={ @@ -124862,7 +126780,7 @@ return { [1]="display_memory_line_ambush_strongbox_chain" } }, - [5676]={ + [5737]={ [1]={ [1]={ limit={ @@ -124878,7 +126796,7 @@ return { [1]="display_memory_line_anarchy_rogue_exiles_in_packs" } }, - [5677]={ + [5738]={ [1]={ [1]={ limit={ @@ -124894,7 +126812,7 @@ return { [1]="display_memory_line_bestiary_capturable_harvest_monsters" } }, - [5678]={ + [5739]={ [1]={ [1]={ limit={ @@ -124910,7 +126828,7 @@ return { [1]="display_memory_line_breach_area_is_breached" } }, - [5679]={ + [5740]={ [1]={ [1]={ limit={ @@ -124926,7 +126844,7 @@ return { [1]="display_memory_line_breach_miniature_flash_breaches" } }, - [5680]={ + [5741]={ [1]={ [1]={ limit={ @@ -124942,7 +126860,7 @@ return { [1]="display_memory_line_domination_multiple_modded_shrines" } }, - [5681]={ + [5742]={ [1]={ [1]={ limit={ @@ -124958,7 +126876,7 @@ return { [1]="display_memory_line_domination_shrines_to_pantheon_gods" } }, - [5682]={ + [5743]={ [1]={ [1]={ limit={ @@ -124974,7 +126892,7 @@ return { [1]="display_memory_line_essence_multiple_rare_monsters" } }, - [5683]={ + [5744]={ [1]={ [1]={ limit={ @@ -124990,7 +126908,7 @@ return { [1]="display_memory_line_essence_rogue_exiles" } }, - [5684]={ + [5745]={ [1]={ [1]={ limit={ @@ -125006,7 +126924,7 @@ return { [1]="display_memory_line_harbinger_player_is_a_harbinger" } }, - [5685]={ + [5746]={ [1]={ [1]={ limit={ @@ -125022,7 +126940,7 @@ return { [1]="display_memory_line_harbinger_portals_everywhere" } }, - [5686]={ + [5747]={ [1]={ [1]={ limit={ @@ -125038,7 +126956,7 @@ return { [1]="display_memory_line_harvest_larger_plot_with_premium_seeds" } }, - [5687]={ + [5748]={ [1]={ [1]={ limit={ @@ -125054,7 +126972,7 @@ return { [1]="display_memory_line_incursion_reverse" } }, - [5688]={ + [5749]={ [1]={ [1]={ limit={ @@ -125070,7 +126988,7 @@ return { [1]="display_memory_line_torment_player_is_possessed" } }, - [5689]={ + [5750]={ [1]={ [1]={ limit={ @@ -125086,7 +127004,7 @@ return { [1]="display_memory_line_torment_rares_uniques_are_possessed" } }, - [5690]={ + [5751]={ [1]={ [1]={ limit={ @@ -125102,7 +127020,7 @@ return { [1]="display_modifiers_to_totem_life_effect_these_minions" } }, - [5691]={ + [5752]={ [1]={ [1]={ limit={ @@ -125118,7 +127036,7 @@ return { [1]="display_passive_attribute_text" } }, - [5692]={ + [5753]={ [1]={ [1]={ limit={ @@ -125134,7 +127052,7 @@ return { [1]="display_strongbox_drops_additional_shaper_or_elder_cards" } }, - [5693]={ + [5754]={ [1]={ [1]={ limit={ @@ -125172,7 +127090,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [5694]={ + [5755]={ [1]={ [1]={ limit={ @@ -125201,7 +127119,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [5695]={ + [5756]={ [1]={ [1]={ limit={ @@ -125230,7 +127148,7 @@ return { [1]="divine_tempest_damage_+%" } }, - [5696]={ + [5757]={ [1]={ [1]={ limit={ @@ -125255,7 +127173,36 @@ return { [1]="divine_tempest_number_of_additional_nearby_enemies_to_zap" } }, - [5697]={ + [5758]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Deals {0}% more Damage per previous Explosive Teleport in sequence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="DNT Deals {0}% more Damage per previous Explosive Teleport in sequence" + } + }, + stats={ + [1]="djinn_damage_+%_final_per_teleport_in_sequence" + } + }, + [5759]={ [1]={ [1]={ [1]={ @@ -125288,7 +127235,7 @@ return { [1]="dodge_roll_base_travel_distance" } }, - [5698]={ + [5760]={ [1]={ [1]={ limit={ @@ -125304,7 +127251,7 @@ return { [1]="dodge_roll_can_avoid_all_damage" } }, - [5699]={ + [5761]={ [1]={ [1]={ limit={ @@ -125320,7 +127267,53 @@ return { [1]="dodge_roll_phasing_without_visual" } }, - [5700]={ + [5762]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to Dodge Roll distance while Surrounded" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=-10, + [2]=-10 + } + }, + text="{0:+d} metre to Dodge Roll distance while Surrounded" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to Dodge Roll distance while Surrounded" + } + }, + stats={ + [1]="dodge_roll_travel_distance_+_while_surrounded" + } + }, + [5763]={ [1]={ [1]={ limit={ @@ -125349,7 +127342,7 @@ return { [1]="doedre_aura_damage_+%_final" } }, - [5701]={ + [5764]={ [1]={ [1]={ limit={ @@ -125365,7 +127358,7 @@ return { [1]="dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [5702]={ + [5765]={ [1]={ [1]={ limit={ @@ -125381,7 +127374,7 @@ return { [1]="dot_multiplier_+_if_crit_in_past_8_seconds" } }, - [5703]={ + [5766]={ [1]={ [1]={ limit={ @@ -125397,7 +127390,7 @@ return { [1]="dot_multiplier_+_while_affected_by_malevolence" } }, - [5704]={ + [5767]={ [1]={ [1]={ limit={ @@ -125413,7 +127406,7 @@ return { [1]="dot_multiplier_+_with_bow_skills" } }, - [5705]={ + [5768]={ [1]={ [1]={ limit={ @@ -125438,7 +127431,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [5706]={ + [5769]={ [1]={ [1]={ limit={ @@ -125454,7 +127447,7 @@ return { [1]="double_armour_effect" } }, - [5707]={ + [5770]={ [1]={ [1]={ limit={ @@ -125470,7 +127463,7 @@ return { [1]="double_damage_chance_%_if_below_100_strength" } }, - [5708]={ + [5771]={ [1]={ [1]={ limit={ @@ -125486,7 +127479,7 @@ return { [1]="double_damage_%_chance_while_wielding_mace_sceptre_staff" } }, - [5709]={ + [5772]={ [1]={ [1]={ limit={ @@ -125502,7 +127495,7 @@ return { [1]="double_effect_of_consuming_frenzy_charges" } }, - [5710]={ + [5773]={ [1]={ [1]={ limit={ @@ -125518,7 +127511,23 @@ return { [1]="double_evasion_rating_from_gloves_helmets_boots" } }, - [5711]={ + [5774]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Evasion Rating is doubled if you have not been Hit Recently" + } + }, + stats={ + [1]="double_evasion_rating_if_you_havent_been_hit_recently" + } + }, + [5775]={ [1]={ [1]={ limit={ @@ -125534,7 +127543,7 @@ return { [1]="double_number_of_poison_you_can_inflict" } }, - [5712]={ + [5776]={ [1]={ [1]={ limit={ @@ -125555,7 +127564,7 @@ return { [2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [5713]={ + [5777]={ [1]={ [1]={ limit={ @@ -125571,7 +127580,7 @@ return { [1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [5714]={ + [5778]={ [1]={ [1]={ limit={ @@ -125587,7 +127596,7 @@ return { [1]="drain_%_max_mana_to_activate_expended_charms" } }, - [5715]={ + [5779]={ [1]={ [1]={ limit={ @@ -125603,7 +127612,7 @@ return { [1]="drain_focus_%_of_damage_dealt_on_hit" } }, - [5716]={ + [5780]={ [1]={ [1]={ limit={ @@ -125619,7 +127628,7 @@ return { [1]="drain_x_flask_charges_over_time_on_hit_for_6_seconds" } }, - [5717]={ + [5781]={ [1]={ [1]={ limit={ @@ -125648,7 +127657,7 @@ return { [1]="dread_banner_aura_effect_+%" } }, - [5718]={ + [5782]={ [1]={ [1]={ limit={ @@ -125664,7 +127673,7 @@ return { [1]="dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner" } }, - [5719]={ + [5783]={ [1]={ [1]={ [1]={ @@ -125684,7 +127693,7 @@ return { [1]="dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50" } }, - [5720]={ + [5784]={ [1]={ [1]={ limit={ @@ -125713,7 +127722,7 @@ return { [1]="dread_banner_mana_reservation_efficiency_+%" } }, - [5721]={ + [5785]={ [1]={ [1]={ limit={ @@ -125742,7 +127751,7 @@ return { [1]="dual_strike_accuracy_rating_+%_while_wielding_sword" } }, - [5722]={ + [5786]={ [1]={ [1]={ limit={ @@ -125771,7 +127780,7 @@ return { [1]="dual_strike_attack_speed_+%_while_wielding_claw" } }, - [5723]={ + [5787]={ [1]={ [1]={ limit={ @@ -125787,7 +127796,7 @@ return { [1]="dual_strike_critical_strike_multiplier_+_while_wielding_dagger" } }, - [5724]={ + [5788]={ [1]={ [1]={ limit={ @@ -125803,7 +127812,7 @@ return { [1]="dual_strike_intimidate_on_hit_while_wielding_axe" } }, - [5725]={ + [5789]={ [1]={ [1]={ limit={ @@ -125828,7 +127837,7 @@ return { [1]="dual_strike_main_hand_deals_double_damage_%" } }, - [5726]={ + [5790]={ [1]={ [1]={ limit={ @@ -125844,7 +127853,7 @@ return { [1]="dual_strike_melee_splash_while_wielding_mace" } }, - [5727]={ + [5791]={ [1]={ [1]={ limit={ @@ -125860,7 +127869,7 @@ return { [1]="dual_strike_melee_splash_with_off_hand_weapon" } }, - [5728]={ + [5792]={ [1]={ [1]={ limit={ @@ -125876,7 +127885,7 @@ return { [1]="dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws" } }, - [5729]={ + [5793]={ [1]={ [1]={ limit={ @@ -125905,7 +127914,7 @@ return { [1]="duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final" } }, - [5730]={ + [5794]={ [1]={ [1]={ limit={ @@ -125934,7 +127943,7 @@ return { [1]="duration_of_ailments_on_self_+%_per_fortification" } }, - [5731]={ + [5795]={ [1]={ [1]={ limit={ @@ -125950,7 +127959,7 @@ return { [1]="each_arrow_fired_gains_random_perdandus_prefix" } }, - [5732]={ + [5796]={ [1]={ [1]={ limit={ @@ -125966,7 +127975,7 @@ return { [1]="earthquake_and_earthshatter_shatter_on_killing_blow" } }, - [5733]={ + [5797]={ [1]={ [1]={ limit={ @@ -125995,7 +128004,7 @@ return { [1]="earthquake_damage_+%_per_100ms_duration" } }, - [5734]={ + [5798]={ [1]={ [1]={ limit={ @@ -126024,7 +128033,7 @@ return { [1]="earthshatter_area_of_effect_+%" } }, - [5735]={ + [5799]={ [1]={ [1]={ limit={ @@ -126053,7 +128062,7 @@ return { [1]="earthshatter_damage_+%" } }, - [5736]={ + [5800]={ [1]={ [1]={ limit={ @@ -126082,7 +128091,7 @@ return { [1]="electrocuted_enemy_damage_taken_+%" } }, - [5737]={ + [5801]={ [1]={ [1]={ limit={ @@ -126111,7 +128120,7 @@ return { [1]="elemental_ailment_duration_on_self_+%_while_holding_shield" } }, - [5738]={ + [5802]={ [1]={ [1]={ limit={ @@ -126140,7 +128149,7 @@ return { [1]="elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed" } }, - [5739]={ + [5803]={ [1]={ [1]={ limit={ @@ -126169,7 +128178,7 @@ return { [1]="elemental_ailment_types_apply_damage_taken_+%" } }, - [5740]={ + [5804]={ [1]={ [1]={ limit={ @@ -126185,7 +128194,7 @@ return { [1]="elemental_ailments_reflected_to_self" } }, - [5741]={ + [5805]={ [1]={ [1]={ limit={ @@ -126201,7 +128210,7 @@ return { [1]="elemental_damage_additional_rolls_lucky_shocked" } }, - [5742]={ + [5806]={ [1]={ [1]={ limit={ @@ -126210,14 +128219,14 @@ return { [2]="#" } }, - text="DNT All Elemental Damage from Hits contributes to Freeze Buildup" + text="All Elemental Damage from Hits Contributes to Freeze Buildup" } }, stats={ [1]="elemental_damage_can_freeze" } }, - [5743]={ + [5807]={ [1]={ [1]={ limit={ @@ -126226,14 +128235,14 @@ return { [2]="#" } }, - text="DNT All Elemental Damage from Hits contributes to Ignite Chance and Magnitude" + text=" All Elemental Damage from Hits Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="elemental_damage_can_ignite" } }, - [5744]={ + [5808]={ [1]={ [1]={ limit={ @@ -126249,7 +128258,7 @@ return { [1]="elemental_damage_can_inflict_bleeding" } }, - [5745]={ + [5809]={ [1]={ [1]={ limit={ @@ -126278,7 +128287,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [5746]={ + [5810]={ [1]={ [1]={ limit={ @@ -126307,7 +128316,7 @@ return { [1]="elemental_damage_+%_if_cursed_enemy_killed_recently" } }, - [5747]={ + [5811]={ [1]={ [1]={ limit={ @@ -126336,7 +128345,7 @@ return { [1]="elemental_damage_+%_if_enemy_chilled_recently" } }, - [5748]={ + [5812]={ [1]={ [1]={ limit={ @@ -126365,7 +128374,7 @@ return { [1]="elemental_damage_+%_if_enemy_ignited_recently" } }, - [5749]={ + [5813]={ [1]={ [1]={ limit={ @@ -126394,7 +128403,7 @@ return { [1]="elemental_damage_+%_if_enemy_shocked_recently" } }, - [5750]={ + [5814]={ [1]={ [1]={ limit={ @@ -126423,7 +128432,7 @@ return { [1]="elemental_damage_+%_if_have_crit_recently" } }, - [5751]={ + [5815]={ [1]={ [1]={ limit={ @@ -126439,7 +128448,7 @@ return { [1]="elemental_damage_+%_if_used_a_warcry_recently" } }, - [5752]={ + [5816]={ [1]={ [1]={ limit={ @@ -126468,7 +128477,7 @@ return { [1]="elemental_damage_+%_per_10_devotion" } }, - [5753]={ + [5817]={ [1]={ [1]={ limit={ @@ -126497,7 +128506,7 @@ return { [1]="elemental_damage_+%_per_10_dexterity" } }, - [5754]={ + [5818]={ [1]={ [1]={ limit={ @@ -126526,7 +128535,7 @@ return { [1]="elemental_damage_+%_per_12_int" } }, - [5755]={ + [5819]={ [1]={ [1]={ limit={ @@ -126555,7 +128564,7 @@ return { [1]="elemental_damage_+%_per_12_strength" } }, - [5756]={ + [5820]={ [1]={ [1]={ limit={ @@ -126584,7 +128593,7 @@ return { [1]="elemental_damage_+%_per_power_charge" } }, - [5757]={ + [5821]={ [1]={ [1]={ limit={ @@ -126613,7 +128622,7 @@ return { [1]="elemental_damage_+%_per_sextant_affecting_area" } }, - [5758]={ + [5822]={ [1]={ [1]={ limit={ @@ -126642,7 +128651,7 @@ return { [1]="elemental_damage_+%_while_affected_by_a_herald" } }, - [5759]={ + [5823]={ [1]={ [1]={ limit={ @@ -126671,7 +128680,7 @@ return { [1]="elemental_damage_+%_while_in_area_affected_by_sextant" } }, - [5760]={ + [5824]={ [1]={ [1]={ limit={ @@ -126696,7 +128705,7 @@ return { [1]="elemental_damage_reduction_%_from_evasion_rating" } }, - [5761]={ + [5825]={ [1]={ [1]={ limit={ @@ -126729,7 +128738,7 @@ return { [1]="elemental_damage_resistance_+%" } }, - [5762]={ + [5826]={ [1]={ [1]={ limit={ @@ -126745,7 +128754,7 @@ return { [1]="elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [5763]={ + [5827]={ [1]={ [1]={ limit={ @@ -126761,7 +128770,7 @@ return { [1]="elemental_damage_taken_%_recouped_as_life" } }, - [5764]={ + [5828]={ [1]={ [1]={ limit={ @@ -126790,7 +128799,7 @@ return { [1]="elemental_damage_taken_+%_final_per_raised_zombie" } }, - [5765]={ + [5829]={ [1]={ [1]={ limit={ @@ -126823,7 +128832,7 @@ return { [1]="elemental_damage_taken_from_hits_+%_per_endurance_charge" } }, - [5766]={ + [5830]={ [1]={ [1]={ limit={ @@ -126852,7 +128861,7 @@ return { [1]="elemental_damage_taken_+%_if_been_hit_recently" } }, - [5767]={ + [5831]={ [1]={ [1]={ limit={ @@ -126881,7 +128890,7 @@ return { [1]="elemental_damage_taken_+%_if_not_hit_recently" } }, - [5768]={ + [5832]={ [1]={ [1]={ limit={ @@ -126910,7 +128919,7 @@ return { [1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge" } }, - [5769]={ + [5833]={ [1]={ [1]={ limit={ @@ -126939,7 +128948,7 @@ return { [1]="elemental_damage_taken_+%_per_endurance_charge" } }, - [5770]={ + [5834]={ [1]={ [1]={ limit={ @@ -126972,7 +128981,7 @@ return { [1]="elemental_damage_taken_+%_while_stationary" } }, - [5771]={ + [5835]={ [1]={ [1]={ limit={ @@ -127001,7 +129010,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_per_power_charge" } }, - [5772]={ + [5836]={ [1]={ [1]={ limit={ @@ -127017,7 +129026,7 @@ return { [1]="elemental_golems_maximum_life_is_doubled" } }, - [5773]={ + [5837]={ [1]={ [1]={ limit={ @@ -127042,7 +129051,7 @@ return { [1]="elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%" } }, - [5774]={ + [5838]={ [1]={ [1]={ limit={ @@ -127058,7 +129067,7 @@ return { [1]="elemental_hit_cannot_roll_cold_damage" } }, - [5775]={ + [5839]={ [1]={ [1]={ limit={ @@ -127074,7 +129083,7 @@ return { [1]="elemental_hit_cannot_roll_fire_damage" } }, - [5776]={ + [5840]={ [1]={ [1]={ limit={ @@ -127090,7 +129099,7 @@ return { [1]="elemental_hit_cannot_roll_lightning_damage" } }, - [5777]={ + [5841]={ [1]={ [1]={ limit={ @@ -127106,7 +129115,7 @@ return { [1]="elemental_hit_damage_taken_%_as_physical" } }, - [5778]={ + [5842]={ [1]={ [1]={ limit={ @@ -127122,7 +129131,7 @@ return { [1]="elemental_hit_deals_50%_less_cold_damage" } }, - [5779]={ + [5843]={ [1]={ [1]={ limit={ @@ -127138,7 +129147,7 @@ return { [1]="elemental_hit_deals_50%_less_fire_damage" } }, - [5780]={ + [5844]={ [1]={ [1]={ limit={ @@ -127154,7 +129163,7 @@ return { [1]="elemental_hit_deals_50%_less_lightning_damage" } }, - [5781]={ + [5845]={ [1]={ [1]={ limit={ @@ -127170,7 +129179,7 @@ return { [1]="elemental_penetration_can_go_down_to_override" } }, - [5782]={ + [5846]={ [1]={ [1]={ limit={ @@ -127186,7 +129195,7 @@ return { [1]="elemental_penetration_%_if_you_have_a_power_charge" } }, - [5783]={ + [5847]={ [1]={ [1]={ limit={ @@ -127202,7 +129211,7 @@ return { [1]="elemental_penetration_%_while_chilled" } }, - [5784]={ + [5848]={ [1]={ [1]={ limit={ @@ -127235,7 +129244,7 @@ return { [1]="elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%" } }, - [5785]={ + [5849]={ [1]={ [1]={ limit={ @@ -127268,7 +129277,7 @@ return { [1]="elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements" } }, - [5786]={ + [5850]={ [1]={ [1]={ limit={ @@ -127284,7 +129293,7 @@ return { [1]="elemental_resistance_%_per_minion_up_to_30%" } }, - [5787]={ + [5851]={ [1]={ [1]={ limit={ @@ -127300,7 +129309,7 @@ return { [1]="elemental_resistance_cannot_be_lowered_by_curses" } }, - [5788]={ + [5852]={ [1]={ [1]={ limit={ @@ -127316,7 +129325,7 @@ return { [1]="elemental_resistance_%_per_10_devotion" } }, - [5789]={ + [5853]={ [1]={ [1]={ limit={ @@ -127332,7 +129341,7 @@ return { [1]="elemental_resistances_are_limited_by_highest_maximum_elemental_resistance" } }, - [5790]={ + [5854]={ [1]={ [1]={ limit={ @@ -127348,7 +129357,7 @@ return { [1]="elemental_skill_chance_to_blind_nearby_enemies_%" } }, - [5791]={ + [5855]={ [1]={ [1]={ limit={ @@ -127364,7 +129373,7 @@ return { [1]="elemental_skill_gem_level_+" } }, - [5792]={ + [5856]={ [1]={ [1]={ limit={ @@ -127380,7 +129389,7 @@ return { [1]="elemental_skills_deal_triple_damage" } }, - [5793]={ + [5857]={ [1]={ [1]={ limit={ @@ -127409,7 +129418,36 @@ return { [1]="elemental_storm_cooldown_recovery_speed_+%_final" } }, - [5794]={ + [5858]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for pulses originating from a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for pulses originating from a Unique enemy" + } + }, + stats={ + [1]="elemental_sundering_damage_+%_final_if_created_from_unique" + } + }, + [5859]={ [1]={ [1]={ limit={ @@ -127425,7 +129463,7 @@ return { [1]="elemental_weakness_no_reservation" } }, - [5795]={ + [5860]={ [1]={ [1]={ limit={ @@ -127454,7 +129492,7 @@ return { [1]="elementalist_area_of_effect_+%_for_5_seconds" } }, - [5796]={ + [5861]={ [1]={ [1]={ limit={ @@ -127470,7 +129508,7 @@ return { [1]="elementalist_chill_maximum_magnitude_override" } }, - [5797]={ + [5862]={ [1]={ [1]={ limit={ @@ -127499,7 +129537,7 @@ return { [1]="elementalist_elemental_damage_+%_for_5_seconds" } }, - [5798]={ + [5863]={ [1]={ [1]={ limit={ @@ -127515,7 +129553,7 @@ return { [1]="elementalist_gain_shaper_of_desolation_every_10_seconds" } }, - [5799]={ + [5864]={ [1]={ [1]={ limit={ @@ -127544,7 +129582,7 @@ return { [1]="elementalist_ignite_effect_+%_final" } }, - [5800]={ + [5865]={ [1]={ [1]={ limit={ @@ -127573,7 +129611,7 @@ return { [1]="elusive_effect_+%" } }, - [5801]={ + [5866]={ [1]={ [1]={ limit={ @@ -127602,7 +129640,36 @@ return { [1]="ember_projectile_spread_area_+%" } }, - [5802]={ + [5867]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Attacks deal {0}% increased damage per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Attacks deal {0}% reduced damage per 10 Tribute" + } + }, + stats={ + [1]="empowered_attack_damage_+%_per_10_tribute" + } + }, + [5868]={ [1]={ [1]={ limit={ @@ -127631,7 +129698,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [5803]={ + [5869]={ [1]={ [1]={ limit={ @@ -127647,7 +129714,7 @@ return { [1]="empowered_attack_double_damage_%_chance" } }, - [5804]={ + [5870]={ [1]={ [1]={ limit={ @@ -127676,7 +129743,23 @@ return { [1]="empowered_attack_hit_damage_stun_multiplier_+%" } }, - [5805]={ + [5871]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Empowered Attacks Gain {0}% of Physical Damage as Extra Fire damage" + } + }, + stats={ + [1]="empowered_attack_physical_damage_%_to_gain_as_fire" + } + }, + [5872]={ [1]={ [1]={ limit={ @@ -127692,7 +129775,7 @@ return { [1]="enable_ring_slot_3" } }, - [5806]={ + [5873]={ [1]={ [1]={ limit={ @@ -127721,7 +129804,7 @@ return { [1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently" } }, - [5807]={ + [5874]={ [1]={ [1]={ limit={ @@ -127737,7 +129820,7 @@ return { [1]="endurance_charge_on_hit_%_vs_no_armour" } }, - [5808]={ + [5875]={ [1]={ [1]={ limit={ @@ -127753,7 +129836,7 @@ return { [1]="endurance_charge_on_kill_percent_chance_while_holding_shield" } }, - [5809]={ + [5876]={ [1]={ [1]={ limit={ @@ -127782,7 +129865,7 @@ return { [1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" } }, - [5810]={ + [5877]={ [1]={ [1]={ limit={ @@ -127807,7 +129890,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [5811]={ + [5878]={ [1]={ [1]={ limit={ @@ -127836,7 +129919,7 @@ return { [1]="enemies_affected_by_your_hazards_recently_have_+%_armour" } }, - [5812]={ + [5879]={ [1]={ [1]={ limit={ @@ -127865,7 +129948,7 @@ return { [1]="enemies_affected_by_your_hazards_recently_have_+%_evasion_rating" } }, - [5813]={ + [5880]={ [1]={ [1]={ limit={ @@ -127890,7 +129973,7 @@ return { [1]="enemies_are_maimed_for_x_seconds_after_becoming_unpinned" } }, - [5814]={ + [5881]={ [1]={ [1]={ limit={ @@ -127906,7 +129989,7 @@ return { [1]="enemies_blinded_by_you_while_blinded_have_malediction" } }, - [5815]={ + [5882]={ [1]={ [1]={ limit={ @@ -127922,7 +130005,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [5816]={ + [5883]={ [1]={ [1]={ limit={ @@ -127938,7 +130021,7 @@ return { [1]="enemies_chilled_by_hits_take_damage_increased_by_chill_effect" } }, - [5817]={ + [5884]={ [1]={ [1]={ limit={ @@ -127967,7 +130050,7 @@ return { [1]="enemies_cursed_by_you_have_life_regeneration_rate_+%" } }, - [5818]={ + [5885]={ [1]={ [1]={ limit={ @@ -127983,7 +130066,7 @@ return { [1]="enemies_explode_for_%_life_as_physical_damage" } }, - [5819]={ + [5886]={ [1]={ [1]={ limit={ @@ -127999,23 +130082,7 @@ return { [1]="enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage" } }, - [5820]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemies Killed with Wand Hits have a {0}% chance to Explode, dealing a quarter of their Life as Chaos Damage" - } - }, - stats={ - [1]="enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance" - } - }, - [5821]={ + [5887]={ [1]={ [1]={ limit={ @@ -128031,7 +130098,7 @@ return { [1]="enemies_explode_on_kill" } }, - [5822]={ + [5888]={ [1]={ [1]={ limit={ @@ -128047,7 +130114,7 @@ return { [1]="enemies_explode_on_kill_while_unhinged" } }, - [5823]={ + [5889]={ [1]={ [1]={ limit={ @@ -128072,7 +130139,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage" } }, - [5824]={ + [5890]={ [1]={ [1]={ limit={ @@ -128097,7 +130164,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked" } }, - [5825]={ + [5891]={ [1]={ [1]={ limit={ @@ -128122,7 +130189,7 @@ return { [1]="enemies_hitting_you_drop_burning_ground_%" } }, - [5826]={ + [5892]={ [1]={ [1]={ limit={ @@ -128147,7 +130214,7 @@ return { [1]="enemies_hitting_you_drop_chilled_ground_%" } }, - [5827]={ + [5893]={ [1]={ [1]={ limit={ @@ -128172,7 +130239,7 @@ return { [1]="enemies_hitting_you_drop_shocked_ground_%" } }, - [5828]={ + [5894]={ [1]={ [1]={ limit={ @@ -128188,7 +130255,7 @@ return { [1]="enemies_ignited_by_you_have_physical_damage_%_converted_to_fire" } }, - [5829]={ + [5895]={ [1]={ [1]={ limit={ @@ -128204,7 +130271,7 @@ return { [1]="enemies_in_presence_are_blinded" } }, - [5830]={ + [5896]={ [1]={ [1]={ limit={ @@ -128220,7 +130287,7 @@ return { [1]="enemies_in_presence_are_intimidated" } }, - [5831]={ + [5897]={ [1]={ [1]={ limit={ @@ -128249,7 +130316,7 @@ return { [1]="enemies_in_presence_cooldown_recovery_+%" } }, - [5832]={ + [5898]={ [1]={ [1]={ limit={ @@ -128265,7 +130332,7 @@ return { [1]="enemies_in_presence_count_as_low_life" } }, - [5833]={ + [5899]={ [1]={ [1]={ limit={ @@ -128281,7 +130348,7 @@ return { [1]="enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [5834]={ + [5900]={ [1]={ [1]={ limit={ @@ -128306,7 +130373,7 @@ return { [1]="enemies_in_presence_gain_critical_weakness_every_second_for_seconds" } }, - [5835]={ + [5901]={ [1]={ [1]={ limit={ @@ -128322,7 +130389,23 @@ return { [1]="enemies_in_presence_have_fire_exposure" } }, - [5836]={ + [5902]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies in your Presence have {0:+d}% to Fire Resistance" + } + }, + stats={ + [1]="enemies_in_presence_have_fire_resistance_%" + } + }, + [5903]={ [1]={ [1]={ limit={ @@ -128338,7 +130421,7 @@ return { [1]="enemies_in_presence_have_life_reserved_%" } }, - [5837]={ + [5904]={ [1]={ [1]={ limit={ @@ -128354,7 +130437,36 @@ return { [1]="enemies_in_presence_have_no_elemental_resistances" } }, - [5838]={ + [5905]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies in your Presence have {0}% increased Life Regeneration rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies in your Presence have {0}% reduced Life Regeneration rate" + } + }, + stats={ + [1]="enemies_in_presence_life_regeneration_+%" + } + }, + [5906]={ [1]={ [1]={ limit={ @@ -128370,7 +130482,7 @@ return { [1]="enemies_in_presence_lightning_resist_equal_to_yours" } }, - [5839]={ + [5907]={ [1]={ [1]={ limit={ @@ -128386,7 +130498,39 @@ return { [1]="enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [5840]={ + [5908]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies in your Presence cannot be Revived" + } + }, + stats={ + [1]="enemies_in_your_presence_cannot_be_revived" + } + }, + [5909]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies are Intimidated for {0} seconds when you Immobilise them" + } + }, + stats={ + [1]="enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted" + } + }, + [5910]={ [1]={ [1]={ limit={ @@ -128411,7 +130555,7 @@ return { [1]="enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance" } }, - [5841]={ + [5911]={ [1]={ [1]={ limit={ @@ -128427,7 +130571,7 @@ return { [1]="enemies_near_corpses_created_recently_are_shocked_and_chilled" } }, - [5842]={ + [5912]={ [1]={ [1]={ limit={ @@ -128443,7 +130587,7 @@ return { [1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage" } }, - [5843]={ + [5913]={ [1]={ [1]={ limit={ @@ -128459,7 +130603,7 @@ return { [1]="enemies_near_link_skill_target_have_exposure" } }, - [5844]={ + [5914]={ [1]={ [1]={ limit={ @@ -128475,7 +130619,7 @@ return { [1]="enemies_near_marked_enemy_are_blinded" } }, - [5845]={ + [5915]={ [1]={ [1]={ limit={ @@ -128491,7 +130635,7 @@ return { [1]="enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning" } }, - [5846]={ + [5916]={ [1]={ [1]={ limit={ @@ -128516,7 +130660,7 @@ return { [1]="enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage" } }, - [5847]={ + [5917]={ [1]={ [1]={ limit={ @@ -128532,7 +130676,7 @@ return { [1]="enemies_taunted_by_you_cannot_evade_attacks" } }, - [5848]={ + [5918]={ [1]={ [1]={ limit={ @@ -128548,7 +130692,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [5849]={ + [5919]={ [1]={ [1]={ limit={ @@ -128564,7 +130708,7 @@ return { [1]="enemies_taunted_by_your_warcries_are_unnerved" } }, - [5850]={ + [5920]={ [1]={ [1]={ limit={ @@ -128580,7 +130724,7 @@ return { [1]="enemies_that_hit_you_inflict_temporal_chains" } }, - [5851]={ + [5921]={ [1]={ [1]={ limit={ @@ -128609,7 +130753,7 @@ return { [1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%" } }, - [5852]={ + [5922]={ [1]={ [1]={ limit={ @@ -128638,7 +130782,7 @@ return { [1]="enemies_you_blind_have_critical_strike_chance_+%" } }, - [5853]={ + [5923]={ [1]={ [1]={ limit={ @@ -128654,7 +130798,7 @@ return { [1]="enemies_you_curse_are_intimidated" } }, - [5854]={ + [5924]={ [1]={ [1]={ limit={ @@ -128670,7 +130814,7 @@ return { [1]="enemies_you_curse_are_unnerved" } }, - [5855]={ + [5925]={ [1]={ [1]={ limit={ @@ -128686,7 +130830,7 @@ return { [1]="enemies_you_curse_cannot_recharge_energy_shield" } }, - [5856]={ + [5926]={ [1]={ [1]={ limit={ @@ -128702,7 +130846,7 @@ return { [1]="enemies_you_curse_have_15%_hinder" } }, - [5857]={ + [5927]={ [1]={ [1]={ limit={ @@ -128731,7 +130875,7 @@ return { [1]="enemies_you_expose_have_self_elemental_status_duration_+%" } }, - [5858]={ + [5928]={ [1]={ [1]={ limit={ @@ -128760,7 +130904,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [5859]={ + [5929]={ [1]={ [1]={ limit={ @@ -128776,7 +130920,7 @@ return { [1]="enemies_you_ignite_take_chaos_damage_from_ignite_instead" } }, - [5860]={ + [5930]={ [1]={ [1]={ limit={ @@ -128792,7 +130936,7 @@ return { [1]="enemies_you_ignite_wither_does_not_expire" } }, - [5861]={ + [5931]={ [1]={ [1]={ limit={ @@ -128821,7 +130965,7 @@ return { [1]="enemies_you_intimidate_have_stun_duration_on_self_+%" } }, - [5862]={ + [5932]={ [1]={ [1]={ limit={ @@ -128850,7 +130994,7 @@ return { [1]="enemies_you_maim_have_damage_taken_over_time_+%" } }, - [5863]={ + [5933]={ [1]={ [1]={ limit={ @@ -128879,7 +131023,7 @@ return { [1]="enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self" } }, - [5864]={ + [5934]={ [1]={ [1]={ limit={ @@ -128895,7 +131039,7 @@ return { [1]="enemies_you_wither_have_all_resistances_%" } }, - [5865]={ + [5935]={ [1]={ [1]={ limit={ @@ -128928,7 +131072,65 @@ return { [1]="enemy_evasion_+%_if_you_have_hit_them_recently" } }, - [5866]={ + [5936]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for Damage of Enemies Hitting you to be Unlucky" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% chance for Damage of Enemies Hitting you to be Lucky" + } + }, + stats={ + [1]="enemy_extra_damage_rolls_chance_%" + } + }, + [5937]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for Damage of Enemies Hitting you to be Unlucky" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% chance for Damage of Enemies Hitting you to be Lucky" + } + }, + stats={ + [1]="enemy_extra_damage_rolls_chance_%" + } + }, + [5938]={ [1]={ [1]={ limit={ @@ -128957,7 +131159,7 @@ return { [1]="enemy_extra_damage_rolls_if_magic_ring_equipped" } }, - [5867]={ + [5939]={ [1]={ [1]={ limit={ @@ -128986,7 +131188,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_full_life" } }, - [5868]={ + [5940]={ [1]={ [1]={ limit={ @@ -129002,7 +131204,7 @@ return { [1]="enemy_hits_against_you_have_distance_based_accuracy_falloff" } }, - [5869]={ + [5941]={ [1]={ [1]={ limit={ @@ -129035,7 +131237,7 @@ return { [1]="enemy_life_regeneration_rate_+%_for_4_seconds_on_hit" } }, - [5870]={ + [5942]={ [1]={ [1]={ limit={ @@ -129064,7 +131266,7 @@ return { [1]="enemy_spell_critical_strike_chance_+%_against_self" } }, - [5871]={ + [5943]={ [1]={ [1]={ limit={ @@ -129093,7 +131295,7 @@ return { [1]="energy_generated_+%" } }, - [5872]={ + [5944]={ [1]={ [1]={ limit={ @@ -129122,7 +131324,36 @@ return { [1]="ascendancy_energy_generated_+%_final" } }, - [5873]={ + [5945]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Meta Skills gain {0}% increased Energy if you've dealt a Critical Hit Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Meta Skills gain {0}% reduced Energy if you've dealt a Critical Hit Recently" + } + }, + stats={ + [1]="energy_generated_+%_if_crit_recently" + } + }, + [5946]={ [1]={ [1]={ limit={ @@ -129138,7 +131369,7 @@ return { [1]="energy_generation_is_doubled" } }, - [5874]={ + [5947]={ [1]={ [1]={ limit={ @@ -129167,7 +131398,7 @@ return { [1]="energy_shield_+%_if_both_rings_have_evasion_mod" } }, - [5875]={ + [5948]={ [1]={ [1]={ limit={ @@ -129196,7 +131427,7 @@ return { [1]="energy_shield_+%_if_consumed_power_charge_recently" } }, - [5876]={ + [5949]={ [1]={ [1]={ limit={ @@ -129205,14 +131436,14 @@ return { [2]="#" } }, - text="{0:+d} to Energy Shield per 8 Evasion on Equipped Boots" + text="{0:+d} to Energy Shield per 8 Item Evasion Rating on Equipped Boots" } }, stats={ [1]="energy_shield_+_per_8_evasion_on_boots" } }, - [5877]={ + [5950]={ [1]={ [1]={ limit={ @@ -129228,7 +131459,7 @@ return { [1]="energy_shield_additive_modifiers_instead_apply_to_ward" } }, - [5878]={ + [5951]={ [1]={ [1]={ limit={ @@ -129257,7 +131488,7 @@ return { [1]="energy_shield_delay_-%_if_stunned_recently" } }, - [5879]={ + [5952]={ [1]={ [1]={ limit={ @@ -129286,7 +131517,36 @@ return { [1]="energy_shield_delay_-%_when_not_on_full_life" } }, - [5880]={ + [5953]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% faster start of Energy Shield Recharge while affected by an Archon Buff" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% slower start of Energy Shield Recharge while affected by an Archon Buff" + } + }, + stats={ + [1]="energy_shield_delay_-%_while_affected_by_archon" + } + }, + [5954]={ [1]={ [1]={ limit={ @@ -129315,7 +131575,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_discipline" } }, - [5881]={ + [5955]={ [1]={ [1]={ limit={ @@ -129344,7 +131604,7 @@ return { [1]="energy_shield_from_focus_+%" } }, - [5882]={ + [5956]={ [1]={ [1]={ limit={ @@ -129373,7 +131633,7 @@ return { [1]="energy_shield_from_gloves_and_boots_+%" } }, - [5883]={ + [5957]={ [1]={ [1]={ limit={ @@ -129402,7 +131662,7 @@ return { [1]="energy_shield_from_helmet_+%" } }, - [5884]={ + [5958]={ [1]={ [1]={ limit={ @@ -129431,7 +131691,7 @@ return { [1]="energy_shield_gain_per_target_hit_while_affected_by_discipline" } }, - [5885]={ + [5959]={ [1]={ [1]={ limit={ @@ -129447,7 +131707,7 @@ return { [1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web" } }, - [5886]={ + [5960]={ [1]={ [1]={ limit={ @@ -129463,7 +131723,7 @@ return { [1]="energy_shield_increased_by_overcapped_cold_resistance" } }, - [5887]={ + [5961]={ [1]={ [1]={ [1]={ @@ -129483,7 +131743,7 @@ return { [1]="energy_shield_lost_per_minute_%" } }, - [5888]={ + [5962]={ [1]={ [1]={ limit={ @@ -129499,7 +131759,7 @@ return { [1]="energy_shield_per_level" } }, - [5889]={ + [5963]={ [1]={ [1]={ limit={ @@ -129515,7 +131775,7 @@ return { [1]="energy_shield_+%_per_10_strength" } }, - [5890]={ + [5964]={ [1]={ [1]={ limit={ @@ -129531,7 +131791,7 @@ return { [1]="energy_shield_+%_per_power_charge" } }, - [5891]={ + [5965]={ [1]={ [1]={ limit={ @@ -129560,7 +131820,7 @@ return { [1]="energy_shield_recharge_+%_if_amulet_has_evasion_mod" } }, - [5892]={ + [5966]={ [1]={ [1]={ [1]={ @@ -129593,7 +131853,168 @@ return { [1]="energy_shield_recharge_delay_override_ms" } }, - [5893]={ + [5967]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Energy Shield Recharge Rate if you haven't Dodge Rolled Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Energy Shield Recharge Rate if you haven't Dodge Rolled Recently" + } + }, + stats={ + [1]="energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently" + } + }, + [5968]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Energy Shield Recharge Rate per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Energy Shield Recharge Rate per 25 Tribute" + } + }, + stats={ + [1]="energy_shield_recharge_rate_+%_per_25_tribute" + } + }, + [5969]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Energy Shield Recharge Rate per 4 Dexterity" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Energy Shield Recharge Rate per 4 Dexterity" + } + }, + stats={ + [1]="energy_shield_recharge_rate_+%_per_4_dexterity" + } + }, + [5970]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Energy Shield Recharge Rate while affected by an Archon Buff" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Energy Shield Recharge Rate while affected by an Archon Buff" + } + }, + stats={ + [1]="energy_shield_recharge_rate_+%_while_affected_by_archon" + } + }, + [5971]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Energy Shield Recharge Rate if you've Blocked Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Energy Shield Recharge Rate if you've Blocked Recently" + } + }, + stats={ + [1]="energy_shield_recharge_rate_+%_if_blocked_recently" + } + }, + [5972]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Energy Shield Recharge starts when your Minions are Reformed" + } + }, + stats={ + [1]="energy_shield_recharge_start_when_minions_reform" + } + }, + [5973]={ [1]={ [1]={ limit={ @@ -129609,7 +132030,7 @@ return { [1]="energy_shield_recharge_start_when_stunned" } }, - [5894]={ + [5974]={ [1]={ [1]={ limit={ @@ -129625,7 +132046,7 @@ return { [1]="energy_shield_recharges_on_kill_%" } }, - [5895]={ + [5975]={ [1]={ [1]={ limit={ @@ -129641,7 +132062,7 @@ return { [1]="energy_shield_recharges_on_skill_use_chance_%" } }, - [5896]={ + [5976]={ [1]={ [1]={ limit={ @@ -129670,7 +132091,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_havent_killed_recently" } }, - [5897]={ + [5977]={ [1]={ [1]={ limit={ @@ -129699,7 +132120,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_not_hit_recently" } }, - [5898]={ + [5978]={ [1]={ [1]={ limit={ @@ -129728,7 +132149,7 @@ return { [1]="energy_shield_recovery_rate_while_affected_by_discipline_+%" } }, - [5899]={ + [5979]={ [1]={ [1]={ [1]={ @@ -129748,7 +132169,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently" } }, - [5900]={ + [5980]={ [1]={ [1]={ [1]={ @@ -129768,7 +132189,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_killed_recently" } }, - [5901]={ + [5981]={ [1]={ [1]={ [1]={ @@ -129788,7 +132209,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby" } }, - [5902]={ + [5982]={ [1]={ [1]={ [1]={ @@ -129808,7 +132229,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_per_poison_stack" } }, - [5903]={ + [5983]={ [1]={ [1]={ [1]={ @@ -129828,7 +132249,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently" } }, - [5904]={ + [5984]={ [1]={ [1]={ [1]={ @@ -129848,7 +132269,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline" } }, - [5905]={ + [5985]={ [1]={ [1]={ [1]={ @@ -129868,7 +132289,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [5906]={ + [5986]={ [1]={ [1]={ limit={ @@ -129884,7 +132305,7 @@ return { [1]="energy_shield_regeneration_rate_per_second" } }, - [5907]={ + [5987]={ [1]={ [1]={ limit={ @@ -129913,7 +132334,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [5908]={ + [5988]={ [1]={ [1]={ limit={ @@ -129929,7 +132350,7 @@ return { [1]="enfeeble_no_reservation" } }, - [5909]={ + [5989]={ [1]={ [1]={ limit={ @@ -129958,7 +132379,7 @@ return { [1]="ensnaring_arrow_area_of_effect_+%" } }, - [5910]={ + [5990]={ [1]={ [1]={ limit={ @@ -129987,7 +132408,7 @@ return { [1]="ensnaring_arrow_debuff_effect_+%" } }, - [5911]={ + [5991]={ [1]={ [1]={ limit={ @@ -130003,7 +132424,7 @@ return { [1]="envy_reserves_no_mana" } }, - [5912]={ + [5992]={ [1]={ [1]={ limit={ @@ -130019,7 +132440,7 @@ return { [1]="ephemeral_edge_maximum_lightning_damage_from_es_%" } }, - [5913]={ + [5993]={ [1]={ [1]={ limit={ @@ -130044,7 +132465,7 @@ return { [1]="equipped_jewellery_effect_of_bonuses_+%" } }, - [5914]={ + [5994]={ [1]={ [1]={ limit={ @@ -130069,7 +132490,7 @@ return { [1]="equipped_ring1_effect_of_bonuses_+%" } }, - [5915]={ + [5995]={ [1]={ [1]={ limit={ @@ -130094,7 +132515,7 @@ return { [1]="equipped_ring2_effect_of_bonuses_+%" } }, - [5916]={ + [5996]={ [1]={ [1]={ limit={ @@ -130119,7 +132540,7 @@ return { [1]="equipped_rings_effect_of_bonuses_+%" } }, - [5917]={ + [5997]={ [1]={ [1]={ [1]={ @@ -130139,7 +132560,23 @@ return { [1]="es_regeneration_per_minute_%_while_stationary" } }, - [5918]={ + [5998]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Bears the Mark of the Abyssal Lord" + } + }, + stats={ + [1]="essence_abyss_guaranteed_pick" + } + }, + [5999]={ [1]={ [1]={ limit={ @@ -130168,7 +132605,7 @@ return { [1]="essence_drain_soulrend_base_projectile_speed_+%" } }, - [5919]={ + [6000]={ [1]={ [1]={ limit={ @@ -130193,7 +132630,68 @@ return { [1]="essence_drain_soulrend_number_of_additional_projectiles" } }, - [5920]={ + [6001]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Strength, Dexterity or Intelligence" + } + }, + stats={ + [1]="essence_grants_additional_attributes" + } + }, + [6002]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Strength, Dexterity or Intelligence" + } + }, + stats={ + [1]="essence_grants_additional_attributes_increase" + } + }, + [6003]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour, Evasion or Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour, Evasion or Energy Shield" + } + }, + stats={ + [1]="essence_grants_defences_+%" + } + }, + [6004]={ [1]={ [1]={ [1]={ @@ -130244,7 +132742,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [5921]={ + [6005]={ [1]={ [1]={ limit={ @@ -130269,7 +132767,7 @@ return { [1]="ethereal_knives_number_of_additional_projectiles" } }, - [5922]={ + [6006]={ [1]={ [1]={ limit={ @@ -130294,7 +132792,7 @@ return { [1]="ethereal_knives_projectile_base_number_of_targets_to_pierce" } }, - [5923]={ + [6007]={ [1]={ [1]={ limit={ @@ -130310,7 +132808,7 @@ return { [1]="ethereal_knives_projectiles_nova" } }, - [5924]={ + [6008]={ [1]={ [1]={ limit={ @@ -130339,7 +132837,7 @@ return { [1]="evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds" } }, - [5925]={ + [6009]={ [1]={ [1]={ limit={ @@ -130368,7 +132866,7 @@ return { [1]="evasion_rating_+%_per_5_intelligence" } }, - [5926]={ + [6010]={ [1]={ [1]={ limit={ @@ -130384,7 +132882,7 @@ return { [1]="evasion_+%_per_10_intelligence" } }, - [5927]={ + [6011]={ [1]={ [1]={ limit={ @@ -130400,7 +132898,7 @@ return { [1]="evasion_rating_%_to_gain_as_ailment_threshold" } }, - [5928]={ + [6012]={ [1]={ [1]={ limit={ @@ -130416,7 +132914,7 @@ return { [1]="evasion_rating_+%_during_focus" } }, - [5929]={ + [6013]={ [1]={ [1]={ limit={ @@ -130445,7 +132943,94 @@ return { [1]="evasion_rating_+%_if_consumed_frenzy_charge_recently" } }, - [5930]={ + [6014]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Evasion Rating if you haven't Dodge Rolled Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Evasion Rating if you haven't Dodge Rolled Recently" + } + }, + stats={ + [1]="evasion_rating_+%_if_not_dodge_rolled_recently" + } + }, + [6015]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Evasion Rating while Sprinting" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Evasion Rating while Sprinting" + } + }, + stats={ + [1]="evasion_rating_+%_if_sprinting" + } + }, + [6016]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Evasion Rating per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Evasion Rating per 10 Tribute" + } + }, + stats={ + [1]="evasion_rating_+%_per_10_tribute" + } + }, + [6017]={ [1]={ [1]={ limit={ @@ -130461,7 +133046,7 @@ return { [1]="evasion_rating_+%_per_500_maximum_mana_up_to_100%" } }, - [5931]={ + [6018]={ [1]={ [1]={ limit={ @@ -130490,7 +133075,7 @@ return { [1]="evasion_rating_+%_while_surrounded" } }, - [5932]={ + [6019]={ [1]={ [1]={ limit={ @@ -130506,7 +133091,7 @@ return { [1]="evasion_rating_+_per_1_armour_on_gloves" } }, - [5933]={ + [6020]={ [1]={ [1]={ limit={ @@ -130522,7 +133107,7 @@ return { [1]="evasion_rating_also_reduces_physical_damage" } }, - [5934]={ + [6021]={ [1]={ [1]={ limit={ @@ -130551,7 +133136,7 @@ return { [1]="evasion_rating_from_helmet_and_boots_+%" } }, - [5935]={ + [6022]={ [1]={ [1]={ limit={ @@ -130567,7 +133152,7 @@ return { [1]="evasion_rating_increased_by_overcapped_cold_resistance" } }, - [5936]={ + [6023]={ [1]={ [1]={ limit={ @@ -130583,7 +133168,7 @@ return { [1]="evasion_rating_increased_by_overcapped_lightning_resistance" } }, - [5937]={ + [6024]={ [1]={ [1]={ [1]={ @@ -130603,7 +133188,7 @@ return { [1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus" } }, - [5938]={ + [6025]={ [1]={ [1]={ limit={ @@ -130619,7 +133204,7 @@ return { [1]="evasion_rating_%_to_gain_as_armour" } }, - [5939]={ + [6026]={ [1]={ [1]={ limit={ @@ -130635,7 +133220,7 @@ return { [1]="evasion_rating_+_if_you_have_hit_an_enemy_recently" } }, - [5940]={ + [6027]={ [1]={ [1]={ limit={ @@ -130664,7 +133249,7 @@ return { [1]="evasion_rating_+_while_phasing" } }, - [5941]={ + [6028]={ [1]={ [1]={ limit={ @@ -130680,7 +133265,7 @@ return { [1]="evasion_rating_+_while_you_have_tailwind" } }, - [5942]={ + [6029]={ [1]={ [1]={ limit={ @@ -130709,7 +133294,7 @@ return { [1]="evasion_rating_+%_if_have_cast_dash_recently" } }, - [5943]={ + [6030]={ [1]={ [1]={ [1]={ @@ -130738,7 +133323,7 @@ return { [1]="evasion_rating_+%_if_have_not_been_hit_recently" } }, - [5944]={ + [6031]={ [1]={ [1]={ limit={ @@ -130767,7 +133352,7 @@ return { [1]="evasion_rating_+%_if_you_dodge_rolled_recently" } }, - [5945]={ + [6032]={ [1]={ [1]={ limit={ @@ -130776,7 +133361,7 @@ return { [2]="#" } }, - text="{0}% increased Evasion if you have Hit an Enemy Recently" + text="{0}% increased Evasion Rating if you have Hit an Enemy Recently" }, [2]={ [1]={ @@ -130789,14 +133374,14 @@ return { [2]=-1 } }, - text="{0}% reduced Evasion if you have Hit an Enemy Recently" + text="{0}% reduced Evasion Rating if you have Hit an Enemy Recently" } }, stats={ [1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently" } }, - [5946]={ + [6033]={ [1]={ [1]={ limit={ @@ -130825,7 +133410,7 @@ return { [1]="evasion_rating_+%_per_green_socket_on_main_hand_weapon" } }, - [5947]={ + [6034]={ [1]={ [1]={ limit={ @@ -130854,7 +133439,7 @@ return { [1]="evasion_rating_+%_when_on_full_life" } }, - [5948]={ + [6035]={ [1]={ [1]={ limit={ @@ -130883,7 +133468,7 @@ return { [1]="evasion_rating_+%_while_leeching" } }, - [5949]={ + [6036]={ [1]={ [1]={ limit={ @@ -130912,7 +133497,7 @@ return { [1]="evasion_rating_+%_while_moving" } }, - [5950]={ + [6037]={ [1]={ [1]={ limit={ @@ -130941,7 +133526,7 @@ return { [1]="evasion_rating_+%_while_you_have_energy_shield" } }, - [5951]={ + [6038]={ [1]={ [1]={ limit={ @@ -130957,7 +133542,7 @@ return { [1]="every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second" } }, - [5952]={ + [6039]={ [1]={ [1]={ limit={ @@ -130982,7 +133567,7 @@ return { [1]="exerted_attack_knockback_chance_%" } }, - [5953]={ + [6040]={ [1]={ [1]={ limit={ @@ -130998,7 +133583,7 @@ return { [1]="exerted_attacks_overwhelm_%_physical_damage_reduction" } }, - [5954]={ + [6041]={ [1]={ [1]={ limit={ @@ -131014,7 +133599,7 @@ return { [1]="expanding_fire_cone_additional_maximum_number_of_stages" } }, - [5955]={ + [6042]={ [1]={ [1]={ limit={ @@ -131043,7 +133628,7 @@ return { [1]="expanding_fire_cone_area_of_effect_+%" } }, - [5956]={ + [6043]={ [1]={ [1]={ limit={ @@ -131072,7 +133657,7 @@ return { [1]="expedition_chest_logbook_chance_%" } }, - [5957]={ + [6044]={ [1]={ [1]={ limit={ @@ -131097,7 +133682,7 @@ return { [1]="expedition_monsters_logbook_chance_+%" } }, - [5958]={ + [6045]={ [1]={ [1]={ limit={ @@ -131106,14 +133691,77 @@ return { [2]="#" } }, - text="Burning Enemies you kill have a {0}% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + text="Burning Enemies you kill have a {0}% chance to Explode, dealing a\ntenth of their maximum Life as Fire Damage" } }, stats={ [1]="explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [5959]={ + [6046]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Cursed Enemies you Kill have a {0}% chance to Explode, dealing a quarter of their maximum Life as Physical Damage" + }, + [2]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Cursed Enemies Killed by Allies in your Presence have a {1}% chance to Explode, dealing a quarter of their maximum Life as Physical Damage" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Cursed Enemies Killed by you, or by Allies in your Presence, have a {0}% chance to Explode, dealing a quarter of their maximum Life as Physical Damage" + } + }, + stats={ + [1]="explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%", + [2]="allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%" + } + }, + [6047]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies you kill with Empowered Attacks have a {0}% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + stats={ + [1]="explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%" + } + }, + [6048]={ [1]={ [1]={ limit={ @@ -131129,7 +133777,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride" } }, - [5960]={ + [6049]={ [1]={ [1]={ limit={ @@ -131145,7 +133793,7 @@ return { [1]="explode_enemies_for_500%_life_as_fire_on_kill_%_chance" } }, - [5961]={ + [6050]={ [1]={ [1]={ limit={ @@ -131174,7 +133822,7 @@ return { [1]="explosive_arrow_duration_+%" } }, - [5962]={ + [6051]={ [1]={ [1]={ limit={ @@ -131203,7 +133851,7 @@ return { [1]="explosive_concoction_damage_+%" } }, - [5963]={ + [6052]={ [1]={ [1]={ limit={ @@ -131232,7 +133880,7 @@ return { [1]="explosive_concoction_flask_charges_consumed_+%" } }, - [5964]={ + [6053]={ [1]={ [1]={ limit={ @@ -131261,7 +133909,7 @@ return { [1]="explosive_concoction_skill_area_of_effect_+%" } }, - [5965]={ + [6054]={ [1]={ [1]={ limit={ @@ -131290,7 +133938,7 @@ return { [1]="exposure_effect_+%_if_fire_cold_lightning_infusion" } }, - [5966]={ + [6055]={ [1]={ [1]={ limit={ @@ -131319,7 +133967,7 @@ return { [1]="exposure_effect_on_you_+%" } }, - [5967]={ + [6056]={ [1]={ [1]={ limit={ @@ -131345,10 +133993,10 @@ return { } }, stats={ - [1]="support_exposure_effect_+%" + [1]="exposure_effect_+%" } }, - [5968]={ + [6057]={ [1]={ [1]={ limit={ @@ -131357,14 +134005,14 @@ return { [2]="#" } }, - text="Exposure you inflict lowers the affected Resistance by an additional {0}%" + text="Exposure you inflict lowers Resistances by an additional {0}%" } }, stats={ [1]="exposure_you_inflict_lowers_affected_resistance_by_extra_%" } }, - [5969]={ + [6058]={ [1]={ [1]={ limit={ @@ -131380,7 +134028,7 @@ return { [1]="exsanguinate_additional_chain_chance_%" } }, - [5970]={ + [6059]={ [1]={ [1]={ limit={ @@ -131409,7 +134057,7 @@ return { [1]="exsanguinate_damage_+%" } }, - [5971]={ + [6060]={ [1]={ [1]={ limit={ @@ -131425,7 +134073,7 @@ return { [1]="exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [5972]={ + [6061]={ [1]={ [1]={ limit={ @@ -131454,7 +134102,7 @@ return { [1]="exsanguinate_duration_+%" } }, - [5973]={ + [6062]={ [1]={ [1]={ limit={ @@ -131470,7 +134118,7 @@ return { [1]="extinguish_on_hit_%_chance" } }, - [5974]={ + [6063]={ [1]={ [1]={ limit={ @@ -131495,7 +134143,7 @@ return { [1]="extra_critical_rolls_during_focus" } }, - [5975]={ + [6064]={ [1]={ [1]={ limit={ @@ -131520,7 +134168,7 @@ return { [1]="extra_critical_rolls_while_on_low_life" } }, - [5976]={ + [6065]={ [1]={ [1]={ limit={ @@ -131536,7 +134184,7 @@ return { [1]="extra_damage_rolls_with_lightning_damage_on_non_critical_hits" } }, - [5977]={ + [6066]={ [1]={ [1]={ limit={ @@ -131569,7 +134217,7 @@ return { [1]="extra_damage_taken_from_crit_+%_while_affected_by_determination" } }, - [5978]={ + [6067]={ [1]={ [1]={ limit={ @@ -131602,7 +134250,7 @@ return { [1]="extra_damage_taken_from_crit_while_no_power_charges_+%" } }, - [5979]={ + [6068]={ [1]={ [1]={ limit={ @@ -131618,7 +134266,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [5980]={ + [6069]={ [1]={ [1]={ limit={ @@ -131647,7 +134295,7 @@ return { [1]="eye_of_winter_damage_+%" } }, - [5981]={ + [6070]={ [1]={ [1]={ limit={ @@ -131676,7 +134324,7 @@ return { [1]="eye_of_winter_projectile_speed_+%" } }, - [5982]={ + [6071]={ [1]={ [1]={ limit={ @@ -131705,7 +134353,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [5983]={ + [6072]={ [1]={ [1]={ limit={ @@ -131721,7 +134369,7 @@ return { [1]="faster_bleed_per_frenzy_charge_%" } }, - [5984]={ + [6073]={ [1]={ [1]={ limit={ @@ -131737,7 +134385,7 @@ return { [1]="faster_bleed_%" } }, - [5985]={ + [6074]={ [1]={ [1]={ limit={ @@ -131753,7 +134401,7 @@ return { [1]="faster_poison_%" } }, - [5986]={ + [6075]={ [1]={ [1]={ limit={ @@ -131782,7 +134430,7 @@ return { [1]="final_repeat_of_spells_area_of_effect_+%" } }, - [5987]={ + [6076]={ [1]={ [1]={ limit={ @@ -131811,7 +134459,7 @@ return { [1]="fire_ailment_duration_+%" } }, - [5988]={ + [6077]={ [1]={ [1]={ limit={ @@ -131827,7 +134475,7 @@ return { [1]="fire_and_chaos_damage_resistance_%" } }, - [5989]={ + [6078]={ [1]={ [1]={ limit={ @@ -131843,7 +134491,7 @@ return { [1]="fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning" } }, - [5990]={ + [6079]={ [1]={ [1]={ limit={ @@ -131868,7 +134516,7 @@ return { [1]="fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined" } }, - [5991]={ + [6080]={ [1]={ [1]={ limit={ @@ -131884,7 +134532,7 @@ return { [1]="fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice" } }, - [5992]={ + [6081]={ [1]={ [1]={ limit={ @@ -131913,7 +134561,7 @@ return { [1]="fire_beam_cast_speed_+%" } }, - [5993]={ + [6082]={ [1]={ [1]={ limit={ @@ -131942,7 +134590,7 @@ return { [1]="fire_beam_damage_+%" } }, - [5994]={ + [6083]={ [1]={ [1]={ limit={ @@ -131958,7 +134606,7 @@ return { [1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill" } }, - [5995]={ + [6084]={ [1]={ [1]={ limit={ @@ -131974,7 +134622,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_at_max_stacks" } }, - [5996]={ + [6085]={ [1]={ [1]={ limit={ @@ -131990,7 +134638,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [5997]={ + [6086]={ [1]={ [1]={ limit={ @@ -132019,7 +134667,52 @@ return { [1]="fire_beam_length_+%" } }, - [5998]={ + [6087]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Fire Damage per 10% of target's Armour that is Broken" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Fire Damage per 10% of target's Armour that is Broken" + } + }, + stats={ + [1]="fire_damage_+%_per_10%_armour_break" + } + }, + [6088]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Fire Damage while Ignited" + } + }, + stats={ + [1]="fire_damage_+%_while_ignited" + } + }, + [6089]={ [1]={ [1]={ limit={ @@ -132035,7 +134728,7 @@ return { [1]="fire_damage_over_time_multiplier_+%_while_burning" } }, - [5999]={ + [6090]={ [1]={ [1]={ limit={ @@ -132064,7 +134757,7 @@ return { [1]="fire_damage_+%_if_you_have_been_hit_recently" } }, - [6000]={ + [6091]={ [1]={ [1]={ limit={ @@ -132093,7 +134786,7 @@ return { [1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently" } }, - [6001]={ + [6092]={ [1]={ [1]={ limit={ @@ -132122,7 +134815,7 @@ return { [1]="fire_damage_+%_per_20_strength" } }, - [6002]={ + [6093]={ [1]={ [1]={ limit={ @@ -132151,7 +134844,7 @@ return { [1]="fire_damage_+%_per_endurance_charge" } }, - [6003]={ + [6094]={ [1]={ [1]={ limit={ @@ -132180,7 +134873,7 @@ return { [1]="fire_damage_+%_per_missing_fire_resistance" } }, - [6004]={ + [6095]={ [1]={ [1]={ limit={ @@ -132209,7 +134902,7 @@ return { [1]="fire_damage_+%_vs_bleeding_enemies" } }, - [6005]={ + [6096]={ [1]={ [1]={ limit={ @@ -132238,7 +134931,7 @@ return { [1]="fire_damage_+%_while_affected_by_anger" } }, - [6006]={ + [6097]={ [1]={ [1]={ limit={ @@ -132267,7 +134960,7 @@ return { [1]="fire_damage_+%_while_affected_by_herald_of_ash" } }, - [6007]={ + [6098]={ [1]={ [1]={ limit={ @@ -132283,7 +134976,7 @@ return { [1]="fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [6008]={ + [6099]={ [1]={ [1]={ limit={ @@ -132299,7 +134992,7 @@ return { [1]="fire_damage_taken_goes_to_life_over_4_seconds_%" } }, - [6009]={ + [6100]={ [1]={ [1]={ limit={ @@ -132315,7 +135008,7 @@ return { [1]="fire_damage_taken_per_second_while_flame_touched" } }, - [6010]={ + [6101]={ [1]={ [1]={ limit={ @@ -132344,7 +135037,7 @@ return { [1]="fire_damage_taken_+%_while_moving" } }, - [6011]={ + [6102]={ [1]={ [1]={ limit={ @@ -132360,7 +135053,7 @@ return { [1]="fire_damage_taken_when_enemy_ignited" } }, - [6012]={ + [6103]={ [1]={ [1]={ limit={ @@ -132376,7 +135069,7 @@ return { [1]="fire_damage_to_return_on_block" } }, - [6013]={ + [6104]={ [1]={ [1]={ limit={ @@ -132405,7 +135098,7 @@ return { [1]="fire_damage_with_attack_skills_+%" } }, - [6014]={ + [6105]={ [1]={ [1]={ limit={ @@ -132434,7 +135127,7 @@ return { [1]="fire_damage_with_spell_skills_+%" } }, - [6015]={ + [6106]={ [1]={ [1]={ limit={ @@ -132463,7 +135156,7 @@ return { [1]="fire_exposure_effect_+%" } }, - [6016]={ + [6107]={ [1]={ [1]={ limit={ @@ -132488,7 +135181,7 @@ return { [1]="fire_exposure_on_hit_magnitude" } }, - [6017]={ + [6108]={ [1]={ [1]={ limit={ @@ -132504,7 +135197,7 @@ return { [1]="fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%" } }, - [6018]={ + [6109]={ [1]={ [1]={ limit={ @@ -132520,7 +135213,7 @@ return { [1]="fire_hit_and_dot_damage_%_taken_as_lightning" } }, - [6019]={ + [6110]={ [1]={ [1]={ limit={ @@ -132536,7 +135229,7 @@ return { [1]="fire_penetration_%_if_you_have_blocked_recently" } }, - [6020]={ + [6111]={ [1]={ [1]={ limit={ @@ -132565,7 +135258,7 @@ return { [1]="fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire" } }, - [6021]={ + [6112]={ [1]={ [1]={ limit={ @@ -132581,7 +135274,7 @@ return { [1]="fire_resist_unaffected_by_area_penalties" } }, - [6022]={ + [6113]={ [1]={ [1]={ limit={ @@ -132597,7 +135290,7 @@ return { [1]="fire_skill_chance_to_inflict_fire_exposure_%" } }, - [6023]={ + [6114]={ [1]={ [1]={ limit={ @@ -132613,7 +135306,7 @@ return { [1]="fire_skill_gem_level_+" } }, - [6024]={ + [6115]={ [1]={ [1]={ limit={ @@ -132629,7 +135322,7 @@ return { [1]="fire_skills_chance_to_poison_on_hit_%" } }, - [6025]={ + [6116]={ [1]={ [1]={ limit={ @@ -132658,7 +135351,7 @@ return { [1]="fire_trap_burning_ground_duration_+%" } }, - [6026]={ + [6117]={ [1]={ [1]={ limit={ @@ -132683,7 +135376,7 @@ return { [1]="fire_trap_number_of_additional_traps_to_throw" } }, - [6027]={ + [6118]={ [1]={ [1]={ limit={ @@ -132712,7 +135405,7 @@ return { [1]="fireball_and_rolling_magma_active_skill_area_of_effect_+%_final" } }, - [6028]={ + [6119]={ [1]={ [1]={ limit={ @@ -132728,7 +135421,7 @@ return { [1]="fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply" } }, - [6029]={ + [6120]={ [1]={ [1]={ limit={ @@ -132744,7 +135437,7 @@ return { [1]="fireball_cannot_ignite" } }, - [6030]={ + [6121]={ [1]={ [1]={ limit={ @@ -132760,7 +135453,7 @@ return { [1]="fireball_chance_to_scorch_%" } }, - [6031]={ + [6122]={ [1]={ [1]={ limit={ @@ -132776,7 +135469,7 @@ return { [1]="firestorm_and_bladefall_chance_to_replay_when_finished_%" } }, - [6032]={ + [6123]={ [1]={ [1]={ limit={ @@ -132801,7 +135494,7 @@ return { [1]="first_X_minions_have_0_base_spirit_reservation" } }, - [6033]={ + [6124]={ [1]={ [1]={ limit={ @@ -132817,7 +135510,7 @@ return { [1]="fish_rot_when_caught" } }, - [6034]={ + [6125]={ [1]={ [1]={ limit={ @@ -132833,7 +135526,7 @@ return { [1]="fishing_bestiary_lures_at_fishing_holes" } }, - [6035]={ + [6126]={ [1]={ [1]={ limit={ @@ -132849,7 +135542,7 @@ return { [1]="fishing_can_catch_divine_fish" } }, - [6036]={ + [6127]={ [1]={ [1]={ limit={ @@ -132878,7 +135571,7 @@ return { [1]="fishing_chance_to_catch_boots_+%" } }, - [6037]={ + [6128]={ [1]={ [1]={ limit={ @@ -132907,7 +135600,7 @@ return { [1]="fishing_chance_to_catch_divine_orb_+%" } }, - [6038]={ + [6129]={ [1]={ [1]={ limit={ @@ -132932,7 +135625,7 @@ return { [1]="fishing_corrupted_fish_cleansed_chance_%" } }, - [6039]={ + [6130]={ [1]={ [1]={ limit={ @@ -132948,7 +135641,7 @@ return { [1]="fishing_fish_always_tell_truth_with_this_rod" } }, - [6040]={ + [6131]={ [1]={ [1]={ limit={ @@ -132964,7 +135657,7 @@ return { [1]="fishing_ghastly_fisherman_cannot_spawn" } }, - [6041]={ + [6132]={ [1]={ [1]={ limit={ @@ -132980,7 +135673,7 @@ return { [1]="fishing_ghastly_fisherman_spawns_behind_you" } }, - [6042]={ + [6133]={ [1]={ [1]={ limit={ @@ -133009,7 +135702,7 @@ return { [1]="fishing_krillson_affection_per_fish_gifted_+%" } }, - [6043]={ + [6134]={ [1]={ [1]={ limit={ @@ -133038,7 +135731,7 @@ return { [1]="fishing_life_of_fish_with_this_rod_+%" } }, - [6044]={ + [6135]={ [1]={ [1]={ limit={ @@ -133054,7 +135747,7 @@ return { [1]="fishing_magmatic_fish_are_cooked" } }, - [6045]={ + [6136]={ [1]={ [1]={ limit={ @@ -133083,7 +135776,7 @@ return { [1]="fishing_molten_one_confusion_+%_per_fish_gifted" } }, - [6046]={ + [6137]={ [1]={ [1]={ limit={ @@ -133112,7 +135805,7 @@ return { [1]="fishing_reeling_stability_+%" } }, - [6047]={ + [6138]={ [1]={ [1]={ limit={ @@ -133141,7 +135834,7 @@ return { [1]="fishing_tasalio_ire_per_fish_caught_+%" } }, - [6048]={ + [6139]={ [1]={ [1]={ limit={ @@ -133170,7 +135863,7 @@ return { [1]="fishing_valako_aid_per_stormy_day_+%" } }, - [6049]={ + [6140]={ [1]={ [1]={ limit={ @@ -133199,7 +135892,7 @@ return { [1]="fishing_wish_effect_of_ancient_fish_+%" } }, - [6050]={ + [6141]={ [1]={ [1]={ limit={ @@ -133215,7 +135908,7 @@ return { [1]="fishing_wish_per_fish_+" } }, - [6051]={ + [6142]={ [1]={ [1]={ limit={ @@ -133244,7 +135937,7 @@ return { [1]="flame_link_duration_+%" } }, - [6052]={ + [6143]={ [1]={ [1]={ limit={ @@ -133273,7 +135966,7 @@ return { [1]="flame_totem_consecrated_ground_enemy_damage_taken_+%" } }, - [6053]={ + [6144]={ [1]={ [1]={ limit={ @@ -133302,7 +135995,7 @@ return { [1]="flame_wall_damage_+%" } }, - [6054]={ + [6145]={ [1]={ [1]={ limit={ @@ -133323,7 +136016,7 @@ return { [2]="flame_wall_maximum_added_fire_damage" } }, - [6055]={ + [6146]={ [1]={ [1]={ limit={ @@ -133339,7 +136032,7 @@ return { [1]="flame_wall_projectiles_gain_all_damage_%_as_fire" } }, - [6056]={ + [6147]={ [1]={ [1]={ [1]={ @@ -133372,7 +136065,7 @@ return { [1]="flameblast_and_incinerate_base_cooldown_modifier_ms" } }, - [6057]={ + [6148]={ [1]={ [1]={ limit={ @@ -133388,7 +136081,7 @@ return { [1]="flameblast_and_incinerate_cannot_inflict_elemental_ailments" } }, - [6058]={ + [6149]={ [1]={ [1]={ limit={ @@ -133417,7 +136110,7 @@ return { [1]="flameblast_cast_speed_+%_final_when_targeting_solar_orb" } }, - [6059]={ + [6150]={ [1]={ [1]={ limit={ @@ -133433,7 +136126,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [6060]={ + [6151]={ [1]={ [1]={ limit={ @@ -133462,7 +136155,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%" } }, - [6061]={ + [6152]={ [1]={ [1]={ limit={ @@ -133505,7 +136198,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count" } }, - [6062]={ + [6153]={ [1]={ [1]={ limit={ @@ -133534,7 +136227,7 @@ return { [1]="flamethrower_tower_trap_cast_speed_+%" } }, - [6063]={ + [6154]={ [1]={ [1]={ limit={ @@ -133563,7 +136256,7 @@ return { [1]="flamethrower_tower_trap_cooldown_speed_+%" } }, - [6064]={ + [6155]={ [1]={ [1]={ limit={ @@ -133592,7 +136285,7 @@ return { [1]="flamethrower_tower_trap_damage_+%" } }, - [6065]={ + [6156]={ [1]={ [1]={ limit={ @@ -133621,7 +136314,7 @@ return { [1]="flamethrower_tower_trap_duration_+%" } }, - [6066]={ + [6157]={ [1]={ [1]={ limit={ @@ -133646,7 +136339,7 @@ return { [1]="flamethrower_tower_trap_number_of_additional_flamethrowers" } }, - [6067]={ + [6158]={ [1]={ [1]={ limit={ @@ -133675,7 +136368,7 @@ return { [1]="flamethrower_tower_trap_throwing_speed_+%" } }, - [6068]={ + [6159]={ [1]={ [1]={ limit={ @@ -133704,7 +136397,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [6069]={ + [6160]={ [1]={ [1]={ limit={ @@ -133720,7 +136413,7 @@ return { [1]="flammability_no_reservation" } }, - [6070]={ + [6161]={ [1]={ [1]={ limit={ @@ -133736,7 +136429,7 @@ return { [1]="flask_charge_recovery_is_doubled" } }, - [6071]={ + [6162]={ [1]={ [1]={ limit={ @@ -133765,7 +136458,7 @@ return { [1]="flask_charges_gained_+%_if_crit_recently" } }, - [6072]={ + [6163]={ [1]={ [1]={ limit={ @@ -133794,7 +136487,7 @@ return { [1]="flask_charges_gained_from_kills_+%_final_from_unique" } }, - [6073]={ + [6164]={ [1]={ [1]={ limit={ @@ -133823,7 +136516,7 @@ return { [1]="flask_charges_gained_from_marked_enemy_+%" } }, - [6074]={ + [6165]={ [1]={ [1]={ limit={ @@ -133852,7 +136545,36 @@ return { [1]="flask_charges_gained_+%" } }, - [6075]={ + [6166]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Flask Effect Duration per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Flask Effect Duration per 25 Tribute" + } + }, + stats={ + [1]="flask_duration_+%_per_25_tribute" + } + }, + [6167]={ [1]={ [1]={ limit={ @@ -133881,7 +136603,36 @@ return { [1]="flask_life_and_mana_recovery_+%_while_using_charm" } }, - [6076]={ + [6168]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Life and Mana Recovery from Flasks per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Life and Mana Recovery from Flasks per 10 Tribute" + } + }, + stats={ + [1]="flask_life_and_mana_to_recover_+%_per_10_tribute" + } + }, + [6169]={ [1]={ [1]={ limit={ @@ -133910,7 +136661,7 @@ return { [1]="flask_life_and_mana_to_recover_+%" } }, - [6077]={ + [6170]={ [1]={ [1]={ limit={ @@ -133939,7 +136690,7 @@ return { [1]="flask_life_recovery_+%_while_affected_by_vitality" } }, - [6078]={ + [6171]={ [1]={ [1]={ limit={ @@ -133955,7 +136706,7 @@ return { [1]="flask_recovery_amount_%_to_recover_instantly" } }, - [6079]={ + [6172]={ [1]={ [1]={ limit={ @@ -133971,7 +136722,7 @@ return { [1]="flask_recovery_is_instant" } }, - [6080]={ + [6173]={ [1]={ [1]={ limit={ @@ -133987,7 +136738,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [6081]={ + [6174]={ [1]={ [1]={ limit={ @@ -134003,7 +136754,7 @@ return { [1]="flasks_apply_to_your_linked_targets" } }, - [6082]={ + [6175]={ [1]={ [1]={ limit={ @@ -134019,7 +136770,7 @@ return { [1]="flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique" } }, - [6083]={ + [6176]={ [1]={ [1]={ limit={ @@ -134035,7 +136786,7 @@ return { [1]="flasks_gain_x_charges_while_inactive_every_3_seconds" } }, - [6084]={ + [6177]={ [1]={ [1]={ limit={ @@ -134064,7 +136815,7 @@ return { [1]="flesh_and_stone_area_of_effect_+%" } }, - [6085]={ + [6178]={ [1]={ [1]={ [1]={ @@ -134101,7 +136852,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_-2%_per_1" } }, - [6086]={ + [6179]={ [1]={ [1]={ limit={ @@ -134130,7 +136881,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_+%" } }, - [6087]={ + [6180]={ [1]={ [1]={ limit={ @@ -134146,7 +136897,7 @@ return { [1]="flesh_stone_no_reservation" } }, - [6088]={ + [6181]={ [1]={ [1]={ limit={ @@ -134162,7 +136913,7 @@ return { [1]="focus_cooldown_modifier_ms" } }, - [6089]={ + [6182]={ [1]={ [1]={ limit={ @@ -134191,7 +136942,7 @@ return { [1]="focus_cooldown_speed_+%" } }, - [6090]={ + [6183]={ [1]={ [1]={ [1]={ @@ -134211,7 +136962,7 @@ return { [1]="focus_decay_%_per_minute" } }, - [6091]={ + [6184]={ [1]={ [1]={ limit={ @@ -134227,7 +136978,7 @@ return { [1]="forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable" } }, - [6092]={ + [6185]={ [1]={ [1]={ limit={ @@ -134256,7 +137007,7 @@ return { [1]="forbidden_rite_damage_+%" } }, - [6093]={ + [6186]={ [1]={ [1]={ limit={ @@ -134281,7 +137032,7 @@ return { [1]="forbidden_rite_number_of_additional_projectiles" } }, - [6094]={ + [6187]={ [1]={ [1]={ limit={ @@ -134310,7 +137061,7 @@ return { [1]="forbidden_rite_projectile_speed_+%" } }, - [6095]={ + [6188]={ [1]={ [1]={ limit={ @@ -134339,7 +137090,7 @@ return { [1]="forking_angle_+%" } }, - [6096]={ + [6189]={ [1]={ [1]={ limit={ @@ -134368,7 +137119,7 @@ return { [1]="fortification_gained_from_hits_+%" } }, - [6097]={ + [6190]={ [1]={ [1]={ limit={ @@ -134397,7 +137148,7 @@ return { [1]="fortification_gained_from_hits_+%_against_unique_enemies" } }, - [6098]={ + [6191]={ [1]={ [1]={ limit={ @@ -134426,7 +137177,7 @@ return { [1]="fortify_duration_+%_per_10_strength" } }, - [6099]={ + [6192]={ [1]={ [1]={ limit={ @@ -134442,7 +137193,7 @@ return { [1]="fortify_on_hit" } }, - [6100]={ + [6193]={ [1]={ [1]={ limit={ @@ -134451,7 +137202,7 @@ return { [2]="#" } }, - text="Freeze Chilled Enemies as though dealing {0}% more Damage" + text="{0}% more damage with Hits for explosions originating from a Unique enemy" }, [2]={ [1]={ @@ -134464,30 +137215,14 @@ return { [2]=-1 } }, - text="Freeze Chilled Enemies as though dealing {0}% less Damage" - } - }, - stats={ - [1]="freeze_chilled_enemies_as_though_dealt_damage_+%" - } - }, - [6101]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Freeze as though dealing Cold damage equal to {0}% of your maximum Mana when Hit" + text="{0}% less damage with Hits for explosions originating from a Unique enemy" } }, stats={ - [1]="freeze_damage_equal_to_%_of_maximum_mana_to_return_when_hit" + [1]="frag_rounds_damage_+%_final_if_created_from_unique" } }, - [6102]={ + [6194]={ [1]={ [1]={ limit={ @@ -134516,7 +137251,7 @@ return { [1]="freeze_duration_against_cursed_enemies_+%" } }, - [6103]={ + [6195]={ [1]={ [1]={ [1]={ @@ -134536,7 +137271,7 @@ return { [1]="base_freezing_enemy_chills_enemies_in_radius" } }, - [6104]={ + [6196]={ [1]={ [1]={ limit={ @@ -134552,7 +137287,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_all_damage_can_poison" } }, - [6105]={ + [6197]={ [1]={ [1]={ limit={ @@ -134581,7 +137316,7 @@ return { [1]="freezing_pulse_damage_+%_if_enemy_shattered_recently" } }, - [6106]={ + [6198]={ [1]={ [1]={ limit={ @@ -134606,7 +137341,7 @@ return { [1]="freezing_pulse_number_of_additional_projectiles" } }, - [6107]={ + [6199]={ [1]={ [1]={ [1]={ @@ -134626,7 +137361,7 @@ return { [1]="frenzy_and_power_charge_add_duration_ms_on_cull" } }, - [6108]={ + [6200]={ [1]={ [1]={ limit={ @@ -134642,7 +137377,7 @@ return { [1]="frenzy_charge_on_hit_%_vs_no_evasion_rating" } }, - [6109]={ + [6201]={ [1]={ [1]={ limit={ @@ -134658,7 +137393,7 @@ return { [1]="frenzy_charge_on_kill_percent_chance_while_holding_shield" } }, - [6110]={ + [6202]={ [1]={ [1]={ limit={ @@ -134674,7 +137409,7 @@ return { [1]="frost_blades_melee_damage_penetrates_%_cold_resistance" } }, - [6111]={ + [6203]={ [1]={ [1]={ limit={ @@ -134703,7 +137438,7 @@ return { [1]="frost_bolt_nova_cooldown_speed_+%" } }, - [6112]={ + [6204]={ [1]={ [1]={ limit={ @@ -134732,7 +137467,7 @@ return { [1]="frost_bomb_buff_duration_+%" } }, - [6113]={ + [6205]={ [1]={ [1]={ limit={ @@ -134748,7 +137483,7 @@ return { [1]="frost_bomb_+%_area_of_effect_when_frost_blink_is_cast" } }, - [6114]={ + [6206]={ [1]={ [1]={ limit={ @@ -134764,7 +137499,7 @@ return { [1]="frost_fury_additional_max_number_of_stages" } }, - [6115]={ + [6207]={ [1]={ [1]={ limit={ @@ -134793,7 +137528,7 @@ return { [1]="frost_fury_area_of_effect_+%_per_stage" } }, - [6116]={ + [6208]={ [1]={ [1]={ limit={ @@ -134822,7 +137557,7 @@ return { [1]="frost_fury_damage_+%" } }, - [6117]={ + [6209]={ [1]={ [1]={ limit={ @@ -134847,7 +137582,7 @@ return { [1]="frost_globe_added_cooldown_count" } }, - [6118]={ + [6210]={ [1]={ [1]={ limit={ @@ -134863,7 +137598,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [6119]={ + [6211]={ [1]={ [1]={ limit={ @@ -134879,7 +137614,7 @@ return { [1]="frostbite_no_reservation" } }, - [6120]={ + [6212]={ [1]={ [1]={ limit={ @@ -134895,7 +137630,7 @@ return { [1]="frostbolt_number_of_additional_projectiles" } }, - [6121]={ + [6213]={ [1]={ [1]={ limit={ @@ -134924,7 +137659,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [6122]={ + [6214]={ [1]={ [1]={ limit={ @@ -134949,7 +137684,7 @@ return { [1]="frozen_legion_added_cooldown_count" } }, - [6123]={ + [6215]={ [1]={ [1]={ limit={ @@ -134978,7 +137713,7 @@ return { [1]="frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat" } }, - [6124]={ + [6216]={ [1]={ [1]={ limit={ @@ -135007,7 +137742,7 @@ return { [1]="frozen_legion_cooldown_speed_+%" } }, - [6125]={ + [6217]={ [1]={ [1]={ limit={ @@ -135023,7 +137758,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [6126]={ + [6218]={ [1]={ [1]={ limit={ @@ -135052,7 +137787,7 @@ return { [1]="frozen_sweep_damage_+%" } }, - [6127]={ + [6219]={ [1]={ [1]={ limit={ @@ -135081,7 +137816,7 @@ return { [1]="frozen_sweep_damage_+%_final" } }, - [6128]={ + [6220]={ [1]={ [1]={ limit={ @@ -135097,7 +137832,7 @@ return { [1]="full_life_threshold_%_override" } }, - [6129]={ + [6221]={ [1]={ [1]={ limit={ @@ -135113,7 +137848,7 @@ return { [1]="full_mana_threshold_%_override" } }, - [6130]={ + [6222]={ [1]={ [1]={ limit={ @@ -135122,14 +137857,14 @@ return { [2]="#" } }, - text="You have Fungal Ground around you while stationary" + text="Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" } }, stats={ - [1]="fungal_ground_while_stationary_radius" + [1]="fully_break_enemies_armour_on_heavy_stun_with_shield_skills" } }, - [6131]={ + [6223]={ [1]={ [1]={ limit={ @@ -135138,39 +137873,30 @@ return { [2]="#" } }, - text="Gain {0}% of Damage as Extra Chaos Damage per 20 Unreserved Darkness" + text="Fully Broken Armour effects also apply to Fire Damage Taken from Hits" } }, stats={ - [1]="gain_%_damage_as_chaos_from_unreserved_darkness" + [1]="fully_broken_armour_and_sundered_armour_debuff_also_applies_to_fire_damage" } }, - [6132]={ + [6224]={ [1]={ [1]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } - }, - text="Gain additional maximum Life equal to {0}% of the Energy Shield on Equipped Body Armour" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Gain additional maximum Life equal to {0}% of the Energy Shield on Equipped Body Armour" + text="You have Fungal Ground around you while stationary" } }, stats={ - [1]="gain_%_life_from_body_es" + [1]="fungal_ground_while_stationary_radius" } }, - [6133]={ + [6225]={ [1]={ [1]={ limit={ @@ -135179,46 +137905,55 @@ return { [2]="#" } }, - text="Gain {0}% of maximum Energy Shield as additional Freeze Threshold" + text="Gain {0}% of Damage as Extra Chaos Damage per 20 Unreserved Darkness" } }, stats={ - [1]="gain_%_maximum_energy_shield_as_freeze_threshold_+" + [1]="gain_%_damage_as_chaos_from_unreserved_darkness" } }, - [6134]={ + [6226]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]=100, + [2]=100 + } + }, + text="Gain additional maximum Life equal to {0}% of the Item Energy Shield on Equipped Body Armour" + }, + [2]={ + limit={ + [1]={ + [1]="#", [2]="#" } }, - text="When you Kill a Rare Monster, {0}% chance to gain one of its Modifiers for 10 seconds" + text="Gain additional maximum Life equal to {0}% of the Item Energy Shield on Equipped Body Armour" } }, stats={ - [1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance" + [1]="gain_%_life_from_body_es" } }, - [6135]={ + [6227]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased Armour per 50 Reserved Mana" + text="Gain {0}% of maximum Energy Shield as additional Freeze Threshold" } }, stats={ - [1]="gain_X%_armour_per_50_mana_reserved" + [1]="gain_%_maximum_energy_shield_as_freeze_threshold_+" } }, - [6136]={ + [6228]={ [1]={ [1]={ limit={ @@ -135227,67 +137962,71 @@ return { [2]="#" } }, - text="When you Consume a Charge Trigger Chaotic Infusion to gain {0} Chaos Infusion" + text="Life Flasks applied to you grant Guard for 4 seconds equal to {0}% of the Life Recovery per Second they apply" } }, stats={ - [1]="gain_X_chaos_infusion_when_any_charge_is_consumed" + [1]="gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use" } }, - [6137]={ + [6229]={ [1]={ [1]={ limit={ [1]={ - [1]="#", - [2]="#" - }, - [2]={ + [1]=1, + [2]=1 + } + }, + text="Skills gain 1 Glory every {0} second for each Rare or Unique monster in your Presence" + }, + [2]={ + limit={ + [1]={ [1]="#", [2]="#" } }, - text="When you reload, triggers Gemini Infusion to alternately\ngain {0} Cold Infusion or {1} Fire Infusion" + text="Skills gain 1 Glory every {0} seconds for each Rare or Unique monster in your Presence" } }, stats={ - [1]="gain_X_cold_infusion_on_reload", - [2]="gain_X_fire_infusion_on_reload" + [1]="gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence" } }, - [6138]={ + [6230]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="When you Consume a Power Charge Trigger Infuse Weapon to gain {0} Cold Infusion" + text="When you Kill a Rare Monster, {0}% chance to gain one of its Modifiers for 10 seconds" } }, stats={ - [1]="gain_X_cold_infusion_when_power_charge_is_consumed" + [1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance" } }, - [6139]={ + [6231]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="When you Consume an Endurance Charge Trigger Infuse Weapon to gain {0} Fire Infusion" + text="{0}% increased Armour per 50 Reserved Mana" } }, stats={ - [1]="gain_X_fire_infusion_when_endurance_charge_is_consumed" + [1]="gain_X%_armour_per_50_mana_reserved" } }, - [6140]={ + [6232]={ [1]={ [1]={ limit={ @@ -135303,7 +138042,7 @@ return { [1]="gain_X_fortification_on_killing_rare_or_unique_monster" } }, - [6141]={ + [6233]={ [1]={ [1]={ limit={ @@ -135328,71 +138067,199 @@ return { [1]="gain_X_frenzy_charges_after_spending_200_mana" } }, - [6142]={ + [6234]={ [1]={ [1]={ limit={ [1]={ [1]=1, + [2]=1 + } + }, + text="When you Consume a Charge Trigger Chaotic Surge to gain {0} Chaos Surge" + }, + [2]={ + limit={ + [1]={ + [1]="#", [2]="#" } }, - text="Gain {0} Life when you Stun an Enemy" + text="When you Consume a Charge Trigger Chaotic Surge to gain {0} Chaos Surges" } }, stats={ - [1]="gain_X_life_on_stun" + [1]="gain_X_instilling_chaos_when_any_charge_is_consumed" } }, - [6143]={ + [6235]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + } + }, + text="When you reload, triggers Gemini Surge to alternately\ngain {0} Cold Surge or {1} Fire Surge" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="When you reload, triggers Gemini Surge to alternately\ngain {0} Cold Surge or {1} Fire Surges" + }, + [3]={ limit={ [1]={ [1]="#", [2]="#" + }, + [2]={ + [1]=1, + [2]=1 } }, - text="When you Consume a Frenzy Charge Trigger Infuse Weapon to gain {0} Lightning Infusion" + text="When you reload, triggers Gemini Surge to alternately\ngain {0} Cold Surges or {1} Fire Surge" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="When you reload, triggers Gemini Surge to alternately\ngain {0} Cold Surges or {1} Fire Surges" } }, stats={ - [1]="gain_X_lightning_infusion_when_frenzy_charge_is_consumed" + [1]="gain_X_instilling_cold_on_reload", + [2]="gain_X_instilling_fire_on_reload" } }, - [6144]={ + [6236]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="When you Consume a Power Charge Trigger Elemental Surge to gain {0} Cold Surge" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Gain {0} Power Charges when you Warcry" + text="When you Consume a Power Charge Trigger Elemental Surge to gain {0} Cold Surges" } }, stats={ - [1]="gain_X_power_charges_on_using_a_warcry" + [1]="gain_X_instilling_cold_when_power_charge_is_consumed" } }, - [6145]={ + [6237]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="When you Consume an Endurance Charge Trigger Elemental Surge to gain {0} Fire Surge" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Gain {0} Rage on Hit, once per Skill use" + text="When you Consume an Endurance Charge Trigger Elemental Surge to gain {0} Fire Surges" } }, stats={ - [1]="gain_X_rage_on_hit_once_per_skill_use" + [1]="gain_X_instilling_fire_when_endurance_charge_is_consumed" } }, - [6146]={ + [6238]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="When you Consume a Frenzy Charge Trigger Elemental Surge to gain {0} Lightning Surge" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When you Consume a Frenzy Charge Trigger Elemental Surge to gain {0} Lightning Surges" + } + }, + stats={ + [1]="gain_X_instilling_lightning_when_frenzy_charge_is_consumed" + } + }, + [6239]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0} Life when you Stun an Enemy" + } + }, + stats={ + [1]="gain_X_life_on_stun" + } + }, + [6240]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Power Charges when you Warcry" + } + }, + stats={ + [1]="gain_X_power_charges_on_using_a_warcry" + } + }, + [6241]={ [1]={ [1]={ limit={ @@ -135408,7 +138275,7 @@ return { [1]="gain_X_rage_on_hit_per_enemy_power" } }, - [6147]={ + [6242]={ [1]={ [1]={ limit={ @@ -135433,7 +138300,7 @@ return { [1]="gain_X_random_charges_every_6_seconds" } }, - [6148]={ + [6243]={ [1]={ [1]={ limit={ @@ -135458,7 +138325,7 @@ return { [1]="gain_X_random_charges_on_reaching_maximum_rage" } }, - [6149]={ + [6244]={ [1]={ [1]={ limit={ @@ -135483,7 +138350,7 @@ return { [1]="gain_X_volatility_on_persistent_minion_death" } }, - [6150]={ + [6245]={ [1]={ [1]={ limit={ @@ -135499,7 +138366,7 @@ return { [1]="gain_absorption_charges_instead_of_power_charges" } }, - [6151]={ + [6246]={ [1]={ [1]={ limit={ @@ -135515,7 +138382,7 @@ return { [1]="gain_accuracy_rating_equal_to_2_times_strength" } }, - [6152]={ + [6247]={ [1]={ [1]={ limit={ @@ -135531,7 +138398,7 @@ return { [1]="gain_accuracy_rating_equal_to_intelligence" } }, - [6153]={ + [6248]={ [1]={ [1]={ limit={ @@ -135547,7 +138414,7 @@ return { [1]="gain_accuracy_rating_equal_to_strength" } }, - [6154]={ + [6249]={ [1]={ [1]={ limit={ @@ -135572,7 +138439,7 @@ return { [1]="gain_additional_crit_chance_from_%_chance_to_hit_over_100" } }, - [6155]={ + [6250]={ [1]={ [1]={ [1]={ @@ -135605,7 +138472,7 @@ return { [1]="gain_adrenaline_for_X_ms_on_swapping_stance" } }, - [6156]={ + [6251]={ [1]={ [1]={ limit={ @@ -135630,7 +138497,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_kill" } }, - [6157]={ + [6252]={ [1]={ [1]={ limit={ @@ -135646,7 +138513,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline" } }, - [6158]={ + [6253]={ [1]={ [1]={ [1]={ @@ -135666,7 +138533,7 @@ return { [1]="gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you" } }, - [6159]={ + [6254]={ [1]={ [1]={ limit={ @@ -135682,7 +138549,7 @@ return { [1]="gain_adrenaline_on_gaining_flame_touched" } }, - [6160]={ + [6255]={ [1]={ [1]={ [1]={ @@ -135715,7 +138582,7 @@ return { [1]="gain_adrenaline_when_ward_breaks_ms" } }, - [6161]={ + [6256]={ [1]={ [1]={ limit={ @@ -135731,7 +138598,7 @@ return { [1]="gain_affliction_charges_instead_of_frenzy_charges" } }, - [6162]={ + [6257]={ [1]={ [1]={ limit={ @@ -135756,7 +138623,7 @@ return { [1]="gain_alchemists_genius_on_flask_use_%" } }, - [6163]={ + [6258]={ [1]={ [1]={ limit={ @@ -135772,7 +138639,7 @@ return { [1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently" } }, - [6164]={ + [6259]={ [1]={ [1]={ limit={ @@ -135788,7 +138655,23 @@ return { [1]="gain_arcane_surge_for_4_seconds_after_channelling_for_1_second" } }, - [6165]={ + [6260]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Arcane Surge when a Minion Dies" + } + }, + stats={ + [1]="gain_arcane_surge_for_4_seconds_on_minion_death" + } + }, + [6261]={ [1]={ [1]={ limit={ @@ -135804,7 +138687,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry" } }, - [6166]={ + [6262]={ [1]={ [1]={ limit={ @@ -135829,7 +138712,7 @@ return { [1]="gain_arcane_surge_on_crit_%_chance" } }, - [6167]={ + [6263]={ [1]={ [1]={ limit={ @@ -135845,7 +138728,7 @@ return { [1]="gain_arcane_surge_on_hit_at_devotion_threshold" } }, - [6168]={ + [6264]={ [1]={ [1]={ limit={ @@ -135870,7 +138753,7 @@ return { [1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%" } }, - [6169]={ + [6265]={ [1]={ [1]={ limit={ @@ -135895,7 +138778,7 @@ return { [1]="gain_arcane_surge_on_hit_%_chance" } }, - [6170]={ + [6266]={ [1]={ [1]={ limit={ @@ -135911,7 +138794,7 @@ return { [1]="gain_arcane_surge_on_hit_vs_unique_enemy_%_chance" } }, - [6171]={ + [6267]={ [1]={ [1]={ limit={ @@ -135936,7 +138819,7 @@ return { [1]="gain_arcane_surge_on_kill_chance_%" } }, - [6172]={ + [6268]={ [1]={ [1]={ limit={ @@ -135952,7 +138835,7 @@ return { [1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems" } }, - [6173]={ + [6269]={ [1]={ [1]={ limit={ @@ -135968,7 +138851,7 @@ return { [1]="gain_arcane_surge_when_mine_detonated_targeting_an_enemy" } }, - [6174]={ + [6270]={ [1]={ [1]={ limit={ @@ -135984,7 +138867,7 @@ return { [1]="gain_arcane_surge_when_trap_triggered_by_an_enemy" } }, - [6175]={ + [6271]={ [1]={ [1]={ limit={ @@ -136000,7 +138883,48 @@ return { [1]="gain_arcane_surge_when_you_summon_a_totem" } }, - [6176]={ + [6272]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Ice Archon when your Energy Shield Recharge begins" + } + }, + stats={ + [1]="gain_archon_cold_when_energy_shield_recharge_starts" + } + }, + [6273]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="{0}% chance to gain Flame Archon when you Ignite an Enemy" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Gain Flame Archon when you Ignite an Enemy" + } + }, + stats={ + [1]="gain_archon_fire_when_you_ignite_enemy_chance_%" + } + }, + [6274]={ [1]={ [1]={ limit={ @@ -136016,7 +138940,7 @@ return { [1]="gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana" } }, - [6177]={ + [6275]={ [1]={ [1]={ limit={ @@ -136032,7 +138956,7 @@ return { [1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy" } }, - [6178]={ + [6276]={ [1]={ [1]={ limit={ @@ -136057,7 +138981,7 @@ return { [1]="gain_blitz_charge_%_chance_on_crit" } }, - [6179]={ + [6277]={ [1]={ [1]={ limit={ @@ -136073,7 +138997,7 @@ return { [1]="gain_brutal_charges_instead_of_endurance_charges" } }, - [6180]={ + [6278]={ [1]={ [1]={ limit={ @@ -136098,7 +139022,7 @@ return { [1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance" } }, - [6181]={ + [6279]={ [1]={ [1]={ limit={ @@ -136123,7 +139047,7 @@ return { [1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance" } }, - [6182]={ + [6280]={ [1]={ [1]={ [1]={ @@ -136143,7 +139067,7 @@ return { [1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana" } }, - [6183]={ + [6281]={ [1]={ [1]={ limit={ @@ -136159,7 +139083,7 @@ return { [1]="gain_stormsurge_on_hit" } }, - [6184]={ + [6282]={ [1]={ [1]={ limit={ @@ -136175,7 +139099,7 @@ return { [1]="gain_elusive_on_reaching_low_life" } }, - [6185]={ + [6283]={ [1]={ [1]={ limit={ @@ -136191,7 +139115,7 @@ return { [1]="gain_endurance_charge_if_attack_freezes" } }, - [6186]={ + [6284]={ [1]={ [1]={ limit={ @@ -136207,7 +139131,7 @@ return { [1]="gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy" } }, - [6187]={ + [6285]={ [1]={ [1]={ limit={ @@ -136232,7 +139156,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently" } }, - [6188]={ + [6286]={ [1]={ [1]={ limit={ @@ -136257,7 +139181,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_used_warcry_recently" } }, - [6189]={ + [6287]={ [1]={ [1]={ limit={ @@ -136282,7 +139206,7 @@ return { [1]="gain_endurance_charge_%_chance_when_you_lose_fortify" } }, - [6190]={ + [6288]={ [1]={ [1]={ limit={ @@ -136298,7 +139222,7 @@ return { [1]="gain_endurance_charge_%_when_hit_while_channelling" } }, - [6191]={ + [6289]={ [1]={ [1]={ limit={ @@ -136314,7 +139238,7 @@ return { [1]="gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges" } }, - [6192]={ + [6290]={ [1]={ [1]={ limit={ @@ -136339,7 +139263,7 @@ return { [1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges" } }, - [6193]={ + [6291]={ [1]={ [1]={ limit={ @@ -136364,7 +139288,7 @@ return { [1]="gain_flask_charges_every_second_if_hit_unique_enemy_recently" } }, - [6194]={ + [6292]={ [1]={ [1]={ limit={ @@ -136380,7 +139304,7 @@ return { [1]="gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff" } }, - [6195]={ + [6293]={ [1]={ [1]={ limit={ @@ -136396,7 +139320,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_at_close_range_%" } }, - [6196]={ + [6294]={ [1]={ [1]={ limit={ @@ -136421,7 +139345,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_%" } }, - [6197]={ + [6295]={ [1]={ [1]={ limit={ @@ -136437,7 +139361,7 @@ return { [1]="gain_frenzy_charge_on_enemy_shattered_chance_%" } }, - [6198]={ + [6296]={ [1]={ [1]={ limit={ @@ -136453,7 +139377,7 @@ return { [1]="gain_frenzy_charge_on_hit_%_while_blinded" } }, - [6199]={ + [6297]={ [1]={ [1]={ limit={ @@ -136469,7 +139393,7 @@ return { [1]="gain_frenzy_charge_on_hit_while_bleeding" } }, - [6200]={ + [6298]={ [1]={ [1]={ limit={ @@ -136485,7 +139409,7 @@ return { [1]="gain_frenzy_charge_on_hitting_marked_enemy_%" } }, - [6201]={ + [6299]={ [1]={ [1]={ limit={ @@ -136501,7 +139425,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [6202]={ + [6300]={ [1]={ [1]={ limit={ @@ -136526,7 +139450,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [6203]={ + [6301]={ [1]={ [1]={ limit={ @@ -136542,7 +139466,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [6204]={ + [6302]={ [1]={ [1]={ limit={ @@ -136567,7 +139491,7 @@ return { [1]="gain_frenzy_charge_per_enemy_you_crit_%_chance" } }, - [6205]={ + [6303]={ [1]={ [1]={ limit={ @@ -136583,7 +139507,7 @@ return { [1]="gain_frenzy_charge_%_when_hit_while_channelling" } }, - [6206]={ + [6304]={ [1]={ [1]={ limit={ @@ -136599,7 +139523,7 @@ return { [1]="gain_frenzy_power_endurance_charges_on_vaal_skill_use" } }, - [6207]={ + [6305]={ [1]={ [1]={ limit={ @@ -136615,7 +139539,23 @@ return { [1]="gain_guard_flask_charge_when_hit_by_enemy_chance_%" } }, - [6208]={ + [6306]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Lightning Archon after spending 100% of your Maximum Mana" + } + }, + stats={ + [1]="gain_lightning_archon_after_spending_100%_of_your_maximum_mana" + } + }, + [6307]={ [1]={ [1]={ limit={ @@ -136640,7 +139580,7 @@ return { [1]="gain_magic_monster_mods_on_kill_%_chance" } }, - [6209]={ + [6308]={ [1]={ [1]={ limit={ @@ -136656,7 +139596,7 @@ return { [1]="gain_max_rage_on_losing_temporal_chains_debuff" } }, - [6210]={ + [6309]={ [1]={ [1]={ limit={ @@ -136672,7 +139612,7 @@ return { [1]="gain_max_rage_on_rage_gain_from_hit_%_chance" } }, - [6211]={ + [6310]={ [1]={ [1]={ limit={ @@ -136697,7 +139637,7 @@ return { [1]="gain_maximum_endurance_charges_when_crit_chance_%" } }, - [6212]={ + [6311]={ [1]={ [1]={ limit={ @@ -136713,7 +139653,7 @@ return { [1]="gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility" } }, - [6213]={ + [6312]={ [1]={ [1]={ limit={ @@ -136729,7 +139669,7 @@ return { [1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth" } }, - [6214]={ + [6313]={ [1]={ [1]={ limit={ @@ -136745,7 +139685,7 @@ return { [1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance" } }, - [6215]={ + [6314]={ [1]={ [1]={ limit={ @@ -136761,7 +139701,7 @@ return { [1]="gain_maximum_power_charges_on_power_charge_gained_%_chance" } }, - [6216]={ + [6315]={ [1]={ [1]={ limit={ @@ -136777,7 +139717,7 @@ return { [1]="gain_maximum_power_charges_on_vaal_skill_use" } }, - [6217]={ + [6316]={ [1]={ [1]={ limit={ @@ -136793,7 +139733,7 @@ return { [1]="gain_movement_speed_+%_for_20_seconds_on_kill" } }, - [6218]={ + [6317]={ [1]={ [1]={ limit={ @@ -136809,7 +139749,7 @@ return { [1]="gain_onslaught_during_soul_gain_prevention" } }, - [6219]={ + [6318]={ [1]={ [1]={ limit={ @@ -136834,7 +139774,23 @@ return { [1]="gain_onslaught_for_3_seconds_%_chance_when_hit" } }, - [6220]={ + [6319]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Onslaught for 4 seconds when a Minion Dies" + } + }, + stats={ + [1]="gain_onslaught_for_4_seconds_on_minion_death" + } + }, + [6320]={ [1]={ [1]={ limit={ @@ -136850,7 +139806,7 @@ return { [1]="gain_onslaught_if_you_have_swapped_stance_recently" } }, - [6221]={ + [6321]={ [1]={ [1]={ [1]={ @@ -136870,7 +139826,7 @@ return { [1]="gain_onslaught_ms_on_using_a_warcry" } }, - [6222]={ + [6322]={ [1]={ [1]={ limit={ @@ -136895,7 +139851,7 @@ return { [1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%" } }, - [6223]={ + [6323]={ [1]={ [1]={ [1]={ @@ -136915,7 +139871,7 @@ return { [1]="gain_onslaught_on_hit_duration_ms" } }, - [6224]={ + [6324]={ [1]={ [1]={ [1]={ @@ -136935,7 +139891,7 @@ return { [1]="gain_onslaught_on_kill_ms_while_affected_by_haste" } }, - [6225]={ + [6325]={ [1]={ [1]={ limit={ @@ -136951,7 +139907,7 @@ return { [1]="gain_onslaught_while_at_maximum_endurance_charges" } }, - [6226]={ + [6326]={ [1]={ [1]={ limit={ @@ -136967,7 +139923,7 @@ return { [1]="gain_onslaught_while_not_on_low_mana" } }, - [6227]={ + [6327]={ [1]={ [1]={ limit={ @@ -136983,7 +139939,7 @@ return { [1]="gain_onslaught_while_on_low_life" } }, - [6228]={ + [6328]={ [1]={ [1]={ limit={ @@ -136999,7 +139955,7 @@ return { [1]="gain_onslaught_while_you_have_cats_agility" } }, - [6229]={ + [6329]={ [1]={ [1]={ limit={ @@ -137015,7 +139971,7 @@ return { [1]="gain_onslaught_while_you_have_fortify" } }, - [6230]={ + [6330]={ [1]={ [1]={ [1]={ @@ -137035,7 +139991,7 @@ return { [1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec" } }, - [6231]={ + [6331]={ [1]={ [1]={ limit={ @@ -137051,23 +140007,7 @@ return { [1]="gain_phasing_if_enemy_killed_recently" } }, - [6232]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You have Phasing if you have Suppressed Spell Damage Recently" - } - }, - stats={ - [1]="gain_phasing_if_suppressed_spell_recently" - } - }, - [6233]={ + [6332]={ [1]={ [1]={ limit={ @@ -137083,7 +140023,7 @@ return { [1]="gain_phasing_while_affected_by_haste" } }, - [6234]={ + [6333]={ [1]={ [1]={ limit={ @@ -137099,7 +140039,7 @@ return { [1]="gain_phasing_while_you_have_cats_stealth" } }, - [6235]={ + [6334]={ [1]={ [1]={ limit={ @@ -137115,7 +140055,7 @@ return { [1]="gain_phasing_while_you_have_low_life" } }, - [6236]={ + [6335]={ [1]={ [1]={ limit={ @@ -137131,7 +140071,7 @@ return { [1]="gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6237]={ + [6336]={ [1]={ [1]={ limit={ @@ -137147,7 +140087,7 @@ return { [1]="gain_power_charge_on_critical_strike_with_wands_%" } }, - [6238]={ + [6337]={ [1]={ [1]={ limit={ @@ -137163,7 +140103,7 @@ return { [1]="gain_power_charge_on_curse_cast_%" } }, - [6239]={ + [6338]={ [1]={ [1]={ limit={ @@ -137188,7 +140128,7 @@ return { [1]="gain_power_charge_on_hit_%_chance_against_frozen_enemy" } }, - [6240]={ + [6339]={ [1]={ [1]={ limit={ @@ -137204,7 +140144,7 @@ return { [1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%" } }, - [6241]={ + [6340]={ [1]={ [1]={ limit={ @@ -137220,7 +140160,7 @@ return { [1]="gain_power_charge_on_mana_flask_use_%_chance" } }, - [6242]={ + [6341]={ [1]={ [1]={ limit={ @@ -137245,7 +140185,7 @@ return { [1]="gain_power_charge_on_vaal_skill_use_%" } }, - [6243]={ + [6342]={ [1]={ [1]={ limit={ @@ -137261,7 +140201,7 @@ return { [1]="gain_power_charge_per_second_if_have_not_lost_power_charge_recently" } }, - [6244]={ + [6343]={ [1]={ [1]={ limit={ @@ -137277,7 +140217,7 @@ return { [1]="gain_power_or_frenzy_charge_for_each_second_channeling" } }, - [6245]={ + [6344]={ [1]={ [1]={ limit={ @@ -137293,7 +140233,7 @@ return { [1]="gain_x_rage_on_hit" } }, - [6246]={ + [6345]={ [1]={ [1]={ limit={ @@ -137309,7 +140249,7 @@ return { [1]="gain_random_charge_on_block" } }, - [6247]={ + [6346]={ [1]={ [1]={ limit={ @@ -137325,7 +140265,7 @@ return { [1]="gain_random_charge_per_second_while_stationary" } }, - [6248]={ + [6347]={ [1]={ [1]={ limit={ @@ -137341,7 +140281,7 @@ return { [1]="gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal" } }, - [6249]={ + [6348]={ [1]={ [1]={ limit={ @@ -137357,7 +140297,7 @@ return { [1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster" } }, - [6250]={ + [6349]={ [1]={ [1]={ limit={ @@ -137373,7 +140313,7 @@ return { [1]="gain_shrine_buff_every_10_seconds" } }, - [6251]={ + [6350]={ [1]={ [1]={ limit={ @@ -137407,7 +140347,7 @@ return { [1]="gain_single_conflux_for_3_seconds_every_8_seconds" } }, - [6252]={ + [6351]={ [1]={ [1]={ [1]={ @@ -137427,7 +140367,7 @@ return { [1]="gain_soul_eater_for_x_ms_on_vaal_skill_use" } }, - [6253]={ + [6352]={ [1]={ [1]={ [1]={ @@ -137460,7 +140400,7 @@ return { [1]="gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms" } }, - [6254]={ + [6353]={ [1]={ [1]={ limit={ @@ -137476,7 +140416,23 @@ return { [1]="gain_spell_cost_as_mana_every_fifth_cast" } }, - [6255]={ + [6354]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} to Stun Threshold per Dexterity" + } + }, + stats={ + [1]="stun_threshold_+_per_dexterity" + } + }, + [6355]={ [1]={ [1]={ limit={ @@ -137492,7 +140448,7 @@ return { [1]="gain_tailwind_on_critical_hit" } }, - [6256]={ + [6356]={ [1]={ [1]={ limit={ @@ -137508,7 +140464,7 @@ return { [1]="gain_tailwind_stack_on_skill_use" } }, - [6257]={ + [6357]={ [1]={ [1]={ limit={ @@ -137524,7 +140480,7 @@ return { [1]="gain_up_to_maximum_fragile_regrowth_when_hit" } }, - [6258]={ + [6358]={ [1]={ [1]={ [1]={ @@ -137544,23 +140500,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [6259]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Intelligence is added to Accuracy Rating with Wands" - } - }, - stats={ - [1]="gain_wand_accuracy_rating_equal_to_intelligence" - } - }, - [6260]={ + [6359]={ [1]={ [1]={ limit={ @@ -137611,7 +140551,7 @@ return { [1]="gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second" } }, - [6261]={ + [6360]={ [1]={ [1]={ limit={ @@ -137640,7 +140580,7 @@ return { [1]="gain_x_fragile_regrowth_per_second" } }, - [6262]={ + [6361]={ [1]={ [1]={ limit={ @@ -137656,7 +140596,7 @@ return { [1]="gain_x_rage_on_hit_with_axes" } }, - [6263]={ + [6362]={ [1]={ [1]={ limit={ @@ -137672,7 +140612,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords_1s_cooldown" } }, - [6264]={ + [6363]={ [1]={ [1]={ limit={ @@ -137688,7 +140628,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [6265]={ + [6364]={ [1]={ [1]={ limit={ @@ -137704,7 +140644,7 @@ return { [1]="gain_x_rage_per_200_mana_spent" } }, - [6266]={ + [6365]={ [1]={ [1]={ limit={ @@ -137720,7 +140660,7 @@ return { [1]="gain_x_rage_when_hit" } }, - [6267]={ + [6366]={ [1]={ [1]={ limit={ @@ -137736,23 +140676,7 @@ return { [1]="gain_x_rage_when_taken_crit" } }, - [6268]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0} Rage when Hit by an Enemy" - } - }, - stats={ - [1]="gain_x_rage_when_taken_hit" - } - }, - [6269]={ + [6367]={ [1]={ [1]={ limit={ @@ -137777,7 +140701,7 @@ return { [1]="galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined" } }, - [6270]={ + [6368]={ [1]={ [1]={ limit={ @@ -137806,7 +140730,7 @@ return { [1]="galvanic_arrow_projectile_speed_+%" } }, - [6271]={ + [6369]={ [1]={ [1]={ limit={ @@ -137831,7 +140755,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [6272]={ + [6370]={ [1]={ [1]={ limit={ @@ -137847,7 +140771,7 @@ return { [1]="galvanic_field_cast_speed_+%" } }, - [6273]={ + [6371]={ [1]={ [1]={ limit={ @@ -137876,7 +140800,7 @@ return { [1]="galvanic_field_damage_+%" } }, - [6274]={ + [6372]={ [1]={ [1]={ limit={ @@ -137901,7 +140825,7 @@ return { [1]="galvanic_field_number_of_chains" } }, - [6275]={ + [6373]={ [1]={ [1]={ limit={ @@ -137917,7 +140841,7 @@ return { [1]="gem_requirements_can_be_satisfied_by_highest_attribute" } }, - [6276]={ + [6374]={ [1]={ [1]={ limit={ @@ -137946,7 +140870,7 @@ return { [1]="gemling_all_attributes_+%_final" } }, - [6277]={ + [6375]={ [1]={ [1]={ limit={ @@ -137962,7 +140886,7 @@ return { [1]="gemling_double_basic_attribute_bonuses" } }, - [6278]={ + [6376]={ [1]={ [1]={ limit={ @@ -137991,7 +140915,7 @@ return { [1]="gemling_skill_cost_+%_final" } }, - [6279]={ + [6377]={ [1]={ [1]={ limit={ @@ -138007,7 +140931,7 @@ return { [1]="generals_cry_cooldown_speed_+%" } }, - [6280]={ + [6378]={ [1]={ [1]={ limit={ @@ -138023,7 +140947,7 @@ return { [1]="generals_cry_maximum_warriors_+" } }, - [6281]={ + [6379]={ [1]={ [1]={ [1]={ @@ -138043,7 +140967,7 @@ return { [1]="generate_x_charges_for_any_flask_per_minute" } }, - [6282]={ + [6380]={ [1]={ [1]={ [1]={ @@ -138063,7 +140987,27 @@ return { [1]="generate_x_charges_for_charms_per_minute" } }, - [6283]={ + [6381]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Charms gain {0} charges per Second if you have at least 200 Tribute" + } + }, + stats={ + [1]="generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute" + } + }, + [6382]={ [1]={ [1]={ [1]={ @@ -138083,7 +141027,7 @@ return { [1]="generate_x_charges_for_guard_flasks_per_minute" } }, - [6284]={ + [6383]={ [1]={ [1]={ [1]={ @@ -138103,7 +141047,7 @@ return { [1]="generate_x_charges_for_life_flasks_per_minute" } }, - [6285]={ + [6384]={ [1]={ [1]={ [1]={ @@ -138123,7 +141067,27 @@ return { [1]="generate_x_charges_for_mana_flasks_per_minute" } }, - [6286]={ + [6385]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attack Hits inflict Spectral Fire for {0} seconds" + } + }, + stats={ + [1]="ghostflame_on_hit_duration_ms" + } + }, + [6386]={ [1]={ [1]={ limit={ @@ -138139,7 +141103,7 @@ return { [1]="gifts_from_above_consecrated_ground_while_stationary" } }, - [6287]={ + [6387]={ [1]={ [1]={ limit={ @@ -138164,7 +141128,7 @@ return { [1]="glacial_cascade_number_of_additional_bursts" } }, - [6288]={ + [6388]={ [1]={ [1]={ limit={ @@ -138180,7 +141144,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_gain_as_cold" } }, - [6289]={ + [6389]={ [1]={ [1]={ limit={ @@ -138196,7 +141160,7 @@ return { [1]="glacial_hammer_melee_splash_with_cold_damage" } }, - [6290]={ + [6390]={ [1]={ [1]={ limit={ @@ -138229,7 +141193,7 @@ return { [1]="global_attack_speed_+%_per_level" } }, - [6291]={ + [6391]={ [1]={ [1]={ limit={ @@ -138245,7 +141209,7 @@ return { [1]="global_bleed_on_hit" } }, - [6292]={ + [6392]={ [1]={ [1]={ limit={ @@ -138270,7 +141234,7 @@ return { [1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [6293]={ + [6393]={ [1]={ [1]={ limit={ @@ -138299,7 +141263,7 @@ return { [1]="global_critical_strike_chance_+%_vs_chilled_enemies" } }, - [6294]={ + [6394]={ [1]={ [1]={ limit={ @@ -138328,7 +141292,7 @@ return { [1]="global_defences_+%_per_frenzy_charge" } }, - [6295]={ + [6395]={ [1]={ [1]={ limit={ @@ -138357,7 +141321,7 @@ return { [1]="global_defences_while_in_presence_of_companion_+%" } }, - [6296]={ + [6396]={ [1]={ [1]={ limit={ @@ -138373,7 +141337,7 @@ return { [1]="global_evasion_rating_+_while_moving" } }, - [6297]={ + [6397]={ [1]={ [1]={ limit={ @@ -138402,7 +141366,7 @@ return { [1]="global_gem_attribute_requirements_+%_final_from_gemling" } }, - [6298]={ + [6398]={ [1]={ [1]={ limit={ @@ -138423,7 +141387,7 @@ return { [2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies" } }, - [6299]={ + [6399]={ [1]={ [1]={ limit={ @@ -138444,7 +141408,7 @@ return { [2]="global_maximum_added_fire_damage_vs_ignited_enemies" } }, - [6300]={ + [6400]={ [1]={ [1]={ limit={ @@ -138465,7 +141429,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_ignited_enemies" } }, - [6301]={ + [6401]={ [1]={ [1]={ limit={ @@ -138486,7 +141450,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_shocked_enemies" } }, - [6302]={ + [6402]={ [1]={ [1]={ limit={ @@ -138507,7 +141471,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6303]={ + [6403]={ [1]={ [1]={ limit={ @@ -138523,7 +141487,64 @@ return { [1]="global_physical_damage_reduction_rating_while_moving" } }, - [6304]={ + [6404]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Glory generation if you have at least 100 Tribute" + } + }, + stats={ + [1]="glory_generation_+%_if_you_have_at_least_100_tribute" + } + }, + [6405]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Glory generation" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Glory generation" + } + }, + stats={ + [1]="glory_generation_+%" + } + }, + [6406]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Glory generation for Banner Skills" + } + }, + stats={ + [1]="glory_generation_+%_for_banners" + } + }, + [6407]={ [1]={ [1]={ [1]={ @@ -138543,7 +141564,7 @@ return { [1]="glove_implicit_gain_rage_on_attack_hit_cooldown_ms" } }, - [6305]={ + [6408]={ [1]={ [1]={ limit={ @@ -138572,7 +141593,7 @@ return { [1]="gold_+%_from_enemies" } }, - [6306]={ + [6409]={ [1]={ [1]={ limit={ @@ -138601,7 +141622,7 @@ return { [1]="golem_attack_and_cast_speed_+%" } }, - [6307]={ + [6410]={ [1]={ [1]={ limit={ @@ -138622,7 +141643,7 @@ return { [2]="golem_attack_maximum_added_physical_damage" } }, - [6308]={ + [6411]={ [1]={ [1]={ limit={ @@ -138651,7 +141672,7 @@ return { [1]="golem_buff_effect_+%" } }, - [6309]={ + [6412]={ [1]={ [1]={ limit={ @@ -138680,7 +141701,7 @@ return { [1]="golem_buff_effect_+%_per_summoned_golem" } }, - [6310]={ + [6413]={ [1]={ [1]={ [1]={ @@ -138700,7 +141721,7 @@ return { [1]="golem_life_regeneration_per_minute_%" } }, - [6311]={ + [6414]={ [1]={ [1]={ limit={ @@ -138729,7 +141750,7 @@ return { [1]="golem_maximum_life_+%" } }, - [6312]={ + [6415]={ [1]={ [1]={ limit={ @@ -138758,7 +141779,7 @@ return { [1]="golem_maximum_mana_+%" } }, - [6313]={ + [6416]={ [1]={ [1]={ limit={ @@ -138787,7 +141808,7 @@ return { [1]="golem_movement_speed_+%" } }, - [6314]={ + [6417]={ [1]={ [1]={ limit={ @@ -138803,7 +141824,7 @@ return { [1]="golem_physical_damage_reduction_rating" } }, - [6315]={ + [6418]={ [1]={ [1]={ [1]={ @@ -138840,7 +141861,7 @@ return { [1]="grace_mana_reservation_efficiency_-2%_per_1" } }, - [6316]={ + [6419]={ [1]={ [1]={ limit={ @@ -138869,7 +141890,7 @@ return { [1]="grace_mana_reservation_efficiency_+%" } }, - [6317]={ + [6420]={ [1]={ [1]={ limit={ @@ -138885,7 +141906,7 @@ return { [1]="grace_reserves_no_mana" } }, - [6318]={ + [6421]={ [1]={ [1]={ limit={ @@ -138918,7 +141939,7 @@ return { [1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash" } }, - [6319]={ + [6422]={ [1]={ [1]={ limit={ @@ -138934,7 +141955,7 @@ return { [1]="grant_tailwind_to_nearby_allies_if_used_skill_recently" } }, - [6320]={ + [6423]={ [1]={ [1]={ limit={ @@ -138967,7 +141988,7 @@ return { [1]="grant_void_arrow_every_x_ms" } }, - [6321]={ + [6424]={ [1]={ [1]={ limit={ @@ -138996,7 +142017,7 @@ return { [1]="gratuitous_violence_physical_damage_over_time_+%_final" } }, - [6322]={ + [6425]={ [1]={ [1]={ limit={ @@ -139025,7 +142046,32 @@ return { [1]="grenade_fuse_duration_+%" } }, - [6323]={ + [6426]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Grenade Projectile Speed" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Grenade Projectile Speed" + } + }, + stats={ + [1]="grenade_projectile_speed_+%" + } + }, + [6427]={ [1]={ [1]={ limit={ @@ -139050,7 +142096,7 @@ return { [1]="grenade_skill_%_chance_to_explode_twice" } }, - [6324]={ + [6428]={ [1]={ [1]={ limit={ @@ -139079,7 +142125,7 @@ return { [1]="grenade_skill_area_of_effect_+%" } }, - [6325]={ + [6429]={ [1]={ [1]={ limit={ @@ -139104,7 +142150,7 @@ return { [1]="grenade_skill_cooldown_count_+" } }, - [6326]={ + [6430]={ [1]={ [1]={ limit={ @@ -139133,7 +142179,7 @@ return { [1]="grenade_skill_cooldown_speed_+%" } }, - [6327]={ + [6431]={ [1]={ [1]={ limit={ @@ -139162,7 +142208,7 @@ return { [1]="grenade_skill_damage_+%" } }, - [6328]={ + [6432]={ [1]={ [1]={ limit={ @@ -139191,7 +142237,7 @@ return { [1]="grenade_skill_duration_+%" } }, - [6329]={ + [6433]={ [1]={ [1]={ limit={ @@ -139216,7 +142262,7 @@ return { [1]="grenade_skill_number_of_additional_projectiles" } }, - [6330]={ + [6434]={ [1]={ [1]={ limit={ @@ -139245,7 +142291,7 @@ return { [1]="ground_effect_duration_+%" } }, - [6331]={ + [6435]={ [1]={ [1]={ limit={ @@ -139270,7 +142316,7 @@ return { [1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun" } }, - [6332]={ + [6436]={ [1]={ [1]={ limit={ @@ -139286,7 +142332,7 @@ return { [1]="ground_tar_on_block_base_area_of_effect_radius" } }, - [6333]={ + [6437]={ [1]={ [1]={ limit={ @@ -139302,7 +142348,7 @@ return { [1]="ground_tar_when_hit_%_chance" } }, - [6334]={ + [6438]={ [1]={ [1]={ limit={ @@ -139331,7 +142377,36 @@ return { [1]="guard_flask_effect_+%" } }, - [6335]={ + [6439]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Guard gained" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Guard gained" + } + }, + stats={ + [1]="guard_gained_+%" + } + }, + [6440]={ [1]={ [1]={ limit={ @@ -139360,7 +142435,7 @@ return { [1]="guard_skill_cooldown_recovery_+%" } }, - [6336]={ + [6441]={ [1]={ [1]={ limit={ @@ -139389,7 +142464,7 @@ return { [1]="guard_skill_effect_duration_+%" } }, - [6337]={ + [6442]={ [1]={ [1]={ limit={ @@ -139405,7 +142480,7 @@ return { [1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught" } }, - [6338]={ + [6443]={ [1]={ [1]={ limit={ @@ -139434,23 +142509,32 @@ return { [1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies" } }, - [6339]={ + [6444]={ [1]={ [1]={ + limit={ + [1]={ + [1]=200, + [2]=200 + } + }, + text="Maximum Mana is replaced by twice as much Maximum Infernal Flame\nGain Infernal Flame instead of spending Mana for Skill costs" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Maximum Mana is replaced by Maximum Infernal Flame\nGain Infernal Flame instead of spending Mana for Skill costs" + text="DNT-UNUSED BAD VALUE" } }, stats={ - [1]="infernal_flame_instead_of_mana" + [1]="infernal_flame_instead_of_mana_at_%_ratio" } }, - [6340]={ + [6445]={ [1]={ [1]={ limit={ @@ -139466,7 +142550,7 @@ return { [1]="halve_evasion_rating_from_body" } }, - [6341]={ + [6446]={ [1]={ [1]={ limit={ @@ -139482,7 +142566,7 @@ return { [1]="harvest_encounter_fluid_granted_+%" } }, - [6342]={ + [6447]={ [1]={ [1]={ limit={ @@ -139498,7 +142582,7 @@ return { [1]="has_avoid_shock_as_avoid_all_elemental_ailments" } }, - [6343]={ + [6448]={ [1]={ [1]={ limit={ @@ -139514,7 +142598,7 @@ return { [1]="has_curse_limit_equal_to_maximum_power_charges" } }, - [6344]={ + [6449]={ [1]={ [1]={ limit={ @@ -139530,7 +142614,7 @@ return { [1]="has_ignite_duration_on_self_as_all_elemental_ailments_on_self" } }, - [6345]={ + [6450]={ [1]={ [1]={ limit={ @@ -139546,7 +142630,7 @@ return { [1]="has_onslaught_if_totem_summoned_recently" } }, - [6346]={ + [6451]={ [1]={ [1]={ limit={ @@ -139562,7 +142646,7 @@ return { [1]="has_stun_prevention_flask" } }, - [6347]={ + [6452]={ [1]={ [1]={ limit={ @@ -139591,7 +142675,7 @@ return { [1]="has_trickster_alternating_damage_taken_+%_final" } }, - [6348]={ + [6453]={ [1]={ [1]={ limit={ @@ -139607,7 +142691,7 @@ return { [1]="has_unique_brutal_shrine_effect" } }, - [6349]={ + [6454]={ [1]={ [1]={ limit={ @@ -139623,7 +142707,7 @@ return { [1]="has_unique_chaos_shrine_effect" } }, - [6350]={ + [6455]={ [1]={ [1]={ limit={ @@ -139639,7 +142723,7 @@ return { [1]="has_unique_cold_shrine_effect" } }, - [6351]={ + [6456]={ [1]={ [1]={ limit={ @@ -139655,7 +142739,7 @@ return { [1]="has_unique_fire_shrine_effect" } }, - [6352]={ + [6457]={ [1]={ [1]={ limit={ @@ -139671,7 +142755,7 @@ return { [1]="has_unique_lightning_shrine_effect" } }, - [6353]={ + [6458]={ [1]={ [1]={ limit={ @@ -139687,7 +142771,7 @@ return { [1]="has_unique_massive_shrine_effect" } }, - [6354]={ + [6459]={ [1]={ [1]={ [1]={ @@ -139724,7 +142808,7 @@ return { [1]="haste_mana_reservation_efficiency_-2%_per_1" } }, - [6355]={ + [6460]={ [1]={ [1]={ limit={ @@ -139753,7 +142837,7 @@ return { [1]="haste_mana_reservation_efficiency_+%" } }, - [6356]={ + [6461]={ [1]={ [1]={ limit={ @@ -139769,7 +142853,7 @@ return { [1]="haste_reserves_no_mana" } }, - [6357]={ + [6462]={ [1]={ [1]={ [1]={ @@ -139806,7 +142890,7 @@ return { [1]="hatred_mana_reservation_efficiency_-2%_per_1" } }, - [6358]={ + [6463]={ [1]={ [1]={ limit={ @@ -139835,7 +142919,7 @@ return { [1]="hatred_mana_reservation_efficiency_+%" } }, - [6359]={ + [6464]={ [1]={ [1]={ limit={ @@ -139851,7 +142935,77 @@ return { [1]="hatred_reserves_no_mana" } }, - [6360]={ + [6465]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You have Unholy Might" + } + }, + stats={ + [1]="have_unholy_might" + } + }, + [6466]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Hazard Area of Effect" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Hazard Area of Effect" + } + }, + stats={ + [1]="hazard_area_of_effect_+%" + } + }, + [6467]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Debuffs inflicted by Hazards have {0}% increased Slow Magnitude" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Debuffs inflicted by Hazards have {0}% reduced Slow Magnitude" + } + }, + stats={ + [1]="hazard_base_debuff_slow_magnitude_+%" + } + }, + [6468]={ [1]={ [1]={ limit={ @@ -139880,7 +143034,36 @@ return { [1]="hazard_damage_+%" } }, - [6361]={ + [6469]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Hazard Immobilisation buildup" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Hazard Immobilisation buildup" + } + }, + stats={ + [1]="hazard_hit_damage_immobilisation_multiplier_+%" + } + }, + [6470]={ [1]={ [1]={ limit={ @@ -139905,7 +143088,23 @@ return { [1]="hazard_rearm_%_chance" } }, - [6362]={ + [6471]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hazards cannot be triggered for {0} seconds after being created" + } + }, + stats={ + [1]="hazards_cant_trigger_x_seconds_after_creation" + } + }, + [6472]={ [1]={ [1]={ limit={ @@ -139921,7 +143120,65 @@ return { [1]="head_hunt_without_a_corpse" } }, - [6363]={ + [6473]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Inherent loss of Heat is {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Inherent loss of Heat is {0}% slower" + } + }, + stats={ + [1]="heat_loss_%_slower" + } + }, + [6474]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Heavy Stun buildup empties {0}% faster per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Heavy Stun buildup empties {0}% slower per 10 Treibute" + } + }, + stats={ + [1]="heavy_stun_poise_decay_rate_+%_per_10_tribute" + } + }, + [6475]={ [1]={ [1]={ limit={ @@ -139950,7 +143207,7 @@ return { [1]="heavy_stun_poise_decay_rate_+%" } }, - [6364]={ + [6476]={ [1]={ [1]={ limit={ @@ -139966,7 +143223,7 @@ return { [1]="heavy_stun_threshold_+" } }, - [6365]={ + [6477]={ [1]={ [1]={ limit={ @@ -139982,7 +143239,7 @@ return { [1]="heavy_stuns_have_culling_strike" } }, - [6366]={ + [6478]={ [1]={ [1]={ limit={ @@ -139998,7 +143255,7 @@ return { [1]="heist_additional_abyss_rewards_from_reward_chests_%" } }, - [6367]={ + [6479]={ [1]={ [1]={ limit={ @@ -140014,7 +143271,7 @@ return { [1]="heist_additional_armour_rewards_from_reward_chests_%" } }, - [6368]={ + [6480]={ [1]={ [1]={ limit={ @@ -140030,7 +143287,7 @@ return { [1]="heist_additional_blight_rewards_from_reward_chests_%" } }, - [6369]={ + [6481]={ [1]={ [1]={ limit={ @@ -140046,7 +143303,7 @@ return { [1]="heist_additional_breach_rewards_from_reward_chests_%" } }, - [6370]={ + [6482]={ [1]={ [1]={ limit={ @@ -140062,7 +143319,7 @@ return { [1]="heist_additional_corrupted_rewards_from_reward_chests_%" } }, - [6371]={ + [6483]={ [1]={ [1]={ limit={ @@ -140078,7 +143335,7 @@ return { [1]="heist_additional_delirium_rewards_from_reward_chests_%" } }, - [6372]={ + [6484]={ [1]={ [1]={ limit={ @@ -140094,7 +143351,7 @@ return { [1]="heist_additional_delve_rewards_from_reward_chests_%" } }, - [6373]={ + [6485]={ [1]={ [1]={ limit={ @@ -140110,7 +143367,7 @@ return { [1]="heist_additional_divination_rewards_from_reward_chests_%" } }, - [6374]={ + [6486]={ [1]={ [1]={ limit={ @@ -140126,7 +143383,7 @@ return { [1]="heist_additional_essences_rewards_from_reward_chests_%" } }, - [6375]={ + [6487]={ [1]={ [1]={ limit={ @@ -140142,7 +143399,7 @@ return { [1]="heist_additional_gems_rewards_from_reward_chests_%" } }, - [6376]={ + [6488]={ [1]={ [1]={ limit={ @@ -140158,7 +143415,7 @@ return { [1]="heist_additional_harbinger_rewards_from_reward_chests_%" } }, - [6377]={ + [6489]={ [1]={ [1]={ limit={ @@ -140174,7 +143431,7 @@ return { [1]="heist_additional_jewellery_rewards_from_reward_chests_%" } }, - [6378]={ + [6490]={ [1]={ [1]={ limit={ @@ -140190,7 +143447,7 @@ return { [1]="heist_additional_legion_rewards_from_reward_chests_%" } }, - [6379]={ + [6491]={ [1]={ [1]={ limit={ @@ -140206,7 +143463,7 @@ return { [1]="heist_additional_metamorph_rewards_from_reward_chests_%" } }, - [6380]={ + [6492]={ [1]={ [1]={ limit={ @@ -140222,7 +143479,7 @@ return { [1]="heist_additional_perandus_rewards_from_reward_chests_%" } }, - [6381]={ + [6493]={ [1]={ [1]={ limit={ @@ -140238,7 +143495,7 @@ return { [1]="heist_additional_talisman_rewards_from_reward_chests_%" } }, - [6382]={ + [6494]={ [1]={ [1]={ limit={ @@ -140254,7 +143511,7 @@ return { [1]="heist_additional_uniques_rewards_from_reward_chests_%" } }, - [6383]={ + [6495]={ [1]={ [1]={ limit={ @@ -140270,7 +143527,7 @@ return { [1]="heist_additional_weapons_rewards_from_reward_chests_%" } }, - [6384]={ + [6496]={ [1]={ [1]={ limit={ @@ -140299,7 +143556,7 @@ return { [1]="heist_alert_level_gained_on_monster_death" } }, - [6385]={ + [6497]={ [1]={ [1]={ [1]={ @@ -140336,7 +143593,7 @@ return { [1]="heist_alert_level_gained_per_10_sec" } }, - [6386]={ + [6498]={ [1]={ [1]={ limit={ @@ -140352,7 +143609,7 @@ return { [1]="heist_chests_chance_for_secondary_objectives_%" } }, - [6387]={ + [6499]={ [1]={ [1]={ limit={ @@ -140377,7 +143634,7 @@ return { [1]="heist_chests_double_blighted_maps_and_catalysts_%" } }, - [6388]={ + [6500]={ [1]={ [1]={ limit={ @@ -140402,7 +143659,7 @@ return { [1]="heist_chests_double_breach_splinters_%" } }, - [6389]={ + [6501]={ [1]={ [1]={ limit={ @@ -140427,7 +143684,7 @@ return { [1]="heist_chests_double_catalysts_%" } }, - [6390]={ + [6502]={ [1]={ [1]={ limit={ @@ -140452,7 +143709,7 @@ return { [1]="heist_chests_double_currency_%" } }, - [6391]={ + [6503]={ [1]={ [1]={ limit={ @@ -140477,7 +143734,7 @@ return { [1]="heist_chests_double_delirium_orbs_and_splinters_%" } }, - [6392]={ + [6504]={ [1]={ [1]={ limit={ @@ -140502,7 +143759,7 @@ return { [1]="heist_chests_double_divination_cards_%" } }, - [6393]={ + [6505]={ [1]={ [1]={ limit={ @@ -140527,7 +143784,7 @@ return { [1]="heist_chests_double_essences_%" } }, - [6394]={ + [6506]={ [1]={ [1]={ limit={ @@ -140552,7 +143809,7 @@ return { [1]="heist_chests_double_jewels_%" } }, - [6395]={ + [6507]={ [1]={ [1]={ limit={ @@ -140577,7 +143834,7 @@ return { [1]="heist_chests_double_legion_splinters_%" } }, - [6396]={ + [6508]={ [1]={ [1]={ limit={ @@ -140602,7 +143859,7 @@ return { [1]="heist_chests_double_map_fragments_%" } }, - [6397]={ + [6509]={ [1]={ [1]={ limit={ @@ -140627,7 +143884,7 @@ return { [1]="heist_chests_double_maps_%" } }, - [6398]={ + [6510]={ [1]={ [1]={ limit={ @@ -140652,7 +143909,7 @@ return { [1]="heist_chests_double_oils_%" } }, - [6399]={ + [6511]={ [1]={ [1]={ limit={ @@ -140677,7 +143934,7 @@ return { [1]="heist_chests_double_scarabs_%" } }, - [6400]={ + [6512]={ [1]={ [1]={ limit={ @@ -140702,7 +143959,7 @@ return { [1]="heist_chests_double_sextants_%" } }, - [6401]={ + [6513]={ [1]={ [1]={ limit={ @@ -140731,7 +143988,7 @@ return { [1]="heist_chests_double_uniques_%" } }, - [6402]={ + [6514]={ [1]={ [1]={ limit={ @@ -140760,7 +144017,7 @@ return { [1]="heist_chests_unique_rarity_%" } }, - [6403]={ + [6515]={ [1]={ [1]={ limit={ @@ -140785,7 +144042,7 @@ return { [1]="heist_coins_from_world_chests_double_%" } }, - [6404]={ + [6516]={ [1]={ [1]={ limit={ @@ -140810,7 +144067,7 @@ return { [1]="heist_coins_dropped_by_monsters_double_%" } }, - [6405]={ + [6517]={ [1]={ [1]={ limit={ @@ -140839,7 +144096,7 @@ return { [1]="heist_contract_alert_level_from_chests_+%" } }, - [6406]={ + [6518]={ [1]={ [1]={ limit={ @@ -140868,7 +144125,7 @@ return { [1]="heist_contract_alert_level_from_monsters_+%" } }, - [6407]={ + [6519]={ [1]={ [1]={ limit={ @@ -140897,7 +144154,7 @@ return { [1]="heist_contract_alert_level_+%" } }, - [6408]={ + [6520]={ [1]={ [1]={ limit={ @@ -140926,7 +144183,7 @@ return { [1]="heist_contract_gang_cost_+%" } }, - [6409]={ + [6521]={ [1]={ [1]={ limit={ @@ -140942,7 +144199,7 @@ return { [1]="heist_contract_gang_takes_no_cut" } }, - [6410]={ + [6522]={ [1]={ [1]={ limit={ @@ -140958,7 +144215,7 @@ return { [1]="heist_contract_generate_secondary_objectives_chance_%" } }, - [6411]={ + [6523]={ [1]={ [1]={ limit={ @@ -140987,7 +144244,7 @@ return { [1]="heist_contract_guarding_monsters_damage_+%" } }, - [6412]={ + [6524]={ [1]={ [1]={ limit={ @@ -141016,7 +144273,7 @@ return { [1]="heist_contract_guarding_monsters_take_damage_+%" } }, - [6413]={ + [6525]={ [1]={ [1]={ limit={ @@ -141041,7 +144298,7 @@ return { [1]="heist_contract_mechanical_unlock_count" } }, - [6414]={ + [6526]={ [1]={ [1]={ limit={ @@ -141066,7 +144323,7 @@ return { [1]="heist_contract_magical_unlock_count" } }, - [6415]={ + [6527]={ [1]={ [1]={ limit={ @@ -141082,7 +144339,7 @@ return { [1]="heist_contract_no_travel_cost" } }, - [6416]={ + [6528]={ [1]={ [1]={ limit={ @@ -141111,7 +144368,7 @@ return { [1]="heist_contract_npc_cost_+%" } }, - [6417]={ + [6529]={ [1]={ [1]={ limit={ @@ -141140,7 +144397,7 @@ return { [1]="heist_contract_objective_completion_time_+%" } }, - [6418]={ + [6530]={ [1]={ [1]={ limit={ @@ -141169,7 +144426,7 @@ return { [1]="heist_contract_patrol_additional_elite_chance_+%" } }, - [6419]={ + [6531]={ [1]={ [1]={ limit={ @@ -141198,7 +144455,7 @@ return { [1]="heist_contract_patrol_damage_+%" } }, - [6420]={ + [6532]={ [1]={ [1]={ limit={ @@ -141227,7 +144484,7 @@ return { [1]="heist_contract_patrol_take_damage_+%" } }, - [6421]={ + [6533]={ [1]={ [1]={ limit={ @@ -141256,7 +144513,7 @@ return { [1]="heist_contract_side_area_monsters_damage_+%" } }, - [6422]={ + [6534]={ [1]={ [1]={ limit={ @@ -141285,7 +144542,7 @@ return { [1]="heist_contract_side_area_monsters_take_damage_+%" } }, - [6423]={ + [6535]={ [1]={ [1]={ limit={ @@ -141314,7 +144571,7 @@ return { [1]="heist_contract_total_cost_+%_final" } }, - [6424]={ + [6536]={ [1]={ [1]={ limit={ @@ -141343,7 +144600,7 @@ return { [1]="heist_contract_travel_cost_+%" } }, - [6425]={ + [6537]={ [1]={ [1]={ limit={ @@ -141368,7 +144625,7 @@ return { [1]="heist_currency_alchemy_drops_as_blessed_%" } }, - [6426]={ + [6538]={ [1]={ [1]={ limit={ @@ -141393,7 +144650,7 @@ return { [1]="heist_currency_alchemy_drops_as_divine_%" } }, - [6427]={ + [6539]={ [1]={ [1]={ limit={ @@ -141418,7 +144675,7 @@ return { [1]="heist_currency_alchemy_drops_as_exalted_%" } }, - [6428]={ + [6540]={ [1]={ [1]={ limit={ @@ -141443,7 +144700,7 @@ return { [1]="heist_currency_alteration_drops_as_alchemy_%" } }, - [6429]={ + [6541]={ [1]={ [1]={ limit={ @@ -141468,7 +144725,7 @@ return { [1]="heist_currency_alteration_drops_as_chaos_%" } }, - [6430]={ + [6542]={ [1]={ [1]={ limit={ @@ -141493,7 +144750,7 @@ return { [1]="heist_currency_alteration_drops_as_regal_%" } }, - [6431]={ + [6543]={ [1]={ [1]={ limit={ @@ -141518,7 +144775,7 @@ return { [1]="heist_currency_augmentation_drops_as_alchemy_%" } }, - [6432]={ + [6544]={ [1]={ [1]={ limit={ @@ -141543,7 +144800,7 @@ return { [1]="heist_currency_augmentation_drops_as_chaos_%" } }, - [6433]={ + [6545]={ [1]={ [1]={ limit={ @@ -141568,7 +144825,7 @@ return { [1]="heist_currency_augmentation_drops_as_regal_%" } }, - [6434]={ + [6546]={ [1]={ [1]={ limit={ @@ -141593,7 +144850,7 @@ return { [1]="heist_currency_chaos_drops_as_blessed_%" } }, - [6435]={ + [6547]={ [1]={ [1]={ limit={ @@ -141618,7 +144875,7 @@ return { [1]="heist_currency_chaos_drops_as_divine_%" } }, - [6436]={ + [6548]={ [1]={ [1]={ limit={ @@ -141643,7 +144900,7 @@ return { [1]="heist_currency_chaos_drops_as_exalted_%" } }, - [6437]={ + [6549]={ [1]={ [1]={ limit={ @@ -141668,7 +144925,7 @@ return { [1]="heist_currency_chromatic_drops_as_fusing_%" } }, - [6438]={ + [6550]={ [1]={ [1]={ limit={ @@ -141693,7 +144950,7 @@ return { [1]="heist_currency_chromatic_drops_as_jewellers_%" } }, - [6439]={ + [6551]={ [1]={ [1]={ limit={ @@ -141718,7 +144975,7 @@ return { [1]="heist_currency_jewellers_drops_as_fusing_%" } }, - [6440]={ + [6552]={ [1]={ [1]={ limit={ @@ -141743,7 +145000,7 @@ return { [1]="heist_currency_regal_drops_as_blessed_%" } }, - [6441]={ + [6553]={ [1]={ [1]={ limit={ @@ -141768,7 +145025,7 @@ return { [1]="heist_currency_regal_drops_as_divine_%" } }, - [6442]={ + [6554]={ [1]={ [1]={ limit={ @@ -141793,7 +145050,7 @@ return { [1]="heist_currency_regal_drops_as_exalted_%" } }, - [6443]={ + [6555]={ [1]={ [1]={ limit={ @@ -141818,7 +145075,7 @@ return { [1]="heist_currency_regret_drops_as_annulment_%" } }, - [6444]={ + [6556]={ [1]={ [1]={ limit={ @@ -141843,7 +145100,7 @@ return { [1]="heist_currency_scouring_drops_as_annulment_%" } }, - [6445]={ + [6557]={ [1]={ [1]={ limit={ @@ -141868,7 +145125,7 @@ return { [1]="heist_currency_scouring_drops_as_regret_%" } }, - [6446]={ + [6558]={ [1]={ [1]={ limit={ @@ -141893,7 +145150,7 @@ return { [1]="heist_currency_transmutation_drops_as_alchemy_%" } }, - [6447]={ + [6559]={ [1]={ [1]={ limit={ @@ -141918,7 +145175,7 @@ return { [1]="heist_currency_transmutation_drops_as_chaos_%" } }, - [6448]={ + [6560]={ [1]={ [1]={ limit={ @@ -141943,7 +145200,7 @@ return { [1]="heist_currency_transmutation_drops_as_regal_%" } }, - [6449]={ + [6561]={ [1]={ [1]={ limit={ @@ -141968,7 +145225,7 @@ return { [1]="heist_drops_double_currency_%" } }, - [6450]={ + [6562]={ [1]={ [1]={ limit={ @@ -141984,7 +145241,7 @@ return { [1]="heist_guards_are_magic" } }, - [6451]={ + [6563]={ [1]={ [1]={ limit={ @@ -142000,7 +145257,7 @@ return { [1]="heist_guards_are_rare" } }, - [6452]={ + [6564]={ [1]={ [1]={ limit={ @@ -142016,7 +145273,7 @@ return { [1]="heist_interruption_resistance_%" } }, - [6453]={ + [6565]={ [1]={ [1]={ limit={ @@ -142045,7 +145302,7 @@ return { [1]="heist_item_quantity_+%" } }, - [6454]={ + [6566]={ [1]={ [1]={ limit={ @@ -142074,7 +145331,7 @@ return { [1]="heist_item_rarity_+%" } }, - [6455]={ + [6567]={ [1]={ [1]={ limit={ @@ -142099,7 +145356,7 @@ return { [1]="heist_items_are_fully_linked_%" } }, - [6456]={ + [6568]={ [1]={ [1]={ limit={ @@ -142124,7 +145381,7 @@ return { [1]="heist_items_drop_corrupted_%" } }, - [6457]={ + [6569]={ [1]={ [1]={ limit={ @@ -142149,7 +145406,7 @@ return { [1]="heist_items_drop_identified_%" } }, - [6458]={ + [6570]={ [1]={ [1]={ limit={ @@ -142174,7 +145431,7 @@ return { [1]="heist_items_have_elder_influence_%" } }, - [6459]={ + [6571]={ [1]={ [1]={ limit={ @@ -142199,7 +145456,7 @@ return { [1]="heist_items_have_one_additional_socket_%" } }, - [6460]={ + [6572]={ [1]={ [1]={ limit={ @@ -142224,7 +145481,7 @@ return { [1]="heist_items_have_shaper_influence_%" } }, - [6461]={ + [6573]={ [1]={ [1]={ limit={ @@ -142240,7 +145497,7 @@ return { [1]="heist_job_agility_level_+" } }, - [6462]={ + [6574]={ [1]={ [1]={ limit={ @@ -142256,7 +145513,7 @@ return { [1]="heist_job_brute_force_level_+" } }, - [6463]={ + [6575]={ [1]={ [1]={ limit={ @@ -142272,7 +145529,7 @@ return { [1]="heist_job_counter_thaumaturgy_level_+" } }, - [6464]={ + [6576]={ [1]={ [1]={ limit={ @@ -142288,7 +145545,7 @@ return { [1]="heist_job_deception_level_+" } }, - [6465]={ + [6577]={ [1]={ [1]={ limit={ @@ -142304,7 +145561,7 @@ return { [1]="heist_job_demolition_level_+" } }, - [6466]={ + [6578]={ [1]={ [1]={ limit={ @@ -142333,7 +145590,7 @@ return { [1]="heist_job_demolition_speed_+%" } }, - [6467]={ + [6579]={ [1]={ [1]={ limit={ @@ -142349,7 +145606,7 @@ return { [1]="heist_job_engineering_level_+" } }, - [6468]={ + [6580]={ [1]={ [1]={ limit={ @@ -142365,7 +145622,7 @@ return { [1]="heist_job_lockpicking_level_+" } }, - [6469]={ + [6581]={ [1]={ [1]={ limit={ @@ -142394,7 +145651,7 @@ return { [1]="heist_job_lockpicking_speed_+%" } }, - [6470]={ + [6582]={ [1]={ [1]={ limit={ @@ -142410,7 +145667,7 @@ return { [1]="heist_job_perception_level_+" } }, - [6471]={ + [6583]={ [1]={ [1]={ limit={ @@ -142426,7 +145683,7 @@ return { [1]="heist_job_trap_disarmament_level_+" } }, - [6472]={ + [6584]={ [1]={ [1]={ limit={ @@ -142455,7 +145712,7 @@ return { [1]="heist_job_trap_disarmament_speed_+%" } }, - [6473]={ + [6585]={ [1]={ [1]={ limit={ @@ -142471,7 +145728,7 @@ return { [1]="heist_lockdown_is_instant" } }, - [6474]={ + [6586]={ [1]={ [1]={ limit={ @@ -142487,7 +145744,7 @@ return { [1]="heist_nenet_scouts_nearby_patrols_and_mini_bosses" } }, - [6475]={ + [6587]={ [1]={ [1]={ limit={ @@ -142516,7 +145773,7 @@ return { [1]="heist_npc_blueprint_reveal_cost_+%" } }, - [6476]={ + [6588]={ [1]={ [1]={ limit={ @@ -142541,7 +145798,7 @@ return { [1]="heist_npc_contract_generates_gianna_intelligence" } }, - [6477]={ + [6589]={ [1]={ [1]={ limit={ @@ -142566,7 +145823,7 @@ return { [1]="heist_npc_contract_generates_niles_intelligence" } }, - [6478]={ + [6590]={ [1]={ [1]={ limit={ @@ -142582,7 +145839,7 @@ return { [1]="heist_npc_display_huck_combat" } }, - [6479]={ + [6591]={ [1]={ [1]={ limit={ @@ -142611,7 +145868,7 @@ return { [1]="heist_npc_karst_alert_level_from_chests_+%_final" } }, - [6480]={ + [6592]={ [1]={ [1]={ limit={ @@ -142640,7 +145897,7 @@ return { [1]="heist_npc_nenet_alert_level_+%_final" } }, - [6481]={ + [6593]={ [1]={ [1]={ limit={ @@ -142669,7 +145926,7 @@ return { [1]="heist_npc_tullina_alert_level_+%_final" } }, - [6482]={ + [6594]={ [1]={ [1]={ limit={ @@ -142698,7 +145955,7 @@ return { [1]="heist_npc_vinderi_alert_level_+%_final" } }, - [6483]={ + [6595]={ [1]={ [1]={ limit={ @@ -142714,7 +145971,7 @@ return { [1]="heist_patrols_are_magic" } }, - [6484]={ + [6596]={ [1]={ [1]={ limit={ @@ -142730,7 +145987,7 @@ return { [1]="heist_patrols_are_rare" } }, - [6485]={ + [6597]={ [1]={ [1]={ limit={ @@ -142746,7 +146003,7 @@ return { [1]="heist_player_additional_maximum_resistances_%_per_25%_alert_level" } }, - [6486]={ + [6598]={ [1]={ [1]={ limit={ @@ -142775,7 +146032,7 @@ return { [1]="heist_player_armour_+%_final_per_25%_alert_level" } }, - [6487]={ + [6599]={ [1]={ [1]={ limit={ @@ -142791,7 +146048,7 @@ return { [1]="heist_player_cold_resistance_%_per_25%_alert_level" } }, - [6488]={ + [6600]={ [1]={ [1]={ limit={ @@ -142820,7 +146077,7 @@ return { [1]="heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level" } }, - [6489]={ + [6601]={ [1]={ [1]={ limit={ @@ -142849,7 +146106,7 @@ return { [1]="heist_player_evasion_rating_+%_final_per_25%_alert_level" } }, - [6490]={ + [6602]={ [1]={ [1]={ limit={ @@ -142878,7 +146135,7 @@ return { [1]="heist_player_experience_gain_+%" } }, - [6491]={ + [6603]={ [1]={ [1]={ limit={ @@ -142894,7 +146151,7 @@ return { [1]="heist_player_fire_resistance_%_per_25%_alert_level" } }, - [6492]={ + [6604]={ [1]={ [1]={ limit={ @@ -142923,7 +146180,7 @@ return { [1]="heist_player_flask_charges_gained_+%_per_25%_alert_level" } }, - [6493]={ + [6605]={ [1]={ [1]={ limit={ @@ -142952,7 +146209,7 @@ return { [1]="heist_player_life_recovery_rate_+%_final_per_25%_alert_level" } }, - [6494]={ + [6606]={ [1]={ [1]={ limit={ @@ -142968,7 +146225,7 @@ return { [1]="heist_player_lightning_resistance_%_per_25%_alert_level" } }, - [6495]={ + [6607]={ [1]={ [1]={ limit={ @@ -142997,7 +146254,7 @@ return { [1]="heist_player_mana_recovery_rate_+%_final_per_25%_alert_level" } }, - [6496]={ + [6608]={ [1]={ [1]={ limit={ @@ -143026,7 +146283,7 @@ return { [1]="heist_reinforcements_attack_speed_+%" } }, - [6497]={ + [6609]={ [1]={ [1]={ limit={ @@ -143055,7 +146312,7 @@ return { [1]="heist_reinforcements_cast_speed_+%" } }, - [6498]={ + [6610]={ [1]={ [1]={ limit={ @@ -143084,7 +146341,7 @@ return { [1]="heist_reinforcements_movements_speed_+%" } }, - [6499]={ + [6611]={ [1]={ [1]={ limit={ @@ -143113,7 +146370,7 @@ return { [1]="heist_side_reward_room_monsters_+%" } }, - [6500]={ + [6612]={ [1]={ [1]={ limit={ @@ -143138,7 +146395,7 @@ return { [1]="hellscape_extra_item_slots" } }, - [6501]={ + [6613]={ [1]={ [1]={ limit={ @@ -143163,7 +146420,7 @@ return { [1]="hellscape_extra_map_slots" } }, - [6502]={ + [6614]={ [1]={ [1]={ limit={ @@ -143179,7 +146436,7 @@ return { [1]="hellscaping_add_corruption_implicit_chance_%" } }, - [6503]={ + [6615]={ [1]={ [1]={ limit={ @@ -143195,7 +146452,7 @@ return { [1]="hellscaping_add_explicit_mod_chance_%" } }, - [6504]={ + [6616]={ [1]={ [1]={ limit={ @@ -143211,7 +146468,7 @@ return { [1]="hellscaping_additional_link_chance_%" } }, - [6505]={ + [6617]={ [1]={ [1]={ limit={ @@ -143227,7 +146484,7 @@ return { [1]="hellscaping_additional_socket_chance_%" } }, - [6506]={ + [6618]={ [1]={ [1]={ limit={ @@ -143243,7 +146500,7 @@ return { [1]="hellscaping_additional_upside_chance_%" } }, - [6507]={ + [6619]={ [1]={ [1]={ limit={ @@ -143259,7 +146516,7 @@ return { [1]="hellscaping_downsides_tier_downgrade_chance_%" } }, - [6508]={ + [6620]={ [1]={ [1]={ limit={ @@ -143275,7 +146532,7 @@ return { [1]="hellscaping_speed_+%_per_map_hellscape_tier" } }, - [6509]={ + [6621]={ [1]={ [1]={ limit={ @@ -143291,7 +146548,7 @@ return { [1]="armour_hellscaping_speed_+%" } }, - [6510]={ + [6622]={ [1]={ [1]={ limit={ @@ -143307,7 +146564,7 @@ return { [1]="jewellery_hellscaping_speed_+%" } }, - [6511]={ + [6623]={ [1]={ [1]={ limit={ @@ -143323,7 +146580,7 @@ return { [1]="map_hellscaping_speed_+%" } }, - [6512]={ + [6624]={ [1]={ [1]={ limit={ @@ -143339,7 +146596,7 @@ return { [1]="weapon_hellscaping_speed_+%" } }, - [6513]={ + [6625]={ [1]={ [1]={ limit={ @@ -143355,7 +146612,7 @@ return { [1]="quiver_hellscaping_speed_+%" } }, - [6514]={ + [6626]={ [1]={ [1]={ limit={ @@ -143371,7 +146628,7 @@ return { [1]="hellscaping_upgrade_mod_tier_chance_%" } }, - [6515]={ + [6627]={ [1]={ [1]={ limit={ @@ -143387,7 +146644,7 @@ return { [1]="hellscaping_upsides_tier_upgrade_chance_%" } }, - [6516]={ + [6628]={ [1]={ [1]={ limit={ @@ -143403,7 +146660,7 @@ return { [1]="helmet_mod_freeze_as_though_damage_+%_final" } }, - [6517]={ + [6629]={ [1]={ [1]={ limit={ @@ -143419,7 +146676,7 @@ return { [1]="helmet_mod_shock_as_though_damage_+%_final" } }, - [6518]={ + [6630]={ [1]={ [1]={ limit={ @@ -143448,7 +146705,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [6519]={ + [6631]={ [1]={ [1]={ limit={ @@ -143464,7 +146721,7 @@ return { [1]="herald_mana_reservation_override_45%" } }, - [6520]={ + [6632]={ [1]={ [1]={ limit={ @@ -143493,7 +146750,7 @@ return { [1]="herald_of_agony_buff_drop_off_speed_+%" } }, - [6521]={ + [6633]={ [1]={ [1]={ limit={ @@ -143522,7 +146779,7 @@ return { [1]="herald_of_agony_buff_effect_+%" } }, - [6522]={ + [6634]={ [1]={ [1]={ [1]={ @@ -143559,7 +146816,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_-2%_per_1" } }, - [6523]={ + [6635]={ [1]={ [1]={ limit={ @@ -143588,7 +146845,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_+%" } }, - [6524]={ + [6636]={ [1]={ [1]={ limit={ @@ -143621,7 +146878,7 @@ return { [1]="herald_of_agony_mana_reservation_+%" } }, - [6525]={ + [6637]={ [1]={ [1]={ limit={ @@ -143650,7 +146907,7 @@ return { [1]="herald_of_ash_buff_effect_+%" } }, - [6526]={ + [6638]={ [1]={ [1]={ [1]={ @@ -143687,7 +146944,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_-2%_per_1" } }, - [6527]={ + [6639]={ [1]={ [1]={ limit={ @@ -143716,7 +146973,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_+%" } }, - [6528]={ + [6640]={ [1]={ [1]={ limit={ @@ -143745,7 +147002,7 @@ return { [1]="herald_of_ice_buff_effect_+%" } }, - [6529]={ + [6641]={ [1]={ [1]={ [1]={ @@ -143782,7 +147039,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [6530]={ + [6642]={ [1]={ [1]={ limit={ @@ -143811,7 +147068,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_+%" } }, - [6531]={ + [6643]={ [1]={ [1]={ limit={ @@ -143827,7 +147084,7 @@ return { [1]="herald_of_light_and_dominating_blow_minions_use_holy_slam" } }, - [6532]={ + [6644]={ [1]={ [1]={ limit={ @@ -143856,7 +147113,7 @@ return { [1]="herald_of_light_buff_effect_+%" } }, - [6533]={ + [6645]={ [1]={ [1]={ limit={ @@ -143885,7 +147142,7 @@ return { [1]="herald_of_light_minion_area_of_effect_+%" } }, - [6534]={ + [6646]={ [1]={ [1]={ [1]={ @@ -143922,7 +147179,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_-2%_per_1" } }, - [6535]={ + [6647]={ [1]={ [1]={ limit={ @@ -143951,7 +147208,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_+%" } }, - [6536]={ + [6648]={ [1]={ [1]={ limit={ @@ -143984,7 +147241,7 @@ return { [1]="herald_of_purity_mana_reservation_+%" } }, - [6537]={ + [6649]={ [1]={ [1]={ limit={ @@ -144009,7 +147266,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [6538]={ + [6650]={ [1]={ [1]={ limit={ @@ -144038,7 +147295,7 @@ return { [1]="herald_of_thunder_buff_effect_+%" } }, - [6539]={ + [6651]={ [1]={ [1]={ [1]={ @@ -144075,7 +147332,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_-2%_per_1" } }, - [6540]={ + [6652]={ [1]={ [1]={ limit={ @@ -144104,7 +147361,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_+%" } }, - [6541]={ + [6653]={ [1]={ [1]={ limit={ @@ -144129,7 +147386,7 @@ return { [1]="herald_scorpion_number_of_additional_projectiles" } }, - [6542]={ + [6654]={ [1]={ [1]={ [1]={ @@ -144166,7 +147423,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_-2%_per_1" } }, - [6543]={ + [6655]={ [1]={ [1]={ limit={ @@ -144195,7 +147452,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_+%" } }, - [6544]={ + [6656]={ [1]={ [1]={ limit={ @@ -144224,7 +147481,7 @@ return { [1]="herald_skills_mana_reservation_+%" } }, - [6545]={ + [6657]={ [1]={ [1]={ limit={ @@ -144253,7 +147510,7 @@ return { [1]="hex_skill_duration_+%" } }, - [6546]={ + [6658]={ [1]={ [1]={ limit={ @@ -144282,7 +147539,7 @@ return { [1]="hexblast_damage_+%" } }, - [6547]={ + [6659]={ [1]={ [1]={ limit={ @@ -144298,7 +147555,7 @@ return { [1]="hexblast_%_chance_to_not_consume_hex" } }, - [6548]={ + [6660]={ [1]={ [1]={ limit={ @@ -144327,7 +147584,7 @@ return { [1]="hexblast_skill_area_of_effect_+%" } }, - [6549]={ + [6661]={ [1]={ [1]={ [1]={ @@ -144356,7 +147613,7 @@ return { [2]="hex_remove_at_effect_variance" } }, - [6550]={ + [6662]={ [1]={ [1]={ limit={ @@ -144372,7 +147629,7 @@ return { [1]="hexproof_if_right_ring_is_magic_item" } }, - [6551]={ + [6663]={ [1]={ [1]={ limit={ @@ -144388,7 +147645,7 @@ return { [1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%" } }, - [6552]={ + [6664]={ [1]={ [1]={ limit={ @@ -144404,7 +147661,7 @@ return { [1]="hierophant_gain_arcane_surge_on_mana_use_threshold" } }, - [6553]={ + [6665]={ [1]={ [1]={ limit={ @@ -144433,7 +147690,7 @@ return { [1]="hierophant_mana_cost_+%_final" } }, - [6554]={ + [6666]={ [1]={ [1]={ limit={ @@ -144462,7 +147719,7 @@ return { [1]="hierophant_mana_reservation_+%_final" } }, - [6555]={ + [6667]={ [1]={ [1]={ limit={ @@ -144478,7 +147735,7 @@ return { [1]="hinder_chance_%_on_spreading_poioson" } }, - [6556]={ + [6668]={ [1]={ [1]={ limit={ @@ -144507,7 +147764,7 @@ return { [1]="hinder_duration_+%" } }, - [6557]={ + [6669]={ [1]={ [1]={ limit={ @@ -144536,7 +147793,7 @@ return { [1]="hinder_effect_on_self_+%" } }, - [6558]={ + [6670]={ [1]={ [1]={ limit={ @@ -144565,7 +147822,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [6559]={ + [6671]={ [1]={ [1]={ limit={ @@ -144594,7 +147851,65 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [6560]={ + [6672]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies Hindered by you take {0}% increased Elemental Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies Hindered by you take {0}% reduced Elemental" + } + }, + stats={ + [1]="hinder_enemy_elemental_damage_taken_+%" + } + }, + [6673]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies Hindered by you take {0}% increased Physical Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies Hindered by you take {0}% reduced Physical Damage" + } + }, + stats={ + [1]="hinder_enemy_physical_damage_taken_+%" + } + }, + [6674]={ [1]={ [1]={ limit={ @@ -144623,7 +147938,7 @@ return { [1]="hit_damage_+%_vs_ignited_enemies" } }, - [6561]={ + [6675]={ [1]={ [1]={ limit={ @@ -144652,7 +147967,7 @@ return { [1]="hit_damage_electrocute_multiplier_+%" } }, - [6562]={ + [6676]={ [1]={ [1]={ limit={ @@ -144681,7 +147996,7 @@ return { [1]="hit_damage_electrocute_multiplier_+%_vs_shocked_enemies" } }, - [6563]={ + [6677]={ [1]={ [1]={ limit={ @@ -144710,7 +148025,94 @@ return { [1]="hit_damage_freeze_multiplier_+%_against_ignited_enemies" } }, - [6564]={ + [6678]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Freeze Buildup if you've consumed an Power Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Freeze Buildup if you've consumed an Power Charge Recently" + } + }, + stats={ + [1]="hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently" + } + }, + [6679]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Immobilisation buildup" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Immobilisation buildup" + } + }, + stats={ + [1]="hit_damage_immobilisation_multiplier_+%" + } + }, + [6680]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Immobilisation buildup against Constructs" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Immobilisation buildup against Constructs" + } + }, + stats={ + [1]="hit_damage_immobilisation_multiplier_+%_vs_constructs" + } + }, + [6681]={ [1]={ [1]={ limit={ @@ -144739,7 +148141,7 @@ return { [1]="hit_damage_pin_multiplier_+%" } }, - [6565]={ + [6682]={ [1]={ [1]={ limit={ @@ -144768,7 +148170,7 @@ return { [1]="hit_damage_+%" } }, - [6566]={ + [6683]={ [1]={ [1]={ limit={ @@ -144797,7 +148199,7 @@ return { [1]="hit_damage_+%_vs_bleeding_enemies" } }, - [6567]={ + [6684]={ [1]={ [1]={ limit={ @@ -144826,7 +148228,7 @@ return { [1]="hit_damage_+%_vs_blinded_enemies" } }, - [6568]={ + [6685]={ [1]={ [1]={ limit={ @@ -144855,7 +148257,7 @@ return { [1]="hit_damage_+%_vs_chilled_enemies" } }, - [6569]={ + [6686]={ [1]={ [1]={ limit={ @@ -144884,7 +148286,7 @@ return { [1]="hit_damage_+%_vs_cursed_enemies" } }, - [6570]={ + [6687]={ [1]={ [1]={ limit={ @@ -144913,7 +148315,7 @@ return { [1]="hit_damage_+%_vs_enemies_affected_by_ailments" } }, - [6571]={ + [6688]={ [1]={ [1]={ limit={ @@ -144942,7 +148344,7 @@ return { [1]="hit_damage_+%_vs_unique_enemies" } }, - [6572]={ + [6689]={ [1]={ [1]={ limit={ @@ -144951,23 +148353,27 @@ return { [2]="#" } }, - text="{0}% more Stun Buildup with Critical Hits" + text="{0}% increased Stun Buildup per 10 Tribute" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% less Stun Buildup with Critical Hits" + text="{0}% reduced Stun Buildup per 10 Tribute" } }, stats={ - [1]="hit_damage_stun_multiplier_+%_final_with_crits" + [1]="hit_damage_stun_multiplier_+%_per_10_tribute" } }, - [6573]={ + [6690]={ [1]={ [1]={ limit={ @@ -144996,7 +148402,7 @@ return { [1]="hit_damage_stun_multiplier_+%_vs_enemies_at_close_range" } }, - [6574]={ + [6691]={ [1]={ [1]={ limit={ @@ -145021,7 +148427,7 @@ return { [1]="hit_damage_stun_multiplier_+%_vs_enemies_on_low_life" } }, - [6575]={ + [6692]={ [1]={ [1]={ limit={ @@ -145046,7 +148452,7 @@ return { [1]="hit_for_%_max_life_es_on_max_infernal_flame" } }, - [6576]={ + [6693]={ [1]={ [1]={ limit={ @@ -145062,7 +148468,7 @@ return { [1]="hit_for_%_of_infernal_flame_on_max_infernal_flame" } }, - [6577]={ + [6694]={ [1]={ [1]={ limit={ @@ -145078,7 +148484,7 @@ return { [1]="hits_against_you_overwhelm_x%_of_physical_damage_reduction" } }, - [6578]={ + [6695]={ [1]={ [1]={ limit={ @@ -145094,7 +148500,23 @@ return { [1]="hits_cannot_be_evaded_vs_blinded_enemies" } }, - [6579]={ + [6696]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits cannot be Evaded by Heavy Stunned Enemies" + } + }, + stats={ + [1]="hits_cannot_be_evaded_vs_heavy_stunned_enemies" + } + }, + [6697]={ [1]={ [1]={ limit={ @@ -145110,7 +148532,7 @@ return { [1]="hits_from_maces_and_sceptres_crush_enemies" } }, - [6580]={ + [6698]={ [1]={ [1]={ limit={ @@ -145126,7 +148548,7 @@ return { [1]="hits_ignore_elemental_resistances_vs_frozen_enemies" } }, - [6581]={ + [6699]={ [1]={ [1]={ limit={ @@ -145142,7 +148564,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped" } }, - [6582]={ + [6700]={ [1]={ [1]={ limit={ @@ -145158,7 +148580,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped" } }, - [6583]={ + [6701]={ [1]={ [1]={ limit={ @@ -145174,7 +148596,7 @@ return { [1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited" } }, - [6584]={ + [6702]={ [1]={ [1]={ limit={ @@ -145190,7 +148612,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds" } }, - [6585]={ + [6703]={ [1]={ [1]={ limit={ @@ -145215,7 +148637,23 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [6586]={ + [6704]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits that inflict Bleeding consume Pinned to gain {0}% increased Magnitude of Bleeding inflicted" + } + }, + stats={ + [1]="hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%" + } + }, + [6705]={ [1]={ [1]={ limit={ @@ -145231,7 +148669,7 @@ return { [1]="hits_treat_enemy_cold_resistance_as_x%" } }, - [6587]={ + [6706]={ [1]={ [1]={ limit={ @@ -145247,7 +148685,7 @@ return { [1]="hits_treat_enemy_fire_resistance_as_x%" } }, - [6588]={ + [6707]={ [1]={ [1]={ limit={ @@ -145263,7 +148701,7 @@ return { [1]="hits_treat_enemy_lightning_resistance_as_x%" } }, - [6589]={ + [6708]={ [1]={ [1]={ limit={ @@ -145279,7 +148717,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond" } }, - [6590]={ + [6709]={ [1]={ [1]={ limit={ @@ -145295,7 +148733,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [6591]={ + [6710]={ [1]={ [1]={ limit={ @@ -145324,7 +148762,7 @@ return { [1]="holy_relic_area_of_effect_+%" } }, - [6592]={ + [6711]={ [1]={ [1]={ limit={ @@ -145340,7 +148778,7 @@ return { [1]="holy_relic_buff_effect_+%" } }, - [6593]={ + [6712]={ [1]={ [1]={ limit={ @@ -145373,7 +148811,7 @@ return { [1]="holy_relic_cooldown_recovery_+%" } }, - [6594]={ + [6713]={ [1]={ [1]={ limit={ @@ -145402,7 +148840,7 @@ return { [1]="holy_relic_damage_+%" } }, - [6595]={ + [6714]={ [1]={ [1]={ limit={ @@ -145431,7 +148869,7 @@ return { [1]="hydro_sphere_pulse_frequency_+%" } }, - [6596]={ + [6715]={ [1]={ [1]={ limit={ @@ -145447,7 +148885,7 @@ return { [1]="ice_and_lightning_trap_base_penetrate_elemental_resistances_%" } }, - [6597]={ + [6716]={ [1]={ [1]={ limit={ @@ -145463,7 +148901,7 @@ return { [1]="ice_and_lightning_trap_can_be_triggered_by_warcries" } }, - [6598]={ + [6717]={ [1]={ [1]={ limit={ @@ -145479,7 +148917,7 @@ return { [1]="ice_and_lightning_traps_cannot_be_triggered_by_enemies" } }, - [6599]={ + [6718]={ [1]={ [1]={ limit={ @@ -145495,7 +148933,7 @@ return { [1]="ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen" } }, - [6600]={ + [6719]={ [1]={ [1]={ limit={ @@ -145524,7 +148962,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [6601]={ + [6720]={ [1]={ [1]={ limit={ @@ -145553,7 +148991,7 @@ return { [1]="ice_crystal_maximum_life_+%" } }, - [6602]={ + [6721]={ [1]={ [1]={ limit={ @@ -145586,7 +149024,7 @@ return { [1]="ice_dash_cooldown_speed_+%" } }, - [6603]={ + [6722]={ [1]={ [1]={ limit={ @@ -145615,7 +149053,7 @@ return { [1]="ice_dash_duration_+%" } }, - [6604]={ + [6723]={ [1]={ [1]={ limit={ @@ -145644,7 +149082,7 @@ return { [1]="ice_dash_travel_distance_+%" } }, - [6605]={ + [6724]={ [1]={ [1]={ limit={ @@ -145660,7 +149098,7 @@ return { [1]="ice_nova_chill_minimum_slow_%" } }, - [6606]={ + [6725]={ [1]={ [1]={ limit={ @@ -145689,7 +149127,7 @@ return { [1]="ice_shot_additional_pierce_per_10_old" } }, - [6607]={ + [6726]={ [1]={ [1]={ limit={ @@ -145718,7 +149156,7 @@ return { [1]="ice_shot_area_angle_+%" } }, - [6608]={ + [6727]={ [1]={ [1]={ limit={ @@ -145743,7 +149181,7 @@ return { [1]="ice_shot_pierce_+" } }, - [6609]={ + [6728]={ [1]={ [1]={ limit={ @@ -145772,7 +149210,7 @@ return { [1]="ice_siphon_trap_chill_effect_+%" } }, - [6610]={ + [6729]={ [1]={ [1]={ limit={ @@ -145801,7 +149239,7 @@ return { [1]="ice_siphon_trap_damage_+%" } }, - [6611]={ + [6730]={ [1]={ [1]={ limit={ @@ -145834,7 +149272,7 @@ return { [1]="ice_siphon_trap_damage_taken_+%_per_beam" } }, - [6612]={ + [6731]={ [1]={ [1]={ limit={ @@ -145863,7 +149301,7 @@ return { [1]="ice_siphon_trap_duration_+%" } }, - [6613]={ + [6732]={ [1]={ [1]={ limit={ @@ -145879,7 +149317,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_nova" } }, - [6614]={ + [6733]={ [1]={ [1]={ limit={ @@ -145895,7 +149333,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_return" } }, - [6615]={ + [6734]={ [1]={ [1]={ limit={ @@ -145928,7 +149366,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [6616]={ + [6735]={ [1]={ [1]={ limit={ @@ -145953,7 +149391,7 @@ return { [1]="ice_spear_number_of_additional_projectiles" } }, - [6617]={ + [6736]={ [1]={ [1]={ limit={ @@ -145969,7 +149407,7 @@ return { [1]="ice_trap_cold_resistance_penetration_%" } }, - [6618]={ + [6737]={ [1]={ [1]={ limit={ @@ -145985,7 +149423,7 @@ return { [1]="ignite_as_though_dealing_X_damage_in_your_presence" } }, - [6619]={ + [6738]={ [1]={ [1]={ limit={ @@ -145994,7 +149432,7 @@ return { [2]="#" } }, - text="{0}% increased effect of Ignite on you" + text="{0}% increased Magnitude of Ignite on you" }, [2]={ [1]={ @@ -146011,14 +149449,14 @@ return { [2]=-1 } }, - text="{0}% reduced effect of Ignite on you" + text="{0}% reduced Magnitude of Ignite on you" } }, stats={ [1]="ignite_effect_on_self_+%" } }, - [6620]={ + [6739]={ [1]={ [1]={ limit={ @@ -146027,7 +149465,7 @@ return { [2]="#" } }, - text="{0}% increased Magnitude of Ignite you inflict" + text="{0}% increased Magnitude of Ignite against Frozen enemies" }, [2]={ [1]={ @@ -146040,14 +149478,14 @@ return { [2]=-1 } }, - text="{0}% reduced Magnitude of Ignite you inflict" + text="{0}% reduced Magnitude of Ignite against Frozen enemies" } }, stats={ - [1]="base_ignite_effect_+%" + [1]="ignite_effect_+%_against_frozen_enemies" } }, - [6621]={ + [6740]={ [1]={ [1]={ limit={ @@ -146056,7 +149494,7 @@ return { [2]="#" } }, - text="{0}% increased Magnitude of Ignite against Frozen enemies" + text="{0}% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, [2]={ [1]={ @@ -146069,14 +149507,14 @@ return { [2]=-1 } }, - text="{0}% reduced Magnitude of Ignite against Frozen enemies" + text="{0}% reduced Magnitude of Ignite if you've consumed an Endurance Charge Recently" } }, stats={ - [1]="ignite_effect_+%_against_frozen_enemies" + [1]="ignite_effect_+%_if_consumed_endurance_charge_recently" } }, - [6622]={ + [6741]={ [1]={ [1]={ limit={ @@ -146105,7 +149543,7 @@ return { [1]="ignite_shock_chill_duration_+%" } }, - [6623]={ + [6742]={ [1]={ [1]={ limit={ @@ -146121,7 +149559,7 @@ return { [1]="ignites_and_chill_apply_elemental_resistance_+" } }, - [6624]={ + [6743]={ [1]={ [1]={ limit={ @@ -146137,7 +149575,23 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [6625]={ + [6744]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignore all Movement Penalties from Armour if you have at least 100 Tribute" + } + }, + stats={ + [1]="ignore_armour_movement_penalties_if_you_have_at_least_100_tribute" + } + }, + [6745]={ [1]={ [1]={ limit={ @@ -146153,7 +149607,7 @@ return { [1]="ignore_strength_requirements_of_melee_weapons_and_skills" } }, - [6626]={ + [6746]={ [1]={ [1]={ limit={ @@ -146169,7 +149623,7 @@ return { [1]="ignores_enemy_cold_resistance" } }, - [6627]={ + [6747]={ [1]={ [1]={ limit={ @@ -146185,7 +149639,7 @@ return { [1]="ignores_enemy_fire_resistance" } }, - [6628]={ + [6748]={ [1]={ [1]={ limit={ @@ -146201,7 +149655,7 @@ return { [1]="ignores_enemy_lightning_resistance" } }, - [6629]={ + [6749]={ [1]={ [1]={ limit={ @@ -146226,7 +149680,7 @@ return { [1]="imbue_weapon_max_exerts" } }, - [6630]={ + [6750]={ [1]={ [1]={ limit={ @@ -146255,7 +149709,7 @@ return { [1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge" } }, - [6631]={ + [6751]={ [1]={ [1]={ [1]={ @@ -146288,7 +149742,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [6632]={ + [6752]={ [1]={ [1]={ limit={ @@ -146304,7 +149758,7 @@ return { [1]="immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion" } }, - [6633]={ + [6753]={ [1]={ [1]={ limit={ @@ -146320,7 +149774,39 @@ return { [1]="immune_to_burning_shocks_and_chilled_ground" } }, - [6634]={ + [6754]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Chill if a majority of your Socketed Support Gems are Blue" + } + }, + stats={ + [1]="immune_to_chill_if_majority_blue_supports_socketed" + } + }, + [6755]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Corrupted Blood" + } + }, + stats={ + [1]="immune_to_corrupted_blood" + } + }, + [6756]={ [1]={ [1]={ limit={ @@ -146336,7 +149822,7 @@ return { [1]="immune_to_curses_if_cast_dispair_in_past_10_seconds" } }, - [6635]={ + [6757]={ [1]={ [1]={ limit={ @@ -146352,7 +149838,7 @@ return { [1]="immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse" } }, - [6636]={ + [6758]={ [1]={ [1]={ limit={ @@ -146368,7 +149854,7 @@ return { [1]="immune_to_curses_while_at_least_X_rage" } }, - [6637]={ + [6759]={ [1]={ [1]={ limit={ @@ -146384,7 +149870,7 @@ return { [1]="immune_to_curses_while_channelling" } }, - [6638]={ + [6760]={ [1]={ [1]={ limit={ @@ -146400,7 +149886,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground" } }, - [6639]={ + [6761]={ [1]={ [1]={ limit={ @@ -146416,7 +149902,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold" } }, - [6640]={ + [6762]={ [1]={ [1]={ limit={ @@ -146432,7 +149918,7 @@ return { [1]="immune_to_elemental_ailments_while_you_have_arcane_surge" } }, - [6641]={ + [6763]={ [1]={ [1]={ limit={ @@ -146448,7 +149934,7 @@ return { [1]="immune_to_exposure" } }, - [6642]={ + [6764]={ [1]={ [1]={ limit={ @@ -146464,7 +149950,7 @@ return { [1]="immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6643]={ + [6765]={ [1]={ [1]={ limit={ @@ -146480,7 +149966,23 @@ return { [1]="immune_to_freeze_and_chill_while_ignited" } }, - [6644]={ + [6766]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Freeze and Chill while affected by Ice Archon" + } + }, + stats={ + [1]="immune_to_freeze_chill_while_ice_archon" + } + }, + [6767]={ [1]={ [1]={ limit={ @@ -146496,7 +149998,7 @@ return { [1]="immune_to_freeze_while_affected_by_purity_of_ice" } }, - [6645]={ + [6768]={ [1]={ [1]={ limit={ @@ -146512,7 +150014,7 @@ return { [1]="immune_to_hinder" } }, - [6646]={ + [6769]={ [1]={ [1]={ limit={ @@ -146528,7 +150030,23 @@ return { [1]="immune_to_ignite_and_shock" } }, - [6647]={ + [6770]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Ignite if a majority of your Socketed Support Gems are Red" + } + }, + stats={ + [1]="immune_to_ignite_if_majority_red_supports_socketed" + } + }, + [6771]={ [1]={ [1]={ limit={ @@ -146544,7 +150062,23 @@ return { [1]="immune_to_ignite_while_affected_by_purity_of_fire" } }, - [6648]={ + [6772]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Ignite while affected by Flame Archon" + } + }, + stats={ + [1]="immune_to_ignite_while_flame_archon" + } + }, + [6773]={ [1]={ [1]={ limit={ @@ -146560,7 +150094,7 @@ return { [1]="immune_to_maim" } }, - [6649]={ + [6774]={ [1]={ [1]={ limit={ @@ -146576,7 +150110,7 @@ return { [1]="immune_to_poison_if_helmet_grants_higher_evasion_than_armour" } }, - [6650]={ + [6775]={ [1]={ [1]={ limit={ @@ -146592,7 +150126,23 @@ return { [1]="immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds" } }, - [6651]={ + [6776]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Shock if a majority of your Socketed Support Gems are Green" + } + }, + stats={ + [1]="immune_to_shock_if_majority_green_supports_socketed" + } + }, + [6777]={ [1]={ [1]={ limit={ @@ -146608,7 +150158,23 @@ return { [1]="immune_to_shock_while_affected_by_purity_of_lightning" } }, - [6652]={ + [6778]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Shock while affected by Lightning Archon" + } + }, + stats={ + [1]="immune_to_shock_while_lightning_archon" + } + }, + [6779]={ [1]={ [1]={ limit={ @@ -146624,7 +150190,7 @@ return { [1]="immune_to_status_ailments_while_focused" } }, - [6653]={ + [6780]={ [1]={ [1]={ limit={ @@ -146640,7 +150206,7 @@ return { [1]="immune_to_thorns_damage" } }, - [6654]={ + [6781]={ [1]={ [1]={ limit={ @@ -146656,7 +150222,7 @@ return { [1]="immune_to_wither" } }, - [6655]={ + [6782]={ [1]={ [1]={ limit={ @@ -146672,7 +150238,7 @@ return { [1]="impacting_steel_%_chance_to_not_consume_ammo" } }, - [6656]={ + [6783]={ [1]={ [1]={ limit={ @@ -146701,7 +150267,7 @@ return { [1]="impale_inflicted_by_two_handed_weapons_magnitude_+%" } }, - [6657]={ + [6784]={ [1]={ [1]={ limit={ @@ -146730,7 +150296,7 @@ return { [1]="impale_magnitude_+%" } }, - [6658]={ + [6785]={ [1]={ [1]={ limit={ @@ -146759,7 +150325,7 @@ return { [1]="impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies" } }, - [6659]={ + [6786]={ [1]={ [1]={ limit={ @@ -146788,7 +150354,7 @@ return { [1]="impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies" } }, - [6660]={ + [6787]={ [1]={ [1]={ limit={ @@ -146813,7 +150379,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [6661]={ + [6788]={ [1]={ [1]={ limit={ @@ -146829,7 +150395,7 @@ return { [1]="impale_on_hit_%_chance_with_axes_swords" } }, - [6662]={ + [6789]={ [1]={ [1]={ limit={ @@ -146845,7 +150411,7 @@ return { [1]="impending_doom_base_added_chaos_damage_%_of_current_mana" } }, - [6663]={ + [6790]={ [1]={ [1]={ limit={ @@ -146874,7 +150440,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [6664]={ + [6791]={ [1]={ [1]={ limit={ @@ -146903,7 +150469,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [6665]={ + [6792]={ [1]={ [1]={ limit={ @@ -146932,7 +150498,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [6666]={ + [6793]={ [1]={ [1]={ limit={ @@ -146948,7 +150514,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [6667]={ + [6794]={ [1]={ [1]={ limit={ @@ -146977,7 +150543,7 @@ return { [1]="incision_effect_+%" } }, - [6668]={ + [6795]={ [1]={ [1]={ limit={ @@ -146993,7 +150559,7 @@ return { [1]="incision_you_inflict_applies_%_increased_physical_damage_taken" } }, - [6669]={ + [6796]={ [1]={ [1]={ limit={ @@ -147009,7 +150575,7 @@ return { [1]="increase_crit_chance_by_lowest_of_str_or_int" } }, - [6670]={ + [6797]={ [1]={ [1]={ limit={ @@ -147034,7 +150600,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [6671]={ + [6798]={ [1]={ [1]={ limit={ @@ -147050,7 +150616,7 @@ return { [1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [6672]={ + [6799]={ [1]={ [1]={ limit={ @@ -147066,7 +150632,7 @@ return { [1]="infernal_cry_area_of_effect_+%" } }, - [6673]={ + [6800]={ [1]={ [1]={ limit={ @@ -147082,7 +150648,7 @@ return { [1]="infernal_cry_cooldown_speed_+%" } }, - [6674]={ + [6801]={ [1]={ }, stats={ @@ -147090,7 +150656,7 @@ return { [2]="infernal_familiar_total_burn_radius" } }, - [6675]={ + [6802]={ [1]={ [1]={ limit={ @@ -147106,7 +150672,7 @@ return { [1]="infernal_familiar_nearby_enemies_fire_damage_taken_+%" } }, - [6676]={ + [6803]={ [1]={ [1]={ [1]={ @@ -147126,7 +150692,7 @@ return { [1]="infernal_familiar_revive_if_killed_by_enemies_ms" } }, - [6677]={ + [6804]={ [1]={ [1]={ limit={ @@ -147142,7 +150708,7 @@ return { [1]="infernalist_burn_life_and_es_%_per_second_if_crit_recently" } }, - [6678]={ + [6805]={ [1]={ [1]={ limit={ @@ -147167,7 +150733,7 @@ return { [1]="infernalist_critical_strike_chance_+%_final" } }, - [6679]={ + [6806]={ [1]={ [1]={ limit={ @@ -147196,7 +150762,7 @@ return { [1]="infernalist_critical_strike_multiplier_+%_final" } }, - [6680]={ + [6807]={ [1]={ [1]={ limit={ @@ -147205,30 +150771,14 @@ return { [2]="#" } }, - text="Infinite Projectile Parry Range" - } - }, - stats={ - [1]="infinite_parry_blocked_projectile_distance" - } - }, - [6681]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + text="Infinite Parry Range" } }, stats={ - [1]="inflict_all_exposure_on_enemies_when_suppressing_their_spell" + [1]="infinite_active_block_distance" } }, - [6682]={ + [6808]={ [1]={ [1]={ limit={ @@ -147244,7 +150794,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [6683]={ + [6809]={ [1]={ [1]={ limit={ @@ -147260,7 +150810,7 @@ return { [1]="inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds" } }, - [6684]={ + [6810]={ [1]={ [1]={ limit={ @@ -147285,7 +150835,7 @@ return { [1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6685]={ + [6811]={ [1]={ [1]={ limit={ @@ -147301,7 +150851,7 @@ return { [1]="inflict_cold_exposure_on_ignite" } }, - [6686]={ + [6812]={ [1]={ [1]={ limit={ @@ -147317,7 +150867,7 @@ return { [1]="inflict_fire_exposure_if_cast_flammability_in_past_10_seconds" } }, - [6687]={ + [6813]={ [1]={ [1]={ limit={ @@ -147342,7 +150892,7 @@ return { [1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6688]={ + [6814]={ [1]={ [1]={ limit={ @@ -147358,7 +150908,7 @@ return { [1]="inflict_fire_exposure_on_hits_that_heavy_stun" } }, - [6689]={ + [6815]={ [1]={ [1]={ limit={ @@ -147374,7 +150924,7 @@ return { [1]="inflict_fire_exposure_on_shock" } }, - [6690]={ + [6816]={ [1]={ [1]={ limit={ @@ -147390,7 +150940,7 @@ return { [1]="inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds" } }, - [6691]={ + [6817]={ [1]={ [1]={ limit={ @@ -147406,7 +150956,23 @@ return { [1]="inflict_lightning_exposure_on_crit" } }, - [6692]={ + [6818]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflict Lightning Exposure for {0} seconds when you Electrocute an Enemy" + } + }, + stats={ + [1]="inflict_lightning_exposure_on_electrocute_for_x_seconds" + } + }, + [6819]={ [1]={ [1]={ limit={ @@ -147431,7 +150997,7 @@ return { [1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6693]={ + [6820]={ [1]={ [1]={ limit={ @@ -147447,7 +151013,7 @@ return { [1]="inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds" } }, - [6694]={ + [6821]={ [1]={ [1]={ limit={ @@ -147472,7 +151038,7 @@ return { [1]="inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence" } }, - [6695]={ + [6822]={ [1]={ [1]={ limit={ @@ -147497,7 +151063,7 @@ return { [1]="inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%" } }, - [6696]={ + [6823]={ [1]={ [1]={ limit={ @@ -147522,7 +151088,7 @@ return { [1]="inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%" } }, - [6697]={ + [6824]={ [1]={ [1]={ limit={ @@ -147547,7 +151113,7 @@ return { [1]="inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%" } }, - [6698]={ + [6825]={ [1]={ [1]={ limit={ @@ -147572,7 +151138,7 @@ return { [1]="inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%" } }, - [6699]={ + [6826]={ [1]={ [1]={ limit={ @@ -147597,32 +151163,7 @@ return { [1]="inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%" } }, - [6700]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="When your weapon gains Infusion {0}% chance to gain an additional Infusion of the same type" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="When your weapon gains Infusion gain an additional Infusion of the same type" - } - }, - stats={ - [1]="infusion_%_chance_to_gain_additional_infusion_charge" - } - }, - [6701]={ + [6827]={ [1]={ [1]={ limit={ @@ -147651,7 +151192,7 @@ return { [1]="infusion_blast_area_of_effect_+%" } }, - [6702]={ + [6828]={ [1]={ [1]={ limit={ @@ -147680,7 +151221,7 @@ return { [1]="infusion_blast_damage_+%" } }, - [6703]={ + [6829]={ [1]={ [1]={ limit={ @@ -147689,7 +151230,7 @@ return { [2]="#" } }, - text="{0}% increased Infusion Duration" + text="{0}% increased Elemental Infusion duration" }, [2]={ [1]={ @@ -147702,14 +151243,14 @@ return { [2]=-1 } }, - text="{0}% reduced Infusion Duration" + text="{0}% reduced Elemental Infusion duration" } }, stats={ [1]="infusion_duration_+%" } }, - [6704]={ + [6830]={ [1]={ [1]={ limit={ @@ -147718,7 +151259,7 @@ return { [2]="#" } }, - text="{0}% increased Effect of Infusion" + text="{0}% more Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds, up to a maximum of 30%" }, [2]={ [1]={ @@ -147731,14 +151272,14 @@ return { [2]=-1 } }, - text="{0}% reduced Effect of Infusion" + text="{0}% less Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds" } }, stats={ - [1]="infusion_effect_+%" + [1]="inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%" } }, - [6705]={ + [6831]={ [1]={ [1]={ limit={ @@ -147747,7 +151288,7 @@ return { [2]="#" } }, - text="{0}% more Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds, up to a maximum of 30%" + text="{0}% increased Inspiration Charge Duration" }, [2]={ [1]={ @@ -147760,43 +151301,39 @@ return { [2]=-1 } }, - text="{0}% less Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds" + text="{0}% reduced Inspiration Charge Duration" } }, stats={ - [1]="inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%" + [1]="inspiration_charge_duration_+%" } }, - [6706]={ + [6832]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" + [2]=99 } }, - text="{0}% increased Inspiration Charge Duration" + text="When your weapon gains Infusion {0}% chance to gain an additional Infusion of the same type" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]=100, + [2]="#" } }, - text="{0}% reduced Inspiration Charge Duration" + text="When your weapon gains Infusion gain an additional Infusion of the same type" } }, stats={ - [1]="inspiration_charge_duration_+%" + [1]="instilling_%_chance_to_gain_additional_instilling_stack" } }, - [6707]={ + [6833]={ [1]={ [1]={ limit={ @@ -147812,7 +151349,7 @@ return { [1]="intelligence_is_0" } }, - [6708]={ + [6834]={ [1]={ [1]={ limit={ @@ -147828,7 +151365,7 @@ return { [1]="intelligence_skill_gem_level_+" } }, - [6709]={ + [6835]={ [1]={ [1]={ limit={ @@ -147857,7 +151394,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [6710]={ + [6836]={ [1]={ [1]={ limit={ @@ -147873,7 +151410,7 @@ return { [1]="intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield" } }, - [6711]={ + [6837]={ [1]={ [1]={ limit={ @@ -147889,7 +151426,7 @@ return { [1]="intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds" } }, - [6712]={ + [6838]={ [1]={ [1]={ [1]={ @@ -147922,7 +151459,7 @@ return { [1]="intimidate_enemy_on_block_for_duration_ms" } }, - [6713]={ + [6839]={ [1]={ [1]={ [1]={ @@ -147942,7 +151479,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [6714]={ + [6840]={ [1]={ [1]={ limit={ @@ -147967,7 +151504,7 @@ return { [1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%" } }, - [6715]={ + [6841]={ [1]={ [1]={ limit={ @@ -147983,7 +151520,7 @@ return { [1]="intimidating_cry_area_of_effect_+%" } }, - [6716]={ + [6842]={ [1]={ [1]={ limit={ @@ -147999,7 +151536,7 @@ return { [1]="intimidating_cry_cooldown_speed_+%" } }, - [6717]={ + [6843]={ [1]={ [1]={ limit={ @@ -148028,7 +151565,139 @@ return { [1]="intuitive_link_duration_+%" } }, - [6718]={ + [6844]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Invocated skills have {0}% increased Maximum Energy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Invocated skills have {0}% reduced Maximum Energy" + } + }, + stats={ + [1]="invocation_skill_maximum_energy_+%" + } + }, + [6845]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Invocated Spells have {0}% chance to consume half as much Energy" + } + }, + stats={ + [1]="invocation_spell_chance_to_cost_half_energy_%" + } + }, + [6846]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Invocated Spells have {0}% increased Critical Hit Chance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Invocated Spells have {0}% reduced Critical Hit Chance" + } + }, + stats={ + [1]="invocation_spell_critical_strike_chance_+%" + } + }, + [6847]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Invocation Spells have {0}% increased Critical Damage Bonus" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Invocation Spells have {0}% reduced Critical Damage Bonus" + } + }, + stats={ + [1]="invocation_spell_critical_strike_multiplier_+" + } + }, + [6848]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Invocated Spells deal {0}% increased Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Invocated Spells deal {0}% reduced Damage" + } + }, + stats={ + [1]="invocation_spell_damage_+%" + } + }, + [6849]={ [1]={ [1]={ limit={ @@ -148053,7 +151722,7 @@ return { [1]="is_blighted_map" } }, - [6719]={ + [6850]={ [1]={ [1]={ limit={ @@ -148082,7 +151751,7 @@ return { [1]="item_found_quantity_+%_per_chest_opened_recently" } }, - [6720]={ + [6851]={ [1]={ [1]={ limit={ @@ -148098,7 +151767,7 @@ return { [1]="item_found_rarity_+1%_per_X_rampage_stacks" } }, - [6721]={ + [6852]={ [1]={ [1]={ limit={ @@ -148127,7 +151796,7 @@ return { [1]="jagged_ground_duration_+%" } }, - [6722]={ + [6853]={ [1]={ [1]={ limit={ @@ -148156,7 +151825,7 @@ return { [1]="jagged_ground_effect_+%" } }, - [6723]={ + [6854]={ [1]={ [1]={ limit={ @@ -148185,7 +151854,7 @@ return { [1]="jagged_ground_enemy_damage_taken_+%" } }, - [6724]={ + [6855]={ [1]={ [1]={ [1]={ @@ -148205,7 +151874,7 @@ return { [1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms" } }, - [6725]={ + [6856]={ [1]={ [1]={ limit={ @@ -148221,7 +151890,7 @@ return { [1]="keystone_shepherd_of_souls" } }, - [6726]={ + [6857]={ [1]={ [1]={ limit={ @@ -148246,7 +151915,7 @@ return { [1]="killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance" } }, - [6727]={ + [6858]={ [1]={ [1]={ limit={ @@ -148271,7 +151940,7 @@ return { [1]="kills_count_twice_for_rampage_%" } }, - [6728]={ + [6859]={ [1]={ [1]={ limit={ @@ -148287,7 +151956,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [6729]={ + [6860]={ [1]={ [1]={ limit={ @@ -148316,7 +151985,7 @@ return { [1]="kinetic_bolt_attack_speed_+%" } }, - [6730]={ + [6861]={ [1]={ [1]={ limit={ @@ -148345,7 +152014,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%" } }, - [6731]={ + [6862]={ [1]={ [1]={ limit={ @@ -148361,7 +152030,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%" } }, - [6732]={ + [6863]={ [1]={ [1]={ limit={ @@ -148390,7 +152059,7 @@ return { [1]="kinetic_bolt_projectile_speed_+%" } }, - [6733]={ + [6864]={ [1]={ [1]={ limit={ @@ -148415,7 +152084,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [6734]={ + [6865]={ [1]={ [1]={ limit={ @@ -148431,7 +152100,7 @@ return { [1]="knockback_chance_%_against_bleeding_enemies_with_hits" } }, - [6735]={ + [6866]={ [1]={ [1]={ limit={ @@ -148447,7 +152116,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [6736]={ + [6867]={ [1]={ [1]={ limit={ @@ -148476,7 +152145,7 @@ return { [1]="knockback_distance_+%_final_vs_unique_enemies" } }, - [6737]={ + [6868]={ [1]={ [1]={ limit={ @@ -148492,7 +152161,7 @@ return { [1]="knockback_on_crit_with_projectile_damage" } }, - [6738]={ + [6869]={ [1]={ [1]={ limit={ @@ -148517,7 +152186,7 @@ return { [1]="labyrinth_darkshrine_additional_divine_font_use_display" } }, - [6739]={ + [6870]={ [1]={ [1]={ limit={ @@ -148533,7 +152202,7 @@ return { [1]="labyrinth_darkshrine_boss_room_traps_are_disabled" } }, - [6740]={ + [6871]={ [1]={ [1]={ limit={ @@ -148558,7 +152227,7 @@ return { [1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x" } }, - [6741]={ + [6872]={ [1]={ [1]={ limit={ @@ -148583,7 +152252,7 @@ return { [1]="labyrinth_darkshrine_izaro_dropped_unique_items_+" } }, - [6742]={ + [6873]={ [1]={ [1]={ limit={ @@ -148608,7 +152277,7 @@ return { [1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys" } }, - [6743]={ + [6874]={ [1]={ [1]={ limit={ @@ -148637,7 +152306,7 @@ return { [1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%" } }, - [6744]={ + [6875]={ [1]={ [1]={ limit={ @@ -148797,7 +152466,7 @@ return { [1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth" } }, - [6745]={ + [6876]={ [1]={ [1]={ limit={ @@ -148822,7 +152491,7 @@ return { [1]="labyrinth_owner_x_addition_enchants" } }, - [6746]={ + [6877]={ [1]={ [1]={ limit={ @@ -148851,7 +152520,7 @@ return { [1]="lancing_steel_damage_+%" } }, - [6747]={ + [6878]={ [1]={ [1]={ limit={ @@ -148876,7 +152545,7 @@ return { [1]="lancing_steel_impale_chance_%" } }, - [6748]={ + [6879]={ [1]={ [1]={ limit={ @@ -148901,7 +152570,7 @@ return { [1]="lancing_steel_number_of_additional_projectiles" } }, - [6749]={ + [6880]={ [1]={ [1]={ limit={ @@ -148917,7 +152586,7 @@ return { [1]="lancing_steel_%_chance_to_not_consume_ammo" } }, - [6750]={ + [6881]={ [1]={ [1]={ limit={ @@ -148942,7 +152611,7 @@ return { [1]="lancing_steel_primary_proj_pierce_num" } }, - [6751]={ + [6882]={ [1]={ [1]={ limit={ @@ -148958,7 +152627,7 @@ return { [1]="leech_%_is_instant" } }, - [6752]={ + [6883]={ [1]={ [1]={ limit={ @@ -148987,7 +152656,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%" } }, - [6753]={ + [6884]={ [1]={ [1]={ limit={ @@ -149016,7 +152685,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently" } }, - [6754]={ + [6885]={ [1]={ [1]={ limit={ @@ -149045,7 +152714,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%" } }, - [6755]={ + [6886]={ [1]={ [1]={ limit={ @@ -149074,7 +152743,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_power_charge" } }, - [6756]={ + [6887]={ [1]={ [1]={ limit={ @@ -149103,7 +152772,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence" } }, - [6757]={ + [6888]={ [1]={ [1]={ limit={ @@ -149119,7 +152788,7 @@ return { [1]="life_and_mana_flasks_can_be_equipped_in_either_slot" } }, - [6758]={ + [6889]={ [1]={ [1]={ limit={ @@ -149148,7 +152817,7 @@ return { [1]="life_flask_charges_gained_+%" } }, - [6759]={ + [6890]={ [1]={ [1]={ limit={ @@ -149173,7 +152842,7 @@ return { [1]="life_flask_charges_recovered_per_3_seconds" } }, - [6760]={ + [6891]={ [1]={ [1]={ limit={ @@ -149189,7 +152858,7 @@ return { [1]="life_flask_effects_are_not_removed_at_full_life" } }, - [6761]={ + [6892]={ [1]={ [1]={ limit={ @@ -149205,7 +152874,7 @@ return { [1]="life_flask_recovery_can_overcap_life" } }, - [6762]={ + [6893]={ [1]={ [1]={ limit={ @@ -149221,7 +152890,7 @@ return { [1]="life_flask_recovery_is_instant" } }, - [6763]={ + [6894]={ [1]={ [1]={ limit={ @@ -149237,7 +152906,7 @@ return { [1]="life_flask_recovery_is_instant_while_on_low_life" } }, - [6764]={ + [6895]={ [1]={ [1]={ limit={ @@ -149253,7 +152922,7 @@ return { [1]="life_flasks_do_not_recover_life" } }, - [6765]={ + [6896]={ [1]={ [1]={ limit={ @@ -149269,32 +152938,7 @@ return { [1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently" } }, - [6766]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Life Flasks gain {} Charge when you Suppress Spell Damage" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Life Flasks gain {} Charges when you Suppress Spell Damage" - } - }, - stats={ - [1]="life_flasks_gain_X_charges_on_suppressing_spell" - } - }, - [6767]={ + [6897]={ [1]={ [1]={ limit={ @@ -149310,7 +152954,7 @@ return { [1]="life_flasks_gain_a_charge_on_hit_once_per_second" } }, - [6768]={ + [6898]={ [1]={ [1]={ limit={ @@ -149335,7 +152979,7 @@ return { [1]="life_flasks_gain_x_charges_when_you_hit_your_marked_enemy" } }, - [6769]={ + [6899]={ [1]={ [1]={ limit={ @@ -149364,7 +153008,7 @@ return { [1]="life_gain_per_target_hit_while_affected_by_vitality" } }, - [6770]={ + [6900]={ [1]={ [1]={ limit={ @@ -149393,7 +153037,7 @@ return { [1]="life_gain_per_target_if_have_used_a_vaal_skill_recently" } }, - [6771]={ + [6901]={ [1]={ [1]={ limit={ @@ -149422,7 +153066,7 @@ return { [1]="life_gained_on_attack_hit_vs_cursed_enemies" } }, - [6772]={ + [6902]={ [1]={ [1]={ limit={ @@ -149438,7 +153082,7 @@ return { [1]="life_gained_on_cull" } }, - [6773]={ + [6903]={ [1]={ [1]={ limit={ @@ -149454,7 +153098,23 @@ return { [1]="life_gained_on_kill_per_wither_stack_on_slain_enemy_%" } }, - [6774]={ + [6904]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Life Leech is Instant if you have at least 200 Tribute" + } + }, + stats={ + [1]="life_leech_%_is_instant_if_you_have_at_least_200_tribute" + } + }, + [6905]={ [1]={ [1]={ limit={ @@ -149470,7 +153130,36 @@ return { [1]="life_leech_also_recovers_based_on_elemental_damage_types" } }, - [6775]={ + [6906]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced amount of Life Leeched if you've consumed a Frenzy Charge Recently" + } + }, + stats={ + [1]="life_leech_amount_+%_if_consumed_frenzy_charge_recently" + } + }, + [6907]={ [1]={ [1]={ limit={ @@ -149486,7 +153175,7 @@ return { [1]="life_leech_can_overcap_life" } }, - [6776]={ + [6908]={ [1]={ [1]={ limit={ @@ -149502,7 +153191,43 @@ return { [1]="life_leech_excess_goes_to_energy_shield" } }, - [6777]={ + [6909]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Thorns Damage Leeched as Life if you have at least 100 Tribute" + } + }, + stats={ + [1]="life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute" + } + }, + [6910]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life Leeched from Empowered Attacks is Instant" + } + }, + stats={ + [1]="life_leech_is_instant_for_empowered_attacks" + } + }, + [6911]={ [1]={ [1]={ limit={ @@ -149518,7 +153243,7 @@ return { [1]="life_leech_%_is_instant_per_defiance" } }, - [6778]={ + [6912]={ [1]={ [1]={ limit={ @@ -149534,7 +153259,36 @@ return { [1]="life_leech_%_maximum_life_on_spell_cast" } }, - [6779]={ + [6913]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Leech Life {0}% faster if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Leech Life {0}% slower if you have at least 100 Tribute" + } + }, + stats={ + [1]="life_leech_rate_+%_if_you_have_at_least_100_tribute" + } + }, + [6914]={ [1]={ [1]={ limit={ @@ -149550,7 +153304,7 @@ return { [1]="life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage" } }, - [6780]={ + [6915]={ [1]={ [1]={ limit={ @@ -149566,7 +153320,7 @@ return { [1]="life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence" } }, - [6781]={ + [6916]={ [1]={ [1]={ limit={ @@ -149582,7 +153336,7 @@ return { [1]="life_leeched_from_hits_also_leeches_same_amount_to_companions" } }, - [6782]={ + [6917]={ [1]={ [1]={ [1]={ @@ -149602,7 +153356,7 @@ return { [1]="life_loss_%_per_minute_if_have_been_hit_recently" } }, - [6783]={ + [6918]={ [1]={ [1]={ [1]={ @@ -149622,7 +153376,7 @@ return { [1]="life_lost_%_per_minute_nonlethal" } }, - [6784]={ + [6919]={ [1]={ [1]={ limit={ @@ -149651,7 +153405,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_endurance_charge" } }, - [6785]={ + [6920]={ [1]={ [1]={ limit={ @@ -149667,7 +153421,7 @@ return { [1]="life_mana_flasks_restore_mana_life" } }, - [6786]={ + [6921]={ [1]={ [1]={ limit={ @@ -149683,7 +153437,7 @@ return { [1]="life_mastery_count_maximum_life_+%_final" } }, - [6787]={ + [6922]={ [1]={ [1]={ limit={ @@ -149699,7 +153453,7 @@ return { [1]="life_per_level" } }, - [6788]={ + [6923]={ [1]={ [1]={ limit={ @@ -149715,7 +153469,7 @@ return { [1]="life_recoup_also_applies_to_energy_shield" } }, - [6789]={ + [6924]={ [1]={ [1]={ limit={ @@ -149731,7 +153485,7 @@ return { [1]="life_recoup_applies_to_energy_shield_instead" } }, - [6790]={ + [6925]={ [1]={ [1]={ limit={ @@ -149747,7 +153501,7 @@ return { [1]="life_recovery_from_flasks_also_recovers_energy_shield" } }, - [6791]={ + [6926]={ [1]={ [1]={ limit={ @@ -149763,7 +153517,7 @@ return { [1]="life_recovery_from_flasks_applies_to_companions" } }, - [6792]={ + [6927]={ [1]={ [1]={ limit={ @@ -149779,7 +153533,7 @@ return { [1]="life_recovery_from_flasks_apply_to_minions_in_your_presence" } }, - [6793]={ + [6928]={ [1]={ [1]={ limit={ @@ -149795,7 +153549,7 @@ return { [1]="life_recovery_from_flasks_instead_applies_to_nearby_allies_%" } }, - [6794]={ + [6929]={ [1]={ [1]={ limit={ @@ -149811,7 +153565,7 @@ return { [1]="life_recovery_from_regeneration_is_not_applied" } }, - [6795]={ + [6930]={ [1]={ [1]={ limit={ @@ -149840,7 +153594,36 @@ return { [1]="life_recovery_+%_from_flasks_while_on_low_life" } }, - [6796]={ + [6931]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Life Recovery rate per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Life Recovery rate per 10 Tribute" + } + }, + stats={ + [1]="life_recovery_rate_+%_per_10_tribute" + } + }, + [6932]={ [1]={ [1]={ limit={ @@ -149869,7 +153652,7 @@ return { [1]="life_recovery_rate_+%_per_5%_missing_life" } }, - [6797]={ + [6933]={ [1]={ [1]={ limit={ @@ -149898,7 +153681,7 @@ return { [1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [6798]={ + [6934]={ [1]={ [1]={ limit={ @@ -149927,7 +153710,7 @@ return { [1]="life_recovery_rate_+%_if_havent_killed_recently" } }, - [6799]={ + [6935]={ [1]={ [1]={ limit={ @@ -149956,7 +153739,7 @@ return { [1]="life_recovery_rate_+%_while_affected_by_vitality" } }, - [6800]={ + [6936]={ [1]={ [1]={ limit={ @@ -149965,7 +153748,7 @@ return { [2]="#" } }, - text="{0}% increased Life Recovery Rate while in the Presence of your Companion" + text="{0}% increased Life Recovery Rate while your Companion is in your Presence" }, [2]={ [1]={ @@ -149978,14 +153761,14 @@ return { [2]=-1 } }, - text="{0}% reduced Life Recovery Rate while in the Presence of your Companion" + text="{0}% reduced Life Recovery Rate while your Companion is in your Presence" } }, stats={ [1]="life_recovery_rate_while_in_presence_of_companion_+%" } }, - [6801]={ + [6937]={ [1]={ [1]={ [1]={ @@ -150005,7 +153788,7 @@ return { [1]="life_regeneration_%_per_minute_if_stunned_an_enemy_recently" } }, - [6802]={ + [6938]={ [1]={ [1]={ [1]={ @@ -150025,7 +153808,7 @@ return { [1]="life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance" } }, - [6803]={ + [6939]={ [1]={ [1]={ [1]={ @@ -150045,7 +153828,7 @@ return { [1]="life_regeneration_per_minute_per_active_buff" } }, - [6804]={ + [6940]={ [1]={ [1]={ [1]={ @@ -150065,7 +153848,7 @@ return { [1]="life_regeneration_per_minute_per_maximum_energy_shield" } }, - [6805]={ + [6941]={ [1]={ [1]={ [1]={ @@ -150085,7 +153868,7 @@ return { [1]="life_regeneration_per_minute_per_nearby_corpse" } }, - [6806]={ + [6942]={ [1]={ [1]={ [1]={ @@ -150105,7 +153888,7 @@ return { [1]="life_regeneration_per_minute_%_per_ailment_affecting_you" } }, - [6807]={ + [6943]={ [1]={ [1]={ [1]={ @@ -150125,7 +153908,7 @@ return { [1]="life_regeneration_per_minute_%_per_fortification" } }, - [6808]={ + [6944]={ [1]={ [1]={ [1]={ @@ -150145,7 +153928,7 @@ return { [1]="life_regeneration_per_minute_%_while_affected_by_guard_skill" } }, - [6809]={ + [6945]={ [1]={ [1]={ [1]={ @@ -150165,7 +153948,7 @@ return { [1]="life_regeneration_per_minute_%_while_burning" } }, - [6810]={ + [6946]={ [1]={ [1]={ [1]={ @@ -150185,7 +153968,7 @@ return { [1]="life_regeneration_per_minute_%_while_channelling" } }, - [6811]={ + [6947]={ [1]={ [1]={ [1]={ @@ -150205,7 +153988,7 @@ return { [1]="life_regeneration_per_minute_while_affected_by_vitality" } }, - [6812]={ + [6948]={ [1]={ [1]={ [1]={ @@ -150225,7 +154008,7 @@ return { [1]="life_regeneration_per_minute_while_ignited" } }, - [6813]={ + [6949]={ [1]={ [1]={ [1]={ @@ -150245,7 +154028,7 @@ return { [1]="life_regeneration_per_minute_while_moving" } }, - [6814]={ + [6950]={ [1]={ [1]={ [1]={ @@ -150265,7 +154048,7 @@ return { [1]="life_regeneration_per_minute_while_you_have_avians_flight" } }, - [6815]={ + [6951]={ [1]={ [1]={ [1]={ @@ -150285,7 +154068,7 @@ return { [1]="life_regeneration_%_per_minute_if_detonated_mine_recently" } }, - [6816]={ + [6952]={ [1]={ [1]={ [1]={ @@ -150305,7 +154088,36 @@ return { [1]="life_regeneration_%_per_minute_if_player_minion_died_recently" } }, - [6817]={ + [6953]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Life Regeneration rate while Surrounded" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Life Regeneration rate while Surrounded" + } + }, + stats={ + [1]="life_regeneration_rate_+%_while_surrounded" + } + }, + [6954]={ [1]={ [1]={ limit={ @@ -150334,7 +154146,7 @@ return { [1]="life_regeneration_rate_+%_while_using_life_flask" } }, - [6818]={ + [6955]={ [1]={ [1]={ [1]={ @@ -150354,7 +154166,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently" } }, - [6819]={ + [6956]={ [1]={ [1]={ [1]={ @@ -150374,7 +154186,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment" } }, - [6820]={ + [6957]={ [1]={ [1]={ [1]={ @@ -150394,7 +154206,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_vitality" } }, - [6821]={ + [6958]={ [1]={ [1]={ [1]={ @@ -150414,7 +154226,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_surrounded" } }, - [6822]={ + [6959]={ [1]={ [1]={ [1]={ @@ -150434,7 +154246,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [6823]={ + [6960]={ [1]={ [1]={ [1]={ @@ -150454,7 +154266,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [6824]={ + [6961]={ [1]={ [1]={ [1]={ @@ -150474,7 +154286,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds" } }, - [6825]={ + [6962]={ [1]={ [1]={ [1]={ @@ -150494,7 +154306,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently" } }, - [6826]={ + [6963]={ [1]={ [1]={ [1]={ @@ -150514,7 +154326,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [6827]={ + [6964]={ [1]={ [1]={ [1]={ @@ -150534,7 +154346,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds" } }, - [6828]={ + [6965]={ [1]={ [1]={ [1]={ @@ -150554,7 +154366,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield" } }, - [6829]={ + [6966]={ [1]={ [1]={ [1]={ @@ -150574,7 +154386,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%" } }, - [6830]={ + [6967]={ [1]={ [1]={ [1]={ @@ -150594,7 +154406,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%" } }, - [6831]={ + [6968]={ [1]={ [1]={ [1]={ @@ -150614,7 +154426,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_power_charge" } }, - [6832]={ + [6969]={ [1]={ [1]={ [1]={ @@ -150634,7 +154446,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_raised_zombie" } }, - [6833]={ + [6970]={ [1]={ [1]={ [1]={ @@ -150654,7 +154466,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%" } }, - [6834]={ + [6971]={ [1]={ [1]={ [1]={ @@ -150674,7 +154486,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_moving" } }, - [6835]={ + [6972]={ [1]={ [1]={ [1]={ @@ -150694,7 +154506,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_stationary" } }, - [6836]={ + [6973]={ [1]={ [1]={ [1]={ @@ -150714,7 +154526,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_using_flask" } }, - [6837]={ + [6974]={ [1]={ [1]={ [1]={ @@ -150734,7 +154546,7 @@ return { [1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength" } }, - [6838]={ + [6975]={ [1]={ [1]={ [1]={ @@ -150754,7 +154566,7 @@ return { [1]="life_regeneration_rate_per_minute_while_on_low_life" } }, - [6839]={ + [6976]={ [1]={ [1]={ limit={ @@ -150783,7 +154595,7 @@ return { [1]="life_regeneration_rate_+%_while_moving" } }, - [6840]={ + [6977]={ [1]={ [1]={ limit={ @@ -150812,7 +154624,7 @@ return { [1]="life_regeneration_rate_+%_while_on_low_life" } }, - [6841]={ + [6978]={ [1]={ [1]={ limit={ @@ -150841,7 +154653,36 @@ return { [1]="life_regeneration_rate_+%_while_stationary" } }, - [6842]={ + [6979]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Light Radius per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Light Radius per 10 Tribute" + } + }, + stats={ + [1]="light_radius_+%_per_10_tribute" + } + }, + [6980]={ [1]={ [1]={ limit={ @@ -150857,7 +154698,7 @@ return { [1]="light_radius_increases_apply_to_accuracy" } }, - [6843]={ + [6981]={ [1]={ [1]={ limit={ @@ -150873,7 +154714,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [6844]={ + [6982]={ [1]={ [1]={ limit={ @@ -150902,7 +154743,7 @@ return { [1]="lightning_ailment_duration_+%" } }, - [6845]={ + [6983]={ [1]={ [1]={ limit={ @@ -150931,7 +154772,7 @@ return { [1]="lightning_ailment_effect_+%_against_chilled_enemies" } }, - [6846]={ + [6984]={ [1]={ [1]={ limit={ @@ -150960,7 +154801,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [6847]={ + [6985]={ [1]={ [1]={ limit={ @@ -150976,7 +154817,7 @@ return { [1]="lightning_and_chaos_damage_resistance_%" } }, - [6848]={ + [6986]={ [1]={ [1]={ limit={ @@ -151001,7 +154842,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [6849]={ + [6987]={ [1]={ [1]={ limit={ @@ -151017,7 +154858,7 @@ return { [1]="lightning_conduit_and_galvanic_field_shatter_on_killing_blow" } }, - [6850]={ + [6988]={ [1]={ [1]={ limit={ @@ -151046,7 +154887,7 @@ return { [1]="lightning_conduit_area_of_effect_+%" } }, - [6851]={ + [6989]={ [1]={ [1]={ limit={ @@ -151062,7 +154903,7 @@ return { [1]="lightning_conduit_cast_speed_+%" } }, - [6852]={ + [6990]={ [1]={ [1]={ limit={ @@ -151091,7 +154932,7 @@ return { [1]="lightning_conduit_damage_+%" } }, - [6853]={ + [6991]={ [1]={ [1]={ limit={ @@ -151100,14 +154941,14 @@ return { [2]="#" } }, - text="Lightning Damage from Hits also Contributes to Ignite Chance and Magnitude" + text="Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="lightning_damage_can_ignite" } }, - [6854]={ + [6992]={ [1]={ [1]={ limit={ @@ -151123,7 +154964,7 @@ return { [1]="lightning_damage_+%_per_lightning_resistance_above_75" } }, - [6855]={ + [6993]={ [1]={ [1]={ limit={ @@ -151152,7 +154993,7 @@ return { [1]="lightning_damage_+%_while_affected_by_herald_of_thunder" } }, - [6856]={ + [6994]={ [1]={ [1]={ limit={ @@ -151181,7 +155022,7 @@ return { [1]="lightning_damage_+%_while_affected_by_wrath" } }, - [6857]={ + [6995]={ [1]={ [1]={ limit={ @@ -151197,7 +155038,7 @@ return { [1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [6858]={ + [6996]={ [1]={ [1]={ limit={ @@ -151213,7 +155054,7 @@ return { [1]="lightning_damage_taken_goes_to_life_over_4_seconds_%" } }, - [6859]={ + [6997]={ [1]={ [1]={ limit={ @@ -151229,7 +155070,7 @@ return { [1]="lightning_damage_taken_+" } }, - [6860]={ + [6998]={ [1]={ [1]={ limit={ @@ -151258,7 +155099,7 @@ return { [1]="lightning_damage_with_attack_skills_+%" } }, - [6861]={ + [6999]={ [1]={ [1]={ limit={ @@ -151287,7 +155128,7 @@ return { [1]="lightning_damage_with_spell_skills_+%" } }, - [6862]={ + [7000]={ [1]={ [1]={ limit={ @@ -151316,7 +155157,7 @@ return { [1]="lightning_explosion_mine_aura_effect_+%" } }, - [6863]={ + [7001]={ [1]={ [1]={ limit={ @@ -151345,7 +155186,7 @@ return { [1]="lightning_explosion_mine_damage_+%" } }, - [6864]={ + [7002]={ [1]={ [1]={ limit={ @@ -151374,7 +155215,7 @@ return { [1]="lightning_explosion_mine_throwing_speed_+%" } }, - [6865]={ + [7003]={ [1]={ [1]={ limit={ @@ -151403,7 +155244,7 @@ return { [1]="lightning_exposure_effect_+%" } }, - [6866]={ + [7004]={ [1]={ [1]={ limit={ @@ -151412,7 +155253,7 @@ return { [2]=10 } }, - text="Inflict Lightning Exposure on Hit" + text="Inflict Exposure on Hit" }, [2]={ limit={ @@ -151421,14 +155262,14 @@ return { [2]="#" } }, - text="Inflict Lightning Exposure on Hit, lowering Total Lightning Resistance by {0}%" + text="Inflict Exposure on Hit, lowering Total Elemental Resistances by {0}%" } }, stats={ [1]="lightning_exposure_on_hit_magnitude" } }, - [6867]={ + [7005]={ [1]={ [1]={ limit={ @@ -151444,7 +155285,7 @@ return { [1]="lightning_hit_and_dot_damage_%_taken_as_fire" } }, - [6868]={ + [7006]={ [1]={ [1]={ limit={ @@ -151473,7 +155314,7 @@ return { [1]="lightning_hit_damage_+%_vs_chilled_enemies" } }, - [6869]={ + [7007]={ [1]={ [1]={ limit={ @@ -151502,7 +155343,7 @@ return { [1]="lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning" } }, - [6870]={ + [7008]={ [1]={ [1]={ limit={ @@ -151518,7 +155359,7 @@ return { [1]="lightning_resist_unaffected_by_area_penalties" } }, - [6871]={ + [7009]={ [1]={ [1]={ limit={ @@ -151534,7 +155375,7 @@ return { [1]="lightning_resistance_does_not_apply_to_lighting_damage" } }, - [6872]={ + [7010]={ [1]={ [1]={ limit={ @@ -151550,7 +155391,7 @@ return { [1]="lightning_skill_additional_chain_chance_%" } }, - [6873]={ + [7011]={ [1]={ [1]={ limit={ @@ -151566,7 +155407,7 @@ return { [1]="lightning_skill_chance_to_inflict_lightning_exposure_%" } }, - [6874]={ + [7012]={ [1]={ [1]={ limit={ @@ -151582,7 +155423,7 @@ return { [1]="lightning_skill_gem_level_+" } }, - [6875]={ + [7013]={ [1]={ [1]={ limit={ @@ -151611,7 +155452,7 @@ return { [1]="lightning_skill_stun_threshold_+%" } }, - [6876]={ + [7014]={ [1]={ [1]={ limit={ @@ -151627,7 +155468,7 @@ return { [1]="lightning_skills_chance_to_poison_on_hit_%" } }, - [6877]={ + [7015]={ [1]={ [1]={ limit={ @@ -151636,14 +155477,14 @@ return { [2]="#" } }, - text="All Damage from Lightning Strike and Frost Blades Hits Contributes to Ignite Chance and Magnitude" + text="All Damage from Lightning Strike and Frost Blades Hits Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="lightning_strike_and_frost_blades_all_damage_can_ignite" } }, - [6878]={ + [7016]={ [1]={ [1]={ limit={ @@ -151672,7 +155513,7 @@ return { [1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit" } }, - [6879]={ + [7017]={ [1]={ [1]={ limit={ @@ -151701,7 +155542,7 @@ return { [1]="lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent" } }, - [6880]={ + [7018]={ [1]={ [1]={ limit={ @@ -151726,7 +155567,7 @@ return { [1]="lightning_tower_trap_additional_number_of_beams" } }, - [6881]={ + [7019]={ [1]={ [1]={ limit={ @@ -151755,7 +155596,7 @@ return { [1]="lightning_tower_trap_cast_speed_+%" } }, - [6882]={ + [7020]={ [1]={ [1]={ limit={ @@ -151784,7 +155625,7 @@ return { [1]="lightning_tower_trap_cooldown_speed_+%" } }, - [6883]={ + [7021]={ [1]={ [1]={ limit={ @@ -151813,7 +155654,7 @@ return { [1]="lightning_tower_trap_damage_+%" } }, - [6884]={ + [7022]={ [1]={ [1]={ limit={ @@ -151842,7 +155683,7 @@ return { [1]="lightning_tower_trap_duration_+%" } }, - [6885]={ + [7023]={ [1]={ [1]={ limit={ @@ -151871,7 +155712,7 @@ return { [1]="lightning_tower_trap_throwing_speed_+%" } }, - [6886]={ + [7024]={ [1]={ [1]={ limit={ @@ -151887,7 +155728,7 @@ return { [1]="lightning_trap_lightning_resistance_penetration_%" } }, - [6887]={ + [7025]={ [1]={ [1]={ limit={ @@ -151916,7 +155757,23 @@ return { [1]="lightning_trap_shock_effect_+%" } }, - [6888]={ + [7026]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can Socket an additional copy of each Lineage Support Gem, in different Skills" + } + }, + stats={ + [1]="lineage_support_gem_limit_+" + } + }, + [7027]={ [1]={ [1]={ limit={ @@ -151932,7 +155789,7 @@ return { [1]="link_buff_effect_+%_on_animate_guardian" } }, - [6889]={ + [7028]={ [1]={ [1]={ limit={ @@ -151961,7 +155818,7 @@ return { [1]="link_effect_+%_when_50%_expired" } }, - [6890]={ + [7029]={ [1]={ [1]={ limit={ @@ -151982,7 +155839,7 @@ return { [2]="link_grace_period_8_second_override" } }, - [6891]={ + [7030]={ [1]={ [1]={ limit={ @@ -152011,7 +155868,7 @@ return { [1]="link_skill_buff_effect_+%" } }, - [6892]={ + [7031]={ [1]={ [1]={ limit={ @@ -152040,7 +155897,7 @@ return { [1]="link_skill_buff_effect_+%_if_linked_target_recently" } }, - [6893]={ + [7032]={ [1]={ [1]={ limit={ @@ -152069,7 +155926,7 @@ return { [1]="link_skill_cast_speed_+%" } }, - [6894]={ + [7033]={ [1]={ [1]={ limit={ @@ -152098,7 +155955,7 @@ return { [1]="link_skill_duration_+%" } }, - [6895]={ + [7034]={ [1]={ [1]={ limit={ @@ -152114,7 +155971,7 @@ return { [1]="link_skill_gem_level_+" } }, - [6896]={ + [7035]={ [1]={ [1]={ limit={ @@ -152130,7 +155987,7 @@ return { [1]="link_skill_link_target_cannot_die_for_X_seconds" } }, - [6897]={ + [7036]={ [1]={ [1]={ limit={ @@ -152146,7 +156003,7 @@ return { [1]="link_skill_lose_no_experience_on_link_target_death" } }, - [6898]={ + [7037]={ [1]={ [1]={ limit={ @@ -152179,7 +156036,7 @@ return { [1]="link_skill_mana_cost_+%" } }, - [6899]={ + [7038]={ [1]={ [1]={ limit={ @@ -152195,7 +156052,7 @@ return { [1]="link_skills_can_target_animate_guardian" } }, - [6900]={ + [7039]={ [1]={ [1]={ limit={ @@ -152211,7 +156068,7 @@ return { [1]="link_skills_can_target_minions" } }, - [6901]={ + [7040]={ [1]={ [1]={ limit={ @@ -152240,7 +156097,7 @@ return { [1]="link_skills_grant_damage_+%" } }, - [6902]={ + [7041]={ [1]={ [1]={ limit={ @@ -152269,7 +156126,7 @@ return { [1]="link_skills_grant_damage_taken_+%" } }, - [6903]={ + [7042]={ [1]={ [1]={ limit={ @@ -152285,7 +156142,7 @@ return { [1]="link_skills_grant_redirect_curses_to_link_source" } }, - [6904]={ + [7043]={ [1]={ [1]={ limit={ @@ -152310,7 +156167,7 @@ return { [1]="link_to_X_additional_random_allies" } }, - [6905]={ + [7044]={ [1]={ [1]={ limit={ @@ -152326,7 +156183,7 @@ return { [1]="linked_targets_share_endurance_frenzy_power_charges_with_you" } }, - [6906]={ + [7045]={ [1]={ [1]={ limit={ @@ -152342,7 +156199,7 @@ return { [1]="local_%_chance_to_gain_flask_charge_when_hit" } }, - [6907]={ + [7046]={ [1]={ [1]={ limit={ @@ -152367,7 +156224,7 @@ return { [1]="local_+%_weapon_range" } }, - [6908]={ + [7047]={ [1]={ [1]={ limit={ @@ -152392,7 +156249,7 @@ return { [1]="local_X_additional_chains" } }, - [6909]={ + [7048]={ [1]={ [1]={ limit={ @@ -152408,7 +156265,7 @@ return { [1]="local_accuracy_rating_+%_per_2%_quality" } }, - [6910]={ + [7049]={ [1]={ [1]={ limit={ @@ -152433,7 +156290,7 @@ return { [1]="local_additional_attack_chain_chance_%" } }, - [6911]={ + [7050]={ [1]={ [1]={ limit={ @@ -152449,7 +156306,7 @@ return { [1]="local_aggravate_bleeding_on_hit_chance_%" } }, - [6912]={ + [7051]={ [1]={ [1]={ limit={ @@ -152465,7 +156322,7 @@ return { [1]="local_all_attributes_+_per_rune_or_soul_core" } }, - [6913]={ + [7052]={ [1]={ [1]={ [1]={ @@ -152485,7 +156342,7 @@ return { [1]="local_all_attributes_-_per_level" } }, - [6914]={ + [7053]={ [1]={ [1]={ limit={ @@ -152514,7 +156371,7 @@ return { [1]="local_all_attributes_+%_per_rune_or_soul_core" } }, - [6915]={ + [7054]={ [1]={ [1]={ limit={ @@ -152530,7 +156387,7 @@ return { [1]="local_all_damage_can_chill" } }, - [6916]={ + [7055]={ [1]={ [1]={ limit={ @@ -152546,7 +156403,7 @@ return { [1]="local_all_damage_can_electrocute" } }, - [6917]={ + [7056]={ [1]={ [1]={ limit={ @@ -152562,7 +156419,7 @@ return { [1]="local_all_damage_can_freeze" } }, - [6918]={ + [7057]={ [1]={ [1]={ limit={ @@ -152578,7 +156435,7 @@ return { [1]="local_all_damage_can_pin" } }, - [6919]={ + [7058]={ [1]={ [1]={ limit={ @@ -152594,7 +156451,7 @@ return { [1]="local_always_crit_heavy_stunned_enemies" } }, - [6920]={ + [7059]={ [1]={ [1]={ limit={ @@ -152610,7 +156467,7 @@ return { [1]="local_always_freeze_on_full_life" } }, - [6921]={ + [7060]={ [1]={ [1]={ limit={ @@ -152626,7 +156483,7 @@ return { [1]="local_always_maim_on_crit" } }, - [6922]={ + [7061]={ [1]={ [1]={ limit={ @@ -152642,7 +156499,7 @@ return { [1]="local_apply_X_armour_break_on_crit" } }, - [6923]={ + [7062]={ [1]={ [1]={ limit={ @@ -152658,7 +156515,7 @@ return { [1]="local_apply_X_armour_break_on_hit" } }, - [6924]={ + [7063]={ [1]={ [1]={ limit={ @@ -152674,7 +156531,7 @@ return { [1]="local_apply_X_armour_break_on_stun" } }, - [6925]={ + [7064]={ [1]={ [1]={ limit={ @@ -152690,7 +156547,7 @@ return { [1]="local_apply_fire_exposure_on_full_armour_break" } }, - [6926]={ + [7065]={ [1]={ [1]={ limit={ @@ -152706,7 +156563,7 @@ return { [1]="local_area_of_effect_+%_per_4%_quality" } }, - [6927]={ + [7066]={ [1]={ [1]={ limit={ @@ -152722,7 +156579,7 @@ return { [1]="local_armour_break_damage_%_dealt_as_armour_break" } }, - [6928]={ + [7067]={ [1]={ [1]={ limit={ @@ -152751,7 +156608,7 @@ return { [1]="local_attack_and_cast_speed_+%_if_item_corrupted" } }, - [6929]={ + [7068]={ [1]={ [1]={ limit={ @@ -152780,7 +156637,7 @@ return { [1]="local_attack_damage_+%_if_item_corrupted" } }, - [6930]={ + [7069]={ [1]={ [1]={ limit={ @@ -152796,7 +156653,7 @@ return { [1]="local_attack_speed_+%_per_8%_quality" } }, - [6931]={ + [7070]={ [1]={ [1]={ limit={ @@ -152812,7 +156669,7 @@ return { [1]="local_attacks_cannot_be_blocked" } }, - [6932]={ + [7071]={ [1]={ [1]={ limit={ @@ -152828,7 +156685,7 @@ return { [1]="local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed" } }, - [6933]={ + [7072]={ [1]={ [1]={ limit={ @@ -152853,7 +156710,7 @@ return { [1]="local_attacks_impale_on_hit_%_chance" } }, - [6934]={ + [7073]={ [1]={ [1]={ limit={ @@ -152869,7 +156726,7 @@ return { [1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed" } }, - [6935]={ + [7074]={ [1]={ [1]={ limit={ @@ -152885,7 +156742,7 @@ return { [1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed" } }, - [6936]={ + [7075]={ [1]={ [1]={ limit={ @@ -152901,7 +156758,7 @@ return { [1]="local_base_chaos_damage_resistance_%_per_rune_or_soul_core" } }, - [6937]={ + [7076]={ [1]={ [1]={ [1]={ @@ -152921,7 +156778,7 @@ return { [1]="local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core" } }, - [6938]={ + [7077]={ [1]={ [1]={ limit={ @@ -152937,7 +156794,7 @@ return { [1]="local_base_maximum_life_+_per_rune_or_soul_core" } }, - [6939]={ + [7078]={ [1]={ [1]={ limit={ @@ -152953,7 +156810,7 @@ return { [1]="local_base_maximum_mana_+_per_rune_or_soul_core" } }, - [6940]={ + [7079]={ [1]={ [1]={ limit={ @@ -152982,7 +156839,7 @@ return { [1]="local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core" } }, - [6941]={ + [7080]={ [1]={ [1]={ limit={ @@ -153007,7 +156864,7 @@ return { [1]="local_bleed_on_critical_strike_chance_%" } }, - [6942]={ + [7081]={ [1]={ [1]={ limit={ @@ -153023,7 +156880,7 @@ return { [1]="local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed" } }, - [6943]={ + [7082]={ [1]={ [1]={ limit={ @@ -153039,7 +156896,7 @@ return { [1]="local_can_only_socket_corrupted_gems" } }, - [6944]={ + [7083]={ [1]={ [1]={ limit={ @@ -153055,7 +156912,7 @@ return { [1]="local_can_only_socket_emerald_gems" } }, - [6945]={ + [7084]={ [1]={ [1]={ limit={ @@ -153071,7 +156928,7 @@ return { [1]="local_can_only_socket_ruby_gems" } }, - [6946]={ + [7085]={ [1]={ [1]={ limit={ @@ -153087,7 +156944,7 @@ return { [1]="local_can_only_socket_sapphire_gems" } }, - [6947]={ + [7086]={ [1]={ [1]={ limit={ @@ -153103,7 +156960,7 @@ return { [1]="local_cannot_be_thrown" } }, - [6948]={ + [7087]={ [1]={ [1]={ limit={ @@ -153119,7 +156976,23 @@ return { [1]="local_chance_to_bleed_on_crit_50%" } }, - [6949]={ + [7088]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to gain Onslaught on Killing Hits with this Weapon" + } + }, + stats={ + [1]="local_chance_to_gain_onslaught_on_killing_blow_%" + } + }, + [7089]={ [1]={ [1]={ limit={ @@ -153135,7 +157008,7 @@ return { [1]="local_chance_to_intimidate_on_hit_%" } }, - [6950]={ + [7090]={ [1]={ [1]={ limit={ @@ -153151,7 +157024,7 @@ return { [1]="local_chaos_penetration_%" } }, - [6951]={ + [7091]={ [1]={ [1]={ limit={ @@ -153180,7 +157053,7 @@ return { [1]="local_charm_effect_+%" } }, - [6952]={ + [7092]={ [1]={ [1]={ [1]={ @@ -153213,7 +157086,7 @@ return { [1]="local_chill_on_hit_ms_if_in_off_hand" } }, - [6953]={ + [7093]={ [1]={ [1]={ limit={ @@ -153229,7 +157102,7 @@ return { [1]="local_cold_resistance_%_per_2%_quality" } }, - [6954]={ + [7094]={ [1]={ [1]={ limit={ @@ -153245,7 +157118,7 @@ return { [1]="local_concoction_can_consume_sulphur_flasks" } }, - [6955]={ + [7095]={ [1]={ [1]={ limit={ @@ -153274,7 +157147,7 @@ return { [1]="local_critical_strike_chance_+%_if_item_corrupted" } }, - [6956]={ + [7096]={ [1]={ [1]={ limit={ @@ -153290,7 +157163,7 @@ return { [1]="local_critical_strike_chance_+%_per_4%_quality" } }, - [6957]={ + [7097]={ [1]={ [1]={ limit={ @@ -153306,7 +157179,7 @@ return { [1]="local_crits_have_culling_strike" } }, - [6958]={ + [7098]={ [1]={ [1]={ limit={ @@ -153322,7 +157195,7 @@ return { [1]="local_crush_on_hit" } }, - [6959]={ + [7099]={ [1]={ [1]={ limit={ @@ -153338,7 +157211,7 @@ return { [1]="local_cull_frozen_enemies_on_hit" } }, - [6960]={ + [7100]={ [1]={ [1]={ limit={ @@ -153354,7 +157227,7 @@ return { [1]="local_culling_strike" } }, - [6961]={ + [7101]={ [1]={ [1]={ limit={ @@ -153370,7 +157243,7 @@ return { [1]="local_culling_strike_if_crit_recently" } }, - [6962]={ + [7102]={ [1]={ [1]={ limit={ @@ -153386,7 +157259,7 @@ return { [1]="local_culling_strike_vs_bleeding_enemies" } }, - [6963]={ + [7103]={ [1]={ [1]={ limit={ @@ -153415,7 +157288,7 @@ return { [1]="local_damage_+%_if_item_corrupted" } }, - [6964]={ + [7104]={ [1]={ [1]={ limit={ @@ -153431,7 +157304,7 @@ return { [1]="local_damage_roll_always_min_or_max" } }, - [6965]={ + [7105]={ [1]={ [1]={ limit={ @@ -153464,7 +157337,7 @@ return { [1]="local_damage_taken_+%_if_item_corrupted" } }, - [6966]={ + [7106]={ [1]={ [1]={ limit={ @@ -153480,7 +157353,7 @@ return { [1]="local_destroy_corpses_with_critical_strikes" } }, - [6967]={ + [7107]={ [1]={ [1]={ limit={ @@ -153496,7 +157369,32 @@ return { [1]="local_dexterity_per_2%_quality" } }, - [6968]={ + [7108]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="DNT {0}% chance when hitting a Rare Monster to disable one of its Modifiers" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="DNT Hitting a Rare Monster disable one of its Modifiers" + } + }, + stats={ + [1]="local_disable_rare_mod_on_hit_%_chance" + } + }, + [7109]={ [1]={ [1]={ limit={ @@ -153521,7 +157419,7 @@ return { [1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance" } }, - [6969]={ + [7110]={ [1]={ [1]={ limit={ @@ -153537,7 +157435,7 @@ return { [1]="local_display_enemies_killed_nearby_count_as_being_killed_by_you" } }, - [6970]={ + [7111]={ [1]={ [1]={ limit={ @@ -153553,7 +157451,7 @@ return { [1]="local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds" } }, - [6971]={ + [7112]={ [1]={ [1]={ limit={ @@ -153582,7 +157480,7 @@ return { [1]="local_display_fire_and_cold_resist_debuff" } }, - [6972]={ + [7113]={ [1]={ [1]={ limit={ @@ -153598,7 +157496,7 @@ return { [1]="local_display_gain_power_charge_on_spending_mana" } }, - [6973]={ + [7114]={ [1]={ [1]={ limit={ @@ -153614,7 +157512,7 @@ return { [1]="local_display_grants_skill_frostbolt_level" } }, - [6974]={ + [7115]={ [1]={ [1]={ limit={ @@ -153643,7 +157541,7 @@ return { [1]="local_display_mod_aura_mana_regeration_rate_+%" } }, - [6975]={ + [7116]={ [1]={ [1]={ limit={ @@ -153672,7 +157570,7 @@ return { [1]="local_display_movement_speed_+%_for_you_and_nearby_allies" } }, - [6976]={ + [7117]={ [1]={ [1]={ limit={ @@ -153688,7 +157586,7 @@ return { [1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base" } }, - [6977]={ + [7118]={ [1]={ [1]={ limit={ @@ -153704,7 +157602,7 @@ return { [1]="local_display_nearby_allies_critical_strike_multiplier_+" } }, - [6978]={ + [7119]={ [1]={ [1]={ limit={ @@ -153720,7 +157618,7 @@ return { [1]="local_display_nearby_allies_extra_damage_rolls" } }, - [6979]={ + [7120]={ [1]={ [1]={ limit={ @@ -153736,7 +157634,7 @@ return { [1]="local_display_nearby_allies_have_fortify" } }, - [6980]={ + [7121]={ [1]={ [1]={ limit={ @@ -153752,7 +157650,7 @@ return { [1]="local_display_nearby_enemies_are_chilled" } }, - [6981]={ + [7122]={ [1]={ [1]={ limit={ @@ -153768,7 +157666,7 @@ return { [1]="local_display_nearby_enemies_are_covered_in_ash" } }, - [6982]={ + [7123]={ [1]={ [1]={ limit={ @@ -153784,7 +157682,7 @@ return { [1]="local_display_nearby_enemies_are_intimidated" } }, - [6983]={ + [7124]={ [1]={ [1]={ limit={ @@ -153800,7 +157698,7 @@ return { [1]="local_display_nearby_enemies_cannot_crit" } }, - [6984]={ + [7125]={ [1]={ [1]={ limit={ @@ -153816,7 +157714,7 @@ return { [1]="local_display_nearby_enemies_have_fire_exposure" } }, - [6985]={ + [7126]={ [1]={ [1]={ limit={ @@ -153832,7 +157730,7 @@ return { [1]="local_display_nearby_enemy_chaos_damage_resistance_%" } }, - [6986]={ + [7127]={ [1]={ [1]={ limit={ @@ -153848,7 +157746,7 @@ return { [1]="local_display_nearby_enemy_cold_damage_resistance_%" } }, - [6987]={ + [7128]={ [1]={ [1]={ limit={ @@ -153864,7 +157762,7 @@ return { [1]="local_display_nearby_enemy_elemental_damage_taken_+%" } }, - [6988]={ + [7129]={ [1]={ [1]={ limit={ @@ -153880,7 +157778,7 @@ return { [1]="local_display_nearby_enemy_fire_damage_resistance_%" } }, - [6989]={ + [7130]={ [1]={ [1]={ limit={ @@ -153896,7 +157794,7 @@ return { [1]="local_display_nearby_enemy_life_reserved_by_stat_%" } }, - [6990]={ + [7131]={ [1]={ [1]={ limit={ @@ -153912,7 +157810,7 @@ return { [1]="local_display_nearby_enemy_lightning_damage_resistance_%" } }, - [6991]={ + [7132]={ [1]={ [1]={ limit={ @@ -153928,7 +157826,7 @@ return { [1]="local_display_nearby_enemy_no_chaos_damage_resistance" } }, - [6992]={ + [7133]={ [1]={ [1]={ limit={ @@ -153957,7 +157855,7 @@ return { [1]="local_display_nearby_enemy_physical_damage_taken_+%" } }, - [6993]={ + [7134]={ [1]={ [1]={ limit={ @@ -153973,7 +157871,7 @@ return { [1]="local_display_self_crushed" } }, - [6994]={ + [7135]={ [1]={ [1]={ limit={ @@ -153989,7 +157887,7 @@ return { [1]="local_display_trigger_summon_infernal_familiar_when_allocated" } }, - [6995]={ + [7136]={ [1]={ [1]={ limit={ @@ -154005,7 +157903,7 @@ return { [1]="local_display_triggers_level_x_corpse_cloud_on_footstep" } }, - [6996]={ + [7137]={ [1]={ [1]={ limit={ @@ -154021,7 +157919,7 @@ return { [1]="local_display_triggers_level_x_detonation_on_off_hand_hit" } }, - [6997]={ + [7138]={ [1]={ [1]={ limit={ @@ -154037,7 +157935,7 @@ return { [1]="local_display_triggers_level_x_ember_fusillade_on_spell_cast" } }, - [6998]={ + [7139]={ [1]={ [1]={ limit={ @@ -154053,7 +157951,7 @@ return { [1]="local_display_triggers_level_x_gas_cloud_on_main_hand_hit" } }, - [6999]={ + [7140]={ [1]={ [1]={ limit={ @@ -154069,7 +157967,7 @@ return { [1]="local_display_triggers_level_x_lightning_bolt_on_critical_strike" } }, - [7000]={ + [7141]={ [1]={ [1]={ limit={ @@ -154085,7 +157983,7 @@ return { [1]="local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin" } }, - [7001]={ + [7142]={ [1]={ [1]={ limit={ @@ -154101,7 +157999,7 @@ return { [1]="local_double_damage_with_attacks" } }, - [7002]={ + [7143]={ [1]={ [1]={ limit={ @@ -154126,7 +158024,7 @@ return { [1]="local_double_damage_with_attacks_chance_%" } }, - [7003]={ + [7144]={ [1]={ [1]={ limit={ @@ -154142,7 +158040,23 @@ return { [1]="local_double_hit_damage_stun_build_up" } }, - [7004]={ + [7145]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Gain {0}% Edict Declaration when you disable a rare monster mod" + } + }, + stats={ + [1]="local_edict_declaration_gain_per_mod_disabled" + } + }, + [7146]={ [1]={ [1]={ limit={ @@ -154158,7 +158072,7 @@ return { [1]="local_elemental_damage_+%_per_2%_quality" } }, - [7005]={ + [7147]={ [1]={ [1]={ [1]={ @@ -154178,7 +158092,7 @@ return { [1]="local_energy_shield_regeneration_per_minute_%_if_crit_recently" } }, - [7006]={ + [7148]={ [1]={ [1]={ limit={ @@ -154194,7 +158108,7 @@ return { [1]="local_evasion_rating_and_energy_shield" } }, - [7007]={ + [7149]={ [1]={ [1]={ limit={ @@ -154210,7 +158124,7 @@ return { [1]="local_explode_on_kill_with_crit_%_physical_damage_to_deal" } }, - [7008]={ + [7150]={ [1]={ [1]={ limit={ @@ -154226,27 +158140,148 @@ return { [1]="local_fire_resistance_%_per_2%_quality" } }, - [7009]={ + [7151]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="On Corruption, Item gains two Enchantments" + } + }, + stats={ + [1]="local_force_corruption_outcome_two_enchants" + } + }, + [7152]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="With a Murderous Eye Jewel Socketed, Melee Attacks grant {0} Rage on Hit, no more than once every second" + } + }, + stats={ + [1]="local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed" + } + }, + [7153]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Rage on Hit" + } + }, + stats={ + [1]="local_gain_X_rage_on_hit" + } + }, + [7154]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="With a Murderous Eye Jewel Socketed, Melee Hits have {0}% chance to Fortify" + } + }, + stats={ + [1]="local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed" + } + }, + [7155]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" + } + }, + stats={ + [1]="local_gain_shrine_buff_every_10_seconds" + } + }, + [7156]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Global Defences per Socket filled" + }, + [2]={ [1]={ - k="per_minute_to_per_second_2dp", + k="negate", v=1 }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Global Defences per Socket filled" + } + }, + stats={ + [1]="local_global_defences_+%_per_rune_or_soul_core" + } + }, + [7157]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Conquered Attribute Passive Skills also grant {0:+d} to all Attributes" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes" + } + }, + [7158]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Gains {0} Charges per Second" + text="Conquered Attribute Passive Skills also grant {0:+d} to Dexterity" } }, stats={ - [1]="local_flask_gain_X_charges_every_minute" + [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity" } }, - [7010]={ + [7159]={ [1]={ [1]={ limit={ @@ -154255,14 +158290,46 @@ return { [2]="#" } }, - text="Instant recovery when on Low Mana" + text="Conquered Attribute Passive Skills also grant {0:+d} to Intelligence" } }, stats={ - [1]="local_flask_recover_instantly_when_on_low_mana" + [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence" } }, - [7011]={ + [7160]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Conquered Attribute Passive Skills also grant {0:+d} to Strength" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_strength" + } + }, + [7161]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Conquered Attribute Passive Skills also grant {0:+d} to Tribute" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute" + } + }, + [7162]={ [1]={ [1]={ limit={ @@ -154271,14 +158338,27 @@ return { [2]="#" } }, - text="On Corruption, Item gains two Enchantments" + text="Conquered Small Passive Skills also grant {0}% increased Elemental Ailment Threshold" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Elemental Ailment Threshold" } }, stats={ - [1]="local_force_corruption_outcome_two_enchants" + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%" } }, - [7012]={ + [7163]={ [1]={ [1]={ limit={ @@ -154287,30 +158367,85 @@ return { [2]="#" } }, - text="With a Murderous Eye Jewel Socketed, Melee Attacks grant {0} Rage on Hit, no more than once every second" + text="Conquered Small Passive Skills also grant {0}% increased Armour" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Armour" } }, stats={ - [1]="local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed" + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%" } }, - [7013]={ + [7164]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Attack damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Attack damage" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%" + } + }, + [7165]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Gain {0} Rage on Hit" + text="Conquered Small Passive Skills also grant {0}% increased Chaos damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Chaos damage" } }, stats={ - [1]="local_gain_X_rage_on_hit" + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%" } }, - [7014]={ + [7166]={ [1]={ [1]={ limit={ @@ -154319,14 +158454,27 @@ return { [2]="#" } }, - text="With a Murderous Eye Jewel Socketed, Melee Hits have {0}% chance to Fortify" + text="Conquered Small Passive Skills also grant {0}% increased Elemental Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Elemental Damage" } }, stats={ - [1]="local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed" + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%" } }, - [7015]={ + [7167]={ [1]={ [1]={ limit={ @@ -154335,7 +158483,7 @@ return { [2]="#" } }, - text="{0}% increased Global Defences per Socket filled" + text="Conquered Small Passive Skills also grant {0}% increased Energy Shield" }, [2]={ [1]={ @@ -154348,14 +158496,257 @@ return { [2]=-1 } }, - text="{0}% reduced Global Defences per Socket filled" + text="Conquered Small Passive Skills also grant {0}% reduced Energy Shield" } }, stats={ - [1]="local_global_defences_+%_per_rune_or_soul_core" + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%" } }, - [7016]={ + [7168]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Evasion Rating" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Evasion Rating" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%" + } + }, + [7169]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Life Regeneration rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Life Regeneration rate" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%" + } + }, + [7170]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Mana Regeneration rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Mana Regeneration rate" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%" + } + }, + [7171]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant Minions deal {0}% increased damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant Minions deal {0}% reduced damage" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%" + } + }, + [7172]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Physical damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Physical damage" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%" + } + }, + [7173]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Spell damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Spell damage" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%" + } + }, + [7174]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conquered Small Passive Skills also grant {0}% increased Stun Threshold" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Conquered Small Passive Skills also grant {0}% reduced Stun Threshold" + } + }, + stats={ + [1]="local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%" + } + }, + [7175]={ + [1]={ + [1]={ + [1]={ + k="passive_hash", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="One Conquered Notable Passive Skill becomes {0}" + } + }, + stats={ + [1]="local_historic_jewel_override_1_conquored_notable_to_passive_hash_1" + } + }, + [7176]={ + [1]={ + [1]={ + [1]={ + k="passive_hash", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="One Conquered Notable Passive Skill becomes {0}" + } + }, + stats={ + [1]="local_historic_jewel_override_1_conquored_notable_to_passive_hash_2" + } + }, + [7177]={ [1]={ [1]={ limit={ @@ -154371,7 +158762,7 @@ return { [1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently" } }, - [7017]={ + [7178]={ [1]={ [1]={ limit={ @@ -154400,7 +158791,7 @@ return { [1]="local_hits_with_this_weapon_freeze_as_though_damage_+%_final" } }, - [7018]={ + [7179]={ [1]={ [1]={ limit={ @@ -154416,7 +158807,7 @@ return { [1]="local_hits_with_this_weapon_ignore_poison_limit" } }, - [7019]={ + [7180]={ [1]={ [1]={ limit={ @@ -154445,7 +158836,7 @@ return { [1]="local_hits_with_this_weapon_shock_as_though_damage_+%_final" } }, - [7020]={ + [7181]={ [1]={ [1]={ limit={ @@ -154474,7 +158865,7 @@ return { [1]="local_ignite_effect_+%_final_with_this_weapon" } }, - [7021]={ + [7182]={ [1]={ [1]={ limit={ @@ -154490,7 +158881,7 @@ return { [1]="local_immune_to_curses_if_item_corrupted" } }, - [7022]={ + [7183]={ [1]={ [1]={ limit={ @@ -154515,7 +158906,7 @@ return { [1]="local_inflict_lightning_exposure_on_hit_%_chance" } }, - [7023]={ + [7184]={ [1]={ [1]={ limit={ @@ -154540,7 +158931,7 @@ return { [1]="local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant" } }, - [7024]={ + [7185]={ [1]={ [1]={ limit={ @@ -154556,7 +158947,87 @@ return { [1]="local_intelligence_per_2%_quality" } }, - [7025]={ + [7186]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This item gains bonuses from Socketed Items as though it was a Body Armour" + } + }, + stats={ + [1]="local_item_benefit_socketable_as_if_body_armour" + } + }, + [7187]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This item gains bonuses from Socketed Items as though it was Boots" + } + }, + stats={ + [1]="local_item_benefit_socketable_as_if_boots" + } + }, + [7188]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This item gains bonuses from Socketed Items as though it was Gloves" + } + }, + stats={ + [1]="local_item_benefit_socketable_as_if_gloves" + } + }, + [7189]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This item gains bonuses from Socketed Items as though it was a Helmet" + } + }, + stats={ + [1]="local_item_benefit_socketable_as_if_helmet" + } + }, + [7190]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This item gains bonuses from Socketed Items as though it was a Shield" + } + }, + stats={ + [1]="local_item_benefit_socketable_as_if_shield" + } + }, + [7191]={ [1]={ [1]={ limit={ @@ -154572,7 +159043,7 @@ return { [1]="local_item_can_roll_all_influences" } }, - [7026]={ + [7192]={ [1]={ [1]={ limit={ @@ -154601,7 +159072,7 @@ return { [1]="local_item_found_rarity_+%_per_rune_or_soul_core" } }, - [7027]={ + [7193]={ [1]={ [1]={ limit={ @@ -154617,7 +159088,7 @@ return { [1]="local_item_quality_+" } }, - [7028]={ + [7194]={ [1]={ [1]={ limit={ @@ -154633,7 +159104,7 @@ return { [1]="local_item_sell_price_doubled" } }, - [7029]={ + [7195]={ [1]={ [1]={ limit={ @@ -154649,7 +159120,7 @@ return { [1]="local_item_stats_are_doubled_in_breach" } }, - [7030]={ + [7196]={ [1]={ [1]={ limit={ @@ -154665,7 +159136,7 @@ return { [1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing" } }, - [7031]={ + [7197]={ [1]={ [1]={ limit={ @@ -154681,7 +159152,7 @@ return { [1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius" } }, - [7032]={ + [7198]={ [1]={ [1]={ limit={ @@ -154697,7 +159168,7 @@ return { [1]="local_jewel_disable_combust_with_40_strength_in_radius" } }, - [7033]={ + [7199]={ [1]={ [1]={ limit={ @@ -154722,7 +159193,7 @@ return { [1]="local_jewel_display_radius_change" } }, - [7034]={ + [7200]={ [1]={ [1]={ limit={ @@ -154751,7 +159222,7 @@ return { [1]="local_jewel_expansion_jewels_count" } }, - [7035]={ + [7201]={ [1]={ [1]={ limit={ @@ -154780,7 +159251,7 @@ return { [1]="local_jewel_expansion_jewels_count_override" } }, - [7036]={ + [7202]={ [1]={ [1]={ limit={ @@ -154796,7 +159267,7 @@ return { [1]="local_jewel_expansion_keystone_disciple_of_kitava" } }, - [7037]={ + [7203]={ [1]={ [1]={ limit={ @@ -154812,7 +159283,7 @@ return { [1]="local_jewel_expansion_keystone_hollow_palm_technique" } }, - [7038]={ + [7204]={ [1]={ [1]={ limit={ @@ -154828,7 +159299,7 @@ return { [1]="local_jewel_expansion_keystone_kineticism" } }, - [7039]={ + [7205]={ [1]={ [1]={ limit={ @@ -154844,7 +159315,7 @@ return { [1]="local_jewel_expansion_keystone_lone_messenger" } }, - [7040]={ + [7206]={ [1]={ [1]={ limit={ @@ -154860,7 +159331,7 @@ return { [1]="local_jewel_expansion_keystone_natures_patience" } }, - [7041]={ + [7207]={ [1]={ [1]={ limit={ @@ -154876,7 +159347,7 @@ return { [1]="local_jewel_expansion_keystone_pitfighter" } }, - [7042]={ + [7208]={ [1]={ [1]={ limit={ @@ -154892,7 +159363,7 @@ return { [1]="local_jewel_expansion_keystone_secrets_of_suffering" } }, - [7043]={ + [7209]={ [1]={ [1]={ limit={ @@ -154908,7 +159379,7 @@ return { [1]="local_jewel_expansion_keystone_veterans_awareness" } }, - [7044]={ + [7210]={ [1]={ [1]={ [1]={ @@ -154928,7 +159399,7 @@ return { [1]="local_jewel_expansion_passive_node_index" } }, - [7045]={ + [7211]={ [1]={ [1]={ limit={ @@ -154944,7 +159415,7 @@ return { [1]="local_jewel_fireball_cannot_ignite" } }, - [7046]={ + [7212]={ [1]={ [1]={ limit={ @@ -154960,7 +159431,7 @@ return { [1]="local_jewel_fireball_chance_to_scorch_%" } }, - [7047]={ + [7213]={ [1]={ [1]={ limit={ @@ -154989,7 +159460,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius" } }, - [7048]={ + [7214]={ [1]={ [1]={ limit={ @@ -155018,7 +159489,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius" } }, - [7049]={ + [7215]={ [1]={ [1]={ limit={ @@ -155034,7 +159505,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius" } }, - [7050]={ + [7216]={ [1]={ [1]={ limit={ @@ -155059,7 +159530,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius" } }, - [7051]={ + [7217]={ [1]={ [1]={ limit={ @@ -155088,7 +159559,7 @@ return { [1]="local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius" } }, - [7052]={ + [7218]={ [1]={ [1]={ limit={ @@ -155117,7 +159588,7 @@ return { [1]="local_jewel_notable_passive_in_radius_effect_+%" } }, - [7053]={ + [7219]={ [1]={ [1]={ limit={ @@ -155146,7 +159617,7 @@ return { [1]="local_jewel_notables_in_radius_grant_base_projectile_speed_+%" } }, - [7054]={ + [7220]={ [1]={ [1]={ limit={ @@ -155175,7 +159646,7 @@ return { [1]="local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%" } }, - [7055]={ + [7221]={ [1]={ [1]={ limit={ @@ -155204,7 +159675,7 @@ return { [1]="local_jewel_notables_in_radius_grant_curse_effect_+%" } }, - [7056]={ + [7222]={ [1]={ [1]={ limit={ @@ -155233,7 +159704,7 @@ return { [1]="local_jewel_small_passive_in_radius_effect_+%" } }, - [7057]={ + [7223]={ [1]={ [1]={ limit={ @@ -155262,7 +159733,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_evasion_rating_+%" } }, - [7058]={ + [7224]={ [1]={ [1]={ limit={ @@ -155291,7 +159762,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%" } }, - [7059]={ + [7225]={ [1]={ [1]={ limit={ @@ -155320,7 +159791,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%" } }, - [7060]={ + [7226]={ [1]={ [1]={ limit={ @@ -155336,7 +159807,7 @@ return { [1]="local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant" } }, - [7061]={ + [7227]={ [1]={ [1]={ limit={ @@ -155352,7 +159823,7 @@ return { [1]="local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [7062]={ + [7228]={ [1]={ [1]={ limit={ @@ -155368,7 +159839,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_cannot_chain" } }, - [7063]={ + [7229]={ [1]={ [1]={ limit={ @@ -155384,7 +159855,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_fork" } }, - [7064]={ + [7230]={ [1]={ [1]={ limit={ @@ -155400,7 +159871,7 @@ return { [1]="local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura" } }, - [7065]={ + [7231]={ [1]={ [1]={ limit={ @@ -155429,7 +159900,7 @@ return { [1]="local_life_gain_per_target_vs_blinded_enemies" } }, - [7066]={ + [7232]={ [1]={ [1]={ limit={ @@ -155458,7 +159929,7 @@ return { [1]="local_life_gain_per_target_while_leeching" } }, - [7067]={ + [7233]={ [1]={ [1]={ limit={ @@ -155474,7 +159945,7 @@ return { [1]="local_lightning_resistance_%_per_2%_quality" } }, - [7068]={ + [7234]={ [1]={ [1]={ limit={ @@ -155499,7 +159970,7 @@ return { [1]="local_maim_on_hit_%" } }, - [7069]={ + [7235]={ [1]={ [1]={ limit={ @@ -155515,7 +159986,7 @@ return { [1]="local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_6_seconds_up_to_X" } }, - [7070]={ + [7236]={ [1]={ [1]={ limit={ @@ -155544,7 +160015,7 @@ return { [1]="local_maximum_energy_shield_+%_if_item_corrupted" } }, - [7071]={ + [7237]={ [1]={ [1]={ limit={ @@ -155560,7 +160031,7 @@ return { [1]="local_maximum_life_per_2%_quality" } }, - [7072]={ + [7238]={ [1]={ [1]={ limit={ @@ -155589,7 +160060,7 @@ return { [1]="local_maximum_life_+%_if_item_corrupted" } }, - [7073]={ + [7239]={ [1]={ [1]={ limit={ @@ -155618,7 +160089,7 @@ return { [1]="local_maximum_life_+%_per_rune_or_soul_core" } }, - [7074]={ + [7240]={ [1]={ [1]={ limit={ @@ -155634,7 +160105,7 @@ return { [1]="local_maximum_mana_per_2%_quality" } }, - [7075]={ + [7241]={ [1]={ [1]={ limit={ @@ -155663,7 +160134,7 @@ return { [1]="local_maximum_mana_+%_per_rune_or_soul_core" } }, - [7076]={ + [7242]={ [1]={ [1]={ limit={ @@ -155679,7 +160150,7 @@ return { [1]="local_maximum_quality_is_%" } }, - [7077]={ + [7243]={ [1]={ [1]={ limit={ @@ -155695,7 +160166,7 @@ return { [1]="local_maximum_quality_+" } }, - [7078]={ + [7244]={ [1]={ [1]={ limit={ @@ -155711,7 +160182,7 @@ return { [1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed" } }, - [7079]={ + [7245]={ [1]={ [1]={ limit={ @@ -155740,7 +160211,7 @@ return { [1]="local_movement_speed_+%_if_item_corrupted" } }, - [7080]={ + [7246]={ [1]={ [1]={ limit={ @@ -155756,23 +160227,7 @@ return { [1]="local_no_critical_strike_multiplier" } }, - [7081]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="No Chance to Deflect" - } - }, - stats={ - [1]="local_no_deflect_chance" - } - }, - [7082]={ + [7247]={ [1]={ [1]={ limit={ @@ -155797,7 +160252,7 @@ return { [1]="local_poison_on_critical_strike_chance_%" } }, - [7083]={ + [7248]={ [1]={ [1]={ limit={ @@ -155822,7 +160277,7 @@ return { [1]="local_poison_on_hit_%" } }, - [7084]={ + [7249]={ [1]={ [1]={ limit={ @@ -155847,7 +160302,7 @@ return { [1]="local_projectile_speed_+%" } }, - [7085]={ + [7250]={ [1]={ [1]={ limit={ @@ -155863,7 +160318,7 @@ return { [1]="local_requirements_%_to_convert_to_dexterity" } }, - [7086]={ + [7251]={ [1]={ [1]={ limit={ @@ -155879,7 +160334,7 @@ return { [1]="local_requirements_%_to_convert_to_intelligence" } }, - [7087]={ + [7252]={ [1]={ [1]={ limit={ @@ -155895,7 +160350,7 @@ return { [1]="local_requirements_%_to_convert_to_strength" } }, - [7088]={ + [7253]={ [1]={ [1]={ limit={ @@ -155911,7 +160366,7 @@ return { [1]="local_resist_all_elements_%_if_item_corrupted" } }, - [7089]={ + [7254]={ [1]={ [1]={ limit={ @@ -155940,7 +160395,7 @@ return { [1]="local_resist_all_elements_+%_per_rune_or_soul_core" } }, - [7090]={ + [7255]={ [1]={ [1]={ limit={ @@ -155956,7 +160411,7 @@ return { [1]="local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [7091]={ + [7256]={ [1]={ [1]={ limit={ @@ -155972,7 +160427,7 @@ return { [1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles" } }, - [7092]={ + [7257]={ [1]={ [1]={ limit={ @@ -155988,7 +160443,7 @@ return { [1]="local_right_ring_slot_projectiles_from_spells_cannot_fork" } }, - [7093]={ + [7258]={ [1]={ [1]={ limit={ @@ -156004,7 +160459,7 @@ return { [1]="local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura" } }, - [7094]={ + [7259]={ [1]={ [1]={ limit={ @@ -156033,7 +160488,7 @@ return { [1]="local_ring_attack_speed_+%_final" } }, - [7095]={ + [7260]={ [1]={ [1]={ limit={ @@ -156062,7 +160517,7 @@ return { [1]="local_ring_burning_damage_+%_final" } }, - [7096]={ + [7261]={ [1]={ [1]={ limit={ @@ -156091,7 +160546,7 @@ return { [1]="local_ring_nova_spells_area_of_effect_+%_final" } }, - [7097]={ + [7262]={ [1]={ [1]={ limit={ @@ -156100,7 +160555,7 @@ return { [2]="#" } }, - text="{0}% increased effect of Socketed Items" + text="{0}% increased effect of Socketed Runes" }, [2]={ [1]={ @@ -156113,14 +160568,14 @@ return { [2]=-1 } }, - text="{0}% reduced effect of Socketed Items" + text="{0}% reduced effect of Socketed Runes" } }, stats={ - [1]="local_rune_and_soul_core_effect_+%" + [1]="local_rune_effect_+%" } }, - [7098]={ + [7263]={ [1]={ [1]={ limit={ @@ -156129,7 +160584,7 @@ return { [2]="#" } }, - text="{0}% increased effect of Socketed Runes" + text="{}% increased Empowerment" }, [2]={ [1]={ @@ -156142,14 +160597,30 @@ return { [2]=-1 } }, - text="{0}% reduced effect of Socketed Runes" + text="{}% reduced Empowerment" } }, stats={ - [1]="local_rune_effect_+%" + [1]="local_sentinel_drone_difficulty_+%" } }, - [7099]={ + [7264]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Double Stun Threshold while Shield is Raised" + } + }, + stats={ + [1]="local_shield_double_stun_threshold_while_active_blocking" + } + }, + [7265]={ [1]={ [1]={ limit={ @@ -156158,7 +160629,7 @@ return { [2]="#" } }, - text="{}% increased Empowerment" + text="{0}% increased effect of Socketed Items" }, [2]={ [1]={ @@ -156171,30 +160642,14 @@ return { [2]=-1 } }, - text="{}% reduced Empowerment" - } - }, - stats={ - [1]="local_sentinel_drone_difficulty_+%" - } - }, - [7100]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Double Stun Threshold while Shield is Raised" + text="{0}% reduced effect of Socketed Items" } }, stats={ - [1]="local_shield_double_stun_threshold_while_active_blocking" + [1]="local_socketed_items_effect_+%" } }, - [7101]={ + [7266]={ [1]={ [1]={ limit={ @@ -156223,7 +160678,7 @@ return { [1]="local_soul_core_effect_+%" } }, - [7102]={ + [7267]={ [1]={ [1]={ limit={ @@ -156252,7 +160707,7 @@ return { [1]="local_spell_damage_+%_if_item_corrupted" } }, - [7103]={ + [7268]={ [1]={ [1]={ limit={ @@ -156268,7 +160723,7 @@ return { [1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed" } }, - [7104]={ + [7269]={ [1]={ [1]={ limit={ @@ -156284,7 +160739,7 @@ return { [1]="local_spirit_+_per_rune_or_soul_core" } }, - [7105]={ + [7270]={ [1]={ [1]={ limit={ @@ -156300,7 +160755,7 @@ return { [1]="local_strength_per_2%_quality" } }, - [7106]={ + [7271]={ [1]={ [1]={ limit={ @@ -156316,7 +160771,7 @@ return { [1]="local_stun_threshold_+_per_rune_or_soul_core" } }, - [7107]={ + [7272]={ [1]={ [1]={ limit={ @@ -156332,7 +160787,7 @@ return { [1]="local_tablet_make_maps_in_radius_available" } }, - [7108]={ + [7273]={ [1]={ [1]={ limit={ @@ -156348,7 +160803,7 @@ return { [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" } }, - [7109]={ + [7274]={ [1]={ [1]={ limit={ @@ -156364,7 +160819,23 @@ return { [1]="local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds" } }, - [7110]={ + [7275]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Maximum Rage is doubled during effect" + } + }, + stats={ + [1]="local_unique_flask_maximum_rage_is_doubled_during_effect" + } + }, + [7276]={ [1]={ [1]={ limit={ @@ -156380,7 +160851,7 @@ return { [1]="local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect" } }, - [7111]={ + [7277]={ [1]={ [1]={ limit={ @@ -156396,7 +160867,7 @@ return { [1]="local_unique_flask_recover_all_mana_on_use" } }, - [7112]={ + [7278]={ [1]={ [1]={ limit={ @@ -156412,7 +160883,7 @@ return { [1]="local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends" } }, - [7113]={ + [7279]={ [1]={ [1]={ limit={ @@ -156441,7 +160912,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius" } }, - [7114]={ + [7280]={ [1]={ [1]={ [1]={ @@ -156461,7 +160932,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius" } }, - [7115]={ + [7281]={ [1]={ [1]={ [1]={ @@ -156481,7 +160952,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius" } }, - [7116]={ + [7282]={ [1]={ [1]={ limit={ @@ -156510,7 +160981,7 @@ return { [1]="local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius" } }, - [7117]={ + [7283]={ [1]={ [1]={ limit={ @@ -156526,7 +160997,7 @@ return { [1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius" } }, - [7118]={ + [7284]={ [1]={ [1]={ limit={ @@ -156542,7 +161013,7 @@ return { [1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius" } }, - [7119]={ + [7285]={ [1]={ [1]={ limit={ @@ -156558,7 +161029,7 @@ return { [1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius" } }, - [7120]={ + [7286]={ [1]={ [1]={ limit={ @@ -156574,7 +161045,7 @@ return { [1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius" } }, - [7121]={ + [7287]={ [1]={ [1]={ limit={ @@ -156603,7 +161074,7 @@ return { [1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius" } }, - [7122]={ + [7288]={ [1]={ [1]={ limit={ @@ -156632,7 +161103,7 @@ return { [1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius" } }, - [7123]={ + [7289]={ [1]={ [1]={ limit={ @@ -156648,7 +161119,7 @@ return { [1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage" } }, - [7124]={ + [7290]={ [1]={ [1]={ limit={ @@ -156664,23 +161135,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance" } }, - [7125]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Suppress Spell Damage at {0}% of its value" - } - }, - stats={ - [1]="local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%" - } - }, - [7126]={ + [7291]={ [1]={ [1]={ limit={ @@ -156696,7 +161151,7 @@ return { [1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius" } }, - [7127]={ + [7292]={ [1]={ [1]={ limit={ @@ -156725,7 +161180,7 @@ return { [1]="local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius" } }, - [7128]={ + [7293]={ [1]={ [1]={ limit={ @@ -156741,7 +161196,7 @@ return { [1]="local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius" } }, - [7129]={ + [7294]={ [1]={ [1]={ limit={ @@ -156770,7 +161225,7 @@ return { [1]="local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius" } }, - [7130]={ + [7295]={ [1]={ [1]={ [1]={ @@ -156790,7 +161245,7 @@ return { [1]="local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash" } }, - [7131]={ + [7296]={ [1]={ [1]={ limit={ @@ -156806,7 +161261,7 @@ return { [1]="local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius" } }, - [7132]={ + [7297]={ [1]={ [1]={ limit={ @@ -156835,7 +161290,7 @@ return { [1]="local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius" } }, - [7133]={ + [7298]={ [1]={ [1]={ limit={ @@ -156864,7 +161319,7 @@ return { [1]="local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius" } }, - [7134]={ + [7299]={ [1]={ [1]={ limit={ @@ -156880,7 +161335,7 @@ return { [1]="local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius" } }, - [7135]={ + [7300]={ [1]={ [1]={ limit={ @@ -156896,7 +161351,7 @@ return { [1]="local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius" } }, - [7136]={ + [7301]={ [1]={ [1]={ limit={ @@ -156921,7 +161376,7 @@ return { [1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius" } }, - [7137]={ + [7302]={ [1]={ [1]={ limit={ @@ -156937,7 +161392,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius" } }, - [7138]={ + [7303]={ [1]={ [1]={ limit={ @@ -156953,7 +161408,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius" } }, - [7139]={ + [7304]={ [1]={ [1]={ limit={ @@ -156969,7 +161424,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int" } }, - [7140]={ + [7305]={ [1]={ [1]={ limit={ @@ -156985,7 +161440,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex" } }, - [7141]={ + [7306]={ [1]={ [1]={ limit={ @@ -157001,7 +161456,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex" } }, - [7142]={ + [7307]={ [1]={ [1]={ limit={ @@ -157017,7 +161472,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius" } }, - [7143]={ + [7308]={ [1]={ [1]={ limit={ @@ -157033,7 +161488,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius" } }, - [7144]={ + [7309]={ [1]={ [1]={ limit={ @@ -157049,7 +161504,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius" } }, - [7145]={ + [7310]={ [1]={ [1]={ limit={ @@ -157065,7 +161520,7 @@ return { [1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage" } }, - [7146]={ + [7311]={ [1]={ [1]={ limit={ @@ -157081,7 +161536,7 @@ return { [1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage" } }, - [7147]={ + [7312]={ [1]={ [1]={ limit={ @@ -157097,7 +161552,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%" } }, - [7148]={ + [7313]={ [1]={ [1]={ limit={ @@ -157113,7 +161568,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance" } }, - [7149]={ + [7314]={ [1]={ [1]={ limit={ @@ -157138,7 +161593,7 @@ return { [1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius" } }, - [7150]={ + [7315]={ [1]={ [1]={ limit={ @@ -157154,7 +161609,7 @@ return { [1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius" } }, - [7151]={ + [7316]={ [1]={ [1]={ limit={ @@ -157183,7 +161638,7 @@ return { [1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius" } }, - [7152]={ + [7317]={ [1]={ [1]={ limit={ @@ -157208,7 +161663,7 @@ return { [1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius" } }, - [7153]={ + [7318]={ [1]={ [1]={ limit={ @@ -157237,7 +161692,7 @@ return { [1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius" } }, - [7154]={ + [7319]={ [1]={ [1]={ limit={ @@ -157262,7 +161717,7 @@ return { [1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius" } }, - [7155]={ + [7320]={ [1]={ [1]={ limit={ @@ -157291,7 +161746,7 @@ return { [1]="local_unique_jewel_grants_x_empty_passives" } }, - [7156]={ + [7321]={ [1]={ [1]={ limit={ @@ -157320,7 +161775,7 @@ return { [1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius" } }, - [7157]={ + [7322]={ [1]={ [1]={ limit={ @@ -157336,7 +161791,7 @@ return { [1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius" } }, - [7158]={ + [7323]={ [1]={ [1]={ limit={ @@ -157361,7 +161816,7 @@ return { [1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius" } }, - [7159]={ + [7324]={ [1]={ [1]={ limit={ @@ -157390,7 +161845,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius" } }, - [7160]={ + [7325]={ [1]={ [1]={ limit={ @@ -157419,23 +161874,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius" } }, - [7161]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at {0}% of its value" - } - }, - stats={ - [1]="local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%" - } - }, - [7162]={ + [7326]={ [1]={ [1]={ limit={ @@ -157451,7 +161890,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance" } }, - [7163]={ + [7327]={ [1]={ [1]={ limit={ @@ -157467,7 +161906,7 @@ return { [1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius" } }, - [7164]={ + [7328]={ [1]={ [1]={ limit={ @@ -157492,7 +161931,7 @@ return { [1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius" } }, - [7165]={ + [7329]={ [1]={ [1]={ limit={ @@ -157521,7 +161960,7 @@ return { [1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius" } }, - [7166]={ + [7330]={ [1]={ [1]={ limit={ @@ -157550,7 +161989,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius" } }, - [7167]={ + [7331]={ [1]={ [1]={ limit={ @@ -157579,7 +162018,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius" } }, - [7168]={ + [7332]={ [1]={ [1]={ limit={ @@ -157604,7 +162043,7 @@ return { [1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius" } }, - [7169]={ + [7333]={ [1]={ [1]={ limit={ @@ -157620,7 +162059,7 @@ return { [1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius" } }, - [7170]={ + [7334]={ [1]={ [1]={ limit={ @@ -157649,7 +162088,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius" } }, - [7171]={ + [7335]={ [1]={ [1]={ limit={ @@ -157678,7 +162117,7 @@ return { [1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%" } }, - [7172]={ + [7336]={ [1]={ [1]={ limit={ @@ -157694,7 +162133,7 @@ return { [1]="local_unique_jewel_notable_passive_in_radius_does_nothing" } }, - [7173]={ + [7337]={ [1]={ [1]={ limit={ @@ -157723,7 +162162,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed" } }, - [7174]={ + [7338]={ [1]={ [1]={ limit={ @@ -157752,7 +162191,7 @@ return { [1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius" } }, - [7175]={ + [7339]={ [1]={ [1]={ limit={ @@ -157777,7 +162216,7 @@ return { [1]="local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed" } }, - [7176]={ + [7340]={ [1]={ [1]={ limit={ @@ -157802,7 +162241,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius" } }, - [7177]={ + [7341]={ [1]={ [1]={ limit={ @@ -157818,7 +162257,7 @@ return { [1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius" } }, - [7178]={ + [7342]={ [1]={ [1]={ limit={ @@ -157834,7 +162273,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius" } }, - [7179]={ + [7343]={ [1]={ [1]={ limit={ @@ -157863,7 +162302,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius" } }, - [7180]={ + [7344]={ [1]={ [1]={ limit={ @@ -157879,7 +162318,7 @@ return { [1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius" } }, - [7181]={ + [7345]={ [1]={ [1]={ limit={ @@ -157895,7 +162334,7 @@ return { [1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius" } }, - [7182]={ + [7346]={ [1]={ [1]={ limit={ @@ -157911,7 +162350,7 @@ return { [1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius" } }, - [7183]={ + [7347]={ [1]={ [1]={ limit={ @@ -157927,7 +162366,7 @@ return { [1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius" } }, - [7184]={ + [7348]={ [1]={ [1]={ limit={ @@ -157943,7 +162382,7 @@ return { [1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius" } }, - [7185]={ + [7349]={ [1]={ [1]={ limit={ @@ -157959,7 +162398,7 @@ return { [1]="local_weapon_accuracy_is_unaffected_by_distance" } }, - [7186]={ + [7350]={ [1]={ [1]={ limit={ @@ -157975,7 +162414,7 @@ return { [1]="local_weapon_crit_chance_is_%" } }, - [7187]={ + [7351]={ [1]={ [1]={ limit={ @@ -157991,7 +162430,32 @@ return { [1]="local_weapon_damage_%_to_gain_as_daze_build_up" } }, - [7188]={ + [7352]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Dazes on Hit" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Daze on Hit" + } + }, + stats={ + [1]="local_weapon_daze_chance_%" + } + }, + [7353]={ [1]={ [1]={ limit={ @@ -158007,7 +162471,7 @@ return { [1]="local_weapon_range_+_per_10%_quality" } }, - [7189]={ + [7354]={ [1]={ [1]={ limit={ @@ -158032,7 +162496,7 @@ return { [1]="lose_%_of_infernal_flame_on_reaching_max" } }, - [7190]={ + [7355]={ [1]={ [1]={ limit={ @@ -158048,7 +162512,7 @@ return { [1]="lose_%_of_life_loss_over_4_seconds_instead" } }, - [7191]={ + [7356]={ [1]={ [1]={ [1]={ @@ -158068,7 +162532,7 @@ return { [1]="lose_%_of_max_infernal_flame_per_minute" } }, - [7192]={ + [7357]={ [1]={ [1]={ limit={ @@ -158084,7 +162548,7 @@ return { [1]="lose_adrenaline_on_losing_flame_touched" } }, - [7193]={ + [7358]={ [1]={ [1]={ limit={ @@ -158100,7 +162564,7 @@ return { [1]="lose_all_charges_on_starting_movement" } }, - [7194]={ + [7359]={ [1]={ [1]={ limit={ @@ -158116,7 +162580,7 @@ return { [1]="lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges" } }, - [7195]={ + [7360]={ [1]={ [1]={ limit={ @@ -158132,7 +162596,7 @@ return { [1]="lose_all_power_charges_on_block" } }, - [7196]={ + [7361]={ [1]={ [1]={ limit={ @@ -158148,7 +162612,7 @@ return { [1]="lose_all_rage_on_reaching_maximum_rage" } }, - [7197]={ + [7362]={ [1]={ [1]={ limit={ @@ -158164,7 +162628,7 @@ return { [1]="lose_all_tailwind_when_hit" } }, - [7198]={ + [7363]={ [1]={ [1]={ limit={ @@ -158180,7 +162644,7 @@ return { [1]="lose_%_of_es_on_crit" } }, - [7199]={ + [7364]={ [1]={ [1]={ limit={ @@ -158196,7 +162660,7 @@ return { [1]="lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill" } }, - [7200]={ + [7365]={ [1]={ [1]={ limit={ @@ -158212,7 +162676,7 @@ return { [1]="lose_%_of_life_on_crit" } }, - [7201]={ + [7366]={ [1]={ [1]={ limit={ @@ -158228,7 +162692,7 @@ return { [1]="lose_%_of_mana_when_you_use_an_attack_skill" } }, - [7202]={ + [7367]={ [1]={ [1]={ limit={ @@ -158244,7 +162708,7 @@ return { [1]="lose_power_charge_each_second_if_not_detonated_mines_recently" } }, - [7203]={ + [7368]={ [1]={ [1]={ limit={ @@ -158260,7 +162724,7 @@ return { [1]="lose_x_life_when_you_use_skill" } }, - [7204]={ + [7369]={ [1]={ [1]={ limit={ @@ -158276,7 +162740,7 @@ return { [1]="lose_x_mana_when_you_use_skill" } }, - [7205]={ + [7370]={ [1]={ [1]={ limit={ @@ -158301,7 +162765,7 @@ return { [1]="local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence" } }, - [7206]={ + [7371]={ [1]={ [1]={ limit={ @@ -158317,7 +162781,7 @@ return { [1]="low_life_threshold_%_override" } }, - [7207]={ + [7372]={ [1]={ [1]={ limit={ @@ -158346,7 +162810,7 @@ return { [1]="mace_hit_damage_stun_multiplier_+%" } }, - [7208]={ + [7373]={ [1]={ [1]={ limit={ @@ -158362,7 +162826,7 @@ return { [1]="mace_slam_aftershock_chance_%" } }, - [7209]={ + [7374]={ [1]={ [1]={ limit={ @@ -158378,7 +162842,7 @@ return { [1]="mace_strike_aftershock_chance_%" } }, - [7210]={ + [7375]={ [1]={ [1]={ limit={ @@ -158407,7 +162871,7 @@ return { [1]="magic_monster_dropped_item_rarity_+%" } }, - [7211]={ + [7376]={ [1]={ [1]={ limit={ @@ -158432,7 +162896,7 @@ return { [1]="magma_orb_number_of_additional_projectiles" } }, - [7212]={ + [7377]={ [1]={ [1]={ limit={ @@ -158461,7 +162925,7 @@ return { [1]="magma_orb_skill_area_of_effect_+%_per_bounce" } }, - [7213]={ + [7378]={ [1]={ [1]={ limit={ @@ -158490,7 +162954,7 @@ return { [1]="maim_chance_+%" } }, - [7214]={ + [7379]={ [1]={ [1]={ limit={ @@ -158519,7 +162983,23 @@ return { [1]="maim_effect_+%" } }, - [7215]={ + [7380]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies you Fully Armour Break are Maimed" + } + }, + stats={ + [1]="maim_enemy_on_full_armour_break" + } + }, + [7381]={ [1]={ [1]={ limit={ @@ -158535,7 +163015,7 @@ return { [1]="maim_on_crit_%_with_attacks" } }, - [7216]={ + [7382]={ [1]={ [1]={ limit={ @@ -158560,7 +163040,7 @@ return { [1]="maim_on_hit_%" } }, - [7217]={ + [7383]={ [1]={ [1]={ limit={ @@ -158589,7 +163069,7 @@ return { [1]="main_hand_attack_damage_+%_while_wielding_two_weapon_types" } }, - [7218]={ + [7384]={ [1]={ [1]={ limit={ @@ -158618,7 +163098,7 @@ return { [1]="main_hand_attack_speed_+%_final" } }, - [7219]={ + [7385]={ [1]={ [1]={ limit={ @@ -158647,7 +163127,7 @@ return { [1]="main_hand_claw_life_gain_on_hit" } }, - [7220]={ + [7386]={ [1]={ [1]={ limit={ @@ -158672,7 +163152,7 @@ return { [1]="main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%" } }, - [7221]={ + [7387]={ [1]={ [1]={ limit={ @@ -158701,7 +163181,7 @@ return { [1]="main_hand_damage_+%_while_dual_wielding" } }, - [7222]={ + [7388]={ [1]={ [1]={ limit={ @@ -158717,7 +163197,7 @@ return { [1]="malediction_on_hit" } }, - [7223]={ + [7389]={ [1]={ [1]={ [1]={ @@ -158754,7 +163234,7 @@ return { [1]="malevolence_mana_reservation_efficiency_-2%_per_1" } }, - [7224]={ + [7390]={ [1]={ [1]={ limit={ @@ -158783,7 +163263,7 @@ return { [1]="malevolence_mana_reservation_efficiency_+%" } }, - [7225]={ + [7391]={ [1]={ [1]={ limit={ @@ -158812,7 +163292,7 @@ return { [1]="mamba_strike_area_of_effect_+%" } }, - [7226]={ + [7392]={ [1]={ [1]={ limit={ @@ -158841,7 +163321,7 @@ return { [1]="mamba_strike_damage_+%" } }, - [7227]={ + [7393]={ [1]={ [1]={ limit={ @@ -158870,7 +163350,7 @@ return { [1]="mamba_strike_duration_+%" } }, - [7228]={ + [7394]={ [1]={ [1]={ limit={ @@ -158886,7 +163366,65 @@ return { [1]="mana_%_to_gain_as_armour" } }, - [7229]={ + [7395]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency if you have Dodge Rolled Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency if you have Dodge Rolled Recently" + } + }, + stats={ + [1]="mana_cost_efficiency_+%_if_dodge_rolled_recently" + } + }, + [7396]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency if you haven't Dodge Rolled Recently" + } + }, + stats={ + [1]="mana_cost_efficiency_+%_if_not_dodge_rolled_recently" + } + }, + [7397]={ [1]={ [1]={ limit={ @@ -158915,7 +163453,7 @@ return { [1]="mana_cost_+%_for_channelling_skills" } }, - [7230]={ + [7398]={ [1]={ [1]={ limit={ @@ -158944,7 +163482,7 @@ return { [1]="mana_cost_+%_for_trap_and_mine_skills" } }, - [7231]={ + [7399]={ [1]={ [1]={ limit={ @@ -158973,7 +163511,7 @@ return { [1]="mana_cost_+%_for_trap_skills" } }, - [7232]={ + [7400]={ [1]={ [1]={ limit={ @@ -159002,7 +163540,7 @@ return { [1]="mana_cost_+%_per_10_devotion" } }, - [7233]={ + [7401]={ [1]={ [1]={ [1]={ @@ -159022,7 +163560,7 @@ return { [1]="mana_degeneration_%_per_minute_not_in_grace" } }, - [7234]={ + [7402]={ [1]={ [1]={ [1]={ @@ -159042,7 +163580,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [7235]={ + [7403]={ [1]={ [1]={ [1]={ @@ -159062,7 +163600,7 @@ return { [1]="mana_degeneration_per_minute_%" } }, - [7236]={ + [7404]={ [1]={ [1]={ limit={ @@ -159091,7 +163629,7 @@ return { [1]="mana_flask_charges_gained_+%" } }, - [7237]={ + [7405]={ [1]={ [1]={ limit={ @@ -159107,7 +163645,7 @@ return { [1]="mana_flask_effects_not_removed_at_full_mana" } }, - [7238]={ + [7406]={ [1]={ [1]={ limit={ @@ -159123,7 +163661,7 @@ return { [1]="mana_flask_recovery_is_instant_while_on_low_mana" } }, - [7239]={ + [7407]={ [1]={ [1]={ limit={ @@ -159148,7 +163686,7 @@ return { [1]="mana_flasks_gain_X_charges_every_3_seconds" } }, - [7240]={ + [7408]={ [1]={ [1]={ limit={ @@ -159164,7 +163702,7 @@ return { [1]="mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds" } }, - [7241]={ + [7409]={ [1]={ [1]={ limit={ @@ -159193,7 +163731,7 @@ return { [1]="mana_gained_on_attack_hit_vs_cursed_enemies" } }, - [7242]={ + [7410]={ [1]={ [1]={ limit={ @@ -159209,7 +163747,7 @@ return { [1]="mana_gained_on_cull" } }, - [7243]={ + [7411]={ [1]={ [1]={ limit={ @@ -159238,7 +163776,7 @@ return { [1]="mana_gained_on_spell_hit" } }, - [7244]={ + [7412]={ [1]={ [1]={ limit={ @@ -159267,7 +163805,7 @@ return { [1]="mana_gained_on_spell_hit_vs_cursed_enemies" } }, - [7245]={ + [7413]={ [1]={ [1]={ limit={ @@ -159283,7 +163821,7 @@ return { [1]="mana_leech_also_recovers_based_on_other_damage_types" } }, - [7246]={ + [7414]={ [1]={ [1]={ limit={ @@ -159299,7 +163837,7 @@ return { [1]="mana_leech_applies_recovery_to_energy_shield_also" } }, - [7247]={ + [7415]={ [1]={ [1]={ limit={ @@ -159315,23 +163853,36 @@ return { [1]="mana_per_level" } }, - [7248]={ + [7416]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, text="Recover {0}% of your maximum Mana when you Block" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0}% of your maximum Mana when you Block" } }, stats={ [1]="mana_%_gained_on_block" } }, - [7249]={ + [7417]={ [1]={ [1]={ limit={ @@ -159347,7 +163898,7 @@ return { [1]="mana_%_to_gain_as_energy_shield_at_devotion_threshold" } }, - [7250]={ + [7418]={ [1]={ [1]={ [1]={ @@ -159367,7 +163918,7 @@ return { [1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [7251]={ + [7419]={ [1]={ [1]={ limit={ @@ -159383,7 +163934,36 @@ return { [1]="mana_recovery_from_regeneration_is_not_applied" } }, - [7252]={ + [7420]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Recovery rate per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Recovery rate per 10 Tribute" + } + }, + stats={ + [1]="mana_recovery_rate_+%_per_10_tribute" + } + }, + [7421]={ [1]={ [1]={ limit={ @@ -159412,7 +163992,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask" } }, - [7253]={ + [7422]={ [1]={ [1]={ limit={ @@ -159441,7 +164021,7 @@ return { [1]="mana_recovery_rate_+%_if_havent_killed_recently" } }, - [7254]={ + [7423]={ [1]={ [1]={ limit={ @@ -159470,7 +164050,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_clarity" } }, - [7255]={ + [7424]={ [1]={ [1]={ limit={ @@ -159479,7 +164059,7 @@ return { [2]="#" } }, - text="{0}% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage" + text="{0}% increased Mana Regeneration Rate while not on Low Mana" }, [2]={ [1]={ @@ -159492,14 +164072,14 @@ return { [2]=-1 } }, - text="{0}% reduced Mana Regeneration Rate per 1% Chance to Block Spell Damage" + text="{0}% reduced Mana Regeneration Rate while not on Low Mana" } }, stats={ - [1]="mana_regeneration_rate_+%_per_1%_spell_block_chance" + [1]="mana_regeneration_rate_+%_while_not_on_low_mana" } }, - [7256]={ + [7425]={ [1]={ [1]={ limit={ @@ -159508,7 +164088,7 @@ return { [2]="#" } }, - text="{0}% increased Mana Regeneration Rate while not on Low Mana" + text="{0}% increased Mana Regeneration Rate while Surrounded" }, [2]={ [1]={ @@ -159521,14 +164101,14 @@ return { [2]=-1 } }, - text="{0}% reduced Mana Regeneration Rate while not on Low Mana" + text="{0}% reduced Mana Regeneration Rate while Surrounded" } }, stats={ - [1]="mana_regeneration_rate_+%_while_not_on_low_mana" + [1]="mana_regeneration_rate_+%_while_surrounded" } }, - [7257]={ + [7426]={ [1]={ [1]={ [1]={ @@ -159548,7 +164128,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently" } }, - [7258]={ + [7427]={ [1]={ [1]={ [1]={ @@ -159568,7 +164148,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently" } }, - [7259]={ + [7428]={ [1]={ [1]={ [1]={ @@ -159588,7 +164168,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_10_devotion" } }, - [7260]={ + [7429]={ [1]={ [1]={ [1]={ @@ -159608,7 +164188,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_power_charge" } }, - [7261]={ + [7430]={ [1]={ [1]={ [1]={ @@ -159628,7 +164208,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently" } }, - [7262]={ + [7431]={ [1]={ [1]={ [1]={ @@ -159648,7 +164228,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently" } }, - [7263]={ + [7432]={ [1]={ [1]={ [1]={ @@ -159668,7 +164248,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_active_totem" } }, - [7264]={ + [7433]={ [1]={ [1]={ [1]={ @@ -159688,7 +164268,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_dual_wielding" } }, - [7265]={ + [7434]={ [1]={ [1]={ [1]={ @@ -159708,7 +164288,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_holding_shield" } }, - [7266]={ + [7435]={ [1]={ [1]={ [1]={ @@ -159728,7 +164308,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [7267]={ + [7436]={ [1]={ [1]={ [1]={ @@ -159748,7 +164328,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_wielding_staff" } }, - [7268]={ + [7437]={ [1]={ [1]={ [1]={ @@ -159768,7 +164348,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight" } }, - [7269]={ + [7438]={ [1]={ [1]={ limit={ @@ -159797,7 +164377,7 @@ return { [1]="mana_regeneration_rate_+%_if_crit_recently" } }, - [7270]={ + [7439]={ [1]={ [1]={ limit={ @@ -159826,7 +164406,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_frozen_recently" } }, - [7271]={ + [7440]={ [1]={ [1]={ limit={ @@ -159855,7 +164435,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_shocked_recently" } }, - [7272]={ + [7441]={ [1]={ [1]={ limit={ @@ -159884,7 +164464,7 @@ return { [1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently" } }, - [7273]={ + [7442]={ [1]={ [1]={ limit={ @@ -159913,7 +164493,7 @@ return { [1]="mana_regeneration_rate_+%_per_raised_spectre" } }, - [7274]={ + [7443]={ [1]={ [1]={ limit={ @@ -159942,7 +164522,7 @@ return { [1]="mana_regeneration_rate_+%_while_moving" } }, - [7275]={ + [7444]={ [1]={ [1]={ limit={ @@ -159971,7 +164551,7 @@ return { [1]="mana_reservation_+%_with_skills_that_throw_mines" } }, - [7276]={ + [7445]={ [1]={ [1]={ limit={ @@ -160000,7 +164580,7 @@ return { [1]="mana_reservation_efficiency_+%_for_skills_that_throw_mines" } }, - [7277]={ + [7446]={ [1]={ [1]={ [1]={ @@ -160037,7 +164617,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines" } }, - [7278]={ + [7447]={ [1]={ [1]={ [1]={ @@ -160074,7 +164654,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_250_total_attributes" } }, - [7279]={ + [7448]={ [1]={ [1]={ limit={ @@ -160103,7 +164683,7 @@ return { [1]="mana_reservation_efficiency_+%_per_250_total_attributes" } }, - [7280]={ + [7449]={ [1]={ [1]={ limit={ @@ -160132,7 +164712,7 @@ return { [1]="mana_reservation_+%_per_250_total_attributes" } }, - [7281]={ + [7450]={ [1]={ [1]={ limit={ @@ -160161,7 +164741,7 @@ return { [1]="mana_reservation_+%_with_curse_skills" } }, - [7282]={ + [7451]={ [1]={ [1]={ limit={ @@ -160177,7 +164757,7 @@ return { [1]="manabond_and_stormbind_freeze_as_though_dealt_damage_+%" } }, - [7283]={ + [7452]={ [1]={ [1]={ limit={ @@ -160206,7 +164786,7 @@ return { [1]="manabond_damage_+%" } }, - [7284]={ + [7453]={ [1]={ [1]={ limit={ @@ -160222,7 +164802,7 @@ return { [1]="manabond_lightning_penetration_%_while_on_low_mana" } }, - [7285]={ + [7454]={ [1]={ [1]={ limit={ @@ -160251,7 +164831,7 @@ return { [1]="manabond_skill_area_of_effect_+%" } }, - [7286]={ + [7455]={ [1]={ [1]={ limit={ @@ -160276,7 +164856,7 @@ return { [1]="manifest_dancing_dervish_number_of_additional_copies" } }, - [7287]={ + [7456]={ [1]={ [1]={ limit={ @@ -160301,7 +164881,57 @@ return { [1]="map_X_bestiary_packs_are_harvest_beasts" } }, - [7288]={ + [7457]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Abyss Pits have {0}% chance to spawn all Monsters as at least Magic" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Abyss Pits spawn all Monsters as at least Magic" + } + }, + stats={ + [1]="map_abyss_%_chance_chasm_spawns_at_least_magic_monsters" + } + }, + [7458]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Abyss Cracks have {0}% chance to spawn all Monsters as at least Magic" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Abyss Cracks spawn all Monsters as at least Magic" + } + }, + stats={ + [1]="map_abyss_%_chance_path_spawns_at_least_magic_monsters" + } + }, + [7459]={ [1]={ [1]={ limit={ @@ -160326,7 +164956,36 @@ return { [1]="map_abyss_depths_chance_+%" } }, - [7289]={ + [7460]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Abyssal Monsters grant {0}% increased Experience" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Abyssal Monsters grant {0}% reduced Experience" + } + }, + stats={ + [1]="map_abyss_monster_experience_+%" + } + }, + [7461]={ [1]={ [1]={ limit={ @@ -160355,7 +165014,84 @@ return { [1]="map_abyss_monster_spawn_amount_+%" } }, - [7290]={ + [7462]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Monsters from Abysses have increased Difficulty and Reward for each closed Pit in that Abyss" + } + }, + stats={ + [1]="map_abyss_monsters_enhanced_per_chasm_closed" + } + }, + [7463]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=-100 + } + }, + text="Abyss Pits in Area always have Rewards" + } + }, + stats={ + [1]="map_abyss_no_reward_chance_+%" + } + }, + [7464]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Abysses have an additional Pit" + }, + [2]={ + [1]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Abysses have {0} additional Pits" + } + }, + stats={ + [1]="map_abyss_overrun_extra_pits" + } + }, + [7465]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area is overrun by the Abyssal" + } + }, + stats={ + [1]="map_abyss_overrun_no_monsters" + } + }, + [7466]={ [1]={ [1]={ limit={ @@ -160371,7 +165107,7 @@ return { [1]="map_additional_rare_in_rare_pack_%_chance" } }, - [7291]={ + [7467]={ [1]={ [1]={ limit={ @@ -160387,7 +165123,7 @@ return { [1]="map_additional_rare_in_synthesised_rare_pack_%_chance" } }, - [7292]={ + [7468]={ [1]={ [1]={ limit={ @@ -160412,7 +165148,7 @@ return { [1]="map_additional_red_beasts" } }, - [7293]={ + [7469]={ [1]={ [1]={ limit={ @@ -160437,7 +165173,7 @@ return { [1]="map_adds_X_extra_synthesis_mods" } }, - [7294]={ + [7470]={ [1]={ [1]={ limit={ @@ -160462,7 +165198,7 @@ return { [1]="map_adds_X_extra_synthesis_special_mods" } }, - [7295]={ + [7471]={ [1]={ [1]={ limit={ @@ -160491,7 +165227,7 @@ return { [1]="map_affliction_encounter_boss_chance_+%" } }, - [7296]={ + [7472]={ [1]={ [1]={ limit={ @@ -160520,7 +165256,7 @@ return { [1]="map_affliction_encounter_monster_depth_+%" } }, - [7297]={ + [7473]={ [1]={ [1]={ limit={ @@ -160549,7 +165285,7 @@ return { [1]="map_affliction_pack_size_+%" } }, - [7298]={ + [7474]={ [1]={ [1]={ limit={ @@ -160578,7 +165314,7 @@ return { [1]="map_affliction_reward_kills_+%" } }, - [7299]={ + [7475]={ [1]={ [1]={ limit={ @@ -160594,7 +165330,7 @@ return { [1]="map_affliction_reward_progress_on_kill_+%" } }, - [7300]={ + [7476]={ [1]={ [1]={ limit={ @@ -160623,7 +165359,7 @@ return { [1]="map_affliction_secondary_wave_acceleration_+%" } }, - [7301]={ + [7477]={ [1]={ [1]={ [1]={ @@ -160643,7 +165379,23 @@ return { [1]="map_affliction_secondary_wave_delay_ms_+" } }, - [7302]={ + [7478]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Delirium Fog in Area lasts {0} additional seconds before dissipating" + } + }, + stats={ + [1]="map_affliction_secondary_wave_delay_seconds_+" + } + }, + [7479]={ [1]={ [1]={ limit={ @@ -160668,7 +165420,7 @@ return { [1]="map_architects_drops_additional_map_currency" } }, - [7303]={ + [7480]={ [1]={ [1]={ limit={ @@ -160693,7 +165445,7 @@ return { [1]="map_atlas_influence_type" } }, - [7304]={ + [7481]={ [1]={ [1]={ limit={ @@ -160709,7 +165461,7 @@ return { [1]="map_area_contains_arcanists_strongbox" } }, - [7305]={ + [7482]={ [1]={ [1]={ limit={ @@ -160725,7 +165477,7 @@ return { [1]="map_area_contains_avatar_of_ambush" } }, - [7306]={ + [7483]={ [1]={ [1]={ limit={ @@ -160741,7 +165493,7 @@ return { [1]="map_area_contains_avatar_of_anarchy" } }, - [7307]={ + [7484]={ [1]={ [1]={ limit={ @@ -160757,7 +165509,7 @@ return { [1]="map_area_contains_avatar_of_beyond" } }, - [7308]={ + [7485]={ [1]={ [1]={ limit={ @@ -160773,7 +165525,7 @@ return { [1]="map_area_contains_avatar_of_bloodlines" } }, - [7309]={ + [7486]={ [1]={ [1]={ limit={ @@ -160789,7 +165541,7 @@ return { [1]="map_area_contains_avatar_of_breach" } }, - [7310]={ + [7487]={ [1]={ [1]={ limit={ @@ -160805,7 +165557,7 @@ return { [1]="map_area_contains_avatar_of_domination" } }, - [7311]={ + [7488]={ [1]={ [1]={ limit={ @@ -160821,7 +165573,7 @@ return { [1]="map_area_contains_avatar_of_essence" } }, - [7312]={ + [7489]={ [1]={ [1]={ limit={ @@ -160837,7 +165589,7 @@ return { [1]="map_area_contains_avatar_of_invasion" } }, - [7313]={ + [7490]={ [1]={ [1]={ limit={ @@ -160853,7 +165605,7 @@ return { [1]="map_area_contains_avatar_of_nemesis" } }, - [7314]={ + [7491]={ [1]={ [1]={ limit={ @@ -160869,7 +165621,7 @@ return { [1]="map_area_contains_avatar_of_onslaught" } }, - [7315]={ + [7492]={ [1]={ [1]={ limit={ @@ -160885,7 +165637,7 @@ return { [1]="map_area_contains_avatar_of_perandus" } }, - [7316]={ + [7493]={ [1]={ [1]={ limit={ @@ -160901,7 +165653,7 @@ return { [1]="map_area_contains_avatar_of_prophecy" } }, - [7317]={ + [7494]={ [1]={ [1]={ limit={ @@ -160917,7 +165669,7 @@ return { [1]="map_area_contains_avatar_of_rampage" } }, - [7318]={ + [7495]={ [1]={ [1]={ limit={ @@ -160933,7 +165685,7 @@ return { [1]="map_area_contains_avatar_of_talisman" } }, - [7319]={ + [7496]={ [1]={ [1]={ limit={ @@ -160949,7 +165701,7 @@ return { [1]="map_area_contains_avatar_of_tempest" } }, - [7320]={ + [7497]={ [1]={ [1]={ limit={ @@ -160965,7 +165717,7 @@ return { [1]="map_area_contains_avatar_of_torment" } }, - [7321]={ + [7498]={ [1]={ [1]={ limit={ @@ -160981,7 +165733,7 @@ return { [1]="map_area_contains_avatar_of_warbands" } }, - [7322]={ + [7499]={ [1]={ [1]={ limit={ @@ -160997,7 +165749,7 @@ return { [1]="map_area_contains_cartographers_strongbox" } }, - [7323]={ + [7500]={ [1]={ [1]={ limit={ @@ -161013,7 +165765,7 @@ return { [1]="map_area_contains_currency_chest" } }, - [7324]={ + [7501]={ [1]={ [1]={ limit={ @@ -161029,7 +165781,7 @@ return { [1]="map_area_contains_gemcutters_strongbox" } }, - [7325]={ + [7502]={ [1]={ [1]={ limit={ @@ -161045,7 +165797,7 @@ return { [1]="map_area_contains_jewellery_chest" } }, - [7326]={ + [7503]={ [1]={ [1]={ limit={ @@ -161061,7 +165813,7 @@ return { [1]="map_area_contains_map_chest" } }, - [7327]={ + [7504]={ [1]={ [1]={ limit={ @@ -161077,7 +165829,7 @@ return { [1]="map_area_contains_metamorphs" } }, - [7328]={ + [7505]={ [1]={ [1]={ limit={ @@ -161093,7 +165845,7 @@ return { [1]="map_area_contains_perandus_coin_chest" } }, - [7329]={ + [7506]={ [1]={ [1]={ limit={ @@ -161109,7 +165861,7 @@ return { [1]="map_area_contains_rituals" } }, - [7330]={ + [7507]={ [1]={ [1]={ limit={ @@ -161125,7 +165877,7 @@ return { [1]="map_area_contains_tormented_embezzler" } }, - [7331]={ + [7508]={ [1]={ [1]={ limit={ @@ -161141,7 +165893,7 @@ return { [1]="map_area_contains_tormented_seditionist" } }, - [7332]={ + [7509]={ [1]={ [1]={ limit={ @@ -161157,7 +165909,7 @@ return { [1]="map_area_contains_tormented_vaal_cultist" } }, - [7333]={ + [7510]={ [1]={ [1]={ limit={ @@ -161173,7 +165925,7 @@ return { [1]="map_area_contains_unique_item_chest" } }, - [7334]={ + [7511]={ [1]={ [1]={ limit={ @@ -161189,7 +165941,7 @@ return { [1]="map_area_contains_unique_strongbox" } }, - [7335]={ + [7512]={ [1]={ [1]={ limit={ @@ -161205,7 +165957,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_beacon_barrels" } }, - [7336]={ + [7513]={ [1]={ [1]={ limit={ @@ -161221,7 +165973,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels" } }, - [7337]={ + [7514]={ [1]={ [1]={ limit={ @@ -161237,7 +165989,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_barrels" } }, - [7338]={ + [7515]={ [1]={ [1]={ limit={ @@ -161253,7 +166005,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_eggs" } }, - [7339]={ + [7516]={ [1]={ [1]={ limit={ @@ -161269,7 +166021,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_parasite_barrels" } }, - [7340]={ + [7517]={ [1]={ [1]={ limit={ @@ -161285,7 +166037,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_volatile_barrels" } }, - [7341]={ + [7518]={ [1]={ [1]={ limit={ @@ -161301,7 +166053,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_wealthy_barrels" } }, - [7342]={ + [7519]={ [1]={ [1]={ limit={ @@ -161326,7 +166078,7 @@ return { [1]="map_area_ritual_additional_chance_%" } }, - [7343]={ + [7520]={ [1]={ [1]={ limit={ @@ -161355,7 +166107,7 @@ return { [1]="map_bestiary_monster_damage_+%_final" } }, - [7344]={ + [7521]={ [1]={ [1]={ limit={ @@ -161384,7 +166136,7 @@ return { [1]="map_bestiary_monster_life_+%_final" } }, - [7345]={ + [7522]={ [1]={ [1]={ limit={ @@ -161413,7 +166165,7 @@ return { [1]="map_betrayal_intelligence_+%" } }, - [7346]={ + [7523]={ [1]={ [1]={ limit={ @@ -161429,7 +166181,7 @@ return { [1]="map_beyond_demon_always_elite" } }, - [7347]={ + [7524]={ [1]={ [1]={ limit={ @@ -161450,7 +166202,7 @@ return { [2]="map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge" } }, - [7348]={ + [7525]={ [1]={ [1]={ limit={ @@ -161479,7 +166231,7 @@ return { [1]="map_beyond_portal_chance_+%" } }, - [7349]={ + [7526]={ [1]={ [1]={ limit={ @@ -161504,7 +166256,7 @@ return { [1]="map_beyond_portal_spawn_additional_demon_%_chance" } }, - [7350]={ + [7527]={ [1]={ [1]={ limit={ @@ -161529,7 +166281,7 @@ return { [1]="map_blight_chest_%_chance_for_additional_drop" } }, - [7351]={ + [7528]={ [1]={ [1]={ limit={ @@ -161545,7 +166297,7 @@ return { [1]="map_blight_chests_repeat_drops_count" } }, - [7352]={ + [7529]={ [1]={ [1]={ limit={ @@ -161561,7 +166313,7 @@ return { [1]="map_blight_encounter_spawn_rate_+%" } }, - [7353]={ + [7530]={ [1]={ [1]={ limit={ @@ -161577,7 +166329,7 @@ return { [1]="map_blight_lane_additional_chest_chance_%" } }, - [7354]={ + [7531]={ [1]={ [1]={ limit={ @@ -161602,7 +166354,7 @@ return { [1]="map_blight_lane_additional_chests" } }, - [7355]={ + [7532]={ [1]={ [1]={ limit={ @@ -161627,7 +166379,7 @@ return { [1]="map_blight_oils_chance_to_drop_a_tier_higher_%" } }, - [7356]={ + [7533]={ [1]={ [1]={ limit={ @@ -161656,7 +166408,7 @@ return { [1]="map_blight_tower_cost_+%" } }, - [7357]={ + [7534]={ [1]={ [1]={ limit={ @@ -161672,7 +166424,7 @@ return { [1]="map_blight_tower_cost_doubled" } }, - [7358]={ + [7535]={ [1]={ [1]={ limit={ @@ -161697,7 +166449,7 @@ return { [1]="map_blight_up_to_X_additional_bosses" } }, - [7359]={ + [7536]={ [1]={ [1]={ limit={ @@ -161713,7 +166465,7 @@ return { [1]="map_blighted_map_encounter_duration_-_sec" } }, - [7360]={ + [7537]={ [1]={ [1]={ limit={ @@ -161738,7 +166490,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_currency_items" } }, - [7361]={ + [7538]={ [1]={ [1]={ limit={ @@ -161763,7 +166515,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_rare_items" } }, - [7362]={ + [7539]={ [1]={ [1]={ limit={ @@ -161779,7 +166531,7 @@ return { [1]="map_blueprint_drop_revealed_chance_%" } }, - [7363]={ + [7540]={ [1]={ [1]={ limit={ @@ -161795,7 +166547,7 @@ return { [1]="map_boss_accompanied_by_bodyguards" } }, - [7364]={ + [7541]={ [1]={ [1]={ limit={ @@ -161811,7 +166563,7 @@ return { [1]="map_boss_accompanied_by_harbinger" } }, - [7365]={ + [7542]={ [1]={ [1]={ limit={ @@ -161840,7 +166592,7 @@ return { [1]="map_boss_dropped_item_quantity_+%" } }, - [7366]={ + [7543]={ [1]={ [1]={ limit={ @@ -161865,7 +166617,7 @@ return { [1]="map_boss_dropped_unique_items_+" } }, - [7367]={ + [7544]={ [1]={ [1]={ limit={ @@ -161881,7 +166633,7 @@ return { [1]="map_boss_drops_additional_currency_shards" } }, - [7368]={ + [7545]={ [1]={ [1]={ limit={ @@ -161897,7 +166649,7 @@ return { [1]="map_boss_drops_corrupted_items" } }, - [7369]={ + [7546]={ [1]={ [1]={ limit={ @@ -161926,7 +166678,7 @@ return { [1]="map_boss_experience_+%_final" } }, - [7370]={ + [7547]={ [1]={ [1]={ limit={ @@ -161942,7 +166694,7 @@ return { [1]="map_boss_is_possessed" } }, - [7371]={ + [7548]={ [1]={ [1]={ limit={ @@ -161971,7 +166723,7 @@ return { [1]="map_boss_item_rarity_+%" } }, - [7372]={ + [7549]={ [1]={ [1]={ limit={ @@ -161987,7 +166739,7 @@ return { [1]="map_boss_surrounded_by_tormented_spirits" } }, - [7373]={ + [7550]={ [1]={ [1]={ limit={ @@ -162012,7 +166764,7 @@ return { [1]="map_boss_drops_x_additional_vaal_items" } }, - [7374]={ + [7551]={ [1]={ [1]={ limit={ @@ -162037,7 +166789,7 @@ return { [1]="map_breach_%_chance_for_1_additional_breach" } }, - [7375]={ + [7552]={ [1]={ [1]={ limit={ @@ -162062,7 +166814,7 @@ return { [1]="map_breach_%_chance_for_3_additional_breach" } }, - [7376]={ + [7553]={ [1]={ [1]={ limit={ @@ -162087,7 +166839,7 @@ return { [1]="map_breach_X_additional_rare_monsters" } }, - [7377]={ + [7554]={ [1]={ [1]={ limit={ @@ -162116,7 +166868,7 @@ return { [1]="map_breach_chance_to_be_esh_+%" } }, - [7378]={ + [7555]={ [1]={ [1]={ limit={ @@ -162145,7 +166897,7 @@ return { [1]="map_breach_chance_to_be_tul_+%" } }, - [7379]={ + [7556]={ [1]={ [1]={ limit={ @@ -162174,7 +166926,7 @@ return { [1]="map_breach_chance_to_be_uul_netol_+%" } }, - [7380]={ + [7557]={ [1]={ [1]={ limit={ @@ -162203,7 +166955,7 @@ return { [1]="map_breach_chance_to_be_xoph_+%" } }, - [7381]={ + [7558]={ [1]={ [1]={ limit={ @@ -162219,7 +166971,7 @@ return { [1]="map_breach_has_boss" } }, - [7382]={ + [7559]={ [1]={ [1]={ limit={ @@ -162235,7 +166987,7 @@ return { [1]="map_breach_has_large_chest" } }, - [7383]={ + [7560]={ [1]={ [1]={ [1]={ @@ -162268,7 +167020,7 @@ return { [1]="map_breach_minimum_radius" } }, - [7384]={ + [7561]={ [1]={ [1]={ limit={ @@ -162297,7 +167049,7 @@ return { [1]="map_breach_monster_quantity_+%" } }, - [7385]={ + [7562]={ [1]={ [1]={ limit={ @@ -162326,7 +167078,7 @@ return { [1]="map_breach_monster_splinter_quantity_+%" } }, - [7386]={ + [7563]={ [1]={ [1]={ limit={ @@ -162355,7 +167107,7 @@ return { [1]="map_breach_number_of_magic_packs_+%" } }, - [7387]={ + [7564]={ [1]={ [1]={ limit={ @@ -162407,7 +167159,7 @@ return { [1]="map_breach_type_override" } }, - [7388]={ + [7565]={ [1]={ [1]={ limit={ @@ -162432,7 +167184,7 @@ return { [1]="map_breaches_num_additional_chests_to_spawn" } }, - [7389]={ + [7566]={ [1]={ [1]={ limit={ @@ -162448,7 +167200,7 @@ return { [1]="map_chance_for_area_%_to_contain_harvest" } }, - [7390]={ + [7567]={ [1]={ [1]={ limit={ @@ -162464,7 +167216,7 @@ return { [1]="map_chance_to_not_consume_sextant_use_%" } }, - [7391]={ + [7568]={ [1]={ [1]={ limit={ @@ -162480,7 +167232,55 @@ return { [1]="map_chests_all_magic_or_rare" } }, - [7392]={ + [7569]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Abysses lead to an Abyssal Boss" + } + }, + stats={ + [1]="map_contains_abyss_boss" + } + }, + [7570]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Abysses lead to an Abyssal Depths" + } + }, + stats={ + [1]="map_contains_abyss_depths" + } + }, + [7571]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Abysses lead to an Abyssal Depths" + } + }, + stats={ + [1]="map_contains_abyss_depths_with_no_boss" + } + }, + [7572]={ [1]={ [1]={ limit={ @@ -162505,7 +167305,7 @@ return { [1]="map_contains_additional_breaches" } }, - [7393]={ + [7573]={ [1]={ [1]={ limit={ @@ -162521,7 +167321,7 @@ return { [1]="map_contains_additional_chrysalis_talisman" } }, - [7394]={ + [7574]={ [1]={ [1]={ limit={ @@ -162537,7 +167337,7 @@ return { [1]="map_contains_additional_clutching_talisman" } }, - [7395]={ + [7575]={ [1]={ [1]={ limit={ @@ -162553,7 +167353,7 @@ return { [1]="map_contains_additional_fangjaw_talisman" } }, - [7396]={ + [7576]={ [1]={ [1]={ limit={ @@ -162569,7 +167369,7 @@ return { [1]="map_contains_additional_mandible_talisman" } }, - [7397]={ + [7577]={ [1]={ [1]={ limit={ @@ -162585,7 +167385,7 @@ return { [1]="map_contains_additional_packs_of_chaos_monsters" } }, - [7398]={ + [7578]={ [1]={ [1]={ limit={ @@ -162601,7 +167401,7 @@ return { [1]="map_contains_additional_packs_of_cold_monsters" } }, - [7399]={ + [7579]={ [1]={ [1]={ limit={ @@ -162617,7 +167417,7 @@ return { [1]="map_contains_additional_packs_of_fire_monsters" } }, - [7400]={ + [7580]={ [1]={ [1]={ limit={ @@ -162633,7 +167433,7 @@ return { [1]="map_contains_additional_packs_of_lightning_monsters" } }, - [7401]={ + [7581]={ [1]={ [1]={ limit={ @@ -162649,7 +167449,7 @@ return { [1]="map_contains_additional_packs_of_physical_monsters" } }, - [7402]={ + [7582]={ [1]={ [1]={ limit={ @@ -162674,7 +167474,7 @@ return { [1]="map_contains_additional_packs_of_vaal_monsters" } }, - [7403]={ + [7583]={ [1]={ [1]={ limit={ @@ -162690,7 +167490,7 @@ return { [1]="map_contains_additional_three_rat_talisman" } }, - [7404]={ + [7584]={ [1]={ [1]={ limit={ @@ -162715,7 +167515,7 @@ return { [1]="map_contains_additional_tormented_betrayers" } }, - [7405]={ + [7585]={ [1]={ [1]={ limit={ @@ -162740,7 +167540,7 @@ return { [1]="map_contains_additional_tormented_graverobbers" } }, - [7406]={ + [7586]={ [1]={ [1]={ limit={ @@ -162765,7 +167565,7 @@ return { [1]="map_contains_additional_tormented_heretics" } }, - [7407]={ + [7587]={ [1]={ [1]={ limit={ @@ -162781,7 +167581,7 @@ return { [1]="map_contains_additional_unique_talisman" } }, - [7408]={ + [7588]={ [1]={ [1]={ limit={ @@ -162797,7 +167597,7 @@ return { [1]="map_contains_additional_writhing_talisman" } }, - [7409]={ + [7589]={ [1]={ [1]={ limit={ @@ -162813,7 +167613,7 @@ return { [1]="map_contains_chayula_breach" } }, - [7410]={ + [7590]={ [1]={ [1]={ limit={ @@ -162856,7 +167656,7 @@ return { [1]="map_contains_citadel" } }, - [7411]={ + [7591]={ [1]={ [1]={ limit={ @@ -162872,7 +167672,7 @@ return { [1]="map_contains_cleansed_boss" } }, - [7412]={ + [7592]={ [1]={ [1]={ limit={ @@ -162888,7 +167688,7 @@ return { [1]="map_contains_corrupted_strongbox" } }, - [7413]={ + [7593]={ [1]={ [1]={ limit={ @@ -162904,7 +167704,7 @@ return { [1]="map_contains_creeping_agony" } }, - [7414]={ + [7594]={ [1]={ [1]={ limit={ @@ -162920,7 +167720,7 @@ return { [1]="map_contains_keepers_of_the_trove_bloodline_pack" } }, - [7415]={ + [7595]={ [1]={ [1]={ limit={ @@ -162936,7 +167736,7 @@ return { [1]="map_contains_master" } }, - [7416]={ + [7596]={ [1]={ [1]={ limit={ @@ -162961,7 +167761,7 @@ return { [1]="map_contains_nevalis_monkey" } }, - [7417]={ + [7597]={ [1]={ [1]={ limit={ @@ -162977,7 +167777,7 @@ return { [1]="map_contains_perandus_boss" } }, - [7418]={ + [7598]={ [1]={ [1]={ limit={ @@ -163002,7 +167802,7 @@ return { [1]="map_contains_talisman_boss_with_higher_tier" } }, - [7419]={ + [7599]={ [1]={ [1]={ limit={ @@ -163044,7 +167844,7 @@ return { [2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final" } }, - [7420]={ + [7600]={ [1]={ [1]={ limit={ @@ -163060,7 +167860,7 @@ return { [1]="map_contains_uul_netol_breach" } }, - [7421]={ + [7601]={ [1]={ [1]={ limit={ @@ -163076,7 +167876,7 @@ return { [1]="map_contains_wealthy_pack" } }, - [7422]={ + [7602]={ [1]={ [1]={ limit={ @@ -163092,7 +167892,7 @@ return { [1]="map_contains_x_additional_animated_weapon_packs" } }, - [7423]={ + [7603]={ [1]={ [1]={ limit={ @@ -163108,7 +167908,7 @@ return { [1]="map_contains_x_additional_healing_packs" } }, - [7424]={ + [7604]={ [1]={ [1]={ limit={ @@ -163133,7 +167933,7 @@ return { [1]="map_contains_x_additional_magic_packs" } }, - [7425]={ + [7605]={ [1]={ [1]={ limit={ @@ -163149,7 +167949,7 @@ return { [1]="map_contains_x_additional_normal_packs" } }, - [7426]={ + [7606]={ [1]={ [1]={ limit={ @@ -163165,7 +167965,7 @@ return { [1]="map_contains_x_additional_packs_on_their_own_team" } }, - [7427]={ + [7607]={ [1]={ [1]={ limit={ @@ -163181,7 +167981,7 @@ return { [1]="map_contains_x_additional_packs_that_convert_on_death" } }, - [7428]={ + [7608]={ [1]={ [1]={ limit={ @@ -163197,7 +167997,7 @@ return { [1]="map_contains_x_additional_poison_packs" } }, - [7429]={ + [7609]={ [1]={ [1]={ limit={ @@ -163222,7 +168022,7 @@ return { [1]="map_contains_x_additional_rare_packs" } }, - [7430]={ + [7610]={ [1]={ [1]={ limit={ @@ -163238,7 +168038,7 @@ return { [1]="map_contains_x_fewer_portals" } }, - [7431]={ + [7611]={ [1]={ [1]={ limit={ @@ -163263,7 +168063,7 @@ return { [1]="map_area_contains_x_rare_monsters_with_inner_treasure" } }, - [7432]={ + [7612]={ [1]={ [1]={ limit={ @@ -163288,7 +168088,7 @@ return { [1]="map_contracts_drop_with_additional_special_implicit_%_chance" } }, - [7433]={ + [7613]={ [1]={ [1]={ limit={ @@ -163304,7 +168104,7 @@ return { [1]="map_cowards_trial_extra_ghosts" } }, - [7434]={ + [7614]={ [1]={ [1]={ limit={ @@ -163320,7 +168120,7 @@ return { [1]="map_cowards_trial_extra_oriath_citizens" } }, - [7435]={ + [7615]={ [1]={ [1]={ limit={ @@ -163336,7 +168136,7 @@ return { [1]="map_cowards_trial_extra_phantasms" } }, - [7436]={ + [7616]={ [1]={ [1]={ limit={ @@ -163352,7 +168152,7 @@ return { [1]="map_cowards_trial_extra_raging_spirits" } }, - [7437]={ + [7617]={ [1]={ [1]={ limit={ @@ -163368,7 +168168,7 @@ return { [1]="map_cowards_trial_extra_rhoas" } }, - [7438]={ + [7618]={ [1]={ [1]={ limit={ @@ -163384,7 +168184,7 @@ return { [1]="map_cowards_trial_extra_skeleton_cannons" } }, - [7439]={ + [7619]={ [1]={ [1]={ limit={ @@ -163400,7 +168200,7 @@ return { [1]="map_cowards_trial_extra_zombies" } }, - [7440]={ + [7620]={ [1]={ [1]={ limit={ @@ -163429,7 +168229,7 @@ return { [1]="map_custom_league_damage_taken_+%_final" } }, - [7441]={ + [7621]={ [1]={ [1]={ limit={ @@ -163458,7 +168258,7 @@ return { [1]="map_damage_+%_per_poison_stack" } }, - [7442]={ + [7622]={ [1]={ [1]={ limit={ @@ -163474,7 +168274,7 @@ return { [1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on" } }, - [7443]={ + [7623]={ [1]={ [1]={ limit={ @@ -163507,7 +168307,7 @@ return { [1]="map_damage_taken_+%_from_beyond_monsters" } }, - [7444]={ + [7624]={ [1]={ [1]={ limit={ @@ -163536,7 +168336,7 @@ return { [1]="map_damage_taken_while_stationary_+%" } }, - [7445]={ + [7625]={ [1]={ [1]={ limit={ @@ -163565,7 +168365,7 @@ return { [1]="map_damage_while_stationary_+%" } }, - [7446]={ + [7626]={ [1]={ [1]={ limit={ @@ -163594,7 +168394,7 @@ return { [1]="map_death_and_taxes_boss_drops_additional_currency" } }, - [7447]={ + [7627]={ [1]={ [1]={ limit={ @@ -163603,14 +168403,14 @@ return { [2]="#" } }, - text="Delirium Encounters in Area have {0}% chance to generate an additional Reward type" + text="Delirium Encounters in Area have {0}% chance to generate an additional Reward" } }, stats={ [1]="map_delirium_additional_reward_type_chance_%" } }, - [7448]={ + [7628]={ [1]={ [1]={ limit={ @@ -163639,7 +168439,7 @@ return { [1]="map_delirium_doodads_+%_final" } }, - [7449]={ + [7629]={ [1]={ [1]={ limit={ @@ -163655,7 +168455,7 @@ return { [1]="map_delirium_fog_never_dissipates" } }, - [7450]={ + [7630]={ [1]={ [1]={ limit={ @@ -163680,7 +168480,7 @@ return { [1]="map_delirium_splinter_stack_size_+%" } }, - [7451]={ + [7631]={ [1]={ [1]={ limit={ @@ -163696,7 +168496,7 @@ return { [1]="map_delve_rules" } }, - [7452]={ + [7632]={ [1]={ [1]={ limit={ @@ -164126,7 +168926,7 @@ return { [4]="map_fishy_effect_3" } }, - [7453]={ + [7633]={ [1]={ [1]={ limit={ @@ -164142,7 +168942,7 @@ return { [1]="map_display_strongbox_monsters_are_enraged" } }, - [7454]={ + [7634]={ [1]={ [1]={ limit={ @@ -164158,7 +168958,7 @@ return { [1]="map_divination_card_drop_chance_+%" } }, - [7455]={ + [7635]={ [1]={ [1]={ limit={ @@ -164174,7 +168974,7 @@ return { [1]="map_doesnt_consume_sextant_use" } }, - [7456]={ + [7636]={ [1]={ [1]={ limit={ @@ -164190,7 +168990,7 @@ return { [1]="map_dropped_maps_are_corrupted_with_8_mods" } }, - [7457]={ + [7637]={ [1]={ [1]={ [1]={ @@ -164210,7 +169010,7 @@ return { [1]="map_dropped_maps_are_duplicated_chance_permillage" } }, - [7458]={ + [7638]={ [1]={ [1]={ limit={ @@ -164235,7 +169035,7 @@ return { [1]="map_duplicate_captured_beasts_chance_%" } }, - [7459]={ + [7639]={ [1]={ [1]={ limit={ @@ -164251,7 +169051,7 @@ return { [1]="map_duplicate_x_rare_monsters" } }, - [7460]={ + [7640]={ [1]={ [1]={ limit={ @@ -164267,7 +169067,7 @@ return { [1]="map_duplicate_x_synthesised_rare_monsters" } }, - [7461]={ + [7641]={ [1]={ [1]={ limit={ @@ -164310,7 +169110,7 @@ return { [1]="map_elder_boss_variation" } }, - [7462]={ + [7642]={ [1]={ [1]={ limit={ @@ -164326,7 +169126,7 @@ return { [1]="map_elder_rare_chance_+%" } }, - [7463]={ + [7643]={ [1]={ [1]={ [1]={ @@ -164346,7 +169146,7 @@ return { [1]="map_endgame_affliction_reward_1" } }, - [7464]={ + [7644]={ [1]={ [1]={ [1]={ @@ -164366,7 +169166,7 @@ return { [1]="map_endgame_affliction_reward_2" } }, - [7465]={ + [7645]={ [1]={ [1]={ [1]={ @@ -164386,7 +169186,7 @@ return { [1]="map_endgame_affliction_reward_3" } }, - [7466]={ + [7646]={ [1]={ [1]={ [1]={ @@ -164406,7 +169206,7 @@ return { [1]="map_endgame_affliction_reward_4" } }, - [7467]={ + [7647]={ [1]={ [1]={ [1]={ @@ -164426,7 +169226,7 @@ return { [1]="map_endgame_affliction_reward_5" } }, - [7468]={ + [7648]={ [1]={ [1]={ [1]={ @@ -164446,7 +169246,7 @@ return { [1]="map_endgame_affliction_reward_6" } }, - [7469]={ + [7649]={ [1]={ [1]={ [1]={ @@ -164466,7 +169266,7 @@ return { [1]="map_endgame_affliction_reward_7" } }, - [7470]={ + [7650]={ [1]={ [1]={ [1]={ @@ -164486,7 +169286,7 @@ return { [1]="map_endgame_affliction_reward_8" } }, - [7471]={ + [7651]={ [1]={ [1]={ [1]={ @@ -164506,7 +169306,7 @@ return { [1]="map_endgame_affliction_reward_9" } }, - [7472]={ + [7652]={ [1]={ [1]={ limit={ @@ -164522,7 +169322,7 @@ return { [1]="map_endgame_fog_depth" } }, - [7473]={ + [7653]={ [1]={ [1]={ limit={ @@ -164538,7 +169338,7 @@ return { [1]="map_equipment_drops_identified" } }, - [7474]={ + [7654]={ [1]={ [1]={ limit={ @@ -164554,7 +169354,7 @@ return { [1]="map_essence_monolith_contains_additional_essence_of_corruption" } }, - [7475]={ + [7655]={ [1]={ [1]={ limit={ @@ -164570,7 +169370,7 @@ return { [1]="map_essence_monolith_contains_essence_of_corruption_%" } }, - [7476]={ + [7656]={ [1]={ [1]={ limit={ @@ -164586,7 +169386,7 @@ return { [1]="map_essence_monsters_are_corrupted" } }, - [7477]={ + [7657]={ [1]={ [1]={ limit={ @@ -164611,7 +169411,7 @@ return { [1]="map_essence_monsters_have_additional_essences" } }, - [7478]={ + [7658]={ [1]={ [1]={ limit={ @@ -164627,7 +169427,7 @@ return { [1]="map_essence_monsters_higher_tier" } }, - [7479]={ + [7659]={ [1]={ [1]={ limit={ @@ -164652,7 +169452,7 @@ return { [1]="map_expedition_artifact_quantity_+%" } }, - [7480]={ + [7660]={ [1]={ [1]={ limit={ @@ -164668,7 +169468,7 @@ return { [1]="map_expedition_chest_double_drops_chance_%" } }, - [7481]={ + [7661]={ [1]={ [1]={ limit={ @@ -164693,7 +169493,7 @@ return { [1]="map_expedition_chest_marker_count_+" } }, - [7482]={ + [7662]={ [1]={ [1]={ limit={ @@ -164718,7 +169518,7 @@ return { [1]="map_expedition_common_chest_marker_count_+" } }, - [7483]={ + [7663]={ [1]={ [1]={ limit={ @@ -164743,7 +169543,7 @@ return { [1]="map_expedition_elite_marker_count_+%" } }, - [7484]={ + [7664]={ [1]={ [1]={ limit={ @@ -164772,7 +169572,7 @@ return { [1]="map_expedition_encounter_additional_chance_%" } }, - [7485]={ + [7665]={ [1]={ [1]={ limit={ @@ -164797,7 +169597,7 @@ return { [1]="map_expedition_epic_chest_marker_count_+" } }, - [7486]={ + [7666]={ [1]={ [1]={ limit={ @@ -164813,7 +169613,7 @@ return { [1]="map_expedition_explosion_radius_+%" } }, - [7487]={ + [7667]={ [1]={ [1]={ limit={ @@ -164829,7 +169629,7 @@ return { [1]="map_expedition_explosives_+%" } }, - [7488]={ + [7668]={ [1]={ [1]={ limit={ @@ -164845,7 +169645,7 @@ return { [1]="map_expedition_extra_relic_suffix_chance_%" } }, - [7489]={ + [7669]={ [1]={ [1]={ limit={ @@ -164861,7 +169661,7 @@ return { [1]="map_expedition_league" } }, - [7490]={ + [7670]={ [1]={ [1]={ limit={ @@ -164886,7 +169686,7 @@ return { [1]="map_expedition_maximum_placement_distance_+%" } }, - [7491]={ + [7671]={ [1]={ [1]={ limit={ @@ -164902,7 +169702,7 @@ return { [1]="map_expedition_monster_spawn_with_half_life" } }, - [7492]={ + [7672]={ [1]={ [1]={ limit={ @@ -164927,7 +169727,7 @@ return { [1]="map_expedition_number_of_monster_markers_+%" } }, - [7493]={ + [7673]={ [1]={ [1]={ limit={ @@ -164952,7 +169752,7 @@ return { [1]="map_expedition_rare_monsters_+%" } }, - [7494]={ + [7674]={ [1]={ [1]={ limit={ @@ -164977,7 +169777,7 @@ return { [1]="map_expedition_relic_mod_effect_+%" } }, - [7495]={ + [7675]={ [1]={ [1]={ limit={ @@ -164993,7 +169793,7 @@ return { [1]="map_expedition_relics_+" } }, - [7496]={ + [7676]={ [1]={ [1]={ limit={ @@ -165009,7 +169809,7 @@ return { [1]="map_expedition_relics_+%" } }, - [7497]={ + [7677]={ [1]={ [1]={ limit={ @@ -165034,7 +169834,7 @@ return { [1]="map_expedition_saga_additional_terrain_features" } }, - [7498]={ + [7678]={ [1]={ [1]={ limit={ @@ -165077,7 +169877,7 @@ return { [1]="map_expedition_saga_contains_boss" } }, - [7499]={ + [7679]={ [1]={ [1]={ limit={ @@ -165093,7 +169893,7 @@ return { [1]="map_expedition_twinned_elites" } }, - [7500]={ + [7680]={ [1]={ [1]={ limit={ @@ -165118,7 +169918,7 @@ return { [1]="map_expedition_uncommon_chest_marker_count_+" } }, - [7501]={ + [7681]={ [1]={ [1]={ limit={ @@ -165143,7 +169943,7 @@ return { [1]="map_expedition_vendor_reroll_currency_quantity_+%" } }, - [7502]={ + [7682]={ [1]={ [1]={ limit={ @@ -165168,7 +169968,7 @@ return { [1]="map_expedition_x_extra_relic_suffixes" } }, - [7503]={ + [7683]={ [1]={ [1]={ limit={ @@ -165193,7 +169993,7 @@ return { [1]="map_extra_monoliths" } }, - [7504]={ + [7684]={ [1]={ [1]={ limit={ @@ -165209,7 +170009,7 @@ return { [1]="map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%" } }, - [7505]={ + [7685]={ [1]={ [1]={ limit={ @@ -165234,7 +170034,7 @@ return { [1]="map_first_invasion_boss_killed_drops_x_additional_currency" } }, - [7506]={ + [7686]={ [1]={ [1]={ limit={ @@ -165259,7 +170059,7 @@ return { [1]="map_first_strongbox_contains_x_additional_rare_monsters" } }, - [7507]={ + [7687]={ [1]={ [1]={ limit={ @@ -165284,7 +170084,7 @@ return { [1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques" } }, - [7508]={ + [7688]={ [1]={ [1]={ [1]={ @@ -165304,7 +170104,7 @@ return { [1]="map_flask_charges_recovered_per_3_seconds_%" } }, - [7509]={ + [7689]={ [1]={ [1]={ limit={ @@ -165320,7 +170120,7 @@ return { [1]="map_force_side_area" } }, - [7510]={ + [7690]={ [1]={ [1]={ [1]={ @@ -165340,7 +170140,7 @@ return { [1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster" } }, - [7511]={ + [7691]={ [1]={ [1]={ limit={ @@ -165369,7 +170169,7 @@ return { [1]="map_gauntlet_unique_monster_life_+%" } }, - [7512]={ + [7692]={ [1]={ [1]={ limit={ @@ -165385,7 +170185,7 @@ return { [1]="map_grants_players_level_20_dash_skill" } }, - [7513]={ + [7693]={ [1]={ [1]={ limit={ @@ -165401,7 +170201,7 @@ return { [1]="map_ground_consecrated_life_regeneration_rate_per_minute_%" } }, - [7514]={ + [7694]={ [1]={ [1]={ limit={ @@ -165417,7 +170217,7 @@ return { [1]="map_ground_haste_action_speed_+%" } }, - [7515]={ + [7695]={ [1]={ [1]={ limit={ @@ -165433,7 +170233,7 @@ return { [1]="map_harbinger_additional_currency_shard_stack_chance_%" } }, - [7516]={ + [7696]={ [1]={ [1]={ limit={ @@ -165449,7 +170249,7 @@ return { [1]="map_harbinger_portal_drops_additional_fragments" } }, - [7517]={ + [7697]={ [1]={ [1]={ limit={ @@ -165465,7 +170265,7 @@ return { [1]="map_harbingers_drops_additional_currency_shards" } }, - [7518]={ + [7698]={ [1]={ [1]={ limit={ @@ -165481,7 +170281,7 @@ return { [1]="map_harvest_crafting_outcomes_X_lucky_rolls" } }, - [7519]={ + [7699]={ [1]={ [1]={ limit={ @@ -165497,7 +170297,7 @@ return { [1]="map_harvest_double_lifeforce_dropped" } }, - [7520]={ + [7700]={ [1]={ [1]={ limit={ @@ -165526,7 +170326,7 @@ return { [1]="map_harvest_monster_life_+%_final_from_sextant" } }, - [7521]={ + [7701]={ [1]={ [1]={ limit={ @@ -165560,7 +170360,7 @@ return { [1]="map_harvest_seeds_1_of_every_2_plot_type_override" } }, - [7522]={ + [7702]={ [1]={ [1]={ limit={ @@ -165576,7 +170376,7 @@ return { [1]="map_has_monoliths" } }, - [7523]={ + [7703]={ [1]={ [1]={ limit={ @@ -165592,7 +170392,7 @@ return { [1]="map_has_x%_quality" } }, - [7524]={ + [7704]={ [1]={ [1]={ limit={ @@ -165617,7 +170417,7 @@ return { [1]="map_heist_contract_additional_reveals_granted" } }, - [7525]={ + [7705]={ [1]={ [1]={ limit={ @@ -165633,7 +170433,7 @@ return { [1]="map_heist_contract_chest_no_rewards_%_chance" } }, - [7526]={ + [7706]={ [1]={ [1]={ limit={ @@ -165649,7 +170449,7 @@ return { [1]="map_heist_contract_npc_items_cannot_drop" } }, - [7527]={ + [7707]={ [1]={ [1]={ limit={ @@ -165678,7 +170478,7 @@ return { [1]="map_heist_contract_primary_target_value_+%_final" } }, - [7528]={ + [7708]={ [1]={ [1]={ limit={ @@ -165707,7 +170507,7 @@ return { [1]="map_heist_monster_life_+%_final_from_sextant" } }, - [7529]={ + [7709]={ [1]={ [1]={ limit={ @@ -165732,7 +170532,7 @@ return { [1]="map_heist_npc_perks_effect_+%_final" } }, - [7530]={ + [7710]={ [1]={ [1]={ limit={ @@ -165765,7 +170565,7 @@ return { [1]="map_imprisoned_monsters_action_speed_+%" } }, - [7531]={ + [7711]={ [1]={ [1]={ limit={ @@ -165794,7 +170594,7 @@ return { [1]="map_imprisoned_monsters_damage_+%" } }, - [7532]={ + [7712]={ [1]={ [1]={ limit={ @@ -165810,7 +170610,7 @@ return { [1]="map_imprisoned_monsters_damage_taken_+%" } }, - [7533]={ + [7713]={ [1]={ [1]={ limit={ @@ -165826,7 +170626,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_arsonist" } }, - [7534]={ + [7714]={ [1]={ [1]={ limit={ @@ -165842,7 +170642,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_blasphemer" } }, - [7535]={ + [7715]={ [1]={ [1]={ limit={ @@ -165858,7 +170658,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_cannibal" } }, - [7536]={ + [7716]={ [1]={ [1]={ limit={ @@ -165874,7 +170674,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_charlatan" } }, - [7537]={ + [7717]={ [1]={ [1]={ limit={ @@ -165890,7 +170690,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_corrupter" } }, - [7538]={ + [7718]={ [1]={ [1]={ limit={ @@ -165906,7 +170706,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_counterfeiter" } }, - [7539]={ + [7719]={ [1]={ [1]={ limit={ @@ -165922,7 +170722,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_cutthroat" } }, - [7540]={ + [7720]={ [1]={ [1]={ limit={ @@ -165938,7 +170738,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_embezzler" } }, - [7541]={ + [7721]={ [1]={ [1]={ limit={ @@ -165954,7 +170754,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_experimenter" } }, - [7542]={ + [7722]={ [1]={ [1]={ limit={ @@ -165970,7 +170770,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_fisherman" } }, - [7543]={ + [7723]={ [1]={ [1]={ limit={ @@ -165986,7 +170786,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_freezer" } }, - [7544]={ + [7724]={ [1]={ [1]={ limit={ @@ -166002,7 +170802,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_librarian" } }, - [7545]={ + [7725]={ [1]={ [1]={ limit={ @@ -166018,7 +170818,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_martyr" } }, - [7546]={ + [7726]={ [1]={ [1]={ limit={ @@ -166034,7 +170834,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_mutilator" } }, - [7547]={ + [7727]={ [1]={ [1]={ limit={ @@ -166050,7 +170850,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_necromancer" } }, - [7548]={ + [7728]={ [1]={ [1]={ limit={ @@ -166066,7 +170866,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_poisoner" } }, - [7549]={ + [7729]={ [1]={ [1]={ limit={ @@ -166082,7 +170882,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_rogue" } }, - [7550]={ + [7730]={ [1]={ [1]={ limit={ @@ -166098,7 +170898,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_smuggler" } }, - [7551]={ + [7731]={ [1]={ [1]={ limit={ @@ -166114,7 +170914,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_spy" } }, - [7552]={ + [7732]={ [1]={ [1]={ limit={ @@ -166130,7 +170930,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_thief" } }, - [7553]={ + [7733]={ [1]={ [1]={ limit={ @@ -166146,7 +170946,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_thug" } }, - [7554]={ + [7734]={ [1]={ [1]={ limit={ @@ -166162,7 +170962,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_warlord" } }, - [7555]={ + [7735]={ [1]={ [1]={ limit={ @@ -166178,7 +170978,7 @@ return { [1]="map_incursion_spawn_large_caustic_plants" } }, - [7556]={ + [7736]={ [1]={ [1]={ limit={ @@ -166194,7 +170994,7 @@ return { [1]="map_incursion_spawn_parasitic_caustic_plants" } }, - [7557]={ + [7737]={ [1]={ [1]={ limit={ @@ -166210,7 +171010,7 @@ return { [1]="map_invasion_bosses_are_twinned" } }, - [7558]={ + [7738]={ [1]={ [1]={ limit={ @@ -166235,7 +171035,7 @@ return { [1]="map_invasion_bosses_drop_x_additional_vaal_orbs" } }, - [7559]={ + [7739]={ [1]={ [1]={ limit={ @@ -166251,7 +171051,7 @@ return { [1]="map_invasion_bosses_dropped_items_are_fully_linked" } }, - [7560]={ + [7740]={ [1]={ [1]={ limit={ @@ -166276,7 +171076,7 @@ return { [1]="map_invasion_bosses_dropped_items_have_x_additional_sockets" } }, - [7561]={ + [7741]={ [1]={ [1]={ limit={ @@ -166301,7 +171101,7 @@ return { [1]="map_invasion_monsters_guarded_by_x_magic_packs" } }, - [7562]={ + [7742]={ [1]={ [1]={ limit={ @@ -166317,7 +171117,7 @@ return { [1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity" } }, - [7563]={ + [7743]={ [1]={ [1]={ limit={ @@ -166346,7 +171146,7 @@ return { [1]="map_item_found_rarity_+%_per_15_rampage_stacks" } }, - [7564]={ + [7744]={ [1]={ [1]={ limit={ @@ -166362,7 +171162,7 @@ return { [1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%" } }, - [7565]={ + [7745]={ [1]={ [1]={ limit={ @@ -166387,7 +171187,7 @@ return { [1]="map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds" } }, - [7566]={ + [7746]={ [1]={ [1]={ limit={ @@ -166416,7 +171216,7 @@ return { [1]="map_labyrinth_izaro_area_of_effect_+%" } }, - [7567]={ + [7747]={ [1]={ [1]={ limit={ @@ -166445,7 +171245,7 @@ return { [1]="map_labyrinth_izaro_attack_cast_move_speed_+%" } }, - [7568]={ + [7748]={ [1]={ [1]={ limit={ @@ -166474,7 +171274,7 @@ return { [1]="map_labyrinth_izaro_damage_+%" } }, - [7569]={ + [7749]={ [1]={ [1]={ limit={ @@ -166503,7 +171303,7 @@ return { [1]="map_labyrinth_izaro_life_+%" } }, - [7570]={ + [7750]={ [1]={ [1]={ limit={ @@ -166532,7 +171332,7 @@ return { [1]="map_labyrinth_monsters_attack_cast_and_movement_speed_+%" } }, - [7571]={ + [7751]={ [1]={ [1]={ limit={ @@ -166561,7 +171361,7 @@ return { [1]="map_labyrinth_monsters_damage_+%" } }, - [7572]={ + [7752]={ [1]={ [1]={ limit={ @@ -166590,7 +171390,7 @@ return { [1]="map_labyrinth_monsters_life_+%" } }, - [7573]={ + [7753]={ [1]={ [1]={ limit={ @@ -166615,7 +171415,7 @@ return { [1]="map_leaguestone_area_contains_x_additional_leaguestones" } }, - [7574]={ + [7754]={ [1]={ [1]={ limit={ @@ -166644,7 +171444,7 @@ return { [1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final" } }, - [7575]={ + [7755]={ [1]={ [1]={ limit={ @@ -166660,7 +171460,7 @@ return { [1]="map_leaguestone_contains_warband_leader" } }, - [7576]={ + [7756]={ [1]={ [1]={ limit={ @@ -166703,7 +171503,7 @@ return { [1]="map_leaguestone_explicit_warband_type_override" } }, - [7577]={ + [7757]={ [1]={ [1]={ limit={ @@ -166719,7 +171519,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final" } }, - [7578]={ + [7758]={ [1]={ [1]={ limit={ @@ -166735,7 +171535,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final" } }, - [7579]={ + [7759]={ [1]={ [1]={ limit={ @@ -166764,7 +171564,7 @@ return { [1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final" } }, - [7580]={ + [7760]={ [1]={ [1]={ limit={ @@ -166816,7 +171616,7 @@ return { [1]="map_leaguestone_monolith_contains_essence_type" } }, - [7581]={ + [7761]={ [1]={ [1]={ limit={ @@ -166841,7 +171641,7 @@ return { [1]="map_leaguestone_override_base_num_breaches" } }, - [7582]={ + [7762]={ [1]={ [1]={ limit={ @@ -166866,7 +171666,7 @@ return { [1]="map_leaguestone_override_base_num_invasion_bosses" } }, - [7583]={ + [7763]={ [1]={ [1]={ limit={ @@ -166891,7 +171691,7 @@ return { [1]="map_leaguestone_override_base_num_monoliths" } }, - [7584]={ + [7764]={ [1]={ [1]={ limit={ @@ -166916,7 +171716,7 @@ return { [1]="map_leaguestone_override_base_num_perandus_chests" } }, - [7585]={ + [7765]={ [1]={ [1]={ limit={ @@ -166941,7 +171741,7 @@ return { [1]="map_leaguestone_override_base_num_prophecy_coins" } }, - [7586]={ + [7766]={ [1]={ [1]={ limit={ @@ -166966,7 +171766,7 @@ return { [1]="map_leaguestone_override_base_num_rogue_exiles" } }, - [7587]={ + [7767]={ [1]={ [1]={ limit={ @@ -166991,7 +171791,7 @@ return { [1]="map_leaguestone_override_base_num_shrines" } }, - [7588]={ + [7768]={ [1]={ [1]={ limit={ @@ -167016,7 +171816,7 @@ return { [1]="map_leaguestone_override_base_num_strongboxes" } }, - [7589]={ + [7769]={ [1]={ [1]={ limit={ @@ -167041,7 +171841,7 @@ return { [1]="map_leaguestone_override_base_num_talismans" } }, - [7590]={ + [7770]={ [1]={ [1]={ limit={ @@ -167066,7 +171866,7 @@ return { [1]="map_leaguestone_override_base_num_tormented_spirits" } }, - [7591]={ + [7771]={ [1]={ [1]={ limit={ @@ -167091,7 +171891,7 @@ return { [1]="map_leaguestone_override_base_num_warband_packs" } }, - [7592]={ + [7772]={ [1]={ [1]={ limit={ @@ -167107,7 +171907,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final" } }, - [7593]={ + [7773]={ [1]={ [1]={ limit={ @@ -167123,7 +171923,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final" } }, - [7594]={ + [7774]={ [1]={ [1]={ limit={ @@ -167139,7 +171939,7 @@ return { [1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final" } }, - [7595]={ + [7775]={ [1]={ [1]={ limit={ @@ -167164,7 +171964,7 @@ return { [1]="map_leaguestone_shrine_monster_rarity_override" } }, - [7596]={ + [7776]={ [1]={ [1]={ limit={ @@ -167198,7 +171998,7 @@ return { [1]="map_leaguestone_shrine_override_type" } }, - [7597]={ + [7777]={ [1]={ [1]={ limit={ @@ -167223,7 +172023,7 @@ return { [1]="map_leaguestone_strongboxes_rarity_override" } }, - [7598]={ + [7778]={ [1]={ [1]={ limit={ @@ -167239,7 +172039,7 @@ return { [1]="map_strongboxes_vaal_orb_drop_chance_%" } }, - [7599]={ + [7779]={ [1]={ [1]={ limit={ @@ -167255,7 +172055,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final" } }, - [7600]={ + [7780]={ [1]={ [1]={ limit={ @@ -167271,7 +172071,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final" } }, - [7601]={ + [7781]={ [1]={ [1]={ limit={ @@ -167296,7 +172096,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_abaxoth" } }, - [7602]={ + [7782]={ [1]={ [1]={ limit={ @@ -167321,7 +172121,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_random_beyond_boss" } }, - [7603]={ + [7783]={ [1]={ [1]={ limit={ @@ -167337,7 +172137,7 @@ return { [1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks" } }, - [7604]={ + [7784]={ [1]={ [1]={ limit={ @@ -167353,7 +172153,7 @@ return { [1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks" } }, - [7605]={ + [7785]={ [1]={ [1]={ limit={ @@ -167378,7 +172178,7 @@ return { [1]="map_legion_league_extra_spawns" } }, - [7606]={ + [7786]={ [1]={ [1]={ limit={ @@ -167394,7 +172194,7 @@ return { [1]="map_legion_league_force_general" } }, - [7607]={ + [7787]={ [1]={ [1]={ limit={ @@ -167410,7 +172210,7 @@ return { [1]="map_legion_league_force_war_chest" } }, - [7608]={ + [7788]={ [1]={ [1]={ limit={ @@ -167439,7 +172239,7 @@ return { [1]="map_legion_monster_life_+%_final_from_sextant" } }, - [7609]={ + [7789]={ [1]={ [1]={ limit={ @@ -167455,7 +172255,7 @@ return { [1]="map_legion_monster_splinter_emblem_drops_duplicated" } }, - [7610]={ + [7790]={ [1]={ [1]={ limit={ @@ -167471,7 +172271,7 @@ return { [1]="map_level_+" } }, - [7611]={ + [7791]={ [1]={ [1]={ limit={ @@ -167487,7 +172287,7 @@ return { [1]="map_magic_items_drop_as_normal" } }, - [7612]={ + [7792]={ [1]={ [1]={ limit={ @@ -167503,7 +172303,7 @@ return { [1]="map_magic_monsters_are_maimed" } }, - [7613]={ + [7793]={ [1]={ [1]={ limit={ @@ -167532,7 +172332,7 @@ return { [1]="map_magic_monsters_damage_taken_+%" } }, - [7614]={ + [7794]={ [1]={ [1]={ limit={ @@ -167548,7 +172348,7 @@ return { [1]="map_metamorph_all_metamorphs_have_rewards" } }, - [7615]={ + [7795]={ [1]={ [1]={ limit={ @@ -167573,7 +172373,7 @@ return { [1]="map_metamorph_boss_drops_additional_itemised_organs" } }, - [7616]={ + [7796]={ [1]={ [1]={ limit={ @@ -167589,7 +172389,7 @@ return { [1]="map_metamorph_catalyst_drops_duplicated" } }, - [7617]={ + [7797]={ [1]={ [1]={ limit={ @@ -167614,7 +172414,7 @@ return { [1]="map_metamorph_itemised_boss_min_rewards" } }, - [7618]={ + [7798]={ [1]={ [1]={ limit={ @@ -167630,7 +172430,7 @@ return { [1]="map_metamorph_itemised_boss_more_difficult" } }, - [7619]={ + [7799]={ [1]={ [1]={ limit={ @@ -167659,7 +172459,7 @@ return { [1]="map_metamorph_life_+%_final_from_sextant" } }, - [7620]={ + [7800]={ [1]={ [1]={ limit={ @@ -167675,7 +172475,7 @@ return { [1]="map_metamorphosis_league" } }, - [7621]={ + [7801]={ [1]={ [1]={ limit={ @@ -167691,7 +172491,7 @@ return { [1]="map_mini_monolith_monsters_are_magic" } }, - [7622]={ + [7802]={ [1]={ [1]={ limit={ @@ -167720,7 +172520,7 @@ return { [1]="map_monolith_chance_+%" } }, - [7623]={ + [7803]={ [1]={ [1]={ limit={ @@ -167736,7 +172536,32 @@ return { [1]="map_monolith_chance_%" } }, - [7624]={ + [7804]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Area contains an additional Incubator Queen" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Area contains {0} additional Incubator Queens" + } + }, + stats={ + [1]="map_monster_additional_abyssal_monolithic_slug_packs" + } + }, + [7805]={ [1]={ [1]={ limit={ @@ -167761,7 +172586,7 @@ return { [1]="map_monster_additional_sanctified_packs" } }, - [7625]={ + [7806]={ [1]={ [1]={ limit={ @@ -167790,7 +172615,7 @@ return { [1]="map_monster_and_player_onslaught_effect_+%" } }, - [7626]={ + [7807]={ [1]={ [1]={ limit={ @@ -167819,7 +172644,7 @@ return { [1]="map_monster_attack_cast_and_movement_speed_+%" } }, - [7627]={ + [7808]={ [1]={ [1]={ limit={ @@ -167848,7 +172673,7 @@ return { [1]="map_monster_beyond_portal_chance_+%" } }, - [7628]={ + [7809]={ [1]={ [1]={ limit={ @@ -167877,7 +172702,7 @@ return { [1]="map_monster_curse_effect_on_self_+%" } }, - [7629]={ + [7810]={ [1]={ [1]={ limit={ @@ -167906,7 +172731,7 @@ return { [1]="map_monster_damage_taken_+%_final_from_atlas_keystone" } }, - [7630]={ + [7811]={ [1]={ [1]={ limit={ @@ -167935,7 +172760,32 @@ return { [1]="map_monster_damage_taken_+%_while_possessed" } }, - [7631]={ + [7812]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Monsters inflict {0} Grasping Vine on Hit" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Monsters inflict {0} Grasping Vines on Hit" + } + }, + stats={ + [1]="map_monster_add_x_grasping_vines_on_hit" + } + }, + [7813]={ [1]={ [1]={ limit={ @@ -167964,7 +172814,7 @@ return { [1]="map_monster_non_damaging_ailment_effect_+%_on_self" } }, - [7632]={ + [7814]={ [1]={ [1]={ limit={ @@ -167993,7 +172843,7 @@ return { [1]="map_monsters_skill_speed_+%" } }, - [7633]={ + [7815]={ [1]={ [1]={ limit={ @@ -168022,7 +172872,7 @@ return { [1]="map_monster_slain_experience_+%" } }, - [7634]={ + [7816]={ [1]={ [1]={ limit={ @@ -168051,7 +172901,7 @@ return { [1]="map_monsters_accuracy_rating_+%" } }, - [7635]={ + [7817]={ [1]={ [1]={ limit={ @@ -168084,7 +172934,7 @@ return { [1]="map_monsters_action_speed_-%" } }, - [7636]={ + [7818]={ [1]={ [1]={ limit={ @@ -168109,7 +172959,7 @@ return { [1]="map_monsters_add_endurance_charge_on_hit_%" } }, - [7637]={ + [7819]={ [1]={ [1]={ limit={ @@ -168134,7 +172984,7 @@ return { [1]="map_monsters_add_frenzy_charge_on_hit_%" } }, - [7638]={ + [7820]={ [1]={ [1]={ limit={ @@ -168159,7 +173009,7 @@ return { [1]="map_monsters_add_power_charge_on_hit_%" } }, - [7639]={ + [7821]={ [1]={ [1]={ limit={ @@ -168175,7 +173025,7 @@ return { [1]="map_monsters_additional_chaos_resistance" } }, - [7640]={ + [7822]={ [1]={ [1]={ limit={ @@ -168191,7 +173041,7 @@ return { [1]="map_monsters_additional_dexterity_ratio_%_for_evasion" } }, - [7641]={ + [7823]={ [1]={ [1]={ limit={ @@ -168207,7 +173057,7 @@ return { [1]="map_monsters_additional_elemental_resistance" } }, - [7642]={ + [7824]={ [1]={ [1]={ limit={ @@ -168223,7 +173073,7 @@ return { [1]="map_monsters_additional_maximum_all_elemental_resistances_%" } }, - [7643]={ + [7825]={ [1]={ [1]={ limit={ @@ -168239,7 +173089,7 @@ return { [1]="map_monsters_additional_strength_ratio_%_for_armour" } }, - [7644]={ + [7826]={ [1]={ [1]={ limit={ @@ -168255,7 +173105,7 @@ return { [1]="map_monsters_ailment_threshold_+%" } }, - [7645]={ + [7827]={ [1]={ [1]={ limit={ @@ -168271,7 +173121,7 @@ return { [1]="map_monsters_all_damage_can_chill" } }, - [7646]={ + [7828]={ [1]={ [1]={ limit={ @@ -168287,7 +173137,7 @@ return { [1]="map_monsters_all_damage_can_freeze" } }, - [7647]={ + [7829]={ [1]={ [1]={ limit={ @@ -168296,14 +173146,14 @@ return { [2]="#" } }, - text="All Damage from Monsters' Hits Contributes to Ignite Chance and Magnitude" + text="All Damage from Monsters' Hits Contributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="map_monsters_all_damage_can_ignite" } }, - [7648]={ + [7830]={ [1]={ [1]={ limit={ @@ -168319,7 +173169,7 @@ return { [1]="map_monsters_all_damage_can_poison" } }, - [7649]={ + [7831]={ [1]={ [1]={ limit={ @@ -168335,7 +173185,7 @@ return { [1]="map_monsters_all_damage_can_shock" } }, - [7650]={ + [7832]={ [1]={ [1]={ limit={ @@ -168351,7 +173201,7 @@ return { [1]="map_monsters_always_crit" } }, - [7651]={ + [7833]={ [1]={ [1]={ limit={ @@ -168367,7 +173217,7 @@ return { [1]="map_monsters_always_hit" } }, - [7652]={ + [7834]={ [1]={ [1]={ limit={ @@ -168383,7 +173233,7 @@ return { [1]="map_monsters_always_ignite" } }, - [7653]={ + [7835]={ [1]={ [1]={ limit={ @@ -168399,7 +173249,7 @@ return { [1]="map_monsters_are_converted_on_kill" } }, - [7654]={ + [7836]={ [1]={ [1]={ limit={ @@ -168415,7 +173265,7 @@ return { [1]="map_monsters_armour_break_physical_damage_%_dealt_as_armour_break" } }, - [7655]={ + [7837]={ [1]={ [1]={ limit={ @@ -168431,7 +173281,7 @@ return { [1]="map_monsters_avoid_poison_bleed_impale_%" } }, - [7656]={ + [7838]={ [1]={ [1]={ limit={ @@ -168460,7 +173310,7 @@ return { [1]="map_monsters_base_bleed_duration_+%" } }, - [7657]={ + [7839]={ [1]={ [1]={ limit={ @@ -168476,7 +173326,7 @@ return { [1]="map_monsters_base_block_%" } }, - [7658]={ + [7840]={ [1]={ [1]={ limit={ @@ -168501,32 +173351,7 @@ return { [1]="map_monsters_base_chance_to_freeze_%" } }, - [7659]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Monsters' Hits have {0}% chance to Ignite" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Monsters' Hits always Ignite" - } - }, - stats={ - [1]="map_monsters_base_chance_to_ignite_%" - } - }, - [7660]={ + [7841]={ [1]={ [1]={ limit={ @@ -168551,7 +173376,7 @@ return { [1]="map_monsters_base_chance_to_shock_%" } }, - [7661]={ + [7842]={ [1]={ [1]={ limit={ @@ -168580,23 +173405,7 @@ return { [1]="map_monsters_base_poison_duration_+%" } }, - [7662]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Monsters have {0:+d}% Chance to Block Spell Damage" - } - }, - stats={ - [1]="map_monsters_base_spell_block_%" - } - }, - [7663]={ + [7843]={ [1]={ [1]={ limit={ @@ -168612,7 +173421,7 @@ return { [1]="map_monsters_cannot_be_taunted" } }, - [7664]={ + [7844]={ [1]={ [1]={ limit={ @@ -168637,7 +173446,7 @@ return { [1]="map_monsters_chance_to_blind_on_hit_%" } }, - [7665]={ + [7845]={ [1]={ [1]={ limit={ @@ -168662,23 +173471,23 @@ return { [1]="map_monsters_chance_to_impale_%" } }, - [7666]={ + [7846]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Monsters have {0}% chance to Bleeding on Hit" + text="Monsters have {0}% chance to inflict Bleeding on Hit" } }, stats={ [1]="map_monsters_chance_to_inflict_bleeding_%" } }, - [7667]={ + [7847]={ [1]={ [1]={ limit={ @@ -168703,7 +173512,7 @@ return { [1]="map_monsters_chance_to_inflict_brittle_%" } }, - [7668]={ + [7848]={ [1]={ [1]={ limit={ @@ -168728,7 +173537,7 @@ return { [1]="map_monsters_chance_to_inflict_sapped_%" } }, - [7669]={ + [7849]={ [1]={ [1]={ limit={ @@ -168744,7 +173553,7 @@ return { [1]="map_monsters_chance_to_poison_on_hit_%" } }, - [7670]={ + [7850]={ [1]={ [1]={ limit={ @@ -168769,7 +173578,7 @@ return { [1]="map_monsters_chance_to_scorch_%" } }, - [7671]={ + [7851]={ [1]={ [1]={ limit={ @@ -168802,7 +173611,7 @@ return { [1]="map_monsters_curse_effect_on_self_+%_final" } }, - [7672]={ + [7852]={ [1]={ [1]={ limit={ @@ -168831,7 +173640,7 @@ return { [1]="map_monsters_damage_taken_+%" } }, - [7673]={ + [7853]={ [1]={ [1]={ limit={ @@ -168847,7 +173656,7 @@ return { [1]="map_monsters_drop_no_equipment" } }, - [7674]={ + [7854]={ [1]={ [1]={ limit={ @@ -168863,7 +173672,7 @@ return { [1]="map_monsters_enemy_phys_reduction_%_penalty_vs_hit" } }, - [7675]={ + [7855]={ [1]={ [1]={ limit={ @@ -168892,7 +173701,7 @@ return { [1]="map_monsters_freeze_duration_+%" } }, - [7676]={ + [7856]={ [1]={ [1]={ limit={ @@ -168908,7 +173717,7 @@ return { [1]="map_monsters_attacks_inflict_bleeding_on_hit" } }, - [7677]={ + [7857]={ [1]={ [1]={ limit={ @@ -168924,7 +173733,7 @@ return { [1]="map_monsters_global_poison_on_hit" } }, - [7678]={ + [7858]={ [1]={ [1]={ limit={ @@ -168940,7 +173749,7 @@ return { [1]="map_monsters_hit_damage_freeze_multiplier_+%" } }, - [7679]={ + [7859]={ [1]={ [1]={ limit={ @@ -168956,7 +173765,7 @@ return { [1]="map_monsters_hit_damage_stun_multiplier_+%" } }, - [7680]={ + [7860]={ [1]={ [1]={ limit={ @@ -168965,14 +173774,14 @@ return { [2]="#" } }, - text="Monsters have {0}% increased Ignite Chance" + text="Monsters inflict {0}% increased Flammability Magnitude" } }, stats={ [1]="map_monsters_ignite_chance_+%" } }, - [7681]={ + [7861]={ [1]={ [1]={ limit={ @@ -169001,7 +173810,7 @@ return { [1]="map_monsters_ignite_duration_+%" } }, - [7682]={ + [7862]={ [1]={ [1]={ limit={ @@ -169026,7 +173835,7 @@ return { [1]="map_monsters_maim_on_hit_%_chance" } }, - [7683]={ + [7863]={ [1]={ [1]={ limit={ @@ -169042,7 +173851,7 @@ return { [1]="map_monsters_maximum_life_%_to_add_to_maximum_energy_shield" } }, - [7684]={ + [7864]={ [1]={ [1]={ limit={ @@ -169051,14 +173860,14 @@ return { [2]="#" } }, - text="Monsters' Action Speed cannot be modified to below base value" + text="Natural Monster Packs in Area are in a Union of Souls" } }, stats={ - [1]="map_monsters_movement_speed_cannot_be_reduced_below_base" + [1]="map_monsters_monster_difficulty_tankiness_+%_granted_to_pack_members_on_death" } }, - [7685]={ + [7865]={ [1]={ [1]={ limit={ @@ -169067,14 +173876,14 @@ return { [2]="#" } }, - text="Monsters near Shrines are Chilled" + text="Monsters' Action Speed cannot be modified to below base value" } }, stats={ - [1]="map_monsters_near_shrines_are_chilled" + [1]="map_monsters_movement_speed_cannot_be_reduced_below_base" } }, - [7686]={ + [7866]={ [1]={ [1]={ limit={ @@ -169090,7 +173899,7 @@ return { [1]="map_monsters_penetrate_elemental_resistances_%" } }, - [7687]={ + [7867]={ [1]={ [1]={ limit={ @@ -169106,7 +173915,7 @@ return { [1]="map_monsters_%_chance_to_inflict_status_ailments" } }, - [7688]={ + [7868]={ [1]={ [1]={ limit={ @@ -169122,7 +173931,7 @@ return { [1]="map_monsters_reduce_enemy_chaos_resistance_%" } }, - [7689]={ + [7869]={ [1]={ [1]={ limit={ @@ -169138,7 +173947,7 @@ return { [1]="map_monsters_reduce_enemy_cold_resistance_%" } }, - [7690]={ + [7870]={ [1]={ [1]={ limit={ @@ -169154,7 +173963,7 @@ return { [1]="map_monsters_reduce_enemy_fire_resistance_%" } }, - [7691]={ + [7871]={ [1]={ [1]={ limit={ @@ -169170,7 +173979,7 @@ return { [1]="map_monsters_reduce_enemy_lightning_resistance_%" } }, - [7692]={ + [7872]={ [1]={ [1]={ limit={ @@ -169195,7 +174004,7 @@ return { [1]="map_monsters_remove_charges_on_hit_%" } }, - [7693]={ + [7873]={ [1]={ [1]={ limit={ @@ -169211,7 +174020,7 @@ return { [1]="map_monsters_remove_enemy_flask_charge_on_hit_%_chance" } }, - [7694]={ + [7874]={ [1]={ [1]={ limit={ @@ -169227,7 +174036,7 @@ return { [1]="map_monsters_remove_%_of_mana_on_hit" } }, - [7695]={ + [7875]={ [1]={ [1]={ limit={ @@ -169243,7 +174052,7 @@ return { [1]="map_monsters_shock_chance_+%" } }, - [7696]={ + [7876]={ [1]={ [1]={ limit={ @@ -169272,7 +174081,7 @@ return { [1]="map_monsters_shock_effect_+%" } }, - [7697]={ + [7877]={ [1]={ [1]={ limit={ @@ -169297,48 +174106,7 @@ return { [1]="map_monsters_spawned_with_talisman_drop_additional_rare_items" } }, - [7698]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Monsters prevent {0:+d}% of Suppressed Spell Damage" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Monsters have {0:+d}% to amount of Suppressed Spell Damage Prevented" - } - }, - stats={ - [1]="map_monsters_spell_damage_%_suppressed" - } - }, - [7699]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Monsters have {0:+d}% chance to Suppress Spell Damage" - } - }, - stats={ - [1]="map_monsters_spell_suppression_chance_%" - } - }, - [7700]={ + [7878]={ [1]={ [1]={ limit={ @@ -169363,7 +174131,7 @@ return { [1]="map_monsters_spells_chance_to_hinder_on_hit_%_chance" } }, - [7701]={ + [7879]={ [1]={ [1]={ limit={ @@ -169388,7 +174156,7 @@ return { [1]="map_monsters_steal_charges" } }, - [7702]={ + [7880]={ [1]={ [1]={ limit={ @@ -169404,7 +174172,7 @@ return { [1]="map_monsters_stun_threshold_+%" } }, - [7703]={ + [7881]={ [1]={ [1]={ limit={ @@ -169429,7 +174197,7 @@ return { [1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins" } }, - [7704]={ + [7882]={ [1]={ [1]={ limit={ @@ -169445,7 +174213,7 @@ return { [1]="map_monsters_unaffected_by_curses" } }, - [7705]={ + [7883]={ [1]={ [1]={ limit={ @@ -169470,7 +174238,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_currency_items" } }, - [7706]={ + [7884]={ [1]={ [1]={ limit={ @@ -169495,7 +174263,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_rare_items" } }, - [7707]={ + [7885]={ [1]={ [1]={ limit={ @@ -169520,7 +174288,7 @@ return { [1]="map_monsters_withered_on_hit_for_2_seconds_%_chance" } }, - [7708]={ + [7886]={ [1]={ [1]={ limit={ @@ -169536,7 +174304,7 @@ return { [1]="map_monstrous_treasure_no_monsters" } }, - [7709]={ + [7887]={ [1]={ [1]={ limit={ @@ -169565,7 +174333,64 @@ return { [1]="map_movement_velocity_+%_per_poison_stack" } }, - [7710]={ + [7888]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence" + } + }, + stats={ + [1]="map_natural_rare_monsters_have_soul_eater" + } + }, + [7889]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Natural Rare Monsters in Area have {0} extra Abyssal Modifier" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Natural Rare Monsters in Area have {0} extra Abyssal Modifiers" + } + }, + stats={ + [1]="map_natural_rare_monsters_have_x_additional_abyssal_modifiers" + } + }, + [7890]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Natural Rare Monsters in Area are in a Union of Souls with the Map Boss" + } + }, + stats={ + [1]="map_natural_rare_monsters_in_union_of_souls_with_boss" + } + }, + [7891]={ [1]={ [1]={ limit={ @@ -169590,7 +174415,7 @@ return { [1]="map_nemesis_dropped_items_+" } }, - [7711]={ + [7892]={ [1]={ [1]={ limit={ @@ -169615,7 +174440,7 @@ return { [1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs" } }, - [7712]={ + [7893]={ [1]={ [1]={ limit={ @@ -169640,7 +174465,7 @@ return { [1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs" } }, - [7713]={ + [7894]={ [1]={ [1]={ limit={ @@ -169656,7 +174481,7 @@ return { [1]="map_no_magic_items_drop" } }, - [7714]={ + [7895]={ [1]={ [1]={ limit={ @@ -169672,7 +174497,7 @@ return { [1]="map_no_rare_items_drop" } }, - [7715]={ + [7896]={ [1]={ [1]={ limit={ @@ -169688,7 +174513,7 @@ return { [1]="map_no_stashes" } }, - [7716]={ + [7897]={ [1]={ [1]={ limit={ @@ -169704,7 +174529,7 @@ return { [1]="map_no_uniques_drop_randomly" } }, - [7717]={ + [7898]={ [1]={ [1]={ limit={ @@ -169720,7 +174545,7 @@ return { [1]="map_no_vendors" } }, - [7718]={ + [7899]={ [1]={ [1]={ limit={ @@ -169736,7 +174561,7 @@ return { [1]="map_non_unique_items_drop_normal" } }, - [7719]={ + [7900]={ [1]={ [1]={ [1]={ @@ -169756,7 +174581,7 @@ return { [1]="map_non_unique_monster_life_regeneration_rate_per_minute_%" } }, - [7720]={ + [7901]={ [1]={ [1]={ limit={ @@ -169772,7 +174597,7 @@ return { [1]="map_normal_items_drop_as_magic" } }, - [7721]={ + [7902]={ [1]={ [1]={ limit={ @@ -169788,7 +174613,7 @@ return { [1]="map_nuke_everything" } }, - [7722]={ + [7903]={ [1]={ [1]={ limit={ @@ -169813,7 +174638,7 @@ return { [1]="map_num_extra_abysses" } }, - [7723]={ + [7904]={ [1]={ [1]={ limit={ @@ -169829,7 +174654,7 @@ return { [1]="map_num_extra_blights_" } }, - [7724]={ + [7905]={ [1]={ [1]={ limit={ @@ -169854,7 +174679,7 @@ return { [1]="map_num_extra_gloom_shrines" } }, - [7725]={ + [7906]={ [1]={ [1]={ limit={ @@ -169879,7 +174704,7 @@ return { [1]="map_num_extra_harbingers" } }, - [7726]={ + [7907]={ [1]={ [1]={ limit={ @@ -169904,7 +174729,7 @@ return { [1]="map_num_extra_resonating_shrines" } }, - [7727]={ + [7908]={ [1]={ [1]={ limit={ @@ -169929,7 +174754,7 @@ return { [1]="map_number_of_additional_mods" } }, - [7728]={ + [7909]={ [1]={ [1]={ limit={ @@ -169954,7 +174779,7 @@ return { [1]="map_number_of_additional_prefixes" } }, - [7729]={ + [7910]={ [1]={ [1]={ limit={ @@ -169979,7 +174804,7 @@ return { [1]="map_number_of_additional_silver_coin_drops" } }, - [7730]={ + [7911]={ [1]={ [1]={ limit={ @@ -170004,7 +174829,7 @@ return { [1]="map_number_of_additional_suffixes" } }, - [7731]={ + [7912]={ [1]={ [1]={ limit={ @@ -170029,7 +174854,7 @@ return { [1]="map_on_complete_drop_x_additional_maps" } }, - [7732]={ + [7913]={ [1]={ [1]={ limit={ @@ -170045,7 +174870,7 @@ return { [1]="map_owner_sulphite_gained_+%" } }, - [7733]={ + [7914]={ [1]={ [1]={ limit={ @@ -170061,7 +174886,7 @@ return { [1]="map_packs_are_abomination_monsters" } }, - [7734]={ + [7915]={ [1]={ [1]={ limit={ @@ -170077,7 +174902,7 @@ return { [1]="map_packs_are_blackguards" } }, - [7735]={ + [7916]={ [1]={ [1]={ limit={ @@ -170093,7 +174918,7 @@ return { [1]="map_packs_are_ghosts" } }, - [7736]={ + [7917]={ [1]={ [1]={ limit={ @@ -170109,7 +174934,7 @@ return { [1]="map_packs_are_kitava" } }, - [7737]={ + [7918]={ [1]={ [1]={ limit={ @@ -170125,7 +174950,7 @@ return { [1]="map_packs_are_lunaris" } }, - [7738]={ + [7919]={ [1]={ [1]={ limit={ @@ -170141,7 +174966,7 @@ return { [1]="map_packs_are_solaris" } }, - [7739]={ + [7920]={ [1]={ [1]={ limit={ @@ -170157,7 +174982,7 @@ return { [1]="map_packs_are_spiders" } }, - [7740]={ + [7921]={ [1]={ [1]={ limit={ @@ -170173,7 +174998,7 @@ return { [1]="map_packs_are_vaal" } }, - [7741]={ + [7922]={ [1]={ [1]={ limit={ @@ -170189,7 +175014,7 @@ return { [1]="map_perandus_guards_are_rare" } }, - [7742]={ + [7923]={ [1]={ [1]={ limit={ @@ -170205,7 +175030,7 @@ return { [1]="map_perandus_monsters_drop_perandus_coin_stack_%" } }, - [7743]={ + [7924]={ [1]={ [1]={ limit={ @@ -170234,7 +175059,7 @@ return { [1]="map_player_accuracy_rating_+%_final" } }, - [7744]={ + [7925]={ [1]={ [1]={ limit={ @@ -170263,7 +175088,7 @@ return { [1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught" } }, - [7745]={ + [7926]={ [1]={ [1]={ limit={ @@ -170288,7 +175113,7 @@ return { [1]="map_player_buff_time_passed_+%_only_buff_category" } }, - [7746]={ + [7927]={ [1]={ [1]={ limit={ @@ -170304,39 +175129,7 @@ return { [1]="map_player_cannot_block_attacks" } }, - [7747]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Players cannot Block Spell Damage" - } - }, - stats={ - [1]="map_player_cannot_block_spells" - } - }, - [7748]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Players cannot Suppress Spell Damage" - } - }, - stats={ - [1]="map_player_cannot_suppress_spell_damage" - } - }, - [7749]={ + [7928]={ [1]={ [1]={ limit={ @@ -170361,7 +175154,7 @@ return { [1]="map_player_chance_to_gain_vaal_soul_on_kill_%" } }, - [7750]={ + [7929]={ [1]={ [1]={ limit={ @@ -170394,7 +175187,7 @@ return { [1]="map_player_charges_gained_+%" } }, - [7751]={ + [7930]={ [1]={ [1]={ limit={ @@ -170423,7 +175216,7 @@ return { [1]="map_player_cooldown_speed_+%_final" } }, - [7752]={ + [7931]={ [1]={ [1]={ limit={ @@ -170448,7 +175241,7 @@ return { [1]="map_player_create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [7753]={ + [7932]={ [1]={ [1]={ limit={ @@ -170477,7 +175270,7 @@ return { [1]="map_player_curse_effect_on_self_+%" } }, - [7754]={ + [7933]={ [1]={ [1]={ limit={ @@ -170493,7 +175286,7 @@ return { [1]="map_player_damage_+%_vs_breach_monsters" } }, - [7755]={ + [7934]={ [1]={ [1]={ limit={ @@ -170526,7 +175319,7 @@ return { [1]="map_player_damage_taken_+%_vs_breach_monsters" } }, - [7756]={ + [7935]={ [1]={ [1]={ limit={ @@ -170559,7 +175352,53 @@ return { [1]="map_player_damage_taken_+%_while_rampaging" } }, - [7757]={ + [7936]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=999 + } + }, + text="Players are Marked for Death for {0} seconds\nafter killing a Rare or Unique monster" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Players are Marked for Death for {0} second\nafter killing a Rare or Unique monster" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1001, + [2]="#" + } + }, + text="Players are Marked for Death for {0} seconds\nafter killing a Rare or Unique monster" + } + }, + stats={ + [1]="map_player_death_mark_on_rare_unique_kill_ms" + } + }, + [7937]={ [1]={ [1]={ limit={ @@ -170575,7 +175414,7 @@ return { [1]="map_player_disable_soul_gain_prevention" } }, - [7758]={ + [7938]={ [1]={ [1]={ limit={ @@ -170591,7 +175430,7 @@ return { [1]="map_player_flask_recovery_is_instant" } }, - [7759]={ + [7939]={ [1]={ [1]={ limit={ @@ -170607,7 +175446,7 @@ return { [1]="map_player_has_random_level_X_curse_every_10_seconds" } }, - [7760]={ + [7940]={ [1]={ [1]={ limit={ @@ -170640,7 +175479,7 @@ return { [1]="map_player_life_and_es_recovery_speed_+%_final" } }, - [7761]={ + [7941]={ [1]={ [1]={ [1]={ @@ -170660,7 +175499,7 @@ return { [1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks" } }, - [7762]={ + [7942]={ [1]={ [1]={ limit={ @@ -170707,7 +175546,7 @@ return { [2]="map_no_experience" } }, - [7763]={ + [7943]={ [1]={ [1]={ limit={ @@ -170736,7 +175575,7 @@ return { [1]="map_player_maximum_life_and_es_+%_final_from_sanctum_curse" } }, - [7764]={ + [7944]={ [1]={ [1]={ limit={ @@ -170765,7 +175604,7 @@ return { [1]="map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse" } }, - [7765]={ + [7945]={ [1]={ [1]={ limit={ @@ -170781,7 +175620,7 @@ return { [1]="map_player_movement_velocity_+%" } }, - [7766]={ + [7946]={ [1]={ [1]={ limit={ @@ -170810,7 +175649,7 @@ return { [1]="map_player_non_curse_aura_effect_+%" } }, - [7767]={ + [7947]={ [1]={ [1]={ limit={ @@ -170835,7 +175674,7 @@ return { [1]="map_player_onslaught_on_kill_%" } }, - [7768]={ + [7948]={ [1]={ [1]={ limit={ @@ -170864,7 +175703,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [7769]={ + [7949]={ [1]={ [1]={ limit={ @@ -170880,7 +175719,52 @@ return { [1]="map_player_shrine_effect_duration_+%" } }, - [7770]={ + [7950]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Players steal the Eaten Souls of Slain Rare Monsters in Area" + } + }, + stats={ + [1]="map_player_soul_eater_souls_stolen_on_rare_kill" + } + }, + [7951]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Players have {0}% more Movement and Skill Speed for each time they've used a Skill Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Players have {0}% less Movement and Skill Speed for each time they've used a Skill Recently" + } + }, + stats={ + [1]="map_player_speed_+%_final_per_recent_skill_use" + } + }, + [7952]={ [1]={ [1]={ limit={ @@ -170909,7 +175793,7 @@ return { [1]="map_players_and_monsters_chaos_damage_taken_+%" } }, - [7771]={ + [7953]={ [1]={ [1]={ limit={ @@ -170938,7 +175822,7 @@ return { [1]="map_players_and_monsters_cold_damage_taken_+%" } }, - [7772]={ + [7954]={ [1]={ [1]={ limit={ @@ -170967,7 +175851,7 @@ return { [1]="map_players_and_monsters_critical_strike_chance_+%" } }, - [7773]={ + [7955]={ [1]={ [1]={ limit={ @@ -170983,7 +175867,7 @@ return { [1]="map_players_and_monsters_curses_are_reflected" } }, - [7774]={ + [7956]={ [1]={ [1]={ limit={ @@ -171012,7 +175896,7 @@ return { [1]="map_players_and_monsters_damage_+%_per_curse" } }, - [7775]={ + [7957]={ [1]={ [1]={ limit={ @@ -171028,7 +175912,7 @@ return { [1]="map_players_and_monsters_damage_taken_+%_while_stationary" } }, - [7776]={ + [7958]={ [1]={ [1]={ limit={ @@ -171057,7 +175941,7 @@ return { [1]="map_players_and_monsters_fire_damage_taken_+%" } }, - [7777]={ + [7959]={ [1]={ [1]={ limit={ @@ -171073,7 +175957,7 @@ return { [1]="map_players_and_monsters_have_onslaught_if_hit_recently" } }, - [7778]={ + [7960]={ [1]={ [1]={ limit={ @@ -171089,7 +175973,7 @@ return { [1]="map_players_and_monsters_have_resolute_technique" } }, - [7779]={ + [7961]={ [1]={ [1]={ limit={ @@ -171118,7 +176002,7 @@ return { [1]="map_players_and_monsters_lightning_damage_taken_+%" } }, - [7780]={ + [7962]={ [1]={ [1]={ limit={ @@ -171134,7 +176018,7 @@ return { [1]="map_players_and_monsters_movement_speed_+%" } }, - [7781]={ + [7963]={ [1]={ [1]={ limit={ @@ -171163,7 +176047,7 @@ return { [1]="map_players_and_monsters_physical_damage_taken_+%" } }, - [7782]={ + [7964]={ [1]={ [1]={ limit={ @@ -171179,7 +176063,7 @@ return { [1]="map_players_are_poisoned_while_moving_chaos_damage_per_second" } }, - [7783]={ + [7965]={ [1]={ [1]={ limit={ @@ -171212,7 +176096,7 @@ return { [1]="map_players_armour_+%_final" } }, - [7784]={ + [7966]={ [1]={ [1]={ limit={ @@ -171245,7 +176129,7 @@ return { [1]="map_players_block_chance_+%" } }, - [7785]={ + [7967]={ [1]={ [1]={ limit={ @@ -171261,7 +176145,7 @@ return { [1]="map_players_cannot_gain_endurance_charges" } }, - [7786]={ + [7968]={ [1]={ [1]={ limit={ @@ -171277,7 +176161,7 @@ return { [1]="map_players_cannot_gain_flask_charges" } }, - [7787]={ + [7969]={ [1]={ [1]={ limit={ @@ -171293,7 +176177,7 @@ return { [1]="map_players_cannot_gain_frenzy_charges" } }, - [7788]={ + [7970]={ [1]={ [1]={ limit={ @@ -171309,7 +176193,7 @@ return { [1]="map_players_cannot_gain_power_charges" } }, - [7789]={ + [7971]={ [1]={ [1]={ limit={ @@ -171325,7 +176209,7 @@ return { [1]="map_players_cannot_take_reflected_damage" } }, - [7790]={ + [7972]={ [1]={ [1]={ [1]={ @@ -171345,7 +176229,7 @@ return { [1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms" } }, - [7791]={ + [7973]={ [1]={ [1]={ limit={ @@ -171370,7 +176254,7 @@ return { [1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [7792]={ + [7974]={ [1]={ [1]={ [1]={ @@ -171390,7 +176274,7 @@ return { [1]="map_players_gain_onslaught_after_opening_a_strongbox_ms" } }, - [7793]={ + [7975]={ [1]={ [1]={ limit={ @@ -171406,7 +176290,7 @@ return { [1]="map_players_gain_onslaught_during_flask_effect" } }, - [7794]={ + [7976]={ [1]={ [1]={ limit={ @@ -171422,7 +176306,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_%_chance" } }, - [7795]={ + [7977]={ [1]={ [1]={ limit={ @@ -171438,7 +176322,7 @@ return { [1]="map_players_have_decay_rarity_buff" } }, - [7796]={ + [7978]={ [1]={ [1]={ limit={ @@ -171454,7 +176338,7 @@ return { [1]="map_players_have_point_blank" } }, - [7797]={ + [7979]={ [1]={ [1]={ limit={ @@ -171470,7 +176354,7 @@ return { [1]="map_players_movement_skills_cooldown_speed_+%" } }, - [7798]={ + [7980]={ [1]={ [1]={ limit={ @@ -171499,7 +176383,7 @@ return { [1]="map_players_movement_speed_+%" } }, - [7799]={ + [7981]={ [1]={ [1]={ limit={ @@ -171515,7 +176399,7 @@ return { [1]="map_players_no_regeneration_including_es" } }, - [7800]={ + [7982]={ [1]={ [1]={ limit={ @@ -171531,7 +176415,7 @@ return { [1]="map_players_resist_all_%" } }, - [7801]={ + [7983]={ [1]={ [1]={ limit={ @@ -171564,32 +176448,7 @@ return { [1]="map_players_skill_area_of_effect_+%_final" } }, - [7802]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Players Prevent {0:+d}% of Suppressed Spell Damage" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Players have {0:+d}% to amount of Suppressed Spell Damage Prevented" - } - }, - stats={ - [1]="map_players_spell_damage_%_suppressed" - } - }, - [7803]={ + [7984]={ [1]={ [1]={ limit={ @@ -171605,7 +176464,7 @@ return { [1]="map_portals_do_not_expire" } }, - [7804]={ + [7985]={ [1]={ [1]={ limit={ @@ -171630,7 +176489,7 @@ return { [1]="map_possessed_monsters_drop_gilded_scarab_chance_%" } }, - [7805]={ + [7986]={ [1]={ [1]={ limit={ @@ -171655,7 +176514,7 @@ return { [1]="map_possessed_monsters_drop_map_chance_%" } }, - [7806]={ + [7987]={ [1]={ [1]={ limit={ @@ -171680,7 +176539,7 @@ return { [1]="map_possessed_monsters_drop_polished_scarab_chance_%" } }, - [7807]={ + [7988]={ [1]={ [1]={ limit={ @@ -171705,7 +176564,7 @@ return { [1]="map_possessed_monsters_drop_rusted_scarab_chance_%" } }, - [7808]={ + [7989]={ [1]={ [1]={ limit={ @@ -171730,7 +176589,7 @@ return { [1]="map_possessed_monsters_drop_unique_chance_%" } }, - [7809]={ + [7990]={ [1]={ [1]={ limit={ @@ -171755,7 +176614,7 @@ return { [1]="map_possessed_monsters_drop_winged_scarab_chance_%" } }, - [7810]={ + [7991]={ [1]={ [1]={ limit={ @@ -171784,7 +176643,7 @@ return { [1]="map_prefix_mod_effect_+%_final" } }, - [7811]={ + [7992]={ [1]={ [1]={ limit={ @@ -171813,7 +176672,7 @@ return { [1]="map_rampage_time_+%" } }, - [7812]={ + [7993]={ [1]={ [1]={ limit={ @@ -171829,7 +176688,7 @@ return { [1]="map_random_unique_monster_is_possessed" } }, - [7813]={ + [7994]={ [1]={ [1]={ limit={ @@ -171845,7 +176704,7 @@ return { [1]="map_random_zana_mod" } }, - [7814]={ + [7995]={ [1]={ [1]={ limit={ @@ -171861,7 +176720,7 @@ return { [1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%" } }, - [7815]={ + [7996]={ [1]={ [1]={ limit={ @@ -171886,7 +176745,7 @@ return { [1]="map_rare_breach_monsters_drop_additional_shards" } }, - [7816]={ + [7997]={ [1]={ [1]={ limit={ @@ -171956,7 +176815,7 @@ return { [1]="map_rare_monster_additional_modifier_chance_%_with_rollover" } }, - [7817]={ + [7998]={ [1]={ [1]={ limit={ @@ -171981,7 +176840,7 @@ return { [1]="map_rare_monster_num_additional_modifiers" } }, - [7818]={ + [7999]={ [1]={ [1]={ limit={ @@ -172014,7 +176873,7 @@ return { [1]="map_rare_monsters_are_hindered" } }, - [7819]={ + [8000]={ [1]={ [1]={ limit={ @@ -172039,7 +176898,7 @@ return { [1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%" } }, - [7820]={ + [8001]={ [1]={ [1]={ limit={ @@ -172064,7 +176923,7 @@ return { [1]="map_rare_monsters_drop_x_additional_rare_items" } }, - [7821]={ + [8002]={ [1]={ [1]={ limit={ @@ -172080,7 +176939,7 @@ return { [1]="map_rare_monsters_have_inner_treasure" } }, - [7822]={ + [8003]={ [1]={ [1]={ limit={ @@ -172132,7 +176991,7 @@ return { [1]="map_reliquary_set" } }, - [7823]={ + [8004]={ [1]={ [1]={ limit={ @@ -172148,7 +177007,7 @@ return { [1]="map_remove_irradiation_instead_of_completing" } }, - [7824]={ + [8005]={ [1]={ [1]={ limit={ @@ -172173,7 +177032,7 @@ return { [1]="map_ritual_additional_reward_rerolls" } }, - [7825]={ + [8006]={ [1]={ [1]={ limit={ @@ -172202,7 +177061,7 @@ return { [1]="map_ritual_defer_reward_tribute_cost_+%" } }, - [7826]={ + [8007]={ [1]={ [1]={ limit={ @@ -172218,7 +177077,7 @@ return { [1]="map_ritual_deferred_rewards_are_offered_again_+%_sooner" } }, - [7827]={ + [8008]={ [1]={ [1]={ limit={ @@ -172247,7 +177106,7 @@ return { [1]="map_ritual_magic_monsters_+%" } }, - [7828]={ + [8009]={ [1]={ [1]={ limit={ @@ -172272,7 +177131,7 @@ return { [1]="map_ritual_number_of_free_rerolls" } }, - [7829]={ + [8010]={ [1]={ [1]={ limit={ @@ -172301,7 +177160,7 @@ return { [1]="map_ritual_offered_and_defer_rewards_tribute_cost_+%" } }, - [7830]={ + [8011]={ [1]={ [1]={ [1]={ @@ -172321,7 +177180,7 @@ return { [1]="map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute" } }, - [7831]={ + [8012]={ [1]={ [1]={ limit={ @@ -172350,7 +177209,7 @@ return { [1]="map_ritual_omen_chance_+%" } }, - [7832]={ + [8013]={ [1]={ [1]={ limit={ @@ -172379,7 +177238,7 @@ return { [1]="map_ritual_rare_monsters_+%" } }, - [7833]={ + [8014]={ [1]={ [1]={ limit={ @@ -172408,7 +177267,7 @@ return { [1]="map_ritual_rewards_reroll_cost_+%_final" } }, - [7834]={ + [8015]={ [1]={ [1]={ limit={ @@ -172437,7 +177296,7 @@ return { [1]="map_ritual_tribute_+%" } }, - [7835]={ + [8016]={ [1]={ [1]={ limit={ @@ -172466,7 +177325,7 @@ return { [1]="map_ritual_uber_rune_type_weighting_+%" } }, - [7836]={ + [8017]={ [1]={ [1]={ limit={ @@ -172482,7 +177341,7 @@ return { [1]="map_ritual_unlimited_reward_rerolls" } }, - [7837]={ + [8018]={ [1]={ [1]={ limit={ @@ -172498,7 +177357,7 @@ return { [1]="map_rogue_exile_attack_cast_and_movement_speed_+%" } }, - [7838]={ + [8019]={ [1]={ [1]={ limit={ @@ -172527,7 +177386,7 @@ return { [1]="map_rogue_exile_chance_+%" } }, - [7839]={ + [8020]={ [1]={ [1]={ limit={ @@ -172543,7 +177402,7 @@ return { [1]="map_rogue_exile_chance_%" } }, - [7840]={ + [8021]={ [1]={ [1]={ limit={ @@ -172559,7 +177418,7 @@ return { [1]="map_rogue_exile_drop_skill_gem_with_quality" } }, - [7841]={ + [8022]={ [1]={ [1]={ limit={ @@ -172575,7 +177434,7 @@ return { [1]="map_rogue_exiles_are_doubled" } }, - [7842]={ + [8023]={ [1]={ [1]={ limit={ @@ -172604,7 +177463,7 @@ return { [1]="map_rogue_exiles_damage_+%" } }, - [7843]={ + [8024]={ [1]={ [1]={ limit={ @@ -172620,7 +177479,7 @@ return { [1]="map_rogue_exiles_drop_additional_currency_items_with_quality" } }, - [7844]={ + [8025]={ [1]={ [1]={ limit={ @@ -172645,7 +177504,7 @@ return { [1]="map_rogue_exiles_drop_x_additional_jewels" } }, - [7845]={ + [8026]={ [1]={ [1]={ limit={ @@ -172661,7 +177520,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_corrupted" } }, - [7846]={ + [8027]={ [1]={ [1]={ limit={ @@ -172677,7 +177536,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_duplicated" } }, - [7847]={ + [8028]={ [1]={ [1]={ limit={ @@ -172693,7 +177552,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fully_linked" } }, - [7848]={ + [8029]={ [1]={ [1]={ limit={ @@ -172722,7 +177581,7 @@ return { [1]="map_rogue_exiles_maximum_life_+%" } }, - [7849]={ + [8030]={ [1]={ [1]={ limit={ @@ -172738,7 +177597,7 @@ return { [1]="map_shaper_rare_chance_+%" } }, - [7850]={ + [8031]={ [1]={ [1]={ limit={ @@ -172767,7 +177626,7 @@ return { [1]="map_shrine_chance_+%" } }, - [7851]={ + [8032]={ [1]={ [1]={ limit={ @@ -172783,7 +177642,7 @@ return { [1]="map_shrine_chance_%" } }, - [7852]={ + [8033]={ [1]={ [1]={ limit={ @@ -172812,7 +177671,7 @@ return { [1]="map_shrine_granted_player_buff_duration_+%" } }, - [7853]={ + [8034]={ [1]={ [1]={ limit={ @@ -172841,7 +177700,7 @@ return { [1]="map_shrine_granted_player_buff_effect_+%" } }, - [7854]={ + [8035]={ [1]={ [1]={ limit={ @@ -172857,7 +177716,7 @@ return { [1]="map_shrine_monster_life_+%_final" } }, - [7855]={ + [8036]={ [1]={ [1]={ limit={ @@ -172882,7 +177741,7 @@ return { [1]="map_shrines_drop_x_currency_items_on_activation" } }, - [7856]={ + [8037]={ [1]={ [1]={ limit={ @@ -172898,7 +177757,7 @@ return { [1]="map_shrines_grant_a_random_additional_effect" } }, - [7857]={ + [8038]={ [1]={ [1]={ limit={ @@ -172914,23 +177773,7 @@ return { [1]="map_simulacrum_reward_level_+" } }, - [7858]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Areas can contain Abysses" - } - }, - stats={ - [1]="map_spawn_abysses" - } - }, - [7859]={ + [8039]={ [1]={ [1]={ limit={ @@ -172946,7 +177789,7 @@ return { [1]="map_spawn_affliction_mirror" } }, - [7860]={ + [8040]={ [1]={ [1]={ limit={ @@ -172962,7 +177805,7 @@ return { [1]="map_spawn_bestiary_encounters" } }, - [7861]={ + [8041]={ [1]={ [1]={ limit={ @@ -172987,7 +177830,7 @@ return { [1]="map_spawn_beyond_boss_when_beyond_boss_slain_%" } }, - [7862]={ + [8042]={ [1]={ [1]={ limit={ @@ -173012,7 +177855,7 @@ return { [1]="map_spawn_cadiro_%_chance" } }, - [7863]={ + [8043]={ [1]={ [1]={ limit={ @@ -173037,7 +177880,7 @@ return { [1]="map_spawn_extra_perandus_chests" } }, - [7864]={ + [8044]={ [1]={ [1]={ limit={ @@ -173053,7 +177896,7 @@ return { [1]="map_spawn_heist_smugglers_cache" } }, - [7865]={ + [8045]={ [1]={ [1]={ limit={ @@ -173069,7 +177912,7 @@ return { [1]="map_spawn_incursion_encounters" } }, - [7866]={ + [8046]={ [1]={ [1]={ limit={ @@ -173094,7 +177937,7 @@ return { [1]="map_spawn_x_additional_heist_smugglers_caches" } }, - [7867]={ + [8047]={ [1]={ [1]={ limit={ @@ -173119,7 +177962,7 @@ return { [1]="map_spawn_x_random_map_bosses" } }, - [7868]={ + [8048]={ [1]={ [1]={ limit={ @@ -173148,7 +177991,7 @@ return { [1]="map_storm_area_of_effect_+%" } }, - [7869]={ + [8049]={ [1]={ [1]={ limit={ @@ -173164,7 +178007,7 @@ return { [1]="map_strongbox_chance_%" } }, - [7870]={ + [8050]={ [1]={ [1]={ limit={ @@ -173193,7 +178036,7 @@ return { [1]="map_strongbox_chance_+%" } }, - [7871]={ + [8051]={ [1]={ [1]={ limit={ @@ -173209,7 +178052,7 @@ return { [1]="map_strongbox_items_dropped_are_mirrored" } }, - [7872]={ + [8052]={ [1]={ [1]={ limit={ @@ -173225,7 +178068,7 @@ return { [1]="map_strongbox_monsters_attack_speed_+%" } }, - [7873]={ + [8053]={ [1]={ [1]={ limit={ @@ -173254,7 +178097,7 @@ return { [1]="map_strongbox_monsters_item_quantity_+%" } }, - [7874]={ + [8054]={ [1]={ [1]={ limit={ @@ -173270,7 +178113,7 @@ return { [1]="map_strongboxes_are_corrupted" } }, - [7875]={ + [8055]={ [1]={ [1]={ limit={ @@ -173286,7 +178129,7 @@ return { [1]="map_strongboxes_at_least_rare" } }, - [7876]={ + [8056]={ [1]={ [1]={ limit={ @@ -173311,7 +178154,7 @@ return { [1]="map_strongboxes_drop_x_additional_rare_items" } }, - [7877]={ + [8057]={ [1]={ [1]={ limit={ @@ -173345,7 +178188,7 @@ return { [1]="map_strongboxes_minimum_rarity" } }, - [7878]={ + [8058]={ [1]={ [1]={ limit={ @@ -173374,7 +178217,7 @@ return { [1]="map_suffix_mod_effect_+%_final" } }, - [7879]={ + [8059]={ [1]={ [1]={ limit={ @@ -173390,7 +178233,7 @@ return { [1]="map_synthesis_league" } }, - [7880]={ + [8060]={ [1]={ [1]={ limit={ @@ -173406,7 +178249,7 @@ return { [1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters" } }, - [7881]={ + [8061]={ [1]={ [1]={ limit={ @@ -173422,7 +178265,7 @@ return { [1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters" } }, - [7882]={ + [8062]={ [1]={ [1]={ limit={ @@ -173438,7 +178281,7 @@ return { [1]="map_synthesis_spawn_additional_fungal_chest_clusters" } }, - [7883]={ + [8063]={ [1]={ [1]={ limit={ @@ -173463,7 +178306,7 @@ return { [1]="map_synthesis_spawn_additional_magic_ambush_chest" } }, - [7884]={ + [8064]={ [1]={ [1]={ limit={ @@ -173488,7 +178331,7 @@ return { [1]="map_synthesis_spawn_additional_normal_ambush_chest" } }, - [7885]={ + [8065]={ [1]={ [1]={ limit={ @@ -173504,7 +178347,7 @@ return { [1]="map_synthesis_spawn_additional_parasite_barrel_clusters" } }, - [7886]={ + [8066]={ [1]={ [1]={ limit={ @@ -173529,7 +178372,7 @@ return { [1]="map_synthesis_spawn_additional_rare_ambush_chest" } }, - [7887]={ + [8067]={ [1]={ [1]={ limit={ @@ -173545,7 +178388,7 @@ return { [1]="map_synthesis_spawn_additional_volatile_barrel_clusters" } }, - [7888]={ + [8068]={ [1]={ [1]={ limit={ @@ -173561,7 +178404,7 @@ return { [1]="map_synthesis_spawn_additional_wealthy_barrel_clusters" } }, - [7889]={ + [8069]={ [1]={ [1]={ limit={ @@ -173586,7 +178429,7 @@ return { [1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%" } }, - [7890]={ + [8070]={ [1]={ [1]={ limit={ @@ -173611,7 +178454,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%" } }, - [7891]={ + [8071]={ [1]={ [1]={ limit={ @@ -173636,7 +178479,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%" } }, - [7892]={ + [8072]={ [1]={ [1]={ limit={ @@ -173661,7 +178504,7 @@ return { [1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%" } }, - [7893]={ + [8073]={ [1]={ [1]={ limit={ @@ -173686,7 +178529,7 @@ return { [1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%" } }, - [7894]={ + [8074]={ [1]={ [1]={ limit={ @@ -173711,7 +178554,7 @@ return { [1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%" } }, - [7895]={ + [8075]={ [1]={ [1]={ limit={ @@ -173736,7 +178579,7 @@ return { [1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%" } }, - [7896]={ + [8076]={ [1]={ [1]={ limit={ @@ -173761,7 +178604,7 @@ return { [1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%" } }, - [7897]={ + [8077]={ [1]={ [1]={ limit={ @@ -173786,7 +178629,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency" } }, - [7898]={ + [8078]={ [1]={ [1]={ limit={ @@ -173811,7 +178654,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency_shard" } }, - [7899]={ + [8079]={ [1]={ [1]={ limit={ @@ -173836,7 +178679,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_quality_currency" } }, - [7900]={ + [8080]={ [1]={ [1]={ limit={ @@ -173852,7 +178695,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_quantity_+%" } }, - [7901]={ + [8081]={ [1]={ [1]={ limit={ @@ -173868,7 +178711,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_rarity_+%" } }, - [7902]={ + [8082]={ [1]={ [1]={ limit={ @@ -173884,7 +178727,7 @@ return { [1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%" } }, - [7903]={ + [8083]={ [1]={ [1]={ limit={ @@ -173909,7 +178752,7 @@ return { [1]="map_synthesised_magic_monster_items_drop_corrupted_%" } }, - [7904]={ + [8084]={ [1]={ [1]={ limit={ @@ -173925,7 +178768,7 @@ return { [1]="map_synthesised_magic_monster_map_drop_chance_+%" } }, - [7905]={ + [8085]={ [1]={ [1]={ limit={ @@ -173941,7 +178784,7 @@ return { [1]="map_synthesised_magic_monster_slain_experience_+%" } }, - [7906]={ + [8086]={ [1]={ [1]={ limit={ @@ -173957,7 +178800,7 @@ return { [1]="map_synthesised_magic_monster_unique_item_drop_chance_+%" } }, - [7907]={ + [8087]={ [1]={ [1]={ limit={ @@ -173982,7 +178825,7 @@ return { [1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%" } }, - [7908]={ + [8088]={ [1]={ [1]={ limit={ @@ -174007,7 +178850,7 @@ return { [1]="map_synthesised_monster_additional_currency_item_drop_chance_%" } }, - [7909]={ + [8089]={ [1]={ [1]={ limit={ @@ -174032,7 +178875,7 @@ return { [1]="map_synthesised_monster_additional_currency_shard_drop_chance_%" } }, - [7910]={ + [8090]={ [1]={ [1]={ limit={ @@ -174057,7 +178900,7 @@ return { [1]="map_synthesised_monster_additional_divination_card_drop_chance_%" } }, - [7911]={ + [8091]={ [1]={ [1]={ limit={ @@ -174082,7 +178925,7 @@ return { [1]="map_synthesised_monster_additional_elder_item_drop_chance_%" } }, - [7912]={ + [8092]={ [1]={ [1]={ limit={ @@ -174107,7 +178950,7 @@ return { [1]="map_synthesised_monster_additional_fossil_drop_chance_%" } }, - [7913]={ + [8093]={ [1]={ [1]={ limit={ @@ -174132,7 +178975,7 @@ return { [1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%" } }, - [7914]={ + [8094]={ [1]={ [1]={ limit={ @@ -174157,7 +179000,7 @@ return { [1]="map_synthesised_monster_additional_shaper_item_drop_chance_%" } }, - [7915]={ + [8095]={ [1]={ [1]={ limit={ @@ -174173,7 +179016,7 @@ return { [1]="map_synthesised_monster_dropped_item_quantity_+%" } }, - [7916]={ + [8096]={ [1]={ [1]={ limit={ @@ -174189,7 +179032,7 @@ return { [1]="map_synthesised_monster_dropped_item_rarity_+%" } }, - [7917]={ + [8097]={ [1]={ [1]={ limit={ @@ -174205,7 +179048,7 @@ return { [1]="map_synthesised_monster_fractured_item_drop_chance_+%" } }, - [7918]={ + [8098]={ [1]={ [1]={ limit={ @@ -174230,7 +179073,7 @@ return { [1]="map_synthesised_monster_items_drop_corrupted_%" } }, - [7919]={ + [8099]={ [1]={ [1]={ limit={ @@ -174246,7 +179089,7 @@ return { [1]="map_synthesised_monster_map_drop_chance_+%" } }, - [7920]={ + [8100]={ [1]={ [1]={ limit={ @@ -174262,7 +179105,7 @@ return { [1]="map_synthesised_monster_pack_size_+%" } }, - [7921]={ + [8101]={ [1]={ [1]={ limit={ @@ -174278,7 +179121,7 @@ return { [1]="map_synthesised_monster_slain_experience_+%" } }, - [7922]={ + [8102]={ [1]={ [1]={ limit={ @@ -174294,7 +179137,7 @@ return { [1]="map_synthesised_monster_unique_item_drop_chance_+%" } }, - [7923]={ + [8103]={ [1]={ [1]={ limit={ @@ -174319,7 +179162,7 @@ return { [1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%" } }, - [7924]={ + [8104]={ [1]={ [1]={ limit={ @@ -174344,7 +179187,7 @@ return { [1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%" } }, - [7925]={ + [8105]={ [1]={ [1]={ limit={ @@ -174369,7 +179212,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%" } }, - [7926]={ + [8106]={ [1]={ [1]={ limit={ @@ -174394,7 +179237,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%" } }, - [7927]={ + [8107]={ [1]={ [1]={ limit={ @@ -174419,7 +179262,7 @@ return { [1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%" } }, - [7928]={ + [8108]={ [1]={ [1]={ limit={ @@ -174444,7 +179287,7 @@ return { [1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%" } }, - [7929]={ + [8109]={ [1]={ [1]={ limit={ @@ -174469,7 +179312,7 @@ return { [1]="map_synthesised_rare_monster_additional_essence_drop_chance_%" } }, - [7930]={ + [8110]={ [1]={ [1]={ limit={ @@ -174494,7 +179337,7 @@ return { [1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%" } }, - [7931]={ + [8111]={ [1]={ [1]={ limit={ @@ -174519,7 +179362,7 @@ return { [1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%" } }, - [7932]={ + [8112]={ [1]={ [1]={ limit={ @@ -174544,7 +179387,7 @@ return { [1]="map_synthesised_rare_monster_additional_map_drop_chance_%" } }, - [7933]={ + [8113]={ [1]={ [1]={ limit={ @@ -174569,7 +179412,7 @@ return { [1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%" } }, - [7934]={ + [8114]={ [1]={ [1]={ limit={ @@ -174594,7 +179437,7 @@ return { [1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%" } }, - [7935]={ + [8115]={ [1]={ [1]={ limit={ @@ -174619,7 +179462,7 @@ return { [1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%" } }, - [7936]={ + [8116]={ [1]={ [1]={ limit={ @@ -174644,7 +179487,7 @@ return { [1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%" } }, - [7937]={ + [8117]={ [1]={ [1]={ limit={ @@ -174669,7 +179512,7 @@ return { [1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%" } }, - [7938]={ + [8118]={ [1]={ [1]={ limit={ @@ -174694,7 +179537,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_breach_splinter" } }, - [7939]={ + [8119]={ [1]={ [1]={ limit={ @@ -174719,7 +179562,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency" } }, - [7940]={ + [8120]={ [1]={ [1]={ limit={ @@ -174744,7 +179587,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency_shard" } }, - [7941]={ + [8121]={ [1]={ [1]={ limit={ @@ -174769,7 +179612,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_quality_currency" } }, - [7942]={ + [8122]={ [1]={ [1]={ limit={ @@ -174785,7 +179628,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_quantity_+%" } }, - [7943]={ + [8123]={ [1]={ [1]={ limit={ @@ -174801,7 +179644,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_rarity_+%" } }, - [7944]={ + [8124]={ [1]={ [1]={ limit={ @@ -174817,7 +179660,7 @@ return { [1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%" } }, - [7945]={ + [8125]={ [1]={ [1]={ limit={ @@ -174842,7 +179685,7 @@ return { [1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%" } }, - [7946]={ + [8126]={ [1]={ [1]={ limit={ @@ -174867,7 +179710,7 @@ return { [1]="map_synthesised_rare_monster_items_drop_corrupted_%" } }, - [7947]={ + [8127]={ [1]={ [1]={ limit={ @@ -174883,7 +179726,7 @@ return { [1]="map_synthesised_rare_monster_map_drop_chance_+%" } }, - [7948]={ + [8128]={ [1]={ [1]={ limit={ @@ -174908,7 +179751,7 @@ return { [1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%" } }, - [7949]={ + [8129]={ [1]={ [1]={ limit={ @@ -174924,7 +179767,7 @@ return { [1]="map_synthesised_rare_monster_slain_experience_+%" } }, - [7950]={ + [8130]={ [1]={ [1]={ limit={ @@ -174940,7 +179783,7 @@ return { [1]="map_synthesised_rare_monster_unique_item_drop_chance_+%" } }, - [7951]={ + [8131]={ [1]={ [1]={ limit={ @@ -174956,7 +179799,7 @@ return { [1]="map_talismans_dropped_as_rare" } }, - [7952]={ + [8132]={ [1]={ [1]={ limit={ @@ -174981,7 +179824,7 @@ return { [1]="map_talismans_higher_tier" } }, - [7953]={ + [8133]={ [1]={ [1]={ limit={ @@ -175010,7 +179853,7 @@ return { [1]="map_tempest_area_of_effect_+%_visible" } }, - [7954]={ + [8134]={ [1]={ [1]={ limit={ @@ -175035,7 +179878,7 @@ return { [1]="map_tempest_corruption_weight" } }, - [7955]={ + [8135]={ [1]={ [1]={ limit={ @@ -175064,7 +179907,7 @@ return { [1]="map_tempest_frequency_+%" } }, - [7956]={ + [8136]={ [1]={ [1]={ limit={ @@ -175089,7 +179932,7 @@ return { [1]="map_tempest_radiant_weight" } }, - [7957]={ + [8137]={ [1]={ [1]={ limit={ @@ -175105,7 +179948,7 @@ return { [1]="map_tormented_spirit_chance_%" } }, - [7958]={ + [8138]={ [1]={ [1]={ limit={ @@ -175134,7 +179977,7 @@ return { [1]="map_tormented_spirit_chance_+%" } }, - [7959]={ + [8139]={ [1]={ [1]={ limit={ @@ -175159,7 +180002,7 @@ return { [1]="map_tormented_spirits_drop_x_additional_rare_items" } }, - [7960]={ + [8140]={ [1]={ [1]={ limit={ @@ -175188,7 +180031,7 @@ return { [1]="map_tormented_spirits_duration_+%" } }, - [7961]={ + [8141]={ [1]={ [1]={ limit={ @@ -175217,7 +180060,7 @@ return { [1]="map_tormented_spirits_movement_speed_+%" } }, - [7962]={ + [8142]={ [1]={ [1]={ limit={ @@ -175242,7 +180085,23 @@ return { [1]="map_tower_augment_quantity_+%" } }, - [7963]={ + [8143]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Players and their Minions deal no damage for 3 out of every 10 seconds" + } + }, + stats={ + [1]="map_uber_map_player_damage_cycle" + } + }, + [8144]={ [1]={ [1]={ limit={ @@ -175258,7 +180117,7 @@ return { [1]="map_unique_boss_drops_divination_cards" } }, - [7964]={ + [8145]={ [1]={ [1]={ limit={ @@ -175283,7 +180142,7 @@ return { [1]="map_unique_boss_num_additional_modifiers" } }, - [7965]={ + [8146]={ [1]={ [1]={ limit={ @@ -175299,7 +180158,7 @@ return { [1]="map_unique_item_drop_chance_+%" } }, - [7966]={ + [8147]={ [1]={ [1]={ limit={ @@ -175324,7 +180183,7 @@ return { [1]="map_unique_monster_num_additional_modifiers" } }, - [7967]={ + [8148]={ [1]={ [1]={ limit={ @@ -175340,7 +180199,7 @@ return { [1]="map_unique_monsters_drop_corrupted_items" } }, - [7968]={ + [8149]={ [1]={ [1]={ limit={ @@ -175356,7 +180215,7 @@ return { [1]="map_upgrade_pack_to_magic_%_chance" } }, - [7969]={ + [8150]={ [1]={ [1]={ limit={ @@ -175372,7 +180231,7 @@ return { [1]="map_upgrade_pack_to_rare_%_chance" } }, - [7970]={ + [8151]={ [1]={ [1]={ limit={ @@ -175388,7 +180247,7 @@ return { [1]="map_upgrade_synthesised_pack_to_magic_%_chance" } }, - [7971]={ + [8152]={ [1]={ [1]={ limit={ @@ -175404,7 +180263,7 @@ return { [1]="map_upgrade_synthesised_pack_to_rare_%_chance" } }, - [7972]={ + [8153]={ [1]={ [1]={ limit={ @@ -175429,7 +180288,7 @@ return { [1]="map_vaal_monster_items_drop_corrupted_%" } }, - [7973]={ + [8154]={ [1]={ [1]={ limit={ @@ -175445,7 +180304,7 @@ return { [1]="map_vaal_mortal_strongbox_chance_per_fragment_%" } }, - [7974]={ + [8155]={ [1]={ [1]={ limit={ @@ -175461,7 +180320,7 @@ return { [1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%" } }, - [7975]={ + [8156]={ [1]={ [1]={ limit={ @@ -175486,7 +180345,7 @@ return { [1]="map_vaal_temple_spawn_additional_vaal_vessels" } }, - [7976]={ + [8157]={ [1]={ [1]={ limit={ @@ -175511,7 +180370,7 @@ return { [1]="map_vaal_vessel_drop_X_divination_cards" } }, - [7977]={ + [8158]={ [1]={ [1]={ limit={ @@ -175536,7 +180395,7 @@ return { [1]="map_vaal_vessel_drop_X_fossils" } }, - [7978]={ + [8159]={ [1]={ [1]={ limit={ @@ -175561,7 +180420,7 @@ return { [1]="map_vaal_vessel_drop_X_levelled_vaal_gems" } }, - [7979]={ + [8160]={ [1]={ [1]={ limit={ @@ -175586,7 +180445,7 @@ return { [1]="map_vaal_vessel_drop_X_mortal_fragments" } }, - [7980]={ + [8161]={ [1]={ [1]={ limit={ @@ -175611,7 +180470,7 @@ return { [1]="map_vaal_vessel_drop_X_prophecies" } }, - [7981]={ + [8162]={ [1]={ [1]={ limit={ @@ -175636,7 +180495,7 @@ return { [1]="map_vaal_vessel_drop_X_rare_temple_items" } }, - [7982]={ + [8163]={ [1]={ [1]={ limit={ @@ -175661,7 +180520,7 @@ return { [1]="map_vaal_vessel_drop_X_sacrifice_fragments" } }, - [7983]={ + [8164]={ [1]={ [1]={ limit={ @@ -175686,7 +180545,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_orbs" } }, - [7984]={ + [8165]={ [1]={ [1]={ limit={ @@ -175711,7 +180570,7 @@ return { [1]="map_vaal_vessel_drop_x_double_implicit_corrupted_uniques" } }, - [7985]={ + [8166]={ [1]={ [1]={ limit={ @@ -175736,7 +180595,7 @@ return { [1]="map_vaal_vessel_drop_x_single_implicit_corrupted_uniques" } }, - [7986]={ + [8167]={ [1]={ [1]={ limit={ @@ -175765,7 +180624,7 @@ return { [1]="map_vaal_vessel_item_drop_quantity_+%" } }, - [7987]={ + [8168]={ [1]={ [1]={ limit={ @@ -175794,7 +180653,7 @@ return { [1]="map_vaal_vessel_item_drop_rarity_+%" } }, - [7988]={ + [8169]={ [1]={ [1]={ limit={ @@ -175819,7 +180678,7 @@ return { [1]="map_warbands_packs_have_additional_elites" } }, - [7989]={ + [8170]={ [1]={ [1]={ limit={ @@ -175844,7 +180703,7 @@ return { [1]="map_warbands_packs_have_additional_grunts" } }, - [7990]={ + [8171]={ [1]={ [1]={ limit={ @@ -175869,7 +180728,7 @@ return { [1]="map_warbands_packs_have_additional_supports" } }, - [7991]={ + [8172]={ [1]={ [1]={ limit={ @@ -175885,7 +180744,7 @@ return { [1]="map_watchstone_additional_packs_of_elder_monsters" } }, - [7992]={ + [8173]={ [1]={ [1]={ limit={ @@ -175901,7 +180760,7 @@ return { [1]="map_watchstone_additional_packs_of_shaper_monsters" } }, - [7993]={ + [8174]={ [1]={ [1]={ limit={ @@ -175917,7 +180776,7 @@ return { [1]="map_watchstone_monsters_damage_+%_final" } }, - [7994]={ + [8175]={ [1]={ [1]={ limit={ @@ -175933,7 +180792,7 @@ return { [1]="map_watchstone_monsters_life_+%_final" } }, - [7995]={ + [8176]={ [1]={ [1]={ limit={ @@ -175958,7 +180817,7 @@ return { [1]="maps_with_bosses_additional_essence_+" } }, - [7996]={ + [8177]={ [1]={ [1]={ limit={ @@ -175983,7 +180842,7 @@ return { [1]="maps_with_bosses_additional_shrine_+" } }, - [7997]={ + [8178]={ [1]={ [1]={ limit={ @@ -176008,7 +180867,7 @@ return { [1]="maps_with_bosses_additional_spirit_+" } }, - [7998]={ + [8179]={ [1]={ [1]={ limit={ @@ -176033,7 +180892,7 @@ return { [1]="maps_with_bosses_additional_strongbox_+" } }, - [7999]={ + [8180]={ [1]={ [1]={ limit={ @@ -176062,7 +180921,7 @@ return { [1]="marauder_hidden_ascendancy_damage_+%_final" } }, - [8000]={ + [8181]={ [1]={ [1]={ limit={ @@ -176091,7 +180950,7 @@ return { [1]="marauder_hidden_ascendancy_damage_taken_+%_final" } }, - [8001]={ + [8182]={ [1]={ [1]={ limit={ @@ -176120,7 +180979,7 @@ return { [1]="mark_skill_duration_+%" } }, - [8002]={ + [8183]={ [1]={ [1]={ limit={ @@ -176153,7 +181012,7 @@ return { [1]="mark_skill_mana_cost_+%" } }, - [8003]={ + [8184]={ [1]={ [1]={ limit={ @@ -176169,7 +181028,7 @@ return { [1]="marked_enemies_cannot_deal_critical_strikes" } }, - [8004]={ + [8185]={ [1]={ [1]={ limit={ @@ -176185,7 +181044,7 @@ return { [1]="marked_enemies_cannot_regenerate_life" } }, - [8005]={ + [8186]={ [1]={ [1]={ limit={ @@ -176214,7 +181073,7 @@ return { [1]="marked_enemy_accuracy_rating_+%" } }, - [8006]={ + [8187]={ [1]={ [1]={ limit={ @@ -176243,7 +181102,7 @@ return { [1]="marked_enemy_damage_taken_+%" } }, - [8007]={ + [8188]={ [1]={ [1]={ limit={ @@ -176259,7 +181118,7 @@ return { [1]="marks_you_inflict_remain_after_death" } }, - [8008]={ + [8189]={ [1]={ [1]={ limit={ @@ -176288,36 +181147,7 @@ return { [1]="master_of_elements_evasion_rating_+%_final" } }, - [8009]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more chance to Evade Melee Attacks" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less chance to Evade Melee Attacks" - } - }, - stats={ - [1]="mastery_chance_to_evade_melee_attacks_+%_final" - } - }, - [8010]={ + [8190]={ [1]={ [1]={ limit={ @@ -176333,7 +181163,7 @@ return { [1]="maven_fight_layout_override" } }, - [8011]={ + [8191]={ [1]={ [1]={ limit={ @@ -176349,7 +181179,7 @@ return { [1]="max_chance_to_block_attacks_if_not_blocked_recently" } }, - [8012]={ + [8192]={ [1]={ [1]={ [1]={ @@ -176369,7 +181199,7 @@ return { [1]="max_fortification_+1_per_5" } }, - [8013]={ + [8193]={ [1]={ [1]={ [1]={ @@ -176389,7 +181219,7 @@ return { [1]="max_fortification_while_focused_+1_per_5" } }, - [8014]={ + [8194]={ [1]={ [1]={ [1]={ @@ -176409,7 +181239,7 @@ return { [1]="max_fortification_while_stationary_+1_per_5" } }, - [8015]={ + [8195]={ [1]={ [1]={ limit={ @@ -176425,7 +181255,7 @@ return { [1]="max_life_%_as_mana" } }, - [8016]={ + [8196]={ [1]={ [1]={ limit={ @@ -176441,7 +181271,7 @@ return { [1]="max_life_%_as_spirit" } }, - [8017]={ + [8197]={ [1]={ [1]={ limit={ @@ -176457,7 +181287,7 @@ return { [1]="max_mana_increases_apply_to_effect_of_arcane_surge_on_self" } }, - [8018]={ + [8198]={ [1]={ [1]={ limit={ @@ -176473,7 +181303,7 @@ return { [1]="max_steel_ammo" } }, - [8019]={ + [8199]={ [1]={ [1]={ limit={ @@ -176489,7 +181319,7 @@ return { [1]="maximum_added_lightning_damage_per_10_int" } }, - [8020]={ + [8200]={ [1]={ [1]={ limit={ @@ -176505,7 +181335,7 @@ return { [1]="maximum_blitz_charges" } }, - [8021]={ + [8201]={ [1]={ [1]={ limit={ @@ -176521,7 +181351,7 @@ return { [1]="maximum_block_modifiers_apply_to_maximum_resistances_instead" } }, - [8022]={ + [8202]={ [1]={ [1]={ limit={ @@ -176537,7 +181367,7 @@ return { [1]="maximum_caltrops_allowed" } }, - [8023]={ + [8203]={ [1]={ [1]={ limit={ @@ -176553,7 +181383,7 @@ return { [1]="maximum_challenger_charges" } }, - [8024]={ + [8204]={ [1]={ [1]={ limit={ @@ -176569,7 +181399,7 @@ return { [1]="maximum_chance_to_evade_is_50%" } }, - [8025]={ + [8205]={ [1]={ [1]={ limit={ @@ -176578,14 +181408,14 @@ return { [2]="#" } }, - text="+{0} to maximum Chaos Infusions" + text="{0:+d}% to maximum Cold Resistance while affected by Herald of Ice" } }, stats={ - [1]="maximum_chaos_infusion_stacks" + [1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [8026]={ + [8206]={ [1]={ [1]={ limit={ @@ -176594,14 +181424,14 @@ return { [2]="#" } }, - text="{0:+d}% to maximum Cold Resistance while affected by Herald of Ice" + text="+{0} to maximum Cold Infusions" } }, stats={ - [1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice" + [1]="maximum_cold_infusion_stacks" } }, - [8027]={ + [8207]={ [1]={ [1]={ limit={ @@ -176610,14 +181440,14 @@ return { [2]="#" } }, - text="+{0} to maximum Cold Infusions" + text="{0:+d}% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed" } }, stats={ - [1]="maximum_cold_infusion_stacks" + [1]="maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed" } }, - [8028]={ + [8208]={ [1]={ [1]={ limit={ @@ -176642,7 +181472,7 @@ return { [1]="maximum_cold_resistance_+1_per_X_corresponding_support" } }, - [8029]={ + [8209]={ [1]={ [1]={ limit={ @@ -176658,7 +181488,7 @@ return { [1]="maximum_critical_strike_chance_is_50%" } }, - [8030]={ + [8210]={ [1]={ [1]={ limit={ @@ -176687,7 +181517,23 @@ return { [1]="maximum_darkness_+%" } }, - [8031]={ + [8211]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{:+d} to Maximum Endurance Charges if you have at least 100 Tribute" + } + }, + stats={ + [1]="maximum_endurance_charges_+_if_you_have_at_least_100_tribute" + } + }, + [8212]={ [1]={ [1]={ limit={ @@ -176703,7 +181549,36 @@ return { [1]="maximum_endurance_charges_+_while_affected_by_determination" } }, - [8032]={ + [8213]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Energy Shield per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Energy Shield per 10 Tribute" + } + }, + stats={ + [1]="maximum_energy_shield_+%_per_10_tribute" + } + }, + [8214]={ [1]={ [1]={ limit={ @@ -176712,14 +181587,14 @@ return { [2]="#" } }, - text="+1 to Maximum Energy Shield per {0} Evasion Rating on Equipped Body Armour" + text="+1 to Maximum Energy Shield per {0} Item Evasion Rating on Equipped Body Armour" } }, stats={ [1]="maximum_energy_shield_+1_per_x_body_armour_evasion_rating" } }, - [8033]={ + [8215]={ [1]={ [1]={ limit={ @@ -176735,7 +181610,7 @@ return { [1]="maximum_energy_shield_from_body_armour_+%" } }, - [8034]={ + [8216]={ [1]={ [1]={ limit={ @@ -176751,7 +181626,7 @@ return { [1]="maximum_fanaticism_charges" } }, - [8035]={ + [8217]={ [1]={ [1]={ limit={ @@ -176767,7 +181642,7 @@ return { [1]="maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance" } }, - [8036]={ + [8218]={ [1]={ [1]={ limit={ @@ -176783,7 +181658,7 @@ return { [1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [8037]={ + [8219]={ [1]={ [1]={ limit={ @@ -176799,7 +181674,23 @@ return { [1]="maximum_fire_infusion_stacks" } }, - [8038]={ + [8220]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed" + } + }, + stats={ + [1]="maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed" + } + }, + [8221]={ [1]={ [1]={ limit={ @@ -176824,7 +181715,23 @@ return { [1]="maximum_fire_resistance_+1_per_X_corresponding_support" } }, - [8039]={ + [8222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{:+d} to Maximum Frenzy Charges if you have at least 100 Tribute" + } + }, + stats={ + [1]="maximum_frenzy_charges_+_if_you_have_at_least_100_tribute" + } + }, + [8223]={ [1]={ [1]={ limit={ @@ -176840,7 +181747,7 @@ return { [1]="maximum_frenzy_charges_+_while_affected_by_grace" } }, - [8040]={ + [8224]={ [1]={ [1]={ limit={ @@ -176856,7 +181763,7 @@ return { [1]="maximum_frenzy_power_endurance_charges" } }, - [8041]={ + [8225]={ [1]={ [1]={ limit={ @@ -176865,14 +181772,14 @@ return { [2]="#" } }, - text="+{0} to maximum Infusion on your weapons" + text="{0:+d} to maximum number of Elemental Infusions" } }, stats={ [1]="additional_maximum_infusion_stacks" } }, - [8042]={ + [8226]={ [1]={ [1]={ limit={ @@ -176888,7 +181795,68 @@ return { [1]="maximum_intensify_stacks" } }, - [8043]={ + [8227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Maximum Life Converted to Energy Shield per 20 Tribute" + } + }, + stats={ + [1]="maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute" + } + }, + [8228]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Maximum Life if you have at least 10 Red Support Gems Socketed" + } + }, + stats={ + [1]="maximum_life_+%_if_10_red_supports_socketed" + } + }, + [8229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Life if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Life if you have at least 100 Tribute" + } + }, + stats={ + [1]="maximum_life_+%_if_you_have_at_least_100_tribute" + } + }, + [8230]={ [1]={ [1]={ limit={ @@ -176904,7 +181872,7 @@ return { [1]="maximum_life_per_10_dexterity" } }, - [8044]={ + [8231]={ [1]={ [1]={ limit={ @@ -176920,7 +181888,7 @@ return { [1]="maximum_life_per_10_intelligence" } }, - [8045]={ + [8232]={ [1]={ [1]={ limit={ @@ -176936,7 +181904,7 @@ return { [1]="maximum_life_per_2%_increased_item_found_rarity" } }, - [8046]={ + [8233]={ [1]={ [1]={ limit={ @@ -176952,7 +181920,7 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield" } }, - [8047]={ + [8234]={ [1]={ [1]={ limit={ @@ -176968,7 +181936,7 @@ return { [1]="maximum_life_%_to_gain_as_armour" } }, - [8048]={ + [8235]={ [1]={ [1]={ limit={ @@ -176984,7 +181952,7 @@ return { [1]="maximum_life_%_to_gain_as_maximum_energy_shield" } }, - [8049]={ + [8236]={ [1]={ [1]={ limit={ @@ -177013,7 +181981,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [8050]={ + [8237]={ [1]={ [1]={ limit={ @@ -177029,7 +181997,7 @@ return { [1]="maximum_life_+%_if_no_life_tags_on_body_armour" } }, - [8051]={ + [8238]={ [1]={ [1]={ limit={ @@ -177058,7 +182026,7 @@ return { [1]="maximum_life_+%_per_abyssal_jewel_affecting_you" } }, - [8052]={ + [8239]={ [1]={ [1]={ limit={ @@ -177074,7 +182042,7 @@ return { [1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [8053]={ + [8240]={ [1]={ [1]={ limit={ @@ -177090,7 +182058,23 @@ return { [1]="maximum_lightning_infusion_stacks" } }, - [8054]={ + [8241]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed" + } + }, + stats={ + [1]="maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed" + } + }, + [8242]={ [1]={ [1]={ limit={ @@ -177115,7 +182099,52 @@ return { [1]="maximum_lightning_resistance_+1_per_X_corresponding_support" } }, - [8055]={ + [8243]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed" + } + }, + stats={ + [1]="maximum_mana_+%_if_10_blue_supports_socketed" + } + }, + [8244]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Maximum Mana if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Maximum Mana if you have at least 100 Tribute" + } + }, + stats={ + [1]="maximum_mana_+%_if_you_have_at_least_100_tribute" + } + }, + [8245]={ [1]={ [1]={ limit={ @@ -177131,7 +182160,7 @@ return { [1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity" } }, - [8056]={ + [8246]={ [1]={ [1]={ limit={ @@ -177160,7 +182189,7 @@ return { [1]="maximum_mana_+%_per_abyssal_jewel_affecting_you" } }, - [8057]={ + [8247]={ [1]={ [1]={ limit={ @@ -177176,7 +182205,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [8058]={ + [8248]={ [1]={ [1]={ limit={ @@ -177205,7 +182234,7 @@ return { [1]="maximum_physical_attack_damage_on_crit_+%_final" } }, - [8059]={ + [8249]={ [1]={ [1]={ limit={ @@ -177221,7 +182250,7 @@ return { [1]="maximum_physical_damage_reduction_is_50%" } }, - [8060]={ + [8250]={ [1]={ [1]={ limit={ @@ -177237,7 +182266,23 @@ return { [1]="maximum_power_and_endurance_charges_+" } }, - [8061]={ + [8251]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{:+d} to Maximum Power Charges if you have at least 100 Tribute" + } + }, + stats={ + [1]="maximum_power_charges_+_if_you_have_at_least_100_tribute" + } + }, + [8252]={ [1]={ [1]={ limit={ @@ -177253,7 +182298,7 @@ return { [1]="maximum_power_charges_+_while_affected_by_discipline" } }, - [8062]={ + [8253]={ [1]={ [1]={ limit={ @@ -177269,7 +182314,23 @@ return { [1]="maximum_rage_+_while_wielding_axe" } }, - [8063]={ + [8254]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Maximum Rage per 50 Tribute" + } + }, + stats={ + [1]="maximum_rage_per_50_tribute" + } + }, + [8255]={ [1]={ [1]={ limit={ @@ -177285,7 +182346,7 @@ return { [1]="maximum_rage_per_equipped_one_handed_sword" } }, - [8064]={ + [8256]={ [1]={ [1]={ limit={ @@ -177301,7 +182362,7 @@ return { [1]="maximum_random_movement_velocity_+%_when_hit" } }, - [8065]={ + [8257]={ [1]={ [1]={ limit={ @@ -177317,7 +182378,7 @@ return { [1]="maximum_virulence_stacks" } }, - [8066]={ + [8258]={ [1]={ [1]={ limit={ @@ -177333,7 +182394,7 @@ return { [1]="maximum_volatility_allowed" } }, - [8067]={ + [8259]={ [1]={ [1]={ limit={ @@ -177358,7 +182419,23 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [8068]={ + [8260]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Melee Attack Skills have {0:+d} to maximum number of Summoned Totems" + } + }, + stats={ + [1]="melee_attack_skills_additional_totems_allowed" + } + }, + [8261]={ [1]={ [1]={ limit={ @@ -177374,7 +182451,7 @@ return { [1]="melee_critical_strike_chance_+%_if_warcried_recently" } }, - [8069]={ + [8262]={ [1]={ [1]={ limit={ @@ -177390,7 +182467,7 @@ return { [1]="melee_critical_strike_multiplier_+%_if_warcried_recently" } }, - [8070]={ + [8263]={ [1]={ [1]={ limit={ @@ -177419,7 +182496,7 @@ return { [1]="melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently" } }, - [8071]={ + [8264]={ [1]={ [1]={ limit={ @@ -177448,7 +182525,7 @@ return { [1]="melee_damage_+%_vs_immobilised_enemies" } }, - [8072]={ + [8265]={ [1]={ [1]={ limit={ @@ -177477,7 +182554,7 @@ return { [1]="melee_damage_+%_with_spears_while_surrounded" } }, - [8073]={ + [8266]={ [1]={ [1]={ limit={ @@ -177506,7 +182583,7 @@ return { [1]="melee_damage_+%_at_close_range" } }, - [8074]={ + [8267]={ [1]={ [1]={ limit={ @@ -177535,7 +182612,7 @@ return { [1]="melee_damage_+%_during_flask_effect" } }, - [8075]={ + [8268]={ [1]={ [1]={ limit={ @@ -177551,7 +182628,7 @@ return { [1]="melee_damage_+%_per_second_of_warcry_affecting_you" } }, - [8076]={ + [8269]={ [1]={ [1]={ limit={ @@ -177580,7 +182657,7 @@ return { [1]="melee_damage_+%_vs_heavy_stunned_enemies" } }, - [8077]={ + [8270]={ [1]={ [1]={ limit={ @@ -177609,7 +182686,7 @@ return { [1]="melee_hit_damage_stun_multiplier_+%" } }, - [8078]={ + [8271]={ [1]={ [1]={ limit={ @@ -177638,7 +182715,7 @@ return { [1]="melee_hit_damage_stun_multiplier_+%_final_from_ot" } }, - [8079]={ + [8272]={ [1]={ [1]={ limit={ @@ -177654,7 +182731,7 @@ return { [1]="melee_movement_skill_chance_to_fortify_on_hit_%" } }, - [8080]={ + [8273]={ [1]={ [1]={ limit={ @@ -177670,7 +182747,7 @@ return { [1]="melee_physical_damage_+%_per_10_dexterity" } }, - [8081]={ + [8274]={ [1]={ [1]={ limit={ @@ -177699,7 +182776,7 @@ return { [1]="melee_physical_damage_+%_per_10_strength_while_fortified" } }, - [8082]={ + [8275]={ [1]={ [1]={ limit={ @@ -177715,7 +182792,7 @@ return { [1]="melee_range_+_while_at_least_5_enemies_nearby" } }, - [8083]={ + [8276]={ [1]={ [1]={ limit={ @@ -177731,7 +182808,7 @@ return { [1]="melee_range_+_while_wielding_shield" } }, - [8084]={ + [8277]={ [1]={ [1]={ limit={ @@ -177747,7 +182824,7 @@ return { [1]="melee_range_+_while_dual_wielding" } }, - [8085]={ + [8278]={ [1]={ [1]={ limit={ @@ -177763,7 +182840,7 @@ return { [1]="melee_range_+_with_axe" } }, - [8086]={ + [8279]={ [1]={ [1]={ limit={ @@ -177779,7 +182856,7 @@ return { [1]="melee_range_+_with_claw" } }, - [8087]={ + [8280]={ [1]={ [1]={ limit={ @@ -177795,7 +182872,7 @@ return { [1]="melee_range_+_with_dagger" } }, - [8088]={ + [8281]={ [1]={ [1]={ limit={ @@ -177811,7 +182888,7 @@ return { [1]="melee_range_+_with_flail" } }, - [8089]={ + [8282]={ [1]={ [1]={ limit={ @@ -177827,7 +182904,7 @@ return { [1]="melee_range_+_with_mace" } }, - [8090]={ + [8283]={ [1]={ [1]={ limit={ @@ -177843,7 +182920,7 @@ return { [1]="melee_range_+_with_one_handed" } }, - [8091]={ + [8284]={ [1]={ [1]={ limit={ @@ -177859,7 +182936,7 @@ return { [1]="melee_range_+_with_spear" } }, - [8092]={ + [8285]={ [1]={ [1]={ limit={ @@ -177875,7 +182952,7 @@ return { [1]="melee_range_+_with_staff" } }, - [8093]={ + [8286]={ [1]={ [1]={ limit={ @@ -177891,7 +182968,7 @@ return { [1]="melee_range_+_with_sword" } }, - [8094]={ + [8287]={ [1]={ [1]={ limit={ @@ -177907,7 +182984,7 @@ return { [1]="melee_range_+_with_two_handed" } }, - [8095]={ + [8288]={ [1]={ [1]={ limit={ @@ -177936,7 +183013,7 @@ return { [1]="melee_skills_area_of_effect_+%" } }, - [8096]={ + [8289]={ [1]={ [1]={ limit={ @@ -177952,7 +183029,7 @@ return { [1]="melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently" } }, - [8097]={ + [8290]={ [1]={ [1]={ limit={ @@ -177968,7 +183045,7 @@ return { [1]="melee_strike_skill_strike_previous_location" } }, - [8098]={ + [8291]={ [1]={ [1]={ limit={ @@ -177984,7 +183061,7 @@ return { [1]="melee_weapon_range_+_if_you_have_killed_recently" } }, - [8099]={ + [8292]={ [1]={ [1]={ limit={ @@ -178000,7 +183077,7 @@ return { [1]="melee_weapon_range_+_while_at_maximum_frenzy_charges" } }, - [8100]={ + [8293]={ [1]={ [1]={ limit={ @@ -178016,7 +183093,7 @@ return { [1]="melee_weapon_range_+_while_fortified" } }, - [8101]={ + [8294]={ [1]={ [1]={ limit={ @@ -178045,7 +183122,7 @@ return { [1]="mine_area_damage_+%_if_detonated_mine_recently" } }, - [8102]={ + [8295]={ [1]={ [1]={ limit={ @@ -178074,7 +183151,7 @@ return { [1]="mine_area_of_effect_+%" } }, - [8103]={ + [8296]={ [1]={ [1]={ limit={ @@ -178103,7 +183180,7 @@ return { [1]="mine_area_of_effect_+%_if_detonated_mine_recently" } }, - [8104]={ + [8297]={ [1]={ [1]={ limit={ @@ -178132,7 +183209,7 @@ return { [1]="mine_aura_effect_+%" } }, - [8105]={ + [8298]={ [1]={ [1]={ limit={ @@ -178161,7 +183238,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [8106]={ + [8299]={ [1]={ [1]={ limit={ @@ -178177,7 +183254,7 @@ return { [1]="mine_%_chance_to_detonate_twice" } }, - [8107]={ + [8300]={ [1]={ [1]={ [1]={ @@ -178210,7 +183287,7 @@ return { [1]="mines_hinder_nearby_enemies_for_x_ms_on_arming" } }, - [8108]={ + [8301]={ [1]={ [1]={ limit={ @@ -178226,7 +183303,7 @@ return { [1]="mines_invulnerable" } }, - [8109]={ + [8302]={ [1]={ [1]={ limit={ @@ -178247,7 +183324,7 @@ return { [2]="maximum_added_chaos_damage_if_have_crit_recently" } }, - [8110]={ + [8303]={ [1]={ [1]={ limit={ @@ -178268,7 +183345,7 @@ return { [2]="maximum_added_chaos_damage_per_curse_on_enemy" } }, - [8111]={ + [8304]={ [1]={ [1]={ limit={ @@ -178289,7 +183366,7 @@ return { [2]="maximum_added_chaos_damage_per_spiders_web_on_enemy" } }, - [8112]={ + [8305]={ [1]={ [1]={ limit={ @@ -178310,7 +183387,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength" } }, - [8113]={ + [8306]={ [1]={ [1]={ limit={ @@ -178331,7 +183408,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_per_50_strength" } }, - [8114]={ + [8307]={ [1]={ [1]={ limit={ @@ -178352,7 +183429,7 @@ return { [2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons" } }, - [8115]={ + [8308]={ [1]={ [1]={ limit={ @@ -178373,7 +183450,7 @@ return { [2]="maximum_added_cold_damage_if_have_crit_recently" } }, - [8116]={ + [8309]={ [1]={ [1]={ limit={ @@ -178394,7 +183471,7 @@ return { [2]="maximum_added_cold_damage_to_attacks_per_10_dexterity" } }, - [8117]={ + [8310]={ [1]={ [1]={ limit={ @@ -178415,7 +183492,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [8118]={ + [8311]={ [1]={ [1]={ limit={ @@ -178436,7 +183513,7 @@ return { [2]="maximum_added_cold_damage_while_affected_by_hatred" } }, - [8119]={ + [8312]={ [1]={ [1]={ limit={ @@ -178457,7 +183534,7 @@ return { [2]="maximum_added_cold_damage_while_you_have_avians_might" } }, - [8120]={ + [8313]={ [1]={ [1]={ limit={ @@ -178478,7 +183555,7 @@ return { [2]="maximum_added_fire_damage_if_have_crit_recently" } }, - [8121]={ + [8314]={ [1]={ [1]={ limit={ @@ -178499,7 +183576,7 @@ return { [2]="maximum_added_fire_damage_per_100_lowest_of_max_life_mana" } }, - [8122]={ + [8315]={ [1]={ [1]={ limit={ @@ -178520,7 +183597,7 @@ return { [2]="maximum_added_fire_damage_per_endurance_charge" } }, - [8123]={ + [8316]={ [1]={ [1]={ limit={ @@ -178541,7 +183618,7 @@ return { [2]="maximum_added_fire_damage_to_attacks_per_10_strength" } }, - [8124]={ + [8317]={ [1]={ [1]={ limit={ @@ -178562,7 +183639,7 @@ return { [2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies" } }, - [8125]={ + [8318]={ [1]={ [1]={ limit={ @@ -178583,7 +183660,7 @@ return { [2]="maximum_added_lightning_damage_if_have_crit_recently" } }, - [8126]={ + [8319]={ [1]={ [1]={ limit={ @@ -178604,7 +183681,7 @@ return { [2]="maximum_added_lightning_damage_per_power_charge" } }, - [8127]={ + [8320]={ [1]={ [1]={ limit={ @@ -178625,7 +183702,7 @@ return { [2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently" } }, - [8128]={ + [8321]={ [1]={ [1]={ limit={ @@ -178646,7 +183723,7 @@ return { [2]="maximum_added_lightning_damage_to_attacks_per_20_intelligence" } }, - [8129]={ + [8322]={ [1]={ [1]={ limit={ @@ -178667,7 +183744,7 @@ return { [2]="maximum_added_lightning_damage_to_spells_per_power_charge" } }, - [8130]={ + [8323]={ [1]={ [1]={ limit={ @@ -178688,7 +183765,7 @@ return { [2]="maximum_added_lightning_damage_while_you_have_avians_might" } }, - [8131]={ + [8324]={ [1]={ [1]={ limit={ @@ -178709,7 +183786,7 @@ return { [2]="maximum_added_physical_damage_if_have_crit_recently" } }, - [8132]={ + [8325]={ [1]={ [1]={ limit={ @@ -178730,7 +183807,7 @@ return { [2]="maximum_added_physical_damage_per_endurance_charge" } }, - [8133]={ + [8326]={ [1]={ [1]={ limit={ @@ -178751,7 +183828,7 @@ return { [2]="maximum_added_physical_damage_per_impaled_on_enemy" } }, - [8134]={ + [8327]={ [1]={ [1]={ limit={ @@ -178772,7 +183849,7 @@ return { [2]="maximum_added_physical_damage_vs_poisoned_enemies" } }, - [8135]={ + [8328]={ [1]={ [1]={ limit={ @@ -178793,7 +183870,7 @@ return { [2]="maximum_added_spell_cold_damage_while_no_life_is_reserved" } }, - [8136]={ + [8329]={ [1]={ [1]={ limit={ @@ -178814,7 +183891,7 @@ return { [2]="maximum_added_spell_fire_damage_while_no_life_is_reserved" } }, - [8137]={ + [8330]={ [1]={ [1]={ limit={ @@ -178835,7 +183912,7 @@ return { [2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved" } }, - [8138]={ + [8331]={ [1]={ [1]={ limit={ @@ -178851,7 +183928,7 @@ return { [1]="minimum_endurance_charges_at_devotion_threshold" } }, - [8139]={ + [8332]={ [1]={ [1]={ limit={ @@ -178867,7 +183944,7 @@ return { [1]="minimum_endurance_charges_while_on_low_life_+" } }, - [8140]={ + [8333]={ [1]={ [1]={ limit={ @@ -178883,7 +183960,7 @@ return { [1]="minimum_frenzy_charges_at_devotion_threshold" } }, - [8141]={ + [8334]={ [1]={ [1]={ limit={ @@ -178899,7 +183976,7 @@ return { [1]="minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary" } }, - [8142]={ + [8335]={ [1]={ [1]={ limit={ @@ -178915,7 +183992,7 @@ return { [1]="minimum_frenzy_power_endurance_charges" } }, - [8143]={ + [8336]={ [1]={ [1]={ limit={ @@ -178948,7 +184025,7 @@ return { [1]="minimum_physical_attack_damage_on_crit_+%_final" } }, - [8144]={ + [8337]={ [1]={ [1]={ limit={ @@ -178964,7 +184041,7 @@ return { [1]="minimum_power_charges_at_devotion_threshold" } }, - [8145]={ + [8338]={ [1]={ [1]={ limit={ @@ -178980,7 +184057,7 @@ return { [1]="minimum_power_charges_while_on_low_life_+" } }, - [8146]={ + [8339]={ [1]={ [1]={ limit={ @@ -178996,7 +184073,39 @@ return { [1]="minion_1%_accuracy_rating_+%_per_X_player_dexterity" } }, - [8147]={ + [8340]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions from this skill have 1% increased Area of Effect\nper {0} of your Dexterity" + } + }, + stats={ + [1]="minion_1%_area_of_effect_+%_per_X_player_dexterity" + } + }, + [8341]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions from this skill have 1% increased Attack Speed\nper {0} of your Dexterity" + } + }, + stats={ + [1]="minion_1%_attack_speed_+%_per_X_player_dexterity" + } + }, + [8342]={ [1]={ [1]={ limit={ @@ -179012,7 +184121,7 @@ return { [1]="minion_1%_damage_+%_per_X_player_strength" } }, - [8148]={ + [8343]={ [1]={ [1]={ limit={ @@ -179028,7 +184137,7 @@ return { [1]="minion_accuracy_rating" } }, - [8149]={ + [8344]={ [1]={ [1]={ limit={ @@ -179044,7 +184153,7 @@ return { [1]="minion_accuracy_rating_per_10_devotion" } }, - [8150]={ + [8345]={ [1]={ [1]={ limit={ @@ -179073,7 +184182,7 @@ return { [1]="minion_accuracy_rating_+%" } }, - [8151]={ + [8346]={ [1]={ [1]={ limit={ @@ -179102,7 +184211,7 @@ return { [1]="minion_actor_scale_+%" } }, - [8152]={ + [8347]={ [1]={ [1]={ [1]={ @@ -179122,7 +184231,7 @@ return { [1]="minion_additional_base_critical_strike_chance" } }, - [8153]={ + [8348]={ [1]={ [1]={ limit={ @@ -179151,7 +184260,23 @@ return { [1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently" } }, - [8154]={ + [8349]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions Break Armour equal to {0}% of Physical damage dealt" + } + }, + stats={ + [1]="minion_armour_break_physical_damage_%_dealt_as_armour_break" + } + }, + [8350]={ [1]={ [1]={ limit={ @@ -179167,7 +184292,36 @@ return { [1]="minion_attack_added_cold_damage_as_%_parent_maximum_life" } }, - [8155]={ + [8351]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% increased Attack and Cast Speed per 50 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced Attack and Cast Speed per 50 Tribute" + } + }, + stats={ + [1]="minion_attack_and_cast_speed_+%_per_50_tribute" + } + }, + [8352]={ [1]={ [1]={ limit={ @@ -179196,7 +184350,7 @@ return { [1]="minion_attack_and_cast_speed_+%" } }, - [8156]={ + [8353]={ [1]={ [1]={ limit={ @@ -179225,7 +184379,7 @@ return { [1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently" } }, - [8157]={ + [8354]={ [1]={ [1]={ limit={ @@ -179254,7 +184408,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_10_devotion" } }, - [8158]={ + [8355]={ [1]={ [1]={ limit={ @@ -179283,7 +184437,7 @@ return { [1]="minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [8159]={ + [8356]={ [1]={ [1]={ limit={ @@ -179299,7 +184453,7 @@ return { [1]="minion_attack_hits_knockback_chance_%" } }, - [8160]={ + [8357]={ [1]={ [1]={ limit={ @@ -179328,7 +184482,7 @@ return { [1]="minion_attack_speed_+%_per_50_dex" } }, - [8161]={ + [8358]={ [1]={ [1]={ limit={ @@ -179353,7 +184507,55 @@ return { [1]="minion_attacks_chance_to_blind_on_hit_%" } }, - [8162]={ + [8359]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions have {0:+d}% to Maximum Cold Resistances" + } + }, + stats={ + [1]="minion_base_maximum_cold_damage_resistance_%" + } + }, + [8360]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions have {0:+d}% to Maximum Fire Resistances" + } + }, + stats={ + [1]="minion_base_maximum_fire_damage_resistance_%" + } + }, + [8361]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions have {0:+d}% to Maximum Lightning Resistances" + } + }, + stats={ + [1]="minion_base_maximum_lightning_damage_resistance_%" + } + }, + [8362]={ [1]={ [1]={ limit={ @@ -179369,7 +184571,7 @@ return { [1]="minion_cannot_crit" } }, - [8163]={ + [8363]={ [1]={ [1]={ limit={ @@ -179385,7 +184587,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [8164]={ + [8364]={ [1]={ [1]={ limit={ @@ -179401,7 +184603,7 @@ return { [1]="minion_chance_to_deal_double_damage_while_on_full_life_%" } }, - [8165]={ + [8365]={ [1]={ [1]={ limit={ @@ -179417,32 +184619,39 @@ return { [1]="minion_chance_to_freeze_%" } }, - [8166]={ + [8366]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=99 + [2]="#" } }, - text="Minions have {0}% chance to Freeze, Shock and Ignite" - }, - [2]={ + text="Minions have {0}% chance to gain a Power Charge on Hit" + } + }, + stats={ + [1]="minion_chance_to_gain_power_charge_on_hit_%" + } + }, + [8367]={ + [1]={ + [1]={ limit={ [1]={ - [1]=100, + [1]=1, [2]="#" } }, - text="Minions always Freeze, Shock and Ignite" + text="Minions have a {0}% chance to Impale on Hit with Attacks" } }, stats={ - [1]="minion_chance_to_freeze_shock_ignite_%" + [1]="minion_chance_to_impale_on_attack_hit_%" } }, - [8167]={ + [8368]={ [1]={ [1]={ limit={ @@ -179451,14 +184660,14 @@ return { [2]="#" } }, - text="Minions have {0}% chance to gain a Power Charge on Hit" + text="Minions have {0}% chance to Shock" } }, stats={ - [1]="minion_chance_to_gain_power_charge_on_hit_%" + [1]="minion_chance_to_shock_%" } }, - [8168]={ + [8369]={ [1]={ [1]={ limit={ @@ -179467,14 +184676,27 @@ return { [2]="#" } }, - text="Minions have {0}% chance to Ignite" + text="Minions have {0}% increased Cooldown Recovery Rate for Command Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced Cooldown Recovery Rate for Command Skills" } }, stats={ - [1]="minion_chance_to_ignite_%" + [1]="minion_command_skill_cooldown_speed_+%" } }, - [8169]={ + [8370]={ [1]={ [1]={ limit={ @@ -179483,14 +184705,27 @@ return { [2]="#" } }, - text="Minions have a {0}% chance to Impale on Hit with Attacks" + text="Minions deal {0}% increased Damage with Command Skills for each different type of Persistent Minion in your Presence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions deal {0}% reduced Damage with Command Skills for each different type of Persistent Minion in your Presence" } }, stats={ - [1]="minion_chance_to_impale_on_attack_hit_%" + [1]="minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence" } }, - [8170]={ + [8371]={ [1]={ [1]={ limit={ @@ -179499,14 +184734,27 @@ return { [2]="#" } }, - text="Minions have {0}% chance to Shock" + text="Minions deal {0}% increased Damage with Command Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions deal {0}% reduced Damage with Command Skills" } }, stats={ - [1]="minion_chance_to_shock_%" + [1]="minion_commanded_skill_damage_+%" } }, - [8171]={ + [8372]={ [1]={ [1]={ limit={ @@ -179515,7 +184763,7 @@ return { [2]="#" } }, - text="Minions deal {0}% increased Damage with Command Skills" + text="Minions have {0}% increased Cooldown Recovery Rate per 10 Tribute" }, [2]={ [1]={ @@ -179528,14 +184776,14 @@ return { [2]=-1 } }, - text="Minions deal {0}% increased Damage with Command Skills" + text="Minions have {0}% reduced Cooldown Recovery Rate per 10 Tribute" } }, stats={ - [1]="minion_commanded_skill_damage_+%" + [1]="minion_cooldown_recovery_+%_per_10_tribute" } }, - [8172]={ + [8373]={ [1]={ [1]={ limit={ @@ -179564,7 +184812,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [8173]={ + [8374]={ [1]={ [1]={ limit={ @@ -179593,7 +184841,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [8174]={ + [8375]={ [1]={ [1]={ limit={ @@ -179622,7 +184870,7 @@ return { [1]="minion_critical_strike_chance_+%_per_maximum_power_charge" } }, - [8175]={ + [8376]={ [1]={ [1]={ limit={ @@ -179638,7 +184886,36 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [8176]={ + [8377]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions deal {0}% increased damage per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions deal {0}% reduced damage per 10 Tribute" + } + }, + stats={ + [1]="minion_damage_+%_per_10_tribute" + } + }, + [8378]={ [1]={ [1]={ limit={ @@ -179667,7 +184944,7 @@ return { [1]="minion_damage_+%_while_you_have_at_least_two_different_active_offerings" } }, - [8177]={ + [8379]={ [1]={ [1]={ limit={ @@ -179696,7 +184973,7 @@ return { [1]="minion_damage_against_ignited_enemies_+%" } }, - [8178]={ + [8380]={ [1]={ [1]={ limit={ @@ -179712,7 +184989,7 @@ return { [1]="minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30" } }, - [8179]={ + [8381]={ [1]={ [1]={ limit={ @@ -179741,7 +185018,7 @@ return { [1]="minion_damage_+%_if_enemy_hit_recently" } }, - [8180]={ + [8382]={ [1]={ [1]={ limit={ @@ -179770,7 +185047,7 @@ return { [1]="minion_damage_+%_vs_abyssal_monsters" } }, - [8181]={ + [8383]={ [1]={ [1]={ limit={ @@ -179799,7 +185076,7 @@ return { [1]="minion_damage_+%_while_affected_by_a_herald" } }, - [8182]={ + [8384]={ [1]={ [1]={ limit={ @@ -179815,7 +185092,7 @@ return { [1]="minion_damage_taken_%_recouped_as_their_life" } }, - [8183]={ + [8385]={ [1]={ [1]={ limit={ @@ -179844,7 +185121,7 @@ return { [1]="minion_damage_taken_+%" } }, - [8184]={ + [8386]={ [1]={ [1]={ limit={ @@ -179860,7 +185137,7 @@ return { [1]="minion_deal_no_non_cold_damage" } }, - [8185]={ + [8387]={ [1]={ [1]={ limit={ @@ -179885,7 +185162,7 @@ return { [1]="minion_demon_add_fury_charge_on_hit_%" } }, - [8186]={ + [8388]={ [1]={ [1]={ limit={ @@ -179901,7 +185178,7 @@ return { [1]="minion_demon_attack_speed_+%_per_fury_charge" } }, - [8187]={ + [8389]={ [1]={ [1]={ limit={ @@ -179917,7 +185194,7 @@ return { [1]="minion_demon_damage_+%_final_per_fury_charge" } }, - [8188]={ + [8390]={ [1]={ [1]={ limit={ @@ -179933,7 +185210,7 @@ return { [1]="minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range" } }, - [8189]={ + [8391]={ [1]={ [1]={ [1]={ @@ -179953,7 +185230,7 @@ return { [1]="minion_demon_life_loss_%_per_minute_per_fury_charge" } }, - [8190]={ + [8392]={ [1]={ [1]={ limit={ @@ -179969,7 +185246,7 @@ return { [1]="minion_demon_maximum_fury_charges" } }, - [8191]={ + [8393]={ [1]={ [1]={ limit={ @@ -179985,7 +185262,7 @@ return { [1]="minion_elemental_resistance_30%" } }, - [8192]={ + [8394]={ [1]={ [1]={ limit={ @@ -180014,7 +185291,7 @@ return { [1]="minion_evasion_rating_+%" } }, - [8193]={ + [8395]={ [1]={ [1]={ [1]={ @@ -180034,14 +185311,14 @@ return { [1]="minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%" } }, - [8194]={ + [8396]={ [1]={ }, stats={ [1]="minion_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [8195]={ + [8397]={ [1]={ [1]={ limit={ @@ -180057,7 +185334,7 @@ return { [1]="minion_fire_damage_resistance_%" } }, - [8196]={ + [8398]={ [1]={ [1]={ limit={ @@ -180073,7 +185350,7 @@ return { [1]="minion_global_always_hit" } }, - [8197]={ + [8399]={ [1]={ [1]={ limit={ @@ -180098,7 +185375,23 @@ return { [1]="minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%" } }, - [8198]={ + [8400]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions cause {0}% increased Stun Buildup" + } + }, + stats={ + [1]="minion_hit_damage_stun_multiplier_+%" + } + }, + [8401]={ [1]={ [1]={ limit={ @@ -180114,7 +185407,7 @@ return { [1]="minion_life_increased_by_overcapped_fire_resistance" } }, - [8199]={ + [8402]={ [1]={ [1]={ [1]={ @@ -180134,7 +185427,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [8200]={ + [8403]={ [1]={ [1]={ limit={ @@ -180150,7 +185443,7 @@ return { [1]="minion_life_regeneration_rate_per_second" } }, - [8201]={ + [8404]={ [1]={ [1]={ limit={ @@ -180175,7 +185468,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [8202]={ + [8405]={ [1]={ [1]={ limit={ @@ -180191,7 +185484,7 @@ return { [1]="minion_malediction_on_hit" } }, - [8203]={ + [8406]={ [1]={ [1]={ limit={ @@ -180207,7 +185500,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [8204]={ + [8407]={ [1]={ [1]={ limit={ @@ -180223,7 +185516,7 @@ return { [1]="minion_maximum_life_%_to_gain_as_maximum_energy_shield" } }, - [8205]={ + [8408]={ [1]={ [1]={ limit={ @@ -180252,7 +185545,7 @@ return { [1]="minion_melee_damage_+%" } }, - [8206]={ + [8409]={ [1]={ [1]={ limit={ @@ -180268,7 +185561,7 @@ return { [1]="minion_minimum_power_charges" } }, - [8207]={ + [8410]={ [1]={ [1]={ limit={ @@ -180297,7 +185590,7 @@ return { [1]="minion_movement_speed_+%_per_50_dex" } }, - [8208]={ + [8411]={ [1]={ [1]={ limit={ @@ -180326,7 +185619,7 @@ return { [1]="minion_movement_velocity_+%_for_each_herald_affecting_you" } }, - [8209]={ + [8412]={ [1]={ [1]={ limit={ @@ -180342,7 +185635,7 @@ return { [1]="minion_no_critical_strike_multiplier" } }, - [8210]={ + [8413]={ [1]={ [1]={ limit={ @@ -180367,7 +185660,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [8211]={ + [8414]={ [1]={ [1]={ limit={ @@ -180383,7 +185676,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_fire" } }, - [8212]={ + [8415]={ [1]={ [1]={ limit={ @@ -180399,7 +185692,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_lightning" } }, - [8213]={ + [8416]={ [1]={ [1]={ limit={ @@ -180415,7 +185708,7 @@ return { [1]="minion_physical_hit_and_dot_damage_%_taken_as_lightning" } }, - [8214]={ + [8417]={ [1]={ [1]={ limit={ @@ -180444,7 +185737,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [8215]={ + [8418]={ [1]={ [1]={ limit={ @@ -180473,7 +185766,7 @@ return { [1]="minion_raging_spirit_maximum_life_+%" } }, - [8216]={ + [8419]={ [1]={ [1]={ [1]={ @@ -180493,7 +185786,7 @@ return { [1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage" } }, - [8217]={ + [8420]={ [1]={ [1]={ limit={ @@ -180509,7 +185802,36 @@ return { [1]="minion_recover_%_maximum_life_on_minion_death" } }, - [8218]={ + [8421]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Minion Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Minion Skills" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_minion_skills" + } + }, + [8422]={ [1]={ [1]={ limit={ @@ -180542,7 +185864,7 @@ return { [1]="minion_reservation_+%" } }, - [8219]={ + [8423]={ [1]={ [1]={ limit={ @@ -180558,7 +185880,7 @@ return { [1]="minion_resistances_equal_yours" } }, - [8220]={ + [8424]={ [1]={ [1]={ limit={ @@ -180587,7 +185909,7 @@ return { [1]="minion_resummon_speed_+%_if_all_active_minions_are_companions" } }, - [8221]={ + [8425]={ [1]={ [1]={ limit={ @@ -180596,7 +185918,7 @@ return { [2]="#" } }, - text="Minions Revive {0}% faster" + text="Minions Revive {0}% faster if you have at least 100 Tribute" }, [2]={ [1]={ @@ -180609,14 +185931,14 @@ return { [2]=-1 } }, - text="Minions Revive {0}% slower" + text="Minions Revive {0}% slower if you have at least 100 Tribute" } }, stats={ - [1]="minion_resummon_speed_+%" + [1]="minion_resummon_speed_+%_if_you_have_at_least_100_tribute" } }, - [8222]={ + [8426]={ [1]={ [1]={ limit={ @@ -180625,31 +185947,27 @@ return { [2]="#" } }, - text="{0}% increased Mana Cost of Minion Skills" + text="Minions Revive {0}% faster" }, [2]={ [1]={ k="negate", v=1 }, - [2]={ - k="canonical_line", - v=true - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% reduced Mana Cost of Minion Skills" + text="Minions Revive {0}% slower" } }, stats={ - [1]="minion_skill_mana_cost_+%" + [1]="minion_resummon_speed_+%" } }, - [8223]={ + [8427]={ [1]={ [1]={ limit={ @@ -180658,30 +185976,47 @@ return { [2]="#" } }, - text="Minions from this skill convert {0}% of Physical Damage to Fire Damage" + text="{0}% increased Mana Cost of Minion Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost of Minion Skills" } }, stats={ - [1]="minion_skill_physical_damage_%_to_convert_to_fire" + [1]="minion_skill_mana_cost_+%" } }, - [8224]={ + [8428]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Minions have {0:+d}% chance to Suppress Spell Damage" + text="Minions from this skill convert {0}% of Physical Damage to Fire Damage" } }, stats={ - [1]="minion_spell_suppression_chance_%" + [1]="minion_skill_physical_damage_%_to_convert_to_fire" } }, - [8225]={ + [8429]={ [1]={ [1]={ limit={ @@ -180706,7 +186041,7 @@ return { [1]="minion_spells_chance_to_hinder_on_hit_%" } }, - [8226]={ + [8430]={ [1]={ [1]={ limit={ @@ -180735,7 +186070,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [8227]={ + [8431]={ [1]={ [1]={ limit={ @@ -180764,7 +186099,7 @@ return { [1]="minion_summoned_recently_attack_and_cast_speed_+%" } }, - [8228]={ + [8432]={ [1]={ [1]={ limit={ @@ -180780,7 +186115,7 @@ return { [1]="minion_summoned_recently_cannot_be_damaged" } }, - [8229]={ + [8433]={ [1]={ [1]={ limit={ @@ -180809,7 +186144,7 @@ return { [1]="minion_summoned_recently_movement_speed_+%" } }, - [8230]={ + [8434]={ [1]={ [1]={ limit={ @@ -180825,7 +186160,7 @@ return { [1]="minion_undead_minions_are_demons_instead" } }, - [8231]={ + [8435]={ [1]={ [1]={ limit={ @@ -180841,7 +186176,23 @@ return { [1]="minions_accuracy_is_equal_to_yours" } }, - [8232]={ + [8436]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Minions are Gigantic" + } + }, + stats={ + [1]="minions_are_gigantic" + } + }, + [8437]={ [1]={ [1]={ limit={ @@ -180857,7 +186208,7 @@ return { [1]="minions_attacks_overwhelm_%_physical_damage_reduction" } }, - [8233]={ + [8438]={ [1]={ [1]={ [1]={ @@ -180890,7 +186241,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [8234]={ + [8439]={ [1]={ [1]={ limit={ @@ -180906,7 +186257,7 @@ return { [1]="minions_cannot_taunt_enemies" } }, - [8235]={ + [8440]={ [1]={ [1]={ limit={ @@ -180931,7 +186282,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [8236]={ + [8441]={ [1]={ [1]={ limit={ @@ -180947,7 +186298,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [8237]={ + [8442]={ [1]={ [1]={ limit={ @@ -180963,7 +186314,7 @@ return { [1]="minions_gain_your_dexterity" } }, - [8238]={ + [8443]={ [1]={ [1]={ limit={ @@ -180979,7 +186330,7 @@ return { [1]="minions_gain_your_strength" } }, - [8239]={ + [8444]={ [1]={ [1]={ [1]={ @@ -180999,7 +186350,7 @@ return { [1]="minions_go_crazy_on_crit_ms" } }, - [8240]={ + [8445]={ [1]={ [1]={ limit={ @@ -181015,7 +186366,7 @@ return { [1]="minions_have_%_chance_to_inflict_wither_on_hit" } }, - [8241]={ + [8446]={ [1]={ [1]={ limit={ @@ -181031,7 +186382,7 @@ return { [1]="minions_have_+%_critical_strike_multiplier_per_wither_on_enemies" } }, - [8242]={ + [8447]={ [1]={ [1]={ limit={ @@ -181047,7 +186398,7 @@ return { [1]="minions_have_unholy_might" } }, - [8243]={ + [8448]={ [1]={ [1]={ limit={ @@ -181063,7 +186414,36 @@ return { [1]="minions_hits_can_only_kill_ignited_enemies" } }, - [8244]={ + [8449]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions lose {0}% Life per 10 Tribute you have when following Commands" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions lose {0}% Life per 10 Tribute you have when following Commands per 10 Tribute" + } + }, + stats={ + [1]="minions_lose_%_life_when_following_commands_per_10_tribute" + } + }, + [8450]={ [1]={ [1]={ limit={ @@ -181079,7 +186459,7 @@ return { [1]="minions_penetrate_elemental_resistances_%_vs_cursed_enemies" } }, - [8245]={ + [8451]={ [1]={ [1]={ limit={ @@ -181095,7 +186475,7 @@ return { [1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [8246]={ + [8452]={ [1]={ [1]={ limit={ @@ -181111,7 +186491,7 @@ return { [1]="minions_recover_%_maximum_life_when_you_focus" } }, - [8247]={ + [8453]={ [1]={ [1]={ limit={ @@ -181144,7 +186524,7 @@ return { [1]="minions_reflected_damage_taken_+%" } }, - [8248]={ + [8454]={ [1]={ [1]={ limit={ @@ -181160,7 +186540,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [8249]={ + [8455]={ [1]={ [1]={ limit={ @@ -181189,7 +186569,7 @@ return { [1]="mirage_archer_duration_+%" } }, - [8250]={ + [8456]={ [1]={ [1]={ limit={ @@ -181205,7 +186585,7 @@ return { [1]="missing_life_%_gained_as_life_before_hit" } }, - [8251]={ + [8457]={ [1]={ [1]={ [1]={ @@ -181225,7 +186605,7 @@ return { [1]="mod_granted_passive_hash" } }, - [8252]={ + [8458]={ [1]={ [1]={ [1]={ @@ -181245,7 +186625,7 @@ return { [1]="mod_granted_passive_hash_2" } }, - [8253]={ + [8459]={ [1]={ [1]={ [1]={ @@ -181265,7 +186645,7 @@ return { [1]="mod_granted_passive_hash_3" } }, - [8254]={ + [8460]={ [1]={ [1]={ [1]={ @@ -181285,7 +186665,7 @@ return { [1]="mod_granted_passive_hash_4" } }, - [8255]={ + [8461]={ [1]={ [1]={ [1]={ @@ -181305,7 +186685,7 @@ return { [1]="mod_granted_passive_hash_essence" } }, - [8256]={ + [8462]={ [1]={ [1]={ limit={ @@ -181321,7 +186701,7 @@ return { [1]="modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value" } }, - [8257]={ + [8463]={ [1]={ [1]={ limit={ @@ -181337,7 +186717,7 @@ return { [1]="modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance" } }, - [8258]={ + [8464]={ [1]={ [1]={ limit={ @@ -181353,7 +186733,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [8259]={ + [8465]={ [1]={ [1]={ limit={ @@ -181382,7 +186762,7 @@ return { [1]="molten_shell_duration_+%" } }, - [8260]={ + [8466]={ [1]={ [1]={ limit={ @@ -181398,7 +186778,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [8261]={ + [8467]={ [1]={ [1]={ limit={ @@ -181414,7 +186794,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [8262]={ + [8468]={ [1]={ [1]={ limit={ @@ -181439,7 +186819,7 @@ return { [1]="molten_strike_chain_count_+" } }, - [8263]={ + [8469]={ [1]={ [1]={ limit={ @@ -181464,7 +186844,7 @@ return { [1]="primordial_altar_burning_ground_on_death_%" } }, - [8264]={ + [8470]={ [1]={ [1]={ limit={ @@ -181489,7 +186869,7 @@ return { [1]="primordial_altar_chilled_ground_on_death_%" } }, - [8265]={ + [8471]={ [1]={ [1]={ limit={ @@ -181518,7 +186898,7 @@ return { [1]="mortar_barrage_mine_damage_+%" } }, - [8266]={ + [8472]={ [1]={ [1]={ limit={ @@ -181543,7 +186923,7 @@ return { [1]="mortar_barrage_mine_num_projectiles" } }, - [8267]={ + [8473]={ [1]={ [1]={ [1]={ @@ -181580,7 +186960,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_halved_+%" } }, - [8268]={ + [8474]={ [1]={ [1]={ limit={ @@ -181609,7 +186989,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_+%" } }, - [8269]={ + [8475]={ [1]={ [1]={ limit={ @@ -181638,7 +187018,7 @@ return { [1]="movement_attack_skills_attack_speed_+%" } }, - [8270]={ + [8476]={ [1]={ [1]={ limit={ @@ -181667,7 +187047,7 @@ return { [1]="movement_skills_cooldown_speed_+%" } }, - [8271]={ + [8477]={ [1]={ [1]={ limit={ @@ -181696,7 +187076,7 @@ return { [1]="movement_skills_cooldown_speed_+%_while_affected_by_haste" } }, - [8272]={ + [8478]={ [1]={ [1]={ limit={ @@ -181712,7 +187092,7 @@ return { [1]="movement_skills_deal_no_physical_damage" } }, - [8273]={ + [8479]={ [1]={ [1]={ limit={ @@ -181741,7 +187121,23 @@ return { [1]="movement_speed_+%_against_bloodlusting_enemies" } }, - [8274]={ + [8480]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Movement Speed if you have at least 10 Green Support Gems Socketed" + } + }, + stats={ + [1]="movement_speed_+%_if_10_green_supports_socketed" + } + }, + [8481]={ [1]={ [1]={ limit={ @@ -181770,7 +187166,7 @@ return { [1]="movement_speed_+%_if_below_100_dexterity" } }, - [8275]={ + [8482]={ [1]={ [1]={ limit={ @@ -181799,7 +187195,7 @@ return { [1]="movement_speed_+%_if_pinned_enemy_recently" } }, - [8276]={ + [8483]={ [1]={ [1]={ limit={ @@ -181828,7 +187224,7 @@ return { [1]="movement_speed_+%_if_placed_trap_or_mine_recently" } }, - [8277]={ + [8484]={ [1]={ [1]={ limit={ @@ -181844,7 +187240,7 @@ return { [1]="movement_speed_+%_per_nearby_corpse" } }, - [8278]={ + [8485]={ [1]={ [1]={ limit={ @@ -181873,7 +187269,32 @@ return { [1]="movement_speed_+%_while_affected_by_ailment" } }, - [8279]={ + [8486]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed while Surrounded" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed while Surrounded" + } + }, + stats={ + [1]="movement_speed_+%_while_surrounded" + } + }, + [8487]={ [1]={ [1]={ limit={ @@ -181902,7 +187323,7 @@ return { [1]="movement_speed_+%_while_you_have_two_linked_targets" } }, - [8280]={ + [8488]={ [1]={ [1]={ limit={ @@ -181918,7 +187339,7 @@ return { [1]="movement_speed_is_equal_to_highest_linked_party_member" } }, - [8281]={ + [8489]={ [1]={ [1]={ limit={ @@ -181934,7 +187355,7 @@ return { [1]="movement_speed_is_only_base_+1%_per_x_evasion_rating" } }, - [8282]={ + [8490]={ [1]={ [1]={ limit={ @@ -181943,7 +187364,7 @@ return { [2]="#" } }, - text="{0}% increased Movement Speed Penalty from using Skills while moving" + text="{0}% increased Movement Speed per 15 Spirit, up to a maximum of 40%\nOther Modifiers to Movement Speed do not apply" }, [2]={ [1]={ @@ -181956,14 +187377,14 @@ return { [2]=-1 } }, - text="{0}% reduced Movement Speed Penalty from using Skills while moving" + text="{0}% reduced Movement Speed per 15 Spirit, up to a maximum of 40%\nOther Modifiers to Movement Speed do not apply" } }, stats={ - [1]="movement_speed_penalty_+%_while_performing_action" + [1]="abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%" } }, - [8283]={ + [8491]={ [1]={ [1]={ limit={ @@ -181972,7 +187393,7 @@ return { [2]="#" } }, - text="{0}% increased Movement Speed if you've cast a Mark Spell Recently" + text="{0}% increased Movement Speed Penalty from using Skills while moving" }, [2]={ [1]={ @@ -181985,14 +187406,14 @@ return { [2]=-1 } }, - text="{0}% reduced Movement Speed if you've cast a Mark Spell Recently" + text="{0}% reduced Movement Speed Penalty from using Skills while moving" } }, stats={ - [1]="movement_speed_+%_if_cast_a_mark_spell_recently" + [1]="movement_speed_penalty_+%_while_performing_action" } }, - [8284]={ + [8492]={ [1]={ [1]={ limit={ @@ -182021,7 +187442,7 @@ return { [1]="movement_speed_+%_if_crit_recently" } }, - [8285]={ + [8493]={ [1]={ [1]={ limit={ @@ -182050,7 +187471,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_recently" } }, - [8286]={ + [8494]={ [1]={ [1]={ limit={ @@ -182079,7 +187500,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently" } }, - [8287]={ + [8495]={ [1]={ [1]={ limit={ @@ -182108,7 +187529,7 @@ return { [1]="movement_speed_+%_if_have_cast_dash_recently" } }, - [8288]={ + [8496]={ [1]={ [1]={ limit={ @@ -182137,7 +187558,7 @@ return { [1]="movement_speed_+%_if_have_not_taken_damage_recently" } }, - [8289]={ + [8497]={ [1]={ [1]={ limit={ @@ -182166,7 +187587,36 @@ return { [1]="movement_speed_+%_if_have_used_a_vaal_skill_recently" } }, - [8290]={ + [8498]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed if you've used a Mark Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed if you've used a Mark Recently" + } + }, + stats={ + [1]="movement_speed_+%_if_used_a_mark_recently" + } + }, + [8499]={ [1]={ [1]={ limit={ @@ -182195,7 +187645,7 @@ return { [1]="movement_speed_+%_per_chest_opened_recently" } }, - [8291]={ + [8500]={ [1]={ [1]={ limit={ @@ -182224,7 +187674,7 @@ return { [1]="movement_speed_+%_per_endurance_charge" } }, - [8292]={ + [8501]={ [1]={ [1]={ limit={ @@ -182240,7 +187690,7 @@ return { [1]="movement_speed_+%_per_nearby_enemy" } }, - [8293]={ + [8502]={ [1]={ [1]={ limit={ @@ -182269,7 +187719,7 @@ return { [1]="movement_speed_+%_per_poison_up_to_50%" } }, - [8294]={ + [8503]={ [1]={ [1]={ limit={ @@ -182298,7 +187748,7 @@ return { [1]="movement_speed_+%_per_power_charge" } }, - [8295]={ + [8504]={ [1]={ [1]={ limit={ @@ -182327,7 +187777,7 @@ return { [1]="movement_speed_+%_while_affected_by_grace" } }, - [8296]={ + [8505]={ [1]={ [1]={ limit={ @@ -182356,7 +187806,7 @@ return { [1]="movement_speed_+%_while_bleeding" } }, - [8297]={ + [8506]={ [1]={ [1]={ limit={ @@ -182385,7 +187835,7 @@ return { [1]="movement_speed_+%_while_dual_wielding" } }, - [8298]={ + [8507]={ [1]={ [1]={ limit={ @@ -182414,7 +187864,7 @@ return { [1]="movement_speed_+%_while_holding_shield" } }, - [8299]={ + [8508]={ [1]={ [1]={ limit={ @@ -182443,7 +187893,7 @@ return { [1]="movement_speed_+%_while_not_using_flask" } }, - [8300]={ + [8509]={ [1]={ [1]={ limit={ @@ -182459,7 +187909,7 @@ return { [1]="movement_speed_+%_while_off_hand_is_empty" } }, - [8301]={ + [8510]={ [1]={ [1]={ limit={ @@ -182488,7 +187938,7 @@ return { [1]="movement_speed_+%_while_on_burning_chilled_shocked_ground" } }, - [8302]={ + [8511]={ [1]={ [1]={ limit={ @@ -182517,7 +187967,7 @@ return { [1]="movement_speed_+%_while_on_burning_ground" } }, - [8303]={ + [8512]={ [1]={ [1]={ limit={ @@ -182546,7 +187996,7 @@ return { [1]="movement_speed_+%_while_poisoned" } }, - [8304]={ + [8513]={ [1]={ [1]={ limit={ @@ -182575,7 +188025,7 @@ return { [1]="movement_speed_+%_while_using_charm" } }, - [8305]={ + [8514]={ [1]={ [1]={ limit={ @@ -182604,7 +188054,7 @@ return { [1]="movement_speed_+%_while_you_have_cats_stealth" } }, - [8306]={ + [8515]={ [1]={ [1]={ limit={ @@ -182633,7 +188083,7 @@ return { [1]="movement_speed_+%_while_you_have_energy_shield" } }, - [8307]={ + [8516]={ [1]={ [1]={ limit={ @@ -182662,7 +188112,7 @@ return { [1]="movement_speed_+%_while_you_have_storm_barrier_support" } }, - [8308]={ + [8517]={ [1]={ [1]={ limit={ @@ -182691,7 +188141,7 @@ return { [1]="movement_velocity_+%_per_poison_stack" } }, - [8309]={ + [8518]={ [1]={ [1]={ limit={ @@ -182720,7 +188170,7 @@ return { [1]="movement_velocity_+%_with_magic_abyss_jewel_socketed" } }, - [8310]={ + [8519]={ [1]={ [1]={ limit={ @@ -182749,7 +188199,7 @@ return { [1]="movement_velocity_+%_per_totem" } }, - [8311]={ + [8520]={ [1]={ [1]={ limit={ @@ -182778,7 +188228,7 @@ return { [1]="movement_velocity_+%_while_at_maximum_power_charges" } }, - [8312]={ + [8521]={ [1]={ [1]={ limit={ @@ -182807,7 +188257,7 @@ return { [1]="movement_velocity_+%_while_chilled" } }, - [8313]={ + [8522]={ [1]={ [1]={ limit={ @@ -182823,7 +188273,7 @@ return { [1]="nearby_allies_have_onslaught" } }, - [8314]={ + [8523]={ [1]={ [1]={ limit={ @@ -182848,7 +188298,7 @@ return { [1]="nearby_enemies_all_exposure_%_while_phasing" } }, - [8315]={ + [8524]={ [1]={ [1]={ limit={ @@ -182864,7 +188314,7 @@ return { [1]="nearby_enemies_are_blinded_while_you_have_active_physical_aegis" } }, - [8316]={ + [8525]={ [1]={ [1]={ limit={ @@ -182880,7 +188330,7 @@ return { [1]="nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse" } }, - [8317]={ + [8526]={ [1]={ [1]={ limit={ @@ -182896,7 +188346,7 @@ return { [1]="nearby_enemies_are_crushed_while_you_have_X_rage" } }, - [8318]={ + [8527]={ [1]={ [1]={ limit={ @@ -182912,7 +188362,7 @@ return { [1]="nearby_enemies_are_intimidated_while_you_have_rage" } }, - [8319]={ + [8528]={ [1]={ [1]={ limit={ @@ -182928,7 +188378,7 @@ return { [1]="close_range_enemies_avoid_your_projectiles" } }, - [8320]={ + [8529]={ [1]={ [1]={ limit={ @@ -182944,7 +188394,7 @@ return { [1]="nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice" } }, - [8321]={ + [8530]={ [1]={ [1]={ limit={ @@ -182960,7 +188410,7 @@ return { [1]="nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash" } }, - [8322]={ + [8531]={ [1]={ [1]={ limit={ @@ -182976,7 +188426,7 @@ return { [1]="nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder" } }, - [8323]={ + [8532]={ [1]={ [1]={ limit={ @@ -182992,7 +188442,7 @@ return { [1]="nearby_party_members_max_endurance_charges_is_equal_to_yours" } }, - [8324]={ + [8533]={ [1]={ [1]={ limit={ @@ -183021,7 +188471,7 @@ return { [1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse" } }, - [8325]={ + [8534]={ [1]={ [1]={ limit={ @@ -183050,7 +188500,7 @@ return { [1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse" } }, - [8326]={ + [8535]={ [1]={ [1]={ limit={ @@ -183079,7 +188529,7 @@ return { [1]="necromancer_defensive_notable_minion_maximum_life_+%_final" } }, - [8327]={ + [8536]={ [1]={ [1]={ [1]={ @@ -183099,7 +188549,7 @@ return { [1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse" } }, - [8328]={ + [8537]={ [1]={ [1]={ [1]={ @@ -183119,7 +188569,7 @@ return { [1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse" } }, - [8329]={ + [8538]={ [1]={ [1]={ limit={ @@ -183135,7 +188585,7 @@ return { [1]="necrotic_footprints_from_item" } }, - [8330]={ + [8539]={ [1]={ [1]={ limit={ @@ -183151,7 +188601,23 @@ return { [1]="never_ignite_chill_freeze_shock" } }, - [8331]={ + [8540]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="On Heavy Stunning a Rare or Unique Enemy, your next Attack within {0} seconds will be Ancestrally Boosted" + } + }, + stats={ + [1]="next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy" + } + }, + [8541]={ [1]={ [1]={ limit={ @@ -183167,7 +188633,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [8332]={ + [8542]={ [1]={ [1]={ limit={ @@ -183183,7 +188649,7 @@ return { [1]="no_inherent_chance_to_block_while_dual_wielding" } }, - [8333]={ + [8543]={ [1]={ [1]={ limit={ @@ -183199,7 +188665,7 @@ return { [1]="no_inherent_mana_regeneration" } }, - [8334]={ + [8544]={ [1]={ [1]={ limit={ @@ -183215,7 +188681,7 @@ return { [1]="no_inherent_rage_loss" } }, - [8335]={ + [8545]={ [1]={ [1]={ limit={ @@ -183231,7 +188697,7 @@ return { [1]="no_mana_regeneration_if_not_crit_recently" } }, - [8336]={ + [8546]={ [1]={ [1]={ limit={ @@ -183247,7 +188713,7 @@ return { [1]="no_movement_penalty_while_shield_is_raised" } }, - [8337]={ + [8547]={ [1]={ [1]={ limit={ @@ -183263,7 +188729,7 @@ return { [1]="non_aura_hexes_gain_20%_effect_per_second" } }, - [8338]={ + [8548]={ [1]={ [1]={ limit={ @@ -183279,36 +188745,7 @@ return { [1]="non_channelling_attack_added_lightning_damage_%_maximum_mana" } }, - [8339]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Non-Channelling Spells consume a Power Charge if able to deal {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Non-Channelling Spells consume a Power Charge if able to deal {0}% less Damage" - } - }, - stats={ - [1]="non_channelling_spells_consume_power_charge_when_cast_to_deal_x%_more_damage" - } - }, - [8340]={ + [8549]={ [1]={ [1]={ limit={ @@ -183324,7 +188761,7 @@ return { [1]="non_channelling_spells_cost_x%_of_your_energy_shield" } }, - [8341]={ + [8550]={ [1]={ [1]={ limit={ @@ -183353,7 +188790,7 @@ return { [1]="non_channelling_spells_deal_x%_more_damage" } }, - [8342]={ + [8551]={ [1]={ [1]={ limit={ @@ -183378,7 +188815,7 @@ return { [1]="non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit" } }, - [8343]={ + [8552]={ [1]={ [1]={ limit={ @@ -183394,7 +188831,7 @@ return { [1]="non_critical_strikes_deal_no_damage" } }, - [8344]={ + [8553]={ [1]={ [1]={ limit={ @@ -183423,7 +188860,7 @@ return { [1]="non_curse_aura_effect_+%_per_10_devotion" } }, - [8345]={ + [8554]={ [1]={ [1]={ limit={ @@ -183439,7 +188876,23 @@ return { [1]="non_cursed_enemies_you_curse_are_blinded_for_4_seconds" } }, - [8346]={ + [8555]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Non-Cursed enemies you Curse have {0} Withered stacks inflicted on them" + } + }, + stats={ + [1]="non_cursed_enemies_you_curse_gain_x_withered_stacks" + } + }, + [8556]={ [1]={ [1]={ limit={ @@ -183468,7 +188921,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [8347]={ + [8557]={ [1]={ [1]={ limit={ @@ -183497,7 +188950,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self" } }, - [8348]={ + [8558]={ [1]={ [1]={ limit={ @@ -183526,7 +188979,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask" } }, - [8349]={ + [8559]={ [1]={ [1]={ limit={ @@ -183555,7 +189008,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_10_devotion" } }, - [8350]={ + [8560]={ [1]={ [1]={ limit={ @@ -183584,7 +189037,7 @@ return { [1]="non_damaging_ailment_effect_+%_with_critical_strikes" } }, - [8351]={ + [8561]={ [1]={ [1]={ limit={ @@ -183613,7 +189066,7 @@ return { [1]="non_damaging_ailments_as_though_damage_+%_final" } }, - [8352]={ + [8562]={ [1]={ [1]={ limit={ @@ -183629,7 +189082,7 @@ return { [1]="non_damaging_ailments_reflected_to_self" } }, - [8353]={ + [8563]={ [1]={ [1]={ limit={ @@ -183658,7 +189111,7 @@ return { [1]="non_piercing_projectiles_critical_strike_chance_+%" } }, - [8354]={ + [8564]={ [1]={ [1]={ limit={ @@ -183674,7 +189127,7 @@ return { [1]="non_projectile_chaining_lightning_skill_additional_chains" } }, - [8355]={ + [8565]={ [1]={ [1]={ limit={ @@ -183690,7 +189143,7 @@ return { [1]="non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost" } }, - [8356]={ + [8566]={ [1]={ [1]={ limit={ @@ -183706,7 +189159,71 @@ return { [1]="non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance" } }, - [8357]={ + [8567]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Chaos Damage while Unarmed" + } + }, + stats={ + [1]="non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed" + } + }, + [8568]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Cold Damage while Unarmed" + } + }, + stats={ + [1]="non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed" + } + }, + [8569]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Fire Damage while Unarmed" + } + }, + stats={ + [1]="non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed" + } + }, + [8570]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Lightning Damage while Unarmed" + } + }, + stats={ + [1]="non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed" + } + }, + [8571]={ [1]={ [1]={ limit={ @@ -183722,7 +189239,71 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion" } }, - [8358]={ + [8572]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Cold Damage while on Chilled Ground" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill" + } + }, + [8573]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Fire Damage for\nevery different Grenade fired in the past 8 seconds" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds" + } + }, + [8574]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Fire Damage while on Ignited Ground" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn" + } + }, + [8575]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Lightning Damage while on Shocked Ground" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock" + } + }, + [8576]={ [1]={ [1]={ limit={ @@ -183738,7 +189319,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning" } }, - [8359]={ + [8577]={ [1]={ [1]={ limit={ @@ -183754,7 +189335,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_attacks" } }, - [8360]={ + [8578]={ [1]={ [1]={ limit={ @@ -183770,7 +189351,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks" } }, - [8361]={ + [8579]={ [1]={ [1]={ limit={ @@ -183786,7 +189367,55 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks" } }, - [8362]={ + [8580]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Cold Damage while on Chilled Ground" + } + }, + stats={ + [1]="non_skill_base_damage_%_to_gain_as_cold_while_on_chilled_ground" + } + }, + [8581]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Fire Damage while on Ignited Ground" + } + }, + stats={ + [1]="non_skill_base_damage_%_to_gain_as_fire_while_on_burning_ground" + } + }, + [8582]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Lightning Damage while on Shocked Ground" + } + }, + stats={ + [1]="non_skill_base_damage_%_to_gain_as_lightning_while_on_shocked_ground" + } + }, + [8583]={ [1]={ [1]={ limit={ @@ -183802,7 +189431,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_cold" } }, - [8363]={ + [8584]={ [1]={ [1]={ limit={ @@ -183818,7 +189447,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_fire" } }, - [8364]={ + [8585]={ [1]={ [1]={ limit={ @@ -183827,14 +189456,14 @@ return { [2]="#" } }, - text="Gain {0}% of Elemental Damage Damage as Extra Lightning Damage" + text="Gain {0}% of Elemental Damage as Extra Lightning Damage" } }, stats={ [1]="non_skill_base_elemental_damage_%_to_gain_as_lightning" } }, - [8365]={ + [8586]={ [1]={ [1]={ limit={ @@ -183850,7 +189479,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_chaos" } }, - [8366]={ + [8587]={ [1]={ [1]={ limit={ @@ -183866,7 +189495,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_cold" } }, - [8367]={ + [8588]={ [1]={ [1]={ limit={ @@ -183882,7 +189511,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_fire" } }, - [8368]={ + [8589]={ [1]={ [1]={ limit={ @@ -183898,7 +189527,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_lightning" } }, - [8369]={ + [8590]={ [1]={ [1]={ limit={ @@ -183914,7 +189543,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_cold" } }, - [8370]={ + [8591]={ [1]={ [1]={ limit={ @@ -183930,7 +189559,71 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_lightning" } }, - [8371]={ + [8592]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Physical Damage as Extra Cold Damage against Dazed Enemies" + } + }, + stats={ + [1]="non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies" + } + }, + [8593]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Physical Damage as Extra Cold Damage against Shocked Enemies" + } + }, + stats={ + [1]="non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies" + } + }, + [8594]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Physical Damage as Extra Lightning Damage against Chilled Enemies" + } + }, + stats={ + [1]="non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies" + } + }, + [8595]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Physical Damage as Extra Lightning Damage against Dazed Enemies" + } + }, + stats={ + [1]="non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies" + } + }, + [8596]={ [1]={ [1]={ limit={ @@ -183946,7 +189639,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos_per_level" } }, - [8372]={ + [8597]={ [1]={ [1]={ limit={ @@ -183962,7 +189655,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks" } }, - [8373]={ + [8598]={ [1]={ [1]={ limit={ @@ -183978,7 +189671,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy" } }, - [8374]={ + [8599]={ [1]={ [1]={ limit={ @@ -183994,7 +189687,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies" } }, - [8375]={ + [8600]={ [1]={ [1]={ limit={ @@ -184010,7 +189703,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge" } }, - [8376]={ + [8601]={ [1]={ [1]={ limit={ @@ -184026,7 +189719,7 @@ return { [1]="non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge" } }, - [8377]={ + [8602]={ [1]={ [1]={ limit={ @@ -184042,7 +189735,7 @@ return { [1]="non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [8378]={ + [8603]={ [1]={ [1]={ limit={ @@ -184058,7 +189751,7 @@ return { [1]="non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge" } }, - [8379]={ + [8604]={ [1]={ [1]={ limit={ @@ -184074,7 +189767,7 @@ return { [1]="non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies" } }, - [8380]={ + [8605]={ [1]={ [1]={ limit={ @@ -184090,7 +189783,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped" } }, - [8381]={ + [8606]={ [1]={ [1]={ limit={ @@ -184106,7 +189799,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold" } }, - [8382]={ + [8607]={ [1]={ [1]={ limit={ @@ -184122,7 +189815,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred" } }, - [8383]={ + [8608]={ [1]={ [1]={ limit={ @@ -184138,7 +189831,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold" } }, - [8384]={ + [8609]={ [1]={ [1]={ limit={ @@ -184154,7 +189847,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger" } }, - [8385]={ + [8610]={ [1]={ [1]={ limit={ @@ -184170,7 +189863,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold" } }, - [8386]={ + [8611]={ [1]={ [1]={ limit={ @@ -184186,7 +189879,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath" } }, - [8387]={ + [8612]={ [1]={ [1]={ limit={ @@ -184202,7 +189895,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies" } }, - [8388]={ + [8613]={ [1]={ [1]={ limit={ @@ -184218,7 +189911,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge" } }, - [8389]={ + [8614]={ [1]={ [1]={ limit={ @@ -184234,7 +189927,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger" } }, - [8390]={ + [8615]={ [1]={ [1]={ limit={ @@ -184250,7 +189943,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently" } }, - [8391]={ + [8616]={ [1]={ [1]={ limit={ @@ -184266,7 +189959,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_per_rage" } }, - [8392]={ + [8617]={ [1]={ [1]={ limit={ @@ -184282,7 +189975,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath" } }, - [8393]={ + [8618]={ [1]={ [1]={ limit={ @@ -184298,7 +189991,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_random_element_while_ignited" } }, - [8394]={ + [8619]={ [1]={ [1]={ limit={ @@ -184314,7 +190007,7 @@ return { [1]="non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained" } }, - [8395]={ + [8620]={ [1]={ [1]={ limit={ @@ -184330,7 +190023,7 @@ return { [1]="non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain" } }, - [8396]={ + [8621]={ [1]={ [1]={ limit={ @@ -184355,7 +190048,7 @@ return { [1]="non_travel_attack_skill_repeat_count" } }, - [8397]={ + [8622]={ [1]={ [1]={ limit={ @@ -184384,7 +190077,7 @@ return { [1]="normal_monster_dropped_item_quantity_+%" } }, - [8398]={ + [8623]={ [1]={ [1]={ limit={ @@ -184417,7 +190110,7 @@ return { [1]="notable_knockback_distance_+%_final_for_blocked_hits" } }, - [8399]={ + [8624]={ [1]={ [1]={ limit={ @@ -184433,7 +190126,7 @@ return { [1]="nova_spells_cast_at_target_location" } }, - [8400]={ + [8625]={ [1]={ [1]={ limit={ @@ -184458,7 +190151,7 @@ return { [1]="num_additional_skill_slots" } }, - [8401]={ + [8626]={ [1]={ [1]={ limit={ @@ -184483,7 +190176,32 @@ return { [1]="num_charm_slots" } }, - [8402]={ + [8627]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="{0:+d} Charm Slot if you have at least 100 Tribute" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="{0:+d} Charm Slots if you have at least 100 Tribute" + } + }, + stats={ + [1]="num_charm_slots_+_if_you_have_at_least_100_tribute" + } + }, + [8628]={ [1]={ [1]={ limit={ @@ -184508,7 +190226,23 @@ return { [1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more" } }, - [8403]={ + [8629]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} to maximum number of placed Banners" + } + }, + stats={ + [1]="number_of_additional_banners_allowed" + } + }, + [8630]={ [1]={ [1]={ limit={ @@ -184524,7 +190258,7 @@ return { [1]="number_of_additional_chains_for_projectiles_while_phasing" } }, - [8404]={ + [8631]={ [1]={ [1]={ limit={ @@ -184549,7 +190283,7 @@ return { [1]="number_of_additional_curses_allowed_while_affected_by_malevolence" } }, - [8405]={ + [8632]={ [1]={ [1]={ limit={ @@ -184574,7 +190308,7 @@ return { [1]="number_of_additional_curses_allowed_while_at_maximum_power_charges" } }, - [8406]={ + [8633]={ [1]={ [1]={ limit={ @@ -184599,7 +190333,7 @@ return { [1]="number_of_additional_ignites_allowed" } }, - [8407]={ + [8634]={ [1]={ [1]={ limit={ @@ -184624,7 +190358,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_dex" } }, - [8408]={ + [8635]={ [1]={ [1]={ limit={ @@ -184649,7 +190383,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_int" } }, - [8409]={ + [8636]={ [1]={ [1]={ limit={ @@ -184665,7 +190399,23 @@ return { [1]="number_of_additional_poison_stacks" } }, - [8410]={ + [8637]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Targets can be affected by {0:+d} of your Poisons at the same time if you have at least 100 Tribute" + } + }, + stats={ + [1]="number_of_additional_poison_stacks_if_you_have_at_least_100_tribute" + } + }, + [8638]={ [1]={ [1]={ limit={ @@ -184690,7 +190440,7 @@ return { [1]="number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw" } }, - [8411]={ + [8639]={ [1]={ [1]={ limit={ @@ -184715,7 +190465,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_been_hit_recently" } }, - [8412]={ + [8640]={ [1]={ [1]={ limit={ @@ -184740,7 +190490,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently" } }, - [8413]={ + [8641]={ [1]={ [1]={ limit={ @@ -184765,7 +190515,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [8414]={ + [8642]={ [1]={ [1]={ limit={ @@ -184781,7 +190531,7 @@ return { [1]="number_of_animated_weapons_allowed" } }, - [8415]={ + [8643]={ [1]={ [1]={ limit={ @@ -184797,7 +190547,7 @@ return { [1]="base_number_of_arbalists" } }, - [8416]={ + [8644]={ [1]={ [1]={ limit={ @@ -184822,7 +190572,7 @@ return { [1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary" } }, - [8417]={ + [8645]={ [1]={ [1]={ limit={ @@ -184838,7 +190588,7 @@ return { [1]="number_of_golems_allowed_with_3_primordial_jewels" } }, - [8418]={ + [8646]={ [1]={ [1]={ limit={ @@ -184863,7 +190613,7 @@ return { [1]="number_of_poison_cloud_allowed" } }, - [8419]={ + [8647]={ [1]={ [1]={ limit={ @@ -184888,7 +190638,7 @@ return { [1]="number_of_projectiles_+%_final_from_skill" } }, - [8420]={ + [8648]={ [1]={ [1]={ limit={ @@ -184904,7 +190654,7 @@ return { [1]="number_of_raging_spirits_is_limited_to_3" } }, - [8421]={ + [8649]={ [1]={ [1]={ [1]={ @@ -184924,7 +190674,7 @@ return { [1]="number_of_skeletons_allowed_per_2_old" } }, - [8422]={ + [8650]={ [1]={ [1]={ limit={ @@ -184940,7 +190690,7 @@ return { [1]="number_of_support_ghosts_is_limited_to_3" } }, - [8423]={ + [8651]={ [1]={ [1]={ limit={ @@ -184965,7 +190715,7 @@ return { [1]="number_of_vine_arrow_pod_allowed" } }, - [8424]={ + [8652]={ [1]={ [1]={ limit={ @@ -184981,7 +190731,7 @@ return { [1]="number_of_zombies_allowed_+1_per_X_strength" } }, - [8425]={ + [8653]={ [1]={ [1]={ limit={ @@ -185010,7 +190760,7 @@ return { [1]="occultist_chaos_damage_+%_final" } }, - [8426]={ + [8654]={ [1]={ [1]={ limit={ @@ -185039,7 +190789,7 @@ return { [1]="occultist_cold_damage_+%_final" } }, - [8427]={ + [8655]={ [1]={ [1]={ limit={ @@ -185055,7 +190805,7 @@ return { [1]="off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword" } }, - [8428]={ + [8656]={ [1]={ [1]={ limit={ @@ -185084,7 +190834,7 @@ return { [1]="off_hand_attack_speed_+%_while_dual_wielding" } }, - [8429]={ + [8657]={ [1]={ [1]={ limit={ @@ -185113,7 +190863,7 @@ return { [1]="off_hand_attack_speed_+%_while_wielding_two_weapon_types" } }, - [8430]={ + [8658]={ [1]={ [1]={ limit={ @@ -185142,7 +190892,7 @@ return { [1]="off_hand_claw_mana_gain_on_hit" } }, - [8431]={ + [8659]={ [1]={ [1]={ [1]={ @@ -185162,7 +190912,7 @@ return { [1]="off_hand_critical_strike_chance_+_per_10_es_on_shield" } }, - [8432]={ + [8660]={ [1]={ [1]={ limit={ @@ -185178,7 +190928,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_10_es_on_shield" } }, - [8433]={ + [8661]={ [1]={ [1]={ limit={ @@ -185194,7 +190944,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100" } }, - [8434]={ + [8662]={ [1]={ [1]={ limit={ @@ -185223,7 +190973,7 @@ return { [1]="offering_area_of_effect_+%" } }, - [8435]={ + [8663]={ [1]={ [1]={ limit={ @@ -185252,7 +191002,7 @@ return { [1]="offering_duration_+%" } }, - [8436]={ + [8664]={ [1]={ [1]={ limit={ @@ -185281,7 +191031,7 @@ return { [1]="offering_life_+%" } }, - [8437]={ + [8665]={ [1]={ [1]={ limit={ @@ -185290,14 +191040,14 @@ return { [2]="#" } }, - text="When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to {0}% of Sacrificed Mana for 4 seconds" + text="Offerings cannot be damaged if they have been created Recently" } }, stats={ - [1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds" + [1]="offerings_cannot_be_damaged_if_created_recently" } }, - [8438]={ + [8666]={ [1]={ [1]={ limit={ @@ -185306,14 +191056,14 @@ return { [2]="#" } }, - text="When you create a Banner, it gains {0}% of the Stages of your placed Banner" + text="When a Banner expires, recover {0}% of the Glory required for that Banner" } }, stats={ - [1]="on_casting_banner_recover_%_of_planted_banner_stages" + [1]="on_banner_expiry_recover_%_of_required_glory" } }, - [8439]={ + [8667]={ [1]={ [1]={ limit={ @@ -185322,14 +191072,14 @@ return { [2]="#" } }, - text="On-Kill Effects happen twice" + text="When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to {0}% of Sacrificed Mana for 4 seconds" } }, stats={ - [1]="on_kill_effects_occur_twice" + [1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds" } }, - [8440]={ + [8668]={ [1]={ [1]={ limit={ @@ -185338,34 +191088,30 @@ return { [2]="#" } }, - text="When you leave your Banner's Area, recover {0}% of the Valour consumed for that Banner" + text="When you create a Banner, it gains {0}% of the Stages of your placed Banner" } }, stats={ - [1]="on_leaving_banner_area_recover_%_of_planted_banner_resources" + [1]="on_casting_banner_recover_%_of_planted_banner_stages" } }, - [8441]={ + [8669]={ [1]={ [1]={ - [1]={ - k="divide_by_one_hundred", - v=1 - }, limit={ [1]={ [1]="#", [2]="#" } }, - text="When you place a Banner, you and nearby Allies Recover {0}% of maximum Life for\neach Stage the Banner has" + text="On-Kill Effects happen twice" } }, stats={ - [1]="on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage" + [1]="on_kill_effects_occur_twice" } }, - [8442]={ + [8670]={ [1]={ [1]={ limit={ @@ -185394,7 +191140,7 @@ return { [1]="one_handed_attack_ailment_chance_+%" } }, - [8443]={ + [8671]={ [1]={ [1]={ limit={ @@ -185410,7 +191156,7 @@ return { [1]="open_nearby_chests_on_cast_chance_%" } }, - [8444]={ + [8672]={ [1]={ [1]={ limit={ @@ -185426,7 +191172,7 @@ return { [1]="orb_of_storm_strike_rate_while_channelling_+%" } }, - [8445]={ + [8673]={ [1]={ [1]={ limit={ @@ -185442,7 +191188,23 @@ return { [1]="orb_of_storms_cast_speed_+%" } }, - [8446]={ + [8674]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Orb Skills have {0:+d} to Limit" + } + }, + stats={ + [1]="orb_skill_limit_+" + } + }, + [8675]={ [1]={ [1]={ limit={ @@ -185458,7 +191220,7 @@ return { [1]="overkill_damage_%_as_physical_to_nearby_enemies" } }, - [8447]={ + [8676]={ [1]={ [1]={ limit={ @@ -185474,7 +191236,7 @@ return { [1]="override_block_chance_for_allies_in_your_presence" } }, - [8448]={ + [8677]={ [1]={ [1]={ limit={ @@ -185490,7 +191252,7 @@ return { [1]="override_maximum_damage_resistance_%" } }, - [8449]={ + [8678]={ [1]={ [1]={ [1]={ @@ -185510,7 +191272,7 @@ return { [1]="override_weapon_base_critical_strike_chance" } }, - [8450]={ + [8679]={ [1]={ [1]={ limit={ @@ -185539,7 +191301,7 @@ return { [1]="pantheon_abberath_ignite_duration_on_self_+%_final" } }, - [8451]={ + [8680]={ [1]={ [1]={ limit={ @@ -185568,7 +191330,7 @@ return { [1]="pantheon_shakari_self_poison_duration_+%_final" } }, - [8452]={ + [8681]={ [1]={ [1]={ limit={ @@ -185597,7 +191359,7 @@ return { [1]="parried_magnitude_+%" } }, - [8453]={ + [8682]={ [1]={ [1]={ limit={ @@ -185613,7 +191375,7 @@ return { [1]="parry_applies_spell_damage_debuff_instead" } }, - [8454]={ + [8683]={ [1]={ [1]={ limit={ @@ -185642,36 +191404,7 @@ return { [1]="parry_attack_speed_+%_if_youve_parried_recently" } }, - [8455]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Projectile Parry Range" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Projectile Parry Range" - } - }, - stats={ - [1]="parry_blocked_projectile_range_+%" - } - }, - [8456]={ + [8684]={ [1]={ [1]={ limit={ @@ -185687,7 +191420,7 @@ return { [1]="parry_cannot_be_critically_hit_during_parry" } }, - [8457]={ + [8685]={ [1]={ [1]={ limit={ @@ -185716,7 +191449,7 @@ return { [1]="parry_damage_+%" } }, - [8458]={ + [8686]={ [1]={ [1]={ limit={ @@ -185732,7 +191465,7 @@ return { [1]="parry_deal_thorns_damage_chance_%_on_hit" } }, - [8459]={ + [8687]={ [1]={ [1]={ limit={ @@ -185761,7 +191494,7 @@ return { [1]="parry_evasion_rating_+%_during_parry" } }, - [8460]={ + [8688]={ [1]={ [1]={ limit={ @@ -185790,7 +191523,7 @@ return { [1]="parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently" } }, - [8461]={ + [8689]={ [1]={ [1]={ limit={ @@ -185819,7 +191552,23 @@ return { [1]="parry_hit_damage_stun_multiplier_+%" } }, - [8462]={ + [8690]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" + } + }, + stats={ + [1]="parry_modifiers_to_stun_buildup_instead_apply_to_freeze" + } + }, + [8691]={ [1]={ [1]={ limit={ @@ -185848,7 +191597,52 @@ return { [1]="parry_movement_speed_+%_if_youve_parried_recently" } }, - [8463]={ + [8692]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Parry Physical Damage Converted to Cold Damage" + } + }, + stats={ + [1]="parry_physical_damage_%_to_convert_to_cold" + } + }, + [8693]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Parried Debuff Duration per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Parried Debuff Duration per 10 Tribute" + } + }, + stats={ + [1]="parry_skill_effect_duration_+%_per_10_tribute" + } + }, + [8694]={ [1]={ [1]={ limit={ @@ -185877,7 +191671,7 @@ return { [1]="parry_skill_effect_duration_+%" } }, - [8464]={ + [8695]={ [1]={ [1]={ limit={ @@ -185906,7 +191700,7 @@ return { [1]="parry_stun_threshold_+%_during_parry" } }, - [8465]={ + [8696]={ [1]={ [1]={ limit={ @@ -185935,7 +191729,7 @@ return { [1]="parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack" } }, - [8466]={ + [8697]={ [1]={ [1]={ limit={ @@ -185964,7 +191758,57 @@ return { [1]="parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack" } }, - [8467]={ + [8698]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Increases and Reductions to Armour also apply to Energy Shield Recharge Rate" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Armour also apply to Energy Shield\nRecharge Rate at {0}% of their value" + } + }, + stats={ + [1]="passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value" + } + }, + [8699]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Increases and Reductions to Energy Shield Recharge Rate also apply to Deflection Rating" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Energy Shield Recharge Rate also apply to Deflection Rating at {0}% of their value" + } + }, + stats={ + [1]="passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value" + } + }, + [8700]={ [1]={ [1]={ limit={ @@ -185993,7 +191837,7 @@ return { [1]="passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield" } }, - [8468]={ + [8701]={ [1]={ [1]={ limit={ @@ -186022,7 +191866,7 @@ return { [1]="passive_mastery_damage_taken_over_time_+%_final" } }, - [8469]={ + [8702]={ [1]={ [1]={ limit={ @@ -186038,7 +191882,7 @@ return { [1]="passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%" } }, - [8470]={ + [8703]={ [1]={ [1]={ limit={ @@ -186067,7 +191911,7 @@ return { [1]="passive_mastery_less_projectile_speed_+%_final" } }, - [8471]={ + [8704]={ [1]={ [1]={ limit={ @@ -186096,7 +191940,7 @@ return { [1]="passive_mastery_less_skill_effect_duration_+%_final" } }, - [8472]={ + [8705]={ [1]={ [1]={ limit={ @@ -186125,7 +191969,7 @@ return { [1]="passive_mastery_more_projectile_speed_+%_final" } }, - [8473]={ + [8706]={ [1]={ [1]={ limit={ @@ -186154,7 +191998,7 @@ return { [1]="passive_mastery_more_skill_effect_duration_+%_final" } }, - [8474]={ + [8707]={ [1]={ [1]={ limit={ @@ -186183,7 +192027,7 @@ return { [1]="passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield" } }, - [8475]={ + [8708]={ [1]={ [1]={ limit={ @@ -186192,27 +192036,23 @@ return { [2]="#" } }, - text="{0}% more Stun Duration with Two Handed Weapons" + text="{0}% more Stun Buildup with Critical Hits" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% less Stun Duration with Two Handed Weapons" + text="{0}% less Stun Buildup with Critical Hits" } }, stats={ - [1]="passive_mastery_stun_duration_+%_final_with_two_hand_weapon" + [1]="passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits" } }, - [8476]={ + [8709]={ [1]={ [1]={ limit={ @@ -186245,7 +192085,7 @@ return { [1]="passive_tree_damage_taken_+%_final_from_hindered_enemies" } }, - [8477]={ + [8710]={ [1]={ [1]={ limit={ @@ -186274,7 +192114,7 @@ return { [1]="passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies" } }, - [8478]={ + [8711]={ [1]={ [1]={ [1]={ @@ -186294,7 +192134,7 @@ return { [1]="pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x" } }, - [8479]={ + [8712]={ [1]={ [1]={ limit={ @@ -186323,7 +192163,7 @@ return { [1]="pathfinder_flask_amount_to_recover_+%_final" } }, - [8480]={ + [8713]={ [1]={ [1]={ limit={ @@ -186352,7 +192192,7 @@ return { [1]="pathfinder_flask_life_to_recover_+%_final" } }, - [8481]={ + [8714]={ [1]={ [1]={ limit={ @@ -186385,7 +192225,7 @@ return { [1]="pathfinder_poison_duration_+%_final" } }, - [8482]={ + [8715]={ [1]={ [1]={ limit={ @@ -186414,7 +192254,7 @@ return { [1]="penance_brand_area_of_effect_+%" } }, - [8483]={ + [8716]={ [1]={ [1]={ limit={ @@ -186443,7 +192283,7 @@ return { [1]="penance_brand_cast_speed_+%" } }, - [8484]={ + [8717]={ [1]={ [1]={ limit={ @@ -186472,7 +192312,7 @@ return { [1]="penance_brand_damage_+%" } }, - [8485]={ + [8718]={ [1]={ [1]={ limit={ @@ -186488,7 +192328,7 @@ return { [1]="penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you" } }, - [8486]={ + [8719]={ [1]={ [1]={ limit={ @@ -186504,7 +192344,7 @@ return { [1]="perandus_double_number_of_coins_found" } }, - [8487]={ + [8720]={ [1]={ [1]={ limit={ @@ -186520,7 +192360,7 @@ return { [1]="%_chance_to_deal_150%_area_damage_+%_final" } }, - [8488]={ + [8721]={ [1]={ [1]={ limit={ @@ -186545,7 +192385,7 @@ return { [1]="%_chance_to_gain_endurance_charge_each_second_while_channelling" } }, - [8489]={ + [8722]={ [1]={ [1]={ limit={ @@ -186561,7 +192401,7 @@ return { [1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy" } }, - [8490]={ + [8723]={ [1]={ [1]={ limit={ @@ -186594,7 +192434,7 @@ return { [1]="%_number_of_raging_spirits_allowed" } }, - [8491]={ + [8724]={ [1]={ [1]={ limit={ @@ -186623,7 +192463,7 @@ return { [1]="perfect_timing_window_ms_+%" } }, - [8492]={ + [8725]={ [1]={ [1]={ limit={ @@ -186639,7 +192479,7 @@ return { [1]="permanent_damage_+%_per_second_of_chill" } }, - [8493]={ + [8726]={ [1]={ [1]={ limit={ @@ -186655,7 +192495,23 @@ return { [1]="permanent_damage_+%_per_second_of_freeze" } }, - [8494]={ + [8727]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies Ignited by you permanently take {0}% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%" + } + }, + stats={ + [1]="permanent_fire_damage_+%_per_second_of_ignite_up_to_10%" + } + }, + [8728]={ [1]={ [1]={ limit={ @@ -186671,7 +192527,7 @@ return { [1]="permanently_intimidate_enemy_on_block" } }, - [8495]={ + [8729]={ [1]={ [1]={ [1]={ @@ -186708,7 +192564,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_-2%_per_1" } }, - [8496]={ + [8730]={ [1]={ [1]={ limit={ @@ -186737,7 +192593,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_+%" } }, - [8497]={ + [8731]={ [1]={ [1]={ limit={ @@ -186770,7 +192626,7 @@ return { [1]="petrified_blood_reservation_+%" } }, - [8498]={ + [8732]={ [1]={ [1]={ limit={ @@ -186795,7 +192651,7 @@ return { [1]="phantasm_refresh_duration_on_hit_vs_unique_%_chance" } }, - [8499]={ + [8733]={ [1]={ [1]={ limit={ @@ -186820,7 +192676,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [8500]={ + [8734]={ [1]={ [1]={ limit={ @@ -186836,7 +192692,7 @@ return { [1]="phasing_if_blocked_recently" } }, - [8501]={ + [8735]={ [1]={ [1]={ limit={ @@ -186865,7 +192721,7 @@ return { [1]="phys_cascade_trap_cooldown_speed_+%" } }, - [8502]={ + [8736]={ [1]={ [1]={ limit={ @@ -186894,7 +192750,7 @@ return { [1]="phys_cascade_trap_damage_+%" } }, - [8503]={ + [8737]={ [1]={ [1]={ limit={ @@ -186923,7 +192779,7 @@ return { [1]="phys_cascade_trap_duration_+%" } }, - [8504]={ + [8738]={ [1]={ [1]={ limit={ @@ -186948,7 +192804,7 @@ return { [1]="phys_cascade_trap_number_of_additional_cascades" } }, - [8505]={ + [8739]={ [1]={ [1]={ limit={ @@ -186977,7 +192833,39 @@ return { [1]="physical_and_chaos_damage_taken_+%_final_while_not_unhinged" } }, - [8506]={ + [8740]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies" + } + }, + stats={ + [1]="physical_damage_%_to_gain_as_fire_vs_heavy_stunned" + } + }, + [8741]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies" + } + }, + stats={ + [1]="physical_damage_%_to_gain_as_lightning_vs_electrocuted" + } + }, + [8742]={ [1]={ [1]={ limit={ @@ -186993,7 +192881,36 @@ return { [1]="physical_damage_+%_per_explicit_map_mod_affecting_area" } }, - [8507]={ + [8743]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Physical Damage while affected by Herald of Blood" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Physical Damage while affected by Herald of Blood" + } + }, + stats={ + [1]="physical_damage_+%_while_affected_by_herald_of_blood" + } + }, + [8744]={ [1]={ [1]={ limit={ @@ -187009,7 +192926,7 @@ return { [1]="physical_damage_from_hits_%_taken_as_random_element" } }, - [8508]={ + [8745]={ [1]={ [1]={ limit={ @@ -187038,7 +192955,7 @@ return { [1]="physical_damage_over_time_taken_+%_while_moving" } }, - [8509]={ + [8746]={ [1]={ [1]={ limit={ @@ -187067,7 +192984,7 @@ return { [1]="physical_damage_+%_if_skill_costs_life" } }, - [8510]={ + [8747]={ [1]={ [1]={ limit={ @@ -187096,7 +193013,7 @@ return { [1]="physical_damage_+%_per_10_rage" } }, - [8511]={ + [8748]={ [1]={ [1]={ limit={ @@ -187125,7 +193042,7 @@ return { [1]="physical_damage_+%_vs_ignited_enemies" } }, - [8512]={ + [8749]={ [1]={ [1]={ limit={ @@ -187154,7 +193071,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_purity" } }, - [8513]={ + [8750]={ [1]={ [1]={ limit={ @@ -187183,7 +193100,7 @@ return { [1]="physical_damage_+%_with_axes_swords" } }, - [8514]={ + [8751]={ [1]={ [1]={ limit={ @@ -187199,7 +193116,23 @@ return { [1]="physical_damage_prevented_recouped_as_life_%" } }, - [8515]={ + [8752]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage prevented Recouped as Life if you have at least 100 Tribute" + } + }, + stats={ + [1]="physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute" + } + }, + [8753]={ [1]={ [1]={ limit={ @@ -187215,7 +193148,7 @@ return { [1]="physical_damage_reduction_%_at_devotion_threshold" } }, - [8516]={ + [8754]={ [1]={ [1]={ limit={ @@ -187231,7 +193164,7 @@ return { [1]="physical_damage_reduction_percent_per_frenzy_charge" } }, - [8517]={ + [8755]={ [1]={ [1]={ limit={ @@ -187247,7 +193180,7 @@ return { [1]="physical_damage_reduction_%_per_hit_you_have_taken_recently" } }, - [8518]={ + [8756]={ [1]={ [1]={ limit={ @@ -187263,7 +193196,7 @@ return { [1]="physical_damage_reduction_percent_per_power_charge" } }, - [8519]={ + [8757]={ [1]={ [1]={ limit={ @@ -187279,7 +193212,36 @@ return { [1]="physical_damage_reduction_%_while_affected_by_herald_of_purity" } }, - [8520]={ + [8758]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour per 10 Tribute" + } + }, + stats={ + [1]="physical_damage_reduction_rating_+%_per_10_tribute" + } + }, + [8759]={ [1]={ [1]={ limit={ @@ -187295,7 +193257,7 @@ return { [1]="physical_damage_reduction_rating_during_soul_gain_prevention" } }, - [8521]={ + [8760]={ [1]={ [1]={ limit={ @@ -187311,7 +193273,7 @@ return { [1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently" } }, - [8522]={ + [8761]={ [1]={ [1]={ limit={ @@ -187327,7 +193289,7 @@ return { [1]="physical_damage_reduction_rating_per_endurance_charge" } }, - [8523]={ + [8762]={ [1]={ [1]={ limit={ @@ -187343,7 +193305,7 @@ return { [1]="physical_damage_reduction_%_if_only_one_enemy_nearby" } }, - [8524]={ + [8763]={ [1]={ [1]={ limit={ @@ -187359,7 +193321,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_endurance_charge" } }, - [8525]={ + [8764]={ [1]={ [1]={ limit={ @@ -187375,7 +193337,7 @@ return { [1]="physical_damage_reduction_%_per_nearby_enemy" } }, - [8526]={ + [8765]={ [1]={ [1]={ limit={ @@ -187404,7 +193366,7 @@ return { [1]="physical_damage_taken_+%_from_hits" } }, - [8527]={ + [8766]={ [1]={ [1]={ limit={ @@ -187420,7 +193382,7 @@ return { [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements" } }, - [8528]={ + [8767]={ [1]={ [1]={ limit={ @@ -187436,7 +193398,7 @@ return { [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice" } }, - [8529]={ + [8768]={ [1]={ [1]={ limit={ @@ -187452,7 +193414,7 @@ return { [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements" } }, - [8530]={ + [8769]={ [1]={ [1]={ limit={ @@ -187468,7 +193430,7 @@ return { [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire" } }, - [8531]={ + [8770]={ [1]={ [1]={ limit={ @@ -187484,7 +193446,7 @@ return { [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements" } }, - [8532]={ + [8771]={ [1]={ [1]={ limit={ @@ -187500,7 +193462,7 @@ return { [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning" } }, - [8533]={ + [8772]={ [1]={ [1]={ limit={ @@ -187516,7 +193478,7 @@ return { [1]="physical_damage_taken_recouped_as_life_%" } }, - [8534]={ + [8773]={ [1]={ [1]={ limit={ @@ -187545,7 +193507,7 @@ return { [1]="physical_damage_with_attack_skills_+%" } }, - [8535]={ + [8774]={ [1]={ [1]={ limit={ @@ -187574,7 +193536,7 @@ return { [1]="physical_damage_with_spell_skills_+%" } }, - [8536]={ + [8775]={ [1]={ [1]={ limit={ @@ -187590,7 +193552,7 @@ return { [1]="physical_dot_multiplier_+_if_crit_recently" } }, - [8537]={ + [8776]={ [1]={ [1]={ limit={ @@ -187606,7 +193568,7 @@ return { [1]="physical_dot_multiplier_+_if_spent_life_recently" } }, - [8538]={ + [8777]={ [1]={ [1]={ limit={ @@ -187635,7 +193597,7 @@ return { [1]="physical_dot_multiplier_+_while_wielding_axes_swords" } }, - [8539]={ + [8778]={ [1]={ [1]={ limit={ @@ -187651,7 +193613,7 @@ return { [1]="physical_hit_and_dot_damage_%_taken_as_fire" } }, - [8540]={ + [8779]={ [1]={ [1]={ limit={ @@ -187667,7 +193629,7 @@ return { [1]="physical_hit_and_dot_damage_%_taken_as_lightning" } }, - [8541]={ + [8780]={ [1]={ [1]={ limit={ @@ -187683,7 +193645,23 @@ return { [1]="physical_hit_and_dot_damage_%_taken_as_chaos" } }, - [8542]={ + [8781]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage taken as Lightning while Active Blocking" + } + }, + stats={ + [1]="physical_hit_and_dot_damage_%_taken_as_lightning_while_active_blocking" + } + }, + [8782]={ [1]={ [1]={ limit={ @@ -187716,7 +193694,7 @@ return { [1]="physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%" } }, - [8543]={ + [8783]={ [1]={ [1]={ limit={ @@ -187732,7 +193710,23 @@ return { [1]="physical_skill_gem_level_+" } }, - [8544]={ + [8784]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Physical Spell Critical Hits build Pin" + } + }, + stats={ + [1]="physical_spell_damage_can_pin_on_critical_hit" + } + }, + [8785]={ [1]={ [1]={ limit={ @@ -187761,7 +193755,7 @@ return { [1]="piercing_projectiles_critical_strike_chance_+%" } }, - [8545]={ + [8786]={ [1]={ [1]={ limit={ @@ -187777,7 +193771,36 @@ return { [1]="pin_almost_pinned_enemies" } }, - [8546]={ + [8787]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Pin duration" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Pin duration" + } + }, + stats={ + [1]="pin_duration_+%" + } + }, + [8788]={ [1]={ [1]={ limit={ @@ -187793,7 +193816,39 @@ return { [1]="pin_stops_enemies" } }, - [8547]={ + [8789]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pinned Enemies cannot deal Critical Hits" + } + }, + stats={ + [1]="pinned_enemies_cannot_crit" + } + }, + [8790]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits cannot be Evaded by Pinned Enemies" + } + }, + stats={ + [1]="pinned_enemies_cannot_evade_your_attacks" + } + }, + [8791]={ [1]={ [1]={ limit={ @@ -187822,7 +193877,7 @@ return { [1]="placed_banner_attack_damage_+%" } }, - [8548]={ + [8792]={ [1]={ [1]={ limit={ @@ -187851,7 +193906,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [8549]={ + [8793]={ [1]={ [1]={ limit={ @@ -187880,7 +193935,7 @@ return { [1]="plague_bearer_maximum_stored_poison_damage_+%" } }, - [8550]={ + [8794]={ [1]={ [1]={ limit={ @@ -187909,7 +193964,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [8551]={ + [8795]={ [1]={ [1]={ limit={ @@ -187938,7 +193993,7 @@ return { [1]="plague_bearer_poison_effect_+%_while_infecting" } }, - [8552]={ + [8796]={ [1]={ [1]={ limit={ @@ -187954,7 +194009,7 @@ return { [1]="player_can_be_touched_by_tormented_spirits" } }, - [8553]={ + [8797]={ [1]={ [1]={ limit={ @@ -187970,7 +194025,7 @@ return { [1]="poison_as_though_dealing_X_damage_on_block" } }, - [8554]={ + [8798]={ [1]={ [1]={ limit={ @@ -187999,7 +194054,7 @@ return { [1]="poison_chance_+%" } }, - [8555]={ + [8799]={ [1]={ [1]={ limit={ @@ -188028,7 +194083,7 @@ return { [1]="poison_duration_+%_per_poison_applied_recently" } }, - [8556]={ + [8800]={ [1]={ [1]={ limit={ @@ -188057,7 +194112,7 @@ return { [1]="poison_duration_+%_per_power_charge" } }, - [8557]={ + [8801]={ [1]={ [1]={ limit={ @@ -188086,7 +194141,7 @@ return { [1]="poison_duration_+%_with_over_150_intelligence" } }, - [8558]={ + [8802]={ [1]={ [1]={ limit={ @@ -188115,7 +194170,7 @@ return { [1]="poison_effect_+%_vs_non_poisoned_enemies" } }, - [8559]={ + [8803]={ [1]={ [1]={ limit={ @@ -188131,7 +194186,7 @@ return { [1]="poison_effect_+100%_final_chance_during_flask_effect" } }, - [8560]={ + [8804]={ [1]={ [1]={ limit={ @@ -188160,7 +194215,7 @@ return { [1]="base_poison_effect_+%" } }, - [8561]={ + [8805]={ [1]={ [1]={ limit={ @@ -188189,7 +194244,7 @@ return { [1]="poison_effect_+%_per_frenzy_charge" } }, - [8562]={ + [8806]={ [1]={ [1]={ limit={ @@ -188218,36 +194273,7 @@ return { [1]="poison_effect_+%_vs_bleeding_enemies" } }, - [8563]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Magnitude of Poison you inflict while wielding a Claw or Dagger" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Magnitude of Poison you inflict while wielding a Claw or Dagger" - } - }, - stats={ - [1]="poison_effect_+%_while_wielding_claw_or_dagger" - } - }, - [8564]={ + [8807]={ [1]={ [1]={ limit={ @@ -188276,7 +194302,7 @@ return { [1]="poison_effect_+%_with_spells" } }, - [8565]={ + [8808]={ [1]={ [1]={ limit={ @@ -188292,7 +194318,7 @@ return { [1]="poison_on_critical_strike" } }, - [8566]={ + [8809]={ [1]={ [1]={ limit={ @@ -188308,7 +194334,7 @@ return { [1]="poison_reflected_to_self" } }, - [8567]={ + [8810]={ [1]={ [1]={ limit={ @@ -188341,7 +194367,7 @@ return { [1]="poison_time_passed_+%" } }, - [8568]={ + [8811]={ [1]={ [1]={ limit={ @@ -188370,7 +194396,7 @@ return { [1]="poisonous_concoction_damage_+%" } }, - [8569]={ + [8812]={ [1]={ [1]={ limit={ @@ -188399,7 +194425,7 @@ return { [1]="poisonous_concoction_flask_charges_consumed_+%" } }, - [8570]={ + [8813]={ [1]={ [1]={ limit={ @@ -188428,7 +194454,7 @@ return { [1]="poisonous_concoction_skill_area_of_effect_+%" } }, - [8571]={ + [8814]={ [1]={ [1]={ limit={ @@ -188444,7 +194470,7 @@ return { [1]="poisons_you_inflict_can_stack_infintely" } }, - [8572]={ + [8815]={ [1]={ [1]={ [1]={ @@ -188464,7 +194490,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [8573]={ + [8816]={ [1]={ [1]={ limit={ @@ -188493,7 +194519,7 @@ return { [1]="power_charge_duration_+%_final" } }, - [8574]={ + [8817]={ [1]={ [1]={ limit={ @@ -188509,7 +194535,7 @@ return { [1]="power_charge_on_kill_percent_chance_while_holding_shield" } }, - [8575]={ + [8818]={ [1]={ [1]={ limit={ @@ -188525,23 +194551,7 @@ return { [1]="power_charge_on_non_critical_strike_%_chance_with_claws_daggers" } }, - [8576]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance to gain a Power Charge when you Block Spell Damage" - } - }, - stats={ - [1]="power_charge_on_spell_block_%_chance" - } - }, - [8577]={ + [8819]={ [1]={ [1]={ limit={ @@ -188566,7 +194576,7 @@ return { [1]="power_siphon_number_of_additional_projectiles" } }, - [8578]={ + [8820]={ [1]={ [1]={ [1]={ @@ -188603,7 +194613,7 @@ return { [1]="precision_mana_reservation_efficiency_-2%_per_1" } }, - [8579]={ + [8821]={ [1]={ [1]={ limit={ @@ -188619,7 +194629,7 @@ return { [1]="precision_mana_reservation_efficiency_+100%" } }, - [8580]={ + [8822]={ [1]={ [1]={ limit={ @@ -188648,7 +194658,7 @@ return { [1]="precision_mana_reservation_efficiency_+%" } }, - [8581]={ + [8823]={ [1]={ [1]={ limit={ @@ -188664,7 +194674,7 @@ return { [1]="precision_mana_reservation_-50%_final" } }, - [8582]={ + [8824]={ [1]={ [1]={ limit={ @@ -188693,7 +194703,7 @@ return { [1]="precision_mana_reservation_+%" } }, - [8583]={ + [8825]={ [1]={ [1]={ limit={ @@ -188709,7 +194719,36 @@ return { [1]="precision_reserves_no_mana" } }, - [8584]={ + [8826]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Presence Area of Effect per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Presence Area of Effect per 10 Tribute" + } + }, + stats={ + [1]="presence_area_+%_per_10_tribute" + } + }, + [8827]={ [1]={ [1]={ limit={ @@ -188734,7 +194773,7 @@ return { [1]="prevent_projectile_chaining_%_chance" } }, - [8585]={ + [8828]={ [1]={ [1]={ limit={ @@ -188763,7 +194802,7 @@ return { [1]="pride_aura_effect_+%" } }, - [8586]={ + [8829]={ [1]={ [1]={ limit={ @@ -188779,7 +194818,7 @@ return { [1]="pride_chance_to_deal_double_damage_%" } }, - [8587]={ + [8830]={ [1]={ [1]={ limit={ @@ -188804,7 +194843,7 @@ return { [1]="pride_chance_to_impale_with_attacks_%" } }, - [8588]={ + [8831]={ [1]={ [1]={ limit={ @@ -188820,7 +194859,7 @@ return { [1]="pride_intimidate_enemy_for_4_seconds_on_hit" } }, - [8589]={ + [8832]={ [1]={ [1]={ [1]={ @@ -188857,7 +194896,7 @@ return { [1]="pride_mana_reservation_efficiency_-2%_per_1" } }, - [8590]={ + [8833]={ [1]={ [1]={ limit={ @@ -188886,7 +194925,7 @@ return { [1]="pride_mana_reservation_efficiency_+%" } }, - [8591]={ + [8834]={ [1]={ [1]={ limit={ @@ -188919,7 +194958,7 @@ return { [1]="pride_mana_reservation_+%" } }, - [8592]={ + [8835]={ [1]={ [1]={ limit={ @@ -188948,7 +194987,7 @@ return { [1]="pride_physical_damage_+%" } }, - [8593]={ + [8836]={ [1]={ [1]={ limit={ @@ -188964,7 +195003,7 @@ return { [1]="pride_reserves_no_mana" } }, - [8594]={ + [8837]={ [1]={ [1]={ limit={ @@ -188980,7 +195019,7 @@ return { [1]="pride_your_impaled_debuff_lasts_+_additional_hits" } }, - [8595]={ + [8838]={ [1]={ [1]={ limit={ @@ -189009,7 +195048,7 @@ return { [1]="primalist_charm_charges_gained_+%_final" } }, - [8596]={ + [8839]={ [1]={ [1]={ limit={ @@ -189038,7 +195077,7 @@ return { [1]="prismatic_rain_beam_frequency_+%" } }, - [8597]={ + [8840]={ [1]={ [1]={ limit={ @@ -189054,7 +195093,7 @@ return { [1]="profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence" } }, - [8598]={ + [8841]={ [1]={ [1]={ limit={ @@ -189083,7 +195122,7 @@ return { [1]="projectile_ailment_chance_+%" } }, - [8599]={ + [8842]={ [1]={ [1]={ limit={ @@ -189096,10 +195135,10 @@ return { } }, stats={ - [1]="projectile_all_damage_%_to_gain_as_infusion_type" + [1]="projectile_all_damage_%_to_gain_as_instilling_type" } }, - [8600]={ + [8843]={ [1]={ [1]={ limit={ @@ -189128,7 +195167,7 @@ return { [1]="projectile_attack_damage_+%_during_flask_effect" } }, - [8601]={ + [8844]={ [1]={ [1]={ limit={ @@ -189157,7 +195196,7 @@ return { [1]="projectile_attack_damage_+%_with_claw_or_dagger" } }, - [8602]={ + [8845]={ [1]={ [1]={ limit={ @@ -189186,7 +195225,7 @@ return { [1]="projectile_attack_range_+%" } }, - [8603]={ + [8846]={ [1]={ [1]={ limit={ @@ -189202,7 +195241,32 @@ return { [1]="projectile_attack_skill_critical_strike_multiplier_+" } }, - [8604]={ + [8847]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="Projectile Attacks have a {0}% chance to fire two additional Projectiles while moving" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Projectile Attacks fire two additional Projectiles while moving" + } + }, + stats={ + [1]="projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving" + } + }, + [8848]={ [1]={ [1]={ limit={ @@ -189218,7 +195282,7 @@ return { [1]="projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%" } }, - [8605]={ + [8849]={ [1]={ [1]={ limit={ @@ -189234,7 +195298,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [8606]={ + [8850]={ [1]={ [1]={ limit={ @@ -189250,7 +195314,7 @@ return { [1]="projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player" } }, - [8607]={ + [8851]={ [1]={ [1]={ limit={ @@ -189279,7 +195343,7 @@ return { [1]="projectile_damage_+%_against_heavy_stunned_enemies" } }, - [8608]={ + [8852]={ [1]={ [1]={ limit={ @@ -189308,7 +195372,7 @@ return { [1]="projectile_damage_+%_if_youve_dealt_melee_hit_recently" } }, - [8609]={ + [8853]={ [1]={ [1]={ limit={ @@ -189337,7 +195401,7 @@ return { [1]="projectile_damage_+%_vs_enemies_further_than_6m_distance" } }, - [8610]={ + [8854]={ [1]={ [1]={ limit={ @@ -189366,7 +195430,7 @@ return { [1]="projectile_damage_+%_vs_enemies_within_2m_distance" } }, - [8611]={ + [8855]={ [1]={ [1]={ limit={ @@ -189395,7 +195459,7 @@ return { [1]="projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you" } }, - [8612]={ + [8856]={ [1]={ [1]={ limit={ @@ -189424,7 +195488,7 @@ return { [1]="projectile_damage_+%_max_before_distance_increase" } }, - [8613]={ + [8857]={ [1]={ [1]={ limit={ @@ -189440,7 +195504,7 @@ return { [1]="projectile_damage_+%_per_16_dexterity" } }, - [8614]={ + [8858]={ [1]={ [1]={ limit={ @@ -189456,7 +195520,7 @@ return { [1]="projectile_damage_+%_per_chain" } }, - [8615]={ + [8859]={ [1]={ [1]={ limit={ @@ -189472,7 +195536,7 @@ return { [1]="projectile_damage_+%_per_pierced_enemy" } }, - [8616]={ + [8860]={ [1]={ [1]={ limit={ @@ -189501,7 +195565,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [8617]={ + [8861]={ [1]={ [1]={ limit={ @@ -189530,7 +195594,7 @@ return { [1]="projectile_damage_+%_vs_chained_enemy" } }, - [8618]={ + [8862]={ [1]={ [1]={ limit={ @@ -189559,7 +195623,23 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [8619]={ + [8863]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to inflict Daze with Hits against Enemies further than 6m" + } + }, + stats={ + [1]="projectile_daze_chance_%_vs_enemies_further_than_6m" + } + }, + [8864]={ [1]={ [1]={ limit={ @@ -189588,7 +195668,7 @@ return { [1]="projectile_hit_damage_stun_multiplier_+%" } }, - [8620]={ + [8865]={ [1]={ [1]={ limit={ @@ -189604,7 +195684,7 @@ return { [1]="projectile_number_to_split" } }, - [8621]={ + [8866]={ [1]={ [1]={ limit={ @@ -189633,7 +195713,7 @@ return { [1]="projectile_speed_+%_with_daggers" } }, - [8622]={ + [8867]={ [1]={ [1]={ [1]={ @@ -189653,7 +195733,7 @@ return { [1]="projectile_spell_cooldown_modifier_ms" } }, - [8623]={ + [8868]={ [1]={ [1]={ limit={ @@ -189669,7 +195749,7 @@ return { [1]="projectiles_always_pierce_you" } }, - [8624]={ + [8869]={ [1]={ [1]={ limit={ @@ -189694,7 +195774,7 @@ return { [1]="projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently" } }, - [8625]={ + [8870]={ [1]={ [1]={ limit={ @@ -189710,7 +195790,7 @@ return { [1]="projectiles_from_spells_cannot_pierce" } }, - [8626]={ + [8871]={ [1]={ [1]={ limit={ @@ -189739,7 +195819,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_10_stat_value" } }, - [8627]={ + [8872]={ [1]={ [1]={ limit={ @@ -189768,7 +195848,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_15_stat_value" } }, - [8628]={ + [8873]={ [1]={ [1]={ limit={ @@ -189784,7 +195864,32 @@ return { [1]="projectiles_pierce_all_nearby_targets" } }, - [8629]={ + [8874]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="Projectiles have a {0}% chance to Pierce enemies with Fully Broken Armour" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Projectiles Pierce enemies with Fully Broken Armour" + } + }, + stats={ + [1]="projectiles_pierce_enemies_with_fully_broken_armour" + } + }, + [8875]={ [1]={ [1]={ limit={ @@ -189800,7 +195905,7 @@ return { [1]="projectiles_pierce_while_phasing" } }, - [8630]={ + [8876]={ [1]={ [1]={ limit={ @@ -189825,7 +195930,7 @@ return { [1]="projectiles_pierce_x_additional_targets_while_you_have_phasing" } }, - [8631]={ + [8877]={ [1]={ [1]={ limit={ @@ -189854,7 +195959,7 @@ return { [1]="protective_link_duration_+%" } }, - [8632]={ + [8878]={ [1]={ [1]={ limit={ @@ -189870,7 +195975,7 @@ return { [1]="puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%" } }, - [8633]={ + [8879]={ [1]={ [1]={ limit={ @@ -189886,7 +195991,7 @@ return { [1]="punishment_no_reservation" } }, - [8634]={ + [8880]={ [1]={ [1]={ [1]={ @@ -189919,7 +196024,7 @@ return { [1]="puppet_master_base_duration_ms" } }, - [8635]={ + [8881]={ [1]={ [1]={ limit={ @@ -189948,7 +196053,7 @@ return { [1]="purge_damage_+%" } }, - [8636]={ + [8882]={ [1]={ [1]={ limit={ @@ -189977,7 +196082,7 @@ return { [1]="purge_duration_+%" } }, - [8637]={ + [8883]={ [1]={ [1]={ limit={ @@ -189993,7 +196098,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [8638]={ + [8884]={ [1]={ [1]={ limit={ @@ -190018,7 +196123,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [8639]={ + [8885]={ [1]={ [1]={ [1]={ @@ -190055,7 +196160,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_-2%_per_1" } }, - [8640]={ + [8886]={ [1]={ [1]={ limit={ @@ -190084,7 +196189,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_+%" } }, - [8641]={ + [8887]={ [1]={ [1]={ limit={ @@ -190100,7 +196205,7 @@ return { [1]="purity_of_elements_reserves_no_mana" } }, - [8642]={ + [8888]={ [1]={ [1]={ [1]={ @@ -190137,7 +196242,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_-2%_per_1" } }, - [8643]={ + [8889]={ [1]={ [1]={ limit={ @@ -190166,7 +196271,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_+%" } }, - [8644]={ + [8890]={ [1]={ [1]={ limit={ @@ -190182,7 +196287,7 @@ return { [1]="purity_of_fire_reserves_no_mana" } }, - [8645]={ + [8891]={ [1]={ [1]={ [1]={ @@ -190219,7 +196324,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [8646]={ + [8892]={ [1]={ [1]={ limit={ @@ -190248,7 +196353,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_+%" } }, - [8647]={ + [8893]={ [1]={ [1]={ limit={ @@ -190264,7 +196369,7 @@ return { [1]="purity_of_ice_reserves_no_mana" } }, - [8648]={ + [8894]={ [1]={ [1]={ [1]={ @@ -190301,7 +196406,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_-2%_per_1" } }, - [8649]={ + [8895]={ [1]={ [1]={ limit={ @@ -190330,7 +196435,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_+%" } }, - [8650]={ + [8896]={ [1]={ [1]={ limit={ @@ -190346,7 +196451,7 @@ return { [1]="purity_of_lightning_reserves_no_mana" } }, - [8651]={ + [8897]={ [1]={ [1]={ limit={ @@ -190375,7 +196480,7 @@ return { [1]="quarterstaff_daze_build_up_+%" } }, - [8652]={ + [8898]={ [1]={ [1]={ limit={ @@ -190404,7 +196509,7 @@ return { [1]="quarterstaff_hit_damage_freeze_multiplier_+%" } }, - [8653]={ + [8899]={ [1]={ [1]={ limit={ @@ -190433,7 +196538,7 @@ return { [1]="quarterstaff_hit_damage_stun_multiplier_+%" } }, - [8654]={ + [8900]={ [1]={ [1]={ limit={ @@ -190462,7 +196567,7 @@ return { [1]="quarterstaff_shock_chance_+%" } }, - [8655]={ + [8901]={ [1]={ [1]={ limit={ @@ -190487,7 +196592,7 @@ return { [1]="quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges" } }, - [8656]={ + [8902]={ [1]={ [1]={ limit={ @@ -190512,7 +196617,7 @@ return { [1]="quick_dodge_added_cooldown_count" } }, - [8657]={ + [8903]={ [1]={ [1]={ limit={ @@ -190541,7 +196646,7 @@ return { [1]="quick_dodge_travel_distance_+%" } }, - [8658]={ + [8904]={ [1]={ [1]={ limit={ @@ -190557,7 +196662,7 @@ return { [1]="quick_guard_additional_physical_damage_reduction_%" } }, - [8659]={ + [8905]={ [1]={ [1]={ limit={ @@ -190573,7 +196678,7 @@ return { [1]="quicksilver_flasks_apply_to_nearby_allies" } }, - [8660]={ + [8906]={ [1]={ [1]={ limit={ @@ -190602,7 +196707,7 @@ return { [1]="quiver_mod_effect_+%" } }, - [8661]={ + [8907]={ [1]={ [1]={ limit={ @@ -190618,7 +196723,7 @@ return { [1]="quiver_projectiles_pierce_1_additional_target" } }, - [8662]={ + [8908]={ [1]={ [1]={ limit={ @@ -190634,7 +196739,7 @@ return { [1]="quiver_projectiles_pierce_2_additional_targets" } }, - [8663]={ + [8909]={ [1]={ [1]={ limit={ @@ -190650,7 +196755,7 @@ return { [1]="quiver_projectiles_pierce_3_additional_targets" } }, - [8664]={ + [8910]={ [1]={ [1]={ limit={ @@ -190666,7 +196771,7 @@ return { [1]="maximum_rage" } }, - [8665]={ + [8911]={ [1]={ [1]={ limit={ @@ -190682,7 +196787,7 @@ return { [1]="rage_effects_tripled" } }, - [8666]={ + [8912]={ [1]={ [1]={ limit={ @@ -190698,7 +196803,7 @@ return { [1]="rage_effects_doubled" } }, - [8667]={ + [8913]={ [1]={ [1]={ limit={ @@ -190714,7 +196819,7 @@ return { [1]="gain_rage_on_kill" } }, - [8668]={ + [8914]={ [1]={ [1]={ limit={ @@ -190739,7 +196844,7 @@ return { [1]="gain_rage_on_hitting_rare_unique_enemy_%" } }, - [8669]={ + [8915]={ [1]={ [1]={ limit={ @@ -190755,7 +196860,7 @@ return { [1]="gain_rage_when_you_use_a_warcry" } }, - [8670]={ + [8916]={ [1]={ [1]={ limit={ @@ -190771,7 +196876,7 @@ return { [1]="cannot_be_stunned_with_25_rage" } }, - [8671]={ + [8917]={ [1]={ [1]={ limit={ @@ -190787,7 +196892,7 @@ return { [1]="gain_x_rage_on_hit" } }, - [8672]={ + [8918]={ [1]={ [1]={ limit={ @@ -190816,7 +196921,68 @@ return { [1]="rage_decay_speed_+%" } }, - [8673]={ + [8919]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Inherent loss of Rage is {0}% faster per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Inherent loss of Rage is {0}% slower per 10 Tribute" + } + }, + stats={ + [1]="rage_decay_speed_+%_per_10_tribute" + } + }, + [8920]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Rage when you use a Life Flask" + } + }, + stats={ + [1]="rage_gained_on_life_flask_use" + } + }, + [8921]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rage you gain is also granted to Allies in your Presence" + } + }, + stats={ + [1]="rage_generated_also_granted_to_allies_in_presence" + } + }, + [8922]={ [1]={ [1]={ limit={ @@ -190832,7 +196998,7 @@ return { [1]="rage_grants_spell_damage_instead" } }, - [8674]={ + [8923]={ [1]={ [1]={ limit={ @@ -190861,7 +197027,7 @@ return { [1]="rage_loss_delay_ms" } }, - [8675]={ + [8924]={ [1]={ [1]={ limit={ @@ -190877,7 +197043,7 @@ return { [1]="rage_slash_sacrifice_rage_%" } }, - [8676]={ + [8925]={ [1]={ [1]={ limit={ @@ -190906,7 +197072,7 @@ return { [1]="rage_vortex_area_of_effect_+%" } }, - [8677]={ + [8926]={ [1]={ [1]={ limit={ @@ -190935,7 +197101,7 @@ return { [1]="rage_vortex_damage_+%" } }, - [8678]={ + [8927]={ [1]={ [1]={ limit={ @@ -190951,7 +197117,7 @@ return { [1]="raging_spirits_always_ignite" } }, - [8679]={ + [8928]={ [1]={ [1]={ limit={ @@ -190976,7 +197142,7 @@ return { [1]="raging_spirits_refresh_duration_on_hit_vs_unique_%_chance" } }, - [8680]={ + [8929]={ [1]={ [1]={ limit={ @@ -190992,36 +197158,7 @@ return { [1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy" } }, - [8681]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more chance to Evade Attacks during Onslaught" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less chance to Evade Attacks during Onslaught" - } - }, - stats={ - [1]="raider_chance_to_evade_attacks_+%_final_during_onslaught" - } - }, - [8682]={ + [8930]={ [1]={ [1]={ limit={ @@ -191050,7 +197187,7 @@ return { [1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing" } }, - [8683]={ + [8931]={ [1]={ [1]={ limit={ @@ -191066,7 +197203,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [8684]={ + [8932]={ [1]={ [1]={ limit={ @@ -191082,7 +197219,7 @@ return { [1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%" } }, - [8685]={ + [8933]={ [1]={ [1]={ limit={ @@ -191115,7 +197252,7 @@ return { [1]="raise_spectre_mana_cost_+%" } }, - [8686]={ + [8934]={ [1]={ [1]={ limit={ @@ -191131,7 +197268,7 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [8687]={ + [8935]={ [1]={ [1]={ limit={ @@ -191147,7 +197284,7 @@ return { [1]="raised_zombie_%_chance_to_taunt" } }, - [8688]={ + [8936]={ [1]={ [1]={ limit={ @@ -191163,7 +197300,7 @@ return { [1]="raised_zombies_are_usable_as_corpses_when_alive" } }, - [8689]={ + [8937]={ [1]={ [1]={ limit={ @@ -191188,7 +197325,7 @@ return { [1]="raised_zombies_cover_in_ash_on_hit_%" } }, - [8690]={ + [8938]={ [1]={ [1]={ [1]={ @@ -191208,7 +197345,7 @@ return { [1]="raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [8691]={ + [8939]={ [1]={ [1]={ limit={ @@ -191224,7 +197361,7 @@ return { [1]="raised_zombies_have_avatar_of_fire" } }, - [8692]={ + [8940]={ [1]={ [1]={ [1]={ @@ -191244,7 +197381,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_3_stat_value" } }, - [8693]={ + [8941]={ [1]={ [1]={ [1]={ @@ -191264,7 +197401,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_5_stat_value" } }, - [8694]={ + [8942]={ [1]={ [1]={ limit={ @@ -191289,7 +197426,7 @@ return { [1]="rallying_cry_exerts_x_additional_attacks" } }, - [8695]={ + [8943]={ [1]={ [1]={ limit={ @@ -191305,7 +197442,7 @@ return { [1]="random_curse_on_hit_%_against_uncursed_enemies" } }, - [8696]={ + [8944]={ [1]={ [1]={ limit={ @@ -191330,7 +197467,7 @@ return { [1]="random_curse_when_hit_%_ignoring_curse_limit" } }, - [8697]={ + [8945]={ [1]={ [1]={ limit={ @@ -191346,7 +197483,7 @@ return { [1]="random_projectile_direction" } }, - [8698]={ + [8946]={ [1]={ [1]={ limit={ @@ -191375,7 +197512,7 @@ return { [1]="ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final" } }, - [8699]={ + [8947]={ [1]={ [1]={ limit={ @@ -191400,7 +197537,7 @@ return { [1]="rapid_assault_attached_spear_limit" } }, - [8700]={ + [8948]={ [1]={ [1]={ limit={ @@ -191429,7 +197566,7 @@ return { [1]="rare_or_unique_monster_dropped_item_rarity_+%" } }, - [8701]={ + [8949]={ [1]={ [1]={ limit={ @@ -191445,7 +197582,7 @@ return { [1]="real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy" } }, - [8702]={ + [8950]={ [1]={ [1]={ limit={ @@ -191461,7 +197598,7 @@ return { [1]="reap_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [8703]={ + [8951]={ [1]={ [1]={ limit={ @@ -191477,7 +197614,7 @@ return { [1]="reapply_enemy_shock_on_consuming_enemy_shock_chance_%" } }, - [8704]={ + [8952]={ [1]={ [1]={ limit={ @@ -191506,7 +197643,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [8705]={ + [8953]={ [1]={ [1]={ limit={ @@ -191522,7 +197659,7 @@ return { [1]="receive_bleeding_chance_%_when_hit" } }, - [8706]={ + [8954]={ [1]={ [1]={ limit={ @@ -191538,7 +197675,7 @@ return { [1]="receive_bleeding_chance_%_when_hit_by_attack" } }, - [8707]={ + [8955]={ [1]={ [1]={ limit={ @@ -191554,7 +197691,7 @@ return { [1]="received_attack_hits_have_impale_chance_%" } }, - [8708]={ + [8956]={ [1]={ [1]={ limit={ @@ -191570,7 +197707,7 @@ return { [1]="recharge_flasks_on_crit_while_affected_by_precision" } }, - [8709]={ + [8957]={ [1]={ [1]={ limit={ @@ -191586,7 +197723,7 @@ return { [1]="recoup_%_elemental_damage_as_energy_shield" } }, - [8710]={ + [8958]={ [1]={ [1]={ limit={ @@ -191602,7 +197739,7 @@ return { [1]="recoup_%_of_damage_taken_by_your_totems_as_life" } }, - [8711]={ + [8959]={ [1]={ [1]={ limit={ @@ -191618,7 +197755,7 @@ return { [1]="recoup_effects_apply_over_4_seconds_instead" } }, - [8712]={ + [8960]={ [1]={ [1]={ limit={ @@ -191634,7 +197771,7 @@ return { [1]="recoup_life_effects_apply_over_3_seconds_instead" } }, - [8713]={ + [8961]={ [1]={ [1]={ limit={ @@ -191663,7 +197800,7 @@ return { [1]="recoup_speed_+%" } }, - [8714]={ + [8962]={ [1]={ [1]={ limit={ @@ -191679,7 +197816,7 @@ return { [1]="recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits" } }, - [8715]={ + [8963]={ [1]={ [1]={ limit={ @@ -191695,7 +197832,7 @@ return { [1]="recover_%_life_on_heavy_stunning_rare_or_unique_enemy" } }, - [8716]={ + [8964]={ [1]={ [1]={ limit={ @@ -191711,7 +197848,7 @@ return { [1]="recover_%_life_per_endurance_charge_consumed" } }, - [8717]={ + [8965]={ [1]={ [1]={ limit={ @@ -191727,7 +197864,7 @@ return { [1]="recover_%_life_when_you_create_an_offering" } }, - [8718]={ + [8966]={ [1]={ [1]={ limit={ @@ -191743,7 +197880,7 @@ return { [1]="recover_%_mana_when_you_invoke_a_spell" } }, - [8719]={ + [8967]={ [1]={ [1]={ limit={ @@ -191759,7 +197896,7 @@ return { [1]="recover_%_maximum_energy_shield_on_killing_cursed_enemy" } }, - [8720]={ + [8968]={ [1]={ [1]={ limit={ @@ -191768,14 +197905,27 @@ return { [2]="#" } }, - text="Recover {}% of maximum Life when you Kill a Cursed Enemy" + text="Recover {0}% of maximum Life on Kill per 50 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0}% of maximum Life on Kill per 50 Tribute" } }, stats={ - [1]="recover_%_maximum_life_on_killing_cursed_enemy" + [1]="recover_%_maximum_life_on_kill_per_50_tribute" } }, - [8721]={ + [8969]={ [1]={ [1]={ limit={ @@ -191784,27 +197934,30 @@ return { [2]="#" } }, - text="Recover {0}% of maximum Life when you Suppress Spell Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Recover {}% of maximum Life when you Kill a Cursed Enemy" + } + }, + stats={ + [1]="recover_%_maximum_life_on_killing_cursed_enemy" + } + }, + [8970]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Lose {0}% of maximum Life when you Suppress Spell Damage" + text="Recover {0}% of maximum Life per Glory consumed" } }, stats={ - [1]="recover_%_maximum_life_on_suppressing_spell" + [1]="recover_%_maximum_life_per_glory_consumed" } }, - [8722]={ + [8971]={ [1]={ [1]={ limit={ @@ -191820,7 +197973,36 @@ return { [1]="recover_%_maximum_life_when_cursing_non_cursed_enemy" } }, - [8723]={ + [8972]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0}% of maximum Mana on Kill per 50 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0}% of maximum Mana on Kill per 50 Tribute" + } + }, + stats={ + [1]="recover_%_maximum_mana_on_kill_per_50_tribute" + } + }, + [8973]={ [1]={ [1]={ limit={ @@ -191836,7 +198018,7 @@ return { [1]="recover_%_maximum_mana_when_cursing_non_cursed_enemy" } }, - [8724]={ + [8974]={ [1]={ [1]={ limit={ @@ -191852,7 +198034,7 @@ return { [1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity" } }, - [8725]={ + [8975]={ [1]={ [1]={ [1]={ @@ -191872,7 +198054,7 @@ return { [1]="recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds" } }, - [8726]={ + [8976]={ [1]={ [1]={ limit={ @@ -191888,7 +198070,7 @@ return { [1]="recover_X_life_on_enemy_ignited" } }, - [8727]={ + [8977]={ [1]={ [1]={ limit={ @@ -191897,14 +198079,14 @@ return { [2]="#" } }, - text="Recover {} Life when you Suppress Spell Damage" + text="Recover {0} Life for each Fortification lost" } }, stats={ - [1]="recover_X_life_on_suppressing_spell" + [1]="recover_X_life_when_fortification_expires_per_fortification_lost" } }, - [8728]={ + [8978]={ [1]={ [1]={ limit={ @@ -191913,46 +198095,46 @@ return { [2]="#" } }, - text="Recover {0} Life for each Fortification lost" + text="{0:+d} Mana gained on Killing a Frozen Enemy" } }, stats={ - [1]="recover_X_life_when_fortification_expires_per_fortification_lost" + [1]="recover_X_mana_on_killing_frozen_enemy" } }, - [8729]={ + [8979]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d} Mana gained on Killing a Frozen Enemy" + text="Recover {0}% of maximum Energy Shield per Steel Shard Consumed" } }, stats={ - [1]="recover_X_mana_on_killing_frozen_enemy" + [1]="recover_energy_shield_%_on_consuming_steel_shard" } }, - [8730]={ + [8980]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Recover {0}% of maximum Energy Shield per Steel Shard Consumed" + text="Life Regeneration also Recovers Energy Shield" } }, stats={ - [1]="recover_energy_shield_%_on_consuming_steel_shard" + [1]="recover_es_as_well_as_life_from_life_regeneration" } }, - [8731]={ + [8981]={ [1]={ [1]={ limit={ @@ -191961,30 +198143,30 @@ return { [2]="#" } }, - text="Life Regeneration also Recovers Energy Shield" + text="Recover {0}% of your maximum Life when an Enemy dies in your Presence" } }, stats={ - [1]="recover_es_as_well_as_life_from_life_regeneration" + [1]="recover_life_%_on_enemy_death_in_presence" } }, - [8732]={ + [8982]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% chance to Recover all Life when you Kill an Enemy" + text="Recover {0}% of your maximum Mana when an Enemy dies in your Presence" } }, stats={ - [1]="recover_maximum_life_on_enemy_killed_chance_%" + [1]="recover_mana_%_on_enemy_death_in_presence" } }, - [8733]={ + [8983]={ [1]={ [1]={ limit={ @@ -191993,14 +198175,14 @@ return { [2]="#" } }, - text="Recover {0}% of maximum Energy Shield when you Block Spell Damage while wielding a Staff" + text="{0}% chance to Recover all Life when you Kill an Enemy" } }, stats={ - [1]="recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff" + [1]="recover_maximum_life_on_enemy_killed_chance_%" } }, - [8734]={ + [8984]={ [1]={ [1]={ limit={ @@ -192016,7 +198198,7 @@ return { [1]="recover_%_life_when_gaining_adrenaline" } }, - [8735]={ + [8985]={ [1]={ [1]={ limit={ @@ -192032,7 +198214,7 @@ return { [1]="recover_%_life_when_you_block_attack_damage_while_wielding_a_staff" } }, - [8736]={ + [8986]={ [1]={ [1]={ limit={ @@ -192048,7 +198230,7 @@ return { [1]="recover_%_life_when_you_ignite_a_non_ignited_enemy" } }, - [8737]={ + [8987]={ [1]={ [1]={ limit={ @@ -192064,7 +198246,7 @@ return { [1]="recover_%_life_when_you_use_a_life_flask_while_on_low_life" } }, - [8738]={ + [8988]={ [1]={ [1]={ limit={ @@ -192080,7 +198262,7 @@ return { [1]="recover_%_mana_when_attached_brand_expires" } }, - [8739]={ + [8989]={ [1]={ [1]={ limit={ @@ -192096,7 +198278,7 @@ return { [1]="recover_%_maximum_life_on_killing_chilled_enemy" } }, - [8740]={ + [8990]={ [1]={ [1]={ limit={ @@ -192112,7 +198294,7 @@ return { [1]="recover_%_maximum_life_on_killing_enemy_while_you_have_rage" } }, - [8741]={ + [8991]={ [1]={ [1]={ limit={ @@ -192128,7 +198310,23 @@ return { [1]="recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [8742]={ + [8992]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of Maximum Life when you expend at least 10 Combo" + } + }, + stats={ + [1]="recover_%_maximum_life_when_spending_at_least_10_combo" + } + }, + [8993]={ [1]={ [1]={ limit={ @@ -192144,7 +198342,7 @@ return { [1]="recover_%_maximum_mana_on_charm_use" } }, - [8743]={ + [8994]={ [1]={ [1]={ [1]={ @@ -192164,95 +198362,79 @@ return { [1]="recover_%_maximum_mana_when_enemy_frozen_permyriad" } }, - [8744]={ + [8995]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Recover {0}% of maximum Mana over 1 second when you use a Guard Skill" + text="Recover {0}% of Maximum Mana when you expend at least 10 Combo" } }, stats={ - [1]="recover_%_of_maximum_mana_over_1_second_on_guard_skill_use" + [1]="recover_%_maximum_mana_when_spending_at_least_10_combo" } }, - [8745]={ + [8996]={ [1]={ [1]={ - [1]={ - k="divide_by_one_hundred", - v=1 - }, limit={ [1]={ [1]=1, [2]="#" } }, - text="Recover {0}% of maximum Life when you use a Skill" + text="Recover {0}% of maximum Mana over 1 second when you use a Guard Skill" } }, stats={ - [1]="recover_permyriad_life_on_skill_use" + [1]="recover_%_of_maximum_mana_over_1_second_on_guard_skill_use" } }, - [8746]={ + [8997]={ [1]={ [1]={ [1]={ k="divide_by_one_hundred", v=1 }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Recover {0}% of maximum Life per Poison affecting Enemies you Kill" - } - }, - stats={ - [1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill" - } - }, - [8747]={ - [1]={ - [1]={ limit={ [1]={ [1]=1, [2]="#" } }, - text="Recover {} Energy Shield when you Block Spell Damage" + text="Recover {0}% of maximum Life when you use a Skill" } }, stats={ - [1]="recover_x_energy_shield_on_spell_block" + [1]="recover_permyriad_life_on_skill_use" } }, - [8748]={ + [8998]={ [1]={ [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Recover {} Energy Shield when you Suppress Spell Damage" + text="Recover {0}% of maximum Life per Poison affecting Enemies you Kill" } }, stats={ - [1]="recover_x_energy_shield_on_suppressing_spell" + [1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill" } }, - [8749]={ + [8999]={ [1]={ [1]={ limit={ @@ -192281,7 +198463,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [8750]={ + [9000]={ [1]={ [1]={ limit={ @@ -192297,7 +198479,7 @@ return { [1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred" } }, - [8751]={ + [9001]={ [1]={ [1]={ limit={ @@ -192313,7 +198495,7 @@ return { [1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies" } }, - [8752]={ + [9002]={ [1]={ [1]={ limit={ @@ -192329,7 +198511,7 @@ return { [1]="reduce_enemy_fire_resistance_%_while_affected_by_anger" } }, - [8753]={ + [9003]={ [1]={ [1]={ limit={ @@ -192345,7 +198527,7 @@ return { [1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath" } }, - [8754]={ + [9004]={ [1]={ [1]={ limit={ @@ -192361,7 +198543,7 @@ return { [1]="reflect_%_of_physical_damage_prevented" } }, - [8755]={ + [9005]={ [1]={ [1]={ limit={ @@ -192394,7 +198576,7 @@ return { [1]="reflect_damage_taken_and_minion_reflect_damage_taken_+%" } }, - [8756]={ + [9006]={ [1]={ [1]={ limit={ @@ -192410,7 +198592,7 @@ return { [1]="reflect_shocks" } }, - [8757]={ + [9007]={ [1]={ [1]={ limit={ @@ -192443,7 +198625,7 @@ return { [1]="reflected_physical_damage_taken_+%_while_affected_by_determination" } }, - [8758]={ + [9008]={ [1]={ [1]={ limit={ @@ -192459,7 +198641,7 @@ return { [1]="refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy" } }, - [8759]={ + [9009]={ [1]={ [1]={ limit={ @@ -192475,7 +198657,7 @@ return { [1]="refresh_endurance_charges_duration_when_hit_chance_%" } }, - [8760]={ + [9010]={ [1]={ [1]={ limit={ @@ -192491,7 +198673,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [8761]={ + [9011]={ [1]={ [1]={ limit={ @@ -192507,7 +198689,7 @@ return { [1]="regenerate_%_energy_shield_over_1_second_when_stunned" } }, - [8762]={ + [9012]={ [1]={ [1]={ limit={ @@ -192523,7 +198705,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality" } }, - [8763]={ + [9013]={ [1]={ [1]={ limit={ @@ -192539,7 +198721,7 @@ return { [1]="regenerate_%_life_over_1_second_when_stunned" } }, - [8764]={ + [9014]={ [1]={ [1]={ limit={ @@ -192555,7 +198737,7 @@ return { [1]="regenerate_1_rage_per_x_life_regeneration" } }, - [8765]={ + [9015]={ [1]={ [1]={ limit={ @@ -192571,7 +198753,7 @@ return { [1]="regenerate_1_rage_per_x_mana_regeneration" } }, - [8766]={ + [9016]={ [1]={ [1]={ limit={ @@ -192587,7 +198769,7 @@ return { [1]="regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds" } }, - [8767]={ + [9017]={ [1]={ [1]={ limit={ @@ -192603,7 +198785,7 @@ return { [1]="regenerate_energy_shield_instead_of_life" } }, - [8768]={ + [9018]={ [1]={ [1]={ [1]={ @@ -192623,7 +198805,7 @@ return { [1]="regenerate_mana_equal_to_x%_of_life_per_minute" } }, - [8769]={ + [9019]={ [1]={ [1]={ limit={ @@ -192639,7 +198821,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_not_unhinged" } }, - [8770]={ + [9020]={ [1]={ [1]={ limit={ @@ -192655,7 +198837,7 @@ return { [1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse" } }, - [8771]={ + [9021]={ [1]={ [1]={ limit={ @@ -192671,7 +198853,7 @@ return { [1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse" } }, - [8772]={ + [9022]={ [1]={ [1]={ [1]={ @@ -192691,7 +198873,7 @@ return { [1]="regenerate_x_mana_per_minute_while_you_have_arcane_surge" } }, - [8773]={ + [9023]={ [1]={ [1]={ limit={ @@ -192720,7 +198902,142 @@ return { [1]="reload_speed_+%" } }, - [8774]={ + [9024]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Remnants have {0}% increased effect per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Remnants have {0}% reduced effect per 10 Tribute" + } + }, + stats={ + [1]="remnant_effect_+%_per_10_tribute" + } + }, + [9025]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Remnants have {0}% increased effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Remnants have {0}% reduced effect" + } + }, + stats={ + [1]="remnant_effect_+%" + } + }, + [9026]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Remnants can be collected from {0}% further away if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Remnants must be collected from {0}% closer if you have at least 100 Tribute" + } + }, + stats={ + [1]="remnant_pickup_range_+%_if_you_have_at_least_100_tribute" + } + }, + [9027]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Remnants can be collected from {0}% further away" + } + }, + stats={ + [1]="remnant_pickup_range_+%" + } + }, + [9028]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of Maximum Life when you collect a Remnant" + } + }, + stats={ + [1]="remnant_recover_%_life_on_pickup" + } + }, + [9029]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of Maximum Mana when you collect a Remnant" + } + }, + stats={ + [1]="remnant_recover_%_mana_on_pickup" + } + }, + [9030]={ [1]={ [1]={ limit={ @@ -192736,7 +199053,7 @@ return { [1]="remove_ailments_and_burning_on_gaining_adrenaline" } }, - [8775]={ + [9031]={ [1]={ [1]={ limit={ @@ -192752,7 +199069,7 @@ return { [1]="remove_all_damaging_ailments_on_warcry" } }, - [8776]={ + [9032]={ [1]={ [1]={ limit={ @@ -192768,7 +199085,7 @@ return { [1]="remove_bleed_on_life_flask_use" } }, - [8777]={ + [9033]={ [1]={ [1]={ limit={ @@ -192784,7 +199101,7 @@ return { [1]="remove_bleeding_on_warcry" } }, - [8778]={ + [9034]={ [1]={ [1]={ limit={ @@ -192800,7 +199117,7 @@ return { [1]="remove_chill_and_freeze_on_flask_use" } }, - [8779]={ + [9035]={ [1]={ [1]={ limit={ @@ -192816,7 +199133,23 @@ return { [1]="remove_curse_on_mana_flask_use" } }, - [8780]={ + [9036]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Remove a Damaging Ailment when you use a Command Skill" + } + }, + stats={ + [1]="remove_damaging_ailment_on_using_command_skill" + } + }, + [9037]={ [1]={ [1]={ limit={ @@ -192832,7 +199165,7 @@ return { [1]="remove_damaging_ailments_on_swapping_stance" } }, - [8781]={ + [9038]={ [1]={ [1]={ limit={ @@ -192857,7 +199190,7 @@ return { [1]="remove_elemental_ailments_on_curse_cast_%" } }, - [8782]={ + [9039]={ [1]={ [1]={ limit={ @@ -192873,7 +199206,23 @@ return { [1]="remove_ignite_and_burning_on_flask_use" } }, - [8783]={ + [9040]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Remove Ignite when you Warcry" + } + }, + stats={ + [1]="remove_ignite_on_warcry" + } + }, + [9041]={ [1]={ [1]={ limit={ @@ -192889,7 +199238,7 @@ return { [1]="remove_maim_and_hinder_on_flask_use" } }, - [8784]={ + [9042]={ [1]={ [1]={ limit={ @@ -192905,7 +199254,7 @@ return { [1]="remove_%_of_mana_on_hit" } }, - [8785]={ + [9043]={ [1]={ [1]={ limit={ @@ -192921,7 +199270,7 @@ return { [1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder" } }, - [8786]={ + [9044]={ [1]={ [1]={ limit={ @@ -192937,7 +199286,7 @@ return { [1]="remove_random_ailment_when_you_warcry" } }, - [8787]={ + [9045]={ [1]={ [1]={ limit={ @@ -192953,7 +199302,7 @@ return { [1]="remove_random_charge_on_hit_%" } }, - [8788]={ + [9046]={ [1]={ [1]={ limit={ @@ -192969,7 +199318,7 @@ return { [1]="remove_random_elemental_ailment_on_mana_flask_use" } }, - [8789]={ + [9047]={ [1]={ [1]={ limit={ @@ -192985,7 +199334,7 @@ return { [1]="remove_random_non_elemental_ailment_on_life_flask_use" } }, - [8790]={ + [9048]={ [1]={ [1]={ limit={ @@ -193001,7 +199350,7 @@ return { [1]="remove_shock_on_flask_use" } }, - [8791]={ + [9049]={ [1]={ [1]={ limit={ @@ -193026,7 +199375,7 @@ return { [1]="remove_x_curses_after_channelling_for_2_seconds" } }, - [8792]={ + [9050]={ [1]={ [1]={ limit={ @@ -193055,7 +199404,123 @@ return { [1]="replica_unique_hyrris_truth_hatred_mana_reservation_+%_final" } }, - [8793]={ + [9051]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Require {0} additional enemies to be Surrounded" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Require {0} fewer enemies to be Surrounded" + } + }, + stats={ + [1]="required_enemies_to_be_considered_surrounded_offset" + } + }, + [9052]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Companion Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Companion Skills" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_companion_skills" + } + }, + [9053]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Herald Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Herald Skills" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_herald_skills" + } + }, + [9054]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Meta Skills have {0}% increased Reservation Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Meta Skills have {0}% reduced Reservation Efficiency" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_meta_skills" + } + }, + [9055]={ [1]={ [1]={ limit={ @@ -193084,7 +199549,7 @@ return { [1]="reservation_efficiency_+%_with_unique_abyss_jewel_socketed" } }, - [8794]={ + [9056]={ [1]={ [1]={ [1]={ @@ -193117,7 +199582,7 @@ return { [1]="reserve_life_instead_of_loss_from_damage_for_x_ms" } }, - [8795]={ + [9057]={ [1]={ [1]={ limit={ @@ -193133,7 +199598,7 @@ return { [1]="resist_all_%" } }, - [8796]={ + [9058]={ [1]={ [1]={ limit={ @@ -193149,7 +199614,7 @@ return { [1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon" } }, - [8797]={ + [9059]={ [1]={ [1]={ limit={ @@ -193165,7 +199630,7 @@ return { [1]="restore_energy_shield_and_mana_when_you_focus_%" } }, - [8798]={ + [9060]={ [1]={ [1]={ limit={ @@ -193181,7 +199646,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [8799]={ + [9061]={ [1]={ [1]={ [1]={ @@ -193214,7 +199679,7 @@ return { [1]="revive_golems_if_killed_by_enemies_ms" } }, - [8800]={ + [9062]={ [1]={ [1]={ limit={ @@ -193230,7 +199695,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [8801]={ + [9063]={ [1]={ [1]={ limit={ @@ -193259,7 +199724,7 @@ return { [1]="rogue_trader_map_rogue_exile_maximum_life_+%_final" } }, - [8802]={ + [9064]={ [1]={ [1]={ limit={ @@ -193275,7 +199740,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown" } }, - [8803]={ + [9065]={ [1]={ [1]={ limit={ @@ -193291,7 +199756,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown" } }, - [8804]={ + [9066]={ [1]={ [1]={ limit={ @@ -193320,7 +199785,7 @@ return { [1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%" } }, - [8805]={ + [9067]={ [1]={ [1]={ limit={ @@ -193349,7 +199814,7 @@ return { [1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%" } }, - [8806]={ + [9068]={ [1]={ [1]={ limit={ @@ -193365,7 +199830,7 @@ return { [1]="sacrifice_%_life_on_spell_skill" } }, - [8807]={ + [9069]={ [1]={ [1]={ limit={ @@ -193381,7 +199846,7 @@ return { [1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast" } }, - [8808]={ + [9070]={ [1]={ [1]={ limit={ @@ -193410,7 +199875,7 @@ return { [1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground" } }, - [8809]={ + [9071]={ [1]={ [1]={ limit={ @@ -193439,7 +199904,7 @@ return { [1]="sanctify_consecrated_ground_enemy_damage_taken_+%" } }, - [8810]={ + [9072]={ [1]={ [1]={ limit={ @@ -193468,7 +199933,7 @@ return { [1]="sanctify_damage_+%" } }, - [8811]={ + [9073]={ [1]={ [1]={ limit={ @@ -193484,7 +199949,7 @@ return { [1]="sap_on_critical_strike_with_lightning_skills" } }, - [8812]={ + [9074]={ [1]={ [1]={ limit={ @@ -193513,7 +199978,7 @@ return { [1]="scorch_effect_+%" } }, - [8813]={ + [9075]={ [1]={ [1]={ limit={ @@ -193529,7 +199994,7 @@ return { [1]="scorch_enemies_in_close_range_on_block" } }, - [8814]={ + [9076]={ [1]={ [1]={ limit={ @@ -193545,7 +200010,7 @@ return { [1]="scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance" } }, - [8815]={ + [9077]={ [1]={ [1]={ limit={ @@ -193574,7 +200039,7 @@ return { [1]="scourge_arrow_damage_+%" } }, - [8816]={ + [9078]={ [1]={ [1]={ limit={ @@ -193603,7 +200068,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [8817]={ + [9079]={ [1]={ [1]={ limit={ @@ -193619,7 +200084,7 @@ return { [1]="seismic_cry_exerted_attack_damage_+%" } }, - [8818]={ + [9080]={ [1]={ [1]={ limit={ @@ -193635,7 +200100,36 @@ return { [1]="seismic_cry_minimum_power" } }, - [8819]={ + [9081]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Duration of Bleeding on You" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Duration of Bleeding on You" + } + }, + stats={ + [1]="self_bleed_duration_+%" + } + }, + [9082]={ [1]={ [1]={ [1]={ @@ -193655,7 +200149,7 @@ return { [1]="self_chaos_damage_taken_per_minute_per_endurance_charge" } }, - [8820]={ + [9083]={ [1]={ [1]={ [1]={ @@ -193675,7 +200169,7 @@ return { [1]="self_chaos_damage_taken_per_minute_while_affected_by_flask" } }, - [8821]={ + [9084]={ [1]={ [1]={ limit={ @@ -193691,7 +200185,7 @@ return { [1]="self_cold_damage_on_reaching_maximum_power_charges" } }, - [8822]={ + [9085]={ [1]={ [1]={ limit={ @@ -193720,7 +200214,7 @@ return { [1]="self_critical_strike_multiplier_+%_while_ignited" } }, - [8823]={ + [9086]={ [1]={ [1]={ limit={ @@ -193749,7 +200243,7 @@ return { [1]="self_curse_duration_+%_per_10_devotion" } }, - [8824]={ + [9087]={ [1]={ [1]={ limit={ @@ -193778,7 +200272,7 @@ return { [1]="self_elemental_status_duration_-%_per_10_devotion" } }, - [8825]={ + [9088]={ [1]={ [1]={ limit={ @@ -193794,7 +200288,7 @@ return { [1]="self_physical_damage_on_movement_skill_use" } }, - [8826]={ + [9089]={ [1]={ [1]={ limit={ @@ -193810,7 +200304,7 @@ return { [1]="self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action" } }, - [8827]={ + [9090]={ [1]={ [1]={ limit={ @@ -193826,7 +200320,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently" } }, - [8828]={ + [9091]={ [1]={ [1]={ limit={ @@ -193842,7 +200336,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item" } }, - [8829]={ + [9092]={ [1]={ [1]={ limit={ @@ -193858,7 +200352,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy" } }, - [8830]={ + [9093]={ [1]={ [1]={ limit={ @@ -193874,7 +200368,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [8831]={ + [9094]={ [1]={ [1]={ limit={ @@ -193890,7 +200384,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive" } }, - [8832]={ + [9095]={ [1]={ [1]={ limit={ @@ -193919,7 +200413,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [8833]={ + [9096]={ [1]={ [1]={ limit={ @@ -193948,7 +200442,7 @@ return { [1]="sentinel_of_purity_damage_+%" } }, - [8834]={ + [9097]={ [1]={ [1]={ limit={ @@ -193973,7 +200467,7 @@ return { [1]="serpent_strike_maximum_snakes" } }, - [8835]={ + [9098]={ [1]={ [1]={ limit={ @@ -193989,7 +200483,7 @@ return { [1]="share_charges_with_allies_in_your_presence" } }, - [8836]={ + [9099]={ [1]={ [1]={ limit={ @@ -194005,7 +200499,7 @@ return { [1]="shatter_has_%_chance_to_cover_in_frost" } }, - [8837]={ + [9100]={ [1]={ [1]={ limit={ @@ -194021,7 +200515,7 @@ return { [1]="shatter_on_kill_if_fully_broken_armour" } }, - [8838]={ + [9101]={ [1]={ [1]={ limit={ @@ -194037,7 +200531,7 @@ return { [1]="shatter_on_kill_vs_bleeding_enemies" } }, - [8839]={ + [9102]={ [1]={ [1]={ limit={ @@ -194053,7 +200547,7 @@ return { [1]="shatter_on_kill_vs_poisoned_enemies" } }, - [8840]={ + [9103]={ [1]={ [1]={ limit={ @@ -194082,7 +200576,7 @@ return { [1]="shattering_steel_damage_+%" } }, - [8841]={ + [9104]={ [1]={ [1]={ limit={ @@ -194098,7 +200592,7 @@ return { [1]="shattering_steel_fortify_on_hit_close_range" } }, - [8842]={ + [9105]={ [1]={ [1]={ limit={ @@ -194123,7 +200617,7 @@ return { [1]="shattering_steel_number_of_additional_projectiles" } }, - [8843]={ + [9106]={ [1]={ [1]={ limit={ @@ -194139,7 +200633,7 @@ return { [1]="shattering_steel_%_chance_to_not_consume_ammo" } }, - [8844]={ + [9107]={ [1]={ [1]={ limit={ @@ -194155,7 +200649,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating" } }, - [8845]={ + [9108]={ [1]={ [1]={ limit={ @@ -194176,7 +200670,7 @@ return { [2]="shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield" } }, - [8846]={ + [9109]={ [1]={ [1]={ limit={ @@ -194205,7 +200699,7 @@ return { [1]="shield_crush_attack_speed_+%" } }, - [8847]={ + [9110]={ [1]={ [1]={ limit={ @@ -194234,7 +200728,7 @@ return { [1]="shield_crush_damage_+%" } }, - [8848]={ + [9111]={ [1]={ [1]={ limit={ @@ -194263,7 +200757,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [8849]={ + [9112]={ [1]={ [1]={ limit={ @@ -194292,7 +200786,36 @@ return { [1]="shield_defences_+%" } }, - [8850]={ + [9113]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Defences from Equipped Shield per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Defences from Equipped Shield per 25 Tribute" + } + }, + stats={ + [1]="shield_defences_+%_per_25_tribute" + } + }, + [9114]={ [1]={ [1]={ limit={ @@ -194321,7 +200844,7 @@ return { [1]="shield_defences_+%_per_10_devotion" } }, - [8851]={ + [9115]={ [1]={ [1]={ limit={ @@ -194350,7 +200873,7 @@ return { [1]="shock_and_freeze_apply_elemental_damage_taken_+%" } }, - [8852]={ + [9116]={ [1]={ [1]={ limit={ @@ -194375,7 +200898,7 @@ return { [1]="shock_attackers_for_4_seconds_on_block_%_chance" } }, - [8853]={ + [9117]={ [1]={ [1]={ limit={ @@ -194404,7 +200927,7 @@ return { [1]="shock_chance_+%_vs_electrocuted_enemies" } }, - [8854]={ + [9118]={ [1]={ [1]={ limit={ @@ -194433,7 +200956,7 @@ return { [1]="shock_effect_against_cursed_enemies_+%" } }, - [8855]={ + [9119]={ [1]={ [1]={ limit={ @@ -194462,7 +200985,36 @@ return { [1]="shock_effect_+%" } }, - [8856]={ + [9120]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Shock if you've consumed a Frenzy Charge Recently" + } + }, + stats={ + [1]="shock_effect_+%_if_consumed_frenzy_charge_recently" + } + }, + [9121]={ [1]={ [1]={ limit={ @@ -194491,7 +201043,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [8857]={ + [9122]={ [1]={ [1]={ limit={ @@ -194507,7 +201059,7 @@ return { [1]="shock_enemies_in_150cm_radius_on_shock_chance_%" } }, - [8858]={ + [9123]={ [1]={ [1]={ limit={ @@ -194523,7 +201075,7 @@ return { [1]="shock_magnitude_calculated_from_damage" } }, - [8859]={ + [9124]={ [1]={ [1]={ limit={ @@ -194539,7 +201091,7 @@ return { [1]="shock_maximum_magnitude_is_60%" } }, - [8860]={ + [9125]={ [1]={ [1]={ limit={ @@ -194555,7 +201107,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [8861]={ + [9126]={ [1]={ [1]={ [1]={ @@ -194575,7 +201127,7 @@ return { [1]="shock_self_for_x_ms_when_you_focus" } }, - [8862]={ + [9127]={ [1]={ [1]={ [1]={ @@ -194595,7 +201147,7 @@ return { [1]="shock_nearby_enemies_for_x_ms_when_you_focus" } }, - [8863]={ + [9128]={ [1]={ [1]={ limit={ @@ -194611,7 +201163,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [8864]={ + [9129]={ [1]={ [1]={ limit={ @@ -194640,7 +201192,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [8865]={ + [9130]={ [1]={ [1]={ limit={ @@ -194669,7 +201221,7 @@ return { [1]="shocked_chilled_effect_on_self_+%" } }, - [8866]={ + [9131]={ [1]={ [1]={ limit={ @@ -194702,7 +201254,7 @@ return { [1]="shocked_effect_on_self_+%" } }, - [8867]={ + [9132]={ [1]={ [1]={ limit={ @@ -194718,7 +201270,7 @@ return { [1]="shocked_enemies_explode_for_%_life_as_lightning_damage" } }, - [8868]={ + [9133]={ [1]={ [1]={ limit={ @@ -194747,7 +201299,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [8869]={ + [9134]={ [1]={ [1]={ limit={ @@ -194772,7 +201324,7 @@ return { [1]="shocked_ground_on_death_%" } }, - [8870]={ + [9135]={ [1]={ [1]={ limit={ @@ -194797,7 +201349,7 @@ return { [1]="shrapnel_ballista_num_additional_arrows" } }, - [8871]={ + [9136]={ [1]={ [1]={ limit={ @@ -194822,7 +201374,7 @@ return { [1]="shrapnel_ballista_num_pierce" } }, - [8872]={ + [9137]={ [1]={ [1]={ limit={ @@ -194851,7 +201403,7 @@ return { [1]="shrapnel_ballista_projectile_speed_+%" } }, - [8873]={ + [9138]={ [1]={ [1]={ limit={ @@ -194880,7 +201432,7 @@ return { [1]="shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%" } }, - [8874]={ + [9139]={ [1]={ [1]={ limit={ @@ -194909,7 +201461,7 @@ return { [1]="galvanic_arrow_area_damage_+%" } }, - [8875]={ + [9140]={ [1]={ [1]={ limit={ @@ -194938,7 +201490,7 @@ return { [1]="shrapnel_trap_area_of_effect_+%" } }, - [8876]={ + [9141]={ [1]={ [1]={ limit={ @@ -194967,7 +201519,7 @@ return { [1]="shrapnel_trap_damage_+%" } }, - [8877]={ + [9142]={ [1]={ [1]={ limit={ @@ -194992,7 +201544,7 @@ return { [1]="shrapnel_trap_number_of_additional_secondary_explosions" } }, - [8878]={ + [9143]={ [1]={ [1]={ limit={ @@ -195021,7 +201573,7 @@ return { [1]="siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%" } }, - [8879]={ + [9144]={ [1]={ [1]={ limit={ @@ -195050,7 +201602,7 @@ return { [1]="sigil_attached_target_damage_+%" } }, - [8880]={ + [9145]={ [1]={ [1]={ limit={ @@ -195079,7 +201631,7 @@ return { [1]="sigil_attached_target_damage_taken_+%" } }, - [8881]={ + [9146]={ [1]={ [1]={ limit={ @@ -195108,7 +201660,7 @@ return { [1]="sigil_critical_strike_chance_+%" } }, - [8882]={ + [9147]={ [1]={ [1]={ limit={ @@ -195124,7 +201676,7 @@ return { [1]="sigil_critical_strike_multiplier_+" } }, - [8883]={ + [9148]={ [1]={ [1]={ limit={ @@ -195153,7 +201705,7 @@ return { [1]="sigil_damage_+%" } }, - [8884]={ + [9149]={ [1]={ [1]={ limit={ @@ -195182,7 +201734,7 @@ return { [1]="sigil_damage_+%_per_10_devotion" } }, - [8885]={ + [9150]={ [1]={ [1]={ limit={ @@ -195211,7 +201763,7 @@ return { [1]="sigil_duration_+%" } }, - [8886]={ + [9151]={ [1]={ [1]={ limit={ @@ -195240,7 +201792,7 @@ return { [1]="sigil_recall_cooldown_speed_+%" } }, - [8887]={ + [9152]={ [1]={ [1]={ limit={ @@ -195269,7 +201821,7 @@ return { [1]="sigil_recall_cooldown_speed_+%_per_brand_up_to_40%" } }, - [8888]={ + [9153]={ [1]={ [1]={ limit={ @@ -195298,7 +201850,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [8889]={ + [9154]={ [1]={ [1]={ limit={ @@ -195327,7 +201879,7 @@ return { [1]="sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently" } }, - [8890]={ + [9155]={ [1]={ [1]={ limit={ @@ -195356,7 +201908,7 @@ return { [1]="sigil_target_search_range_+%" } }, - [8891]={ + [9156]={ [1]={ [1]={ limit={ @@ -195385,7 +201937,7 @@ return { [1]="skeletal_chains_area_of_effect_+%" } }, - [8892]={ + [9157]={ [1]={ [1]={ limit={ @@ -195414,7 +201966,7 @@ return { [1]="skeletal_chains_cast_speed_+%" } }, - [8893]={ + [9158]={ [1]={ [1]={ limit={ @@ -195443,7 +201995,7 @@ return { [1]="skeleton_attack_speed_+%" } }, - [8894]={ + [9159]={ [1]={ [1]={ limit={ @@ -195472,7 +202024,36 @@ return { [1]="skeleton_cast_speed_+%" } }, - [8895]={ + [9160]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Skills which summon Skeletons" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Skills which summon Skeletons" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_skeleton_minion_skills" + } + }, + [9161]={ [1]={ [1]={ limit={ @@ -195505,7 +202086,7 @@ return { [1]="skeleton_minion_reservation_+%" } }, - [8896]={ + [9162]={ [1]={ [1]={ limit={ @@ -195534,7 +202115,7 @@ return { [1]="skeleton_movement_speed_+%" } }, - [8897]={ + [9163]={ [1]={ [1]={ limit={ @@ -195550,7 +202131,7 @@ return { [1]="skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element" } }, - [8898]={ + [9164]={ [1]={ [1]={ limit={ @@ -195566,7 +202147,7 @@ return { [1]="skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments" } }, - [8899]={ + [9165]={ [1]={ [1]={ limit={ @@ -195582,7 +202163,23 @@ return { [1]="skeletons_are_permanent_minions" } }, - [8900]={ + [9166]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fissure Skills have a {0}% chance to create an additional Fissure" + } + }, + stats={ + [1]="skill_additional_fissure_chance_%" + } + }, + [9167]={ [1]={ [1]={ limit={ @@ -195598,7 +202195,7 @@ return { [1]="skill_can_see_monster_categories" } }, - [8901]={ + [9168]={ [1]={ [1]={ limit={ @@ -195614,7 +202211,36 @@ return { [1]="skill_cost_base_life_equal_to_base_mana" } }, - [8902]={ + [9169]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency of Skills if you've consumed a Power Charge Recently" + } + }, + stats={ + [1]="skill_cost_efficiency_+%_if_consumed_power_charge_recently" + } + }, + [9170]={ [1]={ [1]={ limit={ @@ -195643,7 +202269,7 @@ return { [1]="skill_detonation_time_+%" } }, - [8903]={ + [9171]={ [1]={ [1]={ limit={ @@ -195672,7 +202298,7 @@ return { [1]="skill_effect_duration_+%_while_affected_by_malevolence" } }, - [8904]={ + [9172]={ [1]={ [1]={ limit={ @@ -195701,7 +202327,7 @@ return { [1]="skill_effect_duration_+%_with_bow_skills" } }, - [8905]={ + [9173]={ [1]={ [1]={ limit={ @@ -195730,7 +202356,7 @@ return { [1]="skill_effect_duration_+%_with_non_curse_aura_skills" } }, - [8906]={ + [9174]={ [1]={ [1]={ limit={ @@ -195746,7 +202372,7 @@ return { [1]="skill_life_cost_+_with_channelling_skills" } }, - [8907]={ + [9175]={ [1]={ [1]={ limit={ @@ -195762,7 +202388,7 @@ return { [1]="skill_life_cost_+_with_non_channelling_skills" } }, - [8908]={ + [9176]={ [1]={ [1]={ limit={ @@ -195778,7 +202404,7 @@ return { [1]="skill_mana_cost_+_while_affected_by_clarity" } }, - [8909]={ + [9177]={ [1]={ [1]={ limit={ @@ -195794,7 +202420,7 @@ return { [1]="skill_mana_cost_+_with_channelling_skills" } }, - [8910]={ + [9178]={ [1]={ [1]={ limit={ @@ -195810,7 +202436,7 @@ return { [1]="base_mana_cost_+_with_channelling_skills" } }, - [8911]={ + [9179]={ [1]={ [1]={ limit={ @@ -195826,7 +202452,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills" } }, - [8912]={ + [9180]={ [1]={ [1]={ limit={ @@ -195842,7 +202468,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_skills" } }, - [8913]={ + [9181]={ [1]={ [1]={ limit={ @@ -195858,7 +202484,23 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity" } }, - [8914]={ + [9182]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Skill Mana costs Converted to Life Costs during any Life Flask Effect" + } + }, + stats={ + [1]="skill_mana_costs_converted_to_life_costs_%_during_life_flask" + } + }, + [9183]={ [1]={ [1]={ limit={ @@ -195887,7 +202529,36 @@ return { [1]="skill_speed_+%_against_bloodlusting_enemies" } }, - [8915]={ + [9184]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Skill Speed if you've consumed a Frenzy Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Skill Speed if you've consumed a Frenzy Charge Recently" + } + }, + stats={ + [1]="skill_speed_+%_if_consumed_frenzy_charge_recently" + } + }, + [9185]={ [1]={ [1]={ limit={ @@ -195916,7 +202587,7 @@ return { [1]="skill_speed_+%_per_socketed_green_support_gem" } }, - [8916]={ + [9186]={ [1]={ [1]={ limit={ @@ -195932,7 +202603,7 @@ return { [1]="skills_cost_no_mana_while_focused" } }, - [8917]={ + [9187]={ [1]={ [1]={ limit={ @@ -195948,7 +202619,7 @@ return { [1]="skills_deal_you_x%_of_mana_cost_as_physical_damage" } }, - [8918]={ + [9188]={ [1]={ [1]={ limit={ @@ -195973,7 +202644,7 @@ return { [1]="skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo" } }, - [8919]={ + [9189]={ [1]={ [1]={ [1]={ @@ -195993,7 +202664,7 @@ return { [1]="skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [8920]={ + [9190]={ [1]={ [1]={ [1]={ @@ -196013,7 +202684,7 @@ return { [1]="skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [8921]={ + [9191]={ [1]={ [1]={ limit={ @@ -196042,7 +202713,7 @@ return { [1]="skills_supported_by_nightblade_have_elusive_effect_+%" } }, - [8922]={ + [9192]={ [1]={ [1]={ [1]={ @@ -196079,7 +202750,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_-2%_per_1" } }, - [8923]={ + [9193]={ [1]={ [1]={ limit={ @@ -196108,7 +202779,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_+%" } }, - [8924]={ + [9194]={ [1]={ [1]={ limit={ @@ -196133,7 +202804,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [8925]={ + [9195]={ [1]={ [1]={ limit={ @@ -196162,7 +202833,7 @@ return { [1]="slam_skill_area_of_effect_+%" } }, - [8926]={ + [9196]={ [1]={ [1]={ limit={ @@ -196178,7 +202849,7 @@ return { [1]="slams_always_ancestral_slam" } }, - [8927]={ + [9197]={ [1]={ [1]={ limit={ @@ -196207,7 +202878,7 @@ return { [1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%" } }, - [8928]={ + [9198]={ [1]={ [1]={ limit={ @@ -196223,7 +202894,7 @@ return { [1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100" } }, - [8929]={ + [9199]={ [1]={ [1]={ limit={ @@ -196252,7 +202923,7 @@ return { [1]="slayer_damage_+%_final_against_unique_enemies" } }, - [8930]={ + [9200]={ [1]={ [1]={ limit={ @@ -196281,7 +202952,7 @@ return { [1]="slayer_damage_+%_final_from_distance" } }, - [8931]={ + [9201]={ [1]={ [1]={ limit={ @@ -196310,7 +202981,7 @@ return { [1]="slither_elusive_effect_+%" } }, - [8932]={ + [9202]={ [1]={ [1]={ limit={ @@ -196326,7 +202997,40 @@ return { [1]="slither_wither_stacks" } }, - [8933]={ + [9203]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Slowing Potency of Debuffs on You if you've used a Charm Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" + } + }, + stats={ + [1]="slow_potency_+%_if_you_have_used_a_charm_recently" + } + }, + [9204]={ [1]={ [1]={ limit={ @@ -196342,7 +203046,7 @@ return { [1]="slows_have_no_potency_on_you" } }, - [8934]={ + [9205]={ [1]={ [1]={ limit={ @@ -196371,7 +203075,7 @@ return { [1]="small_passives_effect_+%" } }, - [8935]={ + [9206]={ [1]={ [1]={ limit={ @@ -196387,7 +203091,7 @@ return { [1]="smite_aura_effect_+%" } }, - [8936]={ + [9207]={ [1]={ [1]={ limit={ @@ -196403,7 +203107,7 @@ return { [1]="smite_chance_for_lighting_to_strike_extra_target_%" } }, - [8937]={ + [9208]={ [1]={ [1]={ limit={ @@ -196432,7 +203136,7 @@ return { [1]="smite_damage_+%" } }, - [8938]={ + [9209]={ [1]={ [1]={ limit={ @@ -196448,7 +203152,7 @@ return { [1]="smite_static_strike_killing_blow_consumes_corpse_restore_%_life" } }, - [8939]={ + [9210]={ [1]={ [1]={ limit={ @@ -196464,7 +203168,36 @@ return { [1]="smoke_cloud_while_stationary_radius" } }, - [8940]={ + [9211]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for blasts originating from a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for blasts originating from a Unique enemy" + } + }, + stats={ + [1]="snap_damage_+%_final_if_created_from_unique" + } + }, + [9212]={ [1]={ [1]={ limit={ @@ -196493,7 +203226,7 @@ return { [1]="snapping_adder_damage_+%" } }, - [8941]={ + [9213]={ [1]={ [1]={ limit={ @@ -196509,7 +203242,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [8942]={ + [9214]={ [1]={ [1]={ limit={ @@ -196534,7 +203267,7 @@ return { [1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance" } }, - [8943]={ + [9215]={ [1]={ [1]={ limit={ @@ -196563,7 +203296,36 @@ return { [1]="snipe_attack_speed_+%" } }, - [8944]={ + [9216]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage with Hits for explosions originating from a Unique enemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage with Hits for explosions originating from a Unique enemy" + } + }, + stats={ + [1]="snipe_damage_+%_final_if_created_from_unique" + } + }, + [9217]={ [1]={ [1]={ [1]={ @@ -196605,7 +203367,7 @@ return { [2]="solaris_spear_number_of_pulses" } }, - [8945]={ + [9218]={ [1]={ [1]={ limit={ @@ -196634,7 +203396,7 @@ return { [1]="sorcery_ward_+%_strength" } }, - [8946]={ + [9219]={ [1]={ [1]={ limit={ @@ -196659,7 +203421,7 @@ return { [1]="soul_eater_maximum_stacks" } }, - [8947]={ + [9220]={ [1]={ [1]={ limit={ @@ -196688,7 +203450,7 @@ return { [1]="soul_link_duration_+%" } }, - [8948]={ + [9221]={ [1]={ [1]={ limit={ @@ -196704,7 +203466,7 @@ return { [1]="soulfeast_number_of_secondary_projectiles" } }, - [8949]={ + [9222]={ [1]={ [1]={ limit={ @@ -196737,7 +203499,7 @@ return { [1]="soulrend_applies_hinder_movement_speed_+%" } }, - [8950]={ + [9223]={ [1]={ [1]={ limit={ @@ -196766,7 +203528,7 @@ return { [1]="soulrend_damage_+%" } }, - [8951]={ + [9224]={ [1]={ [1]={ limit={ @@ -196791,7 +203553,7 @@ return { [1]="soulrend_number_of_additional_projectiles" } }, - [8952]={ + [9225]={ [1]={ [1]={ limit={ @@ -196816,7 +203578,7 @@ return { [1]="spark_number_of_additional_projectiles" } }, - [8953]={ + [9226]={ [1]={ [1]={ limit={ @@ -196832,7 +203594,7 @@ return { [1]="spark_projectiles_nova" } }, - [8954]={ + [9227]={ [1]={ [1]={ limit={ @@ -196865,7 +203627,7 @@ return { [1]="spark_skill_effect_duration_+%" } }, - [8955]={ + [9228]={ [1]={ [1]={ limit={ @@ -196890,7 +203652,7 @@ return { [1]="spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent" } }, - [8956]={ + [9229]={ [1]={ [1]={ limit={ @@ -196906,7 +203668,7 @@ return { [1]="spawn_defender_with_totem" } }, - [8957]={ + [9230]={ [1]={ [1]={ limit={ @@ -196931,7 +203693,7 @@ return { [1]="spear_throws_consume_frenzy_charge_to_fire_additional_projectiles" } }, - [8958]={ + [9231]={ [1]={ [1]={ limit={ @@ -196960,7 +203722,7 @@ return { [1]="spectral_helix_damage_+%" } }, - [8959]={ + [9232]={ [1]={ [1]={ limit={ @@ -196989,7 +203751,7 @@ return { [1]="spectral_helix_projectile_speed_+%" } }, - [8960]={ + [9233]={ [1]={ [1]={ [1]={ @@ -197009,7 +203771,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [8961]={ + [9234]={ [1]={ [1]={ limit={ @@ -197034,7 +203796,7 @@ return { [1]="spectral_shield_throw_additional_chains" } }, - [8962]={ + [9235]={ [1]={ [1]={ limit={ @@ -197063,7 +203825,7 @@ return { [1]="spectral_shield_throw_damage_+%" } }, - [8963]={ + [9236]={ [1]={ [1]={ limit={ @@ -197088,7 +203850,7 @@ return { [1]="spectral_shield_throw_num_of_additional_projectiles" } }, - [8964]={ + [9237]={ [1]={ [1]={ limit={ @@ -197117,7 +203879,7 @@ return { [1]="spectral_shield_throw_projectile_speed_+%" } }, - [8965]={ + [9238]={ [1]={ [1]={ limit={ @@ -197133,7 +203895,7 @@ return { [1]="spectral_shield_throw_secondary_projectiles_pierce" } }, - [8966]={ + [9239]={ [1]={ [1]={ [1]={ @@ -197162,7 +203924,7 @@ return { [1]="spectral_shield_throw_shard_projectiles_+%_final" } }, - [8967]={ + [9240]={ [1]={ [1]={ limit={ @@ -197187,7 +203949,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [8968]={ + [9241]={ [1]={ [1]={ [1]={ @@ -197207,7 +203969,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [8969]={ + [9242]={ [1]={ [1]={ limit={ @@ -197223,7 +203985,7 @@ return { [1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%" } }, - [8970]={ + [9243]={ [1]={ [1]={ limit={ @@ -197239,7 +204001,7 @@ return { [1]="spectre_maximum_life_+" } }, - [8971]={ + [9244]={ [1]={ [1]={ limit={ @@ -197272,7 +204034,7 @@ return { [1]="demon_minion_reservation_+%" } }, - [8972]={ + [9245]={ [1]={ [1]={ limit={ @@ -197301,7 +204063,7 @@ return { [1]="spectre_zombie_skeleton_critical_strike_multiplier_+" } }, - [8973]={ + [9246]={ [1]={ [1]={ limit={ @@ -197317,7 +204079,7 @@ return { [1]="spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised" } }, - [8974]={ + [9247]={ [1]={ [1]={ limit={ @@ -197333,7 +204095,7 @@ return { [1]="spectres_critical_strike_chance_+%" } }, - [8975]={ + [9248]={ [1]={ [1]={ limit={ @@ -197349,7 +204111,7 @@ return { [1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance" } }, - [8976]={ + [9249]={ [1]={ [1]={ [1]={ @@ -197369,7 +204131,7 @@ return { [1]="spectres_have_base_duration_ms" } }, - [8977]={ + [9250]={ [1]={ [1]={ [1]={ @@ -197389,7 +204151,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad" } }, - [8978]={ + [9251]={ [1]={ [1]={ limit={ @@ -197410,7 +204172,7 @@ return { [2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect" } }, - [8979]={ + [9252]={ [1]={ [1]={ limit={ @@ -197439,7 +204201,7 @@ return { [1]="spell_area_damage_+%" } }, - [8980]={ + [9253]={ [1]={ [1]={ limit={ @@ -197468,96 +204230,86 @@ return { [1]="spell_area_of_effect_+%" } }, - [8981]={ + [9254]={ [1]={ [1]={ limit={ [1]={ [1]="#", - [2]="#" + [2]=99 } }, - text="{:+d}% chance to Block Spell Damage while holding a Staff or Shield" - } - }, - stats={ - [1]="spell_block_chance_%_while_holding_staff_or_shield" - } - }, - [8982]={ - [1]={ - [1]={ + text="Spells have a {0}% chance to deal Double Damage" + }, + [2]={ limit={ [1]={ - [1]="#", - [2]="#" + [1]=100, + [2]=100 } }, - text="{0:+d}% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" + text="Spells Deal Double Damage" } }, stats={ - [1]="spell_block_%_if_blocked_a_spell_recently" + [1]="spell_chance_to_deal_double_damage_%" } }, - [8983]={ + [9255]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d}% chance to Block Spell Damage if you have Blocked Attack Damage Recently" - } - }, - stats={ - [1]="spell_block_%_if_blocked_an_attack_recently" - } - }, - [8984]={ - [1]={ - [1]={ + text="{0}% increased Critical Hit Chance with Spells which remove the maximum number of Seals" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="{0:+d}% Chance to Block Spell Damage while at Maximum Power Charges" + text="{0}% reduced Critical Hit Chance with Spells which remove the maximum number of Seals" } }, stats={ - [1]="spell_block_%_while_at_max_power_charges" + [1]="spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals" } }, - [8985]={ + [9256]={ [1]={ [1]={ limit={ [1]={ - [1]="#", - [2]=99 + [1]=1, + [2]="#" } }, - text="Spells have a {0}% chance to deal Double Damage" + text="Non-Channelling Spells have {0}% increased Critical Hit Chance per 100 maximum Life" }, [2]={ limit={ [1]={ - [1]=100, - [2]=100 + [1]="#", + [2]=-1 } }, - text="Spells Deal Double Damage" + text="Non-Channelling Spells have {0}% reduced Critical Hit Chance per 100 maximum Life" } }, stats={ - [1]="spell_chance_to_deal_double_damage_%" + [1]="spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills" } }, - [8986]={ + [9257]={ [1]={ [1]={ limit={ @@ -197566,7 +204318,7 @@ return { [2]="#" } }, - text="{0}% increased Critical Hit Chance with Spells which remove the maximum number of Seals" + text="{0}% increased Spell Critical Hit Chance per 100 Player Maximum Life" }, [2]={ [1]={ @@ -197579,14 +204331,14 @@ return { [2]=-1 } }, - text="{0}% reduced Critical Hit Chance with Spells which remove the maximum number of Seals" + text="{0}% reduced Spell Critical Hit Chance per 100 Player Maximum Life" } }, stats={ - [1]="spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals" + [1]="spell_critical_strike_chance_+%_per_100_max_life" } }, - [8987]={ + [9258]={ [1]={ [1]={ limit={ @@ -197595,23 +204347,27 @@ return { [2]="#" } }, - text="Non-Channelling Spells have {0}% increased Critical Hit Chance per 100 maximum Life" + text="{0}% increased Spell Critical Hit Chance per Raised Spectre" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="Non-Channelling Spells have {0}% reduced Critical Hit Chance per 100 maximum Life" + text="{0}% reduced Spell Critical Hit Chance per Raised Spectre" } }, stats={ - [1]="spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills" + [1]="spell_critical_strike_chance_+%_per_raised_spectre" } }, - [8988]={ + [9259]={ [1]={ [1]={ limit={ @@ -197620,7 +204376,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Critical Hit Chance per 100 Player Maximum Life" + text="{0}% more Spell Damage if you've been Stunned while Casting Recently" }, [2]={ [1]={ @@ -197633,14 +204389,14 @@ return { [2]=-1 } }, - text="{0}% reduced Spell Critical Hit Chance per 100 Player Maximum Life" + text="{0}% less Spell Damage if you've been Stunned while Casting Recently" } }, stats={ - [1]="spell_critical_strike_chance_+%_per_100_max_life" + [1]="spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently" } }, - [8989]={ + [9260]={ [1]={ [1]={ limit={ @@ -197649,7 +204405,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Critical Hit Chance per Raised Spectre" + text="{0}% increased Spell Damage if you have consumed an Elemental Infusion Recently" }, [2]={ [1]={ @@ -197662,46 +204418,43 @@ return { [2]=-1 } }, - text="{0}% reduced Spell Critical Hit Chance per Raised Spectre" + text="{0}% reduced Spell Damage if you have consumed an Elemental Infusion Recently" } }, stats={ - [1]="spell_critical_strike_chance_+%_per_raised_spectre" + [1]="spell_damage_+%_if_have_consumed_infusion_recently" } }, - [8990]={ + [9261]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Prevent {0:+d}% of Suppressed Spell Damage if you've taken a Savage Hit Recently" - } - }, - stats={ - [1]="spell_damage_%_suppressed_if_taken_a_savage_hit_recently" - } - }, - [8991]={ - [1]={ - [1]={ + text="{0}% increased Spell Damage if you've dealt a Critical Hit Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Prevent {0:+d}% of Suppressed Spell Damage per Hit Suppressed Recently" + text="{0}% reduced Spell Damage if you've dealt a Critical Hit Recently" } }, stats={ - [1]="spell_damage_%_suppressed_per_hit_suppressed_recently" + [1]="spell_damage_+%_if_have_crit_recently" } }, - [8992]={ + [9262]={ [1]={ [1]={ limit={ @@ -197710,7 +204463,7 @@ return { [2]="#" } }, - text="{0}% more Spell Damage if you've been Stunned while Casting Recently" + text="{0}% increased Spell Damage if one of your Minions has died Recently" }, [2]={ [1]={ @@ -197723,14 +204476,14 @@ return { [2]=-1 } }, - text="{0}% less Spell Damage if you've been Stunned while Casting Recently" + text="{0}% reduced Spell Damage if one of your Minions has died Recently" } }, stats={ - [1]="spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently" + [1]="spell_damage_+%_if_minion_died_recently" } }, - [8993]={ + [9263]={ [1]={ [1]={ limit={ @@ -197739,7 +204492,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Damage if you've dealt a Critical Hit Recently" + text="{0}% increased Spell Damage per 500 Maximum Mana" }, [2]={ [1]={ @@ -197752,14 +204505,14 @@ return { [2]=-1 } }, - text="{0}% reduced Spell Damage if you've dealt a Critical Hit Recently" + text="{0}% redcued Spell Damage per 500 Maximum Mana" } }, stats={ - [1]="spell_damage_+%_if_have_crit_recently" + [1]="spell_damage_+%_per_500_maximum_mana" } }, - [8994]={ + [9264]={ [1]={ [1]={ limit={ @@ -197768,7 +204521,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Damage per 500 Maximum Mana" + text="{0}% increased Spell Damage while wielding a Melee Weapon" }, [2]={ [1]={ @@ -197781,14 +204534,14 @@ return { [2]=-1 } }, - text="{0}% redcued Spell Damage per 500 Maximum Mana" + text="{0}% reduced Spell Damage while wielding a Melee Weapon" } }, stats={ - [1]="spell_damage_+%_per_500_maximum_mana" + [1]="spell_damage_+%_while_wielding_melee_weapon" } }, - [8995]={ + [9265]={ [1]={ [1]={ limit={ @@ -197797,7 +204550,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Damage while wielding a Melee Weapon" + text="{0}% increased Spell Damage with Spells that cost Life" }, [2]={ [1]={ @@ -197810,14 +204563,14 @@ return { [2]=-1 } }, - text="{0}% reduced Spell Damage while wielding a Melee Weapon" + text="{0}% reduced Spell Damage with Spells that cost Life" } }, stats={ - [1]="spell_damage_+%_while_wielding_melee_weapon" + [1]="spell_damage_+%_with_spells_that_cost_life" } }, - [8996]={ + [9266]={ [1]={ [1]={ limit={ @@ -197846,7 +204599,7 @@ return { [1]="spell_damage_+%_during_flask_effect" } }, - [8997]={ + [9267]={ [1]={ [1]={ limit={ @@ -197875,7 +204628,7 @@ return { [1]="spell_damage_+%_if_have_crit_in_past_8_seconds" } }, - [8998]={ + [9268]={ [1]={ [1]={ limit={ @@ -197904,7 +204657,7 @@ return { [1]="spell_damage_+%_if_you_have_blocked_recently" } }, - [8999]={ + [9269]={ [1]={ [1]={ limit={ @@ -197913,23 +204666,27 @@ return { [2]="#" } }, - text="Non-Channelling Spells deal {0}% increased Damage per 100 maximum Life" + text="{0}% increased Spell Damage per 100 Maximum Life" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="Non-Channelling Spells deal {0}% reduced Damage per 100 maximum Life" + text="{0}% reduced Spell Damage per 100 Maximum Life" } }, stats={ - [1]="spell_damage_+%_per_100_max_life_with_non_channelling_skills" + [1]="spell_damage_+%_per_100_max_life" } }, - [9000]={ + [9270]={ [1]={ [1]={ limit={ @@ -197938,27 +204695,23 @@ return { [2]="#" } }, - text="{0}% increased Spell Damage per 100 Player Maximum Life" + text="Non-Channelling Spells deal {0}% increased Damage per 100 maximum Life" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% reduced Spell Damage per 100 Player Maximum Life" + text="Non-Channelling Spells deal {0}% reduced Damage per 100 maximum Life" } }, stats={ - [1]="spell_damage_+%_per_100_max_life" + [1]="spell_damage_+%_per_100_max_life_with_non_channelling_skills" } }, - [9001]={ + [9271]={ [1]={ [1]={ limit={ @@ -197984,10 +204737,10 @@ return { } }, stats={ - [1]="spell_damage_+%_per_100_maximum_mana_up_to_60%" + [1]="spell_damage_+%_per_100_maximum_mana" } }, - [9002]={ + [9272]={ [1]={ [1]={ limit={ @@ -198003,7 +204756,7 @@ return { [1]="spell_damage_+%_per_10_spirit" } }, - [9003]={ + [9273]={ [1]={ [1]={ limit={ @@ -198032,7 +204785,7 @@ return { [1]="spell_damage_+%_per_10_strength" } }, - [9004]={ + [9274]={ [1]={ [1]={ limit={ @@ -198061,7 +204814,7 @@ return { [1]="spell_damage_+%_per_16_dex" } }, - [9005]={ + [9275]={ [1]={ [1]={ limit={ @@ -198090,7 +204843,7 @@ return { [1]="spell_damage_+%_per_16_int" } }, - [9006]={ + [9276]={ [1]={ [1]={ limit={ @@ -198119,23 +204872,7 @@ return { [1]="spell_damage_+%_per_16_strength" } }, - [9007]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased Spell Damage per 5% Chance to Block Spell Damage" - } - }, - stats={ - [1]="spell_damage_+%_per_5%_spell_block_chance" - } - }, - [9008]={ + [9277]={ [1]={ [1]={ limit={ @@ -198164,7 +204901,7 @@ return { [1]="spell_damage_+%_while_shocked" } }, - [9009]={ + [9278]={ [1]={ [1]={ limit={ @@ -198193,7 +204930,7 @@ return { [1]="spell_damage_+%_while_you_have_arcane_surge" } }, - [9010]={ + [9279]={ [1]={ [1]={ limit={ @@ -198218,7 +204955,7 @@ return { [1]="spell_hits_against_you_inflict_poison_%" } }, - [9011]={ + [9280]={ [1]={ [1]={ limit={ @@ -198247,7 +204984,7 @@ return { [1]="spell_impale_magnitude_+%" } }, - [9012]={ + [9281]={ [1]={ [1]={ limit={ @@ -198272,7 +205009,7 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [9013]={ + [9282]={ [1]={ [1]={ limit={ @@ -198293,7 +205030,7 @@ return { [2]="spell_maximum_base_cold_damage_as_%_of_intelligence" } }, - [9014]={ + [9283]={ [1]={ [1]={ limit={ @@ -198314,7 +205051,7 @@ return { [2]="spell_maximum_base_fire_damage_as_%_of_intelligence" } }, - [9015]={ + [9284]={ [1]={ [1]={ limit={ @@ -198335,7 +205072,7 @@ return { [2]="spell_maximum_base_lightning_damage_as_%_of_intelligence" } }, - [9016]={ + [9285]={ [1]={ [1]={ limit={ @@ -198351,7 +205088,7 @@ return { [1]="spell_projectile_skills_fire_X_additional_projectiles_in_a_circle" } }, - [9017]={ + [9286]={ [1]={ [1]={ limit={ @@ -198380,7 +205117,23 @@ return { [1]="spell_skill_projectile_speed_+%" } }, - [9018]={ + [9287]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spell Skills have {0:+d} to maximum number of Summoned Totems" + } + }, + stats={ + [1]="spell_skills_additional_totems_allowed" + } + }, + [9288]={ [1]={ [1]={ limit={ @@ -198396,7 +205149,7 @@ return { [1]="spell_skills_always_crit_on_final_repeat" } }, - [9019]={ + [9289]={ [1]={ [1]={ limit={ @@ -198425,7 +205178,7 @@ return { [1]="spell_skills_critical_strike_multiplier_+_on_final_repeat" } }, - [9020]={ + [9290]={ [1]={ [1]={ limit={ @@ -198441,7 +205194,7 @@ return { [1]="spell_skills_deal_no_damage" } }, - [9021]={ + [9291]={ [1]={ [1]={ limit={ @@ -198457,7 +205210,7 @@ return { [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" } }, - [9022]={ + [9292]={ [1]={ [1]={ limit={ @@ -198473,183 +205226,40 @@ return { [1]="spell_skills_never_crit_except_on_final_repeat" } }, - [9023]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" - } - }, - stats={ - [1]="spell_suppression_chance_%_if_all_equipment_grants_evasion" - } - }, - [9024]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage if you've Hit an Enemy Recently" - } - }, - stats={ - [1]="spell_suppression_chance_%_if_enemy_hit_recently" - } - }, - [9025]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage per Endurance Charge" - } - }, - stats={ - [1]="spell_suppression_chance_%_per_endurance_charge" - } - }, - [9026]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage for each Dagger you're Wielding" - } - }, - stats={ - [1]="spell_suppression_chance_%_per_equipped_dagger" - } - }, - [9027]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage per Hit Suppressed Recently" - } - }, - stats={ - [1]="spell_suppression_chance_%_per_hit_suppressed_recently" - } - }, - [9028]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage per Power Charge" - } - }, - stats={ - [1]="spell_suppression_chance_%_per_power_charge" - } - }, - [9029]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage while affected by Grace" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_affected_by_grace" - } - }, - [9030]={ + [9293]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 }, - text="{0:+d}% chance to Suppress Spell Damage while affected by Haste" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_affected_by_haste" - } - }, - [9031]={ - [1]={ - [1]={ limit={ [1]={ - [1]="#", - [2]="#" + [1]=1000, + [2]=1000 } }, - text="{0:+d}% chance to Suppress Spell Damage while Channelling" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_channelling" - } - }, - [9032]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + text="DNT {0} second between Spellflux occurances" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 }, - text="{0:+d}% chance to Suppress Spell Damage while holding a Shield" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_holding_shield" - } - }, - [9033]={ - [1]={ - [1]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d}% chance to Suppress Spell Damage while moving" + text="DNT {0} seconds between Spellflux occurances" } }, stats={ - [1]="spell_suppression_chance_%_while_moving" + [1]="spellflux_duration_between_fluxes_ms" } }, - [9034]={ + [9294]={ [1]={ [1]={ limit={ @@ -198658,110 +205268,69 @@ return { [2]="#" } }, - text="{0:+d}% chance to Suppress Spell Damage while your Off Hand is empty" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_off_hand_empty" - } - }, - [9035]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + text="DNT {0}% increased duration of time between Spellfluxes" + }, + [2]={ + [1]={ + k="negate", + v=1 }, - text="{0:+d}% chance to Suppress Spell Damage while Phasing" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_phasing" - } - }, - [9036]={ - [1]={ - [1]={ limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Chance to Suppress Spell Damage is Lucky" + text="DNT {0}% reduced duration of time between Spellfluxes" } }, stats={ - [1]="spell_suppression_chance_is_lucky" + [1]="spellflux_duration_+%_per_different_socketed_spell" } }, - [9037]={ + [9295]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 }, - text="Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at {0}% of their Value" - } - }, - stats={ - [1]="spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value" - } - }, - [9038]={ - [1]={ - [1]={ limit={ [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ [1]="#", [2]="#" } }, - text="{0:+d}% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently" - } - }, - stats={ - [1]="spell_suppression_chance_%_if_suppressed_spell_recently" - } - }, - [9039]={ - [1]={ - [1]={ + text="DNT Spellcasts you cast yourself within {0} second which match your future self's most recent cast deal {1}% more Damage" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" - } - }, - text="{0:+d}% chance to Suppress Spell Damage while on Full Energy Shield" - } - }, - stats={ - [1]="spell_suppression_chance_%_while_on_full_energy_shield" - } - }, - [9040]={ - [1]={ - [1]={ - limit={ - [1]={ + }, + [2]={ [1]="#", [2]="#" } }, - text="{0:+d}% chance to Suppress Spell Damage while on Full Life" + text="DNT Spellcasts you cast yourself within {0} seconds which match your future self's most recent cast deal {1}% more Damage" } }, stats={ - [1]="spell_suppression_chance_%_while_on_full_life" + [1]="spellflux_time_to_cast_empowered_spell_ms", + [2]="spellflux_spell_damage_+%_final_if_matching_flux_cast" } }, - [9041]={ + [9296]={ [1]={ [1]={ limit={ @@ -198786,7 +205355,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [9042]={ + [9297]={ [1]={ [1]={ limit={ @@ -198802,7 +205371,7 @@ return { [1]="spells_chance_to_knockback_on_hit_%" } }, - [9043]={ + [9298]={ [1]={ [1]={ limit={ @@ -198818,7 +205387,7 @@ return { [1]="spells_chance_to_poison_on_hit_%" } }, - [9044]={ + [9299]={ [1]={ [1]={ limit={ @@ -198834,7 +205403,7 @@ return { [1]="spells_cost_life_instead_of_mana_%" } }, - [9045]={ + [9300]={ [1]={ [1]={ limit={ @@ -198859,7 +205428,7 @@ return { [1]="spells_have_x%_chance_inflict_withered_on_hit" } }, - [9046]={ + [9301]={ [1]={ [1]={ limit={ @@ -198884,7 +205453,7 @@ return { [1]="spells_impale_on_hit_%_chance" } }, - [9047]={ + [9302]={ [1]={ [1]={ limit={ @@ -198900,7 +205469,7 @@ return { [1]="spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage" } }, - [9048]={ + [9303]={ [1]={ [1]={ limit={ @@ -198916,7 +205485,7 @@ return { [1]="spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage" } }, - [9049]={ + [9304]={ [1]={ [1]={ limit={ @@ -198945,7 +205514,7 @@ return { [1]="spellslinger_cooldown_duration_+%" } }, - [9050]={ + [9305]={ [1]={ [1]={ [1]={ @@ -198982,7 +205551,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_-2%_per_1" } }, - [9051]={ + [9306]={ [1]={ [1]={ limit={ @@ -199011,7 +205580,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_+%" } }, - [9052]={ + [9307]={ [1]={ [1]={ limit={ @@ -199044,7 +205613,7 @@ return { [1]="spellslinger_mana_reservation_+%" } }, - [9053]={ + [9308]={ [1]={ [1]={ limit={ @@ -199060,7 +205629,7 @@ return { [1]="spending_energy_shield_does_not_interrupt_recharge" } }, - [9054]={ + [9309]={ [1]={ [1]={ limit={ @@ -199089,7 +205658,7 @@ return { [1]="spider_aspect_debuff_duration_+%" } }, - [9055]={ + [9310]={ [1]={ [1]={ limit={ @@ -199118,7 +205687,7 @@ return { [1]="spider_aspect_skill_area_of_effect_+%" } }, - [9056]={ + [9311]={ [1]={ [1]={ [1]={ @@ -199138,7 +205707,7 @@ return { [1]="spider_aspect_web_interval_ms_override" } }, - [9057]={ + [9312]={ [1]={ [1]={ limit={ @@ -199163,7 +205732,84 @@ return { [1]="spike_slam_num_spikes" } }, - [9058]={ + [9313]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit if you have at least 100 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit if you have at least 100 Tribute" + } + }, + stats={ + [1]="spirit_+%_if_you_have_at_least_100_tribute" + } + }, + [9314]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Spirit while you have at least 200 Dexterity" + } + }, + stats={ + [1]="spirit_+_if_at_least_200_dexterity" + } + }, + [9315]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Spirit while you have at least 200 Intelligence" + } + }, + stats={ + [1]="spirit_+_if_at_least_200_intelligence" + } + }, + [9316]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Spirit while you have at least 200 Strength" + } + }, + stats={ + [1]="spirit_+_if_at_least_200_strength" + } + }, + [9317]={ [1]={ [1]={ limit={ @@ -199179,7 +205825,7 @@ return { [1]="spirit_does_not_exist" } }, - [9059]={ + [9318]={ [1]={ [1]={ limit={ @@ -199208,7 +205854,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [9060]={ + [9319]={ [1]={ [1]={ limit={ @@ -199224,7 +205870,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [9061]={ + [9320]={ [1]={ [1]={ limit={ @@ -199240,7 +205886,7 @@ return { [1]="spirit_+%_per_stackable_unique_jewel" } }, - [9062]={ + [9321]={ [1]={ [1]={ limit={ @@ -199256,7 +205902,7 @@ return { [1]="split_arrow_projectiles_fire_in_parallel_x_dist" } }, - [9063]={ + [9322]={ [1]={ [1]={ limit={ @@ -199285,7 +205931,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [9064]={ + [9323]={ [1]={ [1]={ limit={ @@ -199314,7 +205960,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [9065]={ + [9324]={ [1]={ [1]={ limit={ @@ -199343,7 +205989,7 @@ return { [1]="splitting_steel_damage_+%" } }, - [9066]={ + [9325]={ [1]={ [1]={ [1]={ @@ -199363,7 +206009,36 @@ return { [1]="spread_ignite_from_killed_enemies_range" } }, - [9067]={ + [9326]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed while Sprinting" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed while Sprinting" + } + }, + stats={ + [1]="sprint_movement_speed_+%" + } + }, + [9327]={ [1]={ [1]={ [1]={ @@ -199383,7 +206058,7 @@ return { [1]="life_regeneration_per_minute_in_blood_stance" } }, - [9068]={ + [9328]={ [1]={ [1]={ limit={ @@ -199412,7 +206087,7 @@ return { [1]="projectile_damage_+%_in_blood_stance" } }, - [9069]={ + [9329]={ [1]={ [1]={ limit={ @@ -199441,7 +206116,7 @@ return { [1]="evasion_rating_plus_in_sand_stance" } }, - [9070]={ + [9330]={ [1]={ [1]={ limit={ @@ -199470,7 +206145,7 @@ return { [1]="stance_skill_cooldown_speed_+%" } }, - [9071]={ + [9331]={ [1]={ [1]={ limit={ @@ -199499,7 +206174,7 @@ return { [1]="stance_skills_mana_reservation_efficiency_+%" } }, - [9072]={ + [9332]={ [1]={ [1]={ limit={ @@ -199528,7 +206203,7 @@ return { [1]="stance_skill_reservation_+%" } }, - [9073]={ + [9333]={ [1]={ [1]={ limit={ @@ -199557,7 +206232,7 @@ return { [1]="skill_area_of_effect_+%_in_sand_stance" } }, - [9074]={ + [9334]={ [1]={ [1]={ [1]={ @@ -199577,7 +206252,7 @@ return { [1]="stance_swap_cooldown_modifier_ms" } }, - [9075]={ + [9335]={ [1]={ [1]={ limit={ @@ -199606,7 +206281,7 @@ return { [1]="attack_speed_+%_if_changed_stance_recently" } }, - [9076]={ + [9336]={ [1]={ [1]={ limit={ @@ -199622,7 +206297,7 @@ return { [1]="start_at_zero_energy_shield" } }, - [9077]={ + [9337]={ [1]={ [1]={ limit={ @@ -199638,7 +206313,7 @@ return { [1]="start_energy_shield_recharge_when_you_use_a_mana_flask" } }, - [9078]={ + [9338]={ [1]={ [1]={ limit={ @@ -199654,7 +206329,7 @@ return { [1]="static_strike_additional_number_of_beam_targets" } }, - [9079]={ + [9339]={ [1]={ [1]={ limit={ @@ -199683,7 +206358,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_while_focused" } }, - [9080]={ + [9340]={ [1]={ [1]={ limit={ @@ -199712,7 +206387,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_with_bows" } }, - [9081]={ + [9341]={ [1]={ [1]={ limit={ @@ -199741,7 +206416,7 @@ return { [1]="stealth_+%" } }, - [9082]={ + [9342]={ [1]={ [1]={ limit={ @@ -199770,7 +206445,7 @@ return { [1]="stealth_+%_if_have_hit_with_claw_recently" } }, - [9083]={ + [9343]={ [1]={ [1]={ limit={ @@ -199799,7 +206474,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [9084]={ + [9344]={ [1]={ [1]={ limit={ @@ -199828,7 +206503,7 @@ return { [1]="steel_steal_cast_speed_+%" } }, - [9085]={ + [9345]={ [1]={ [1]={ limit={ @@ -199857,7 +206532,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [9086]={ + [9346]={ [1]={ [1]={ limit={ @@ -199886,7 +206561,7 @@ return { [1]="steelskin_damage_limit_+%" } }, - [9087]={ + [9347]={ [1]={ [1]={ limit={ @@ -199915,7 +206590,7 @@ return { [1]="stibnite_flask_evasion_rating_+%_final" } }, - [9088]={ + [9348]={ [1]={ [1]={ limit={ @@ -199931,7 +206606,7 @@ return { [1]="stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems" } }, - [9089]={ + [9349]={ [1]={ [1]={ limit={ @@ -199947,7 +206622,36 @@ return { [1]="storm_armageddon_sigils_can_target_reaper_minions" } }, - [9090]={ + [9350]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Infusion" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Infusion" + } + }, + stats={ + [1]="storm_barrier_effect_+%" + } + }, + [9351]={ [1]={ [1]={ limit={ @@ -199976,7 +206680,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [9091]={ + [9352]={ [1]={ [1]={ limit={ @@ -199992,7 +206696,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [9092]={ + [9353]={ [1]={ [1]={ limit={ @@ -200008,7 +206712,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [9093]={ + [9354]={ [1]={ [1]={ limit={ @@ -200037,7 +206741,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [9094]={ + [9355]={ [1]={ [1]={ limit={ @@ -200053,7 +206757,7 @@ return { [1]="storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [9095]={ + [9356]={ [1]={ [1]={ limit={ @@ -200069,7 +206773,7 @@ return { [1]="storm_brand_additional_chain_chance_%" } }, - [9096]={ + [9357]={ [1]={ [1]={ limit={ @@ -200085,7 +206789,7 @@ return { [1]="storm_brand_attached_target_lightning_penetration_%" } }, - [9097]={ + [9358]={ [1]={ [1]={ limit={ @@ -200114,7 +206818,7 @@ return { [1]="storm_brand_damage_+%" } }, - [9098]={ + [9359]={ [1]={ [1]={ limit={ @@ -200130,7 +206834,7 @@ return { [1]="storm_burst_15_%_chance_to_create_additional_orb" } }, - [9099]={ + [9360]={ [1]={ [1]={ limit={ @@ -200146,7 +206850,7 @@ return { [1]="storm_burst_additional_object_chance_%" } }, - [9100]={ + [9361]={ [1]={ [1]={ limit={ @@ -200175,7 +206879,7 @@ return { [1]="storm_burst_area_of_effect_+%" } }, - [9101]={ + [9362]={ [1]={ [1]={ limit={ @@ -200191,7 +206895,7 @@ return { [1]="storm_burst_avoid_interruption_while_casting_%" } }, - [9102]={ + [9363]={ [1]={ [1]={ limit={ @@ -200216,7 +206920,7 @@ return { [1]="storm_burst_number_of_additional_projectiles" } }, - [9103]={ + [9364]={ [1]={ [1]={ limit={ @@ -200245,7 +206949,7 @@ return { [1]="storm_rain_damage_+%" } }, - [9104]={ + [9365]={ [1]={ [1]={ limit={ @@ -200270,7 +206974,7 @@ return { [1]="storm_rain_num_additional_arrows" } }, - [9105]={ + [9366]={ [1]={ [1]={ limit={ @@ -200299,7 +207003,7 @@ return { [1]="stormbind_skill_area_of_effect_+%" } }, - [9106]={ + [9367]={ [1]={ [1]={ limit={ @@ -200328,7 +207032,7 @@ return { [1]="stormbind_skill_damage_+%" } }, - [9107]={ + [9368]={ [1]={ [1]={ limit={ @@ -200357,7 +207061,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_aura_effect_+%" } }, - [9108]={ + [9369]={ [1]={ [1]={ limit={ @@ -200373,7 +207077,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_base_deal_no_damage" } }, - [9109]={ + [9370]={ [1]={ [1]={ limit={ @@ -200402,7 +207106,7 @@ return { [1]="stormweaver_chill_effect_+%_final" } }, - [9110]={ + [9371]={ [1]={ [1]={ limit={ @@ -200431,7 +207135,7 @@ return { [1]="stormweaver_shock_effect_+%_final" } }, - [9111]={ + [9372]={ [1]={ [1]={ limit={ @@ -200447,7 +207151,7 @@ return { [1]="strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills" } }, - [9112]={ + [9373]={ [1]={ [1]={ limit={ @@ -200463,7 +207167,7 @@ return { [1]="strength_skill_gem_level_+" } }, - [9113]={ + [9374]={ [1]={ [1]={ limit={ @@ -200479,7 +207183,32 @@ return { [1]="strike_skills_knockback_on_melee_hit" } }, - [9114]={ + [9375]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Ailment and Stun Threshold while Surrounded" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Ailment and Stun Threshold while Surrounded" + } + }, + stats={ + [1]="stun_and_ailment_threshold_+%_while_surrounded" + } + }, + [9376]={ [1]={ [1]={ limit={ @@ -200495,7 +207224,7 @@ return { [1]="stun_duration_on_critical_strike_+%" } }, - [9115]={ + [9377]={ [1]={ [1]={ limit={ @@ -200524,7 +207253,7 @@ return { [1]="stun_duration_+%_per_15_strength" } }, - [9116]={ + [9378]={ [1]={ [1]={ limit={ @@ -200553,7 +207282,7 @@ return { [1]="stun_duration_+%_per_endurance_charge" } }, - [9117]={ + [9379]={ [1]={ [1]={ limit={ @@ -200569,7 +207298,7 @@ return { [1]="stun_nearby_enemies_when_stunned_chance_%" } }, - [9118]={ + [9380]={ [1]={ [1]={ limit={ @@ -200598,7 +207327,52 @@ return { [1]="stun_threshold_+%_during_empowered_attacks" } }, - [9119]={ + [9381]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%" + } + }, + stats={ + [1]="stun_threshold_+%_for_each_time_hit_recently_up_to_100%" + } + }, + [9382]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Stun Threshold per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Stun Threshold per 25 Tribute" + } + }, + stats={ + [1]="stun_threshold_+%_per_25_tribute" + } + }, + [9383]={ [1]={ [1]={ limit={ @@ -200627,7 +207401,7 @@ return { [1]="stun_threshold_+%_per_number_of_times_stunned_recently" } }, - [9120]={ + [9384]={ [1]={ [1]={ limit={ @@ -200643,7 +207417,23 @@ return { [1]="stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour" } }, - [9121]={ + [9385]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} to Stun Threshold per Dexterity" + } + }, + stats={ + [1]="stun_threshold_+_per_dexterity" + } + }, + [9386]={ [1]={ [1]={ limit={ @@ -200659,7 +207449,7 @@ return { [1]="stun_threshold_+_per_strength" } }, - [9122]={ + [9387]={ [1]={ [1]={ limit={ @@ -200675,7 +207465,7 @@ return { [1]="stun_threshold_based_on_%_energy_shield_instead_of_life" } }, - [9123]={ + [9388]={ [1]={ [1]={ limit={ @@ -200691,7 +207481,7 @@ return { [1]="stun_threshold_+_from_%_maximum_energy_shield" } }, - [9124]={ + [9389]={ [1]={ [1]={ limit={ @@ -200707,7 +207497,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [9125]={ + [9390]={ [1]={ [1]={ limit={ @@ -200736,7 +207526,7 @@ return { [1]="stun_threshold_+%_when_not_stunned_recently" } }, - [9126]={ + [9391]={ [1]={ [1]={ limit={ @@ -200765,7 +207555,7 @@ return { [1]="stun_threshold_+%_when_on_full_life" } }, - [9127]={ + [9392]={ [1]={ [1]={ limit={ @@ -200781,7 +207571,7 @@ return { [1]="stun_threshold_reduction_+%_with_500_or_more_strength" } }, - [9128]={ + [9393]={ [1]={ [1]={ limit={ @@ -200797,7 +207587,7 @@ return { [1]="summon_2_totems" } }, - [9129]={ + [9394]={ [1]={ [1]={ limit={ @@ -200826,7 +207616,7 @@ return { [1]="summon_arbalist_attack_speed_+%" } }, - [9130]={ + [9395]={ [1]={ [1]={ limit={ @@ -200842,7 +207632,7 @@ return { [1]="summon_arbalist_chains_+" } }, - [9131]={ + [9396]={ [1]={ [1]={ limit={ @@ -200858,7 +207648,7 @@ return { [1]="summon_arbalist_chance_to_bleed_%" } }, - [9132]={ + [9397]={ [1]={ [1]={ limit={ @@ -200874,7 +207664,7 @@ return { [1]="summon_arbalist_chance_to_crush_on_hit_%" } }, - [9133]={ + [9398]={ [1]={ [1]={ limit={ @@ -200890,23 +207680,7 @@ return { [1]="summon_arbalist_chance_to_deal_double_damage_%" } }, - [9134]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Summoned Arbalists have {}% chance to Freeze, Shock, and Ignite" - } - }, - stats={ - [1]="summon_arbalist_chance_to_ignite_freeze_shock_%" - } - }, - [9135]={ + [9399]={ [1]={ [1]={ limit={ @@ -200922,7 +207696,7 @@ return { [1]="summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%" } }, - [9136]={ + [9400]={ [1]={ [1]={ limit={ @@ -200938,7 +207712,7 @@ return { [1]="summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%" } }, - [9137]={ + [9401]={ [1]={ [1]={ limit={ @@ -200954,7 +207728,7 @@ return { [1]="summon_arbalist_chance_to_poison_%" } }, - [9138]={ + [9402]={ [1]={ [1]={ limit={ @@ -200970,7 +207744,7 @@ return { [1]="summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%" } }, - [9139]={ + [9403]={ [1]={ [1]={ limit={ @@ -200986,7 +207760,7 @@ return { [1]="summon_arbalist_number_of_additional_projectiles" } }, - [9140]={ + [9404]={ [1]={ [1]={ limit={ @@ -201002,7 +207776,7 @@ return { [1]="summon_arbalist_number_of_splits" } }, - [9141]={ + [9405]={ [1]={ [1]={ limit={ @@ -201018,7 +207792,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_cold" } }, - [9142]={ + [9406]={ [1]={ [1]={ limit={ @@ -201034,7 +207808,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_fire" } }, - [9143]={ + [9407]={ [1]={ [1]={ limit={ @@ -201050,7 +207824,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_lightning" } }, - [9144]={ + [9408]={ [1]={ [1]={ limit={ @@ -201066,7 +207840,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_cold" } }, - [9145]={ + [9409]={ [1]={ [1]={ limit={ @@ -201082,7 +207856,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_fire" } }, - [9146]={ + [9410]={ [1]={ [1]={ limit={ @@ -201098,7 +207872,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_lightning" } }, - [9147]={ + [9411]={ [1]={ [1]={ limit={ @@ -201114,7 +207888,7 @@ return { [1]="summon_arbalist_projectiles_fork" } }, - [9148]={ + [9412]={ [1]={ [1]={ limit={ @@ -201130,7 +207904,7 @@ return { [1]="summon_arbalist_targets_to_pierce" } }, - [9149]={ + [9413]={ [1]={ [1]={ limit={ @@ -201146,23 +207920,7 @@ return { [1]="summon_arbalist_chance_to_freeze_%" } }, - [9150]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Summoned Arbalists have {}% chance to Ignite" - } - }, - stats={ - [1]="summon_arbalist_chance_to_ignite_%" - } - }, - [9151]={ + [9414]={ [1]={ [1]={ limit={ @@ -201178,7 +207936,7 @@ return { [1]="summon_arbalist_chance_to_shock_%" } }, - [9152]={ + [9415]={ [1]={ [1]={ limit={ @@ -201194,7 +207952,7 @@ return { [1]="summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%" } }, - [9153]={ + [9416]={ [1]={ [1]={ limit={ @@ -201210,7 +207968,7 @@ return { [1]="summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%" } }, - [9154]={ + [9417]={ [1]={ [1]={ limit={ @@ -201226,7 +207984,7 @@ return { [1]="summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%" } }, - [9155]={ + [9418]={ [1]={ [1]={ limit={ @@ -201242,7 +208000,7 @@ return { [1]="summon_raging_spirit_melee_splash_fire_damage_only" } }, - [9156]={ + [9419]={ [1]={ [1]={ limit={ @@ -201271,7 +208029,7 @@ return { [1]="summon_reaper_cooldown_speed_+%" } }, - [9157]={ + [9420]={ [1]={ [1]={ limit={ @@ -201323,7 +208081,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance" } }, - [9158]={ + [9421]={ [1]={ [1]={ limit={ @@ -201339,7 +208097,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_%_chance" } }, - [9159]={ + [9422]={ [1]={ [1]={ [1]={ @@ -201372,7 +208130,7 @@ return { [1]="summon_skeletons_cooldown_modifier_ms" } }, - [9160]={ + [9423]={ [1]={ [1]={ limit={ @@ -201401,7 +208159,7 @@ return { [1]="summon_skitterbots_area_of_effect_+%" } }, - [9161]={ + [9424]={ [1]={ [1]={ limit={ @@ -201434,7 +208192,7 @@ return { [1]="summon_skitterbots_mana_reservation_+%" } }, - [9162]={ + [9425]={ [1]={ [1]={ limit={ @@ -201450,7 +208208,7 @@ return { [1]="summoned_phantasms_grant_buff" } }, - [9163]={ + [9426]={ [1]={ [1]={ limit={ @@ -201466,7 +208224,7 @@ return { [1]="summoned_phantasms_have_no_duration" } }, - [9164]={ + [9427]={ [1]={ [1]={ limit={ @@ -201482,7 +208240,7 @@ return { [1]="summoned_raging_spirits_have_diamond_and_massive_shrine_buff" } }, - [9165]={ + [9428]={ [1]={ [1]={ limit={ @@ -201511,7 +208269,7 @@ return { [1]="summoned_reaper_damage_+%" } }, - [9166]={ + [9429]={ [1]={ [1]={ limit={ @@ -201527,7 +208285,7 @@ return { [1]="summoned_reaper_physical_dot_multiplier_+" } }, - [9167]={ + [9430]={ [1]={ [1]={ limit={ @@ -201543,7 +208301,7 @@ return { [1]="summoned_skeleton_%_chance_to_wither_for_2_seconds" } }, - [9168]={ + [9431]={ [1]={ [1]={ limit={ @@ -201559,7 +208317,7 @@ return { [1]="summoned_skeleton_%_physical_to_chaos" } }, - [9169]={ + [9432]={ [1]={ [1]={ limit={ @@ -201584,7 +208342,7 @@ return { [1]="summoned_skeletons_cover_in_ash_on_hit_%" } }, - [9170]={ + [9433]={ [1]={ [1]={ [1]={ @@ -201604,7 +208362,7 @@ return { [1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9171]={ + [9434]={ [1]={ [1]={ limit={ @@ -201620,7 +208378,7 @@ return { [1]="summoned_skeletons_hits_cant_be_evaded" } }, - [9172]={ + [9435]={ [1]={ [1]={ limit={ @@ -201649,7 +208407,7 @@ return { [1]="summoned_skitterbots_cooldown_recovery_+%" } }, - [9173]={ + [9436]={ [1]={ [1]={ limit={ @@ -201665,7 +208423,7 @@ return { [1]="summoned_support_ghosts_have_diamond_and_massive_shrine_buff" } }, - [9174]={ + [9437]={ [1]={ [1]={ limit={ @@ -201681,7 +208439,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [9175]={ + [9438]={ [1]={ [1]={ limit={ @@ -201710,7 +208468,7 @@ return { [1]="support_anticipation_charge_gain_frequency_+%" } }, - [9176]={ + [9439]={ [1]={ [1]={ limit={ @@ -201739,7 +208497,7 @@ return { [1]="support_buffed_heralds_buff_effect_+%_final" } }, - [9177]={ + [9440]={ [1]={ [1]={ limit={ @@ -201777,7 +208535,7 @@ return { [1]="support_deadly_heralds_buff_effect_+%_final" } }, - [9178]={ + [9441]={ [1]={ [1]={ limit={ @@ -201806,7 +208564,7 @@ return { [1]="support_deadly_heralds_damage_+%_final" } }, - [9179]={ + [9442]={ [1]={ [1]={ limit={ @@ -201835,23 +208593,7 @@ return { [1]="support_fast_forward_detonation_time_+%_final" } }, - [9180]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can use each type of Support Gem an additional time in different Skills" - } - }, - stats={ - [1]="support_gem_limit_+" - } - }, - [9181]={ + [9443]={ [1]={ [1]={ limit={ @@ -201876,7 +208618,7 @@ return { [1]="support_hourglass_damage_+%_final" } }, - [9182]={ + [9444]={ [1]={ [1]={ limit={ @@ -201892,14 +208634,14 @@ return { [1]="support_jagged_ground_chance_%" } }, - [9183]={ + [9445]={ [1]={ }, stats={ [1]="support_last_gasp_duration_ms" } }, - [9184]={ + [9446]={ [1]={ [1]={ limit={ @@ -201928,7 +208670,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [9185]={ + [9447]={ [1]={ [1]={ limit={ @@ -201949,7 +208691,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [9186]={ + [9448]={ [1]={ [1]={ [1]={ @@ -201969,7 +208711,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [9187]={ + [9449]={ [1]={ [1]={ limit={ @@ -201998,7 +208740,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [9188]={ + [9450]={ [1]={ [1]={ limit={ @@ -202014,7 +208756,7 @@ return { [1]="supported_aura_skill_gem_level_+" } }, - [9189]={ + [9451]={ [1]={ [1]={ limit={ @@ -202030,7 +208772,7 @@ return { [1]="supported_cold_skill_gem_level_+" } }, - [9190]={ + [9452]={ [1]={ [1]={ limit={ @@ -202046,7 +208788,7 @@ return { [1]="supported_elemental_skill_gem_level_+" } }, - [9191]={ + [9453]={ [1]={ [1]={ limit={ @@ -202062,7 +208804,7 @@ return { [1]="supported_fire_skill_gem_level_+" } }, - [9192]={ + [9454]={ [1]={ [1]={ limit={ @@ -202078,23 +208820,32 @@ return { [1]="supported_lightning_skill_gem_level_+" } }, - [9193]={ + [9455]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Suppressed Spell Damage cannot inflict Elemental Ailments on you" + text="{0}% increased Surrounded Area of Effect" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Surrounded Area of Effect" } }, stats={ - [1]="suppressed_spell_damage_cannot_inflict_elemental_ailments" + [1]="surrounded_area_of_effect_+%" } }, - [9194]={ + [9456]={ [1]={ [1]={ limit={ @@ -202110,7 +208861,7 @@ return { [1]="synthesis_map_adjacent_nodes_global_mod_values_doubled" } }, - [9195]={ + [9457]={ [1]={ [1]={ limit={ @@ -202126,7 +208877,7 @@ return { [1]="synthesis_map_global_mod_values_doubled_on_this_node" } }, - [9196]={ + [9458]={ [1]={ [1]={ limit={ @@ -202142,7 +208893,7 @@ return { [1]="synthesis_map_global_mod_values_tripled_on_this_node" } }, - [9197]={ + [9459]={ [1]={ [1]={ limit={ @@ -202158,7 +208909,7 @@ return { [1]="synthesis_map_memories_do_not_collapse_on_this_node" } }, - [9198]={ + [9460]={ [1]={ [1]={ limit={ @@ -202187,7 +208938,7 @@ return { [1]="synthesis_map_monster_slain_experience_+%_on_this_node" } }, - [9199]={ + [9461]={ [1]={ [1]={ limit={ @@ -202203,7 +208954,7 @@ return { [1]="synthesis_map_nearby_memories_have_bonus" } }, - [9200]={ + [9462]={ [1]={ [1]={ limit={ @@ -202228,7 +208979,7 @@ return { [1]="synthesis_map_node_additional_uses_+" } }, - [9201]={ + [9463]={ [1]={ [1]={ limit={ @@ -202244,7 +208995,7 @@ return { [1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories" } }, - [9202]={ + [9464]={ [1]={ [1]={ limit={ @@ -202269,7 +209020,7 @@ return { [1]="synthesis_map_node_grants_additional_global_mod" } }, - [9203]={ + [9465]={ [1]={ [1]={ limit={ @@ -202285,7 +209036,7 @@ return { [1]="synthesis_map_node_grants_no_global_mod" } }, - [9204]={ + [9466]={ [1]={ [1]={ limit={ @@ -202301,7 +209052,7 @@ return { [1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters" } }, - [9205]={ + [9467]={ [1]={ [1]={ limit={ @@ -202317,7 +209068,7 @@ return { [1]="synthesis_map_node_item_quantity_increases_doubled" } }, - [9206]={ + [9468]={ [1]={ [1]={ limit={ @@ -202333,7 +209084,7 @@ return { [1]="synthesis_map_node_item_rarity_increases_doubled" } }, - [9207]={ + [9469]={ [1]={ [1]={ limit={ @@ -202358,7 +209109,7 @@ return { [1]="synthesis_map_node_level_+" } }, - [9208]={ + [9470]={ [1]={ [1]={ limit={ @@ -202374,7 +209125,7 @@ return { [1]="synthesis_map_node_monsters_drop_no_items" } }, - [9209]={ + [9471]={ [1]={ [1]={ limit={ @@ -202390,7 +209141,7 @@ return { [1]="synthesis_map_node_pack_size_increases_doubled" } }, - [9210]={ + [9472]={ [1]={ [1]={ limit={ @@ -202419,7 +209170,7 @@ return { [1]="tactician_spirit_reservation_+%_final_for_permanent_buffs" } }, - [9211]={ + [9473]={ [1]={ [1]={ limit={ @@ -202448,7 +209199,7 @@ return { [1]="tailwind_effect_on_self_+%" } }, - [9212]={ + [9474]={ [1]={ [1]={ limit={ @@ -202477,7 +209228,7 @@ return { [1]="tailwind_effect_on_self_+%_per_gale_force" } }, - [9213]={ + [9475]={ [1]={ [1]={ limit={ @@ -202493,7 +209244,7 @@ return { [1]="tailwind_if_have_crit_recently" } }, - [9214]={ + [9476]={ [1]={ [1]={ limit={ @@ -202509,7 +209260,7 @@ return { [1]="take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy" } }, - [9215]={ + [9477]={ [1]={ [1]={ limit={ @@ -202525,7 +209276,7 @@ return { [1]="take_half_area_damage_from_hit_%_chance" } }, - [9216]={ + [9478]={ [1]={ [1]={ limit={ @@ -202541,7 +209292,7 @@ return { [1]="take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds" } }, - [9217]={ + [9479]={ [1]={ [1]={ limit={ @@ -202566,7 +209317,7 @@ return { [1]="take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack" } }, - [9218]={ + [9480]={ [1]={ [1]={ [1]={ @@ -202599,7 +209350,7 @@ return { [1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10" } }, - [9219]={ + [9481]={ [1]={ [1]={ limit={ @@ -202615,7 +209366,7 @@ return { [1]="taunt_on_projectile_hit_chance_%" } }, - [9220]={ + [9482]={ [1]={ [1]={ limit={ @@ -202644,7 +209395,7 @@ return { [1]="taunted_enemies_by_warcry_damage_taken_+%" } }, - [9221]={ + [9483]={ [1]={ [1]={ [1]={ @@ -202664,7 +209415,7 @@ return { [1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value" } }, - [9222]={ + [9484]={ [1]={ [1]={ limit={ @@ -202680,7 +209431,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [9223]={ + [9485]={ [1]={ [1]={ limit={ @@ -202696,7 +209447,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating" } }, - [9224]={ + [9486]={ [1]={ [1]={ limit={ @@ -202725,7 +209476,7 @@ return { [1]="tectonic_slam_area_of_effect_+%" } }, - [9225]={ + [9487]={ [1]={ [1]={ limit={ @@ -202754,7 +209505,7 @@ return { [1]="tectonic_slam_damage_+%" } }, - [9226]={ + [9488]={ [1]={ [1]={ limit={ @@ -202770,7 +209521,7 @@ return { [1]="tectonic_slam_%_chance_to_do_charged_slam" } }, - [9227]={ + [9489]={ [1]={ [1]={ [1]={ @@ -202790,7 +209541,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [9228]={ + [9490]={ [1]={ [1]={ limit={ @@ -202806,7 +209557,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%" } }, - [9229]={ + [9491]={ [1]={ [1]={ limit={ @@ -202835,7 +209586,7 @@ return { [1]="tempest_shield_buff_effect_+%" } }, - [9230]={ + [9492]={ [1]={ [1]={ limit={ @@ -202851,7 +209602,7 @@ return { [1]="temporal_chains_no_reservation" } }, - [9231]={ + [9493]={ [1]={ [1]={ limit={ @@ -202867,7 +209618,23 @@ return { [1]="temporal_rift_cooldown_speed_+%" } }, - [9232]={ + [9494]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Temporary Minion Skills have {0:+d} to Limit of Minions summoned" + } + }, + stats={ + [1]="temporary_minion_limit_+" + } + }, + [9495]={ [1]={ [1]={ limit={ @@ -202883,7 +209650,7 @@ return { [1]="thaumaturgy_rotation_active" } }, - [9233]={ + [9496]={ [1]={ [1]={ limit={ @@ -202912,7 +209679,65 @@ return { [1]="thorns_critical_strike_chance_+%" } }, - [9234]={ + [9497]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Thorns damage if you've consumed an Endurance Charge Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Thorns damage if you've consumed an Endurance Charge Recently" + } + }, + stats={ + [1]="thorns_damage_+%_if_consumed_endurance_charge_recently" + } + }, + [9498]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Thorns damage per 10 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Thorns damage per 10 Tribute" + } + }, + stats={ + [1]="thorns_damage_+%_per_10_tribute" + } + }, + [9499]={ [1]={ [1]={ limit={ @@ -202928,7 +209753,7 @@ return { [1]="thorns_damage_has_%_chance_to_ignore_armour" } }, - [9235]={ + [9500]={ [1]={ [1]={ limit={ @@ -202957,7 +209782,7 @@ return { [1]="thorns_damage_+%" } }, - [9236]={ + [9501]={ [1]={ [1]={ limit={ @@ -202986,7 +209811,28 @@ return { [1]="thorns_damage_+%_if_blocked_recently" } }, - [9237]={ + [9502]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} Fire Thorns damage per 100 maximum Life" + } + }, + stats={ + [1]="thorns_maximum_fire_damage_per_100_life", + [2]="thorns_minimum_fire_damage_per_100_life" + } + }, + [9503]={ [1]={ [1]={ limit={ @@ -203007,7 +209853,7 @@ return { [2]="thorns_maximum_base_chaos_damage" } }, - [9238]={ + [9504]={ [1]={ [1]={ limit={ @@ -203028,7 +209874,7 @@ return { [2]="thorns_maximum_base_cold_damage" } }, - [9239]={ + [9505]={ [1]={ [1]={ limit={ @@ -203049,7 +209895,7 @@ return { [2]="thorns_maximum_base_fire_damage" } }, - [9240]={ + [9506]={ [1]={ [1]={ limit={ @@ -203070,7 +209916,7 @@ return { [2]="thorns_maximum_base_lightning_damage" } }, - [9241]={ + [9507]={ [1]={ [1]={ limit={ @@ -203091,7 +209937,36 @@ return { [2]="thorns_maximum_base_physical_damage" } }, - [9242]={ + [9508]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for Thorns to Retaliate against Non-Melee Hits if you have at least 200 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% chance for Thorns to Retaliate against Non-Melee Hits if you have at least 200 Tribute" + } + }, + stats={ + [1]="thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute" + } + }, + [9509]={ [1]={ [1]={ limit={ @@ -203107,7 +209982,7 @@ return { [1]="thorns_proc_off_any_hit" } }, - [9243]={ + [9510]={ [1]={ [1]={ limit={ @@ -203136,7 +210011,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final" } }, - [9244]={ + [9511]={ [1]={ [1]={ limit={ @@ -203165,7 +210040,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final_per_chain" } }, - [9245]={ + [9512]={ [1]={ [1]={ limit={ @@ -203194,7 +210069,7 @@ return { [1]="threshold_jewel_molten_strike_damage_projectile_count_+%_final" } }, - [9246]={ + [9513]={ [1]={ [1]={ limit={ @@ -203223,7 +210098,7 @@ return { [1]="thrown_shield_secondary_projectile_damage_+%_final" } }, - [9247]={ + [9514]={ [1]={ [1]={ limit={ @@ -203239,7 +210114,7 @@ return { [1]="titan_additional_inventory" } }, - [9248]={ + [9515]={ [1]={ [1]={ limit={ @@ -203268,7 +210143,7 @@ return { [1]="titan_damage_+%_final_against_heavy_stunned_enemies" } }, - [9249]={ + [9516]={ [1]={ [1]={ limit={ @@ -203284,7 +210159,7 @@ return { [1]="titan_expanded_main_inventory" } }, - [9250]={ + [9517]={ [1]={ [1]={ limit={ @@ -203313,7 +210188,7 @@ return { [1]="titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies" } }, - [9251]={ + [9518]={ [1]={ [1]={ limit={ @@ -203342,7 +210217,7 @@ return { [1]="titan_maximum_life_+%_final" } }, - [9252]={ + [9519]={ [1]={ [1]={ limit={ @@ -203371,7 +210246,7 @@ return { [1]="tornado_damage_frequency_+%" } }, - [9253]={ + [9520]={ [1]={ [1]={ limit={ @@ -203400,7 +210275,7 @@ return { [1]="tornado_damage_+%" } }, - [9254]={ + [9521]={ [1]={ [1]={ limit={ @@ -203429,7 +210304,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [9255]={ + [9522]={ [1]={ [1]={ limit={ @@ -203458,7 +210333,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [9256]={ + [9523]={ [1]={ [1]={ limit={ @@ -203487,7 +210362,7 @@ return { [1]="tornado_skill_area_of_effect_+%" } }, - [9257]={ + [9524]={ [1]={ [1]={ limit={ @@ -203503,7 +210378,7 @@ return { [1]="totems_action_speed_cannot_be_modified_below_base" } }, - [9258]={ + [9525]={ [1]={ [1]={ limit={ @@ -203519,7 +210394,7 @@ return { [1]="totem_chaos_immunity" } }, - [9259]={ + [9526]={ [1]={ [1]={ limit={ @@ -203548,7 +210423,7 @@ return { [1]="totem_chaos_resistance_%" } }, - [9260]={ + [9527]={ [1]={ [1]={ limit={ @@ -203577,7 +210452,7 @@ return { [1]="totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds" } }, - [9261]={ + [9528]={ [1]={ [1]={ limit={ @@ -203606,7 +210481,7 @@ return { [1]="totem_damage_+%_per_10_devotion" } }, - [9262]={ + [9529]={ [1]={ [1]={ limit={ @@ -203615,14 +210490,14 @@ return { [2]="#" } }, - text="Totems Hinder Enemies near them when Summoned" + text="Totems Hinder Enemies in their Presence when Summoned" } }, stats={ [1]="totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed" } }, - [9263]={ + [9530]={ [1]={ [1]={ limit={ @@ -203638,7 +210513,7 @@ return { [1]="totem_maximum_energy_shield" } }, - [9264]={ + [9531]={ [1]={ [1]={ limit={ @@ -203654,7 +210529,7 @@ return { [1]="totem_only_uses_skill_when_owner_attacks" } }, - [9265]={ + [9532]={ [1]={ [1]={ limit={ @@ -203683,7 +210558,7 @@ return { [1]="totem_placement_range_+%" } }, - [9266]={ + [9533]={ [1]={ [1]={ limit={ @@ -203699,7 +210574,7 @@ return { [1]="totem_skill_gem_level_+" } }, - [9267]={ + [9534]={ [1]={ [1]={ limit={ @@ -203728,7 +210603,7 @@ return { [1]="totem_spells_damage_+%" } }, - [9268]={ + [9535]={ [1]={ [1]={ limit={ @@ -203744,7 +210619,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [9269]={ + [9536]={ [1]={ [1]={ limit={ @@ -203753,7 +210628,7 @@ return { [2]="#" } }, - text="Each Totem applies {0}% increased Damage taken to Enemies near it" + text="Each Totem applies {0}% increased Damage taken to Enemies in their Presence" }, [2]={ [1]={ @@ -203766,14 +210641,14 @@ return { [2]=-1 } }, - text="Each Totem applies {0}% reduced Damage taken to Enemies near it" + text="Each Totem applies {0}% reduced Damage taken to Enemies in their Presence" } }, stats={ [1]="totems_nearby_enemies_damage_taken_+%" } }, - [9270]={ + [9537]={ [1]={ [1]={ [1]={ @@ -203793,7 +210668,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [9271]={ + [9538]={ [1]={ [1]={ limit={ @@ -203818,7 +210693,7 @@ return { [1]="totems_taunt_enemies_around_them_for_x_seconds_when_summoned" } }, - [9272]={ + [9539]={ [1]={ [1]={ limit={ @@ -203834,7 +210709,7 @@ return { [1]="tower_add_breach_to_X_maps" } }, - [9273]={ + [9540]={ [1]={ [1]={ limit={ @@ -203850,7 +210725,7 @@ return { [1]="tower_add_delirium_to_X_maps" } }, - [9274]={ + [9541]={ [1]={ [1]={ limit={ @@ -203866,7 +210741,7 @@ return { [1]="tower_add_expedition_to_X_maps" } }, - [9275]={ + [9542]={ [1]={ [1]={ limit={ @@ -203882,7 +210757,7 @@ return { [1]="tower_add_irradiated_to_X_maps" } }, - [9276]={ + [9543]={ [1]={ [1]={ limit={ @@ -203898,7 +210773,7 @@ return { [1]="tower_add_map_bosses_to_X_maps" } }, - [9277]={ + [9544]={ [1]={ [1]={ limit={ @@ -203914,7 +210789,7 @@ return { [1]="tower_add_ritual_to_X_maps" } }, - [9278]={ + [9545]={ [1]={ [1]={ limit={ @@ -203943,7 +210818,7 @@ return { [1]="toxic_rain_damage_+%" } }, - [9279]={ + [9546]={ [1]={ [1]={ limit={ @@ -203968,7 +210843,7 @@ return { [1]="toxic_rain_num_of_additional_projectiles" } }, - [9280]={ + [9547]={ [1]={ [1]={ limit={ @@ -203984,7 +210859,7 @@ return { [1]="toxic_rain_physical_damage_%_to_gain_as_chaos" } }, - [9281]={ + [9548]={ [1]={ [1]={ limit={ @@ -204013,7 +210888,7 @@ return { [1]="trap_and_mine_damage_+%_if_armed_for_4_seconds" } }, - [9282]={ + [9549]={ [1]={ [1]={ limit={ @@ -204042,7 +210917,7 @@ return { [1]="trap_and_mine_throwing_speed_+%" } }, - [9283]={ + [9550]={ [1]={ [1]={ limit={ @@ -204067,7 +210942,7 @@ return { [1]="trap_skill_added_cooldown_count" } }, - [9284]={ + [9551]={ [1]={ [1]={ limit={ @@ -204096,7 +210971,7 @@ return { [1]="trap_spread_+%" } }, - [9285]={ + [9552]={ [1]={ [1]={ limit={ @@ -204125,7 +211000,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [9286]={ + [9553]={ [1]={ [1]={ limit={ @@ -204141,7 +211016,7 @@ return { [1]="traps_cannot_be_triggered_by_enemies" } }, - [9287]={ + [9554]={ [1]={ [1]={ limit={ @@ -204157,7 +211032,7 @@ return { [1]="traps_invulnerable" } }, - [9288]={ + [9555]={ [1]={ [1]={ limit={ @@ -204173,7 +211048,7 @@ return { [1]="travel_skills_cannot_be_exerted" } }, - [9289]={ + [9556]={ [1]={ [1]={ limit={ @@ -204189,7 +211064,7 @@ return { [1]="travel_skills_poison_reflected_to_self_up_to_5_poisons" } }, - [9290]={ + [9557]={ [1]={ [1]={ limit={ @@ -204214,7 +211089,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [9291]={ + [9558]={ [1]={ [1]={ [1]={ @@ -204247,7 +211122,7 @@ return { [1]="trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds" } }, - [9292]={ + [9559]={ [1]={ [1]={ limit={ @@ -204276,7 +211151,7 @@ return { [1]="trickster_damage_over_time_+%_final" } }, - [9293]={ + [9560]={ [1]={ [1]={ limit={ @@ -204292,7 +211167,7 @@ return { [1]="trigger_elemental_storm_on_crit" } }, - [9294]={ + [9561]={ [1]={ [1]={ limit={ @@ -204317,7 +211192,7 @@ return { [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [9295]={ + [9562]={ [1]={ [1]={ limit={ @@ -204333,7 +211208,7 @@ return { [1]="trigger_wild_strike_on_attack_crit" } }, - [9296]={ + [9563]={ [1]={ [1]={ limit={ @@ -204362,7 +211237,7 @@ return { [1]="triggerbots_damage_+%_final_with_triggered_spells" } }, - [9297]={ + [9564]={ [1]={ [1]={ limit={ @@ -204391,7 +211266,7 @@ return { [1]="triggered_spell_spell_damage_+%" } }, - [9298]={ + [9565]={ [1]={ [1]={ limit={ @@ -204407,7 +211282,7 @@ return { [1]="triggers_burning_runes_on_placing_ground_rune" } }, - [9299]={ + [9566]={ [1]={ [1]={ limit={ @@ -204423,7 +211298,7 @@ return { [1]="triggers_soulbreaker_on_breaking_enemy_energy_shield" } }, - [9300]={ + [9567]={ [1]={ [1]={ limit={ @@ -204436,7 +211311,7 @@ return { [2]=0 } }, - text="{0:+d}% more Elemental Damage with Attacks per 30\nResonance of any type" + text="{0:+d}% more Elemental Damage per 30 Resonance of any type" }, [2]={ limit={ @@ -204449,7 +211324,7 @@ return { [2]="#" } }, - text="{0}% more Elemental Damage with Attacks per 30\nResonance of any type" + text="{0}% more Elemental Damage per 30 Resonance of any type" }, [3]={ [1]={ @@ -204466,7 +211341,7 @@ return { [2]="#" } }, - text="{0}% less Elemental Damage with Attacks per 30\nResonance of any type" + text="{0}% less Elemental Damage per 30 Resonance of any type" } }, stats={ @@ -204474,7 +211349,7 @@ return { [2]="quality_display_trinity_is_gem" } }, - [9301]={ + [9568]={ [1]={ [1]={ limit={ @@ -204487,7 +211362,7 @@ return { [2]="#" } }, - text="On dealing Elemental Damage with an Attack Hit gain {0} Resonance of the highest Elemental Damage type and lose {1} Resonance of the other types" + text="On dealing Elemental Damage with a Hit, gain {0} Resonance of the highest Elemental Damage type and lose {1} Resonance of the other types" } }, stats={ @@ -204495,7 +211370,7 @@ return { [2]="trinity_loss_per_hit" } }, - [9302]={ + [9569]={ [1]={ [1]={ limit={ @@ -204524,7 +211399,7 @@ return { [1]="two_handed_melee_area_damage_+%" } }, - [9303]={ + [9570]={ [1]={ [1]={ limit={ @@ -204553,7 +211428,7 @@ return { [1]="two_handed_melee_area_of_effect_+%" } }, - [9304]={ + [9571]={ [1]={ [1]={ limit={ @@ -204569,7 +211444,7 @@ return { [1]="uber_domain_monster_additional_physical_damage_reduction_%_per_revival" } }, - [9305]={ + [9572]={ [1]={ [1]={ limit={ @@ -204585,7 +211460,7 @@ return { [1]="uber_domain_monster_all_resistances_+%_per_revival" } }, - [9306]={ + [9573]={ [1]={ [1]={ limit={ @@ -204614,7 +211489,7 @@ return { [1]="uber_domain_monster_attack_and_cast_speed_+%_per_revival" } }, - [9307]={ + [9574]={ [1]={ [1]={ limit={ @@ -204630,7 +211505,7 @@ return { [1]="uber_domain_monster_avoid_stun_%_per_revival" } }, - [9308]={ + [9575]={ [1]={ [1]={ limit={ @@ -204659,7 +211534,7 @@ return { [1]="uber_domain_monster_critical_strike_chance_+%_per_revival" } }, - [9309]={ + [9576]={ [1]={ [1]={ limit={ @@ -204675,7 +211550,7 @@ return { [1]="uber_domain_monster_critical_strike_multiplier_+%_per_revival" } }, - [9310]={ + [9577]={ [1]={ [1]={ limit={ @@ -204691,7 +211566,7 @@ return { [1]="uber_domain_monster_deal_double_damage_chance_%_per_revival" } }, - [9311]={ + [9578]={ [1]={ [1]={ [1]={ @@ -204711,7 +211586,7 @@ return { [1]="uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival" } }, - [9312]={ + [9579]={ [1]={ [1]={ limit={ @@ -204740,7 +211615,7 @@ return { [1]="uber_domain_monster_maximum_life_+%_per_revival" } }, - [9313]={ + [9580]={ [1]={ [1]={ limit={ @@ -204769,7 +211644,7 @@ return { [1]="uber_domain_monster_movement_speed_+%_per_revival" } }, - [9314]={ + [9581]={ [1]={ [1]={ limit={ @@ -204785,7 +211660,7 @@ return { [1]="uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival" } }, - [9315]={ + [9582]={ [1]={ [1]={ limit={ @@ -204801,7 +211676,7 @@ return { [1]="uber_domain_monster_penetrate_all_resistances_%_per_revival" } }, - [9316]={ + [9583]={ [1]={ [1]={ limit={ @@ -204830,7 +211705,7 @@ return { [1]="uber_domain_monster_physical_damage_reduction_rating_+%_per_revival" } }, - [9317]={ + [9584]={ [1]={ [1]={ limit={ @@ -204855,7 +211730,7 @@ return { [1]="uber_domain_monster_reward_chance_+%" } }, - [9318]={ + [9585]={ [1]={ [1]={ limit={ @@ -204871,7 +211746,7 @@ return { [1]="unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds" } }, - [9319]={ + [9586]={ [1]={ [1]={ limit={ @@ -204887,7 +211762,7 @@ return { [1]="unaffected_by_bleeding_while_affected_by_malevolence" } }, - [9320]={ + [9587]={ [1]={ [1]={ limit={ @@ -204903,7 +211778,7 @@ return { [1]="unaffected_by_bleeding_while_leeching" } }, - [9321]={ + [9588]={ [1]={ [1]={ limit={ @@ -204919,7 +211794,7 @@ return { [1]="unaffected_by_blind" } }, - [9322]={ + [9589]={ [1]={ [1]={ limit={ @@ -204928,14 +211803,14 @@ return { [2]="#" } }, - text="Unaffected by Burning Ground" + text="Unaffected by Ignited Ground" } }, stats={ [1]="unaffected_by_burning_ground" } }, - [9323]={ + [9590]={ [1]={ [1]={ limit={ @@ -204951,7 +211826,7 @@ return { [1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire" } }, - [9324]={ + [9591]={ [1]={ [1]={ limit={ @@ -204967,7 +211842,7 @@ return { [1]="unaffected_by_chill" } }, - [9325]={ + [9592]={ [1]={ [1]={ limit={ @@ -204983,7 +211858,7 @@ return { [1]="unaffected_by_chill_during_dodge_roll" } }, - [9326]={ + [9593]={ [1]={ [1]={ limit={ @@ -204999,7 +211874,7 @@ return { [1]="unaffected_by_chill_while_channelling" } }, - [9327]={ + [9594]={ [1]={ [1]={ limit={ @@ -205015,7 +211890,7 @@ return { [1]="unaffected_by_chill_while_mana_leeching" } }, - [9328]={ + [9595]={ [1]={ [1]={ limit={ @@ -205031,7 +211906,7 @@ return { [1]="unaffected_by_chilled_ground" } }, - [9329]={ + [9596]={ [1]={ [1]={ limit={ @@ -205047,7 +211922,7 @@ return { [1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice" } }, - [9330]={ + [9597]={ [1]={ [1]={ limit={ @@ -205063,7 +211938,7 @@ return { [1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning" } }, - [9331]={ + [9598]={ [1]={ [1]={ limit={ @@ -205079,7 +211954,7 @@ return { [1]="unaffected_by_corrupted_blood_while_leeching" } }, - [9332]={ + [9599]={ [1]={ [1]={ limit={ @@ -205095,7 +211970,7 @@ return { [1]="unaffected_by_curses_while_affected_by_zealotry" } }, - [9333]={ + [9600]={ [1]={ [1]={ limit={ @@ -205111,7 +211986,7 @@ return { [1]="unaffected_by_desecrated_ground" } }, - [9334]={ + [9601]={ [1]={ [1]={ limit={ @@ -205127,7 +212002,7 @@ return { [1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements" } }, - [9335]={ + [9602]={ [1]={ [1]={ limit={ @@ -205143,7 +212018,7 @@ return { [1]="unaffected_by_enfeeble_while_affected_by_grace" } }, - [9336]={ + [9603]={ [1]={ [1]={ limit={ @@ -205159,7 +212034,7 @@ return { [1]="unaffected_by_flammability_while_affected_by_purity_of_fire" } }, - [9337]={ + [9604]={ [1]={ [1]={ limit={ @@ -205175,7 +212050,7 @@ return { [1]="unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds" } }, - [9338]={ + [9605]={ [1]={ [1]={ limit={ @@ -205191,7 +212066,7 @@ return { [1]="unaffected_by_frostbite_while_affected_by_purity_of_ice" } }, - [9339]={ + [9606]={ [1]={ [1]={ limit={ @@ -205207,7 +212082,7 @@ return { [1]="unaffected_by_ignite" } }, - [9340]={ + [9607]={ [1]={ [1]={ limit={ @@ -205223,7 +212098,7 @@ return { [1]="unaffected_by_ignite_and_shock_while_max_life_mana_within_500" } }, - [9341]={ + [9608]={ [1]={ [1]={ limit={ @@ -205239,7 +212114,7 @@ return { [1]="unaffected_by_ignite_if_cast_flammability_in_past_10_seconds" } }, - [9342]={ + [9609]={ [1]={ [1]={ limit={ @@ -205255,7 +212130,7 @@ return { [1]="unaffected_by_poison_while_affected_by_malevolence" } }, - [9343]={ + [9610]={ [1]={ [1]={ limit={ @@ -205271,7 +212146,7 @@ return { [1]="unaffected_by_shock" } }, - [9344]={ + [9611]={ [1]={ [1]={ limit={ @@ -205287,7 +212162,7 @@ return { [1]="unaffected_by_shock_if_cast_conductivity_in_past_10_seconds" } }, - [9345]={ + [9612]={ [1]={ [1]={ limit={ @@ -205303,7 +212178,7 @@ return { [1]="unaffected_by_shock_while_channelling" } }, - [9346]={ + [9613]={ [1]={ [1]={ limit={ @@ -205319,7 +212194,7 @@ return { [1]="unaffected_by_shocked_ground" } }, - [9347]={ + [9614]={ [1]={ [1]={ limit={ @@ -205335,7 +212210,7 @@ return { [1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning" } }, - [9348]={ + [9615]={ [1]={ [1]={ limit={ @@ -205351,7 +212226,7 @@ return { [1]="unaffected_by_temporal_chains" } }, - [9349]={ + [9616]={ [1]={ [1]={ limit={ @@ -205367,7 +212242,7 @@ return { [1]="unaffected_by_temporal_chains_while_affected_by_haste" } }, - [9350]={ + [9617]={ [1]={ [1]={ limit={ @@ -205383,7 +212258,7 @@ return { [1]="unaffected_by_vulnerability_while_affected_by_determination" } }, - [9351]={ + [9618]={ [1]={ [1]={ limit={ @@ -205412,7 +212287,7 @@ return { [1]="unarmed_attack_skill_melee_dash_range_+%" } }, - [9352]={ + [9619]={ [1]={ [1]={ limit={ @@ -205441,7 +212316,7 @@ return { [1]="unarmed_attack_speed_+%" } }, - [9353]={ + [9620]={ [1]={ [1]={ limit={ @@ -205470,7 +212345,36 @@ return { [1]="unattached_sigil_attachment_range_+%_per_second" } }, - [9354]={ + [9621]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more chance to inflict Elemental Ailments while Unbound" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less chance to inflict Elemental Ailments while Unbound" + } + }, + stats={ + [1]="unbound_ailment_elemental_ailment_chance_+%_final" + } + }, + [9622]={ [1]={ [1]={ limit={ @@ -205496,10 +212400,10 @@ return { } }, stats={ - [1]="unbound_ailment_elemental_ailment_buildup_+%_final" + [1]="unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final" } }, - [9355]={ + [9623]={ [1]={ [1]={ limit={ @@ -205508,7 +212412,7 @@ return { [2]="#" } }, - text="{0}% more chance to inflict Elemental Ailments while Unbound" + text="{0}% increased Reservation Efficiency of Skills which create Undead Minions" }, [2]={ [1]={ @@ -205521,14 +212425,14 @@ return { [2]=-1 } }, - text="{0}% less chance to inflict Elemental Ailments while Unbound" + text="{0}% reduced Reservation Efficiency of Skills which create Undead Minions" } }, stats={ - [1]="unbound_ailment_elemental_ailment_chance_+%_final" + [1]="reservation_efficiency_+%_of_undead_minion_skills" } }, - [9356]={ + [9624]={ [1]={ [1]={ limit={ @@ -205561,7 +212465,7 @@ return { [1]="undead_minion_reservation_+%" } }, - [9357]={ + [9625]={ [1]={ [1]={ limit={ @@ -205577,7 +212481,7 @@ return { [1]="unearth_additional_corpse_level" } }, - [9358]={ + [9626]={ [1]={ [1]={ limit={ @@ -205606,7 +212510,7 @@ return { [1]="unholy_might_granted_magnitude_+%_per_100_maximum_mana" } }, - [9359]={ + [9627]={ [1]={ [1]={ limit={ @@ -205622,7 +212526,7 @@ return { [1]="unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell" } }, - [9360]={ + [9628]={ [1]={ [1]={ [1]={ @@ -205731,7 +212635,7 @@ return { [3]="unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life" } }, - [9361]={ + [9629]={ [1]={ [1]={ limit={ @@ -205747,7 +212651,7 @@ return { [1]="unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es" } }, - [9362]={ + [9630]={ [1]={ [1]={ limit={ @@ -205763,7 +212667,7 @@ return { [1]="unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield" } }, - [9363]={ + [9631]={ [1]={ [1]={ [1]={ @@ -205783,7 +212687,7 @@ return { [1]="unique_cooldown_modifier_ms" } }, - [9364]={ + [9632]={ [1]={ [1]={ limit={ @@ -205812,7 +212716,7 @@ return { [1]="unique_crowd_controlled_enemy_damage_taken_-%_final" } }, - [9365]={ + [9633]={ [1]={ [1]={ limit={ @@ -205828,7 +212732,7 @@ return { [1]="unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max" } }, - [9366]={ + [9634]={ [1]={ [1]={ limit={ @@ -205844,7 +212748,7 @@ return { [1]="unique_double_presence_radius" } }, - [9367]={ + [9635]={ [1]={ [1]={ limit={ @@ -205860,7 +212764,7 @@ return { [1]="unique_gain_soul_eater" } }, - [9368]={ + [9636]={ [1]={ [1]={ limit={ @@ -205885,7 +212789,7 @@ return { [1]="unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [9369]={ + [9637]={ [1]={ [1]={ limit={ @@ -205914,7 +212818,7 @@ return { [1]="unique_helmet_damage_+%_final_per_warcry_exerting_action" } }, - [9370]={ + [9638]={ [1]={ [1]={ limit={ @@ -205943,7 +212847,7 @@ return { [1]="unique_jewel_flask_charges_gained_+%_final_from_kills" } }, - [9371]={ + [9639]={ [1]={ [1]={ limit={ @@ -205972,7 +212876,7 @@ return { [1]="unique_jewel_flask_duration_+%_final" } }, - [9372]={ + [9640]={ [1]={ [1]={ [1]={ @@ -205992,7 +212896,7 @@ return { [1]="unique_jewel_grants_notable_hash_1" } }, - [9373]={ + [9641]={ [1]={ [1]={ [1]={ @@ -206012,7 +212916,7 @@ return { [1]="unique_jewel_grants_notable_hash_2" } }, - [9374]={ + [9642]={ [1]={ [1]={ [1]={ @@ -206032,7 +212936,7 @@ return { [1]="unique_jewel_grants_notable_hash_3" } }, - [9375]={ + [9643]={ [1]={ [1]={ [1]={ @@ -206052,7 +212956,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_1" } }, - [9376]={ + [9644]={ [1]={ [1]={ [1]={ @@ -206072,7 +212976,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_2" } }, - [9377]={ + [9645]={ [1]={ [1]={ limit={ @@ -206101,7 +213005,7 @@ return { [1]="unique_jewel_reserved_blood_maximum_life_+%_final" } }, - [9378]={ + [9646]={ [1]={ [1]={ [1]={ @@ -206143,7 +213047,7 @@ return { [2]="unique_jewel_specific_skill_level_+_skill" } }, - [9379]={ + [9647]={ [1]={ [1]={ limit={ @@ -206159,7 +213063,7 @@ return { [1]="local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time" } }, - [9380]={ + [9648]={ [1]={ [1]={ limit={ @@ -206175,7 +213079,7 @@ return { [1]="unique_lose_a_power_charge_when_hit" } }, - [9381]={ + [9649]={ [1]={ [1]={ limit={ @@ -206191,7 +213095,7 @@ return { [1]="unique_minions_in_presence_gain_and_lose_life_when_you_do" } }, - [9382]={ + [9650]={ [1]={ [1]={ limit={ @@ -206220,7 +213124,7 @@ return { [1]="unique_monster_dropped_item_rarity_+%" } }, - [9383]={ + [9651]={ [1]={ [1]={ limit={ @@ -206249,7 +213153,7 @@ return { [1]="unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds" } }, - [9384]={ + [9652]={ [1]={ [1]={ limit={ @@ -206265,7 +213169,7 @@ return { [1]="unique_no_curse_delay" } }, - [9385]={ + [9653]={ [1]={ [1]={ limit={ @@ -206281,7 +213185,7 @@ return { [1]="unique_prism_guardian_spirit_+_per_X_maximum_life" } }, - [9386]={ + [9654]={ [1]={ [1]={ limit={ @@ -206297,7 +213201,7 @@ return { [1]="unique_recover_%_maximum_life_on_x_altenator" } }, - [9387]={ + [9655]={ [1]={ [1]={ limit={ @@ -206335,7 +213239,7 @@ return { [1]="unique_redblade_banner_enemies_in_presence_monster_power_+%_final" } }, - [9388]={ + [9656]={ [1]={ [1]={ limit={ @@ -206364,7 +213268,7 @@ return { [1]="unique_replica_volkuurs_guidance_ignite_duration_+%_final" } }, - [9389]={ + [9657]={ [1]={ [1]={ limit={ @@ -206373,14 +213277,14 @@ return { [2]="#" } }, - text="Using a Mana Flask revives your Persistent Minions" + text="Using a Mana Flask revives one of your Persistent Minions" } }, stats={ [1]="unique_revive_permanent_minions_on_mana_flask_use" } }, - [9390]={ + [9658]={ [1]={ [1]={ limit={ @@ -206389,14 +213293,14 @@ return { [2]="#" } }, - text="Apply Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds while Shield is raised" + text="Inflict Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds, every 0.25 seconds while raised" } }, stats={ [1]="unique_shield_window_of_paradise_apply_elemental_exposure_while_raised" } }, - [9391]={ + [9659]={ [1]={ [1]={ limit={ @@ -206425,7 +213329,7 @@ return { [1]="unique_soulless_elegance_energy_shield_recharge_rate_+%_final" } }, - [9392]={ + [9660]={ [1]={ [1]={ limit={ @@ -206441,7 +213345,7 @@ return { [1]="unique_spirit_reservations_are_halved" } }, - [9393]={ + [9661]={ [1]={ [1]={ limit={ @@ -206457,7 +213361,32 @@ return { [1]="unique_sunblast_throw_traps_in_circle_radius" } }, - [9394]={ + [9662]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Stun Buildup with Lightning Damage" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Stun Buildup with Lightning Damage" + } + }, + stats={ + [1]="unique_two_handed_weapon_lightning_stun_multiplier_+%_final" + } + }, + [9663]={ [1]={ [1]={ limit={ @@ -206473,7 +213402,7 @@ return { [1]="unique_voltaxic_rift_shock_maximum_magnitude_override" } }, - [9395]={ + [9664]={ [1]={ [1]={ limit={ @@ -206489,7 +213418,7 @@ return { [1]="unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below" } }, - [9396]={ + [9665]={ [1]={ [1]={ limit={ @@ -206505,7 +213434,7 @@ return { [1]="unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below" } }, - [9397]={ + [9666]={ [1]={ [1]={ limit={ @@ -206521,7 +213450,7 @@ return { [1]="unnerve_for_4_seconds_on_hit_with_wands" } }, - [9398]={ + [9667]={ [1]={ [1]={ [1]={ @@ -206541,7 +213470,7 @@ return { [1]="unnerve_nearby_enemies_on_use_for_ms" } }, - [9399]={ + [9668]={ [1]={ [1]={ limit={ @@ -206566,7 +213495,7 @@ return { [1]="utility_flask_charges_recovered_per_3_seconds" } }, - [9400]={ + [9669]={ [1]={ [1]={ limit={ @@ -206595,7 +213524,7 @@ return { [1]="utility_flask_cold_damage_taken_+%_final" } }, - [9401]={ + [9670]={ [1]={ [1]={ limit={ @@ -206624,7 +213553,7 @@ return { [1]="utility_flask_fire_damage_taken_+%_final" } }, - [9402]={ + [9671]={ [1]={ [1]={ limit={ @@ -206653,7 +213582,7 @@ return { [1]="utility_flask_lightning_damage_taken_+%_final" } }, - [9403]={ + [9672]={ [1]={ [1]={ limit={ @@ -206669,7 +213598,7 @@ return { [1]="vaal_skill_gem_level_+" } }, - [9404]={ + [9673]={ [1]={ [1]={ limit={ @@ -206702,7 +213631,7 @@ return { [1]="vaal_skill_soul_cost_+%" } }, - [9405]={ + [9674]={ [1]={ [1]={ limit={ @@ -206718,7 +213647,7 @@ return { [1]="vaal_skill_soul_refund_chance_%" } }, - [9406]={ + [9675]={ [1]={ [1]={ limit={ @@ -206747,7 +213676,7 @@ return { [1]="vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%" } }, - [9407]={ + [9676]={ [1]={ [1]={ limit={ @@ -206776,7 +213705,7 @@ return { [1]="vampiric_link_duration_+%" } }, - [9408]={ + [9677]={ [1]={ [1]={ limit={ @@ -206792,7 +213721,7 @@ return { [1]="vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [9409]={ + [9678]={ [1]={ [1]={ limit={ @@ -206821,7 +213750,7 @@ return { [1]="viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge" } }, - [9410]={ + [9679]={ [1]={ [1]={ limit={ @@ -206850,7 +213779,7 @@ return { [1]="viper_strike_dual_wield_damage_+%_final" } }, - [9411]={ + [9680]={ [1]={ [1]={ limit={ @@ -206875,28 +213804,77 @@ return { [1]="virtual_block_%_damage_taken" } }, - [9412]={ + [9681]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_endurance_charge_%" } }, - [9413]={ + [9682]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_frenzy_charge_%" } }, - [9414]={ + [9683]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_power_charge_%" } }, - [9415]={ + [9684]={ + [1]={ + }, + stats={ + [1]="virtual_glory_generation_+%" + } + }, + [9685]={ + [1]={ + }, + stats={ + [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break" + } + }, + [9686]={ + [1]={ + }, + stats={ + [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit" + } + }, + [9687]={ + [1]={ + }, + stats={ + [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun" + } + }, + [9688]={ + [1]={ + }, + stats={ + [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite" + } + }, + [9689]={ + [1]={ + }, + stats={ + [1]="virtual_maximum_curse_zones_allowed" + } + }, + [9690]={ + [1]={ + }, + stats={ + [1]="virtual_number_of_banners_allowed" + } + }, + [9691]={ [1]={ [1]={ limit={ @@ -206921,7 +213899,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [9416]={ + [9692]={ [1]={ [1]={ limit={ @@ -206937,7 +213915,7 @@ return { [1]="virulent_arrow_chance_to_poison_%_per_stage" } }, - [9417]={ + [9693]={ [1]={ [1]={ [1]={ @@ -206974,7 +213952,7 @@ return { [1]="vitality_mana_reservation_efficiency_-2%_per_1" } }, - [9418]={ + [9694]={ [1]={ [1]={ limit={ @@ -207003,7 +213981,7 @@ return { [1]="vitality_mana_reservation_efficiency_+%" } }, - [9419]={ + [9695]={ [1]={ [1]={ limit={ @@ -207019,7 +213997,7 @@ return { [1]="vitality_reserves_no_mana" } }, - [9420]={ + [9696]={ [1]={ [1]={ limit={ @@ -207035,7 +214013,7 @@ return { [1]="void_sphere_cooldown_speed_+%" } }, - [9421]={ + [9697]={ [1]={ [1]={ limit={ @@ -207051,7 +214029,7 @@ return { [1]="volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity" } }, - [9422]={ + [9698]={ [1]={ [1]={ limit={ @@ -207076,7 +214054,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [9423]={ + [9699]={ [1]={ [1]={ limit={ @@ -207105,7 +214083,7 @@ return { [1]="volatile_dead_cast_speed_+%" } }, - [9424]={ + [9700]={ [1]={ [1]={ limit={ @@ -207121,7 +214099,7 @@ return { [1]="volatile_dead_consume_additional_corpse" } }, - [9425]={ + [9701]={ [1]={ [1]={ limit={ @@ -207150,7 +214128,7 @@ return { [1]="volatile_dead_damage_+%" } }, - [9426]={ + [9702]={ [1]={ [1]={ limit={ @@ -207166,7 +214144,52 @@ return { [1]="volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant" } }, - [9427]={ + [9703]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Volatile Power also grants {0}% increased Critical Hit chance per Volatility exploded" + } + }, + stats={ + [1]="volatility_critical_strike_chance_+%_to_grant" + } + }, + [9704]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Volatility Explosion delay" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="-1" + } + }, + text="{0}% reduced Volatility Explosion delay" + } + }, + stats={ + [1]="volatility_detonation_delay_+%" + } + }, + [9705]={ [1]={ [1]={ limit={ @@ -207191,7 +214214,7 @@ return { [1]="volatility_on_kill_%_chance" } }, - [9428]={ + [9706]={ [1]={ [1]={ limit={ @@ -207200,7 +214223,7 @@ return { [2]="#" } }, - text="When Volatility on you detonates, you regain an equivalent amount of Volatility" + text="When Volatility on you explodes, you regain an equivalent amount of Volatility" }, [2]={ limit={ @@ -207209,14 +214232,14 @@ return { [2]=99 } }, - text="{0}% chance that when Volatility on you detonates, you regain an equivalent amount of Volatility" + text="{0}% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility" } }, stats={ [1]="volatility_refresh_%_chance" } }, - [9429]={ + [9707]={ [1]={ [1]={ limit={ @@ -207241,7 +214264,7 @@ return { [1]="volatility_when_stunned_%_chance" } }, - [9430]={ + [9708]={ [1]={ [1]={ limit={ @@ -207270,7 +214293,7 @@ return { [1]="volcanic_fissure_damage_+%" } }, - [9431]={ + [9709]={ [1]={ [1]={ limit={ @@ -207295,7 +214318,7 @@ return { [1]="volcanic_fissure_number_of_additional_projectiles" } }, - [9432]={ + [9710]={ [1]={ [1]={ limit={ @@ -207324,7 +214347,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [9433]={ + [9711]={ [1]={ [1]={ limit={ @@ -207353,7 +214376,7 @@ return { [1]="voltaxic_burst_damage_+%" } }, - [9434]={ + [9712]={ [1]={ [1]={ limit={ @@ -207382,7 +214405,7 @@ return { [1]="voltaxic_burst_damage_+%_per_100ms_duration" } }, - [9435]={ + [9713]={ [1]={ [1]={ limit={ @@ -207411,7 +214434,7 @@ return { [1]="voltaxic_burst_skill_area_of_effect_+%" } }, - [9436]={ + [9714]={ [1]={ [1]={ [1]={ @@ -207431,7 +214454,7 @@ return { [1]="vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [9437]={ + [9715]={ [1]={ [1]={ limit={ @@ -207460,7 +214483,7 @@ return { [1]="vortex_area_of_effect_+%_when_cast_on_frostbolt" } }, - [9438]={ + [9716]={ [1]={ [1]={ limit={ @@ -207476,23 +214499,7 @@ return { [1]="vulnerability_no_reservation" } }, - [9439]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Wand Attacks fire an additional Projectile" - } - }, - stats={ - [1]="wand_attacks_fire_an_additional_projectile" - } - }, - [9440]={ + [9717]={ [1]={ [1]={ limit={ @@ -207521,7 +214528,7 @@ return { [1]="wand_damage_+%_if_crit_recently" } }, - [9441]={ + [9718]={ [1]={ [1]={ limit={ @@ -207550,7 +214557,7 @@ return { [1]="war_banner_aura_effect_+%" } }, - [9442]={ + [9719]={ [1]={ [1]={ limit={ @@ -207579,7 +214586,7 @@ return { [1]="war_banner_mana_reservation_efficiency_+%" } }, - [9443]={ + [9720]={ [1]={ [1]={ limit={ @@ -207595,7 +214602,23 @@ return { [1]="warbringer_overbreak_armour" } }, - [9444]={ + [9721]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcries inflict Fire Exposure" + } + }, + stats={ + [1]="warcries_apply_fire_exposure" + } + }, + [9722]={ [1]={ [1]={ limit={ @@ -207611,7 +214634,7 @@ return { [1]="warcries_bypass_cooldown" } }, - [9445]={ + [9723]={ [1]={ [1]={ limit={ @@ -207620,14 +214643,14 @@ return { [2]="#" } }, - text="Warcries Debilitate Enemies for 1 second" + text="Warcries Debilitate Enemies" } }, stats={ [1]="warcries_debilitate_enemies_for_1_second" } }, - [9446]={ + [9724]={ [1]={ [1]={ limit={ @@ -207643,7 +214666,7 @@ return { [1]="warcries_have_minimum_10_power" } }, - [9447]={ + [9725]={ [1]={ [1]={ limit={ @@ -207659,7 +214682,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [9448]={ + [9726]={ [1]={ [1]={ limit={ @@ -207688,7 +214711,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [9449]={ + [9727]={ [1]={ [1]={ limit={ @@ -207704,7 +214727,7 @@ return { [1]="warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power" } }, - [9450]={ + [9728]={ [1]={ [1]={ [1]={ @@ -207724,7 +214747,7 @@ return { [1]="warcry_cooldown_modifier_ms" } }, - [9451]={ + [9729]={ [1]={ [1]={ limit={ @@ -207753,7 +214776,7 @@ return { [1]="warcry_damage_+%" } }, - [9452]={ + [9730]={ [1]={ [1]={ limit={ @@ -207778,7 +214801,32 @@ return { [1]="warcry_empowers_next_x_melee_attacks" } }, - [9453]={ + [9731]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Warcries Empower an additional Attack if you have at least 100 Tribute" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Warcries Empower {0} additional Attacks if you have at least 100 Tribute" + } + }, + stats={ + [1]="warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute" + } + }, + [9732]={ [1]={ [1]={ limit={ @@ -207807,7 +214855,7 @@ return { [1]="warcry_monster_power_+%" } }, - [9454]={ + [9733]={ [1]={ [1]={ limit={ @@ -207836,7 +214884,7 @@ return { [1]="warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds" } }, - [9455]={ + [9734]={ [1]={ [1]={ limit={ @@ -207865,7 +214913,7 @@ return { [1]="warcry_skill_area_of_effect_+%" } }, - [9456]={ + [9735]={ [1]={ [1]={ limit={ @@ -207881,7 +214929,36 @@ return { [1]="warcry_skills_cooldown_is_4_seconds" } }, - [9457]={ + [9736]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Warcry Speed per 25 Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Warcry Speed per 25 Tribute" + } + }, + stats={ + [1]="warcry_speed_+%_per_25_tribute" + } + }, + [9737]={ [1]={ [1]={ limit={ @@ -207897,7 +214974,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [9458]={ + [9738]={ [1]={ [1]={ limit={ @@ -207926,7 +215003,7 @@ return { [1]="water_sphere_damage_+%" } }, - [9459]={ + [9739]={ [1]={ [1]={ limit={ @@ -207955,7 +215032,7 @@ return { [1]="weapon_damage_+%_per_10_str" } }, - [9460]={ + [9740]={ [1]={ [1]={ limit={ @@ -207984,7 +215061,7 @@ return { [1]="weapon_swap_speed_+%" } }, - [9461]={ + [9741]={ [1]={ [1]={ limit={ @@ -208009,7 +215086,7 @@ return { [1]="while_curse_is_25%_expired_hinder_enemy_%" } }, - [9462]={ + [9742]={ [1]={ [1]={ limit={ @@ -208025,7 +215102,7 @@ return { [1]="while_curse_is_33%_expired_malediction" } }, - [9463]={ + [9743]={ [1]={ [1]={ limit={ @@ -208054,7 +215131,7 @@ return { [1]="while_curse_is_50%_expired_curse_effect_+%" } }, - [9464]={ + [9744]={ [1]={ [1]={ limit={ @@ -208083,7 +215160,7 @@ return { [1]="while_curse_is_75%_expired_enemy_damage_taken_+%" } }, - [9465]={ + [9745]={ [1]={ [1]={ limit={ @@ -208099,7 +215176,7 @@ return { [1]="while_stationary_gain_additional_physical_damage_reduction_%" } }, - [9466]={ + [9746]={ [1]={ [1]={ [1]={ @@ -208119,7 +215196,7 @@ return { [1]="while_stationary_gain_life_regeneration_rate_per_minute_%" } }, - [9467]={ + [9747]={ [1]={ [1]={ limit={ @@ -208148,7 +215225,7 @@ return { [1]="winter_brand_chill_effect_+%" } }, - [9468]={ + [9748]={ [1]={ [1]={ limit={ @@ -208177,7 +215254,7 @@ return { [1]="winter_brand_damage_+%" } }, - [9469]={ + [9749]={ [1]={ [1]={ limit={ @@ -208193,7 +215270,7 @@ return { [1]="winter_brand_max_number_of_stages_+" } }, - [9470]={ + [9750]={ [1]={ [1]={ limit={ @@ -208209,7 +215286,7 @@ return { [1]="wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [9471]={ + [9751]={ [1]={ [1]={ limit={ @@ -208238,7 +215315,7 @@ return { [1]="witch_passive_maximum_lightning_damage_+%_final" } }, - [9472]={ + [9752]={ [1]={ [1]={ limit={ @@ -208267,7 +215344,7 @@ return { [1]="witchhunter_armour_evasion_+%_final" } }, - [9473]={ + [9753]={ [1]={ [1]={ limit={ @@ -208283,7 +215360,7 @@ return { [1]="witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical" } }, - [9474]={ + [9754]={ [1]={ [1]={ limit={ @@ -208299,7 +215376,7 @@ return { [1]="witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus" } }, - [9475]={ + [9755]={ [1]={ [1]={ limit={ @@ -208315,7 +215392,7 @@ return { [1]="wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [9476]={ + [9756]={ [1]={ [1]={ limit={ @@ -208344,7 +215421,7 @@ return { [1]="wither_expire_speed_+%" } }, - [9477]={ + [9757]={ [1]={ [1]={ limit={ @@ -208373,7 +215450,7 @@ return { [1]="withered_effect_on_self_+%" } }, - [9478]={ + [9758]={ [1]={ [1]={ limit={ @@ -208382,7 +215459,7 @@ return { [2]="#" } }, - text="{0}% increased Effect of Withered" + text="{0}% increased Withered Magnitude" }, [2]={ [1]={ @@ -208395,14 +215472,14 @@ return { [2]=-1 } }, - text="{0}% reduced Effect of Withered" + text="{0}% reduced Withered Magnitude" } }, stats={ - [1]="withered_effect_+%" + [1]="withered_magnitude_+%" } }, - [9479]={ + [9759]={ [1]={ [1]={ limit={ @@ -208427,7 +215504,7 @@ return { [1]="withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%" } }, - [9480]={ + [9760]={ [1]={ [1]={ limit={ @@ -208452,7 +215529,7 @@ return { [1]="withered_on_hit_for_4_seconds_%_chance" } }, - [9481]={ + [9761]={ [1]={ [1]={ [1]={ @@ -208489,7 +215566,7 @@ return { [1]="wrath_mana_reservation_efficiency_-2%_per_1" } }, - [9482]={ + [9762]={ [1]={ [1]={ limit={ @@ -208518,7 +215595,7 @@ return { [1]="wrath_mana_reservation_efficiency_+%" } }, - [9483]={ + [9763]={ [1]={ [1]={ limit={ @@ -208534,7 +215611,7 @@ return { [1]="wrath_reserves_no_mana" } }, - [9484]={ + [9764]={ [1]={ [1]={ limit={ @@ -208563,7 +215640,7 @@ return { [1]="x%_faster_start_of_sorcery_ward_recovery" } }, - [9485]={ + [9765]={ [1]={ [1]={ limit={ @@ -208579,23 +215656,36 @@ return { [1]="you_and_allies_additional_block_%_if_have_attacked_recently" } }, - [9486]={ + [9766]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="If you've Cast a Spell Recently, you\nand nearby Allies have {0:+d}% Chance to Block Spell Damage" + text="You and Allies in your Presence have {0}% increased Accuracy Rating" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You and Allies in your Presence have {0}% reduced Accuracy Rating" } }, stats={ - [1]="you_and_allies_additional_spell_block_%_if_cast_spell_recently" + [1]="you_and_allies_in_presence_accuracy_rating_+%" } }, - [9487]={ + [9767]={ [1]={ [1]={ limit={ @@ -208604,14 +215694,117 @@ return { [2]="#" } }, - text="All Damage from you and Allies in your Presence\ncontributes to Ignite Chance and Magnitude" + text="All Damage from you and Allies in your Presence\ncontributes to Flammability and Ignite Magnitudes" } }, stats={ [1]="you_and_allies_in_presence_all_damage_can_ignite" } }, - [9488]={ + [9768]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You and Allies in your Presence have {0}% increased Attack Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You and Allies in your Presence have {0}% reduced Attack Speed" + } + }, + stats={ + [1]="you_and_allies_in_presence_attack_speed_+%" + } + }, + [9769]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You and Allies in your Presence have {0}% increased Cast Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You and Allies in your Presence have {0}% reduced Cast Speed" + } + }, + stats={ + [1]="you_and_allies_in_presence_cast_speed_+%" + } + }, + [9770]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You and Allies in your Presence have {0:+d}% to Chaos Resistance" + } + }, + stats={ + [1]="you_and_allies_in_presence_chaos_damage_resistance_%" + } + }, + [9771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You and Allies in your Presence have {0}% increased Cooldown Recovery Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="You and Allies in your Presence have {0}% reduced Cooldown Recovery Rate" + } + }, + stats={ + [1]="you_and_allies_in_presence_cooldown_speed_+%" + } + }, + [9772]={ [1]={ [1]={ limit={ @@ -208627,7 +215820,7 @@ return { [1]="you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame" } }, - [9489]={ + [9773]={ [1]={ [1]={ limit={ @@ -208643,7 +215836,7 @@ return { [1]="you_and_nearby_allies_armour_+_if_have_impaled_recently" } }, - [9490]={ + [9774]={ [1]={ [1]={ limit={ @@ -208672,7 +215865,7 @@ return { [1]="you_and_nearby_allies_critical_strike_chance_+%" } }, - [9491]={ + [9775]={ [1]={ [1]={ limit={ @@ -208688,7 +215881,7 @@ return { [1]="you_and_nearby_allies_critical_strike_multiplier_+" } }, - [9492]={ + [9776]={ [1]={ [1]={ [1]={ @@ -208708,7 +215901,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently" } }, - [9493]={ + [9777]={ [1]={ [1]={ [1]={ @@ -208728,7 +215921,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently" } }, - [9494]={ + [9778]={ [1]={ [1]={ [1]={ @@ -208748,7 +215941,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently" } }, - [9495]={ + [9779]={ [1]={ [1]={ limit={ @@ -208764,7 +215957,7 @@ return { [1]="you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry" } }, - [9496]={ + [9780]={ [1]={ [1]={ limit={ @@ -208780,7 +215973,7 @@ return { [1]="you_and_nearby_party_members_gain_x_rage_when_you_warcry" } }, - [9497]={ + [9781]={ [1]={ [1]={ [1]={ @@ -208800,23 +215993,7 @@ return { [1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem" } }, - [9498]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You are Cursed with Conductivity" - } - }, - stats={ - [1]="you_are_cursed_with_conductivity" - } - }, - [9499]={ + [9782]={ [1]={ [1]={ limit={ @@ -208832,7 +216009,7 @@ return { [1]="you_are_cursed_with_despair" } }, - [9500]={ + [9783]={ [1]={ [1]={ limit={ @@ -208848,7 +216025,7 @@ return { [1]="you_are_cursed_with_elemental_weakness" } }, - [9501]={ + [9784]={ [1]={ [1]={ limit={ @@ -208864,39 +216041,7 @@ return { [1]="you_are_cursed_with_enfeeble" } }, - [9502]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You are Cursed with Flammability" - } - }, - stats={ - [1]="you_are_cursed_with_flammability" - } - }, - [9503]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You are Cursed with Frostbite" - } - }, - stats={ - [1]="you_are_cursed_with_frostbite" - } - }, - [9504]={ + [9785]={ [1]={ [1]={ limit={ @@ -208912,7 +216057,7 @@ return { [1]="you_are_cursed_with_temporal_chains" } }, - [9505]={ + [9786]={ [1]={ [1]={ limit={ @@ -208928,7 +216073,7 @@ return { [1]="you_are_cursed_with_vulnerability" } }, - [9506]={ + [9787]={ [1]={ [1]={ limit={ @@ -208944,7 +216089,7 @@ return { [1]="you_cannot_be_hindered" } }, - [9507]={ + [9788]={ [1]={ [1]={ limit={ @@ -208960,7 +216105,7 @@ return { [1]="you_cannot_have_non_animated_minions" } }, - [9508]={ + [9789]={ [1]={ [1]={ limit={ @@ -208976,7 +216121,7 @@ return { [1]="you_cannot_have_non_spectre_minions" } }, - [9509]={ + [9790]={ [1]={ [1]={ limit={ @@ -208992,7 +216137,7 @@ return { [1]="you_cannot_inflict_curses" } }, - [9510]={ + [9791]={ [1]={ [1]={ limit={ @@ -209008,7 +216153,7 @@ return { [1]="you_count_as_low_life_while_not_on_full_life" } }, - [9511]={ + [9792]={ [1]={ [1]={ limit={ @@ -209024,7 +216169,7 @@ return { [1]="you_gain_%_life_when_one_of_your_minions_is_revived" } }, - [9512]={ + [9793]={ [1]={ [1]={ limit={ @@ -209053,7 +216198,7 @@ return { [1]="your_aftershock_area_of_effect_+%" } }, - [9513]={ + [9794]={ [1]={ [1]={ limit={ @@ -209069,7 +216214,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [9514]={ + [9795]={ [1]={ [1]={ limit={ @@ -209085,23 +216230,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [9515]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Monsters cannot Block your Attacks" - } - }, - stats={ - [1]="your_attacks_cannot_be_blocked" - } - }, - [9516]={ + [9796]={ [1]={ [1]={ limit={ @@ -209117,7 +216246,7 @@ return { [1]="your_auras_except_anger_are_disabled" } }, - [9517]={ + [9797]={ [1]={ [1]={ limit={ @@ -209133,7 +216262,7 @@ return { [1]="your_auras_except_clarity_are_disabled" } }, - [9518]={ + [9798]={ [1]={ [1]={ limit={ @@ -209149,7 +216278,7 @@ return { [1]="your_auras_except_determination_are_disabled" } }, - [9519]={ + [9799]={ [1]={ [1]={ limit={ @@ -209165,7 +216294,7 @@ return { [1]="your_auras_except_discipline_are_disabled" } }, - [9520]={ + [9800]={ [1]={ [1]={ limit={ @@ -209181,7 +216310,7 @@ return { [1]="your_auras_except_grace_are_disabled" } }, - [9521]={ + [9801]={ [1]={ [1]={ limit={ @@ -209197,7 +216326,7 @@ return { [1]="your_auras_except_haste_are_disabled" } }, - [9522]={ + [9802]={ [1]={ [1]={ limit={ @@ -209213,7 +216342,7 @@ return { [1]="your_auras_except_hatred_are_disabled" } }, - [9523]={ + [9803]={ [1]={ [1]={ limit={ @@ -209229,7 +216358,7 @@ return { [1]="your_auras_except_malevolence_are_disabled" } }, - [9524]={ + [9804]={ [1]={ [1]={ limit={ @@ -209245,7 +216374,7 @@ return { [1]="your_auras_except_precision_are_disabled" } }, - [9525]={ + [9805]={ [1]={ [1]={ limit={ @@ -209261,7 +216390,7 @@ return { [1]="your_auras_except_pride_are_disabled" } }, - [9526]={ + [9806]={ [1]={ [1]={ limit={ @@ -209277,7 +216406,7 @@ return { [1]="your_auras_except_purity_of_elements_are_disabled" } }, - [9527]={ + [9807]={ [1]={ [1]={ limit={ @@ -209293,7 +216422,7 @@ return { [1]="your_auras_except_purity_of_fire_are_disabled" } }, - [9528]={ + [9808]={ [1]={ [1]={ limit={ @@ -209309,7 +216438,7 @@ return { [1]="your_auras_except_purity_of_ice_are_disabled" } }, - [9529]={ + [9809]={ [1]={ [1]={ limit={ @@ -209325,7 +216454,7 @@ return { [1]="your_auras_except_purity_of_lightning_are_disabled" } }, - [9530]={ + [9810]={ [1]={ [1]={ limit={ @@ -209341,7 +216470,7 @@ return { [1]="your_auras_except_vitality_are_disabled" } }, - [9531]={ + [9811]={ [1]={ [1]={ limit={ @@ -209357,7 +216486,7 @@ return { [1]="your_auras_except_wrath_are_disabled" } }, - [9532]={ + [9812]={ [1]={ [1]={ limit={ @@ -209373,7 +216502,7 @@ return { [1]="your_auras_except_zealotry_are_disabled" } }, - [9533]={ + [9813]={ [1]={ [1]={ limit={ @@ -209402,7 +216531,7 @@ return { [1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [9534]={ + [9814]={ [1]={ [1]={ limit={ @@ -209418,7 +216547,7 @@ return { [1]="your_es_takes_%_hit_damage_from_allies_in_presence_before_them" } }, - [9535]={ + [9815]={ [1]={ [1]={ limit={ @@ -209434,7 +216563,7 @@ return { [1]="your_life_cannot_change_while_you_have_energy_shield" } }, - [9536]={ + [9816]={ [1]={ [1]={ limit={ @@ -209459,7 +216588,7 @@ return { [1]="your_mace_slam_aftershock_chance_%" } }, - [9537]={ + [9817]={ [1]={ [1]={ limit={ @@ -209484,7 +216613,7 @@ return { [1]="your_mace_strike_aftershock_chance_%" } }, - [9538]={ + [9818]={ [1]={ [1]={ limit={ @@ -209493,7 +216622,7 @@ return { [2]=100 } }, - text="Your Marks Transfer to another Enemy when Marked Enemy dies" + text="When your Marks are Consumed, they Mark another Enemy" }, [2]={ limit={ @@ -209502,14 +216631,14 @@ return { [2]="#" } }, - text="Your Marks have a {0}% chance to Transfer to another Enemy when Marked Enemy dies" + text="When your Marks are Consumed, they have {0}% chance to Mark another Enemy" } }, stats={ - [1]="your_marks_transfer_to_nearby_enemies_on_death_%_chance" + [1]="your_marks_spread_to_a_nearby_enemies_on_consume_%_chance" } }, - [9539]={ + [9819]={ [1]={ [1]={ limit={ @@ -209525,7 +216654,7 @@ return { [1]="your_movement_skills_are_disabled" } }, - [9540]={ + [9820]={ [1]={ [1]={ [1]={ @@ -209558,7 +216687,7 @@ return { [1]="your_profane_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [9541]={ + [9821]={ [1]={ [1]={ limit={ @@ -209574,7 +216703,7 @@ return { [1]="your_shield_skills_are_disabled" } }, - [9542]={ + [9822]={ [1]={ [1]={ limit={ @@ -209599,7 +216728,7 @@ return { [1]="your_slam_aftershock_chance_%" } }, - [9543]={ + [9823]={ [1]={ [1]={ limit={ @@ -209615,7 +216744,7 @@ return { [1]="your_spells_are_disabled" } }, - [9544]={ + [9824]={ [1]={ [1]={ limit={ @@ -209631,7 +216760,7 @@ return { [1]="your_travel_skills_are_disabled" } }, - [9545]={ + [9825]={ [1]={ [1]={ limit={ @@ -209647,7 +216776,7 @@ return { [1]="your_travel_skills_except_dash_are_disabled" } }, - [9546]={ + [9826]={ [1]={ [1]={ limit={ @@ -209663,7 +216792,7 @@ return { [1]="all_damage_can_poison_while_affected_by_glorious_madness" } }, - [9547]={ + [9827]={ [1]={ [1]={ limit={ @@ -209679,7 +216808,7 @@ return { [1]="attack_minimum_added_lightning_damage_%_of_maximum_mana" } }, - [9548]={ + [9828]={ [1]={ [1]={ limit={ @@ -209695,7 +216824,7 @@ return { [1]="chance_to_deal_double_damage_while_affected_by_glorious_madness_%" } }, - [9549]={ + [9829]={ [1]={ [1]={ limit={ @@ -209711,7 +216840,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%" } }, - [9550]={ + [9830]={ [1]={ [1]={ limit={ @@ -209727,7 +216856,7 @@ return { [1]="gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness" } }, - [9551]={ + [9831]={ [1]={ [1]={ [1]={ @@ -209747,7 +216876,7 @@ return { [1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy" } }, - [9552]={ + [9832]={ [1]={ [1]={ limit={ @@ -209763,7 +216892,7 @@ return { [1]="immune_to_elemental_status_ailments_while_affected_by_glorious_madness" } }, - [9553]={ + [9833]={ [1]={ [1]={ limit={ @@ -209779,7 +216908,7 @@ return { [1]="local_apply_extra_herald_mod_when_synthesised" } }, - [9554]={ + [9834]={ [1]={ [1]={ limit={ @@ -209795,7 +216924,7 @@ return { [1]="local_is_alternate_tree_jewel" } }, - [9555]={ + [9835]={ [1]={ [1]={ limit={ @@ -209811,7 +216940,7 @@ return { [1]="local_is_survival_jewel" } }, - [9556]={ + [9836]={ [1]={ [1]={ [1]={ @@ -209831,7 +216960,7 @@ return { [1]="max_fortification_while_affected_by_glorious_madness_+1_per_4" } }, - [9557]={ + [9837]={ [1]={ [1]={ limit={ @@ -209847,7 +216976,7 @@ return { [1]="primordial_jewel_count" } }, - [9558]={ + [9838]={ [1]={ [1]={ limit={ @@ -209863,7 +216992,7 @@ return { [1]="armour_+%_per_rage" } }, - [9559]={ + [9839]={ [1]={ [1]={ limit={ @@ -209892,7 +217021,7 @@ return { [1]="zealotry_aura_effect_+%" } }, - [9560]={ + [9840]={ [1]={ [1]={ [1]={ @@ -209929,7 +217058,7 @@ return { [1]="zealotry_mana_reservation_efficiency_-2%_per_1" } }, - [9561]={ + [9841]={ [1]={ [1]={ limit={ @@ -209958,7 +217087,7 @@ return { [1]="zealotry_mana_reservation_efficiency_+%" } }, - [9562]={ + [9842]={ [1]={ [1]={ limit={ @@ -209991,7 +217120,7 @@ return { [1]="zealotry_mana_reservation_+%" } }, - [9563]={ + [9843]={ [1]={ [1]={ limit={ @@ -210007,7 +217136,7 @@ return { [1]="zealotry_reserves_no_mana" } }, - [9564]={ + [9844]={ [1]={ [1]={ limit={ @@ -210023,7 +217152,7 @@ return { [1]="zero_chaos_resistance" } }, - [9565]={ + [9845]={ [1]={ [1]={ [1]={ @@ -210043,7 +217172,7 @@ return { [1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [9566]={ + [9846]={ [1]={ [1]={ limit={ @@ -210072,7 +217201,7 @@ return { [1]="zombie_physical_damage_+%_final" } }, - [9567]={ + [9847]={ [1]={ [1]={ limit={ @@ -210101,7 +217230,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [9568]={ + [9848]={ [1]={ [1]={ limit={ @@ -210117,7 +217246,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [9569]={ + [9849]={ [1]={ [1]={ limit={ @@ -210133,7 +217262,7 @@ return { [1]="zombie_slam_damage_+%" } }, - [9570]={ + [9850]={ [1]={ [1]={ limit={ @@ -210149,7 +217278,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [9571]={ + [9851]={ [1]={ [1]={ limit={ @@ -210165,7 +217294,7 @@ return { [1]="golems_larger_aggro_radius" } }, - [9572]={ + [9852]={ [1]={ [1]={ limit={ @@ -210181,7 +217310,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [9573]={ + [9853]={ [1]={ [1]={ limit={ @@ -210202,7 +217331,7 @@ return { [2]="local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%" } }, - [9574]={ + [9854]={ [1]={ [1]={ limit={ @@ -210231,7 +217360,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%" } }, - [9575]={ + [9855]={ [1]={ [1]={ limit={ @@ -210260,7 +217389,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%" } }, - [9576]={ + [9856]={ [1]={ [1]={ limit={ @@ -210281,7 +217410,7 @@ return { [2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage" } }, - [9577]={ + [9857]={ [1]={ [1]={ limit={ @@ -210297,7 +217426,7 @@ return { [1]="attack_maximum_added_lightning_damage_%_of_maximum_mana" } }, - [9578]={ + [9858]={ [1]={ [1]={ limit={ @@ -210313,7 +217442,7 @@ return { [1]="melee_hits_grant_rampage_stacks" } }, - [9579]={ + [9859]={ [1]={ [1]={ limit={ @@ -210329,7 +217458,7 @@ return { [1]="player_gain_rampage_stacks" } }, - [9580]={ + [9860]={ [1]={ [1]={ limit={ @@ -210345,7 +217474,7 @@ return { [1]="demigods_virtue" } }, - [9581]={ + [9861]={ [1]={ [1]={ limit={ @@ -210361,7 +217490,7 @@ return { [1]="keystone_2_companions" } }, - [9582]={ + [9862]={ [1]={ [1]={ limit={ @@ -210377,7 +217506,7 @@ return { [1]="keystone_acrobatics" } }, - [9583]={ + [9863]={ [1]={ [1]={ limit={ @@ -210393,7 +217522,7 @@ return { [1]="keystone_alternate_dexterity_bonus" } }, - [9584]={ + [9864]={ [1]={ [1]={ limit={ @@ -210409,7 +217538,7 @@ return { [1]="keystone_alternate_intelligence_bonus" } }, - [9585]={ + [9865]={ [1]={ [1]={ limit={ @@ -210425,7 +217554,7 @@ return { [1]="keystone_alternate_strength_bonus" } }, - [9586]={ + [9866]={ [1]={ [1]={ limit={ @@ -210441,7 +217570,23 @@ return { [1]="keystone_ancestral_bond" } }, - [9587]={ + [9867]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ritual Cadence" + } + }, + stats={ + [1]="keystone_auto_invocation" + } + }, + [9868]={ [1]={ [1]={ limit={ @@ -210457,7 +217602,7 @@ return { [1]="keystone_avatar_of_fire" } }, - [9588]={ + [9869]={ [1]={ [1]={ limit={ @@ -210473,7 +217618,7 @@ return { [1]="keystone_battlemage" } }, - [9589]={ + [9870]={ [1]={ [1]={ limit={ @@ -210489,7 +217634,7 @@ return { [1]="keystone_blood_magic" } }, - [9590]={ + [9871]={ [1]={ [1]={ limit={ @@ -210505,7 +217650,7 @@ return { [1]="keystone_bulwark" } }, - [9591]={ + [9872]={ [1]={ [1]={ limit={ @@ -210521,7 +217666,7 @@ return { [1]="keystone_call_to_arms" } }, - [9592]={ + [9873]={ [1]={ [1]={ limit={ @@ -210537,7 +217682,7 @@ return { [1]="keystone_chaos_inoculation" } }, - [9593]={ + [9874]={ [1]={ [1]={ limit={ @@ -210553,7 +217698,7 @@ return { [1]="keystone_charge_cycle" } }, - [9594]={ + [9875]={ [1]={ [1]={ limit={ @@ -210569,7 +217714,7 @@ return { [1]="keystone_conduit" } }, - [9595]={ + [9876]={ [1]={ [1]={ limit={ @@ -210585,7 +217730,7 @@ return { [1]="keystone_crimson_assault" } }, - [9596]={ + [9877]={ [1]={ [1]={ limit={ @@ -210601,7 +217746,7 @@ return { [1]="keystone_crimson_dance" } }, - [9597]={ + [9878]={ [1]={ [1]={ limit={ @@ -210617,7 +217762,7 @@ return { [1]="keystone_dance_with_death" } }, - [9598]={ + [9879]={ [1]={ [1]={ limit={ @@ -210633,7 +217778,7 @@ return { [1]="keystone_divine_flesh" } }, - [9599]={ + [9880]={ [1]={ [1]={ limit={ @@ -210649,7 +217794,7 @@ return { [1]="keystone_divine_shield" } }, - [9600]={ + [9881]={ [1]={ [1]={ limit={ @@ -210665,7 +217810,7 @@ return { [1]="keystone_eldritch_battery" } }, - [9601]={ + [9882]={ [1]={ [1]={ limit={ @@ -210681,7 +217826,7 @@ return { [1]="keystone_elemental_equilibrium" } }, - [9602]={ + [9883]={ [1]={ [1]={ limit={ @@ -210697,7 +217842,7 @@ return { [1]="keystone_elemental_overload" } }, - [9603]={ + [9884]={ [1]={ [1]={ limit={ @@ -210713,7 +217858,7 @@ return { [1]="keystone_emperors_heart" } }, - [9604]={ + [9885]={ [1]={ [1]={ limit={ @@ -210729,7 +217874,7 @@ return { [1]="keystone_eternal_youth" } }, - [9605]={ + [9886]={ [1]={ [1]={ limit={ @@ -210745,7 +217890,23 @@ return { [1]="keystone_everlasting_sacrifice" } }, - [9606]={ + [9887]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Blackflame Covenant" + } + }, + stats={ + [1]="keystone_fire_spells_become_chaos_spells" + } + }, + [9888]={ [1]={ [1]={ limit={ @@ -210761,7 +217922,7 @@ return { [1]="keystone_giants_blood" } }, - [9607]={ + [9889]={ [1]={ [1]={ limit={ @@ -210777,7 +217938,7 @@ return { [1]="keystone_glancing_blows" } }, - [9608]={ + [9890]={ [1]={ [1]={ limit={ @@ -210793,7 +217954,7 @@ return { [1]="keystone_heartstopper" } }, - [9609]={ + [9891]={ [1]={ [1]={ limit={ @@ -210809,7 +217970,7 @@ return { [1]="keystone_hex_master" } }, - [9610]={ + [9892]={ [1]={ [1]={ limit={ @@ -210825,7 +217986,7 @@ return { [1]="keystone_hollow_palm_technique" } }, - [9611]={ + [9893]={ [1]={ [1]={ limit={ @@ -210841,7 +218002,7 @@ return { [1]="keystone_impale" } }, - [9612]={ + [9894]={ [1]={ [1]={ limit={ @@ -210857,7 +218018,7 @@ return { [1]="keystone_iron_grip" } }, - [9613]={ + [9895]={ [1]={ [1]={ limit={ @@ -210873,7 +218034,7 @@ return { [1]="keystone_iron_reflexes" } }, - [9614]={ + [9896]={ [1]={ [1]={ limit={ @@ -210889,7 +218050,7 @@ return { [1]="keystone_iron_will" } }, - [9615]={ + [9897]={ [1]={ [1]={ limit={ @@ -210905,7 +218066,7 @@ return { [1]="keystone_mana_shield" } }, - [9616]={ + [9898]={ [1]={ [1]={ limit={ @@ -210921,7 +218082,7 @@ return { [1]="keystone_minion_instability" } }, - [9617]={ + [9899]={ [1]={ [1]={ limit={ @@ -210937,7 +218098,7 @@ return { [1]="keystone_oasis" } }, - [9618]={ + [9900]={ [1]={ [1]={ limit={ @@ -210953,7 +218114,7 @@ return { [1]="keystone_pain_attunement" } }, - [9619]={ + [9901]={ [1]={ [1]={ limit={ @@ -210969,7 +218130,7 @@ return { [1]="keystone_point_blank" } }, - [9620]={ + [9902]={ [1]={ [1]={ limit={ @@ -210985,23 +218146,7 @@ return { [1]="keystone_precise_technique" } }, - [9621]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Arrow Dancing" - } - }, - stats={ - [1]="keystone_projectile_evasion" - } - }, - [9622]={ + [9903]={ [1]={ [1]={ limit={ @@ -211017,7 +218162,7 @@ return { [1]="keystone_quiet_might" } }, - [9623]={ + [9904]={ [1]={ [1]={ limit={ @@ -211033,7 +218178,7 @@ return { [1]="keystone_runebinder" } }, - [9624]={ + [9905]={ [1]={ [1]={ limit={ @@ -211049,7 +218194,7 @@ return { [1]="keystone_sacred_bastion" } }, - [9625]={ + [9906]={ [1]={ [1]={ limit={ @@ -211065,7 +218210,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [9626]={ + [9907]={ [1]={ [1]={ limit={ @@ -211081,7 +218226,7 @@ return { [1]="keystone_unwavering_stance" } }, - [9627]={ + [9908]={ [1]={ [1]={ limit={ @@ -211097,7 +218242,7 @@ return { [1]="keystone_vaal_pact" } }, - [9628]={ + [9909]={ [1]={ [1]={ limit={ @@ -211113,23 +218258,7 @@ return { [1]="keystone_versatile_combatant" } }, - [9629]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Wind Dancer" - } - }, - stats={ - [1]="keystone_wind_dancer" - } - }, - [9630]={ + [9910]={ [1]={ [1]={ limit={ @@ -211145,7 +218274,7 @@ return { [1]="keystone_zealots_oath" } }, - [9631]={ + [9911]={ [1]={ [1]={ limit={ @@ -211161,7 +218290,7 @@ return { [1]="player_far_shot" } }, - [9632]={ + [9912]={ [1]={ [1]={ limit={ @@ -211177,7 +218306,7 @@ return { [1]="resolute_technique" } }, - [9633]={ + [9913]={ [1]={ [1]={ limit={ @@ -211193,7 +218322,7 @@ return { [1]="summoned_skeletons_have_avatar_of_fire" } }, - [9634]={ + [9914]={ [1]={ [1]={ limit={ @@ -211209,7 +218338,7 @@ return { [1]="attacks_use_life_in_place_of_mana" } }, - [9635]={ + [9915]={ [1]={ [1]={ limit={ @@ -211225,7 +218354,7 @@ return { [1]="gain_crimson_dance_if_have_dealt_critical_strike_recently" } }, - [9636]={ + [9916]={ [1]={ [1]={ limit={ @@ -211241,7 +218370,7 @@ return { [1]="gain_crimson_dance_while_you_have_cat_stealth" } }, - [9637]={ + [9917]={ [1]={ [1]={ limit={ @@ -211257,7 +218386,7 @@ return { [1]="gain_iron_reflexes_while_at_maximum_frenzy_charges" } }, - [9638]={ + [9918]={ [1]={ [1]={ limit={ @@ -211273,7 +218402,7 @@ return { [1]="gain_mind_over_matter_while_at_maximum_power_charges" } }, - [9639]={ + [9919]={ [1]={ [1]={ limit={ @@ -211289,7 +218418,7 @@ return { [1]="avatar_of_fire_rotation_active" } }, - [9640]={ + [9920]={ [1]={ [1]={ limit={ @@ -211305,7 +218434,7 @@ return { [1]="elemental_overload_rotation_active" } }, - [9641]={ + [9921]={ [1]={ [1]={ limit={ @@ -211321,7 +218450,7 @@ return { [1]="gain_iron_reflexes_while_stationary" } }, - [9642]={ + [9922]={ [1]={ [1]={ limit={ @@ -211337,7 +218466,7 @@ return { [1]="gain_resolute_technique_while_do_not_have_elemental_overload" } }, - [9643]={ + [9923]={ [1]={ [1]={ limit={ @@ -211353,7 +218482,7 @@ return { [1]="iron_reflexes_rotation_active" } }, - [9644]={ + [9924]={ [1]={ [1]={ limit={ @@ -211369,7 +218498,7 @@ return { [1]="trap_throw_skills_have_blood_magic" } }, - [9645]={ + [9925]={ [1]={ [1]={ limit={ @@ -211398,7 +218527,7 @@ return { [1]="physical_damage_+%_while_you_have_resolute_technique" } }, - [9646]={ + [9926]={ [1]={ [1]={ limit={ @@ -211427,7 +218556,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_avatar_of_fire" } }, - [9647]={ + [9927]={ [1]={ [1]={ limit={ @@ -211443,7 +218572,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire" } }, - [9648]={ + [9928]={ [1]={ [1]={ limit={ @@ -211459,7 +218588,7 @@ return { [1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes" } }, - [9649]={ + [9929]={ [1]={ [1]={ limit={ @@ -211475,7 +218604,7 @@ return { [1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire" } }, - [9650]={ + [9930]={ [1]={ [1]={ limit={ @@ -211491,7 +218620,7 @@ return { [1]="armour_while_you_do_not_have_avatar_of_fire" } }, - [9651]={ + [9931]={ [1]={ [1]={ limit={ @@ -211520,7 +218649,7 @@ return { [1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes" } }, - [9652]={ + [9932]={ [1]={ [1]={ limit={ @@ -211536,7 +218665,7 @@ return { [1]="gain_player_far_shot_while_do_not_have_iron_reflexes" } }, - [9653]={ + [9933]={ [1]={ [1]={ limit={ @@ -211552,7 +218681,7 @@ return { [1]="blood_footprints_from_item" } }, - [9654]={ + [9934]={ [1]={ [1]={ limit={ @@ -211568,7 +218697,7 @@ return { [1]="celestial_footprints_from_item" } }, - [9655]={ + [9935]={ [1]={ [1]={ limit={ @@ -211584,7 +218713,7 @@ return { [1]="demigod_footprints_from_item" } }, - [9656]={ + [9936]={ [1]={ [1]={ limit={ @@ -211600,7 +218729,7 @@ return { [1]="extra_gore" } }, - [9657]={ + [9937]={ [1]={ [1]={ limit={ @@ -211616,7 +218745,7 @@ return { [1]="goat_footprints_from_item" } }, - [9658]={ + [9938]={ [1]={ [1]={ limit={ @@ -211632,9914 +218761,10195 @@ return { [1]="silver_footprints_from_item" } }, - ["%_chance_to_blind_on_critical_strike"]=3896, - ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=3995, - ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3432, - ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3702, - ["%_chance_to_deal_150%_area_damage_+%_final"]=8487, - ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=8488, - ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3243, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3242, - ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3700, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1839, - ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3685, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1838, - ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=8489, - ["%_maximum_life_as_focus"]=1, - ["%_number_of_raging_spirits_allowed"]=8490, - ["%_of_life_regeneration_applies_to_totems"]=2, - ["%_physical_damage_bypasses_energy_shield"]=3, - ["+1_max_charged_attack_stages"]=4, - ["+1_spirit_per_X_energy_shield_on_body_armour"]=5, - ["+1_spirit_per_X_evasion_rating_on_body_armour"]=6, - ["X_accuracy_per_2_intelligence"]=1732, - ["X_armour_if_you_have_blocked_recently"]=4071, - ["X_armour_per_active_totem"]=4072, - ["X_armour_per_stackable_unique_jewel"]=3783, - ["X_life_per_4_dexterity"]=1733, - ["X_mana_per_4_strength"]=1734, - ["X_mana_per_stackable_unique_jewel"]=3782, - ["X_to_armour_per_2_strength"]=4073, - ["absolution_cast_speed_+%"]=4075, - ["absolution_duration_+%"]=4076, - ["absolution_minion_area_of_effect_+%"]=4077, - ["abyssal_cry_damage_+%"]=3363, - ["abyssal_cry_duration_+%"]=3552, - ["accuracy_rating"]=888, - ["accuracy_rating_+%"]=1300, - ["accuracy_rating_+%_during_onslaught"]=4088, - ["accuracy_rating_+%_equal_to_%_attack_critical_strike_chance"]=4078, - ["accuracy_rating_+%_final_at_max_distance_scaled"]=4079, - ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4089, - ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4090, - ["accuracy_rating_+%_per_frenzy_charge"]=1753, - ["accuracy_rating_+%_vs_enemies_in_close_range"]=4080, - ["accuracy_rating_+%_vs_rare_or_unique_enemy"]=4081, - ["accuracy_rating_+%_vs_unique_enemies"]=4082, - ["accuracy_rating_+%_when_on_low_life"]=2302, - ["accuracy_rating_+_per_frenzy_charge"]=4086, - ["accuracy_rating_+_per_green_socket_on_bow"]=4087, - ["accuracy_rating_against_marked_enemies_+%"]=4083, - ["accuracy_rating_is_doubled"]=4084, - ["accuracy_rating_per_level"]=4085, - ["accuracy_rating_vs_bleeding_enemies"]=4091, - ["accuracy_rating_while_at_maximum_frenzy_charges"]=4092, - ["accuracy_rating_while_dual_wielding_+%"]=1301, - ["action_speed_-%"]=4094, - ["action_speed_cannot_be_reduced_below_base"]=2866, - ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4093, - ["active_skill_additional_projectiles_description_mode"]=1515, - ["active_skill_attack_speed_+%_final"]=1279, - ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3422, - ["active_skill_impale_magnitude_+%_final"]=4095, - ["active_skill_level_+"]=1593, - ["adaptation_duration_+%"]=1394, - ["adaptation_rating_+%"]=1391, - ["add_%_base_armour_on_equipment_to_stun_threshold"]=4096, + ["%_attack_damage_per_glory_consumed_for_6_seconds_up_to_100"]=1, + ["%_chance_for_crossbow_reload_to_be_instant"]=2, + ["%_chance_to_blind_on_critical_strike"]=3837, + ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=3936, + ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3378, + ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3644, + ["%_chance_to_deal_150%_area_damage_+%_final"]=8720, + ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=8721, + ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3189, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3188, + ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3642, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1816, + ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3628, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1815, + ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=8722, + ["%_maximum_life_as_focus"]=3, + ["%_number_of_raging_spirits_allowed"]=8723, + ["%_of_life_regeneration_applies_to_totems"]=4, + ["%_physical_damage_bypasses_energy_shield"]=5, + ["+1_max_charged_attack_stages"]=6, + ["+1_spirit_per_X_energy_shield_on_body_armour"]=7, + ["+1_spirit_per_X_evasion_rating_on_body_armour"]=8, + ["X_accuracy_per_2_intelligence"]=1709, + ["X_armour_if_you_have_blocked_recently"]=4010, + ["X_armour_per_active_totem"]=4011, + ["X_armour_per_stackable_unique_jewel"]=3725, + ["X_life_per_4_dexterity"]=1710, + ["X_mana_per_4_strength"]=1711, + ["X_mana_per_stackable_unique_jewel"]=3724, + ["X_to_armour_per_2_strength"]=4012, + ["absolution_cast_speed_+%"]=4014, + ["absolution_duration_+%"]=4015, + ["absolution_minion_area_of_effect_+%"]=4016, + ["abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%"]=8490, + ["abyssal_cry_damage_+%"]=3309, + ["abyssal_cry_duration_+%"]=3498, + ["abyssal_wasting_cold_resistance_%"]=4017, + ["abyssal_wasting_effect_+%"]=4018, + ["abyssal_wasting_fire_resistance_%"]=4019, + ["abyssal_wasting_infinite_duration"]=4020, + ["abyssal_wasting_instant_life_leech_%"]=4021, + ["abyssal_wasting_instant_mana_leech_%"]=4022, + ["abyssal_wasting_lightning_resistance_%"]=4023, + ["abyssal_wasting_on_hit"]=4024, + ["accuracy_rating"]=883, + ["accuracy_rating_+%"]=1288, + ["accuracy_rating_+%_during_onslaught"]=4041, + ["accuracy_rating_+%_equal_to_%_attack_critical_strike_chance"]=4025, + ["accuracy_rating_+%_final_at_max_distance_scaled"]=4026, + ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4042, + ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4043, + ["accuracy_rating_+%_per_10_tribute"]=4027, + ["accuracy_rating_+%_per_25_tribute"]=4028, + ["accuracy_rating_+%_per_frenzy_charge"]=1730, + ["accuracy_rating_+%_vs_abyssal_wasting_afflicted"]=4029, + ["accuracy_rating_+%_vs_enemies_in_close_range"]=4030, + ["accuracy_rating_+%_vs_rare_or_unique_enemy"]=4031, + ["accuracy_rating_+%_vs_unique_enemies"]=4032, + ["accuracy_rating_+%_when_on_low_life"]=2270, + ["accuracy_rating_+%_while_moving"]=4033, + ["accuracy_rating_+%_while_surrounded"]=4034, + ["accuracy_rating_+_per_evasion_rating_on_helmet"]=4035, + ["accuracy_rating_+_per_frenzy_charge"]=4039, + ["accuracy_rating_+_per_green_socket_on_bow"]=4040, + ["accuracy_rating_against_marked_enemies_+%"]=4036, + ["accuracy_rating_is_doubled"]=4037, + ["accuracy_rating_per_level"]=4038, + ["accuracy_rating_vs_bleeding_enemies"]=4044, + ["accuracy_rating_while_at_maximum_frenzy_charges"]=4045, + ["accuracy_rating_while_dual_wielding_+%"]=1289, + ["action_speed_-%"]=4047, + ["action_speed_cannot_be_reduced_below_base"]=2821, + ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4046, + ["active_block_maximum_distance_+%"]=4048, + ["active_skill_additional_projectiles_description_mode"]=1498, + ["active_skill_attack_speed_+%_final"]=1267, + ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3368, + ["active_skill_generates_mp_%_glory_per_armour_break"]=4049, + ["active_skill_generates_mp_%_glory_per_attack_hit"]=4050, + ["active_skill_generates_mp_%_glory_per_heavy_stun"]=4051, + ["active_skill_generates_mp_%_glory_per_ignite"]=4052, + ["active_skill_impale_magnitude_+%_final"]=4053, + ["active_skill_level_+"]=1576, + ["active_skill_poison_effect_+%_final"]=4054, + ["active_skill_requires_X_glory"]=33, + ["adaptation_duration_+%"]=1378, + ["add_%_base_armour_on_equipment_to_stun_threshold"]=4055, ["add_1_stage_to_banners_on_melee_hit_up_to_5_per_second"]=4486, - ["add_endurance_charge_on_critical_strike"]=1538, - ["add_endurance_charge_on_enemy_critical_strike"]=1555, - ["add_endurance_charge_on_gain_power_charge_%"]=3249, - ["add_endurance_charge_on_kill"]=2531, - ["add_endurance_charge_on_skill_hit_%"]=1552, - ["add_endurance_charge_on_status_ailment"]=1556, - ["add_frenzy_charge_every_50_rampage_stacks"]=4008, - ["add_frenzy_charge_on_critical_strike"]=1548, - ["add_frenzy_charge_on_enemy_block"]=1833, - ["add_frenzy_charge_on_kill_%_chance"]=2341, - ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4097, - ["add_frenzy_charge_on_skill_hit_%"]=1553, - ["add_frenzy_charge_when_hit_%"]=4098, - ["add_power_charge_on_critical_strike"]=1549, - ["add_power_charge_on_critical_strike_%"]=1550, - ["add_power_charge_on_hit_%"]=3244, - ["add_power_charge_on_hit_while_poisoned_%"]=4099, - ["add_power_charge_on_kill_%_chance"]=2343, - ["add_power_charge_on_melee_critical_strike"]=1551, - ["add_power_charge_on_minion_death"]=1761, - ["add_power_charge_on_skill_hit_%"]=1554, - ["add_power_charge_when_interrupted_while_casting"]=1857, - ["add_power_charge_when_kill_shocked_enemy"]=1850, - ["add_x_grasping_vines_on_hit"]=4100, - ["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=4137, - ["additional_all_attributes"]=968, - ["additional_attack_block_%_if_used_shield_skill_recently"]=4101, - ["additional_attack_block_%_per_endurance_charge"]=4102, - ["additional_attack_block_%_per_frenzy_charge"]=4103, - ["additional_attack_block_%_per_power_charge"]=4104, - ["additional_attack_block_%_per_summoned_skeleton"]=4105, - ["additional_ballista_totems_allowed"]=4106, - ["additional_base_critical_strike_chance"]=1323, - ["additional_beam_only_chains"]=4107, - ["additional_block_%"]=2179, - ["additional_block_%_against_frontal_attacks"]=4109, - ["additional_block_%_if_you_have_crit_recently"]=4110, - ["additional_block_%_per_endurance_charge"]=4111, - ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4112, - ["additional_block_%_while_not_cursed"]=4113, - ["additional_block_%_while_on_consecrated_ground"]=4114, - ["additional_block_%_while_you_have_at_least_10_crab_charges"]=3984, - ["additional_block_%_while_you_have_at_least_5_crab_charges"]=3983, - ["additional_block_%_with_5_or_more_nearby_enemies"]=4115, - ["additional_block_chance_%_for_1_second_every_5_seconds"]=2180, - ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3691, - ["additional_block_chance_%_when_in_off_hand"]=3809, - ["additional_block_chance_%_while_holding_focus"]=4108, - ["additional_block_chance_against_projectiles_%"]=2183, - ["additional_chance_to_freeze_chilled_enemies_%"]=1740, - ["additional_chaos_resistance_against_damage_over_time_%"]=5147, - ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4116, - ["additional_critical_strike_chance_per_power_charge_permyriad"]=4117, - ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4118, - ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=3994, - ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4119, - ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3118, - ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4120, - ["additional_deflect_chance_%"]=4121, - ["additional_dexterity"]=970, - ["additional_dexterity_and_intelligence"]=1110, - ["additional_dexterity_per_allocated_mastery"]=4122, - ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=3692, - ["additional_intelligence"]=971, - ["additional_intelligence_per_allocated_mastery"]=4123, - ["additional_max_mirage_archers"]=4046, - ["additional_max_number_of_dominated_magic_monsters"]=4124, - ["additional_max_number_of_dominated_rare_monsters"]=4125, - ["additional_maximum_all_elemental_resistances_%"]=974, - ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4130, - ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4126, - ["additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently"]=4127, - ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4128, - ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4129, - ["additional_maximum_all_resistances_%"]=1458, - ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4132, - ["additional_maximum_all_resistances_%_while_poisoned"]=4131, - ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4133, - ["additional_maximum_block_%"]=1700, - ["additional_maximum_infusion_stacks"]=8041, - ["additional_number_of_brands_to_create"]=4134, - ["additional_off_hand_critical_strike_chance_permyriad"]=4135, - ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4136, - ["additional_physical_damage_reduction_%_during_flask_effect"]=3886, - ["additional_physical_damage_reduction_%_during_focus"]=4139, - ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4140, - ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4141, - ["additional_physical_damage_reduction_%_per_keystone"]=4142, - ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4143, - ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4144, - ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4145, - ["additional_physical_damage_reduction_%_when_on_low_life"]=1949, - ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4146, - ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4147, - ["additional_physical_damage_reduction_%_while_bleeding"]=4148, - ["additional_physical_damage_reduction_%_while_channelling"]=4149, - ["additional_physical_damage_reduction_%_while_frozen"]=4150, - ["additional_physical_damage_reduction_%_while_moving"]=4151, - ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4138, - ["additional_scroll_of_wisdom_drop_chance_%"]=2311, - ["additional_spell_block_%"]=1092, - ["additional_spell_block_%_if_havent_blocked_recently"]=4153, - ["additional_spell_block_%_per_power_charge"]=4152, - ["additional_spell_block_%_while_cursed"]=4154, - ["additional_staff_block_%"]=1088, - ["additional_strength"]=969, - ["additional_strength_and_dexterity"]=1108, - ["additional_strength_and_intelligence"]=1109, - ["additional_strength_per_allocated_mastery"]=4155, - ["additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=4156, - ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4157, - ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4158, - ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4159, - ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4160, - ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4161, - ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=4162, - ["additive_modifiers_to_mana_regeneration_also_apply_to_energy_shield_recharge_rate"]=4163, - ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3389, - ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2394, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2396, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2395, - ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2397, - ["aftershock_area_of_effect_+%"]=4164, - ["aggravate_bleeding_older_than_ms_on_hit"]=4165, - ["aggravate_bleeding_on_attack_crit_chance_%"]=4166, - ["aggravate_bleeding_on_attack_knockback_chance_%"]=4168, - ["aggravate_bleeding_on_enemies_when_they_enter_your_presence"]=4169, - ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4170, - ["aggravate_bleeding_when_inflicted_vs_cursed_enemy"]=4171, - ["aggravate_bleeding_when_inflicted_vs_enemies_on_jagged_ground_chance_%"]=4172, - ["aggravate_inflicted_bleeding"]=4173, - ["agony_crawler_damage_+%"]=4175, - ["ailment_bearer_always_freeze_shock_ignite"]=4176, - ["ailment_bearer_elemental_damage_+%_final"]=4177, - ["ailment_chance_+%"]=4179, - ["ailment_chance_+%_vs_rare_or_unique_enemy"]=4178, - ["ailment_effect_+%"]=4180, - ["ailment_threshold_+"]=4184, - ["ailment_threshold_+%"]=4186, - ["ailment_threshold_+_from_%_maximum_energy_shield"]=4185, - ["ailment_threshold_+_from_lowest_of_base_boots_evasion_rating_and_armour"]=4181, - ["ailment_threshold_+_per_dexterity"]=4182, - ["ailment_threshold_increased_by_overcapped_chaos_resistance"]=4183, - ["alchemists_mark_curse_effect_+%"]=4187, - ["all_attacks_count_as_exerted"]=4188, - ["all_attributes_+%"]=1111, - ["all_attributes_+%_per_assigned_keystone"]=2763, - ["all_damage_can_chill"]=2561, - ["all_damage_can_electrocute"]=4189, - ["all_damage_can_freeze"]=4190, - ["all_damage_can_ignite"]=4191, - ["all_damage_can_poison"]=4192, - ["all_damage_can_poison_while_affected_by_glorious_madness"]=9546, - ["all_damage_can_shock"]=4193, - ["all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame"]=4194, - ["all_damage_taken_%_as_chaos_damage"]=4195, - ["all_damage_taken_can_ignite"]=4196, - ["all_damage_taken_can_sap"]=4197, - ["all_damage_taken_can_scorch"]=4198, - ["all_damage_taken_chills_you_while_bleeding"]=4199, - ["all_damage_taken_chills_you_while_poisoned"]=4200, - ["all_damage_to_bleeding_enemies_contributes_to_chill"]=4201, - ["all_damage_to_poisoned_enemies_contributes_to_chill"]=4202, - ["all_projectile_damage_can_pin"]=4203, - ["all_resistances_%_per_equipped_corrupted_item"]=2779, - ["all_skill_gem_level_+"]=4204, - ["all_skill_gem_quality_+"]=4205, - ["allies_in_presence_accuracy_rating"]=914, - ["allies_in_presence_attack_maximum_added_chaos_damage"]=913, - ["allies_in_presence_attack_maximum_added_cold_damage"]=911, - ["allies_in_presence_attack_maximum_added_fire_damage"]=910, - ["allies_in_presence_attack_maximum_added_lightning_damage"]=912, - ["allies_in_presence_attack_maximum_added_physical_damage"]=909, - ["allies_in_presence_attack_minimum_added_chaos_damage"]=913, - ["allies_in_presence_attack_minimum_added_cold_damage"]=911, - ["allies_in_presence_attack_minimum_added_fire_damage"]=910, - ["allies_in_presence_attack_minimum_added_lightning_damage"]=912, - ["allies_in_presence_attack_minimum_added_physical_damage"]=909, - ["allies_in_presence_attack_speed_+%"]=917, - ["allies_in_presence_cast_speed_+%"]=918, - ["allies_in_presence_critical_strike_chance_+%"]=915, - ["allies_in_presence_critical_strike_multiplier_+"]=916, - ["allies_in_presence_damage_%_to_gain_as_fire"]=4206, - ["allies_in_presence_damage_+%"]=908, - ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2969, - ["allies_in_presence_have_unholy_might_while_you_not_on_low_mana"]=2727, - ["allies_in_presence_life_regeneration_rate_per_minute"]=920, - ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%"]=921, - ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%"]=922, - ["allies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=4207, - ["allies_in_presence_resist_all_elements_%"]=919, - ["allow_2_active_banners"]=2702, - ["allow_hellscaping_unique_items"]=4208, - ["allow_multiple_offerings"]=4209, - ["always_crit_shocked_enemies"]=3761, + ["add_endurance_charge_on_critical_strike"]=1521, + ["add_endurance_charge_on_enemy_critical_strike"]=1538, + ["add_endurance_charge_on_gain_power_charge_%"]=3195, + ["add_endurance_charge_on_kill"]=2495, + ["add_endurance_charge_on_skill_hit_%"]=1535, + ["add_endurance_charge_on_status_ailment"]=1539, + ["add_frenzy_charge_every_50_rampage_stacks"]=3949, + ["add_frenzy_charge_on_critical_strike"]=1531, + ["add_frenzy_charge_on_enemy_block"]=1810, + ["add_frenzy_charge_on_kill_%_chance"]=2309, + ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4056, + ["add_frenzy_charge_on_skill_hit_%"]=1536, + ["add_frenzy_charge_when_hit_%"]=4057, + ["add_power_charge_on_critical_strike"]=1532, + ["add_power_charge_on_critical_strike_%"]=1533, + ["add_power_charge_on_hit_%"]=3190, + ["add_power_charge_on_hit_while_poisoned_%"]=4058, + ["add_power_charge_on_kill_%_chance"]=2311, + ["add_power_charge_on_melee_critical_strike"]=1534, + ["add_power_charge_on_minion_death"]=1738, + ["add_power_charge_on_skill_hit_%"]=1537, + ["add_power_charge_when_interrupted_while_casting"]=1834, + ["add_power_charge_when_kill_shocked_enemy"]=1827, + ["add_x_grasping_vines_on_hit"]=4059, + ["added_cooldown_count_if_not_instant_and_you_have_at_least_100_tribute"]=4060, + ["added_thorns_cold_base_damage_%_of_maximum_mana"]=4061, + ["additional_all_attributes"]=966, + ["additional_attack_block_%_if_used_shield_skill_recently"]=4062, + ["additional_attack_block_%_per_endurance_charge"]=4063, + ["additional_attack_block_%_per_frenzy_charge"]=4064, + ["additional_attack_block_%_per_power_charge"]=4065, + ["additional_attack_block_%_per_summoned_skeleton"]=4066, + ["additional_ballista_totems_allowed"]=4067, + ["additional_base_critical_strike_chance"]=1311, + ["additional_beam_only_chains"]=4068, + ["additional_block_%"]=2148, + ["additional_block_%_against_frontal_attacks"]=4070, + ["additional_block_%_if_you_have_crit_recently"]=4071, + ["additional_block_%_per_endurance_charge"]=4072, + ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4073, + ["additional_block_%_while_not_cursed"]=4074, + ["additional_block_%_while_on_consecrated_ground"]=4075, + ["additional_block_%_while_you_have_at_least_10_crab_charges"]=3925, + ["additional_block_%_while_you_have_at_least_5_crab_charges"]=3924, + ["additional_block_%_with_5_or_more_nearby_enemies"]=4076, + ["additional_block_chance_%_for_1_second_every_5_seconds"]=2149, + ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3634, + ["additional_block_chance_%_when_in_off_hand"]=3751, + ["additional_block_chance_%_while_holding_focus"]=4069, + ["additional_block_chance_against_projectiles_%"]=2152, + ["additional_chance_to_freeze_chilled_enemies_%"]=1717, + ["additional_chaos_resistance_against_damage_over_time_%"]=5179, + ["additional_combo_gain_chance_%"]=4077, + ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4078, + ["additional_critical_strike_chance_per_power_charge_permyriad"]=4079, + ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4080, + ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=3935, + ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4081, + ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3066, + ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4082, + ["additional_deflection_rating"]=4083, + ["additional_dexterity"]=968, + ["additional_dexterity_and_intelligence"]=1097, + ["additional_dexterity_per_allocated_mastery"]=4084, + ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=3635, + ["additional_infusion_gain_chance_%"]=4085, + ["additional_intelligence"]=969, + ["additional_intelligence_per_allocated_mastery"]=4086, + ["additional_max_mirage_archers"]=3987, + ["additional_max_number_of_dominated_magic_monsters"]=4087, + ["additional_max_number_of_dominated_rare_monsters"]=4088, + ["additional_maximum_all_elemental_resistances_%"]=972, + ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4093, + ["additional_maximum_all_elemental_resistances_%_if_at_least_5_red_green_blue_supports_socketed"]=4089, + ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4090, + ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4091, + ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4092, + ["additional_maximum_all_resistances_%"]=1441, + ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4096, + ["additional_maximum_all_resistances_%_if_you_have_at_least_100_tribute"]=4094, + ["additional_maximum_all_resistances_%_while_poisoned"]=4095, + ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4097, + ["additional_maximum_block_%"]=1679, + ["additional_maximum_infusion_stacks"]=8225, + ["additional_number_of_brands_to_create"]=4098, + ["additional_off_hand_critical_strike_chance_permyriad"]=4099, + ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4100, + ["additional_physical_damage_reduction_%_during_flask_effect"]=3827, + ["additional_physical_damage_reduction_%_during_focus"]=4102, + ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4103, + ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4104, + ["additional_physical_damage_reduction_%_per_keystone"]=4105, + ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4106, + ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4107, + ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4108, + ["additional_physical_damage_reduction_%_when_on_low_life"]=1927, + ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4109, + ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4110, + ["additional_physical_damage_reduction_%_while_bleeding"]=4111, + ["additional_physical_damage_reduction_%_while_channelling"]=4112, + ["additional_physical_damage_reduction_%_while_frozen"]=4113, + ["additional_physical_damage_reduction_%_while_moving"]=4114, + ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4101, + ["additional_scroll_of_wisdom_drop_chance_%"]=2279, + ["additional_staff_block_%"]=1079, + ["additional_strength"]=967, + ["additional_strength_and_dexterity"]=1095, + ["additional_strength_and_intelligence"]=1096, + ["additional_strength_per_allocated_mastery"]=4115, + ["additional_thorns_critical_strike_chance_permyriad_per_50_tribute"]=4116, + ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4117, + ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4118, + ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4119, + ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4120, + ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4121, + ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=4122, + ["additive_modifiers_to_life_regeneration_also_apply_to_mana_regeneration_rate"]=4123, + ["additive_modifiers_to_mana_regeneration_also_apply_to_energy_shield_recharge_rate"]=4124, + ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3335, + ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2362, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2364, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2363, + ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2365, + ["aftershock_area_of_effect_+%"]=4125, + ["aggravate_bleeding_older_than_ms_on_hit"]=4126, + ["aggravate_bleeding_on_attack_crit_chance_%"]=4127, + ["aggravate_bleeding_on_attack_knockback_chance_%"]=4129, + ["aggravate_bleeding_on_enemies_when_they_enter_your_presence"]=4130, + ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4131, + ["aggravate_bleeding_when_inflicted_vs_cursed_enemy"]=4132, + ["aggravate_bleeding_when_inflicted_vs_enemies_on_jagged_ground_chance_%"]=4133, + ["aggravate_bleeding_when_inflicted_vs_pinned_enemy"]=4134, + ["aggravate_inflicted_bleeding"]=4135, + ["agony_crawler_damage_+%"]=4137, + ["ailment_bearer_always_freeze_shock_ignite"]=4138, + ["ailment_bearer_elemental_damage_+%_final"]=4139, + ["ailment_chance_+%"]=4143, + ["ailment_chance_+%_vs_abyssal_wasting_afflicted"]=4140, + ["ailment_chance_+%_vs_exposed"]=4141, + ["ailment_chance_+%_vs_rare_or_unique_enemy"]=4142, + ["ailment_duration_+%_vs_beasts"]=4144, + ["ailment_duration_+%_vs_cursed_enemy"]=4145, + ["ailment_duration_+%_vs_exposed"]=4146, + ["ailment_effect_+%"]=4147, + ["ailment_magnitude_+%_vs_marked_enemies"]=4148, + ["ailment_threshold_+"]=4152, + ["ailment_threshold_+%"]=4154, + ["ailment_threshold_+_from_%_maximum_energy_shield"]=4153, + ["ailment_threshold_+_from_lowest_of_base_boots_evasion_rating_and_armour"]=4149, + ["ailment_threshold_+_per_dexterity"]=4150, + ["ailment_threshold_increased_by_overcapped_chaos_resistance"]=4151, + ["alchemists_mark_curse_effect_+%"]=4155, + ["all_attacks_count_as_exerted"]=4156, + ["all_attributes_+%"]=1099, + ["all_attributes_+%_per_assigned_keystone"]=2718, + ["all_damage_can_chill"]=2525, + ["all_damage_can_electrocute"]=4157, + ["all_damage_can_freeze"]=4158, + ["all_damage_can_ignite"]=4159, + ["all_damage_can_poison"]=4160, + ["all_damage_can_poison_while_affected_by_glorious_madness"]=9826, + ["all_damage_can_shock"]=4161, + ["all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame"]=4162, + ["all_damage_taken_%_as_chaos_damage"]=4163, + ["all_damage_taken_can_ignite"]=4164, + ["all_damage_taken_can_sap"]=4165, + ["all_damage_taken_can_scorch"]=4166, + ["all_damage_taken_chills_you_while_bleeding"]=4167, + ["all_damage_taken_chills_you_while_poisoned"]=4168, + ["all_damage_to_bleeding_enemies_contributes_to_chill"]=4169, + ["all_damage_to_poisoned_enemies_contributes_to_chill"]=4170, + ["all_exposure_on_hit_magnitude"]=4171, + ["all_projectile_damage_can_pin"]=4172, + ["all_resistances_%_per_equipped_corrupted_item"]=2734, + ["all_skill_gem_level_+"]=4173, + ["all_skill_gem_quality_+"]=4174, + ["allies_in_presence_accuracy_rating"]=911, + ["allies_in_presence_attack_maximum_added_chaos_damage"]=907, + ["allies_in_presence_attack_maximum_added_cold_damage"]=905, + ["allies_in_presence_attack_maximum_added_fire_damage"]=904, + ["allies_in_presence_attack_maximum_added_lightning_damage"]=906, + ["allies_in_presence_attack_maximum_added_physical_damage"]=903, + ["allies_in_presence_attack_minimum_added_chaos_damage"]=907, + ["allies_in_presence_attack_minimum_added_cold_damage"]=905, + ["allies_in_presence_attack_minimum_added_fire_damage"]=904, + ["allies_in_presence_attack_minimum_added_lightning_damage"]=906, + ["allies_in_presence_attack_minimum_added_physical_damage"]=903, + ["allies_in_presence_attack_speed_+%"]=914, + ["allies_in_presence_cast_speed_+%"]=915, + ["allies_in_presence_chaos_damage_+%"]=910, + ["allies_in_presence_critical_strike_chance_+%"]=912, + ["allies_in_presence_critical_strike_multiplier_+"]=913, + ["allies_in_presence_damage_%_to_gain_as_fire"]=4175, + ["allies_in_presence_damage_+%"]=902, + ["allies_in_presence_elemental_damage_+%"]=909, + ["allies_in_presence_glory_generation_+%"]=4176, + ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2920, + ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6046, + ["allies_in_presence_have_unholy_might_while_you_not_on_low_mana"]=2682, + ["allies_in_presence_life_regeneration_rate_per_minute"]=917, + ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%"]=918, + ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%"]=919, + ["allies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=4177, + ["allies_in_presence_physical_damage_+%"]=908, + ["allies_in_presence_resist_all_elements_%"]=916, + ["allow_2_active_banners"]=2657, + ["allow_hellscaping_unique_items"]=4178, + ["allow_multiple_offerings"]=4179, + ["always_crit_shocked_enemies"]=3703, ["always_freeze"]=1009, - ["always_frostburn_while_affected_by_hatred"]=4210, - ["always_ignite"]=1573, - ["always_ignite_while_burning"]=4211, - ["always_pierce"]=4212, - ["always_pierce_burning_enemies"]=4213, - ["always_sap_while_affected_by_wrath"]=4214, - ["always_scorch_while_affected_by_anger"]=4215, - ["always_shock"]=1574, - ["always_stun"]=1575, - ["always_stun_enemies_that_are_on_full_life"]=2994, - ["ambush_buff_critical_strike_multiplier_+"]=4216, - ["ambush_cooldown_speed_+%"]=4217, - ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3090, - ["ancestor_totem_buff_effect_+%"]=4218, - ["ancestor_totem_buff_linger_time_ms"]=4219, - ["ancestor_totem_parent_activation_range_+%"]=4220, - ["ancestral_cry_attacks_exerted_+"]=4221, - ["ancestral_cry_exerted_attack_damage_+%"]=4222, - ["ancestral_cry_minimum_power"]=4223, - ["ancestral_slam_every_other_slam"]=4224, - ["anger_aura_effect_+%"]=3016, - ["anger_mana_reservation_+%"]=3073, - ["anger_mana_reservation_efficiency_+%"]=4226, - ["anger_mana_reservation_efficiency_-2%_per_1"]=4225, - ["anger_reserves_no_mana"]=4227, - ["animate_guardian_damage_+%"]=3344, - ["animate_guardian_damage_+%_per_animated_weapon"]=4228, - ["animate_guardian_elemental_resistances_%"]=3619, - ["animate_weapon_can_animate_bows"]=2837, - ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=2922, - ["animate_weapon_can_animate_wands"]=2838, - ["animate_weapon_chance_to_create_additional_copy_%"]=3624, - ["animate_weapon_damage_+%"]=3266, - ["animate_weapon_duration_+%"]=2501, - ["animate_weapon_number_of_additional_copies"]=2502, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4229, - ["animated_guardian_damage_taken_+%_final"]=4230, - ["animated_minions_melee_splash"]=4231, - ["aoe_+%_per_second_while_stationary_up_to_50"]=4232, - ["apply_X_armour_break_on_hit"]=4233, - ["apply_X_incision_on_thorns_hit"]=4234, - ["apply_X_stacks_of_critical_weakness_on_critical_hit_with_spells"]=4235, - ["apply_X_stacks_of_critical_weakness_on_parry"]=4236, - ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4237, - ["apply_covered_in_ash_to_attacker_when_hit_%"]=4238, - ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4239, - ["apply_poison_on_hit_vs_bleeding_enemies_%"]=2946, - ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4240, - ["arc_and_crackling_lance_base_cost_+%"]=4241, - ["arc_damage_+%"]=3299, - ["arc_damage_+%_per_chain"]=4242, - ["arc_num_of_additional_projectiles_in_chain"]=3583, - ["arc_shock_chance_%"]=3598, - ["arcane_cloak_consume_%_of_mana"]=4243, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4244, - ["arcane_surge_effect_+1%_per_X_maximum_mana"]=4245, - ["arcane_surge_effect_on_self_+%"]=2951, - ["arcane_surge_effect_on_self_+%_per_200_mana_spent_recently_up_to_50%"]=2952, - ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=2950, - ["arcane_surge_effect_on_self_+%_while_affected_by_clarity"]=4246, - ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4247, - ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4248, - ["arcanist_brand_cast_speed_+%"]=4249, - ["arcanist_brand_unnerve_on_hit"]=4250, - ["arctic_armour_buff_effect_+%"]=3650, - ["arctic_armour_chill_when_hit_duration"]=4251, - ["arctic_armour_mana_reservation_+%"]=3657, - ["arctic_armour_mana_reservation_efficiency_+%"]=4253, - ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4252, - ["arctic_armour_maximum_added_cold_damage_per_stack"]=4254, - ["arctic_armour_minimum_added_cold_damage_per_stack"]=4254, - ["arctic_armour_no_reservation"]=4255, - ["arctic_breath_chilling_area_movement_velocity_+%"]=4256, - ["arctic_breath_damage_+%"]=3317, - ["arctic_breath_duration_+%"]=3563, - ["arctic_breath_radius_+%"]=3454, - ["area_damage_+%"]=1742, - ["area_damage_+%_per_10_devotion"]=4257, - ["area_damage_+%_per_12_strength"]=4258, - ["area_damage_taken_from_hits_+%"]=1931, - ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4260, - ["area_of_effect_+%_if_below_100_intelligence"]=4259, - ["area_of_effect_+%_if_culled_recently"]=4261, - ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4262, - ["area_of_effect_+%_if_have_crit_recently"]=4263, - ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4264, - ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4265, - ["area_of_effect_+%_if_you_have_blocked_recently"]=4266, - ["area_of_effect_+%_per_20_int"]=2261, - ["area_of_effect_+%_per_25_rampage_stacks"]=4007, - ["area_of_effect_+%_per_50_strength"]=4267, - ["area_of_effect_+%_per_active_herald_of_light_minion"]=4268, - ["area_of_effect_+%_per_endurance_charge"]=4269, - ["area_of_effect_+%_per_enemy_killed_recently"]=4270, - ["area_of_effect_+%_while_fortified"]=4271, - ["area_of_effect_+%_while_totem_active"]=4272, - ["area_of_effect_+%_while_wielding_bow"]=4273, - ["area_of_effect_+%_while_wielding_staff"]=4274, - ["area_of_effect_+%_while_you_do_not_have_convergence"]=4070, - ["area_of_effect_+%_while_you_have_arcane_surge"]=4275, - ["area_of_effect_+%_with_500_or_more_strength"]=4276, - ["area_of_effect_+%_with_bow_skills"]=4277, - ["area_of_effect_+%_with_herald_skills"]=4278, - ["area_skill_accuracy_rating_+%"]=4279, - ["area_skill_knockback_chance_%"]=4280, - ["armageddon_brand_attached_target_fire_penetration_%"]=4281, - ["armageddon_brand_damage_+%"]=4282, - ["armageddon_brand_repeat_frequency_+%"]=4283, - ["armour_%_applies_to_fire_cold_lightning_damage"]=4284, - ["armour_%_to_gain_as_stun_threshold"]=4285, - ["armour_+%_final_vs_hits_per_1%_current_energy_shield"]=4313, - ["armour_+%_if_consumed_endurance_charge_recently"]=4286, - ["armour_+%_if_enemy_not_killed_recently"]=4314, - ["armour_+%_if_have_been_hit_recently"]=4287, - ["armour_+%_if_hit_enemy_with_melee_attack_recently"]=4288, - ["armour_+%_if_you_havent_been_hit_recently"]=4289, - ["armour_+%_per_50_str"]=4315, - ["armour_+%_per_defiance"]=3902, - ["armour_+%_per_rage"]=9558, - ["armour_+%_per_red_socket_on_main_hand_weapon"]=4317, - ["armour_+%_per_second_while_stationary_up_to_100"]=4318, - ["armour_+%_while_bleeding"]=4319, - ["armour_+%_while_no_energy_shield"]=2440, - ["armour_+%_while_stationary"]=4320, - ["armour_+%_while_surrounded"]=4290, - ["armour_+_from_%_strength_requirements_from_boots_gloves_helmets"]=4291, - ["armour_+_per_10_unreserved_max_mana"]=4292, - ["armour_+_per_1_helmet_maximum_energy_shield"]=4309, - ["armour_+_while_affected_by_determination"]=4310, - ["armour_+_while_affected_by_guard_skill"]=4311, - ["armour_+_while_you_have_fortify"]=4312, - ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4293, - ["armour_and_evasion_+%_during_onslaught"]=4294, - ["armour_and_evasion_+%_while_fortified"]=3871, - ["armour_and_evasion_on_low_life_+%"]=2883, - ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=3817, - ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4295, - ["armour_and_evasion_rating_+_while_fortified"]=4296, - ["armour_break_%_of_armour_on_critical_strike_with_spells"]=4297, - ["armour_break_%_of_armour_on_heavy_stunning"]=4298, - ["armour_break_amount_+%"]=4299, - ["armour_break_amount_+%_vs_enemies_affected_by_ailments"]=4300, - ["armour_break_damage_%_dealt_as_armour_break"]=4301, - ["armour_break_duration_+%"]=4302, - ["armour_break_equal_to_%_physical_damage_dealt_on_critical_strike_with_spells"]=4303, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=4304, - ["armour_evasion_+%_while_leeching"]=4305, - ["armour_from_gloves_and_boots_+%"]=4306, - ["armour_from_helmet_and_gloves_+%"]=4307, - ["armour_hellscaping_speed_+%"]=6509, - ["armour_increased_by_overcapped_fire_resistance"]=4308, - ["armour_while_stationary"]=3955, - ["armour_while_you_do_not_have_avatar_of_fire"]=9650, - ["arrow_base_number_of_targets_to_pierce"]=1514, - ["arrow_chains_+"]=1511, - ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4321, - ["arrow_damage_+%_max_as_distance_travelled_increases"]=4324, - ["arrow_damage_+%_vs_pierced_targets"]=4322, - ["arrow_damage_+50%_vs_pierced_targets"]=4323, - ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4326, - ["arrows_always_pierce_after_chaining"]=3946, - ["arrows_always_pierce_after_forking"]=4327, - ["arrows_fork"]=3225, - ["arrows_from_first_firing_point_always_pierce"]=4038, - ["arrows_from_fourth_firing_point_additional_chains"]=4041, - ["arrows_from_second_firing_point_fork"]=4039, - ["arrows_from_third_firing_point_return"]=4040, - ["arrows_pierce_additional_target"]=4328, - ["arrows_that_pierce_also_return"]=4329, - ["arrows_that_pierce_cause_bleeding"]=3944, - ["arrows_that_pierce_chance_to_bleed_25%"]=3945, - ["artillery_ballista_cross_strafe_pattern"]=4330, - ["artillery_ballista_fire_pen_+%"]=4331, - ["artillery_ballista_num_additional_arrows"]=4332, - ["ascendancy_assasin_critical_hit_poison_effect_+%_final"]=3869, - ["ascendancy_assassin_damage_vs_enemies_on_low_life_+%_final"]=2514, - ["ascendancy_beidats_gaze_mana_+_per_X_maximum_life"]=4333, - ["ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life"]=4334, - ["ascendancy_beidats_will_spirit_+_per_X_maximum_life"]=4335, - ["ascendancy_energy_generated_+%_final"]=5872, - ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4336, - ["ascendancy_pathfinder_flask_charges_gained_+%_final"]=4337, - ["ascendancy_titan_damage_reduction_rating_from_body_armour_+%_final"]=4338, - ["ascendancy_warbringer_block_chance_+%_final"]=4339, - ["ascendency_tactician_totem_skill_speed_+%_final"]=4340, - ["aspect_of_the_avian_buff_effect_+%"]=4341, - ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4342, - ["aspect_of_the_cat_base_secondary_duration"]=4343, - ["aspect_of_the_spider_web_count_+"]=4344, - ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3092, - ["assassins_mark_curse_effect_+%"]=3637, - ["assassins_mark_duration_+%"]=3549, - ["attack_added_chaos_damage_%_of_maximum_life"]=4345, - ["attack_added_physical_damage_%_of_maximum_life"]=4346, - ["attack_additional_critical_strike_chance_permyriad"]=4347, - ["attack_always_crit"]=3413, - ["attack_and_cast_speed_+%"]=1749, - ["attack_and_cast_speed_+%_during_flask_effect"]=3892, - ["attack_and_cast_speed_+%_during_onslaught"]=2712, - ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4351, - ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3174, - ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3121, - ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3693, - ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4352, - ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4353, - ["attack_and_cast_speed_+%_on_placing_totem"]=2878, - ["attack_and_cast_speed_+%_per_cold_adaptation"]=4049, - ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=3875, - ["attack_and_cast_speed_+%_per_endurance_charge"]=4354, - ["attack_and_cast_speed_+%_per_frenzy_charge"]=1751, - ["attack_and_cast_speed_+%_per_power_charge"]=4355, - ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4356, - ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4357, - ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4348, - ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4349, - ["attack_and_cast_speed_+%_while_channelling"]=4358, - ["attack_and_cast_speed_+%_while_focused"]=4359, - ["attack_and_cast_speed_+%_while_leeching"]=3715, - ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=3852, - ["attack_and_cast_speed_+%_while_totem_active"]=3251, - ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4360, - ["attack_and_cast_speed_+%_while_you_have_fortify"]=1993, - ["attack_and_cast_speed_+%_with_channelling_skills"]=4361, - ["attack_and_cast_speed_+%_with_chaos_skills"]=4362, - ["attack_and_cast_speed_+%_with_cold_skills"]=4363, - ["attack_and_cast_speed_+%_with_elemental_skills"]=4364, - ["attack_and_cast_speed_+%_with_fire_skills"]=4365, - ["attack_and_cast_speed_+%_with_lightning_skills"]=4366, - ["attack_and_cast_speed_+%_with_physical_skills"]=4367, - ["attack_and_cast_speed_+%_with_shield_skills"]=4368, - ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4350, - ["attack_and_cast_speed_when_hit_+%"]=2890, - ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4369, - ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=3964, - ["attack_area_damage_+%"]=4370, - ["attack_area_of_effect_+%"]=4372, - ["attack_area_of_effect_+%_per_10_int"]=4373, - ["attack_area_of_effect_+%_while_wielding_quarterstaff"]=4371, - ["attack_block_%_if_blocked_a_spell_recently"]=4375, - ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4374, - ["attack_block_%_while_at_max_endurance_charges"]=4376, - ["attack_cast_and_movement_speed_+%_during_onslaught"]=4377, - ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=9651, - ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3694, - ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4378, - ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4379, - ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4380, - ["attack_consume_endurance_charge_to_always_crit"]=4381, - ["attack_critical_strike_chance_+%"]=956, - ["attack_critical_strike_multiplier_+"]=960, - ["attack_critical_strikes_ignore_elemental_resistances"]=4382, - ["attack_damage_+%"]=1125, - ["attack_damage_+%_for_4_seconds_on_cast"]=3178, - ["attack_damage_+%_if_other_ring_is_shaper_item"]=3965, - ["attack_damage_+%_per_16_strength"]=4393, - ["attack_damage_+%_per_450_evasion"]=2635, - ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4394, - ["attack_damage_+%_per_5%_block_chance"]=4383, - ["attack_damage_+%_per_500_maximum_mana"]=4384, - ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4395, - ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4385, - ["attack_damage_+%_per_frenzy_charge"]=2948, - ["attack_damage_+%_per_level"]=2651, - ["attack_damage_+%_vs_maimed_enemies"]=4396, - ["attack_damage_+%_vs_rare_or_unique_enemy"]=4386, - ["attack_damage_+%_when_on_full_life"]=4397, - ["attack_damage_+%_when_on_low_life"]=4398, - ["attack_damage_+%_while_affected_by_precision"]=4399, - ["attack_damage_+%_while_ally_in_presence"]=4387, - ["attack_damage_+%_while_channelling"]=4400, - ["attack_damage_+%_while_holding_a_shield"]=1133, - ["attack_damage_+%_while_in_blood_stance"]=4388, - ["attack_damage_+%_while_leeching"]=4401, - ["attack_damage_+%_while_not_on_low_mana"]=4402, - ["attack_damage_+%_while_onslaught_active"]=2954, - ["attack_damage_+%_while_surrounded"]=4389, - ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4390, - ["attack_damage_+%_while_you_have_fortify"]=4403, - ["attack_damage_+%_with_channelling_skills"]=4404, - ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4392, - ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4391, - ["attack_damage_that_stuns_also_chills"]=2695, - ["attack_damage_vs_bleeding_enemies_+%"]=2210, - ["attack_ignite_chance_%"]=2411, - ["attack_mana_cost_+%"]=4405, - ["attack_maximum_added_chaos_damage"]=1257, - ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=3963, - ["attack_maximum_added_chaos_damage_with_bows"]=1806, - ["attack_maximum_added_chaos_damage_with_claws"]=1807, - ["attack_maximum_added_chaos_damage_with_daggers"]=1808, - ["attack_maximum_added_cold_damage"]=871, - ["attack_maximum_added_cold_damage_with_axes"]=1790, - ["attack_maximum_added_cold_damage_with_bows"]=1791, - ["attack_maximum_added_cold_damage_with_claws"]=1792, - ["attack_maximum_added_cold_damage_with_crossbows"]=3929, - ["attack_maximum_added_cold_damage_with_daggers"]=1793, - ["attack_maximum_added_cold_damage_with_flails"]=3917, - ["attack_maximum_added_cold_damage_with_maces"]=1794, - ["attack_maximum_added_cold_damage_with_spears"]=1809, - ["attack_maximum_added_cold_damage_with_staves"]=1795, - ["attack_maximum_added_cold_damage_with_swords"]=1796, - ["attack_maximum_added_cold_damage_with_wand"]=1797, - ["attack_maximum_added_fire_damage"]=870, - ["attack_maximum_added_fire_damage_per_10_strength"]=4406, - ["attack_maximum_added_fire_damage_with_axes"]=1782, - ["attack_maximum_added_fire_damage_with_bow"]=1783, - ["attack_maximum_added_fire_damage_with_claws"]=1784, - ["attack_maximum_added_fire_damage_with_crossbows"]=3930, - ["attack_maximum_added_fire_damage_with_daggers"]=1785, - ["attack_maximum_added_fire_damage_with_flails"]=3918, - ["attack_maximum_added_fire_damage_with_maces"]=1786, - ["attack_maximum_added_fire_damage_with_spears"]=1810, - ["attack_maximum_added_fire_damage_with_staves"]=1787, - ["attack_maximum_added_fire_damage_with_swords"]=1788, - ["attack_maximum_added_fire_damage_with_wand"]=1789, - ["attack_maximum_added_lightning_damage"]=872, - ["attack_maximum_added_lightning_damage_%_of_maximum_mana"]=9577, - ["attack_maximum_added_lightning_damage_per_10_dex"]=4408, - ["attack_maximum_added_lightning_damage_per_10_int"]=4409, - ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4410, - ["attack_maximum_added_lightning_damage_with_axes"]=1798, - ["attack_maximum_added_lightning_damage_with_bows"]=1799, - ["attack_maximum_added_lightning_damage_with_claws"]=1800, - ["attack_maximum_added_lightning_damage_with_crossbows"]=3931, - ["attack_maximum_added_lightning_damage_with_daggers"]=1801, - ["attack_maximum_added_lightning_damage_with_flails"]=3919, - ["attack_maximum_added_lightning_damage_with_maces"]=1802, - ["attack_maximum_added_lightning_damage_with_spears"]=1811, - ["attack_maximum_added_lightning_damage_with_staves"]=1803, - ["attack_maximum_added_lightning_damage_with_swords"]=1804, - ["attack_maximum_added_lightning_damage_with_wand"]=1805, - ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2159, - ["attack_maximum_added_physical_damage"]=869, - ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4411, - ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=3962, - ["attack_maximum_added_physical_damage_per_25_dexterity"]=3051, - ["attack_maximum_added_physical_damage_per_25_strength"]=4412, - ["attack_maximum_added_physical_damage_per_level"]=4413, - ["attack_maximum_added_physical_damage_while_holding_a_shield"]=1781, - ["attack_maximum_added_physical_damage_while_unarmed"]=1780, - ["attack_maximum_added_physical_damage_with_axes"]=1772, - ["attack_maximum_added_physical_damage_with_bow"]=1773, - ["attack_maximum_added_physical_damage_with_claws"]=1774, - ["attack_maximum_added_physical_damage_with_crossbows"]=3932, - ["attack_maximum_added_physical_damage_with_daggers"]=1775, - ["attack_maximum_added_physical_damage_with_flails"]=3920, - ["attack_maximum_added_physical_damage_with_maces"]=1776, - ["attack_maximum_added_physical_damage_with_spears"]=1812, - ["attack_maximum_added_physical_damage_with_staves"]=1777, - ["attack_maximum_added_physical_damage_with_swords"]=1778, - ["attack_maximum_added_physical_damage_with_wands"]=1779, - ["attack_maximum_added_physical_damage_with_weapons"]=1178, - ["attack_minimum_added_chaos_damage"]=1257, - ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=3963, - ["attack_minimum_added_chaos_damage_with_bows"]=1806, - ["attack_minimum_added_chaos_damage_with_claws"]=1807, - ["attack_minimum_added_chaos_damage_with_daggers"]=1808, - ["attack_minimum_added_cold_damage"]=871, - ["attack_minimum_added_cold_damage_with_axes"]=1790, - ["attack_minimum_added_cold_damage_with_bows"]=1791, - ["attack_minimum_added_cold_damage_with_claws"]=1792, - ["attack_minimum_added_cold_damage_with_crossbows"]=3929, - ["attack_minimum_added_cold_damage_with_daggers"]=1793, - ["attack_minimum_added_cold_damage_with_flails"]=3917, - ["attack_minimum_added_cold_damage_with_maces"]=1794, - ["attack_minimum_added_cold_damage_with_spears"]=1809, - ["attack_minimum_added_cold_damage_with_staves"]=1795, - ["attack_minimum_added_cold_damage_with_swords"]=1796, - ["attack_minimum_added_cold_damage_with_wand"]=1797, - ["attack_minimum_added_fire_damage"]=870, - ["attack_minimum_added_fire_damage_per_10_strength"]=4406, - ["attack_minimum_added_fire_damage_with_axes"]=1782, - ["attack_minimum_added_fire_damage_with_bow"]=1783, - ["attack_minimum_added_fire_damage_with_claws"]=1784, - ["attack_minimum_added_fire_damage_with_crossbows"]=3930, - ["attack_minimum_added_fire_damage_with_daggers"]=1785, - ["attack_minimum_added_fire_damage_with_flails"]=3918, - ["attack_minimum_added_fire_damage_with_maces"]=1786, - ["attack_minimum_added_fire_damage_with_spears"]=1810, - ["attack_minimum_added_fire_damage_with_staves"]=1787, - ["attack_minimum_added_fire_damage_with_swords"]=1788, - ["attack_minimum_added_fire_damage_with_wand"]=1789, - ["attack_minimum_added_lightning_damage"]=872, - ["attack_minimum_added_lightning_damage_%_of_maximum_mana"]=9547, - ["attack_minimum_added_lightning_damage_per_10_dex"]=4408, - ["attack_minimum_added_lightning_damage_per_10_int"]=4409, - ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4410, - ["attack_minimum_added_lightning_damage_with_axes"]=1798, - ["attack_minimum_added_lightning_damage_with_bows"]=1799, - ["attack_minimum_added_lightning_damage_with_claws"]=1800, - ["attack_minimum_added_lightning_damage_with_crossbows"]=3931, - ["attack_minimum_added_lightning_damage_with_daggers"]=1801, - ["attack_minimum_added_lightning_damage_with_flails"]=3919, - ["attack_minimum_added_lightning_damage_with_maces"]=1802, - ["attack_minimum_added_lightning_damage_with_spears"]=1811, - ["attack_minimum_added_lightning_damage_with_staves"]=1803, - ["attack_minimum_added_lightning_damage_with_swords"]=1804, - ["attack_minimum_added_lightning_damage_with_wand"]=1805, - ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2159, - ["attack_minimum_added_physical_damage"]=869, - ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4411, - ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=3962, - ["attack_minimum_added_physical_damage_per_25_dexterity"]=3051, - ["attack_minimum_added_physical_damage_per_25_strength"]=4412, - ["attack_minimum_added_physical_damage_per_level"]=4413, - ["attack_minimum_added_physical_damage_while_holding_a_shield"]=1781, - ["attack_minimum_added_physical_damage_while_unarmed"]=1780, - ["attack_minimum_added_physical_damage_with_axes"]=1772, - ["attack_minimum_added_physical_damage_with_bow"]=1773, - ["attack_minimum_added_physical_damage_with_claws"]=1774, - ["attack_minimum_added_physical_damage_with_crossbows"]=3932, - ["attack_minimum_added_physical_damage_with_daggers"]=1775, - ["attack_minimum_added_physical_damage_with_flails"]=3920, - ["attack_minimum_added_physical_damage_with_maces"]=1776, - ["attack_minimum_added_physical_damage_with_spears"]=1812, - ["attack_minimum_added_physical_damage_with_staves"]=1777, - ["attack_minimum_added_physical_damage_with_swords"]=1778, - ["attack_minimum_added_physical_damage_with_wands"]=1779, - ["attack_minimum_added_physical_damage_with_weapons"]=1178, - ["attack_projectiles_fork"]=4415, - ["attack_projectiles_fork_additional_times"]=4416, - ["attack_projectiles_return"]=2527, - ["attack_repeat_count"]=1614, - ["attack_skill_additional_num_projectiles_while_wielding_claws_daggers"]=4417, - ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2425, - ["attack_skills_additional_ballista_totems_allowed"]=3867, - ["attack_skills_additional_totems_allowed"]=3868, - ["attack_skills_damage_+%_while_dual_wielding"]=1185, - ["attack_skills_damage_+%_while_holding_shield"]=1134, - ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4418, - ["attack_speed_+%"]=963, - ["attack_speed_+%_during_flask_effect"]=2963, - ["attack_speed_+%_final_per_blitz_charge"]=4426, - ["attack_speed_+%_for_4_seconds_on_attack"]=3179, - ["attack_speed_+%_if_cast_a_mark_spell_recently"]=4427, - ["attack_speed_+%_if_changed_stance_recently"]=9075, - ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4428, - ["attack_speed_+%_if_enemy_killed_recently"]=4429, - ["attack_speed_+%_if_enemy_not_killed_recently"]=3857, - ["attack_speed_+%_if_have_been_hit_recently"]=4430, - ["attack_speed_+%_if_have_blocked_recently"]=4431, - ["attack_speed_+%_if_have_crit_recently"]=4432, - ["attack_speed_+%_if_havent_cast_dash_recently"]=4433, - ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4434, - ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4435, - ["attack_speed_+%_if_you_have_at_least_600_strength"]=4436, - ["attack_speed_+%_if_you_have_not_attacked_recently"]=4419, - ["attack_speed_+%_per_1%_overcapped_block_chance"]=4437, - ["attack_speed_+%_per_10_dex"]=4438, - ["attack_speed_+%_per_200_accuracy_rating"]=3860, - ["attack_speed_+%_per_20_dex"]=2262, - ["attack_speed_+%_per_25_dex"]=4439, - ["attack_speed_+%_per_enemy_in_close_range"]=4420, - ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4421, - ["attack_speed_+%_per_frenzy_charge"]=1750, - ["attack_speed_+%_when_hit"]=2874, - ["attack_speed_+%_when_on_full_life"]=1147, - ["attack_speed_+%_when_on_low_life"]=1146, - ["attack_speed_+%_while_affected_by_precision"]=4440, - ["attack_speed_+%_while_chilled"]=4441, - ["attack_speed_+%_while_holding_shield"]=1284, - ["attack_speed_+%_while_ignited"]=2630, - ["attack_speed_+%_while_in_presence_of_companion"]=4422, - ["attack_speed_+%_while_in_sand_stance"]=4423, - ["attack_speed_+%_while_leeching"]=2880, - ["attack_speed_+%_while_not_on_low_mana"]=4442, - ["attack_speed_+%_while_on_full_mana"]=4424, - ["attack_speed_+%_while_phasing"]=4443, - ["attack_speed_+%_while_surrounded"]=4425, - ["attack_speed_+%_with_channelling_skills"]=4444, - ["attack_speed_+%_with_movement_skills"]=1299, - ["attack_speed_while_dual_wielding_+%"]=1282, - ["attack_speed_while_fortified_+%"]=2886, - ["attacks_base_mana_cost_+_%_of_maximum_mana"]=4446, - ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4447, - ["attacks_cause_bleeding_vs_cursed_enemies"]=4448, - ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4450, - ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4451, - ["attacks_chance_to_blind_on_hit_%"]=4452, - ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1756, - ["attacks_chance_to_taunt_on_hit_%"]=4453, - ["attacks_deal_no_physical_damage"]=2198, - ["attacks_do_not_cost_mana"]=1607, - ["attacks_impale_on_hit_%_chance"]=4454, - ["attacks_inflict_bleeding_if_last_movement_skill_was_advancing_strike"]=4455, - ["attacks_inflict_bleeding_on_hit"]=2208, - ["attacks_intimidate_on_hit_%"]=4456, - ["attacks_num_of_additional_chains"]=3755, - ["attacks_num_of_additional_chains_when_in_main_hand"]=3820, - ["attacks_number_of_additional_projectiles"]=3821, - ["attacks_number_of_additional_projectiles_when_in_off_hand"]=3822, - ["attacks_poison_while_at_max_frenzy_charges"]=1755, - ["attacks_use_life_in_place_of_mana"]=9634, - ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4457, - ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4458, - ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4457, - ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4458, - ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4459, - ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1118, - ["aura_effect_+%"]=2522, - ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4460, - ["aura_effect_on_self_from_your_skills_+%"]=3213, - ["aura_grant_%_base_main_hand_attack_damage_to_nearby_allies"]=4461, - ["aura_grant_shield_defences_to_nearby_allies"]=3112, - ["aura_melee_physical_damage_+%_per_10_strength"]=3102, - ["avatar_of_fire_rotation_active"]=9639, - ["avians_flight_duration_ms_+"]=4462, - ["avians_might_duration_ms_+"]=4463, - ["avoid_ailments_%_from_crit"]=4464, - ["avoid_ailments_%_on_consecrated_ground"]=3200, - ["avoid_ailments_%_while_holding_shield"]=4465, - ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4466, - ["avoid_all_elemental_status_%"]=1564, - ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=3784, - ["avoid_blind_%"]=2293, - ["avoid_chained_projectile_%_chance"]=4467, - ["avoid_chaos_damage_%"]=3036, - ["avoid_chill_freeze_while_casting_%"]=4468, - ["avoid_cold_damage_%"]=3034, - ["avoid_corrupted_blood_%_chance"]=4469, - ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4470, - ["avoid_elemental_ailments_%_while_phasing"]=4471, - ["avoid_elemental_damage_%_per_frenzy_charge"]=3032, - ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4472, - ["avoid_elemental_damage_while_phasing_%"]=4473, - ["avoid_fire_damage_%"]=3033, - ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4474, - ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2719, - ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3710, - ["avoid_ignite_%_when_on_low_life"]=1568, - ["avoid_impale_%"]=4475, - ["avoid_interruption_while_casting_%"]=1613, - ["avoid_knockback_%"]=1378, - ["avoid_lightning_damage_%"]=3035, - ["avoid_maim_%_chance"]=4476, - ["avoid_physical_damage_%"]=3031, - ["avoid_physical_damage_%_while_phasing"]=4477, - ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4478, - ["avoid_projectiles_while_phasing_%_chance"]=4479, - ["avoid_shock_%_while_chilled"]=4480, - ["avoid_status_ailments_%_during_flask_effect"]=2962, - ["avoid_stun_%"]=1571, - ["avoid_stun_%_for_4_seconds_on_kill"]=2988, - ["avoid_stun_%_while_channeling_snipe"]=4482, - ["avoid_stun_%_while_channelling"]=4483, - ["avoid_stun_%_while_holding_shield"]=4484, - ["avoid_stun_35%_per_active_herald"]=4481, - ["axe_accuracy_rating"]=1717, - ["axe_accuracy_rating_+%"]=1304, - ["axe_attack_speed_+%"]=1287, - ["axe_critical_strike_chance_+%"]=1336, - ["axe_critical_strike_multiplier_+"]=1354, - ["axe_damage_+%"]=1202, - ["ball_lightning_damage_+%"]=2843, - ["ball_lightning_number_of_additional_projectiles"]=4485, - ["ball_lightning_projectile_speed_+%"]=3522, - ["ball_lightning_radius_+%"]=3455, + ["always_frostburn_while_affected_by_hatred"]=4180, + ["always_ignite"]=1556, + ["always_ignite_while_burning"]=4181, + ["always_pierce"]=4182, + ["always_pierce_burning_enemies"]=4183, + ["always_sap_while_affected_by_wrath"]=4184, + ["always_scorch_while_affected_by_anger"]=4185, + ["always_shock"]=1557, + ["always_stun"]=1558, + ["always_stun_enemies_that_are_on_full_life"]=2945, + ["ambush_buff_critical_strike_multiplier_+"]=4186, + ["ambush_cooldown_speed_+%"]=4187, + ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3038, + ["ancestor_totem_buff_effect_+%"]=4188, + ["ancestor_totem_buff_linger_time_ms"]=4189, + ["ancestor_totem_parent_activation_range_+%"]=4190, + ["ancestral_boosted_area_of_effect_+%"]=4191, + ["ancestral_boosted_attack_damage_+%"]=4192, + ["ancestral_boosted_attack_hit_damage_stun_multiplier_+%"]=4193, + ["ancestral_cry_attacks_exerted_+"]=4194, + ["ancestral_cry_exerted_attack_damage_+%"]=4195, + ["ancestral_cry_minimum_power"]=4196, + ["ancestral_slam_every_other_slam"]=4197, + ["anger_aura_effect_+%"]=2967, + ["anger_mana_reservation_+%"]=3022, + ["anger_mana_reservation_efficiency_+%"]=4199, + ["anger_mana_reservation_efficiency_-2%_per_1"]=4198, + ["anger_reserves_no_mana"]=4200, + ["animate_guardian_damage_+%"]=3290, + ["animate_guardian_damage_+%_per_animated_weapon"]=4201, + ["animate_guardian_elemental_resistances_%"]=3562, + ["animate_weapon_can_animate_bows"]=2792, + ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=2875, + ["animate_weapon_can_animate_wands"]=2793, + ["animate_weapon_chance_to_create_additional_copy_%"]=3567, + ["animate_weapon_damage_+%"]=3212, + ["animate_weapon_duration_+%"]=2466, + ["animate_weapon_number_of_additional_copies"]=2467, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4202, + ["animated_guardian_damage_taken_+%_final"]=4203, + ["animated_minions_melee_splash"]=4204, + ["aoe_+%_per_second_while_stationary_up_to_50"]=4205, + ["apply_X_armour_break_on_hit"]=4206, + ["apply_X_incision_on_thorns_hit"]=4207, + ["apply_X_stacks_of_critical_weakness_on_critical_hit_with_spells"]=4208, + ["apply_X_stacks_of_critical_weakness_on_hit"]=4209, + ["apply_X_stacks_of_critical_weakness_on_parry"]=4210, + ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4211, + ["apply_covered_in_ash_to_attacker_when_hit_%"]=4212, + ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4213, + ["apply_poison_on_hit_vs_bleeding_enemies_%"]=2899, + ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4214, + ["arc_and_crackling_lance_base_cost_+%"]=4215, + ["arc_damage_+%"]=3245, + ["arc_damage_+%_per_chain"]=4216, + ["arc_num_of_additional_projectiles_in_chain"]=3529, + ["arc_shock_chance_%"]=3542, + ["arcane_cloak_consume_%_of_mana"]=4217, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4218, + ["arcane_surge_effect_+1%_per_X_maximum_mana"]=4219, + ["arcane_surge_effect_on_self_+%"]=2904, + ["arcane_surge_effect_on_self_+%_per_200_mana_spent_recently_up_to_50%"]=2905, + ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=2903, + ["arcane_surge_effect_on_self_+%_while_affected_by_clarity"]=4220, + ["arcane_surge_mana_regen_modifier_on_you_applies_to_life_regen_instead"]=4221, + ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4222, + ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4223, + ["arcanist_brand_cast_speed_+%"]=4224, + ["arcanist_brand_unnerve_on_hit"]=4225, + ["archon_delay_expires_x%_faster"]=4226, + ["archon_duration_+%"]=4227, + ["archon_effect_on_you_+%"]=4228, + ["archon_grants_all_elemental_resistance_+%"]=4229, + ["archon_grants_movement_speed_+%"]=4230, + ["arctic_armour_buff_effect_+%"]=3593, + ["arctic_armour_chill_when_hit_duration"]=4231, + ["arctic_armour_mana_reservation_+%"]=3600, + ["arctic_armour_mana_reservation_efficiency_+%"]=4233, + ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4232, + ["arctic_armour_maximum_added_cold_damage_per_stack"]=4234, + ["arctic_armour_minimum_added_cold_damage_per_stack"]=4234, + ["arctic_armour_no_reservation"]=4235, + ["arctic_breath_chilling_area_movement_velocity_+%"]=4236, + ["arctic_breath_damage_+%"]=3263, + ["arctic_breath_duration_+%"]=3509, + ["arctic_breath_radius_+%"]=3400, + ["area_damage_+%"]=1719, + ["area_damage_+%_per_10_devotion"]=4237, + ["area_damage_+%_per_12_strength"]=4238, + ["area_damage_taken_from_hits_+%"]=1910, + ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4240, + ["area_of_effect_+%_if_below_100_intelligence"]=4239, + ["area_of_effect_+%_if_culled_recently"]=4241, + ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4242, + ["area_of_effect_+%_if_have_crit_recently"]=4243, + ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4244, + ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4245, + ["area_of_effect_+%_if_you_have_blocked_recently"]=4246, + ["area_of_effect_+%_per_20_int"]=2230, + ["area_of_effect_+%_per_25_rampage_stacks"]=3948, + ["area_of_effect_+%_per_50_strength"]=4247, + ["area_of_effect_+%_per_active_herald_of_light_minion"]=4248, + ["area_of_effect_+%_per_endurance_charge"]=4249, + ["area_of_effect_+%_per_enemy_killed_recently"]=4250, + ["area_of_effect_+%_while_fortified"]=4251, + ["area_of_effect_+%_while_totem_active"]=4252, + ["area_of_effect_+%_while_wielding_bow"]=4253, + ["area_of_effect_+%_while_wielding_staff"]=4254, + ["area_of_effect_+%_while_you_do_not_have_convergence"]=4009, + ["area_of_effect_+%_while_you_have_arcane_surge"]=4255, + ["area_of_effect_+%_with_500_or_more_strength"]=4256, + ["area_of_effect_+%_with_bow_skills"]=4257, + ["area_of_effect_+%_with_herald_skills"]=4258, + ["area_skill_accuracy_rating_+%"]=4259, + ["area_skill_knockback_chance_%"]=4260, + ["armageddon_brand_attached_target_fire_penetration_%"]=4261, + ["armageddon_brand_damage_+%"]=4262, + ["armageddon_brand_repeat_frequency_+%"]=4263, + ["armour_%_applies_to_fire_cold_lightning_damage"]=983, + ["armour_%_applies_to_fire_cold_lightning_damage_if_you_have_at_least_100_tribute"]=4264, + ["armour_%_to_gain_as_stun_threshold"]=4265, + ["armour_+%_final_vs_hits_per_1%_current_energy_shield"]=4298, + ["armour_+%_if_consumed_endurance_charge_recently"]=4266, + ["armour_+%_if_enemy_not_killed_recently"]=4299, + ["armour_+%_if_have_been_hit_recently"]=4267, + ["armour_+%_if_hit_enemy_with_melee_attack_recently"]=4268, + ["armour_+%_if_not_dodge_rolled_recently"]=4269, + ["armour_+%_if_you_havent_been_hit_recently"]=4270, + ["armour_+%_per_50_str"]=4300, + ["armour_+%_per_defiance"]=3843, + ["armour_+%_per_rage"]=9838, + ["armour_+%_per_red_socket_on_main_hand_weapon"]=4302, + ["armour_+%_per_second_while_stationary_up_to_100"]=4303, + ["armour_+%_while_bleeding"]=4304, + ["armour_+%_while_ignited"]=4271, + ["armour_+%_while_no_energy_shield"]=2406, + ["armour_+%_while_stationary"]=4305, + ["armour_+%_while_surrounded"]=4272, + ["armour_+_from_%_strength_requirements_from_boots_gloves_helmets"]=4273, + ["armour_+_per_10_unreserved_max_mana"]=4274, + ["armour_+_per_1_helmet_maximum_energy_shield"]=4294, + ["armour_+_per_1_spirit"]=4275, + ["armour_+_while_affected_by_determination"]=4295, + ["armour_+_while_affected_by_guard_skill"]=4296, + ["armour_+_while_you_have_fortify"]=4297, + ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4276, + ["armour_and_evasion_+%_during_onslaught"]=4277, + ["armour_and_evasion_+%_while_fortified"]=3812, + ["armour_and_evasion_on_low_life_+%"]=2838, + ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=3758, + ["armour_and_evasion_rating_+%_per_active_totem_in_presence"]=4278, + ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4279, + ["armour_and_evasion_rating_+_while_fortified"]=4280, + ["armour_break_%_of_armour_on_critical_strike_with_spells"]=4281, + ["armour_break_%_of_armour_on_heavy_stunning"]=4282, + ["armour_break_amount_+%"]=4283, + ["armour_break_amount_+%_vs_enemies_affected_by_ailments"]=4284, + ["armour_break_and_sundered_armour_duration_+%"]=4285, + ["armour_break_damage_%_dealt_as_armour_break"]=4286, + ["armour_break_equal_to_%_physical_damage_dealt_on_critical_strike_with_spells"]=4287, + ["armour_break_fire_damage_%_dealt_as_armour_break"]=4288, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=4289, + ["armour_evasion_+%_while_leeching"]=4290, + ["armour_from_gloves_and_boots_+%"]=4291, + ["armour_from_helmet_and_gloves_+%"]=4292, + ["armour_hellscaping_speed_+%"]=6621, + ["armour_increased_by_overcapped_fire_resistance"]=4293, + ["armour_while_stationary"]=3896, + ["armour_while_you_do_not_have_avatar_of_fire"]=9930, + ["arrow_base_number_of_targets_to_pierce"]=1497, + ["arrow_chains_+"]=1494, + ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4306, + ["arrow_damage_+%_max_as_distance_travelled_increases"]=4309, + ["arrow_damage_+%_vs_pierced_targets"]=4307, + ["arrow_damage_+50%_vs_pierced_targets"]=4308, + ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4311, + ["arrows_always_pierce_after_chaining"]=3887, + ["arrows_always_pierce_after_forking"]=4312, + ["arrows_fork"]=3172, + ["arrows_from_first_firing_point_always_pierce"]=3979, + ["arrows_from_fourth_firing_point_additional_chains"]=3982, + ["arrows_from_second_firing_point_fork"]=3980, + ["arrows_from_third_firing_point_return"]=3981, + ["arrows_pierce_additional_target"]=4313, + ["arrows_that_pierce_also_return"]=4314, + ["arrows_that_pierce_cause_bleeding"]=3885, + ["arrows_that_pierce_chance_to_bleed_25%"]=3886, + ["artillery_ballista_cross_strafe_pattern"]=4315, + ["artillery_ballista_fire_pen_+%"]=4316, + ["artillery_ballista_num_additional_arrows"]=4317, + ["ascendancy_assasin_critical_hit_poison_effect_+%_final"]=3810, + ["ascendancy_assassin_damage_vs_enemies_on_low_life_+%_final"]=2478, + ["ascendancy_beidats_gaze_mana_+_per_X_maximum_life"]=4318, + ["ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life"]=4319, + ["ascendancy_beidats_will_spirit_+_per_X_maximum_life"]=4320, + ["ascendancy_energy_generated_+%_final"]=5944, + ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4321, + ["ascendancy_pathfinder_flask_charges_gained_+%_final"]=4322, + ["ascendancy_titan_damage_reduction_rating_from_body_armour_+%_final"]=4323, + ["ascendancy_warbringer_block_chance_+%_final"]=4324, + ["ascendency_tactician_totem_skill_speed_+%_final"]=4325, + ["aspect_of_the_avian_buff_effect_+%"]=4326, + ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4327, + ["aspect_of_the_cat_base_secondary_duration"]=4328, + ["aspect_of_the_spider_web_count_+"]=4329, + ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3040, + ["assassins_mark_curse_effect_+%"]=3580, + ["assassins_mark_duration_+%"]=3495, + ["attack_added_chaos_damage_%_of_maximum_life"]=4330, + ["attack_added_physical_damage_%_of_maximum_life"]=4331, + ["attack_additional_critical_strike_chance_permyriad"]=4332, + ["attack_additional_critical_strike_chance_permyriad_vs_parried_enemies_if_you_have_at_least_100_tribute"]=4333, + ["attack_always_crit"]=3359, + ["attack_and_cast_speed_+%"]=1726, + ["attack_and_cast_speed_+%_during_flask_effect"]=3833, + ["attack_and_cast_speed_+%_during_onslaught"]=2667, + ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4337, + ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3122, + ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3069, + ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3636, + ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4338, + ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4339, + ["attack_and_cast_speed_+%_on_placing_totem"]=2833, + ["attack_and_cast_speed_+%_per_cold_adaptation"]=3990, + ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=3816, + ["attack_and_cast_speed_+%_per_endurance_charge"]=4340, + ["attack_and_cast_speed_+%_per_frenzy_charge"]=1728, + ["attack_and_cast_speed_+%_per_power_charge"]=4341, + ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4342, + ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4343, + ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4334, + ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4335, + ["attack_and_cast_speed_+%_while_channelling"]=4344, + ["attack_and_cast_speed_+%_while_focused"]=4345, + ["attack_and_cast_speed_+%_while_leeching"]=3657, + ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=3793, + ["attack_and_cast_speed_+%_while_totem_active"]=3197, + ["attack_and_cast_speed_+%_while_using_flask"]=4346, + ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4347, + ["attack_and_cast_speed_+%_while_you_have_fortify"]=1961, + ["attack_and_cast_speed_+%_with_channelling_skills"]=4348, + ["attack_and_cast_speed_+%_with_chaos_skills"]=4349, + ["attack_and_cast_speed_+%_with_cold_skills"]=4350, + ["attack_and_cast_speed_+%_with_elemental_skills"]=4351, + ["attack_and_cast_speed_+%_with_fire_skills"]=4352, + ["attack_and_cast_speed_+%_with_lightning_skills"]=4353, + ["attack_and_cast_speed_+%_with_physical_skills"]=4354, + ["attack_and_cast_speed_+%_with_shield_skills"]=4355, + ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4336, + ["attack_and_cast_speed_when_hit_+%"]=2845, + ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4356, + ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=3905, + ["attack_area_damage_+%"]=4357, + ["attack_area_of_effect_+%"]=4359, + ["attack_area_of_effect_+%_per_10_int"]=4360, + ["attack_area_of_effect_+%_while_wielding_quarterstaff"]=4358, + ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4361, + ["attack_block_%_while_at_max_endurance_charges"]=4362, + ["attack_cast_and_movement_speed_+%_during_onslaught"]=4363, + ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=9931, + ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3637, + ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4364, + ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4365, + ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4366, + ["attack_consume_endurance_charge_to_always_crit"]=4367, + ["attack_critical_strike_chance_+%"]=954, + ["attack_critical_strike_chance_+%_per_10_tribute"]=4368, + ["attack_critical_strike_multiplier_+"]=958, + ["attack_critical_strikes_ignore_elemental_resistances"]=4369, + ["attack_damage_+%"]=1113, + ["attack_damage_+%_for_4_seconds_on_cast"]=3125, + ["attack_damage_+%_if_been_heavy_stunned_recently"]=4370, + ["attack_damage_+%_if_other_ring_is_shaper_item"]=3906, + ["attack_damage_+%_per_10_tribute"]=4371, + ["attack_damage_+%_per_16_strength"]=4385, + ["attack_damage_+%_per_450_evasion"]=2594, + ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4386, + ["attack_damage_+%_per_5%_block_chance"]=4372, + ["attack_damage_+%_per_500_maximum_mana"]=4373, + ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4387, + ["attack_damage_+%_per_active_totem_in_presence"]=4374, + ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4375, + ["attack_damage_+%_per_frenzy_charge"]=2901, + ["attack_damage_+%_per_level"]=2610, + ["attack_damage_+%_vs_maimed_enemies"]=4388, + ["attack_damage_+%_vs_rare_or_unique_enemy"]=4376, + ["attack_damage_+%_when_no_remaining_life_flask_uses"]=4377, + ["attack_damage_+%_when_on_full_life"]=4389, + ["attack_damage_+%_when_on_low_life"]=4390, + ["attack_damage_+%_while_affected_by_precision"]=4391, + ["attack_damage_+%_while_ally_in_presence"]=4378, + ["attack_damage_+%_while_channelling"]=4392, + ["attack_damage_+%_while_holding_a_shield"]=1121, + ["attack_damage_+%_while_in_blood_stance"]=4379, + ["attack_damage_+%_while_leeching"]=4393, + ["attack_damage_+%_while_moving"]=4380, + ["attack_damage_+%_while_not_on_low_mana"]=4394, + ["attack_damage_+%_while_onslaught_active"]=2907, + ["attack_damage_+%_while_surrounded"]=4381, + ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4382, + ["attack_damage_+%_while_you_have_fortify"]=4395, + ["attack_damage_+%_with_channelling_skills"]=4396, + ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4384, + ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4383, + ["attack_damage_that_stuns_also_chills"]=2650, + ["attack_damage_vs_bleeding_enemies_+%"]=2179, + ["attack_mana_cost_+%"]=4398, + ["attack_mana_cost_efficiency_+%_during_mana_flask"]=4397, + ["attack_maximum_added_chaos_damage"]=1245, + ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=3904, + ["attack_maximum_added_chaos_damage_with_bows"]=1783, + ["attack_maximum_added_chaos_damage_with_claws"]=1784, + ["attack_maximum_added_chaos_damage_with_daggers"]=1785, + ["attack_maximum_added_cold_damage"]=866, + ["attack_maximum_added_cold_damage_with_axes"]=1767, + ["attack_maximum_added_cold_damage_with_bows"]=1768, + ["attack_maximum_added_cold_damage_with_claws"]=1769, + ["attack_maximum_added_cold_damage_with_crossbows"]=3870, + ["attack_maximum_added_cold_damage_with_daggers"]=1770, + ["attack_maximum_added_cold_damage_with_flails"]=3858, + ["attack_maximum_added_cold_damage_with_maces"]=1771, + ["attack_maximum_added_cold_damage_with_spears"]=1786, + ["attack_maximum_added_cold_damage_with_staves"]=1772, + ["attack_maximum_added_cold_damage_with_swords"]=1773, + ["attack_maximum_added_cold_damage_with_wand"]=1774, + ["attack_maximum_added_fire_damage"]=865, + ["attack_maximum_added_fire_damage_per_10_strength"]=4399, + ["attack_maximum_added_fire_damage_with_axes"]=1759, + ["attack_maximum_added_fire_damage_with_bow"]=1760, + ["attack_maximum_added_fire_damage_with_claws"]=1761, + ["attack_maximum_added_fire_damage_with_crossbows"]=3871, + ["attack_maximum_added_fire_damage_with_daggers"]=1762, + ["attack_maximum_added_fire_damage_with_flails"]=3859, + ["attack_maximum_added_fire_damage_with_maces"]=1763, + ["attack_maximum_added_fire_damage_with_spears"]=1787, + ["attack_maximum_added_fire_damage_with_staves"]=1764, + ["attack_maximum_added_fire_damage_with_swords"]=1765, + ["attack_maximum_added_fire_damage_with_wand"]=1766, + ["attack_maximum_added_lightning_damage"]=867, + ["attack_maximum_added_lightning_damage_%_of_maximum_mana"]=9857, + ["attack_maximum_added_lightning_damage_per_10_dex"]=4401, + ["attack_maximum_added_lightning_damage_per_10_int"]=4402, + ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4403, + ["attack_maximum_added_lightning_damage_with_axes"]=1775, + ["attack_maximum_added_lightning_damage_with_bows"]=1776, + ["attack_maximum_added_lightning_damage_with_claws"]=1777, + ["attack_maximum_added_lightning_damage_with_crossbows"]=3872, + ["attack_maximum_added_lightning_damage_with_daggers"]=1778, + ["attack_maximum_added_lightning_damage_with_flails"]=3860, + ["attack_maximum_added_lightning_damage_with_maces"]=1779, + ["attack_maximum_added_lightning_damage_with_spears"]=1788, + ["attack_maximum_added_lightning_damage_with_staves"]=1780, + ["attack_maximum_added_lightning_damage_with_swords"]=1781, + ["attack_maximum_added_lightning_damage_with_wand"]=1782, + ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2128, + ["attack_maximum_added_physical_damage"]=864, + ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4404, + ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=3903, + ["attack_maximum_added_physical_damage_per_25_dexterity"]=3000, + ["attack_maximum_added_physical_damage_per_25_strength"]=4405, + ["attack_maximum_added_physical_damage_per_level"]=4406, + ["attack_maximum_added_physical_damage_while_holding_a_shield"]=1758, + ["attack_maximum_added_physical_damage_while_unarmed"]=1757, + ["attack_maximum_added_physical_damage_with_axes"]=1749, + ["attack_maximum_added_physical_damage_with_bow"]=1750, + ["attack_maximum_added_physical_damage_with_claws"]=1751, + ["attack_maximum_added_physical_damage_with_crossbows"]=3873, + ["attack_maximum_added_physical_damage_with_daggers"]=1752, + ["attack_maximum_added_physical_damage_with_flails"]=3861, + ["attack_maximum_added_physical_damage_with_maces"]=1753, + ["attack_maximum_added_physical_damage_with_spears"]=1789, + ["attack_maximum_added_physical_damage_with_staves"]=1754, + ["attack_maximum_added_physical_damage_with_swords"]=1755, + ["attack_maximum_added_physical_damage_with_wands"]=1756, + ["attack_maximum_added_physical_damage_with_weapons"]=1166, + ["attack_minimum_added_chaos_damage"]=1245, + ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=3904, + ["attack_minimum_added_chaos_damage_with_bows"]=1783, + ["attack_minimum_added_chaos_damage_with_claws"]=1784, + ["attack_minimum_added_chaos_damage_with_daggers"]=1785, + ["attack_minimum_added_cold_damage"]=866, + ["attack_minimum_added_cold_damage_with_axes"]=1767, + ["attack_minimum_added_cold_damage_with_bows"]=1768, + ["attack_minimum_added_cold_damage_with_claws"]=1769, + ["attack_minimum_added_cold_damage_with_crossbows"]=3870, + ["attack_minimum_added_cold_damage_with_daggers"]=1770, + ["attack_minimum_added_cold_damage_with_flails"]=3858, + ["attack_minimum_added_cold_damage_with_maces"]=1771, + ["attack_minimum_added_cold_damage_with_spears"]=1786, + ["attack_minimum_added_cold_damage_with_staves"]=1772, + ["attack_minimum_added_cold_damage_with_swords"]=1773, + ["attack_minimum_added_cold_damage_with_wand"]=1774, + ["attack_minimum_added_fire_damage"]=865, + ["attack_minimum_added_fire_damage_per_10_strength"]=4399, + ["attack_minimum_added_fire_damage_with_axes"]=1759, + ["attack_minimum_added_fire_damage_with_bow"]=1760, + ["attack_minimum_added_fire_damage_with_claws"]=1761, + ["attack_minimum_added_fire_damage_with_crossbows"]=3871, + ["attack_minimum_added_fire_damage_with_daggers"]=1762, + ["attack_minimum_added_fire_damage_with_flails"]=3859, + ["attack_minimum_added_fire_damage_with_maces"]=1763, + ["attack_minimum_added_fire_damage_with_spears"]=1787, + ["attack_minimum_added_fire_damage_with_staves"]=1764, + ["attack_minimum_added_fire_damage_with_swords"]=1765, + ["attack_minimum_added_fire_damage_with_wand"]=1766, + ["attack_minimum_added_lightning_damage"]=867, + ["attack_minimum_added_lightning_damage_%_of_maximum_mana"]=9827, + ["attack_minimum_added_lightning_damage_per_10_dex"]=4401, + ["attack_minimum_added_lightning_damage_per_10_int"]=4402, + ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4403, + ["attack_minimum_added_lightning_damage_with_axes"]=1775, + ["attack_minimum_added_lightning_damage_with_bows"]=1776, + ["attack_minimum_added_lightning_damage_with_claws"]=1777, + ["attack_minimum_added_lightning_damage_with_crossbows"]=3872, + ["attack_minimum_added_lightning_damage_with_daggers"]=1778, + ["attack_minimum_added_lightning_damage_with_flails"]=3860, + ["attack_minimum_added_lightning_damage_with_maces"]=1779, + ["attack_minimum_added_lightning_damage_with_spears"]=1788, + ["attack_minimum_added_lightning_damage_with_staves"]=1780, + ["attack_minimum_added_lightning_damage_with_swords"]=1781, + ["attack_minimum_added_lightning_damage_with_wand"]=1782, + ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2128, + ["attack_minimum_added_physical_damage"]=864, + ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4404, + ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=3903, + ["attack_minimum_added_physical_damage_per_25_dexterity"]=3000, + ["attack_minimum_added_physical_damage_per_25_strength"]=4405, + ["attack_minimum_added_physical_damage_per_level"]=4406, + ["attack_minimum_added_physical_damage_while_holding_a_shield"]=1758, + ["attack_minimum_added_physical_damage_while_unarmed"]=1757, + ["attack_minimum_added_physical_damage_with_axes"]=1749, + ["attack_minimum_added_physical_damage_with_bow"]=1750, + ["attack_minimum_added_physical_damage_with_claws"]=1751, + ["attack_minimum_added_physical_damage_with_crossbows"]=3873, + ["attack_minimum_added_physical_damage_with_daggers"]=1752, + ["attack_minimum_added_physical_damage_with_flails"]=3861, + ["attack_minimum_added_physical_damage_with_maces"]=1753, + ["attack_minimum_added_physical_damage_with_spears"]=1789, + ["attack_minimum_added_physical_damage_with_staves"]=1754, + ["attack_minimum_added_physical_damage_with_swords"]=1755, + ["attack_minimum_added_physical_damage_with_wands"]=1756, + ["attack_minimum_added_physical_damage_with_weapons"]=1166, + ["attack_projectiles_fork"]=4408, + ["attack_projectiles_fork_additional_times"]=4409, + ["attack_projectiles_return"]=2491, + ["attack_repeat_count"]=1597, + ["attack_skill_gem_level_+"]=949, + ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2391, + ["attack_skills_additional_ballista_totems_allowed"]=3808, + ["attack_skills_additional_totems_allowed"]=3809, + ["attack_skills_damage_+%_while_dual_wielding"]=1173, + ["attack_skills_damage_+%_while_holding_shield"]=1122, + ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4410, + ["attack_speed_+%"]=961, + ["attack_speed_+%_during_flask_effect"]=2914, + ["attack_speed_+%_final_per_blitz_charge"]=4419, + ["attack_speed_+%_for_4_seconds_on_attack"]=3126, + ["attack_speed_+%_if_changed_stance_recently"]=9335, + ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4420, + ["attack_speed_+%_if_enemy_killed_recently"]=4421, + ["attack_speed_+%_if_enemy_not_killed_recently"]=3798, + ["attack_speed_+%_if_have_been_hit_recently"]=4422, + ["attack_speed_+%_if_have_blocked_recently"]=4423, + ["attack_speed_+%_if_have_crit_recently"]=4424, + ["attack_speed_+%_if_havent_cast_dash_recently"]=4425, + ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4426, + ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4427, + ["attack_speed_+%_if_used_a_mark_recently"]=4428, + ["attack_speed_+%_if_you_have_at_least_600_strength"]=4429, + ["attack_speed_+%_if_you_have_not_attacked_recently"]=4411, + ["attack_speed_+%_if_you_have_used_a_life_flask_recently"]=4430, + ["attack_speed_+%_per_1%_overcapped_block_chance"]=4431, + ["attack_speed_+%_per_10_dex"]=4432, + ["attack_speed_+%_per_200_accuracy_rating"]=3801, + ["attack_speed_+%_per_20_dex"]=2231, + ["attack_speed_+%_per_20_spirit"]=4412, + ["attack_speed_+%_per_25_dex"]=4433, + ["attack_speed_+%_per_enemy_in_close_range"]=4413, + ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4414, + ["attack_speed_+%_per_frenzy_charge"]=1727, + ["attack_speed_+%_when_hit"]=2829, + ["attack_speed_+%_when_on_full_life"]=1135, + ["attack_speed_+%_when_on_low_life"]=1134, + ["attack_speed_+%_while_affected_by_precision"]=4434, + ["attack_speed_+%_while_chilled"]=4435, + ["attack_speed_+%_while_holding_shield"]=1272, + ["attack_speed_+%_while_ignited"]=2590, + ["attack_speed_+%_while_in_presence_of_companion"]=4415, + ["attack_speed_+%_while_in_sand_stance"]=4416, + ["attack_speed_+%_while_leeching"]=2835, + ["attack_speed_+%_while_not_on_low_mana"]=4436, + ["attack_speed_+%_while_on_full_mana"]=4417, + ["attack_speed_+%_while_phasing"]=4437, + ["attack_speed_+%_while_surrounded"]=4418, + ["attack_speed_+%_with_channelling_skills"]=4438, + ["attack_speed_+%_with_movement_skills"]=1287, + ["attack_speed_while_dual_wielding_+%"]=1270, + ["attack_speed_while_fortified_+%"]=2841, + ["attacks_base_mana_cost_+_%_of_maximum_mana"]=4440, + ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4441, + ["attacks_cause_bleeding_vs_cursed_enemies"]=4442, + ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4444, + ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4445, + ["attacks_chance_to_blind_on_hit_%"]=4446, + ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1733, + ["attacks_chance_to_taunt_on_hit_%"]=4447, + ["attacks_deal_no_physical_damage"]=2167, + ["attacks_do_not_cost_mana"]=1590, + ["attacks_impale_on_hit_%_chance"]=4448, + ["attacks_inflict_bleeding_if_last_movement_skill_was_advancing_strike"]=4449, + ["attacks_inflict_bleeding_on_hit"]=2177, + ["attacks_intimidate_on_hit_%"]=4450, + ["attacks_num_of_additional_chains"]=3697, + ["attacks_num_of_additional_chains_when_in_main_hand"]=3761, + ["attacks_number_of_additional_projectiles"]=3762, + ["attacks_number_of_additional_projectiles_when_in_off_hand"]=3764, + ["attacks_poison_while_at_max_frenzy_charges"]=1732, + ["attacks_use_life_in_place_of_mana"]=9914, + ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4451, + ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4452, + ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4451, + ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4452, + ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4453, + ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1106, + ["aura_effect_+%"]=2486, + ["aura_effect_+%_if_you_have_at_least_100_tribute"]=4454, + ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4455, + ["aura_effect_on_self_from_your_skills_+%"]=3160, + ["aura_grant_%_base_main_hand_attack_damage_to_nearby_allies"]=4456, + ["aura_grant_shield_defences_to_nearby_allies"]=3060, + ["aura_melee_physical_damage_+%_per_10_strength"]=3050, + ["avatar_of_fire_rotation_active"]=9919, + ["avians_flight_duration_ms_+"]=4457, + ["avians_might_duration_ms_+"]=4458, + ["avoid_ailments_%_from_crit"]=4459, + ["avoid_ailments_%_on_consecrated_ground"]=3147, + ["avoid_ailments_%_while_holding_shield"]=4460, + ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4461, + ["avoid_all_elemental_status_%"]=1547, + ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=3726, + ["avoid_blind_%"]=2261, + ["avoid_chained_projectile_%_chance"]=4462, + ["avoid_chaos_damage_%"]=2987, + ["avoid_chill_freeze_while_casting_%"]=4463, + ["avoid_cold_damage_%"]=2985, + ["avoid_corrupted_blood_%_chance"]=4464, + ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4465, + ["avoid_elemental_ailments_%_while_phasing"]=4466, + ["avoid_elemental_damage_%_per_frenzy_charge"]=2983, + ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4467, + ["avoid_elemental_damage_while_phasing_%"]=4468, + ["avoid_fire_damage_%"]=2984, + ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4469, + ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2674, + ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3652, + ["avoid_ignite_%_when_on_low_life"]=1551, + ["avoid_impale_%"]=4470, + ["avoid_interruption_while_casting_%"]=1596, + ["avoid_knockback_%"]=1366, + ["avoid_lightning_damage_%"]=2986, + ["avoid_maim_%_chance"]=4471, + ["avoid_physical_damage_%"]=2982, + ["avoid_physical_damage_%_while_phasing"]=4472, + ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4473, + ["avoid_projectiles_while_phasing_%_chance"]=4474, + ["avoid_shock_%_while_chilled"]=4475, + ["avoid_status_ailments_%_during_flask_effect"]=2913, + ["avoid_stun_%"]=1554, + ["avoid_stun_%_for_4_seconds_on_kill"]=2939, + ["avoid_stun_%_while_channeling_snipe"]=4477, + ["avoid_stun_%_while_channelling"]=4478, + ["avoid_stun_%_while_holding_shield"]=4479, + ["avoid_stun_35%_per_active_herald"]=4476, + ["axe_accuracy_rating"]=1694, + ["axe_accuracy_rating_+%"]=1292, + ["axe_attack_speed_+%"]=1275, + ["axe_critical_strike_chance_+%"]=1324, + ["axe_critical_strike_multiplier_+"]=1342, + ["axe_damage_+%"]=1190, + ["ball_lightning_damage_+%"]=2798, + ["ball_lightning_number_of_additional_projectiles"]=4480, + ["ball_lightning_projectile_speed_+%"]=3468, + ["ball_lightning_radius_+%"]=3401, + ["ballista_attack_speed_+%"]=4481, + ["ballista_critical_damage_+%"]=4482, + ["ballista_critical_hit_chance_+%"]=4483, + ["ballista_damage_+%"]=4484, + ["ballista_hit_damage_immobilisation_multiplier_+%"]=4485, ["banner_adrenaline_duration_+%"]=4487, ["banner_area_of_effect_+%"]=4488, - ["banner_aura_effect_+%"]=3022, + ["banner_aura_effect_+%"]=2973, ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=4489, ["banner_duration_+%"]=4490, ["banner_fortify_duration_+%"]=4491, ["banner_mana_reservation_+%"]=4492, - ["banner_resource_gained_+%"]=4493, - ["banner_resource_maximum_+"]=4494, - ["banner_skills_mana_reservation_efficiency_+%"]=4496, - ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=4495, - ["banner_skills_reserve_no_mana"]=4497, - ["banner_taunt_duration_+%"]=4498, - ["banners_always_have_max_valour"]=4499, + ["banner_resource_maximum_+"]=4493, + ["banner_skills_mana_reservation_efficiency_+%"]=4495, + ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=4494, + ["banner_skills_reserve_no_mana"]=4496, + ["banner_taunt_duration_+%"]=4497, + ["banners_always_have_max_valour"]=4498, + ["banners_gain_X_glory_per_second"]=4499, ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=4500, - ["barrage_attack_speed_+%"]=3491, - ["barrage_damage_+%"]=3300, - ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=2931, - ["barrage_num_of_additional_projectiles"]=3580, + ["barrage_attack_speed_+%"]=3437, + ["barrage_damage_+%"]=3246, + ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=2884, + ["barrage_num_of_additional_projectiles"]=3526, ["basalt_flask_armour_+%_final"]=4501, - ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3420, - ["base_actor_scale_+%"]=1760, - ["base_adaptation_rating"]=1388, - ["base_additional_physical_damage_reduction_%"]=973, - ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4167, - ["base_all_ailment_duration_+%"]=1581, + ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3366, + ["base_actor_scale_+%"]=1737, + ["base_additional_physical_damage_reduction_%"]=971, + ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4128, + ["base_all_ailment_duration_+%"]=1564, ["base_all_ailment_duration_on_self_+%"]=4502, + ["base_all_attributes"]=1098, ["base_all_damage_bypass_energy_shield_%"]=4503, - ["base_all_damage_taken_can_chill"]=2564, + ["base_all_damage_taken_can_chill"]=2528, ["base_armour_%_applies_to_chaos_damage"]=4504, ["base_armour_%_applies_to_cold_damage"]=4505, ["base_armour_%_applies_to_fire_damage"]=4506, ["base_armour_%_applies_to_lightning_damage"]=4507, ["base_armour_applies_to_chaos_damage"]=4508, ["base_armour_applies_to_lightning_damage"]=4509, - ["base_arrow_speed_+%"]=1517, + ["base_arrow_speed_+%"]=1500, ["base_arrows_always_pierce"]=4510, - ["base_attack_block_luck"]=4511, - ["base_attack_damage_%_deflected"]=4512, - ["base_attack_damage_penetrates_chaos_resist_%"]=3208, - ["base_attack_damage_penetrates_cold_resist_%"]=3206, - ["base_attack_damage_penetrates_elemental_resist_%"]=3203, - ["base_attack_damage_penetrates_fire_resist_%"]=3205, - ["base_attack_damage_penetrates_lightning_resist_%"]=3207, - ["base_attack_speed_+%_per_frenzy_charge"]=1752, - ["base_aura_area_of_effect_+%"]=1916, - ["base_avoid_bleed_%"]=3841, - ["base_avoid_chill_%"]=1565, - ["base_avoid_chill_%_while_have_onslaught"]=2713, - ["base_avoid_freeze_%"]=1566, - ["base_avoid_ignite_%"]=1567, - ["base_avoid_poison_%"]=1570, + ["base_attack_critical_strike_chance_permyriad_+_per_1_percent_enemy_missing_life"]=4511, + ["base_attack_damage_penetrates_chaos_resist_%"]=3155, + ["base_attack_damage_penetrates_cold_resist_%"]=3153, + ["base_attack_damage_penetrates_elemental_resist_%"]=3150, + ["base_attack_damage_penetrates_fire_resist_%"]=3152, + ["base_attack_damage_penetrates_lightning_resist_%"]=3154, + ["base_attack_skill_cost_efficiency_+%"]=4512, + ["base_attack_speed_+%_per_frenzy_charge"]=1729, + ["base_aura_area_of_effect_+%"]=1895, + ["base_avoid_bleed_%"]=3783, + ["base_avoid_chill_%"]=1548, + ["base_avoid_chill_%_while_have_onslaught"]=2668, + ["base_avoid_freeze_%"]=1549, + ["base_avoid_ignite_%"]=1550, + ["base_avoid_poison_%"]=1553, ["base_avoid_projectiles_%_chance"]=4513, - ["base_avoid_shock_%"]=1569, - ["base_avoid_stun_%"]=1572, + ["base_avoid_shock_%"]=1552, + ["base_avoid_stun_%"]=1555, ["base_banner_resist_all_elements_%_to_apply"]=4514, ["base_bleed_duration_+%"]=4515, - ["base_bleeding_effect_+%"]=4622, - ["base_block_%_damage_taken"]=4516, - ["base_body_armour_permyriad_to_gain_as_physical_thorns_damage"]=4517, - ["base_bone_golem_granted_buff_effect_+%"]=4518, - ["base_cannot_be_chilled"]=1557, - ["base_cannot_be_chilled_or_frozen"]=1558, - ["base_cannot_be_frozen"]=1559, - ["base_cannot_be_ignited"]=1560, - ["base_cannot_be_shocked"]=1562, - ["base_cannot_be_stunned"]=1882, - ["base_cannot_evade"]=1629, - ["base_cannot_gain_bleeding"]=3840, - ["base_cannot_gain_endurance_charges"]=4519, - ["base_cannot_leech"]=2184, - ["base_cannot_leech_energy_shield"]=4520, - ["base_cannot_leech_life"]=2285, - ["base_cannot_leech_mana"]=2286, - ["base_cast_speed_+%"]=964, - ["base_chance_to_deal_triple_damage_%"]=4521, + ["base_bleeding_effect_+%"]=4650, + ["base_block_%_damage_taken"]=4517, + ["base_block_chance_luck"]=4516, + ["base_body_armour_permyriad_to_gain_as_physical_thorns_damage"]=4518, + ["base_bone_golem_granted_buff_effect_+%"]=4519, + ["base_cannot_be_chilled"]=1540, + ["base_cannot_be_chilled_or_frozen"]=1541, + ["base_cannot_be_frozen"]=1542, + ["base_cannot_be_ignited"]=1543, + ["base_cannot_be_shocked"]=1545, + ["base_cannot_be_stunned"]=1859, + ["base_cannot_evade"]=1608, + ["base_cannot_gain_bleeding"]=3782, + ["base_cannot_gain_endurance_charges"]=4520, + ["base_cannot_leech"]=2153, + ["base_cannot_leech_energy_shield"]=4521, + ["base_cannot_leech_life"]=2253, + ["base_cannot_leech_mana"]=2254, + ["base_cast_speed_+%"]=962, + ["base_chance_to_daze_%"]=4522, + ["base_chance_to_deal_triple_damage_%"]=4523, ["base_chance_to_freeze_%"]=1009, - ["base_chance_to_ignite_%"]=1007, - ["base_chance_to_inflict_bleeding_%"]=4522, - ["base_chance_to_not_consume_corpse_%"]=5131, + ["base_chance_to_inflict_bleeding_%"]=4524, + ["base_chance_to_not_consume_corpse_%"]=5159, ["base_chance_to_pierce_%"]=1021, - ["base_chance_to_poison_on_hit_%"]=2847, - ["base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies"]=4523, + ["base_chance_to_poison_on_hit_%"]=2802, + ["base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies"]=4525, ["base_chance_to_shock_%"]=1011, - ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1661, - ["base_chaos_damage_bypass_energy_shield_%"]=4524, - ["base_chaos_damage_can_electrocute"]=4525, - ["base_chaos_damage_can_ignite"]=4526, - ["base_chaos_damage_does_not_damage_energy_shield_extra_hard"]=2228, - ["base_chaos_damage_resistance_%"]=983, - ["base_chaos_damage_taken_per_minute"]=1662, - ["base_chaos_golem_granted_buff_effect_+%"]=3727, - ["base_charge_duration_+%"]=4527, - ["base_cold_damage_can_poison"]=2565, - ["base_cold_damage_heals"]=2716, - ["base_cold_damage_resistance_%"]=981, - ["base_cold_immunity"]=3729, - ["base_cooldown_speed_+%"]=4528, - ["base_cost_+%"]=1596, - ["base_critical_strike_multiplier_+"]=959, - ["base_curse_duration_+%"]=1504, - ["base_damage_bypass_ward_%"]=4529, - ["base_damage_removed_from_mana_before_life_%"]=2408, - ["base_damage_taken_+%"]=1930, - ["base_damaging_ailment_effect_+%"]=5575, - ["base_darkness"]=4530, - ["base_darkness_refresh_rate_ms"]=4531, - ["base_deal_no_chaos_damage"]=4532, - ["base_deal_no_cold_damage"]=2496, - ["base_deal_no_fire_damage"]=4533, - ["base_deal_no_lightning_damage"]=4534, - ["base_deal_no_physical_damage"]=2494, - ["base_deal_no_thorns_damage"]=4535, - ["base_debuff_slow_magnitude_+%"]=4536, - ["base_elemental_damage_heals"]=2718, - ["base_elemental_hit_damage_bypass_energy_shield_%"]=4537, - ["base_elemental_status_ailment_duration_+%"]=1582, - ["base_enemy_critical_strike_chance_+%_against_self"]=2805, - ["base_energy_shield_gained_on_enemy_death"]=2289, - ["base_energy_shield_leech_rate_+%"]=1867, - ["base_energy_shield_regeneration_rate_per_minute"]=2355, - ["base_energy_shield_regeneration_rate_per_minute_%"]=2356, - ["base_es_cost_+"]=1602, - ["base_evasion_rating"]=892, - ["base_extra_damage_rolls"]=4538, - ["base_fire_damage_can_poison"]=2566, - ["base_fire_damage_heals"]=2715, - ["base_fire_damage_resistance_%"]=980, - ["base_fire_elemental_maximum_life_+%"]=1495, - ["base_fire_golem_granted_buff_effect_+%"]=3724, - ["base_fire_hit_damage_taken_%_as_physical"]=2166, - ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2167, - ["base_fire_immunity"]=1438, - ["base_freezing_enemy_chills_enemies_in_radius"]=6103, - ["base_frenzy_charge_duration_+%"]=1834, - ["base_frozen_effect_on_self_+%"]=4539, - ["base_global_chance_to_knockback_%"]=1705, - ["base_ice_golem_granted_buff_effect_+%"]=3725, - ["base_ignite_effect_+%"]=6620, - ["base_immune_to_chill"]=2593, - ["base_immune_to_cold_ailments"]=4540, - ["base_immune_to_freeze"]=4541, - ["base_immune_to_ignite"]=4542, - ["base_immune_to_shock"]=4543, - ["base_inflict_cold_exposure_on_hit_%_chance"]=4544, - ["base_inflict_fire_exposure_on_hit_%_chance"]=4545, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=4546, - ["base_item_found_quantity_+%"]=1425, - ["base_item_found_rarity_+%"]=940, - ["base_killed_monster_dropped_item_quantity_+%"]=1724, - ["base_killed_monster_dropped_item_rarity_+%"]=1723, - ["base_leech_amount_+%"]=1861, - ["base_leech_is_instant_on_critical"]=2257, - ["base_life_cost_+"]=1603, - ["base_life_cost_+%"]=1597, - ["base_life_cost_+_with_non_channelling_spells_%_maximum_life"]=4547, - ["base_life_flasks_do_not_recover_life"]=4548, - ["base_life_gain_per_target"]=992, - ["base_life_gained_on_enemy_death"]=994, - ["base_life_gained_on_spell_hit"]=1467, - ["base_life_leech_amount_+%"]=1863, - ["base_life_leech_does_not_stop_at_full_life"]=2881, - ["base_life_leech_from_all_spell_damage_permyriad"]=4549, - ["base_life_leech_from_all_thorns_damage_permyriad"]=4550, - ["base_life_leech_from_physical_attack_damage_permyriad"]=990, - ["base_life_leech_is_instant"]=2254, - ["base_life_leech_rate_+%"]=1864, - ["base_life_recharges_like_energy_shield"]=4551, - ["base_life_regeneration_rate_per_minute"]=987, - ["base_life_reservation_+%"]=1919, - ["base_life_reservation_efficiency_+%"]=1918, - ["base_lightning_damage_can_electrocute"]=4552, - ["base_lightning_damage_can_poison"]=2567, - ["base_lightning_damage_heals"]=2717, - ["base_lightning_damage_resistance_%"]=982, - ["base_lightning_golem_granted_buff_effect_+%"]=3726, - ["base_lightning_immunity"]=3730, - ["base_limit_+"]=4553, - ["base_main_hand_damage_+%"]=1190, - ["base_main_hand_maim_on_hit_%"]=4554, - ["base_mana_cost_+"]=1604, - ["base_mana_cost_+_with_channelling_skills"]=8910, - ["base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana"]=4555, - ["base_mana_cost_+_with_non_channelling_skills"]=8912, - ["base_mana_cost_-%"]=1598, - ["base_mana_gained_on_enemy_death"]=999, - ["base_mana_leech_amount_+%"]=1865, - ["base_mana_leech_from_physical_attack_damage_permyriad"]=998, - ["base_mana_leech_is_instant"]=2255, - ["base_mana_leech_rate_+%"]=1866, - ["base_mana_regeneration_rate_per_minute"]=1416, - ["base_mana_reservation_+%"]=1921, - ["base_mana_reservation_efficiency_+%"]=1920, - ["base_max_fortification"]=4556, - ["base_maximum_chaos_damage_resistance_%"]=978, - ["base_maximum_cold_damage_resistance_%"]=976, - ["base_maximum_energy_shield"]=894, - ["base_maximum_energy_shield_per_blue_socket_on_item"]=2432, - ["base_maximum_fire_damage_resistance_%"]=975, - ["base_maximum_fragile_regrowth"]=4030, - ["base_maximum_life"]=896, - ["base_maximum_life_per_red_socket_on_item"]=2426, - ["base_maximum_lightning_damage_on_charge_expiry"]=2275, - ["base_maximum_lightning_damage_resistance_%"]=977, - ["base_maximum_mana"]=898, - ["base_maximum_mana_per_green_socket_on_item"]=2429, - ["base_maximum_spell_block_%"]=1701, - ["base_melee_critical_strike_chance_while_unarmed_%"]=3215, - ["base_minimum_endurance_charges"]=1523, - ["base_minimum_frenzy_charges"]=1528, - ["base_minimum_lightning_damage_on_charge_expiry"]=2275, - ["base_minimum_power_charges"]=1533, - ["base_minion_duration_+%"]=4557, - ["base_movement_velocity_+%"]=853, - ["base_no_energy_shield_recovery"]=2793, - ["base_number_of_arbalists"]=8415, - ["base_number_of_champions_of_light_allowed"]=4558, - ["base_number_of_crossbow_bolts"]=965, - ["base_number_of_essence_spirits_allowed"]=563, - ["base_number_of_golems_allowed"]=3329, - ["base_number_of_herald_scorpions_allowed"]=4559, - ["base_number_of_raging_spirits_allowed"]=1870, - ["base_number_of_relics_allowed"]=4560, - ["base_number_of_remote_mines_allowed"]=1944, - ["base_number_of_sigils_allowed_per_target"]=4561, - ["base_number_of_skeletons_allowed"]=1869, - ["base_number_of_spectres_allowed"]=1868, - ["base_number_of_support_ghosts_allowed"]=4562, - ["base_number_of_totems_allowed"]=1942, - ["base_number_of_traps_allowed"]=1943, - ["base_off_hand_attack_speed_+%"]=1283, - ["base_off_hand_chance_to_blind_on_hit_%"]=4563, - ["base_off_hand_damage_+%"]=1191, - ["base_onlsaught_on_hit_%_chance"]=4564, - ["base_penetrate_elemental_resistances_%"]=3204, - ["base_physical_damage_can_pin"]=4565, - ["base_physical_damage_over_time_taken_+%"]=4566, - ["base_physical_damage_reduction_rating"]=890, - ["base_poison_duration_+%"]=2844, - ["base_poison_effect_+%"]=8560, - ["base_projectile_speed_+%"]=902, - ["base_rage_cost_+%"]=1599, - ["base_rage_regeneration_per_minute"]=4567, - ["base_raven_maximum_life_+%"]=1496, - ["base_reduce_enemy_cold_resistance_%"]=2668, - ["base_reduce_enemy_fire_resistance_%"]=2667, - ["base_reduce_enemy_lightning_resistance_%"]=2669, - ["base_reservation_+%"]=1923, - ["base_reservation_efficiency_+%"]=1922, - ["base_resist_all_elements_%"]=979, + ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1640, + ["base_chaos_damage_bypass_energy_shield_%"]=4526, + ["base_chaos_damage_can_electrocute"]=4527, + ["base_chaos_damage_can_ignite"]=4528, + ["base_chaos_damage_does_not_damage_energy_shield_extra_hard"]=2197, + ["base_chaos_damage_resistance_%"]=981, + ["base_chaos_damage_taken_per_minute"]=1641, + ["base_chaos_golem_granted_buff_effect_+%"]=3669, + ["base_charge_duration_+%"]=4529, + ["base_cold_damage_can_poison"]=2529, + ["base_cold_damage_heals"]=2671, + ["base_cold_damage_resistance_%"]=979, + ["base_cold_immunity"]=3671, + ["base_cooldown_speed_+%"]=4531, + ["base_cooldown_speed_+%_per_10_tribute"]=4530, + ["base_cost_+%"]=1579, + ["base_critical_strike_multiplier_+"]=957, + ["base_curse_duration_+%"]=1487, + ["base_damage_%_deflected"]=4533, + ["base_damage_%_deflected_vs_crit"]=4534, + ["base_damage_bypass_ward_%"]=4532, + ["base_damage_removed_from_mana_before_life_%"]=2376, + ["base_damage_taken_+%"]=1909, + ["base_damage_taken_+%_per_10_tribute"]=4535, + ["base_damaging_ailment_effect_+%"]=5629, + ["base_damaging_ailment_effect_+%_per_10_tribute"]=4536, + ["base_darkness"]=4537, + ["base_darkness_refresh_rate_ms"]=4538, + ["base_deal_no_chaos_damage"]=4539, + ["base_deal_no_cold_damage"]=2461, + ["base_deal_no_fire_damage"]=4540, + ["base_deal_no_lightning_damage"]=4541, + ["base_deal_no_physical_damage"]=2459, + ["base_deal_no_thorns_damage"]=4542, + ["base_debuff_slow_magnitude_+%"]=4543, + ["base_deflect_chance_luck"]=4545, + ["base_deflection_rating_%_of_armour"]=985, + ["base_deflection_rating_%_of_evasion_rating"]=984, + ["base_deflection_rating_%_of_evasion_rating_per_25_tribute"]=4546, + ["base_dexterity_per_25_tribute"]=4547, + ["base_elemental_damage_heals"]=2673, + ["base_elemental_hit_damage_bypass_energy_shield_%"]=4548, + ["base_elemental_status_ailment_duration_+%"]=1565, + ["base_endurance_charge_skip_consume_chance_%"]=4549, + ["base_enemy_critical_strike_chance_+%_against_self"]=2760, + ["base_energy_shield_gained_on_enemy_death"]=2257, + ["base_energy_shield_leech_rate_+%"]=1844, + ["base_energy_shield_regeneration_rate_per_minute"]=2323, + ["base_energy_shield_regeneration_rate_per_minute_%"]=2324, + ["base_es_cost_+"]=1585, + ["base_evasion_rating"]=886, + ["base_extra_damage_rolls"]=4550, + ["base_fire_damage_can_poison"]=2530, + ["base_fire_damage_heals"]=2670, + ["base_fire_damage_resistance_%"]=978, + ["base_fire_elemental_maximum_life_+%"]=1478, + ["base_fire_golem_granted_buff_effect_+%"]=3666, + ["base_fire_hit_damage_taken_%_as_physical"]=2135, + ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2136, + ["base_fire_immunity"]=1421, + ["base_freezing_enemy_chills_enemies_in_radius"]=6195, + ["base_frenzy_charge_duration_+%"]=1811, + ["base_frenzy_charge_skip_consume_chance_%"]=4551, + ["base_frozen_effect_on_self_+%"]=4552, + ["base_global_chance_to_knockback_%"]=1682, + ["base_ice_golem_granted_buff_effect_+%"]=3667, + ["base_ignite_effect_+%"]=1029, + ["base_immune_to_chill"]=2556, + ["base_immune_to_cold_ailments"]=4553, + ["base_immune_to_freeze"]=4554, + ["base_immune_to_ignite"]=4555, + ["base_immune_to_shock"]=4556, + ["base_inflict_cold_exposure_on_hit_%_chance"]=4557, + ["base_inflict_fire_exposure_on_hit_%_chance"]=4558, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=4559, + ["base_intelligence_per_25_tribute"]=4560, + ["base_item_found_quantity_+%"]=1408, + ["base_item_found_rarity_+%"]=937, + ["base_killed_monster_dropped_item_quantity_+%"]=1701, + ["base_killed_monster_dropped_item_rarity_+%"]=1700, + ["base_leech_amount_+%"]=1838, + ["base_leech_is_instant_on_critical"]=2226, + ["base_life_cost_+"]=1586, + ["base_life_cost_+%"]=1580, + ["base_life_cost_+_with_non_channelling_spells_%_maximum_life"]=4562, + ["base_life_cost_efficiency_+%"]=4561, + ["base_life_flasks_do_not_recover_life"]=4563, + ["base_life_gain_per_target"]=993, + ["base_life_gained_on_enemy_death"]=995, + ["base_life_gained_on_spell_hit"]=1450, + ["base_life_leech_amount_+%"]=1840, + ["base_life_leech_does_not_stop_at_full_life"]=2836, + ["base_life_leech_from_all_spell_damage_permyriad"]=4564, + ["base_life_leech_from_all_thorns_damage_permyriad"]=4565, + ["base_life_leech_from_physical_attack_damage_permyriad"]=991, + ["base_life_leech_is_instant"]=2223, + ["base_life_leech_rate_+%"]=1841, + ["base_life_recharges_like_energy_shield"]=4566, + ["base_life_regeneration_rate_per_minute"]=988, + ["base_life_reservation_+%"]=1898, + ["base_life_reservation_efficiency_+%"]=1897, + ["base_lightning_damage_can_electrocute"]=4567, + ["base_lightning_damage_can_poison"]=2531, + ["base_lightning_damage_heals"]=2672, + ["base_lightning_damage_resistance_%"]=980, + ["base_lightning_golem_granted_buff_effect_+%"]=3668, + ["base_lightning_immunity"]=3672, + ["base_limit_+"]=4568, + ["base_main_hand_damage_+%"]=1178, + ["base_main_hand_maim_on_hit_%"]=4569, + ["base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%"]=4570, + ["base_mana_cost_+"]=1587, + ["base_mana_cost_+_with_channelling_skills"]=9178, + ["base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana"]=4576, + ["base_mana_cost_+_with_non_channelling_skills"]=9180, + ["base_mana_cost_-%"]=1581, + ["base_mana_cost_efficiency_+%"]=4571, + ["base_mana_cost_efficiency_+%_of_curse_skills"]=4572, + ["base_mana_cost_efficiency_+%_of_mark_skills"]=4573, + ["base_mana_cost_efficiency_+%_per_10_tribute"]=4574, + ["base_mana_cost_efficiency_+%_while_on_low_mana"]=4575, + ["base_mana_gained_on_enemy_death"]=1000, + ["base_mana_leech_amount_+%"]=1842, + ["base_mana_leech_from_physical_attack_damage_permyriad"]=999, + ["base_mana_leech_is_instant"]=2224, + ["base_mana_leech_rate_+%"]=1843, + ["base_mana_regeneration_rate_per_minute"]=1399, + ["base_mana_reservation_+%"]=1900, + ["base_mana_reservation_efficiency_+%"]=1899, + ["base_max_fortification"]=4577, + ["base_maximum_chaos_damage_resistance_%"]=976, + ["base_maximum_cold_damage_resistance_%"]=974, + ["base_maximum_energy_shield"]=888, + ["base_maximum_energy_shield_per_blue_socket_on_item"]=2398, + ["base_maximum_fire_damage_resistance_%"]=973, + ["base_maximum_fire_damage_resistance_%_while_ignited"]=4578, + ["base_maximum_fragile_regrowth"]=3971, + ["base_maximum_life"]=890, + ["base_maximum_life_per_red_socket_on_item"]=2392, + ["base_maximum_lightning_damage_on_charge_expiry"]=2243, + ["base_maximum_lightning_damage_resistance_%"]=975, + ["base_maximum_mana"]=892, + ["base_maximum_mana_per_green_socket_on_item"]=2395, + ["base_melee_critical_strike_chance_while_unarmed_%"]=3162, + ["base_minimum_endurance_charges"]=1506, + ["base_minimum_frenzy_charges"]=1511, + ["base_minimum_lightning_damage_on_charge_expiry"]=2243, + ["base_minimum_power_charges"]=1516, + ["base_minion_duration_+%"]=4579, + ["base_movement_velocity_+%"]=849, + ["base_no_energy_shield_recovery"]=2748, + ["base_number_of_arbalists"]=8643, + ["base_number_of_champions_of_light_allowed"]=4580, + ["base_number_of_crossbow_bolts"]=963, + ["base_number_of_essence_spirits_allowed"]=554, + ["base_number_of_golems_allowed"]=3275, + ["base_number_of_herald_scorpions_allowed"]=4581, + ["base_number_of_raging_spirits_allowed"]=1847, + ["base_number_of_relics_allowed"]=4582, + ["base_number_of_remote_mines_allowed"]=1923, + ["base_number_of_sigils_allowed_per_target"]=4583, + ["base_number_of_skeletons_allowed"]=1846, + ["base_number_of_spectres_allowed"]=1845, + ["base_number_of_support_ghosts_allowed"]=4584, + ["base_number_of_totems_allowed"]=1921, + ["base_number_of_traps_allowed"]=1922, + ["base_off_hand_attack_speed_+%"]=1271, + ["base_off_hand_chance_to_blind_on_hit_%"]=4585, + ["base_off_hand_damage_+%"]=1179, + ["base_onlsaught_on_hit_%_chance"]=4586, + ["base_penetrate_elemental_resistances_%"]=3151, + ["base_physical_damage_can_pin"]=4587, + ["base_physical_damage_over_time_taken_+%"]=4588, + ["base_physical_damage_reduction_rating"]=884, + ["base_poison_duration_+%"]=2799, + ["base_poison_effect_+%"]=8804, + ["base_power_charge_skip_consume_chance_%"]=4589, + ["base_projectile_speed_+%"]=896, + ["base_rage_cost_+%"]=1582, + ["base_rage_regeneration_per_minute"]=4590, + ["base_raven_maximum_life_+%"]=1479, + ["base_reduce_enemy_cold_resistance_%"]=2627, + ["base_reduce_enemy_fire_resistance_%"]=2626, + ["base_reduce_enemy_lightning_resistance_%"]=2628, + ["base_reservation_+%"]=1902, + ["base_reservation_efficiency_+%"]=1901, + ["base_resist_all_elements_%"]=977, ["base_self_chill_duration_-%"]=1017, - ["base_self_critical_strike_multiplier_-%"]=972, + ["base_self_critical_strike_multiplier_-%"]=970, ["base_self_freeze_duration_-%"]=1018, ["base_self_ignite_duration_-%"]=1016, ["base_self_shock_duration_-%"]=1019, - ["base_should_have_arcane_surge_from_stat"]=4568, - ["base_should_have_onslaught_from_stat"]=3239, - ["base_skill_area_of_effect_+%"]=1595, - ["base_skill_cost_life_instead_of_mana_%"]=4569, - ["base_skill_detonation_time"]=4570, - ["base_skill_gain_life_cost_%_of_mana_cost"]=4571, - ["base_slow_potency_+%"]=4572, - ["base_spectre_maximum_life_+%"]=1493, - ["base_spell_block_%"]=889, - ["base_spell_block_luck"]=1093, - ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4573, - ["base_spell_critical_strike_chance"]=1322, - ["base_spell_critical_strike_chance_override_permyriad"]=4574, - ["base_spell_critical_strike_multiplier_+"]=961, - ["base_spell_damage_%_suppressed"]=1079, - ["base_spell_projectile_block_%"]=4575, - ["base_spell_suppression_chance_%"]=984, - ["base_spell_suppression_chance_150%_of_value"]=1080, - ["base_spirit"]=900, - ["base_spirit_from_equipment"]=901, - ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2676, - ["base_stone_golem_granted_buff_effect_+%"]=3723, - ["base_stun_duration_+%"]=1005, + ["base_should_have_arcane_surge_from_stat"]=4591, + ["base_should_have_onslaught_from_stat"]=3185, + ["base_skill_area_of_effect_+%"]=1578, + ["base_skill_cost_efficiency_+%"]=4592, + ["base_skill_cost_life_instead_of_mana_%"]=4593, + ["base_skill_detonation_time"]=4594, + ["base_skill_gain_life_cost_%_of_mana_cost"]=4595, + ["base_slow_potency_+%"]=4596, + ["base_spectre_maximum_life_+%"]=1476, + ["base_spell_cooldown_speed_+%"]=4597, + ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4598, + ["base_spell_critical_strike_chance"]=1310, + ["base_spell_critical_strike_chance_override_permyriad"]=4599, + ["base_spell_critical_strike_multiplier_+"]=959, + ["base_spell_projectile_block_%"]=4600, + ["base_spirit"]=894, + ["base_spirit_from_equipment"]=895, + ["base_spirit_reservation_efficiency_+%"]=4601, + ["base_spirit_reservation_efficiency_+%_per_20_tribute"]=4602, + ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2631, + ["base_stone_golem_granted_buff_effect_+%"]=3665, + ["base_strength_per_25_tribute"]=4603, + ["base_stun_duration_+%"]=1006, ["base_stun_recovery_+%"]=1013, - ["base_stun_threshold_reduction_+%"]=1002, - ["base_thorns_critical_strike_chance"]=4576, - ["base_thorns_critical_strike_multiplier_+"]=4577, - ["base_total_number_of_sigils_allowed"]=4578, - ["base_unaffected_by_poison"]=4579, - ["base_unholy_might_granted_magnitude_+%"]=4580, - ["base_ward"]=1383, - ["base_weapon_trap_rotation_speed_+%"]=4581, - ["base_weapon_trap_total_rotation_%"]=4582, - ["base_zombie_maximum_life_+%"]=1494, - ["battlemages_cry_buff_effect_+%"]=4583, - ["battlemages_cry_exerts_x_additional_attacks"]=4584, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4585, - ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4586, - ["bear_trap_cooldown_speed_+%"]=3509, - ["bear_trap_damage_+%"]=3345, - ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4587, - ["bear_trap_movement_speed_+%_final"]=4588, - ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4589, - ["berserk_buff_effect_+%"]=4591, - ["berserk_rage_loss_+%"]=4592, - ["berserker_damage_+%_final"]=3682, - ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4593, - ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4594, - ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4595, - ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4596, - ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4597, - ["blackhole_damage_taken_+%"]=4598, - ["blackhole_pulse_frequency_+%"]=4599, - ["blackstar_moonlight_cold_damage_taken_+%_final"]=4600, - ["blackstar_moonlight_fire_damage_taken_+%_final"]=4601, - ["blackstar_sunlight_cold_damage_taken_+%_final"]=4602, - ["blackstar_sunlight_fire_damage_taken_+%_final"]=4603, - ["blade_blase_damage_+%"]=4604, - ["blade_blast_skill_area_of_effect_+%"]=4605, - ["blade_blast_trigger_detonation_area_of_effect_+%"]=4606, - ["blade_trap_damage_+%"]=4607, - ["blade_trap_skill_area_of_effect_+%"]=4608, - ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4609, - ["blade_vortex_blade_deal_no_non_physical_damage"]=4610, - ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4611, - ["blade_vortex_damage_+%"]=3368, - ["blade_vortex_duration_+%"]=3556, - ["blade_vortex_radius_+%"]=3472, - ["bladefall_critical_strike_chance_+%"]=3575, - ["bladefall_damage_+%"]=3369, - ["bladefall_number_of_volleys"]=4612, - ["bladefall_radius_+%"]=3473, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4613, - ["bladestorm_damage_+%"]=4614, - ["bladestorm_maximum_number_of_storms_allowed"]=4615, - ["bladestorm_sandstorm_movement_speed_+%"]=4616, - ["blast_rain_%_chance_for_additional_blast"]=3735, - ["blast_rain_damage_+%"]=3365, - ["blast_rain_number_of_blasts"]=3621, - ["blast_rain_radius_+%"]=3469, - ["blast_rain_single_additional_projectile"]=3622, - ["blazing_salvo_damage_+%"]=4617, - ["blazing_salvo_number_of_additional_projectiles"]=4618, - ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4619, - ["bleed_chance_+%"]=4620, - ["bleed_duration_per_12_intelligence_+%"]=3431, - ["bleed_on_bow_attack_chance_%"]=2207, - ["bleed_on_crit_%"]=4621, - ["bleed_on_crit_%_with_attacks"]=2204, - ["bleed_on_hit_with_attacks_%"]=2208, - ["bleed_on_melee_attack_chance_%"]=2206, - ["bleed_on_melee_crit_chance_%"]=2205, - ["bleed_on_melee_critical_strike"]=3897, - ["bleed_on_stun"]=2203, - ["bleeding_damage_on_self_taken_as_fire_instead"]=2172, - ["bleeding_effect_+%_per_endurance_charge"]=4623, - ["bleeding_effect_+%_per_frenzy_charge"]=4624, - ["bleeding_effect_+%_per_impale_on_enemy"]=4625, - ["bleeding_effect_+%_per_rage_if_equipped_axe"]=4626, - ["bleeding_effect_+%_vs_poisoned_enemies"]=4627, - ["bleeding_effect_+%_when_consuming_incision"]=4628, - ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3128, - ["bleeding_monsters_movement_velocity_+%"]=2654, - ["bleeding_no_extra_damage_while_target_is_moving"]=4629, - ["bleeding_on_self_expire_speed_+%_while_moving"]=4630, - ["bleeding_reflected_to_self"]=4631, - ["bleeding_stacks_up_to_x_times"]=4632, - ["blight_arc_tower_additional_chains"]=4633, - ["blight_arc_tower_additional_repeats"]=4634, - ["blight_arc_tower_chance_to_sap_%"]=4635, - ["blight_arc_tower_damage_+%"]=4636, - ["blight_arc_tower_range_+%"]=4637, - ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4638, - ["blight_cast_speed_+%"]=4639, - ["blight_chilling_tower_chill_effect_+%"]=4640, - ["blight_chilling_tower_damage_+%"]=4641, - ["blight_chilling_tower_duration_+%"]=4642, - ["blight_chilling_tower_range_+%"]=4643, - ["blight_damage_+%"]=3378, - ["blight_duration_+%"]=3558, - ["blight_empowering_tower_buff_effect_+%"]=4644, - ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4647, - ["blight_empowering_tower_grant_cast_speed_+%"]=4645, - ["blight_empowering_tower_grant_damage_+%"]=4646, - ["blight_empowering_tower_range_+%"]=4648, - ["blight_fireball_tower_additional_projectiles_+"]=4649, - ["blight_fireball_tower_cast_speed_+%"]=4650, - ["blight_fireball_tower_damage_+%"]=4651, - ["blight_fireball_tower_projectiles_nova"]=4652, - ["blight_fireball_tower_range_+%"]=4653, - ["blight_flamethrower_tower_cast_speed_+%"]=4654, - ["blight_flamethrower_tower_chance_to_scorch_%"]=4655, - ["blight_flamethrower_tower_damage_+%"]=4656, - ["blight_flamethrower_tower_full_damage_fire_enemies"]=4657, - ["blight_flamethrower_tower_range_+%"]=4658, - ["blight_freezebolt_tower_chance_to_brittle_%"]=4659, - ["blight_freezebolt_tower_damage_+%"]=4660, - ["blight_freezebolt_tower_full_damage_cold_enemies"]=4661, - ["blight_freezebolt_tower_projectiles_+"]=4662, - ["blight_freezebolt_tower_range_+%"]=4663, - ["blight_glacialcage_tower_area_of_effect_+%"]=4664, - ["blight_glacialcage_tower_cooldown_recovery_+%"]=4665, - ["blight_glacialcage_tower_duration_+%"]=4666, - ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4667, - ["blight_glacialcage_tower_range_+%"]=4668, - ["blight_hinder_enemy_chaos_damage_taken_+%"]=4669, - ["blight_imbuing_tower_buff_effect_+%"]=4670, - ["blight_imbuing_tower_grant_critical_strike_+%"]=4671, - ["blight_imbuing_tower_grant_damage_+%"]=4672, - ["blight_imbuing_tower_grants_onslaught"]=4673, - ["blight_imbuing_tower_range_+%"]=4674, - ["blight_lightningstorm_tower_area_of_effect_+%"]=4675, - ["blight_lightningstorm_tower_damage_+%"]=4676, - ["blight_lightningstorm_tower_delay_+%"]=4677, - ["blight_lightningstorm_tower_range_+%"]=4678, - ["blight_lightningstorm_tower_storms_on_enemies"]=4679, - ["blight_meteor_tower_additional_meteor_+"]=4680, - ["blight_meteor_tower_always_stun"]=4681, - ["blight_meteor_tower_creates_burning_ground_ms"]=4682, - ["blight_meteor_tower_damage_+%"]=4683, - ["blight_meteor_tower_range_+%"]=4684, - ["blight_radius_+%"]=3478, - ["blight_scout_tower_additional_minions_+"]=4685, - ["blight_scout_tower_minion_damage_+%"]=4686, - ["blight_scout_tower_minion_life_+%"]=4687, - ["blight_scout_tower_minion_movement_speed_+%"]=4688, - ["blight_scout_tower_minions_inflict_malediction"]=4689, - ["blight_scout_tower_range_+%"]=4690, - ["blight_secondary_skill_effect_duration_+%"]=4691, - ["blight_seismic_tower_additional_cascades_+"]=4692, - ["blight_seismic_tower_cascade_range_+%"]=4693, - ["blight_seismic_tower_damage_+%"]=4694, - ["blight_seismic_tower_range_+%"]=4695, - ["blight_seismic_tower_stun_duration_+%"]=4696, - ["blight_sentinel_tower_minion_damage_+%"]=4697, - ["blight_sentinel_tower_minion_life_+%"]=4698, - ["blight_sentinel_tower_minion_movement_speed_+%"]=4699, - ["blight_sentinel_tower_range_+%"]=4700, - ["blight_shocking_tower_damage_+%"]=4701, - ["blight_shocking_tower_range_+%"]=4702, - ["blight_shocknova_tower_full_damage_lightning_enemies"]=4703, - ["blight_shocknova_tower_shock_additional_repeats"]=4704, - ["blight_shocknova_tower_shock_effect_+%"]=4705, - ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=4706, - ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=4707, - ["blight_smothering_tower_buff_effect_+%"]=4708, - ["blight_smothering_tower_freeze_shock_ignite_%"]=4709, - ["blight_smothering_tower_grant_damage_+%"]=4710, - ["blight_smothering_tower_grant_movement_speed_+%"]=4711, - ["blight_smothering_tower_range_+%"]=4712, - ["blight_stonegaze_tower_cooldown_recovery_+%"]=4713, - ["blight_stonegaze_tower_duration_+%"]=4714, - ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=4715, - ["blight_stonegaze_tower_petrify_tick_speed_+%"]=4716, - ["blight_stonegaze_tower_range_+%"]=4717, - ["blight_summoning_tower_minion_damage_+%"]=4718, - ["blight_summoning_tower_minion_life_+%"]=4719, - ["blight_summoning_tower_minion_movement_speed_+%"]=4720, - ["blight_summoning_tower_minions_summoned_+"]=4721, - ["blight_summoning_tower_range_+%"]=4722, - ["blight_temporal_tower_buff_effect_+%"]=4723, - ["blight_temporal_tower_grant_you_action_speed_-%"]=4724, - ["blight_temporal_tower_grants_stun_immunity"]=4725, - ["blight_temporal_tower_range_+%"]=4726, - ["blight_temporal_tower_tick_speed_+%"]=4727, - ["blight_tertiary_skill_effect_duration"]=4728, - ["blight_tower_arc_damage_+%"]=4729, - ["blight_tower_chilling_cost_+%"]=4730, - ["blight_tower_damage_per_tower_type_+%"]=4731, - ["blight_tower_fireball_additional_projectile"]=4732, - ["blighted_map_chest_reward_lucky_count"]=4733, - ["blighted_map_tower_damage_+%_final"]=4734, - ["blind_chance_+%"]=4735, - ["blind_chilled_enemies_on_hit_%"]=4736, - ["blind_does_not_affect_chance_to_hit"]=4737, - ["blind_does_not_affect_light_radius"]=4738, - ["blind_duration_+%"]=3091, - ["blind_effect_+%"]=4739, - ["blind_enemies_when_hit_%_chance"]=4740, - ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=4741, - ["blind_enemies_when_they_stun_you"]=4742, - ["blind_nearby_enemies_when_ignited_%"]=2722, - ["blind_on_poison_inflicted"]=4743, - ["blind_reflected_to_self"]=4744, - ["blink_and_mirror_arrow_cooldown_speed_+%"]=4745, - ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3498, - ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3358, - ["blink_arrow_cooldown_speed_+%"]=3514, - ["block_%_damage_taken_from_elemental"]=4752, - ["block_%_if_blocked_an_attack_recently"]=4753, - ["block_%_while_affected_by_determination"]=4754, - ["block_and_stun_+%_recovery_per_fortification"]=4746, - ["block_causes_monster_flee_%"]=2648, - ["block_chance_%_per_50_strength"]=1087, - ["block_chance_%_vs_cursed_enemies"]=4747, - ["block_chance_%_vs_taunted_enemies"]=3813, - ["block_chance_%_while_holding_shield"]=1096, - ["block_chance_+%"]=1098, - ["block_chance_+%_against_projectiles"]=4748, - ["block_chance_+%_if_blocked_with_active_block_recently"]=4749, - ["block_chance_from_equipped_shield_is_%"]=4750, - ["block_chance_is_lucky"]=4751, - ["block_chance_on_damage_taken_%"]=2887, - ["block_recovery_+%"]=1099, - ["block_spells_chance_%_while_holding_shield"]=4755, - ["block_while_dual_wielding_%"]=1094, - ["block_while_dual_wielding_claws_%"]=1095, - ["blood_footprints_from_item"]=9653, - ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3732, - ["blood_rage_grants_additional_attack_speed_+%"]=3731, - ["blood_sand_armour_mana_reservation_+%"]=4756, - ["blood_sand_mana_reservation_efficiency_+%"]=4758, - ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=4757, - ["blood_sand_stance_buff_effect_+%"]=4759, - ["blood_spears_area_of_effect_+%"]=4760, - ["blood_spears_base_number_of_spears"]=4761, - ["blood_spears_damage_+%"]=4762, - ["bloodlust_zone_%_of_max_health"]=4763, - ["bloodreap_damage_+%"]=4764, - ["bloodreap_skill_area_of_effect_+%"]=4765, - ["body_armour_+%"]=4766, - ["body_armour_evasion_rating_+%"]=4767, - ["body_armour_grants_base_armour_applies_to_chaos_damage"]=4768, - ["body_armour_grants_unaffected_by_ignite"]=4769, - ["body_armour_grants_x_base_cold_damage_resistance_%"]=4770, - ["body_armour_grants_x_base_fire_damage_resistance_%"]=4771, - ["body_armour_grants_x_base_lightning_damage_resistance_%"]=4772, - ["body_armour_grants_x_base_maximum_fire_damage_resistance_%"]=4773, - ["body_armour_grants_x_base_self_critical_strike_multiplier_-%"]=4774, - ["body_armour_grants_x_life_regeneration_rate_per_minute_%"]=4775, - ["body_armour_grants_x_maximum_life_+%"]=4776, - ["body_armour_grants_x_physical_damage_taken_%_as_fire"]=4777, - ["body_armour_grants_x_strength_+%"]=4778, - ["body_armour_grants_x_stun_threshold_+%"]=4779, - ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=4780, - ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=4781, - ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=4782, - ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=4783, - ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=4784, - ["body_armour_implicit_gain_power_charge_every_x_ms"]=4785, - ["bone_golem_damage_+%"]=4786, - ["bone_golem_elemental_resistances_%"]=4787, - ["bone_lance_cast_speed_+%"]=4788, - ["bone_lance_damage_+%"]=4789, - ["bone_offering_block_chance_+%"]=3747, - ["bone_offering_duration_+%"]=3532, - ["bone_offering_effect_+%"]=1104, - ["boneshatter_chance_to_gain_+1_trauma"]=4790, - ["boneshatter_damage_+%"]=4791, - ["boneshatter_stun_duration_+%"]=4792, - ["boots_implicit_accuracy_rating_+%_final"]=4793, - ["boss_maximum_life_+%_final"]=4794, - ["bow_accuracy_rating"]=1715, - ["bow_accuracy_rating_+%"]=1309, - ["bow_attack_speed_+%"]=1292, - ["bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount"]=5305, - ["bow_attacks_have_culling_strike"]=4795, - ["bow_critical_strike_chance_+%"]=1329, - ["bow_critical_strike_multiplier_+"]=1355, - ["bow_damage_+%"]=1222, - ["bow_elemental_damage_+%"]=1226, - ["bow_enemy_block_-%"]=1617, - ["bow_physical_damage_+%_while_holding_shield"]=1699, - ["bow_skill_gem_level_+"]=4796, - ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2641, - ["bow_stun_duration_+%"]=1585, - ["bow_stun_threshold_reduction_+%"]=1375, - ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=4797, - ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=4798, - ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=4799, - ["brands_reattach_on_activation"]=4800, - ["breach_flame_effects_doubled"]=4801, - ["breachstone_commanders_%_drop_additional_fragments"]=4802, - ["breachstone_commanders_%_drop_additional_maps"]=4803, - ["breachstone_commanders_%_drop_additional_scarabs"]=4804, - ["breachstone_commanders_%_drop_additional_unique_items"]=4805, - ["breachstone_commanders_drop_additional_catalysts"]=4806, - ["breachstone_commanders_drop_additional_currency_items"]=4807, - ["breachstone_commanders_drop_additional_delirium_items"]=4808, - ["breachstone_commanders_drop_additional_divination_cards"]=4809, - ["breachstone_commanders_drop_additional_enchanted_items"]=4810, - ["breachstone_commanders_drop_additional_essences"]=4811, - ["breachstone_commanders_drop_additional_fossils"]=4812, - ["breachstone_commanders_drop_additional_gem_items"]=4813, - ["breachstone_commanders_drop_additional_harbinger_shards"]=4814, - ["breachstone_commanders_drop_additional_incubators"]=4815, - ["breachstone_commanders_drop_additional_legion_splinters"]=4816, - ["breachstone_commanders_drop_additional_oils"]=4817, - ["broken_armour_debuff_effect_+%"]=4818, - ["buff_affects_party"]=1508, - ["buff_auras_dont_affect_allies"]=2703, - ["buff_duration_+%"]=1503, - ["buff_effect_+%_on_low_energy_shield"]=4819, - ["buff_effect_on_self_+%"]=1851, - ["buff_party_effect_radius_+%"]=1509, - ["buff_time_passed_+%"]=4821, - ["buff_time_passed_+%_only_buff_category"]=4820, - ["buildup_jade_every_x_ms"]=4822, - ["burn_damage_+%"]=1592, - ["burning_and_explosive_arrow_shatter_on_killing_blow"]=4823, - ["burning_arrow_damage_+%"]=3267, - ["burning_arrow_debuff_effect_+%"]=4824, - ["burning_arrow_ignite_chance_%"]=3587, - ["burning_arrow_physical_damage_%_to_gain_as_fire_damage"]=3588, - ["burning_damage_+%_if_ignited_an_enemy_recently"]=3940, - ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=4825, - ["burning_damage_taken_+%"]=2266, - ["can_apply_additional_chill"]=4826, - ["can_apply_additional_shock"]=4827, - ["can_block_all_hits"]=4828, - ["can_block_all_hits_while_shield_is_lowered"]=4829, - ["can_block_from_all_directions"]=4830, - ["can_catch_corrupted_fish"]=2556, - ["can_catch_exotic_fish"]=2555, - ["can_catch_scourged_fish"]=4831, - ["can_evade_all_hits_if_you_havent_been_hit_recently"]=4832, - ["can_have_2_companions"]=4833, - ["can_only_have_one_ancestor_totem_buff"]=4834, - ["can_place_multiple_banners"]=4835, - ["can_use_one_hand_mace_skills_while_unarmed"]=4836, - ["can_use_quarterstaff_skills_while_unarmed"]=4837, - ["can_wield_2h_axe_sword_mace_in_one_hand"]=4838, - ["cannot_adapt_to_cold"]=4839, - ["cannot_adapt_to_fire"]=4840, - ["cannot_adapt_to_lightning"]=4841, - ["cannot_be_affected_by_flasks"]=3386, - ["cannot_be_blinded"]=2662, - ["cannot_be_blinded_while_affected_by_precision"]=4842, - ["cannot_be_blinded_while_on_full_life"]=4843, - ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=4844, - ["cannot_be_chilled_or_frozen_while_moving"]=4845, - ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=4846, - ["cannot_be_chilled_while_burning"]=4847, - ["cannot_be_crit_if_you_have_been_stunned_recently"]=4848, - ["cannot_be_cursed_with_silence"]=2770, - ["cannot_be_damaged"]=1423, - ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=4849, - ["cannot_be_frozen_if_you_have_been_frozen_recently"]=4850, - ["cannot_be_frozen_with_dex_higher_than_int"]=4851, - ["cannot_be_ignited_if_you_have_been_ignited_recently"]=4852, - ["cannot_be_ignited_while_at_maximum_endurance_charges"]=4853, - ["cannot_be_ignited_while_flame_golem_summoned"]=4854, - ["cannot_be_ignited_with_strength_higher_than_dex"]=4855, - ["cannot_be_inflicted_by_corrupted_blood"]=4856, - ["cannot_be_killed_by_elemental_reflect"]=2384, - ["cannot_be_knocked_back"]=1377, - ["cannot_be_light_stunned"]=4857, - ["cannot_be_poisoned"]=3029, - ["cannot_be_poisoned_if_x_poisons_on_you"]=4858, - ["cannot_be_poisoned_while_bleeding"]=4859, - ["cannot_be_shocked_if_you_have_been_shocked_recently"]=4860, - ["cannot_be_shocked_or_ignited_while_moving"]=4861, - ["cannot_be_shocked_while_at_maximum_endurance_charges"]=3804, - ["cannot_be_shocked_while_at_maximum_power_charges"]=4862, - ["cannot_be_shocked_while_frozen"]=2597, - ["cannot_be_shocked_while_lightning_golem_summoned"]=4863, - ["cannot_be_shocked_with_int_higher_than_strength"]=4864, - ["cannot_be_stunned"]=1881, - ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=3968, - ["cannot_be_stunned_by_blocked_hits"]=4865, - ["cannot_be_stunned_by_hits_of_only_physical_damage"]=4866, - ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=3967, - ["cannot_be_stunned_by_suppressed_spell_damage"]=4867, - ["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=4868, - ["cannot_be_stunned_if_have_not_been_hit_recently"]=4869, - ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=3978, - ["cannot_be_stunned_if_you_have_been_stunned_recently"]=4870, - ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=4871, - ["cannot_be_stunned_if_you_have_ghost_dance"]=4872, - ["cannot_be_stunned_when_on_low_life"]=1883, - ["cannot_be_stunned_while_at_max_endurance_charges"]=3679, - ["cannot_be_stunned_while_bleeding"]=4873, - ["cannot_be_stunned_while_fortified"]=4874, - ["cannot_be_stunned_while_leeching"]=2882, - ["cannot_be_stunned_while_using_chaos_skill"]=4875, - ["cannot_be_stunned_with_25_rage"]=8670, - ["cannot_block_attacks"]=1948, - ["cannot_block_spells"]=4876, - ["cannot_block_while_no_energy_shield"]=2438, - ["cannot_cast_curses"]=2391, - ["cannot_cast_spells"]=4877, - ["cannot_cause_bleeding"]=2208, - ["cannot_consume_power_frenzy_endurance_charges"]=4878, - ["cannot_crit_non_shocked_enemies"]=3762, - ["cannot_critical_strike_with_attacks"]=4879, - ["cannot_fish_from_water"]=4880, - ["cannot_freeze_shock_ignite_on_critical"]=2385, - ["cannot_gain_charges"]=4881, - ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=4882, - ["cannot_gain_endurance_charges_while_have_onslaught"]=2458, - ["cannot_gain_power_charges"]=2698, - ["cannot_gain_rage_during_soul_gain_prevention"]=4883, - ["cannot_gain_spirit_from_equipment"]=4884, - ["cannot_have_current_energy_shield"]=2792, - ["cannot_have_energy_shield_leeched_from"]=4885, - ["cannot_have_life_leeched_from"]=2162, - ["cannot_have_mana_leeched_from"]=2163, - ["cannot_have_more_than_1_damaging_ailment"]=4886, - ["cannot_have_more_than_1_non_damaging_ailment"]=4887, - ["cannot_immobilise_enemies"]=4888, - ["cannot_increase_quantity_of_dropped_items"]=2268, - ["cannot_increase_rarity_of_dropped_items"]=2267, - ["cannot_inflict_elemental_ailments"]=1583, - ["cannot_knockback"]=2694, - ["cannot_leech_life_from_critical_strikes"]=3895, - ["cannot_leech_or_regenerate_mana"]=2287, - ["cannot_leech_when_on_low_life"]=2288, - ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=3979, - ["cannot_penetrate_or_ignore_elemental_resistances"]=4889, - ["cannot_pierce"]=4890, - ["cannot_pin"]=4891, - ["cannot_receive_elemental_ailments_from_cursed_enemies"]=4892, - ["cannot_recharge_energy_shield"]=4893, - ["cannot_recover_above_low_life_except_flasks"]=4894, - ["cannot_recover_life_or_energy_shield_above_%"]=4895, - ["cannot_recover_mana_except_regeneration"]=4896, - ["cannot_regenerate_energy_shield"]=4897, - ["cannot_resist_cold_damage"]=1892, - ["cannot_stun"]=1576, - ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4047, - ["cannot_take_reflected_elemental_damage"]=4898, - ["cannot_take_reflected_physical_damage"]=4899, - ["cannot_taunt_enemies"]=4900, - ["cannot_use_flask_in_fifth_slot"]=4901, - ["cannot_use_non_normal_body_armour"]=4902, - ["cannot_use_warcries"]=4903, - ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=4904, - ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=4905, - ["cast_blink_arrow_on_attack_with_mirror_arrow"]=4906, - ["cast_body_swap_on_detonate_dead_cast"]=4907, - ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=4908, - ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=4909, - ["cast_hydrosphere_while_channeling_winter_orb"]=4910, - ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=4911, - ["cast_linked_spells_on_shocked_enemy_kill_%"]=564, - ["cast_mirror_arrow_on_attack_with_blink_arrow"]=4912, - ["cast_socketed_minion_skills_on_bow_kill_%"]=565, - ["cast_socketed_spells_on_X_mana_spent"]=566, - ["cast_socketed_spells_on_mana_spent_%_chance"]=566, - ["cast_speed_+%_during_flask_effect"]=4916, - ["cast_speed_+%_for_4_seconds_on_attack"]=3180, - ["cast_speed_+%_if_enemy_killed_recently"]=4917, - ["cast_speed_+%_if_have_crit_recently"]=4918, - ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=4919, - ["cast_speed_+%_per_corpse_consumed_recently"]=4920, - ["cast_speed_+%_per_frenzy_charge"]=1711, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=4913, - ["cast_speed_+%_per_power_charge"]=1317, - ["cast_speed_+%_when_on_full_life"]=1710, - ["cast_speed_+%_when_on_low_life"]=1709, - ["cast_speed_+%_while_affected_by_zealotry"]=4921, - ["cast_speed_+%_while_chilled"]=4922, - ["cast_speed_+%_while_holding_bow"]=1316, - ["cast_speed_+%_while_holding_shield"]=1314, - ["cast_speed_+%_while_holding_staff"]=1315, - ["cast_speed_+%_while_ignited"]=2631, - ["cast_speed_for_brand_skills_+%"]=4914, - ["cast_speed_for_chaos_skills_+%"]=1261, - ["cast_speed_for_cold_skills_+%"]=1250, - ["cast_speed_for_elemental_skills_+%"]=4915, - ["cast_speed_for_fire_skills_+%"]=1242, - ["cast_speed_for_lightning_skills_+%"]=1255, - ["cast_speed_while_dual_wielding_+%"]=1313, - ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=4923, - ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=4924, - ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=4925, - ["cat_aspect_reserves_no_mana"]=4926, - ["cats_stealth_duration_ms_+"]=4927, - ["cause_maim_on_critical_strike_attack"]=3701, - ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=4928, - ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=4929, - ["caustic_arrow_damage_+%"]=3327, - ["caustic_arrow_damage_over_time_+%"]=4930, - ["caustic_arrow_duration_+%"]=3566, - ["caustic_arrow_hit_damage_+%"]=4931, - ["caustic_arrow_radius_+%"]=3463, - ["caustic_arrow_withered_base_duration_ms"]=3328, - ["caustic_arrow_withered_on_hit_%"]=3328, - ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3094, - ["celestial_footprints_from_item"]=9654, - ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=4932, - ["chain_strike_cone_radius_+_per_12_rage"]=4933, - ["chain_strike_cone_radius_+_per_x_rage"]=4934, - ["chain_strike_damage_+%"]=4935, - ["chain_strike_gain_rage_on_hit_%_chance"]=4936, - ["chaining_range_+%"]=4937, - ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=4938, - ["chance_%_for_other_flasks_to_gain_charge_on_charge_gain"]=4939, - ["chance_%_to_create_shocking_ground_on_shock"]=4940, - ["chance_%_to_double_effect_of_removing_frenzy_charges"]=4941, - ["chance_%_to_drop_additional_awakened_sextant"]=4942, - ["chance_%_to_drop_additional_blessed_orb"]=4943, - ["chance_%_to_drop_additional_cartographers_chisel"]=4944, - ["chance_%_to_drop_additional_chaos_orb"]=4945, - ["chance_%_to_drop_additional_chromatic_orb"]=4946, - ["chance_%_to_drop_additional_cleansing_currency"]=4978, - ["chance_%_to_drop_additional_cleansing_influenced_item"]=4979, - ["chance_%_to_drop_additional_currency"]=4980, - ["chance_%_to_drop_additional_divination_cards"]=4981, - ["chance_%_to_drop_additional_divination_cards_corrupted"]=4982, - ["chance_%_to_drop_additional_divination_cards_currency"]=4983, - ["chance_%_to_drop_additional_divination_cards_currency_basic"]=4984, - ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=4985, - ["chance_%_to_drop_additional_divination_cards_currency_league"]=4986, - ["chance_%_to_drop_additional_divination_cards_gems"]=4987, - ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=4988, - ["chance_%_to_drop_additional_divination_cards_gems_quality"]=4989, - ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=4990, - ["chance_%_to_drop_additional_divination_cards_map"]=4991, - ["chance_%_to_drop_additional_divination_cards_map_unique"]=4992, - ["chance_%_to_drop_additional_divination_cards_unique"]=4993, - ["chance_%_to_drop_additional_divination_cards_unique_armour"]=4994, - ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=4995, - ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=4996, - ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=4997, - ["chance_%_to_drop_additional_divine_orb"]=4947, - ["chance_%_to_drop_additional_eldritch_chaos_orb"]=4948, - ["chance_%_to_drop_additional_eldritch_exalted_orb"]=4949, - ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=4950, - ["chance_%_to_drop_additional_enkindling_orb"]=4951, - ["chance_%_to_drop_additional_exalted_orb"]=4952, - ["chance_%_to_drop_additional_fusing_orb"]=4953, - ["chance_%_to_drop_additional_gem"]=4998, - ["chance_%_to_drop_additional_gemcutters_prism"]=4954, - ["chance_%_to_drop_additional_glassblowers_bauble"]=4955, - ["chance_%_to_drop_additional_grand_eldritch_ember"]=4956, - ["chance_%_to_drop_additional_grand_eldritch_ichor"]=4957, - ["chance_%_to_drop_additional_greater_eldritch_ember"]=4958, - ["chance_%_to_drop_additional_greater_eldritch_ichor"]=4959, - ["chance_%_to_drop_additional_instilling_orb"]=4960, - ["chance_%_to_drop_additional_jewellers_orb"]=4961, - ["chance_%_to_drop_additional_lesser_eldritch_ember"]=4962, - ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=4963, - ["chance_%_to_drop_additional_map_currency"]=5000, - ["chance_%_to_drop_additional_maps"]=4999, - ["chance_%_to_drop_additional_orb_of_alteration"]=4964, - ["chance_%_to_drop_additional_orb_of_annulment"]=4965, - ["chance_%_to_drop_additional_orb_of_binding"]=4966, - ["chance_%_to_drop_additional_orb_of_horizons"]=4967, - ["chance_%_to_drop_additional_orb_of_regret"]=4968, - ["chance_%_to_drop_additional_orb_of_scouring"]=4969, - ["chance_%_to_drop_additional_orb_of_unmaking"]=4970, - ["chance_%_to_drop_additional_regal_orb"]=4971, - ["chance_%_to_drop_additional_scarab"]=5001, - ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5002, - ["chance_%_to_drop_additional_scarab_abyss_polished"]=5003, - ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5004, - ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5005, - ["chance_%_to_drop_additional_scarab_beasts_polished"]=5006, - ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5007, - ["chance_%_to_drop_additional_scarab_blight_gilded"]=5008, - ["chance_%_to_drop_additional_scarab_blight_polished"]=5009, - ["chance_%_to_drop_additional_scarab_blight_rusted"]=5010, - ["chance_%_to_drop_additional_scarab_breach_gilded"]=5011, - ["chance_%_to_drop_additional_scarab_breach_polished"]=5012, - ["chance_%_to_drop_additional_scarab_breach_rusted"]=5013, - ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5014, - ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5015, - ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5016, - ["chance_%_to_drop_additional_scarab_elder_gilded"]=5017, - ["chance_%_to_drop_additional_scarab_elder_polished"]=5018, - ["chance_%_to_drop_additional_scarab_elder_rusted"]=5019, - ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5020, - ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5021, - ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5022, - ["chance_%_to_drop_additional_scarab_legion_gilded"]=5023, - ["chance_%_to_drop_additional_scarab_legion_polished"]=5024, - ["chance_%_to_drop_additional_scarab_legion_rusted"]=5025, - ["chance_%_to_drop_additional_scarab_maps_gilded"]=5026, - ["chance_%_to_drop_additional_scarab_maps_polished"]=5027, - ["chance_%_to_drop_additional_scarab_maps_rusted"]=5028, - ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5029, - ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5030, - ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5031, - ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5032, - ["chance_%_to_drop_additional_scarab_perandus_polished"]=5033, - ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5034, - ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5035, - ["chance_%_to_drop_additional_scarab_shaper_polished"]=5036, - ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5037, - ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5038, - ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5039, - ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5040, - ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5041, - ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5042, - ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5043, - ["chance_%_to_drop_additional_scarab_torment_gilded"]=5044, - ["chance_%_to_drop_additional_scarab_torment_polished"]=5045, - ["chance_%_to_drop_additional_scarab_torment_rusted"]=5046, - ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5047, - ["chance_%_to_drop_additional_scarab_uniques_polished"]=5048, - ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5049, - ["chance_%_to_drop_additional_tangled_currency"]=5050, - ["chance_%_to_drop_additional_tangled_influenced_item"]=5051, - ["chance_%_to_drop_additional_unique"]=5052, - ["chance_%_to_drop_additional_vaal_orb"]=4972, - ["chance_%_to_drop_additional_veiled_chaos_orb"]=4973, - ["chance_for_double_items_from_heist_chests_%"]=4974, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=4975, - ["chance_for_extra_damage_roll_with_lightning_damage_%"]=4976, - ["chance_for_skills_to_avoid_cooldown_%"]=4977, - ["chance_per_second_of_fire_spreading_between_enemies_%"]=1591, - ["chance_to_avoid_death_%"]=5053, - ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=2977, - ["chance_to_be_frozen_%"]=2636, - ["chance_to_be_frozen_shocked_ignited_%"]=2639, - ["chance_to_be_hindered_when_hit_by_spells_%"]=5054, - ["chance_to_be_ignited_%"]=2637, - ["chance_to_be_inflicted_with_an_ailment_+%"]=5055, - ["chance_to_be_maimed_when_hit_%"]=5056, - ["chance_to_be_poisoned_%"]=3030, - ["chance_to_be_sapped_when_hit_%"]=5057, - ["chance_to_be_scorched_when_hit_%"]=5058, - ["chance_to_be_shocked_%"]=2638, - ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5059, - ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5060, - ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5061, - ["chance_to_block_attacks_%_while_channelling"]=5062, - ["chance_to_block_spells_%_if_cast_a_spell_recently"]=5063, - ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=5064, - ["chance_to_block_spells_%_while_affected_by_discipline"]=5065, - ["chance_to_block_spells_%_while_channelling"]=5066, - ["chance_to_counter_strike_when_hit_%"]=2532, - ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5067, - ["chance_to_crush_on_hit_%"]=5068, - ["chance_to_curse_self_with_punishment_on_kill_%"]=2796, - ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5069, - ["chance_to_deal_double_damage_%"]=5072, - ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5073, - ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5074, - ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5075, - ["chance_to_deal_double_damage_%_per_4_rage"]=5076, - ["chance_to_deal_double_damage_%_per_500_strength"]=5077, - ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5070, - ["chance_to_deal_double_damage_%_while_focused"]=5078, - ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5079, - ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5071, - ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=9548, - ["chance_to_deal_double_damage_while_on_full_life_%"]=5080, - ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5081, - ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5082, - ["chance_to_double_armour_effect_on_hit_%"]=5083, - ["chance_to_double_stun_duration_%"]=3209, - ["chance_to_evade_%_while_you_have_energy_shield"]=5087, - ["chance_to_evade_attacks_%"]=5084, - ["chance_to_evade_attacks_%_if_havent_been_hit_recently"]=5085, - ["chance_to_evade_attacks_%_while_affected_by_grace"]=5086, - ["chance_to_fork_extra_projectile_%"]=5088, - ["chance_to_fortify_on_melee_hit_+%"]=1989, - ["chance_to_fortify_on_melee_stun_%"]=5089, - ["chance_to_freeze_%_while_using_flask"]=2614, - ["chance_to_freeze_shock_ignite_%"]=2506, - ["chance_to_freeze_shock_ignite_%_during_flask_effect"]=3850, - ["chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"]=5090, - ["chance_to_gain_1_more_charge_%"]=5091, - ["chance_to_gain_1_more_endurance_charge_%"]=5092, - ["chance_to_gain_1_more_frenzy_charge_%"]=5093, - ["chance_to_gain_1_more_power_charge_%"]=5094, - ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5095, - ["chance_to_gain_3_additional_exerted_attacks_%"]=5096, - ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5097, - ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5098, - ["chance_to_gain_endurance_charge_on_block_%"]=1831, - ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1542, - ["chance_to_gain_endurance_charge_on_crit_%"]=1539, - ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5099, - ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1540, - ["chance_to_gain_endurance_charge_when_hit_%"]=2455, - ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5100, - ["chance_to_gain_frenzy_charge_on_block_%"]=5102, - ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5101, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1543, - ["chance_to_gain_frenzy_charge_on_stun_%"]=5103, - ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=3985, - ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5104, - ["chance_to_gain_onslaught_on_flask_use_%"]=5105, - ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5106, - ["chance_to_gain_onslaught_on_kill_%"]=2677, - ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5107, - ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3037, - ["chance_to_gain_onslaught_on_kill_with_axes_%"]=5108, - ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5109, - ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1544, - ["chance_to_gain_power_charge_on_melee_stun_%"]=2474, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5110, - ["chance_to_gain_power_charge_on_stun_%"]=2475, - ["chance_to_gain_power_charge_when_block_%"]=1835, - ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2467, - ["chance_to_gain_random_standard_charge_on_hit_%"]=5111, - ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5112, - ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2785, - ["chance_to_gain_vaal_soul_on_kill_%"]=2780, - ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5113, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=3041, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5114, - ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3039, - ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5115, - ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3040, - ["chance_to_ignite_%_while_ignited"]=2632, - ["chance_to_ignite_%_while_using_flask"]=2613, - ["chance_to_ignite_is_doubled"]=5116, - ["chance_to_ignore_hexproof_%"]=5117, - ["chance_to_inflict_10_incision_on_attack_hit_%"]=5118, - ["chance_to_inflict_additional_impale_%"]=5119, - ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5120, - ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5121, - ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5122, - ["chance_to_inflict_frostburn_%"]=1739, - ["chance_to_inflict_incision_on_attack_hit_%"]=5123, - ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5124, - ["chance_to_inflict_sap_on_enemy_on_block_%"]=5125, - ["chance_to_inflict_sapped_%"]=1741, - ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5126, - ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5127, - ["chance_to_intimidate_on_hit_%"]=5128, - ["chance_to_leave_2_ground_blades_%"]=5129, - ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=5130, - ["chance_to_not_consume_infusion_%"]=5132, - ["chance_to_place_an_additional_mine_%"]=3193, - ["chance_to_poison_%_vs_cursed_enemies"]=3833, - ["chance_to_poison_on_critical_strike_with_bow_%"]=1319, - ["chance_to_poison_on_critical_strike_with_dagger_%"]=1320, - ["chance_to_poison_on_hit_%_per_power_charge"]=5135, - ["chance_to_poison_on_hit_+%_vs_non_poisoned_enemies"]=5133, - ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=5134, - ["chance_to_poison_on_hit_with_attacks_%"]=2849, - ["chance_to_poison_on_melee_hit_%"]=3879, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5136, - ["chance_to_scorch_%"]=1737, - ["chance_to_shock_%_while_using_flask"]=2615, - ["chance_to_shock_chilled_enemies_%"]=5137, - ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5138, - ["chance_to_summon_two_totems_%"]=5139, - ["chance_to_taunt_on_hit_%"]=3086, - ["chance_to_throw_4_additional_traps_%"]=5140, - ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=567, - ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=421, - ["chance_to_unnerve_on_hit_%"]=5141, - ["channelled_skill_damage_+%"]=5142, - ["channelled_skill_damage_+%_per_10_devotion"]=5143, - ["chaos_critical_strike_chance_+%"]=1349, - ["chaos_critical_strike_multiplier_+"]=1370, - ["chaos_damage_%_taken_from_mana_before_life"]=5148, - ["chaos_damage_+%"]=884, - ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5149, - ["chaos_damage_+%_per_equipped_corrupted_item"]=2775, - ["chaos_damage_+%_per_level"]=2664, - ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5150, - ["chaos_damage_can_chill"]=2568, - ["chaos_damage_can_freeze"]=2569, - ["chaos_damage_can_ignite_chill_and_shock"]=2586, - ["chaos_damage_can_shock"]=2570, - ["chaos_damage_cannot_poison"]=2587, - ["chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life"]=5144, - ["chaos_damage_does_not_damage_minions_energy_shield_extra_hard"]=4035, - ["chaos_damage_over_time_+%"]=1140, - ["chaos_damage_over_time_heals_while_leeching_life"]=5145, - ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5146, - ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1173, - ["chaos_damage_over_time_multiplier_+_with_attacks"]=1175, - ["chaos_damage_resistance_%_per_endurance_charge"]=5151, - ["chaos_damage_resistance_%_per_poison_stack"]=5153, - ["chaos_damage_resistance_%_when_on_low_life"]=2273, - ["chaos_damage_resistance_%_when_stationary"]=5154, - ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5155, - ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5156, - ["chaos_damage_resistance_is_doubled"]=5152, - ["chaos_damage_resisted_by_lowest_resistance"]=5157, - ["chaos_damage_taken_+"]=2542, - ["chaos_damage_taken_+%"]=1935, - ["chaos_damage_taken_over_time_+%"]=1663, - ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5158, - ["chaos_damage_to_return_to_melee_attacker"]=1905, - ["chaos_damage_to_return_when_hit"]=1910, - ["chaos_damage_with_attack_skills_+%"]=5159, - ["chaos_damage_with_spell_skills_+%"]=5160, - ["chaos_dot_multiplier_+"]=1174, - ["chaos_golem_damage_+%"]=3336, - ["chaos_golem_elemental_resistances_%"]=3618, - ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5161, - ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5162, - ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5163, - ["chaos_immunity"]=1875, - ["chaos_inoculation_keystone_energy_shield_+%_final"]=1894, - ["chaos_resist_unnaffected_by_area_penalites"]=5164, - ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3695, - ["chaos_resistance_+_while_using_flask"]=2964, - ["chaos_skill_chance_to_hinder_on_hit_%"]=5165, - ["chaos_skill_chance_to_ignite_%"]=5166, - ["chaos_skill_effect_duration_+%"]=1611, - ["chaos_skill_gem_level_+"]=5167, - ["chaos_skills_area_of_effect_+%"]=5168, - ["chaos_spell_skill_gem_level_+"]=950, - ["chaos_weakness_ignores_hexproof"]=2316, - ["chaos_weakness_mana_reservation_+%"]=3673, - ["charge_duration_+%"]=2709, - ["charged_attack_damage_+%"]=3766, - ["charged_attack_damage_per_stack_+%_final"]=3775, - ["charged_attack_radius_+%"]=3773, - ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3482, - ["charged_dash_damage_+%"]=3371, - ["charged_dash_movement_speed_+%_final"]=5169, - ["charges_gained_+%"]=1000, - ["charm_charges_gained_+%"]=5170, - ["charm_charges_used_%_granted_to_life_flasks"]=5171, - ["charm_charges_used_+%"]=5172, - ["charm_create_consecrated_ground_when_used"]=5173, - ["charm_defend_with_double_armour_during_effect"]=5174, - ["charm_duration_+%"]=905, - ["charm_effect_+%"]=5175, - ["charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect"]=5176, - ["charm_energy_shield_recharge_starts_when_used"]=5177, - ["charm_gain_X_guard_for_duration"]=924, - ["charm_gain_onslaught_during_effect"]=5178, - ["charm_grants_frenzy_charge_when_used"]=5179, - ["charm_grants_power_charge_when_used"]=5180, - ["charm_grants_up_to_your_maximum_rage_when_used"]=5181, - ["charm_ignite_enemies_in_presence_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used"]=5182, - ["charm_possesed_by_bear_spirit_for_x_seconds_when_used"]=5183, - ["charm_possesed_by_boar_spirit_for_x_seconds_when_used"]=5184, - ["charm_possesed_by_cat_spirit_for_x_seconds_when_used"]=5185, - ["charm_possesed_by_owl_spirit_for_x_seconds_when_used"]=5186, - ["charm_possesed_by_ox_spirit_for_x_seconds_when_used"]=5187, - ["charm_possesed_by_primate_spirit_for_x_seconds_when_used"]=5188, - ["charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used"]=5189, - ["charm_possesed_by_serpent_spirit_for_x_seconds_when_used"]=5190, - ["charm_possesed_by_stag_spirit_for_x_seconds_when_used"]=5191, - ["charm_possesed_by_wolf_spirit_for_x_seconds_when_used"]=5192, - ["charm_recover_X_life_when_used"]=925, - ["charm_recover_X_mana_when_used"]=926, - ["charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount"]=5193, - ["charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount"]=5194, - ["charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect"]=5195, - ["charms_%_chance_on_use_to_use_another_charm_without_consuming_charges"]=5196, - ["charms_%_chance_to_not_consume_charges"]=5197, - ["charms_use_no_charges"]=5198, - ["chest_drop_additional_corrupted_item_divination_cards"]=5199, - ["chest_drop_additional_currency_item_divination_cards"]=5200, - ["chest_drop_additional_divination_cards_from_current_world_area"]=5201, - ["chest_drop_additional_divination_cards_from_same_set"]=5202, - ["chest_drop_additional_unique_item_divination_cards"]=5203, - ["chest_item_quantity_+%"]=1427, - ["chest_item_rarity_+%"]=1432, - ["chest_number_of_additional_pirate_uniques_to_drop"]=5204, - ["chest_trap_defuse_%"]=1622, - ["chieftain_burning_damage_+%_final"]=1738, - ["chill_and_freeze_duration_+%"]=5205, - ["chill_and_freeze_duration_based_on_%_energy_shield"]=2308, - ["chill_attackers_for_4_seconds_on_block_%_chance"]=5206, - ["chill_chance_based_on_damage_fixed_magnitude"]=5207, - ["chill_duration_+%"]=1577, - ["chill_effect_+%"]=5210, - ["chill_effect_+%_while_mana_leeching"]=5208, - ["chill_effect_+%_with_critical_strikes"]=5211, - ["chill_effect_is_reversed"]=5209, - ["chill_effectiveness_on_self_+%"]=1460, - ["chill_enemy_when_hit_duration_ms"]=2815, - ["chill_minimum_slow_%"]=4067, - ["chill_minimum_slow_%_from_mastery"]=5212, - ["chill_nearby_enemies_when_you_focus"]=5213, - ["chill_prevention_ms_when_chilled"]=2592, - ["chilled_enemies_have_no_elemental_resistance"]=5214, - ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3063, - ["chilled_ground_when_hit_with_attack_%"]=5215, - ["chilled_monsters_take_+%_burning_damage"]=2470, - ["chilling_areas_also_grant_curse_effect_+%"]=5216, - ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5217, - ["chills_from_your_hits_cause_shattering"]=5218, - ["chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds"]=5219, - ["chronomancer_reserves_no_mana"]=5220, - ["clarity_mana_reservation_+%"]=3661, - ["clarity_mana_reservation_efficiency_+%"]=5222, - ["clarity_mana_reservation_efficiency_-2%_per_1"]=5221, - ["clarity_reserves_no_mana"]=5223, - ["claw_accuracy_rating"]=1718, - ["claw_accuracy_rating_+%"]=1306, - ["claw_attack_speed_+%"]=1289, - ["claw_critical_strike_chance_+%"]=1330, - ["claw_critical_strike_multiplier_+"]=1358, - ["claw_damage_+%"]=1210, - ["claw_damage_+%_while_on_low_life"]=5225, - ["claw_damage_against_enemies_on_low_life_+%"]=5224, - ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2640, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5227, - ["cleave_attack_speed_+%"]=3483, - ["cleave_damage_+%"]=3268, - ["cleave_fortify_on_hit"]=5226, - ["cleave_radius_+%"]=3437, - ["close_range_enemies_avoid_your_projectiles"]=8319, - ["cluster_burst_spawn_amount"]=3738, - ["cobra_lash_damage_+%"]=5228, - ["cobra_lash_number_of_additional_chains"]=5229, - ["cobra_lash_projectile_speed_+%"]=5230, - ["cold_ailment_duration_+%"]=5231, - ["cold_ailment_effect_+%"]=5233, - ["cold_ailment_effect_+%_against_shocked_enemies"]=5232, - ["cold_and_chaos_damage_resistance_%"]=5234, - ["cold_and_lightning_damage_resistance_%"]=2505, - ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5235, - ["cold_attack_damage_+%"]=1128, - ["cold_attack_damage_+%_while_holding_a_shield"]=1131, - ["cold_axe_damage_+%"]=1205, - ["cold_bow_damage_+%"]=1225, - ["cold_claw_damage_+%"]=1213, - ["cold_critical_strike_chance_+%"]=1347, - ["cold_critical_strike_multiplier_+"]=1368, - ["cold_dagger_damage_+%"]=1217, - ["cold_damage_+%"]=882, - ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5237, - ["cold_damage_+%_per_1%_block_chance"]=3228, - ["cold_damage_+%_per_25_dexterity"]=5238, - ["cold_damage_+%_per_25_intelligence"]=5239, - ["cold_damage_+%_per_25_strength"]=5240, - ["cold_damage_+%_per_cold_resistance_above_75"]=5236, - ["cold_damage_+%_per_frenzy_charge"]=5241, - ["cold_damage_+%_per_missing_cold_resistance"]=5242, - ["cold_damage_+%_while_affected_by_hatred"]=5243, - ["cold_damage_+%_while_affected_by_herald_of_ice"]=5244, - ["cold_damage_+%_while_off_hand_is_empty"]=5245, - ["cold_damage_can_ignite"]=2571, - ["cold_damage_can_shock"]=2572, - ["cold_damage_cannot_chill"]=2585, - ["cold_damage_cannot_freeze"]=2584, - ["cold_damage_over_time_+%"]=1139, - ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1170, - ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5246, - ["cold_damage_resistance_+%"]=1454, - ["cold_damage_resistance_is_%"]=1452, - ["cold_damage_taken_%_as_fire"]=2852, - ["cold_damage_taken_%_as_lightning"]=2853, - ["cold_damage_taken_+"]=5248, - ["cold_damage_taken_+%"]=3045, - ["cold_damage_taken_+%_if_have_been_hit_recently"]=5249, - ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5247, - ["cold_damage_to_return_to_melee_attacker"]=1902, - ["cold_damage_to_return_when_hit"]=1908, - ["cold_damage_while_dual_wielding_+%"]=1189, - ["cold_damage_with_attack_skills_+%"]=5250, - ["cold_damage_with_spell_skills_+%"]=5251, - ["cold_dot_multiplier_+"]=1171, - ["cold_exposure_effect_+%"]=5252, - ["cold_exposure_on_hit_magnitude"]=5253, - ["cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%"]=5254, - ["cold_hit_and_dot_damage_%_taken_as_fire"]=5255, - ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5256, - ["cold_hit_damage_+%_vs_shocked_enemies"]=5257, - ["cold_mace_damage_+%"]=1221, - ["cold_penetration_%_vs_chilled_enemies"]=5258, - ["cold_projectile_mine_critical_multiplier_+"]=5259, - ["cold_projectile_mine_damage_+%"]=5260, - ["cold_projectile_mine_throwing_speed_+%"]=5262, - ["cold_projectile_mine_throwing_speed_negated_+%"]=5261, - ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5263, - ["cold_resist_unaffected_by_area_penalties"]=5264, - ["cold_skill_chance_to_inflict_cold_exposure_%"]=5265, - ["cold_skill_gem_level_+"]=5266, - ["cold_skills_chance_to_poison_on_hit_%"]=5267, - ["cold_snap_cooldown_speed_+%"]=3507, - ["cold_snap_damage_+%"]=3342, - ["cold_snap_gain_power_charge_on_kill_%"]=2927, - ["cold_snap_radius_+%"]=3464, - ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5268, - ["cold_spell_skill_gem_level_+"]=948, - ["cold_staff_damage_+%"]=1209, - ["cold_sword_damage_+%"]=1230, - ["cold_wand_damage_+%"]=1234, - ["cold_weakness_ignores_hexproof"]=2317, - ["combust_area_of_effect_+%"]=5269, - ["combust_is_disabled"]=5270, - ["companion_accuracy_rating_+%"]=5271, - ["companion_area_of_effect_+%"]=5272, - ["companion_attack_speed_+%"]=5273, - ["companion_chaos_resistance_%"]=5274, - ["companion_damage_+%"]=5276, - ["companion_damage_increases_and_reductions_also_affects_you"]=5275, - ["companion_elemental_resistance_%"]=5277, - ["companion_maximum_life_+%"]=5278, - ["companion_reservation_+%"]=5279, - ["companion_takes_%_damage_before_you"]=5280, - ["companion_takes_%_damage_before_you_from_support"]=5281, - ["companions_gain_your_dexterity"]=5282, - ["companions_gain_your_strength"]=5283, - ["conductivity_curse_effect_+%"]=3638, - ["conductivity_duration_+%"]=3548, - ["conductivity_gem_level_+"]=1950, - ["conductivity_mana_reservation_+%"]=3674, - ["conductivity_no_reservation"]=5284, - ["consecrate_ground_for_3_seconds_when_hit_%"]=3198, - ["consecrate_ground_on_kill_%_for_3_seconds"]=3064, - ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3753, - ["consecrate_on_block_%_chance_to_create"]=2291, - ["consecrate_on_crit_%_chance_to_create"]=2349, - ["consecrated_ground_additional_physical_damage_reduction_%"]=5285, - ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5286, - ["consecrated_ground_area_+%"]=5287, - ["consecrated_ground_effect_+%"]=5288, - ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5293, - ["consecrated_ground_enemy_damage_taken_+%"]=5289, - ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5290, - ["consecrated_ground_immune_to_curses"]=5291, - ["consecrated_ground_immune_to_status_ailments"]=5292, - ["consecrated_ground_on_death"]=5294, - ["consecrated_ground_on_hit"]=5295, - ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5296, - ["consecrated_ground_while_stationary_radius"]=5297, - ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5298, - ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5299, - ["consecrated_path_area_of_effect_+%"]=5300, - ["consecrated_path_damage_+%"]=5301, - ["consume_%_of_maximum_life_flask_charges_on_bow_attack"]=5305, - ["consume_X_life_instead_of_last_crossbow_bolt"]=5302, - ["consume_enemy_freeze_to_guarantee_crit"]=5303, - ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5304, - ["contagion_damage_+%"]=3367, - ["contagion_duration_+%"]=3553, - ["contagion_radius_+%"]=3470, - ["contagion_spread_on_hit_affected_enemy_%"]=5306, - ["conversation_trap_converted_enemy_damage_+%"]=5307, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5308, - ["conversion_trap_cooldown_speed_+%"]=3520, - ["convert_all_life_leech_to_energy_shield_leech"]=5309, - ["converted_enemies_damage_+%"]=3362, - ["convocation_buff_effect_+%"]=3651, - ["convocation_cooldown_speed_+%"]=3508, - ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5310, - ["cooldown_recovery_+%_per_power_charge"]=5311, - ["cooldown_speed_+%_per_brand_up_to_40%"]=5312, - ["corpse_erruption_base_maximum_number_of_geyers"]=5313, - ["corpse_eruption_cast_speed_+%"]=5314, - ["corpse_eruption_damage_+%"]=5315, - ["corpse_warp_cast_speed_+%"]=5316, - ["corpse_warp_damage_+%"]=5317, - ["corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=5318, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5319, - ["corrupted_gem_experience_gain_+%"]=2787, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=5320, - ["corrupting_fever_damage_+%"]=5321, - ["corrupting_fever_duration_+%"]=5322, - ["counter_attacks_maximum_added_cold_damage"]=3830, - ["counter_attacks_maximum_added_physical_damage"]=3823, - ["counter_attacks_minimum_added_cold_damage"]=3830, - ["counter_attacks_minimum_added_physical_damage"]=3823, - ["counterattacks_cooldown_recovery_+%"]=5323, - ["counterattacks_deal_double_damage"]=5324, - ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5325, - ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5326, - ["cover_in_ash_on_hit_%"]=5327, - ["cover_in_ash_on_hit_%_while_you_are_burning"]=5328, - ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5329, - ["cover_in_frost_on_hit"]=5330, - ["crab_aspect_crab_barrier_max_+"]=3980, - ["crackling_lance_cast_speed_+%"]=5331, - ["crackling_lance_damage_+%"]=5332, - ["create_additional_brand_%_chance"]=5333, - ["create_blighted_spore_on_killing_rare_enemy"]=5334, - ["create_chilling_ground_on_freeze"]=5335, - ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5336, - ["create_consecrated_ground_on_kill_%"]=5337, - ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5338, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=5339, - ["create_profane_ground_instead_of_consecrated_ground"]=5340, - ["create_smoke_cloud_on_kill_%_chance"]=5341, - ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5342, - ["cremation_base_fires_projectile_every_x_ms"]=5343, - ["critical_damage_+1%_per_X_current_life"]=5345, - ["critical_hit_bleeding_effect_+%"]=5346, - ["critical_hit_chance_+%_against_enemies_entered_your_presence_recently"]=5347, - ["critical_hit_damage_+%_against_enemies_exited_your_presence_recently"]=5348, - ["critical_hit_damage_bonus_+%_if_consumed_power_charge_recently"]=5349, - ["critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance"]=5350, - ["critical_hit_damaging_ailment_effect_+%"]=5351, - ["critical_hit_ignite_effect_+%"]=5352, - ["critical_hit_poison_effect_+%"]=5353, - ["critical_hits_always_apply_impale"]=5354, - ["critical_hits_cannot_consume_impale"]=5355, - ["critical_hits_ignore_armour"]=5356, - ["critical_multiplier_+%_per_10_max_es_on_shield"]=5357, - ["critical_strike_%_chance_to_deal_double_damage"]=5422, - ["critical_strike_chance_+%"]=955, - ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5368, - ["critical_strike_chance_+%_during_any_flask_effect"]=5369, - ["critical_strike_chance_+%_final_while_affected_by_precision"]=5358, - ["critical_strike_chance_+%_final_while_unhinged"]=5370, - ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3105, - ["critical_strike_chance_+%_for_forking_arrows"]=3943, - ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5371, - ["critical_strike_chance_+%_if_enemy_killed_recently"]=5372, - ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5373, - ["critical_strike_chance_+%_if_have_not_crit_recently"]=5374, - ["critical_strike_chance_+%_if_havent_blocked_recently"]=5375, - ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5376, - ["critical_strike_chance_+%_per_10_strength"]=5377, - ["critical_strike_chance_+%_per_25_intelligence"]=5378, - ["critical_strike_chance_+%_per_8_strength"]=2629, - ["critical_strike_chance_+%_per_blitz_charge"]=5379, - ["critical_strike_chance_+%_per_brand"]=5380, - ["critical_strike_chance_+%_per_endurance_charge"]=5381, - ["critical_strike_chance_+%_per_frenzy_charge"]=5382, - ["critical_strike_chance_+%_per_intensity"]=5383, - ["critical_strike_chance_+%_per_level"]=2650, - ["critical_strike_chance_+%_per_lightning_adaptation"]=4050, - ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5384, - ["critical_strike_chance_+%_per_power_charge"]=2841, - ["critical_strike_chance_+%_per_righteous_charge"]=5385, - ["critical_strike_chance_+%_per_socketed_blue_support_gem"]=5359, - ["critical_strike_chance_+%_per_stackable_unique_jewel"]=3785, - ["critical_strike_chance_+%_vs_bleeding_enemies"]=2862, - ["critical_strike_chance_+%_vs_blinded_enemies"]=3062, - ["critical_strike_chance_+%_vs_dazed_enemies"]=5360, - ["critical_strike_chance_+%_vs_enemies_further_than_6m_distance"]=5361, - ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3684, - ["critical_strike_chance_+%_vs_enemies_with_lightning_exposure"]=5362, - ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3176, - ["critical_strike_chance_+%_vs_marked_enemy"]=5386, - ["critical_strike_chance_+%_vs_poisoned_enemies"]=2955, - ["critical_strike_chance_+%_vs_shocked_enemies"]=5344, - ["critical_strike_chance_+%_vs_taunted_enemies"]=5387, - ["critical_strike_chance_+%_when_in_main_hand"]=3808, - ["critical_strike_chance_+%_while_affected_by_wrath"]=5388, - ["critical_strike_chance_+%_while_channelling"]=5389, - ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=9646, - ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5393, - ["critical_strike_chance_+%_with_at_least_200_int"]=3998, - ["critical_strike_chance_+%_with_unarmed_attacks"]=5363, - ["critical_strike_chance_against_cursed_enemies_+%"]=5364, - ["critical_strike_chance_against_enemies_on_full_life_+%"]=3402, - ["critical_strike_chance_increased_by_lightning_resistance"]=5365, - ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5366, - ["critical_strike_chance_increased_by_spell_suppression_chance"]=5367, - ["critical_strike_chance_while_dual_wielding_+%"]=1344, - ["critical_strike_chance_while_wielding_shield_+%"]=1338, - ["critical_strike_damage_cannot_be_reflected"]=5394, - ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5420, - ["critical_strike_multiplier_+%_with_claws_daggers"]=5421, - ["critical_strike_multiplier_+_during_any_flask_effect"]=5399, - ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5400, - ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5401, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5402, - ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5403, - ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5404, - ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5405, - ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5395, - ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5406, - ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5407, - ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5408, - ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5409, - ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5410, - ["critical_strike_multiplier_+_per_1%_block_chance"]=2861, - ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5411, - ["critical_strike_multiplier_+_per_power_charge"]=2945, - ["critical_strike_multiplier_+_vs_bleeding_enemies"]=2859, - ["critical_strike_multiplier_+_vs_burning_enemies"]=2860, - ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3201, - ["critical_strike_multiplier_+_vs_stunned_enemies"]=5396, - ["critical_strike_multiplier_+_vs_taunted_enemies"]=5412, - ["critical_strike_multiplier_+_vs_unique_enemies"]=5413, - ["critical_strike_multiplier_+_while_affected_by_anger"]=5414, - ["critical_strike_multiplier_+_while_affected_by_precision"]=5415, - ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1757, - ["critical_strike_multiplier_+_with_herald_skills"]=5419, - ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5397, - ["critical_strike_multiplier_is_300"]=5398, - ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3089, - ["critical_strike_multiplier_while_dual_wielding_+"]=1363, - ["critical_strike_multiplier_with_dagger_+"]=1352, - ["critical_strikes_always_knockback_shocked_enemies"]=5423, - ["critical_strikes_deal_no_damage"]=5424, - ["critical_strikes_do_not_always_ignite"]=5425, - ["critical_strikes_from_spells_have_no_multiplier"]=5426, - ["critical_strikes_ignore_elemental_resistances"]=3103, - ["critical_strikes_ignore_lightning_resistance"]=5427, - ["critical_strikes_ignore_positive_elemental_resistances"]=5428, - ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5429, - ["critical_support_gem_level_+"]=5430, - ["crits_have_culling_strike"]=3093, - ["crossbow_accuracy_rating"]=3923, - ["crossbow_accuracy_rating_+%"]=3924, - ["crossbow_attack_%_chance_to_not_consume_ammo"]=5431, - ["crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently"]=5432, - ["crossbow_attack_speed_+%"]=3925, - ["crossbow_critical_strike_chance_+%"]=3926, - ["crossbow_critical_strike_multiplier_+"]=3927, - ["crossbow_damage_+%"]=3921, - ["crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds"]=5433, - ["crossbow_elemental_damage_+%"]=3922, - ["crossbow_physical_damage_+%"]=3928, - ["crossbow_skill_gem_level_+"]=5434, - ["crowd_control_effects_are_triggered_at_%_poise_threshold_instead"]=5435, - ["cruelty_effect_+%"]=5436, - ["crush_for_2_seconds_on_hit_%_chance"]=5437, - ["crush_on_hit_ms_vs_full_life_enemies"]=5438, - ["culling_strike_enemies_on_block"]=5439, - ["culling_strike_on_burning_enemies"]=2539, - ["culling_strike_on_enemies_affected_by_poachers_mark"]=5440, - ["culling_strike_threshold_+%"]=5441, - ["culling_strike_vs_cursed_enemies"]=5442, - ["culling_strike_vs_marked_enemy"]=5443, - ["current_endurance_charges"]=11, - ["current_energy_shield_%_as_elemental_damage_reduction"]=5444, - ["current_frenzy_charges"]=12, - ["current_power_charges"]=13, - ["curse_area_of_effect_+%"]=1917, - ["curse_aura_skill_area_of_effect_+%"]=5445, - ["curse_aura_skills_mana_reservation_efficiency_+%"]=5448, - ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5447, - ["curse_aura_skills_reservation_efficiency_+%"]=5446, - ["curse_cast_speed_+%"]=1911, - ["curse_delay_+%"]=5449, - ["curse_effect_+%"]=2312, - ["curse_effect_+%_if_200_mana_spent_recently"]=5452, - ["curse_effect_on_self_+%"]=1879, - ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5450, - ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5451, - ["curse_mana_cost_+%"]=5453, - ["curse_on_block_%_chance_flammability_with_+20%_effect"]=2671, - ["curse_on_block_enfeeble_chance_%"]=5454, - ["curse_on_block_level_5_vulnerability"]=2670, - ["curse_on_hit_%_conductivity"]=2232, - ["curse_on_hit_%_despair"]=2233, - ["curse_on_hit_%_elemental_weakness"]=2234, - ["curse_on_hit_%_enfeeble"]=2231, - ["curse_on_hit_%_flammability"]=2235, - ["curse_on_hit_%_frostbite"]=2236, - ["curse_on_hit_%_temporal_chains"]=2237, - ["curse_on_hit_%_vulnerability"]=2238, - ["curse_on_hit_level_10_vulnerability_%"]=2242, - ["curse_on_hit_level_assassins_mark"]=568, - ["curse_on_hit_level_cold_weakness"]=2244, - ["curse_on_hit_level_conductivity"]=2245, - ["curse_on_hit_level_despair"]=2246, - ["curse_on_hit_level_elemental_weakness"]=2243, - ["curse_on_hit_level_enfeeble"]=2247, - ["curse_on_hit_level_flammability"]=2248, - ["curse_on_hit_level_frostbite"]=2249, - ["curse_on_hit_level_poachers_mark"]=569, - ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=570, - ["curse_on_hit_level_temporal_chains"]=2240, - ["curse_on_hit_level_vulnerability"]=2241, - ["curse_on_hit_level_warlords_mark"]=571, - ["curse_on_projectile_block_level_15_temporal_chains"]=2672, - ["curse_on_spell_block_level_15_elemental_weakness"]=2673, - ["curse_pillar_curse_effect_+%_final"]=2313, - ["curse_skill_effect_duration_+%"]=5455, - ["curse_skill_gem_level_+"]=5456, - ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2239, - ["curse_with_punishment_on_hit_%"]=5457, - ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5459, - ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5460, - ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5461, - ["cursed_enemies_are_exorcised_on_kill"]=5458, - ["cursed_with_silence_when_hit_%_chance"]=5462, - ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5463, - ["curses_never_expire"]=1871, - ["curses_reflected_to_self"]=5464, - ["curses_you_inflict_remain_after_death"]=5465, - ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5466, - ["cyclone_and_sweep_melee_knockback"]=5467, - ["cyclone_attack_speed_+%"]=3493, - ["cyclone_damage_+%"]=3315, - ["cyclone_max_stages_movement_speed_+%"]=5468, - ["dagger_accuracy_rating"]=1716, - ["dagger_accuracy_rating_+%"]=1307, - ["dagger_attack_speed_+%"]=1290, - ["dagger_critical_strike_chance_+%"]=1331, - ["dagger_damage_+%"]=1214, - ["damage_+%"]=1119, - ["damage_+%_against_enemies_marked_by_you"]=5492, - ["damage_+%_against_enemies_with_fully_broken_armour"]=5469, - ["damage_+%_during_flask_effect"]=3709, - ["damage_+%_final_against_bloodlusting_enemies"]=5470, - ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5493, - ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5471, - ["damage_+%_final_with_at_least_1_nearby_ally"]=5494, - ["damage_+%_for_4_seconds_on_crit"]=3104, - ["damage_+%_for_4_seconds_on_detonation"]=3125, - ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3712, - ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3688, - ["damage_+%_for_each_herald_affecting_you"]=5495, - ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3818, - ["damage_+%_for_each_trap_and_mine_active"]=3703, - ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=5496, - ["damage_+%_for_you_and_allies_affected_by_your_auras"]=3696, - ["damage_+%_if_enemy_killed_recently"]=5497, - ["damage_+%_if_enemy_killed_recently_final"]=3842, - ["damage_+%_if_enemy_shattered_recently"]=5498, - ["damage_+%_if_firing_atleast_7_projectiles"]=5499, - ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3337, - ["damage_+%_if_have_been_ignited_recently"]=5500, - ["damage_+%_if_have_crit_in_past_8_seconds"]=5501, - ["damage_+%_if_only_one_enemy_nearby"]=5502, - ["damage_+%_if_skill_costs_life"]=5503, - ["damage_+%_if_triggered_skill_recently"]=5472, - ["damage_+%_if_used_travel_skill_recently"]=5504, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=3874, - ["damage_+%_if_you_have_frozen_enemy_recently"]=5505, - ["damage_+%_if_you_have_shocked_recently"]=5506, - ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3718, - ["damage_+%_on_consecrated_ground"]=3197, - ["damage_+%_on_full_energy_shield"]=5530, - ["damage_+%_per_1%_block_chance"]=5514, - ["damage_+%_per_1%_increased_item_found_quantity"]=5515, - ["damage_+%_per_100_dexterity"]=5507, - ["damage_+%_per_100_intelligence"]=5508, - ["damage_+%_per_100_strength"]=5509, - ["damage_+%_per_10_dex"]=5510, - ["damage_+%_per_10_levels"]=2541, - ["damage_+%_per_15_dex"]=5511, - ["damage_+%_per_15_int"]=5512, - ["damage_+%_per_15_strength"]=5513, - ["damage_+%_per_5_of_your_lowest_attribute"]=5516, - ["damage_+%_per_abyss_jewel_type"]=3793, - ["damage_+%_per_active_curse_on_self"]=1142, - ["damage_+%_per_active_golem"]=5517, - ["damage_+%_per_active_link"]=5518, - ["damage_+%_per_active_trap"]=3114, - ["damage_+%_per_crab_charge"]=3981, - ["damage_+%_per_different_warcry_used_recently"]=5519, - ["damage_+%_per_endurance_charge"]=2870, - ["damage_+%_per_enemy_elemental_ailment"]=5473, - ["damage_+%_per_equipped_magic_item"]=2757, - ["damage_+%_per_fire_adaptation"]=4048, - ["damage_+%_per_frenzy_charge"]=2949, - ["damage_+%_per_frenzy_power_or_endurance_charge"]=5520, - ["damage_+%_per_poison_stack"]=5474, - ["damage_+%_per_poison_up_to_75%"]=5521, - ["damage_+%_per_power_charge"]=5522, - ["damage_+%_per_raised_zombie"]=5475, - ["damage_+%_per_recently_triggered_hazard_up_to_50%"]=5523, - ["damage_+%_per_shock"]=2479, - ["damage_+%_per_socketed_red_support_gem"]=5476, - ["damage_+%_per_warcry_used_recently"]=5524, - ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=5525, - ["damage_+%_to_rare_and_unique_enemies"]=2879, - ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3713, - ["damage_+%_vs_abyssal_monsters"]=5526, - ["damage_+%_vs_blinded_enemies"]=2516, - ["damage_+%_vs_burning_enemies"]=3100, - ["damage_+%_vs_dazed_enemies"]=5477, - ["damage_+%_vs_demons"]=2469, - ["damage_+%_vs_enemies_affected_by_status_ailments"]=3110, - ["damage_+%_vs_enemies_on_full_life"]=5527, - ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2515, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1162, - ["damage_+%_vs_frozen_enemies"]=1158, - ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1163, - ["damage_+%_vs_hindered_enemies"]=3734, - ["damage_+%_vs_magic_monsters"]=5528, - ["damage_+%_vs_rare_monsters"]=2512, - ["damage_+%_vs_taunted_enemies"]=5529, - ["damage_+%_when_currently_has_no_energy_shield"]=2439, - ["damage_+%_when_not_on_low_life"]=2875, - ["damage_+%_when_on_burning_ground"]=1854, - ["damage_+%_when_on_full_life"]=5531, - ["damage_+%_when_on_low_life"]=1141, - ["damage_+%_while_affected_by_a_herald"]=5532, - ["damage_+%_while_channelling"]=5533, - ["damage_+%_while_dead"]=2772, - ["damage_+%_while_es_not_full"]=3705, - ["damage_+%_while_fortified"]=2868, - ["damage_+%_while_ignited"]=2507, - ["damage_+%_while_in_blood_stance"]=5534, - ["damage_+%_while_in_presence_of_companion"]=5478, - ["damage_+%_while_leeching"]=2743, - ["damage_+%_while_life_leeching"]=1143, - ["damage_+%_while_mana_leeching"]=1145, - ["damage_+%_while_totem_active"]=2876, - ["damage_+%_while_unarmed"]=3219, - ["damage_+%_while_using_charm"]=5535, - ["damage_+%_while_wielding_bow_if_totem_summoned"]=5536, - ["damage_+%_while_wielding_two_different_weapon_types"]=5537, - ["damage_+%_while_wielding_wand"]=1231, - ["damage_+%_while_you_have_a_summoned_golem"]=5538, - ["damage_+%_with_bow_skills"]=887, - ["damage_+%_with_daggers_against_full_life_enemies"]=5539, - ["damage_+%_with_herald_skills"]=5540, - ["damage_+%_with_maces_sceptres_staves"]=5541, - ["damage_+%_with_melee_weapons"]=1193, - ["damage_+%_with_movement_skills"]=1298, - ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=5542, - ["damage_+%_with_one_handed_melee_weapons"]=1192, - ["damage_+%_with_one_handed_weapons"]=2997, - ["damage_+%_with_shield_skills"]=5543, - ["damage_+%_with_shield_skills_per_2%_attack_block"]=5544, - ["damage_+%_with_two_handed_melee_weapons"]=1198, - ["damage_+%_with_two_handed_weapons"]=2998, - ["damage_+1%_per_X_strength_when_in_main_hand"]=2480, - ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3106, - ["damage_blocked_%_recouped_as_mana"]=5479, - ["damage_over_time_+%"]=1136, - ["damage_over_time_+%_per_frenzy_charge"]=1840, - ["damage_over_time_+%_per_power_charge"]=1841, - ["damage_over_time_+%_while_affected_by_a_herald"]=5481, - ["damage_over_time_+%_while_dual_wielding"]=1842, - ["damage_over_time_+%_while_holding_a_shield"]=1843, - ["damage_over_time_+%_while_wielding_two_handed_weapon"]=1844, - ["damage_over_time_+%_with_attack_skills"]=5482, - ["damage_over_time_+%_with_bow_skills"]=5483, - ["damage_over_time_+%_with_herald_skills"]=5484, - ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5480, - ["damage_over_time_multiplier_+_with_attacks"]=1165, - ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5485, - ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5486, - ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5487, - ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5488, - ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5489, - ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5490, - ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5491, - ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=5545, - ["damage_reduction_rating_%_with_active_totem"]=3000, - ["damage_reduction_rating_from_body_armour_doubled"]=2999, - ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=5546, - ["damage_removed_from_mana_before_life_%_while_focused"]=5547, - ["damage_removed_from_spectres_before_life_or_es_%"]=5548, - ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=5549, - ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=5561, - ["damage_taken_%_recovered_as_life_from_stunning_hits"]=5562, - ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=5563, - ["damage_taken_+%_final_per_tailwind"]=5564, - ["damage_taken_+%_final_per_totem"]=5565, - ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=5550, - ["damage_taken_+%_for_4_seconds_on_kill"]=2987, - ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3088, - ["damage_taken_+%_from_bleeding_enemies"]=2978, - ["damage_taken_+%_from_blinded_enemies"]=2947, - ["damage_taken_+%_from_ghosts"]=1940, - ["damage_taken_+%_from_hits"]=1932, - ["damage_taken_+%_from_skeletons"]=1939, - ["damage_taken_+%_from_taunted_enemies"]=3714, - ["damage_taken_+%_if_have_been_frozen_recently"]=5566, - ["damage_taken_+%_if_have_not_been_hit_recently"]=5567, - ["damage_taken_+%_if_not_hit_recently_final"]=3811, - ["damage_taken_+%_if_taunted_an_enemy_recently"]=3846, - ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=5551, - ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3799, - ["damage_taken_+%_on_full_life"]=5568, - ["damage_taken_+%_on_low_life"]=5569, - ["damage_taken_+%_per_frenzy_charge"]=2621, - ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3257, - ["damage_taken_+%_vs_demons"]=2468, - ["damage_taken_+%_while_affected_by_elusive"]=5552, - ["damage_taken_+%_while_es_full"]=1936, - ["damage_taken_+%_while_leeching"]=5570, - ["damage_taken_+%_while_phasing"]=5571, - ["damage_taken_from_suppressed_hits_is_unlucky"]=5553, - ["damage_taken_from_traps_and_mines_+%"]=2957, - ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=5554, - ["damage_taken_goes_to_life_over_4_seconds_%"]=989, - ["damage_taken_goes_to_mana_%"]=996, - ["damage_taken_goes_to_mana_%_per_power_charge"]=2840, - ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=5555, - ["damage_taken_over_time_+%_final_during_life_flask_effect"]=5556, - ["damage_taken_per_250_dexterity_+%"]=5557, - ["damage_taken_per_250_intelligence_+%"]=5558, - ["damage_taken_per_250_strength_+%"]=5559, - ["damage_taken_per_ghost_dance_stack_+%"]=5560, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2697, - ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2680, - ["damage_vs_enemies_on_low_life_+%"]=2513, - ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2681, - ["damage_vs_shocked_enemies_+%"]=1160, - ["damage_while_dual_wielding_+%"]=1186, - ["damage_while_no_damage_taken_+%"]=2888, - ["damage_while_no_frenzy_charges_+%"]=3401, - ["damage_with_cold_skills_+%"]=1249, - ["damage_with_fire_skills_+%"]=1241, - ["damage_with_hits_is_lucky_vs_enemies_on_low_life"]=5572, - ["damage_with_hits_is_lucky_vs_heavy_stunned_enemies"]=5573, - ["damage_with_lightning_skills_+%"]=1254, - ["damaging_ailment_duration_+%"]=5574, - ["damaging_ailments_deal_damage_+%_faster"]=5576, - ["dark_pact_minions_recover_%_life_on_hit"]=5577, - ["dark_ritual_area_of_effect_+%"]=5578, - ["dark_ritual_damage_+%"]=5579, - ["dark_ritual_linked_curse_effect_+%"]=5580, - ["darkness_per_level"]=5581, - ["darkness_refresh_rate_+%"]=5582, - ["daytime_fish_caught_size_+%"]=5583, - ["daze_build_up_+%"]=5584, - ["daze_duration_+%"]=5585, - ["deadeye_accuracy_unaffected_by_range"]=5586, - ["deadeye_damage_taken_+%_final_from_marked_enemy"]=5587, - ["deadeye_movement_speed_penalty_+%_final_while_performing_action"]=5588, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases"]=5589, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=5590, - ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=5591, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=5592, - ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=5593, - ["deal_double_damage_to_enemies_on_full_life"]=5594, - ["deal_no_damage_when_not_on_low_life"]=5595, - ["deal_no_damage_yourself"]=1941, - ["deal_no_elemental_damage"]=5596, - ["deal_no_elemental_physical_damage"]=5597, - ["deal_no_non_chaos_damage"]=5598, - ["deal_no_non_cold_damage"]=2499, - ["deal_no_non_elemental_damage"]=5599, - ["deal_no_non_fire_damage"]=2497, - ["deal_no_non_lightning_damage"]=2498, - ["deal_no_non_physical_damage"]=2495, - ["deal_thorns_damage_chance_%_on_hit"]=5600, - ["deal_thorns_damage_on_hit"]=5601, - ["deal_thorns_damage_on_stun"]=5602, - ["deathgrip_presence"]=5603, - ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2402, - ["deaths_oath_debuff_on_kill_duration_ms"]=2402, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=5604, - ["debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell"]=5605, - ["debuff_time_passed_+%"]=5607, - ["debuff_time_passed_-%_while_affected_by_haste"]=5606, - ["decimating_strike"]=5608, - ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=5609, - ["decoy_totem_life_+%"]=3625, - ["decoy_totem_radius_+%"]=3465, - ["defences_+%_while_wielding_quarterstaff"]=5610, - ["defences_+%_while_you_have_four_linked_targets"]=5611, - ["defences_are_zero"]=5612, - ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=5613, - ["defend_with_%_armour_against_attacks_from_distance_greater_than_6m"]=5614, - ["defend_with_%_armour_against_critical_strikes"]=5615, - ["defend_with_%_armour_against_ranged_attacks"]=5616, - ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=5617, - ["defiance_banner_aura_effect_+%"]=5618, - ["defiance_banner_mana_reservation_efficiency_+%"]=5619, - ["deflect_chance_+%"]=5621, - ["deflect_chance_is_lucky"]=5620, - ["degen_effect_+%"]=1937, - ["delirium_aura_effect_+%"]=5622, - ["delirium_mana_reservation_+%"]=5623, - ["delirium_reserves_no_mana"]=5624, - ["delve_biome_area_contains_x_extra_packs_of_insects"]=5625, - ["delve_biome_azurite_collected_+%"]=2011, - ["delve_biome_boss_drops_additional_unique_item"]=2002, - ["delve_biome_boss_drops_extra_precursor_component_ring"]=2003, - ["delve_biome_boss_drops_x_additional_fossils"]=2004, - ["delve_biome_boss_hits_always_crit"]=2005, - ["delve_biome_boss_life_+%_final"]=2006, - ["delve_biome_boss_physical_damage_%_to_gain_as_cold"]=2007, - ["delve_biome_boss_physical_damage_%_to_gain_as_fire"]=2008, - ["delve_biome_boss_physical_damage_%_to_gain_as_lightning"]=2009, - ["delve_biome_city_chambers_can_contain_special_delve_chest"]=2013, - ["delve_biome_contains_delve_boss"]=2001, - ["delve_biome_encounters_extra_reward_chest_%_chance"]=2014, - ["delve_biome_monster_drop_fossil_chance_%"]=2015, - ["delve_biome_monster_projectiles_always_pierce"]=5626, - ["delve_biome_node_tier_upgrade_+%"]=2017, - ["delve_biome_off_path_reward_chests_always_azurite"]=2019, - ["delve_biome_off_path_reward_chests_always_currency"]=2020, - ["delve_biome_off_path_reward_chests_always_fossils"]=2021, - ["delve_biome_off_path_reward_chests_always_resonators"]=2022, - ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=2023, - ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=2024, - ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2025, - ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2026, - ["delve_biome_sulphite_cost_+%_final"]=2012, - ["delve_boss_life_+%_final_from_biome"]=5627, - ["demigod_footprints_from_item"]=9655, - ["demigods_virtue"]=9580, - ["demon_form_has_no_max_stacks"]=5628, - ["demon_minion_reservation_+%"]=8971, - ["desecrate_cooldown_speed_+%"]=3513, - ["desecrate_creates_X_additional_corpses"]=3873, - ["desecrate_damage_+%"]=3357, - ["desecrate_duration_+%"]=3550, - ["desecrate_maximum_number_of_corpses"]=5630, - ["desecrate_number_of_corpses_to_create"]=3748, - ["desecrate_on_block_%_chance_to_create"]=2292, - ["desecrated_ground_effect_on_self_+%"]=1856, - ["despair_curse_effect_+%"]=5631, - ["despair_duration_+%"]=5632, - ["despair_gem_level_+"]=1951, - ["despair_no_reservation"]=5633, - ["destructive_link_duration_+%"]=5634, - ["determination_aura_effect_+%"]=3027, - ["determination_mana_reservation_+%"]=3664, - ["determination_mana_reservation_efficiency_+%"]=5636, - ["determination_mana_reservation_efficiency_-2%_per_1"]=5635, - ["determination_reserves_no_mana"]=5637, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3623, - ["detonate_dead_damage_+%"]=3326, - ["detonate_dead_radius_+%"]=3460, - ["devouring_totem_%_chance_to_consume_additional_corpse"]=3631, - ["dexterity_+%"]=1113, - ["dexterity_+%_if_strength_higher_than_intelligence"]=5638, - ["dexterity_inherently_grants_mana_instead_of_accuracy"]=1727, - ["dexterity_skill_gem_level_+"]=5639, - ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=409, - ["disable_chest_slot"]=2300, - ["disable_skill_if_melee_attack"]=2215, - ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=5640, - ["discharge_area_of_effect_+%_final"]=5641, - ["discharge_chance_not_to_consume_charges_%"]=3072, - ["discharge_cooldown_override_ms"]=5642, - ["discharge_damage_+%"]=3070, - ["discharge_damage_+%_final"]=5643, - ["discharge_radius_+"]=5644, - ["discharge_radius_+%"]=3071, - ["discharge_triggered_damage_+%_final"]=5645, - ["discipline_aura_effect_+%"]=3028, - ["discipline_mana_reservation_+%"]=3665, - ["discipline_mana_reservation_efficiency_+%"]=5647, - ["discipline_mana_reservation_efficiency_-2%_per_1"]=5646, - ["discipline_reserves_no_mana"]=5648, - ["disintegrate_secondary_beam_angle_+%"]=5649, - ["dispel_bleed_on_guard_skill_use"]=5650, - ["dispel_corrupted_blood_on_guard_skill_use"]=5651, - ["dispel_status_ailments_on_flask_use"]=2961, - ["dispel_status_ailments_on_rampage_threshold"]=2643, - ["display_abberaths_hooves_skill_level"]=572, - ["display_ailment_bearer_charge_interval"]=4063, - ["display_altar_chaos_aura"]=5652, - ["display_altar_cold_aura"]=5653, - ["display_altar_fire_aura"]=5654, - ["display_altar_lightning_aura"]=5655, - ["display_altar_tangle_tentalces_daemon"]=5656, - ["display_area_contains_alluring_vaal_side_area"]=5657, - ["display_area_contains_corrupting_tempest"]=5658, - ["display_area_contains_improved_labyrinth_trial"]=5659, - ["display_attack_with_commandment_of_force_on_hit_%"]=3157, - ["display_attack_with_commandment_of_fury_on_hit_%"]=3169, - ["display_attack_with_commandment_of_ire_when_hit_%"]=3649, - ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3161, - ["display_attack_with_commandment_of_spite_when_hit_%"]=3173, - ["display_attack_with_decree_of_force_on_hit_%"]=3156, - ["display_attack_with_decree_of_fury_on_hit_%"]=3168, - ["display_attack_with_decree_of_ire_when_hit_%"]=3648, - ["display_attack_with_decree_of_light_when_critically_hit_%"]=3160, - ["display_attack_with_decree_of_spite_when_hit_%"]=3172, - ["display_attack_with_edict_of_force_on_hit_%"]=3155, - ["display_attack_with_edict_of_fury_on_hit_%"]=3167, - ["display_attack_with_edict_of_ire_when_hit_%"]=3647, - ["display_attack_with_edict_of_light_when_critically_hit_%"]=3159, - ["display_attack_with_edict_of_spite_when_hit_%"]=3171, - ["display_attack_with_word_of_force_on_hit_%"]=3154, - ["display_attack_with_word_of_fury_on_hit_%"]=3166, - ["display_attack_with_word_of_ire_when_hit_%"]=3646, - ["display_attack_with_word_of_light_when_critically_hit_%"]=3158, - ["display_attack_with_word_of_spite_when_hit_%"]=3170, - ["display_bow_range_+"]=2744, - ["display_cast_commandment_of_blades_on_hit_%_"]=3133, - ["display_cast_commandment_of_flames_on_hit_%"]=3184, - ["display_cast_commandment_of_frost_on_kill_%"]=3188, - ["display_cast_commandment_of_inferno_on_kill_%"]=3141, - ["display_cast_commandment_of_reflection_when_hit_%"]=3153, - ["display_cast_commandment_of_tempest_on_hit_%"]=3145, - ["display_cast_commandment_of_the_grave_on_kill_%"]=3149, - ["display_cast_commandment_of_thunder_on_kill_%"]=3192, - ["display_cast_commandment_of_war_on_kill_%"]=3165, - ["display_cast_commandment_of_winter_when_hit_%"]=3137, - ["display_cast_decree_of_blades_on_hit_%__"]=3132, - ["display_cast_decree_of_flames_on_hit_%"]=3183, - ["display_cast_decree_of_frost_on_kill_%"]=3187, - ["display_cast_decree_of_inferno_on_kill_%"]=3140, - ["display_cast_decree_of_reflection_when_hit_%"]=3152, - ["display_cast_decree_of_tempest_on_hit_%"]=3144, - ["display_cast_decree_of_the_grave_on_kill_%"]=3148, - ["display_cast_decree_of_thunder_on_kill_%"]=3191, - ["display_cast_decree_of_war_on_kill_%"]=3164, - ["display_cast_decree_of_winter_when_hit_%"]=3136, - ["display_cast_edict_of_blades_on_hit_%_"]=3131, - ["display_cast_edict_of_flames_on_hit_%"]=3182, - ["display_cast_edict_of_frost_on_kill_%"]=3186, - ["display_cast_edict_of_inferno_on_kill_%"]=3139, - ["display_cast_edict_of_reflection_when_hit_%"]=3151, - ["display_cast_edict_of_tempest_on_hit_%"]=3143, - ["display_cast_edict_of_the_grave_on_kill_%"]=3147, - ["display_cast_edict_of_thunder_on_kill_%"]=3190, - ["display_cast_edict_of_war_on_kill_%"]=3163, - ["display_cast_edict_of_winter_when_hit_%"]=3135, - ["display_cast_fire_burst_on_kill"]=573, - ["display_cast_word_of_blades_on_hit_%"]=3130, - ["display_cast_word_of_flames_on_hit_%"]=3181, - ["display_cast_word_of_frost_on_kill_%"]=3185, - ["display_cast_word_of_inferno_on_kill_%"]=3138, - ["display_cast_word_of_reflection_when_hit_%"]=3150, - ["display_cast_word_of_tempest_on_hit_%"]=3142, - ["display_cast_word_of_the_grave_on_kill_%"]=3146, - ["display_cast_word_of_thunder_on_kill_%"]=3189, - ["display_cast_word_of_war_on_kill_%"]=3162, - ["display_cast_word_of_winter_when_hit_%"]=3134, - ["display_cowards_trial_waves_of_monsters"]=5660, - ["display_cowards_trial_waves_of_undead_monsters"]=5661, - ["display_dark_ritual_curse_max_skill_level_requirement"]=5662, - ["display_golden_radiance"]=2214, - ["display_heist_contract_lockdown_timer_+%"]=5663, - ["display_herald_of_thunder_storm"]=5339, - ["display_item_generation_can_roll_minion_affixes"]=41, - ["display_item_generation_can_roll_totem_affixes"]=42, - ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=5664, - ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=5665, - ["display_legion_uber_fragment_improved_rewards_+%"]=5666, - ["display_link_stuff"]=6890, - ["display_mana_cost_reduction_%"]=1664, - ["display_map_augmentable_boss"]=5667, - ["display_map_boss_gives_experience_+%"]=2544, - ["display_map_final_boss_drops_higher_level_gear"]=2543, - ["display_map_has_oxygen"]=2674, - ["display_map_inhabited_by_lunaris_fanatics"]=5668, - ["display_map_inhabited_by_solaris_fanatics"]=5669, - ["display_map_inhabited_by_wild_beasts"]=2054, - ["display_map_labyrinth_chests_fortune"]=5670, - ["display_map_labyrinth_enchant_belts"]=5671, - ["display_map_large_chest"]=2260, - ["display_map_larger_maze"]=2259, - ["display_map_mission_id"]=5672, - ["display_map_no_monsters"]=2157, - ["display_map_restless_dead"]=2258, - ["display_memory_line_abyss_beyond_monsters_from_cracks"]=5673, - ["display_memory_line_ambush_contains_standalone_map_boss"]=5674, - ["display_memory_line_ambush_strongbox_chain"]=5675, - ["display_memory_line_anarchy_rogue_exiles_in_packs"]=5676, - ["display_memory_line_bestiary_capturable_harvest_monsters"]=5677, - ["display_memory_line_breach_area_is_breached"]=5678, - ["display_memory_line_breach_miniature_flash_breaches"]=5679, - ["display_memory_line_domination_multiple_modded_shrines"]=5680, - ["display_memory_line_domination_shrines_to_pantheon_gods"]=5681, - ["display_memory_line_essence_multiple_rare_monsters"]=5682, - ["display_memory_line_essence_rogue_exiles"]=5683, - ["display_memory_line_harbinger_player_is_a_harbinger"]=5684, - ["display_memory_line_harbinger_portals_everywhere"]=5685, - ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=5686, - ["display_memory_line_incursion_reverse"]=5687, - ["display_memory_line_torment_player_is_possessed"]=5688, - ["display_memory_line_torment_rares_uniques_are_possessed"]=5689, - ["display_minion_maximum_life"]=1665, - ["display_modifiers_to_totem_life_effect_these_minions"]=5690, - ["display_passive_attribute_text"]=5691, - ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=404, - ["display_strongbox_drops_additional_shaper_or_elder_cards"]=5692, - ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=574, - ["distance_scaled_accuracy_rating_penalty_+%"]=5693, - ["divine_tempest_beam_width_+%"]=5694, - ["divine_tempest_damage_+%"]=5695, - ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=5696, - ["do_not_chain"]=1510, - ["dodge_roll_base_travel_distance"]=5697, - ["dodge_roll_can_avoid_all_damage"]=5698, - ["dodge_roll_phasing_without_visual"]=5699, - ["dodge_roll_travel_distance_+_if_dodge_rolled_recently"]=4065, - ["dodge_roll_travel_distance_+_if_not_dodge_rolled_recently"]=4064, - ["doedre_aura_damage_+%_final"]=5700, - ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2684, - ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2687, - ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2686, - ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2685, - ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=5701, - ["dominating_blow_duration_+%"]=3529, - ["dominating_blow_minion_damage_+%"]=3340, - ["dominating_blow_skill_attack_damage_+%"]=3341, - ["dot_multiplier_+"]=1164, - ["dot_multiplier_+_if_crit_in_past_8_seconds"]=5702, - ["dot_multiplier_+_while_affected_by_malevolence"]=5703, - ["dot_multiplier_+_with_bow_skills"]=5704, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=5705, - ["double_armour_effect"]=5706, - ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=5708, - ["double_damage_chance_%_if_below_100_strength"]=5707, - ["double_effect_of_consuming_frenzy_charges"]=5709, - ["double_evasion_rating_from_gloves_helmets_boots"]=5710, - ["double_number_of_poison_you_can_inflict"]=5711, - ["double_slash_critical_strike_chance_+%"]=3772, - ["double_slash_damage_+%"]=3765, - ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=5712, - ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=5712, - ["double_slash_radius_+%"]=3774, - ["double_strike_attack_speed_+%"]=3484, - ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=5713, - ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2901, - ["double_strike_critical_strike_chance_+%"]=3567, - ["double_strike_damage_+%"]=3269, - ["drain_%_max_mana_to_activate_expended_charms"]=5714, - ["drain_focus_%_of_damage_dealt_on_hit"]=5715, - ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=5716, - ["dread_banner_aura_effect_+%"]=5717, - ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner"]=5718, - ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50"]=5719, - ["dread_banner_mana_reservation_efficiency_+%"]=5720, - ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=5721, - ["dual_strike_attack_speed_+%"]=3485, - ["dual_strike_attack_speed_+%_while_wielding_claw"]=5722, - ["dual_strike_critical_strike_chance_+%"]=3568, - ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=5723, - ["dual_strike_damage_+%"]=3270, - ["dual_strike_intimidate_on_hit_while_wielding_axe"]=5724, - ["dual_strike_main_hand_deals_double_damage_%"]=5725, - ["dual_strike_melee_splash_while_wielding_mace"]=5726, - ["dual_strike_melee_splash_with_off_hand_weapon"]=5727, - ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=5728, - ["dual_wield_or_shield_block_%"]=1097, - ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=5729, - ["duration_of_ailments_on_self_+%_per_fortification"]=5730, - ["each_arrow_fired_gains_random_perdandus_prefix"]=5731, - ["earthquake_and_earthshatter_shatter_on_killing_blow"]=5732, - ["earthquake_damage_+%"]=3372, - ["earthquake_damage_+%_per_100ms_duration"]=5733, - ["earthquake_duration_+%"]=3557, - ["earthquake_radius_+%"]=3475, - ["earthshatter_area_of_effect_+%"]=5734, - ["earthshatter_damage_+%"]=5735, - ["electrocuted_enemy_damage_taken_+%"]=5736, - ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=5737, - ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=5738, - ["elemental_ailment_types_apply_damage_taken_+%"]=5739, - ["elemental_ailments_reflected_to_self"]=5740, - ["elemental_critical_strike_chance_+%"]=1348, - ["elemental_critical_strike_multiplier_+"]=1369, - ["elemental_damage_+%"]=1692, - ["elemental_damage_+%_during_flask_effect"]=3849, - ["elemental_damage_+%_final_per_righteous_charge"]=5745, - ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=5746, - ["elemental_damage_+%_if_enemy_chilled_recently"]=5747, - ["elemental_damage_+%_if_enemy_ignited_recently"]=5748, - ["elemental_damage_+%_if_enemy_shocked_recently"]=5749, - ["elemental_damage_+%_if_have_crit_recently"]=5750, - ["elemental_damage_+%_if_used_a_warcry_recently"]=5751, - ["elemental_damage_+%_per_10_devotion"]=5752, - ["elemental_damage_+%_per_10_dexterity"]=5753, - ["elemental_damage_+%_per_12_int"]=5754, - ["elemental_damage_+%_per_12_strength"]=5755, - ["elemental_damage_+%_per_divine_charge"]=4021, - ["elemental_damage_+%_per_frenzy_charge"]=1845, - ["elemental_damage_+%_per_level"]=2663, - ["elemental_damage_+%_per_power_charge"]=5756, - ["elemental_damage_+%_per_sextant_affecting_area"]=5757, - ["elemental_damage_+%_per_stackable_unique_jewel"]=3786, - ["elemental_damage_+%_while_affected_by_a_herald"]=5758, - ["elemental_damage_+%_while_in_area_affected_by_sextant"]=5759, - ["elemental_damage_additional_rolls_lucky_shocked"]=5741, - ["elemental_damage_can_freeze"]=5742, - ["elemental_damage_can_ignite"]=5743, - ["elemental_damage_can_inflict_bleeding"]=5744, - ["elemental_damage_can_shock"]=2573, - ["elemental_damage_reduction_%_from_evasion_rating"]=5760, - ["elemental_damage_resistance_+%"]=5761, - ["elemental_damage_resisted_by_lowest_elemental_resistance"]=5762, - ["elemental_damage_taken_%_as_chaos"]=2175, - ["elemental_damage_taken_%_recouped_as_life"]=5763, - ["elemental_damage_taken_+%"]=2956, - ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=2983, - ["elemental_damage_taken_+%_during_flask_effect"]=3711, - ["elemental_damage_taken_+%_final_per_raised_zombie"]=5764, - ["elemental_damage_taken_+%_if_been_hit_recently"]=5766, - ["elemental_damage_taken_+%_if_not_hit_recently"]=5767, - ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=5768, - ["elemental_damage_taken_+%_per_endurance_charge"]=5769, - ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3683, - ["elemental_damage_taken_+%_while_stationary"]=5770, - ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=5765, - ["elemental_damage_with_attack_skills_+%"]=885, - ["elemental_damage_with_attack_skills_+%_per_power_charge"]=5771, - ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2461, - ["elemental_golem_granted_buff_effect_+%"]=3722, - ["elemental_golem_immunity_to_elemental_damage"]=3719, - ["elemental_golems_maximum_life_is_doubled"]=5772, - ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=5773, - ["elemental_hit_attack_speed_+%"]=3492, - ["elemental_hit_cannot_roll_cold_damage"]=5774, - ["elemental_hit_cannot_roll_fire_damage"]=5775, - ["elemental_hit_cannot_roll_lightning_damage"]=5776, - ["elemental_hit_chance_to_freeze_shock_ignite_%"]=3609, - ["elemental_hit_damage_+%"]=3314, - ["elemental_hit_damage_taken_%_as_physical"]=5777, - ["elemental_hit_deals_50%_less_cold_damage"]=5778, - ["elemental_hit_deals_50%_less_fire_damage"]=5779, - ["elemental_hit_deals_50%_less_lightning_damage"]=5780, - ["elemental_overload_rotation_active"]=9640, - ["elemental_penetration_%_during_flask_effect"]=3885, - ["elemental_penetration_%_if_you_have_a_power_charge"]=5782, - ["elemental_penetration_%_while_chilled"]=5783, - ["elemental_penetration_can_go_down_to_override"]=5781, - ["elemental_reflect_damage_taken_+%"]=2418, - ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=5785, - ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=5784, - ["elemental_resistance_%_per_10_devotion"]=5788, - ["elemental_resistance_%_per_minion_up_to_30%"]=5786, - ["elemental_resistance_%_per_stackable_unique_jewel"]=3787, - ["elemental_resistance_%_when_on_low_life"]=1447, - ["elemental_resistance_+%_per_15_ascendance"]=1116, - ["elemental_resistance_cannot_be_lowered_by_curses"]=5787, - ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3697, - ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=5789, - ["elemental_skill_chance_to_blind_nearby_enemies_%"]=5790, - ["elemental_skill_gem_level_+"]=5791, - ["elemental_skills_deal_triple_damage"]=5792, - ["elemental_storm_cooldown_recovery_speed_+%_final"]=5793, - ["elemental_weakness_curse_effect_+%"]=3639, - ["elemental_weakness_duration_+%"]=3547, - ["elemental_weakness_ignores_hexproof"]=2318, - ["elemental_weakness_no_reservation"]=5794, - ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3263, - ["elementalist_area_of_effect_+%_for_5_seconds"]=5795, - ["elementalist_chill_maximum_magnitude_override"]=5796, - ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3259, - ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3256, - ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3258, - ["elementalist_elemental_damage_+%_for_5_seconds"]=5797, - ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3261, - ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=5798, - ["elementalist_ignite_effect_+%_final"]=5799, - ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3260, - ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3862, - ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3262, - ["elusive_effect_+%"]=5800, - ["elusive_effect_on_self_+%_per_power_charge"]=4024, - ["ember_projectile_spread_area_+%"]=5801, - ["empowered_attack_damage_+%"]=5802, - ["empowered_attack_double_damage_%_chance"]=5803, - ["empowered_attack_hit_damage_stun_multiplier_+%"]=5804, - ["enable_ring_slot_3"]=5805, - ["enchantment_boots_added_cold_damage_when_hit_maximum"]=2907, - ["enchantment_boots_added_cold_damage_when_hit_minimum"]=2907, - ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2906, - ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=2970, - ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2842, - ["enchantment_boots_mana_costs_when_hit_+%"]=2903, - ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=5806, - ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2972, - ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2909, - ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2908, - ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2972, - ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=2909, - ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2908, - ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=2910, - ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=2971, - ["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=2911, - ["enchantment_boots_stun_avoid_%_on_kill"]=2904, - ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3196, - ["endurance_charge_duration_+%"]=1832, - ["endurance_charge_on_hit_%_vs_no_armour"]=5807, - ["endurance_charge_on_kill_%"]=2339, - ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=5808, - ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=5809, - ["endurance_charge_on_off_hand_kill_%"]=3101, - ["endurance_only_conduit"]=1985, - ["enduring_cry_buff_effect_+%"]=3737, - ["enduring_cry_cooldown_speed_+%"]=3518, - ["enduring_cry_grants_x_additional_endurance_charges"]=5810, - ["enemies_affected_by_your_hazards_recently_have_+%_armour"]=5811, - ["enemies_affected_by_your_hazards_recently_have_+%_evasion_rating"]=5812, - ["enemies_are_maimed_for_x_seconds_after_becoming_unpinned"]=5813, - ["enemies_blinded_by_you_while_blinded_have_malediction"]=5814, - ["enemies_chaos_resistance_%_while_cursed"]=3687, - ["enemies_chill_as_unfrozen"]=1623, - ["enemies_chilled_by_bane_and_contagion"]=5815, - ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=5816, - ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=5817, - ["enemies_damage_taken_+%_while_cursed"]=3394, - ["enemies_explode_for_%_life_as_physical_damage"]=5818, - ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=5819, - ["enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"]=5820, - ["enemies_explode_on_kill"]=5821, - ["enemies_explode_on_kill_while_unhinged"]=5822, - ["enemies_extra_damage_rolls_with_lightning_damage"]=5823, - ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=5824, - ["enemies_hitting_you_drop_burning_ground_%"]=5825, - ["enemies_hitting_you_drop_chilled_ground_%"]=5826, - ["enemies_hitting_you_drop_shocked_ground_%"]=5827, - ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=5828, - ["enemies_in_presence_are_blinded"]=5829, - ["enemies_in_presence_are_intimidated"]=5830, - ["enemies_in_presence_cooldown_recovery_+%"]=5831, - ["enemies_in_presence_count_as_low_life"]=5832, - ["enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance"]=5833, - ["enemies_in_presence_gain_critical_weakness_every_second_for_seconds"]=5834, - ["enemies_in_presence_have_fire_exposure"]=5835, - ["enemies_in_presence_have_life_reserved_%"]=5836, - ["enemies_in_presence_have_no_elemental_resistances"]=5837, - ["enemies_in_presence_lightning_resist_equal_to_yours"]=5838, - ["enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=5839, - ["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=5840, - ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=5841, - ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=5842, - ["enemies_near_link_skill_target_have_exposure"]=5843, - ["enemies_near_marked_enemy_are_blinded"]=5844, - ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=5845, - ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=5846, - ["enemies_taunted_by_you_cannot_evade_attacks"]=5847, - ["enemies_taunted_by_your_warcies_are_intimidated"]=5848, - ["enemies_taunted_by_your_warcries_are_unnerved"]=5849, - ["enemies_that_hit_you_inflict_temporal_chains"]=5850, - ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=5851, - ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4028, - ["enemies_you_bleed_grant_flask_charges_+%"]=2212, - ["enemies_you_blind_have_critical_strike_chance_+%"]=5852, - ["enemies_you_curse_are_intimidated"]=5853, - ["enemies_you_curse_are_unnerved"]=5854, - ["enemies_you_curse_cannot_recharge_energy_shield"]=5855, - ["enemies_you_curse_have_15%_hinder"]=5856, - ["enemies_you_curse_have_malediction"]=3395, - ["enemies_you_expose_have_self_elemental_status_duration_+%"]=5857, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=5858, - ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=5859, - ["enemies_you_ignite_wither_does_not_expire"]=5860, - ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=5861, - ["enemies_you_maim_have_damage_taken_over_time_+%"]=5862, - ["enemies_you_shock_cast_speed_+%"]=3905, - ["enemies_you_shock_movement_speed_+%"]=3906, - ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=5863, - ["enemies_you_wither_have_all_resistances_%"]=5864, - ["enemy_additional_critical_strike_chance_permyriad_against_self"]=2806, - ["enemy_aggro_radius_+%"]=2818, - ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2807, - ["enemy_evasion_+%_if_you_have_hit_them_recently"]=5865, - ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=5866, - ["enemy_extra_damage_rolls_when_on_full_life"]=5867, - ["enemy_extra_damage_rolls_when_on_low_life"]=2274, - ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2791, - ["enemy_hits_against_you_have_distance_based_accuracy_falloff"]=5868, - ["enemy_hits_roll_low_damage"]=2271, - ["enemy_knockback_direction_is_reversed"]=2700, - ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=5869, - ["enemy_non_skill_physical_damage_%_as_extra_fire_vs_you"]=1645, - ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2347, - ["enemy_phys_reduction_%_penalty_vs_hit"]=2665, - ["enemy_shock_on_kill"]=1624, - ["enemy_spell_critical_strike_chance_+%_against_self"]=5870, - ["energy_generated_+%"]=5871, - ["energy_generation_is_doubled"]=5873, - ["energy_shield_%_gained_on_block"]=2186, - ["energy_shield_%_of_armour_rating_gained_on_block"]=2187, - ["energy_shield_%_to_lose_on_block"]=2444, - ["energy_shield_+%_if_both_rings_have_evasion_mod"]=5874, - ["energy_shield_+%_if_consumed_power_charge_recently"]=5875, - ["energy_shield_+%_per_10_strength"]=5889, - ["energy_shield_+%_per_power_charge"]=5890, - ["energy_shield_+_per_8_evasion_on_boots"]=5876, - ["energy_shield_additive_modifiers_instead_apply_to_ward"]=5877, - ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2357, - ["energy_shield_delay_-%"]=1403, - ["energy_shield_delay_-%_if_stunned_recently"]=5878, - ["energy_shield_delay_-%_when_not_on_full_life"]=5879, - ["energy_shield_delay_-%_while_affected_by_discipline"]=5880, - ["energy_shield_delay_during_flask_effect_-%"]=3221, - ["energy_shield_from_focus_+%"]=5881, - ["energy_shield_from_gloves_and_boots_+%"]=5882, - ["energy_shield_from_helmet_+%"]=5883, - ["energy_shield_gain_per_target"]=1474, - ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=5884, - ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=5885, - ["energy_shield_gained_on_block"]=1485, - ["energy_shield_gained_on_enemy_death_per_level"]=2661, - ["energy_shield_increased_by_overcapped_cold_resistance"]=5886, - ["energy_shield_lost_per_minute_%"]=5887, - ["energy_shield_per_level"]=5888, - ["energy_shield_protects_mana"]=2790, - ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=5891, - ["energy_shield_recharge_delay_override_ms"]=5892, - ["energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently"]=3383, - ["energy_shield_recharge_not_delayed_by_damage"]=1404, + ["base_stun_threshold_reduction_+%"]=1003, + ["base_thorns_critical_strike_chance"]=4604, + ["base_thorns_critical_strike_multiplier_+"]=4605, + ["base_total_number_of_sigils_allowed"]=4606, + ["base_unaffected_by_poison"]=4607, + ["base_unholy_might_granted_magnitude_+%"]=4608, + ["base_ward"]=1371, + ["base_weapon_trap_rotation_speed_+%"]=4609, + ["base_weapon_trap_total_rotation_%"]=4610, + ["base_zombie_maximum_life_+%"]=1477, + ["battlemages_cry_buff_effect_+%"]=4611, + ["battlemages_cry_exerts_x_additional_attacks"]=4612, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4613, + ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4614, + ["bear_trap_cooldown_speed_+%"]=3455, + ["bear_trap_damage_+%"]=3291, + ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4615, + ["bear_trap_movement_speed_+%_final"]=4616, + ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4617, + ["berserk_buff_effect_+%"]=4619, + ["berserk_rage_loss_+%"]=4620, + ["berserker_damage_+%_final"]=3625, + ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4621, + ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4622, + ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4623, + ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4624, + ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4625, + ["blackhole_damage_taken_+%"]=4626, + ["blackhole_pulse_frequency_+%"]=4627, + ["blackstar_moonlight_cold_damage_taken_+%_final"]=4628, + ["blackstar_moonlight_fire_damage_taken_+%_final"]=4629, + ["blackstar_sunlight_cold_damage_taken_+%_final"]=4630, + ["blackstar_sunlight_fire_damage_taken_+%_final"]=4631, + ["blade_blase_damage_+%"]=4632, + ["blade_blast_skill_area_of_effect_+%"]=4633, + ["blade_blast_trigger_detonation_area_of_effect_+%"]=4634, + ["blade_trap_damage_+%"]=4635, + ["blade_trap_skill_area_of_effect_+%"]=4636, + ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4637, + ["blade_vortex_blade_deal_no_non_physical_damage"]=4638, + ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4639, + ["blade_vortex_damage_+%"]=3314, + ["blade_vortex_duration_+%"]=3502, + ["blade_vortex_radius_+%"]=3418, + ["bladefall_critical_strike_chance_+%"]=3521, + ["bladefall_damage_+%"]=3315, + ["bladefall_number_of_volleys"]=4640, + ["bladefall_radius_+%"]=3419, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4641, + ["bladestorm_damage_+%"]=4642, + ["bladestorm_maximum_number_of_storms_allowed"]=4643, + ["bladestorm_sandstorm_movement_speed_+%"]=4644, + ["blast_rain_%_chance_for_additional_blast"]=3677, + ["blast_rain_damage_+%"]=3311, + ["blast_rain_number_of_blasts"]=3564, + ["blast_rain_radius_+%"]=3415, + ["blast_rain_single_additional_projectile"]=3565, + ["blazing_salvo_damage_+%"]=4645, + ["blazing_salvo_number_of_additional_projectiles"]=4646, + ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4647, + ["bleed_chance_+%"]=4648, + ["bleed_duration_per_12_intelligence_+%"]=3377, + ["bleed_on_bow_attack_chance_%"]=2176, + ["bleed_on_crit_%"]=4649, + ["bleed_on_crit_%_with_attacks"]=2173, + ["bleed_on_hit_with_attacks_%"]=2177, + ["bleed_on_melee_attack_chance_%"]=2175, + ["bleed_on_melee_crit_chance_%"]=2174, + ["bleed_on_melee_critical_strike"]=3838, + ["bleed_on_stun"]=2172, + ["bleeding_damage_on_self_taken_as_fire_instead"]=2141, + ["bleeding_effect_+%_per_endurance_charge"]=4651, + ["bleeding_effect_+%_per_frenzy_charge"]=4652, + ["bleeding_effect_+%_per_impale_on_enemy"]=4653, + ["bleeding_effect_+%_per_rage_if_equipped_axe"]=4654, + ["bleeding_effect_+%_vs_poisoned_enemies"]=4655, + ["bleeding_effect_+%_when_consuming_incision"]=4656, + ["bleeding_enemies_cannot_regenerate_life"]=4657, + ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3076, + ["bleeding_magnitude_+%_against_pinned_enemies"]=4658, + ["bleeding_monsters_movement_velocity_+%"]=2613, + ["bleeding_no_extra_damage_while_target_is_moving"]=4659, + ["bleeding_on_self_expire_speed_+%_while_moving"]=4660, + ["bleeding_reflected_to_self"]=4661, + ["bleeding_stacks_up_to_x_times"]=4662, + ["blight_arc_tower_additional_chains"]=4663, + ["blight_arc_tower_additional_repeats"]=4664, + ["blight_arc_tower_chance_to_sap_%"]=4665, + ["blight_arc_tower_damage_+%"]=4666, + ["blight_arc_tower_range_+%"]=4667, + ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4668, + ["blight_cast_speed_+%"]=4669, + ["blight_chilling_tower_chill_effect_+%"]=4670, + ["blight_chilling_tower_damage_+%"]=4671, + ["blight_chilling_tower_duration_+%"]=4672, + ["blight_chilling_tower_range_+%"]=4673, + ["blight_damage_+%"]=3324, + ["blight_duration_+%"]=3504, + ["blight_empowering_tower_buff_effect_+%"]=4674, + ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4677, + ["blight_empowering_tower_grant_cast_speed_+%"]=4675, + ["blight_empowering_tower_grant_damage_+%"]=4676, + ["blight_empowering_tower_range_+%"]=4678, + ["blight_fireball_tower_additional_projectiles_+"]=4679, + ["blight_fireball_tower_cast_speed_+%"]=4680, + ["blight_fireball_tower_damage_+%"]=4681, + ["blight_fireball_tower_projectiles_nova"]=4682, + ["blight_fireball_tower_range_+%"]=4683, + ["blight_flamethrower_tower_cast_speed_+%"]=4684, + ["blight_flamethrower_tower_chance_to_scorch_%"]=4685, + ["blight_flamethrower_tower_damage_+%"]=4686, + ["blight_flamethrower_tower_full_damage_fire_enemies"]=4687, + ["blight_flamethrower_tower_range_+%"]=4688, + ["blight_freezebolt_tower_chance_to_brittle_%"]=4689, + ["blight_freezebolt_tower_damage_+%"]=4690, + ["blight_freezebolt_tower_full_damage_cold_enemies"]=4691, + ["blight_freezebolt_tower_projectiles_+"]=4692, + ["blight_freezebolt_tower_range_+%"]=4693, + ["blight_glacialcage_tower_area_of_effect_+%"]=4694, + ["blight_glacialcage_tower_cooldown_recovery_+%"]=4695, + ["blight_glacialcage_tower_duration_+%"]=4696, + ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4697, + ["blight_glacialcage_tower_range_+%"]=4698, + ["blight_hinder_enemy_chaos_damage_taken_+%"]=4699, + ["blight_imbuing_tower_buff_effect_+%"]=4700, + ["blight_imbuing_tower_grant_critical_strike_+%"]=4701, + ["blight_imbuing_tower_grant_damage_+%"]=4702, + ["blight_imbuing_tower_grants_onslaught"]=4703, + ["blight_imbuing_tower_range_+%"]=4704, + ["blight_lightningstorm_tower_area_of_effect_+%"]=4705, + ["blight_lightningstorm_tower_damage_+%"]=4706, + ["blight_lightningstorm_tower_delay_+%"]=4707, + ["blight_lightningstorm_tower_range_+%"]=4708, + ["blight_lightningstorm_tower_storms_on_enemies"]=4709, + ["blight_meteor_tower_additional_meteor_+"]=4710, + ["blight_meteor_tower_always_stun"]=4711, + ["blight_meteor_tower_creates_burning_ground_ms"]=4712, + ["blight_meteor_tower_damage_+%"]=4713, + ["blight_meteor_tower_range_+%"]=4714, + ["blight_radius_+%"]=3424, + ["blight_scout_tower_additional_minions_+"]=4715, + ["blight_scout_tower_minion_damage_+%"]=4716, + ["blight_scout_tower_minion_life_+%"]=4717, + ["blight_scout_tower_minion_movement_speed_+%"]=4718, + ["blight_scout_tower_minions_inflict_malediction"]=4719, + ["blight_scout_tower_range_+%"]=4720, + ["blight_secondary_skill_effect_duration_+%"]=4721, + ["blight_seismic_tower_additional_cascades_+"]=4722, + ["blight_seismic_tower_cascade_range_+%"]=4723, + ["blight_seismic_tower_damage_+%"]=4724, + ["blight_seismic_tower_range_+%"]=4725, + ["blight_seismic_tower_stun_duration_+%"]=4726, + ["blight_sentinel_tower_minion_damage_+%"]=4727, + ["blight_sentinel_tower_minion_life_+%"]=4728, + ["blight_sentinel_tower_minion_movement_speed_+%"]=4729, + ["blight_sentinel_tower_range_+%"]=4730, + ["blight_shocking_tower_damage_+%"]=4731, + ["blight_shocking_tower_range_+%"]=4732, + ["blight_shocknova_tower_full_damage_lightning_enemies"]=4733, + ["blight_shocknova_tower_shock_additional_repeats"]=4734, + ["blight_shocknova_tower_shock_effect_+%"]=4735, + ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=4736, + ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=4737, + ["blight_smothering_tower_buff_effect_+%"]=4738, + ["blight_smothering_tower_freeze_shock_ignite_%"]=4739, + ["blight_smothering_tower_grant_damage_+%"]=4740, + ["blight_smothering_tower_grant_movement_speed_+%"]=4741, + ["blight_smothering_tower_range_+%"]=4742, + ["blight_stonegaze_tower_cooldown_recovery_+%"]=4743, + ["blight_stonegaze_tower_duration_+%"]=4744, + ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=4745, + ["blight_stonegaze_tower_petrify_tick_speed_+%"]=4746, + ["blight_stonegaze_tower_range_+%"]=4747, + ["blight_summoning_tower_minion_damage_+%"]=4748, + ["blight_summoning_tower_minion_life_+%"]=4749, + ["blight_summoning_tower_minion_movement_speed_+%"]=4750, + ["blight_summoning_tower_minions_summoned_+"]=4751, + ["blight_summoning_tower_range_+%"]=4752, + ["blight_temporal_tower_buff_effect_+%"]=4753, + ["blight_temporal_tower_grant_you_action_speed_-%"]=4754, + ["blight_temporal_tower_grants_stun_immunity"]=4755, + ["blight_temporal_tower_range_+%"]=4756, + ["blight_temporal_tower_tick_speed_+%"]=4757, + ["blight_tertiary_skill_effect_duration"]=4758, + ["blight_tower_arc_damage_+%"]=4759, + ["blight_tower_chilling_cost_+%"]=4760, + ["blight_tower_damage_per_tower_type_+%"]=4761, + ["blight_tower_fireball_additional_projectile"]=4762, + ["blighted_map_chest_reward_lucky_count"]=4763, + ["blighted_map_tower_damage_+%_final"]=4764, + ["blind_chance_+%"]=4765, + ["blind_chilled_enemies_on_hit_%"]=4766, + ["blind_does_not_affect_chance_to_hit"]=4767, + ["blind_does_not_affect_light_radius"]=4768, + ["blind_duration_+%"]=3039, + ["blind_effect_+%"]=4769, + ["blind_enemies_when_hit_%_chance"]=4770, + ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=4771, + ["blind_enemies_when_they_stun_you"]=4772, + ["blind_nearby_enemies_when_ignited_%"]=2677, + ["blind_on_poison_inflicted"]=4773, + ["blind_reflected_to_self"]=4774, + ["blink_and_mirror_arrow_cooldown_speed_+%"]=4775, + ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3444, + ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3304, + ["blink_arrow_cooldown_speed_+%"]=3460, + ["block_%_damage_taken_from_elemental"]=4782, + ["block_%_damage_taken_while_active_blocking"]=4783, + ["block_%_if_blocked_an_attack_recently"]=4784, + ["block_%_while_affected_by_determination"]=4785, + ["block_and_stun_+%_recovery_per_fortification"]=4776, + ["block_causes_monster_flee_%"]=2607, + ["block_chance_%_per_50_strength"]=1078, + ["block_chance_%_while_holding_shield"]=1082, + ["block_chance_+%"]=1084, + ["block_chance_+%_against_projectiles"]=4777, + ["block_chance_+%_if_blocked_with_active_block_recently"]=4778, + ["block_chance_+%_if_you_have_at_least_100_tribute"]=4779, + ["block_chance_+%_while_surrounded"]=4780, + ["block_chance_from_equipped_shield_is_%"]=4781, + ["block_chance_on_damage_taken_%"]=2842, + ["block_recovery_+%"]=1085, + ["block_while_dual_wielding_%"]=1080, + ["block_while_dual_wielding_claws_%"]=1081, + ["blood_footprints_from_item"]=9933, + ["blood_mage_flask_life_to_recover_+%_final"]=4786, + ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3674, + ["blood_rage_grants_additional_attack_speed_+%"]=3673, + ["blood_sand_armour_mana_reservation_+%"]=4787, + ["blood_sand_mana_reservation_efficiency_+%"]=4789, + ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=4788, + ["blood_sand_stance_buff_effect_+%"]=4790, + ["blood_spears_area_of_effect_+%"]=4791, + ["blood_spears_base_number_of_spears"]=4792, + ["blood_spears_damage_+%"]=4793, + ["bloodlust_zone_%_of_max_health"]=4794, + ["bloodreap_damage_+%"]=4795, + ["bloodreap_skill_area_of_effect_+%"]=4796, + ["body_armour_+%"]=4797, + ["body_armour_evasion_rating_+%"]=4798, + ["body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage"]=4799, + ["body_armour_grants_base_armour_applies_to_chaos_damage"]=4800, + ["body_armour_grants_unaffected_by_ignite"]=4801, + ["body_armour_grants_x_base_cold_damage_resistance_%"]=4802, + ["body_armour_grants_x_base_fire_damage_resistance_%"]=4803, + ["body_armour_grants_x_base_lightning_damage_resistance_%"]=4804, + ["body_armour_grants_x_base_maximum_fire_damage_resistance_%"]=4805, + ["body_armour_grants_x_base_self_critical_strike_multiplier_-%"]=4806, + ["body_armour_grants_x_life_regeneration_rate_per_minute_%"]=4807, + ["body_armour_grants_x_maximum_life_+%"]=4808, + ["body_armour_grants_x_physical_damage_taken_%_as_fire"]=4809, + ["body_armour_grants_x_strength_+%"]=4810, + ["body_armour_grants_x_stun_threshold_+%"]=4811, + ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=4812, + ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=4813, + ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=4814, + ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=4815, + ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=4816, + ["body_armour_implicit_gain_power_charge_every_x_ms"]=4817, + ["bone_golem_damage_+%"]=4818, + ["bone_golem_elemental_resistances_%"]=4819, + ["bone_lance_cast_speed_+%"]=4820, + ["bone_lance_damage_+%"]=4821, + ["bone_offering_block_chance_+%"]=3689, + ["bone_offering_duration_+%"]=3478, + ["bone_offering_effect_+%"]=1091, + ["boneshatter_chance_to_gain_+1_trauma"]=4822, + ["boneshatter_damage_+%"]=4824, + ["boneshatter_damage_+%_final_if_created_from_unique"]=4823, + ["boneshatter_stun_duration_+%"]=4825, + ["boots_implicit_accuracy_rating_+%_final"]=4826, + ["boss_maximum_life_+%_final"]=4827, + ["bow_accuracy_rating"]=1692, + ["bow_accuracy_rating_+%"]=1297, + ["bow_attack_speed_+%"]=1280, + ["bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount"]=5340, + ["bow_attacks_have_culling_strike"]=4828, + ["bow_critical_strike_chance_+%"]=1317, + ["bow_critical_strike_multiplier_+"]=1343, + ["bow_damage_+%"]=1210, + ["bow_elemental_damage_+%"]=1214, + ["bow_physical_damage_+%_while_holding_shield"]=1678, + ["bow_skill_gem_level_+"]=4829, + ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2600, + ["bow_stun_duration_+%"]=1568, + ["bow_stun_threshold_reduction_+%"]=1363, + ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=4830, + ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=4831, + ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=4832, + ["brands_reattach_on_activation"]=4833, + ["breach_flame_effects_doubled"]=4834, + ["breachstone_commanders_%_drop_additional_fragments"]=4835, + ["breachstone_commanders_%_drop_additional_maps"]=4836, + ["breachstone_commanders_%_drop_additional_scarabs"]=4837, + ["breachstone_commanders_%_drop_additional_unique_items"]=4838, + ["breachstone_commanders_drop_additional_catalysts"]=4839, + ["breachstone_commanders_drop_additional_currency_items"]=4840, + ["breachstone_commanders_drop_additional_delirium_items"]=4841, + ["breachstone_commanders_drop_additional_divination_cards"]=4842, + ["breachstone_commanders_drop_additional_enchanted_items"]=4843, + ["breachstone_commanders_drop_additional_essences"]=4844, + ["breachstone_commanders_drop_additional_fossils"]=4845, + ["breachstone_commanders_drop_additional_gem_items"]=4846, + ["breachstone_commanders_drop_additional_harbinger_shards"]=4847, + ["breachstone_commanders_drop_additional_incubators"]=4848, + ["breachstone_commanders_drop_additional_legion_splinters"]=4849, + ["breachstone_commanders_drop_additional_oils"]=4850, + ["break_%_armour_on_pin"]=4851, + ["broken_armour_and_sundered_armour_debuff_effect_+%"]=4852, + ["broken_armour_enemies_cannot_regenerate_life"]=4853, + ["buff_affects_party"]=1491, + ["buff_auras_dont_affect_allies"]=2658, + ["buff_duration_+%"]=1486, + ["buff_effect_+%_on_low_energy_shield"]=4854, + ["buff_effect_on_self_+%"]=1828, + ["buff_party_effect_radius_+%"]=1492, + ["buff_time_passed_+%"]=4856, + ["buff_time_passed_+%_only_buff_category"]=4855, + ["buildup_jade_every_x_ms"]=4857, + ["burn_damage_+%"]=1575, + ["burning_and_explosive_arrow_shatter_on_killing_blow"]=4858, + ["burning_arrow_damage_+%"]=3213, + ["burning_arrow_debuff_effect_+%"]=4859, + ["burning_arrow_physical_damage_%_to_gain_as_fire_damage"]=3533, + ["burning_damage_+%_if_ignited_an_enemy_recently"]=3881, + ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=4860, + ["burning_damage_taken_+%"]=2234, + ["can_apply_additional_chill"]=4861, + ["can_apply_additional_shock"]=4862, + ["can_block_from_all_directions"]=4863, + ["can_catch_corrupted_fish"]=2520, + ["can_catch_exotic_fish"]=2519, + ["can_catch_scourged_fish"]=4864, + ["can_have_2_companions"]=4865, + ["can_only_have_one_ancestor_totem_buff"]=4866, + ["can_place_multiple_banners"]=4867, + ["can_use_one_hand_mace_skills_while_unarmed"]=4868, + ["can_use_quarterstaff_skills_while_unarmed"]=4869, + ["can_wield_2h_axe_sword_mace_in_one_hand"]=4870, + ["cannot_adapt_to_cold"]=4871, + ["cannot_adapt_to_fire"]=4872, + ["cannot_adapt_to_lightning"]=4873, + ["cannot_be_affected_by_flasks"]=3332, + ["cannot_be_blinded"]=2621, + ["cannot_be_blinded_while_affected_by_precision"]=4874, + ["cannot_be_blinded_while_on_full_life"]=4875, + ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=4876, + ["cannot_be_chilled_or_frozen_while_moving"]=4877, + ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=4878, + ["cannot_be_chilled_while_burning"]=4879, + ["cannot_be_crit_if_you_have_been_stunned_recently"]=4880, + ["cannot_be_cursed_with_silence"]=2725, + ["cannot_be_damaged"]=1406, + ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=4881, + ["cannot_be_frozen_if_you_have_been_frozen_recently"]=4882, + ["cannot_be_frozen_with_dex_higher_than_int"]=4883, + ["cannot_be_ignited_if_you_have_been_ignited_recently"]=4884, + ["cannot_be_ignited_while_at_maximum_endurance_charges"]=4885, + ["cannot_be_ignited_while_flame_golem_summoned"]=4886, + ["cannot_be_ignited_with_strength_higher_than_dex"]=4887, + ["cannot_be_inflicted_by_corrupted_blood"]=4888, + ["cannot_be_killed_by_elemental_reflect"]=2352, + ["cannot_be_knocked_back"]=1365, + ["cannot_be_light_stunned"]=4889, + ["cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds"]=4890, + ["cannot_be_light_stunned_if_have_not_been_hit_recently"]=4891, + ["cannot_be_light_stunned_if_you_have_been_stunned_recently"]=4892, + ["cannot_be_poisoned"]=2980, + ["cannot_be_poisoned_if_x_poisons_on_you"]=4893, + ["cannot_be_poisoned_while_bleeding"]=4894, + ["cannot_be_shocked_if_you_have_been_shocked_recently"]=4895, + ["cannot_be_shocked_or_ignited_while_moving"]=4896, + ["cannot_be_shocked_while_at_maximum_endurance_charges"]=3746, + ["cannot_be_shocked_while_at_maximum_power_charges"]=4897, + ["cannot_be_shocked_while_frozen"]=2560, + ["cannot_be_shocked_while_lightning_golem_summoned"]=4898, + ["cannot_be_shocked_with_int_higher_than_strength"]=4899, + ["cannot_be_stunned"]=1858, + ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=3909, + ["cannot_be_stunned_by_blocked_hits"]=4900, + ["cannot_be_stunned_by_hits_of_only_physical_damage"]=4901, + ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=3908, + ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=3919, + ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=4902, + ["cannot_be_stunned_if_you_have_ghost_dance"]=4903, + ["cannot_be_stunned_when_on_low_life"]=1860, + ["cannot_be_stunned_while_at_max_endurance_charges"]=3622, + ["cannot_be_stunned_while_bleeding"]=4904, + ["cannot_be_stunned_while_fortified"]=4905, + ["cannot_be_stunned_while_leeching"]=2837, + ["cannot_be_stunned_while_using_chaos_skill"]=4906, + ["cannot_be_stunned_with_25_rage"]=8916, + ["cannot_block"]=2885, + ["cannot_block_while_no_energy_shield"]=2404, + ["cannot_cast_curses"]=2359, + ["cannot_cast_spells"]=4907, + ["cannot_cause_bleeding"]=2177, + ["cannot_consume_power_frenzy_endurance_charges"]=4908, + ["cannot_crit_non_shocked_enemies"]=3704, + ["cannot_critical_strike_with_attacks"]=4909, + ["cannot_fish_from_water"]=4910, + ["cannot_freeze_shock_ignite_on_critical"]=2353, + ["cannot_gain_charges"]=4911, + ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=4912, + ["cannot_gain_endurance_charges_while_have_onslaught"]=2424, + ["cannot_gain_power_charges"]=2653, + ["cannot_gain_rage_during_soul_gain_prevention"]=4913, + ["cannot_gain_spirit_from_equipment"]=4914, + ["cannot_have_current_energy_shield"]=2747, + ["cannot_have_energy_shield_leeched_from"]=4915, + ["cannot_have_life_leeched_from"]=2131, + ["cannot_have_mana_leeched_from"]=2132, + ["cannot_have_more_than_1_damaging_ailment"]=4916, + ["cannot_have_more_than_1_non_damaging_ailment"]=4917, + ["cannot_immobilise_enemies"]=4918, + ["cannot_increase_quantity_of_dropped_items"]=2236, + ["cannot_increase_rarity_of_dropped_items"]=2235, + ["cannot_inflict_elemental_ailments"]=1566, + ["cannot_kill_enemies_with_hits"]=4919, + ["cannot_knockback"]=2649, + ["cannot_leech_life_from_critical_strikes"]=3836, + ["cannot_leech_or_regenerate_mana"]=2255, + ["cannot_leech_when_on_low_life"]=2256, + ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=3920, + ["cannot_penetrate_or_ignore_elemental_resistances"]=4920, + ["cannot_pierce"]=4921, + ["cannot_pin"]=4922, + ["cannot_receive_elemental_ailments_from_cursed_enemies"]=4923, + ["cannot_recharge_energy_shield"]=4924, + ["cannot_recover_above_low_life_except_flasks"]=4925, + ["cannot_recover_life_or_energy_shield_above_%"]=4926, + ["cannot_recover_mana_except_regeneration"]=4927, + ["cannot_regenerate_energy_shield"]=4928, + ["cannot_resist_cold_damage"]=1871, + ["cannot_sprint"]=4929, + ["cannot_stun"]=1559, + ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=3988, + ["cannot_take_reflected_elemental_damage"]=4930, + ["cannot_take_reflected_physical_damage"]=4931, + ["cannot_taunt_enemies"]=4932, + ["cannot_use_flask_in_fifth_slot"]=4933, + ["cannot_use_non_normal_body_armour"]=4934, + ["cannot_use_warcries"]=4935, + ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=4936, + ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=4937, + ["cast_blink_arrow_on_attack_with_mirror_arrow"]=4938, + ["cast_body_swap_on_detonate_dead_cast"]=4939, + ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=4940, + ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=4941, + ["cast_hydrosphere_while_channeling_winter_orb"]=4942, + ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=4943, + ["cast_linked_spells_on_shocked_enemy_kill_%"]=555, + ["cast_mirror_arrow_on_attack_with_blink_arrow"]=4944, + ["cast_socketed_minion_skills_on_bow_kill_%"]=556, + ["cast_socketed_spells_on_X_mana_spent"]=557, + ["cast_socketed_spells_on_mana_spent_%_chance"]=557, + ["cast_speed_+%_during_flask_effect"]=4949, + ["cast_speed_+%_for_4_seconds_on_attack"]=3127, + ["cast_speed_+%_if_enemy_killed_recently"]=4950, + ["cast_speed_+%_if_have_crit_recently"]=4951, + ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=4952, + ["cast_speed_+%_if_you_have_used_a_mana_flask_recently"]=4953, + ["cast_speed_+%_per_20_spirit"]=4945, + ["cast_speed_+%_per_corpse_consumed_recently"]=4954, + ["cast_speed_+%_per_frenzy_charge"]=1688, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=4946, + ["cast_speed_+%_per_power_charge"]=1305, + ["cast_speed_+%_when_on_full_life"]=1687, + ["cast_speed_+%_when_on_low_life"]=1686, + ["cast_speed_+%_while_affected_by_zealotry"]=4955, + ["cast_speed_+%_while_chilled"]=4956, + ["cast_speed_+%_while_holding_bow"]=1304, + ["cast_speed_+%_while_holding_shield"]=1302, + ["cast_speed_+%_while_holding_staff"]=1303, + ["cast_speed_+%_while_ignited"]=2591, + ["cast_speed_+%_while_on_full_mana"]=4957, + ["cast_speed_for_brand_skills_+%"]=4947, + ["cast_speed_for_chaos_skills_+%"]=1249, + ["cast_speed_for_cold_skills_+%"]=1238, + ["cast_speed_for_elemental_skills_+%"]=4948, + ["cast_speed_for_fire_skills_+%"]=1230, + ["cast_speed_for_lightning_skills_+%"]=1243, + ["cast_speed_while_dual_wielding_+%"]=1301, + ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=4958, + ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=4959, + ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=4960, + ["cat_aspect_reserves_no_mana"]=4961, + ["cats_stealth_duration_ms_+"]=4962, + ["cause_maim_on_critical_strike_attack"]=3643, + ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=4963, + ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=4964, + ["caustic_arrow_damage_+%"]=3273, + ["caustic_arrow_damage_over_time_+%"]=4965, + ["caustic_arrow_duration_+%"]=3512, + ["caustic_arrow_hit_damage_+%"]=4966, + ["caustic_arrow_radius_+%"]=3409, + ["caustic_arrow_withered_base_duration_ms"]=3274, + ["caustic_arrow_withered_on_hit_%"]=3274, + ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3042, + ["celestial_footprints_from_item"]=9934, + ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=4967, + ["chain_strike_cone_radius_+_per_12_rage"]=4968, + ["chain_strike_cone_radius_+_per_x_rage"]=4969, + ["chain_strike_damage_+%"]=4970, + ["chain_strike_gain_rage_on_hit_%_chance"]=4971, + ["chaining_range_+%"]=4972, + ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=4973, + ["chance_%_for_other_flasks_to_gain_charge_on_charge_gain"]=4974, + ["chance_%_to_create_shocking_ground_on_shock"]=4975, + ["chance_%_to_double_effect_of_removing_frenzy_charges"]=4976, + ["chance_%_to_drop_additional_awakened_sextant"]=4977, + ["chance_%_to_drop_additional_blessed_orb"]=4978, + ["chance_%_to_drop_additional_cartographers_chisel"]=4979, + ["chance_%_to_drop_additional_chaos_orb"]=4980, + ["chance_%_to_drop_additional_chromatic_orb"]=4981, + ["chance_%_to_drop_additional_cleansing_currency"]=5013, + ["chance_%_to_drop_additional_cleansing_influenced_item"]=5014, + ["chance_%_to_drop_additional_currency"]=5015, + ["chance_%_to_drop_additional_divination_cards"]=5016, + ["chance_%_to_drop_additional_divination_cards_corrupted"]=5017, + ["chance_%_to_drop_additional_divination_cards_currency"]=5018, + ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5019, + ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5020, + ["chance_%_to_drop_additional_divination_cards_currency_league"]=5021, + ["chance_%_to_drop_additional_divination_cards_gems"]=5022, + ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5023, + ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5024, + ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5025, + ["chance_%_to_drop_additional_divination_cards_map"]=5026, + ["chance_%_to_drop_additional_divination_cards_map_unique"]=5027, + ["chance_%_to_drop_additional_divination_cards_unique"]=5028, + ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5029, + ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5030, + ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5031, + ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5032, + ["chance_%_to_drop_additional_divine_orb"]=4982, + ["chance_%_to_drop_additional_eldritch_chaos_orb"]=4983, + ["chance_%_to_drop_additional_eldritch_exalted_orb"]=4984, + ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=4985, + ["chance_%_to_drop_additional_enkindling_orb"]=4986, + ["chance_%_to_drop_additional_exalted_orb"]=4987, + ["chance_%_to_drop_additional_fusing_orb"]=4988, + ["chance_%_to_drop_additional_gem"]=5033, + ["chance_%_to_drop_additional_gemcutters_prism"]=4989, + ["chance_%_to_drop_additional_glassblowers_bauble"]=4990, + ["chance_%_to_drop_additional_grand_eldritch_ember"]=4991, + ["chance_%_to_drop_additional_grand_eldritch_ichor"]=4992, + ["chance_%_to_drop_additional_greater_eldritch_ember"]=4993, + ["chance_%_to_drop_additional_greater_eldritch_ichor"]=4994, + ["chance_%_to_drop_additional_instilling_orb"]=4995, + ["chance_%_to_drop_additional_jewellers_orb"]=4996, + ["chance_%_to_drop_additional_lesser_eldritch_ember"]=4997, + ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=4998, + ["chance_%_to_drop_additional_map_currency"]=5035, + ["chance_%_to_drop_additional_maps"]=5034, + ["chance_%_to_drop_additional_orb_of_alteration"]=4999, + ["chance_%_to_drop_additional_orb_of_annulment"]=5000, + ["chance_%_to_drop_additional_orb_of_binding"]=5001, + ["chance_%_to_drop_additional_orb_of_horizons"]=5002, + ["chance_%_to_drop_additional_orb_of_regret"]=5003, + ["chance_%_to_drop_additional_orb_of_scouring"]=5004, + ["chance_%_to_drop_additional_orb_of_unmaking"]=5005, + ["chance_%_to_drop_additional_regal_orb"]=5006, + ["chance_%_to_drop_additional_scarab"]=5036, + ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5037, + ["chance_%_to_drop_additional_scarab_abyss_polished"]=5038, + ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5039, + ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5040, + ["chance_%_to_drop_additional_scarab_beasts_polished"]=5041, + ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5042, + ["chance_%_to_drop_additional_scarab_blight_gilded"]=5043, + ["chance_%_to_drop_additional_scarab_blight_polished"]=5044, + ["chance_%_to_drop_additional_scarab_blight_rusted"]=5045, + ["chance_%_to_drop_additional_scarab_breach_gilded"]=5046, + ["chance_%_to_drop_additional_scarab_breach_polished"]=5047, + ["chance_%_to_drop_additional_scarab_breach_rusted"]=5048, + ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5049, + ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5050, + ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5051, + ["chance_%_to_drop_additional_scarab_elder_gilded"]=5052, + ["chance_%_to_drop_additional_scarab_elder_polished"]=5053, + ["chance_%_to_drop_additional_scarab_elder_rusted"]=5054, + ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5055, + ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5056, + ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5057, + ["chance_%_to_drop_additional_scarab_legion_gilded"]=5058, + ["chance_%_to_drop_additional_scarab_legion_polished"]=5059, + ["chance_%_to_drop_additional_scarab_legion_rusted"]=5060, + ["chance_%_to_drop_additional_scarab_maps_gilded"]=5061, + ["chance_%_to_drop_additional_scarab_maps_polished"]=5062, + ["chance_%_to_drop_additional_scarab_maps_rusted"]=5063, + ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5064, + ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5065, + ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5066, + ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5067, + ["chance_%_to_drop_additional_scarab_perandus_polished"]=5068, + ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5069, + ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5070, + ["chance_%_to_drop_additional_scarab_shaper_polished"]=5071, + ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5072, + ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5073, + ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5074, + ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5075, + ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5076, + ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5077, + ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5078, + ["chance_%_to_drop_additional_scarab_torment_gilded"]=5079, + ["chance_%_to_drop_additional_scarab_torment_polished"]=5080, + ["chance_%_to_drop_additional_scarab_torment_rusted"]=5081, + ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5082, + ["chance_%_to_drop_additional_scarab_uniques_polished"]=5083, + ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5084, + ["chance_%_to_drop_additional_tangled_currency"]=5085, + ["chance_%_to_drop_additional_tangled_influenced_item"]=5086, + ["chance_%_to_drop_additional_unique"]=5087, + ["chance_%_to_drop_additional_vaal_orb"]=5007, + ["chance_for_double_items_from_heist_chests_%"]=5008, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5009, + ["chance_for_extra_damage_roll_with_lightning_damage_%"]=5010, + ["chance_for_skills_to_avoid_cooldown_%"]=5011, + ["chance_for_spells_to_not_pay_costs_%"]=5012, + ["chance_per_second_of_fire_spreading_between_enemies_%"]=1574, + ["chance_to_avoid_death_%"]=5088, + ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=2928, + ["chance_to_be_frozen_%"]=2595, + ["chance_to_be_frozen_shocked_ignited_%"]=2598, + ["chance_to_be_hindered_when_hit_by_spells_%"]=5089, + ["chance_to_be_ignited_%"]=2596, + ["chance_to_be_inflicted_with_an_ailment_+%"]=5090, + ["chance_to_be_maimed_when_hit_%"]=5091, + ["chance_to_be_poisoned_%"]=2981, + ["chance_to_be_sapped_when_hit_%"]=5092, + ["chance_to_be_scorched_when_hit_%"]=5093, + ["chance_to_be_shocked_%"]=2597, + ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5094, + ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5095, + ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5096, + ["chance_to_block_attacks_%_while_channelling"]=5097, + ["chance_to_counter_strike_when_hit_%"]=2496, + ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5098, + ["chance_to_crush_on_hit_%"]=5099, + ["chance_to_curse_self_with_punishment_on_kill_%"]=2751, + ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5100, + ["chance_to_deal_double_damage_%"]=5103, + ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5104, + ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5105, + ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5106, + ["chance_to_deal_double_damage_%_per_4_rage"]=5107, + ["chance_to_deal_double_damage_%_per_500_strength"]=5108, + ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5101, + ["chance_to_deal_double_damage_%_while_focused"]=5109, + ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5110, + ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5102, + ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=9828, + ["chance_to_deal_double_damage_while_on_full_life_%"]=5111, + ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5112, + ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5113, + ["chance_to_double_armour_effect_on_hit_%"]=5114, + ["chance_to_double_stun_duration_%"]=3156, + ["chance_to_fork_extra_projectile_%"]=5116, + ["chance_to_fork_extra_projectile_%_per_10_tribute"]=5115, + ["chance_to_fortify_on_melee_hit_+%"]=1958, + ["chance_to_fortify_on_melee_stun_%"]=5117, + ["chance_to_gain_1_more_charge_%"]=5119, + ["chance_to_gain_1_more_charge_%_per_10_tribute"]=5118, + ["chance_to_gain_1_more_endurance_charge_%"]=5120, + ["chance_to_gain_1_more_frenzy_charge_%"]=5121, + ["chance_to_gain_1_more_power_charge_%"]=5122, + ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5123, + ["chance_to_gain_3_additional_exerted_attacks_%"]=5124, + ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5125, + ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5126, + ["chance_to_gain_endurance_charge_on_block_%"]=1808, + ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1525, + ["chance_to_gain_endurance_charge_on_crit_%"]=1522, + ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5127, + ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1523, + ["chance_to_gain_endurance_charge_when_hit_%"]=2421, + ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5128, + ["chance_to_gain_frenzy_charge_on_block_%"]=5130, + ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5129, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1526, + ["chance_to_gain_frenzy_charge_on_stun_%"]=5131, + ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=3926, + ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5132, + ["chance_to_gain_onslaught_on_flask_use_%"]=5133, + ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5134, + ["chance_to_gain_onslaught_on_kill_%"]=2632, + ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5135, + ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2988, + ["chance_to_gain_onslaught_on_kill_with_axes_%"]=5136, + ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5137, + ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1527, + ["chance_to_gain_power_charge_on_melee_stun_%"]=2439, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5138, + ["chance_to_gain_power_charge_on_stun_%"]=2440, + ["chance_to_gain_power_charge_when_block_%"]=1812, + ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2433, + ["chance_to_gain_random_standard_charge_on_hit_%"]=5139, + ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5140, + ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2740, + ["chance_to_gain_vaal_soul_on_kill_%"]=2735, + ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5141, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=2992, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5142, + ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=2990, + ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5143, + ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=2991, + ["chance_to_ignite_is_doubled"]=5144, + ["chance_to_ignore_hexproof_%"]=5145, + ["chance_to_inflict_10_incision_on_attack_hit_%"]=5146, + ["chance_to_inflict_additional_impale_%"]=5147, + ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5148, + ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5149, + ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5150, + ["chance_to_inflict_frostburn_%"]=1716, + ["chance_to_inflict_incision_on_attack_hit_%"]=5151, + ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5152, + ["chance_to_inflict_sap_on_enemy_on_block_%"]=5153, + ["chance_to_inflict_sapped_%"]=1718, + ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5154, + ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5155, + ["chance_to_intimidate_on_hit_%"]=5156, + ["chance_to_leave_2_ground_blades_%"]=5157, + ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=5158, + ["chance_to_not_consume_glory_%"]=5160, + ["chance_to_not_consume_infusion_%"]=5161, + ["chance_to_not_consume_instilling_%"]=5162, + ["chance_to_place_an_additional_mine_%"]=3140, + ["chance_to_poison_%_vs_cursed_enemies"]=3775, + ["chance_to_poison_on_critical_strike_with_bow_%"]=1307, + ["chance_to_poison_on_critical_strike_with_dagger_%"]=1308, + ["chance_to_poison_on_hit_%_per_power_charge"]=5165, + ["chance_to_poison_on_hit_+%_vs_non_poisoned_enemies"]=5163, + ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=5164, + ["chance_to_poison_on_hit_with_attacks_%"]=2804, + ["chance_to_poison_on_melee_hit_%"]=3820, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5166, + ["chance_to_scorch_%"]=1714, + ["chance_to_shock_%_while_using_flask"]=2575, + ["chance_to_shock_chilled_enemies_%"]=5167, + ["chance_to_start_energy_shield_recharge_%_on_gaining_infusion"]=5168, + ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5169, + ["chance_to_summon_two_totems_%"]=5170, + ["chance_to_taunt_on_hit_%"]=3034, + ["chance_to_throw_4_additional_traps_%"]=5171, + ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=558, + ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=412, + ["chance_to_unnerve_on_hit_%"]=5172, + ["channelled_skill_damage_+%"]=5173, + ["channelled_skill_damage_+%_per_10_devotion"]=5174, + ["chaos_critical_strike_chance_+%"]=1337, + ["chaos_critical_strike_multiplier_+"]=1358, + ["chaos_damage_%_taken_from_mana_before_life"]=5180, + ["chaos_damage_+%"]=879, + ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5181, + ["chaos_damage_+%_per_equipped_corrupted_item"]=2730, + ["chaos_damage_+%_per_level"]=2623, + ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5182, + ["chaos_damage_+%_while_affected_by_herald_of_plague"]=5175, + ["chaos_damage_can_chill"]=2532, + ["chaos_damage_can_freeze"]=2533, + ["chaos_damage_can_ignite_chill_and_shock"]=2550, + ["chaos_damage_can_shock"]=2534, + ["chaos_damage_cannot_poison"]=2551, + ["chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life"]=5176, + ["chaos_damage_does_not_damage_minions_energy_shield_extra_hard"]=3976, + ["chaos_damage_over_time_+%"]=1128, + ["chaos_damage_over_time_heals_while_leeching_life"]=5177, + ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5178, + ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1161, + ["chaos_damage_over_time_multiplier_+_with_attacks"]=1163, + ["chaos_damage_resistance_%_per_endurance_charge"]=5183, + ["chaos_damage_resistance_%_per_poison_stack"]=5185, + ["chaos_damage_resistance_%_when_on_low_life"]=2241, + ["chaos_damage_resistance_%_when_stationary"]=5186, + ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5187, + ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5188, + ["chaos_damage_resistance_is_doubled"]=5184, + ["chaos_damage_resisted_by_lowest_resistance"]=5189, + ["chaos_damage_taken_+"]=2506, + ["chaos_damage_taken_+%"]=1914, + ["chaos_damage_taken_over_time_+%"]=1642, + ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5190, + ["chaos_damage_to_return_to_melee_attacker"]=1884, + ["chaos_damage_to_return_when_hit"]=1889, + ["chaos_damage_with_attack_skills_+%"]=5191, + ["chaos_damage_with_spell_skills_+%"]=5192, + ["chaos_dot_multiplier_+"]=1162, + ["chaos_golem_damage_+%"]=3282, + ["chaos_golem_elemental_resistances_%"]=3561, + ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5193, + ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5194, + ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5195, + ["chaos_immunity"]=1852, + ["chaos_inoculation_keystone_energy_shield_+%_final"]=1873, + ["chaos_resist_unnaffected_by_area_penalites"]=5196, + ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3638, + ["chaos_resistance_+_while_using_flask"]=2915, + ["chaos_skill_chance_to_hinder_on_hit_%"]=5197, + ["chaos_skill_effect_duration_+%"]=1594, + ["chaos_skill_gem_level_+"]=5198, + ["chaos_skills_area_of_effect_+%"]=5199, + ["chaos_spell_skill_gem_level_+"]=947, + ["chaos_weakness_ignores_hexproof"]=2284, + ["chaos_weakness_mana_reservation_+%"]=3616, + ["charge_duration_+%"]=2664, + ["charged_attack_damage_+%"]=3708, + ["charged_attack_damage_per_stack_+%_final"]=3717, + ["charged_attack_radius_+%"]=3715, + ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3428, + ["charged_dash_damage_+%"]=3317, + ["charged_dash_movement_speed_+%_final"]=5200, + ["charges_gained_+%"]=1001, + ["charm_charges_gained_+%"]=5201, + ["charm_charges_used_%_granted_to_life_flasks"]=5202, + ["charm_charges_used_+%"]=5203, + ["charm_create_consecrated_ground_when_used"]=5204, + ["charm_defend_with_double_armour_during_effect"]=5205, + ["charm_duration_+%"]=899, + ["charm_duration_+%_per_25_tribute"]=5206, + ["charm_effect_+%"]=5208, + ["charm_effect_+%_per_10_tribute"]=5207, + ["charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect"]=5209, + ["charm_energy_shield_recharge_starts_when_used"]=5210, + ["charm_gain_X_guard_for_duration"]=921, + ["charm_gain_onslaught_during_effect"]=5211, + ["charm_grants_frenzy_charge_when_used"]=5212, + ["charm_grants_power_charge_when_used"]=5213, + ["charm_grants_up_to_your_maximum_rage_when_used"]=5214, + ["charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used"]=5215, + ["charm_possesed_by_bear_spirit_for_x_seconds_when_used"]=5216, + ["charm_possesed_by_boar_spirit_for_x_seconds_when_used"]=5217, + ["charm_possesed_by_cat_spirit_for_x_seconds_when_used"]=5218, + ["charm_possesed_by_owl_spirit_for_x_seconds_when_used"]=5219, + ["charm_possesed_by_ox_spirit_for_x_seconds_when_used"]=5220, + ["charm_possesed_by_primate_spirit_for_x_seconds_when_used"]=5221, + ["charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used"]=5222, + ["charm_possesed_by_serpent_spirit_for_x_seconds_when_used"]=5223, + ["charm_possesed_by_stag_spirit_for_x_seconds_when_used"]=5224, + ["charm_possesed_by_wolf_spirit_for_x_seconds_when_used"]=5225, + ["charm_recover_X_life_when_used"]=922, + ["charm_recover_X_mana_when_used"]=923, + ["charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount"]=5226, + ["charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount"]=5227, + ["charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect"]=5228, + ["charms_%_chance_on_use_to_use_another_charm_without_consuming_charges"]=5229, + ["charms_%_chance_to_not_consume_charges"]=5230, + ["charms_use_no_charges"]=5231, + ["chest_drop_additional_corrupted_item_divination_cards"]=5232, + ["chest_drop_additional_currency_item_divination_cards"]=5233, + ["chest_drop_additional_divination_cards_from_current_world_area"]=5234, + ["chest_drop_additional_divination_cards_from_same_set"]=5235, + ["chest_drop_additional_unique_item_divination_cards"]=5236, + ["chest_item_quantity_+%"]=1410, + ["chest_item_rarity_+%"]=1415, + ["chest_number_of_additional_pirate_uniques_to_drop"]=5237, + ["chest_trap_defuse_%"]=1601, + ["chieftain_burning_damage_+%_final"]=1715, + ["chill_and_freeze_duration_+%"]=5238, + ["chill_and_freeze_duration_based_on_%_energy_shield"]=2276, + ["chill_attackers_for_4_seconds_on_block_%_chance"]=5239, + ["chill_chance_based_on_damage_fixed_magnitude"]=5240, + ["chill_duration_+%"]=1560, + ["chill_effect_+%"]=5243, + ["chill_effect_+%_while_mana_leeching"]=5241, + ["chill_effect_+%_with_critical_strikes"]=5244, + ["chill_effect_is_reversed"]=5242, + ["chill_effectiveness_on_self_+%"]=1443, + ["chill_enemy_when_hit_duration_ms"]=2770, + ["chill_minimum_slow_%"]=4006, + ["chill_minimum_slow_%_from_mastery"]=5245, + ["chill_nearby_enemies_when_you_focus"]=5246, + ["chill_prevention_ms_when_chilled"]=2555, + ["chilled_enemies_have_no_elemental_resistance"]=5247, + ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3012, + ["chilled_ground_when_hit_with_attack_%"]=5248, + ["chilled_monsters_take_+%_burning_damage"]=2436, + ["chilling_areas_also_grant_curse_effect_+%"]=5249, + ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5250, + ["chills_from_your_hits_cause_shattering"]=5251, + ["chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds"]=5252, + ["chronomancer_reserves_no_mana"]=5253, + ["clarity_mana_reservation_+%"]=3604, + ["clarity_mana_reservation_efficiency_+%"]=5255, + ["clarity_mana_reservation_efficiency_-2%_per_1"]=5254, + ["clarity_reserves_no_mana"]=5256, + ["claw_accuracy_rating"]=1695, + ["claw_accuracy_rating_+%"]=1294, + ["claw_attack_speed_+%"]=1277, + ["claw_critical_strike_chance_+%"]=1318, + ["claw_critical_strike_multiplier_+"]=1346, + ["claw_damage_+%"]=1198, + ["claw_damage_+%_while_on_low_life"]=5258, + ["claw_damage_against_enemies_on_low_life_+%"]=5257, + ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2599, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5260, + ["cleave_attack_speed_+%"]=3429, + ["cleave_damage_+%"]=3214, + ["cleave_fortify_on_hit"]=5259, + ["cleave_radius_+%"]=3383, + ["close_range_enemies_avoid_your_projectiles"]=8528, + ["cluster_burst_spawn_amount"]=3680, + ["cobra_lash_damage_+%"]=5261, + ["cobra_lash_number_of_additional_chains"]=5262, + ["cobra_lash_projectile_speed_+%"]=5263, + ["cold_ailment_duration_+%"]=5264, + ["cold_ailment_effect_+%"]=5266, + ["cold_ailment_effect_+%_against_shocked_enemies"]=5265, + ["cold_and_chaos_damage_resistance_%"]=5267, + ["cold_and_lightning_damage_resistance_%"]=2470, + ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5268, + ["cold_attack_damage_+%"]=1116, + ["cold_attack_damage_+%_while_holding_a_shield"]=1119, + ["cold_axe_damage_+%"]=1193, + ["cold_bow_damage_+%"]=1213, + ["cold_claw_damage_+%"]=1201, + ["cold_critical_strike_chance_+%"]=1335, + ["cold_critical_strike_multiplier_+"]=1356, + ["cold_dagger_damage_+%"]=1205, + ["cold_damage_+%"]=877, + ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5270, + ["cold_damage_+%_per_1%_block_chance"]=3175, + ["cold_damage_+%_per_25_dexterity"]=5271, + ["cold_damage_+%_per_25_intelligence"]=5272, + ["cold_damage_+%_per_25_strength"]=5273, + ["cold_damage_+%_per_cold_resistance_above_75"]=5269, + ["cold_damage_+%_per_frenzy_charge"]=5274, + ["cold_damage_+%_per_missing_cold_resistance"]=5275, + ["cold_damage_+%_while_affected_by_hatred"]=5276, + ["cold_damage_+%_while_affected_by_herald_of_ice"]=5277, + ["cold_damage_+%_while_off_hand_is_empty"]=5278, + ["cold_damage_can_ignite"]=2535, + ["cold_damage_can_shock"]=2536, + ["cold_damage_cannot_chill"]=2549, + ["cold_damage_cannot_freeze"]=2548, + ["cold_damage_over_time_+%"]=1127, + ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1158, + ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5279, + ["cold_damage_resistance_+%"]=1437, + ["cold_damage_resistance_is_%"]=1435, + ["cold_damage_taken_%_as_fire"]=2807, + ["cold_damage_taken_%_as_lightning"]=2808, + ["cold_damage_taken_+"]=5281, + ["cold_damage_taken_+%"]=2996, + ["cold_damage_taken_+%_if_have_been_hit_recently"]=5282, + ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5280, + ["cold_damage_to_return_to_melee_attacker"]=1881, + ["cold_damage_to_return_when_hit"]=1887, + ["cold_damage_while_dual_wielding_+%"]=1177, + ["cold_damage_with_attack_skills_+%"]=5283, + ["cold_damage_with_spell_skills_+%"]=5284, + ["cold_dot_multiplier_+"]=1159, + ["cold_exposure_effect_+%"]=5285, + ["cold_exposure_on_hit_magnitude"]=5286, + ["cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%"]=5287, + ["cold_hit_and_dot_damage_%_taken_as_fire"]=5288, + ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5289, + ["cold_hit_damage_+%_vs_shocked_enemies"]=5290, + ["cold_mace_damage_+%"]=1209, + ["cold_penetration_%_vs_chilled_enemies"]=5291, + ["cold_projectile_mine_critical_multiplier_+"]=5292, + ["cold_projectile_mine_damage_+%"]=5293, + ["cold_projectile_mine_throwing_speed_+%"]=5295, + ["cold_projectile_mine_throwing_speed_negated_+%"]=5294, + ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5296, + ["cold_resist_unaffected_by_area_penalties"]=5297, + ["cold_skill_chance_to_inflict_cold_exposure_%"]=5298, + ["cold_skill_gem_level_+"]=5299, + ["cold_skills_chance_to_poison_on_hit_%"]=5300, + ["cold_snap_cooldown_speed_+%"]=3453, + ["cold_snap_damage_+%"]=3288, + ["cold_snap_gain_power_charge_on_kill_%"]=2880, + ["cold_snap_radius_+%"]=3410, + ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5301, + ["cold_spell_skill_gem_level_+"]=945, + ["cold_staff_damage_+%"]=1197, + ["cold_sword_damage_+%"]=1218, + ["cold_wand_damage_+%"]=1222, + ["cold_weakness_ignores_hexproof"]=2285, + ["combo_finisher_damage_+%_up_to_40%"]=5302, + ["combust_area_of_effect_+%"]=5303, + ["combust_is_disabled"]=5304, + ["companion_accuracy_rating_+%"]=5305, + ["companion_area_of_effect_+%"]=5306, + ["companion_attack_speed_+%"]=5307, + ["companion_chaos_resistance_%"]=5308, + ["companion_damage_+%"]=5311, + ["companion_damage_+%_vs_immobilised_enemies"]=5309, + ["companion_damage_increases_and_reductions_also_affects_you"]=5310, + ["companion_elemental_resistance_%"]=5312, + ["companion_maximum_life_+%"]=5313, + ["companion_reservation_+%"]=5314, + ["companion_takes_%_damage_before_you"]=5315, + ["companion_takes_%_damage_before_you_from_support"]=5316, + ["companions_gain_your_dexterity"]=5317, + ["companions_gain_your_strength"]=5318, + ["conductivity_curse_effect_+%"]=3581, + ["conductivity_duration_+%"]=3494, + ["conductivity_mana_reservation_+%"]=3617, + ["conductivity_no_reservation"]=5319, + ["consecrate_ground_for_3_seconds_when_hit_%"]=3145, + ["consecrate_ground_on_kill_%_for_3_seconds"]=3013, + ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3695, + ["consecrate_on_block_%_chance_to_create"]=2259, + ["consecrate_on_crit_%_chance_to_create"]=2317, + ["consecrated_ground_additional_physical_damage_reduction_%"]=5320, + ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5321, + ["consecrated_ground_area_+%"]=5322, + ["consecrated_ground_effect_+%"]=5323, + ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5328, + ["consecrated_ground_enemy_damage_taken_+%"]=5324, + ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5325, + ["consecrated_ground_immune_to_curses"]=5326, + ["consecrated_ground_immune_to_status_ailments"]=5327, + ["consecrated_ground_on_death"]=5329, + ["consecrated_ground_on_hit"]=5330, + ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5331, + ["consecrated_ground_while_stationary_radius"]=5332, + ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5333, + ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5334, + ["consecrated_path_area_of_effect_+%"]=5335, + ["consecrated_path_damage_+%"]=5336, + ["consume_%_of_maximum_life_flask_charges_on_bow_attack"]=5340, + ["consume_X_life_instead_of_last_crossbow_bolt"]=5337, + ["consume_enemy_freeze_to_guarantee_crit"]=5338, + ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5339, + ["contagion_damage_+%"]=3313, + ["contagion_duration_+%"]=3499, + ["contagion_radius_+%"]=3416, + ["contagion_spread_on_hit_affected_enemy_%"]=5341, + ["conversation_trap_converted_enemy_damage_+%"]=5342, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5343, + ["conversion_trap_cooldown_speed_+%"]=3466, + ["convert_all_life_leech_to_energy_shield_leech"]=5344, + ["converted_enemies_damage_+%"]=3308, + ["convocation_buff_effect_+%"]=3594, + ["convocation_cooldown_speed_+%"]=3454, + ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5345, + ["cooldown_recovery_+%_per_power_charge"]=5346, + ["cooldown_speed_+%_per_brand_up_to_40%"]=5347, + ["corpse_erruption_base_maximum_number_of_geyers"]=5348, + ["corpse_eruption_cast_speed_+%"]=5349, + ["corpse_eruption_damage_+%"]=5350, + ["corpse_warp_cast_speed_+%"]=5351, + ["corpse_warp_damage_+%"]=5352, + ["corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=5353, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5354, + ["corrupted_gem_experience_gain_+%"]=2742, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=5355, + ["corrupting_fever_damage_+%"]=5356, + ["corrupting_fever_duration_+%"]=5357, + ["counter_attacks_maximum_added_cold_damage"]=3772, + ["counter_attacks_maximum_added_physical_damage"]=3765, + ["counter_attacks_minimum_added_cold_damage"]=3772, + ["counter_attacks_minimum_added_physical_damage"]=3765, + ["counterattacks_cooldown_recovery_+%"]=5358, + ["counterattacks_deal_double_damage"]=5359, + ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5360, + ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5361, + ["cover_in_ash_on_hit_%"]=5362, + ["cover_in_ash_on_hit_%_while_you_are_burning"]=5363, + ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5364, + ["cover_in_frost_on_hit"]=5365, + ["crab_aspect_crab_barrier_max_+"]=3921, + ["crackling_lance_cast_speed_+%"]=5366, + ["crackling_lance_damage_+%"]=5367, + ["create_additional_brand_%_chance"]=5368, + ["create_blighted_spore_on_killing_rare_enemy"]=5369, + ["create_chilling_ground_on_freeze"]=5370, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5371, + ["create_consecrated_ground_on_kill_%"]=5372, + ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5373, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=5374, + ["create_profane_ground_instead_of_consecrated_ground"]=5375, + ["create_smoke_cloud_on_kill_%_chance"]=5376, + ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=5377, + ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5378, + ["cremation_base_fires_projectile_every_x_ms"]=5379, + ["critical_chance_luck_against_parry_debuffed_enemies"]=5381, + ["critical_damage_+1%_per_X_current_life"]=5382, + ["critical_hit_bleeding_effect_+%"]=5383, + ["critical_hit_chance_+%_against_enemies_entered_your_presence_recently"]=5384, + ["critical_hit_chance_+%_vs_humanoids"]=5385, + ["critical_hit_damage_+%_against_enemies_exited_your_presence_recently"]=5386, + ["critical_hit_damage_bonus_+%_if_consumed_power_charge_recently"]=5387, + ["critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance"]=5388, + ["critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance"]=5389, + ["critical_hit_damaging_ailment_effect_+%"]=5390, + ["critical_hit_ignite_effect_+%"]=5391, + ["critical_hit_poison_effect_+%"]=5392, + ["critical_hits_always_apply_impale"]=5393, + ["critical_hits_cannot_consume_impale"]=5394, + ["critical_hits_ignore_armour"]=5395, + ["critical_multiplier_+%_per_10_max_es_on_shield"]=5396, + ["critical_strike_%_chance_to_deal_double_damage"]=5463, + ["critical_strike_chance_+%"]=953, + ["critical_strike_chance_+%_against_enemies_marked_by_you"]=5397, + ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5410, + ["critical_strike_chance_+%_during_any_flask_effect"]=5411, + ["critical_strike_chance_+%_final_while_affected_by_precision"]=5398, + ["critical_strike_chance_+%_final_while_unhinged"]=5412, + ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3053, + ["critical_strike_chance_+%_for_forking_arrows"]=3884, + ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5413, + ["critical_strike_chance_+%_if_enemy_killed_recently"]=5414, + ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5415, + ["critical_strike_chance_+%_if_have_not_crit_recently"]=5416, + ["critical_strike_chance_+%_if_havent_blocked_recently"]=5417, + ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5418, + ["critical_strike_chance_+%_if_triggered_skill_recently"]=5399, + ["critical_strike_chance_+%_per_10_strength"]=5419, + ["critical_strike_chance_+%_per_25_intelligence"]=5420, + ["critical_strike_chance_+%_per_8_strength"]=2589, + ["critical_strike_chance_+%_per_blitz_charge"]=5421, + ["critical_strike_chance_+%_per_brand"]=5422, + ["critical_strike_chance_+%_per_endurance_charge"]=5423, + ["critical_strike_chance_+%_per_frenzy_charge"]=5424, + ["critical_strike_chance_+%_per_intensity"]=5425, + ["critical_strike_chance_+%_per_level"]=2609, + ["critical_strike_chance_+%_per_lightning_adaptation"]=3991, + ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5426, + ["critical_strike_chance_+%_per_power_charge"]=2796, + ["critical_strike_chance_+%_per_righteous_charge"]=5427, + ["critical_strike_chance_+%_per_socketed_blue_support_gem"]=5400, + ["critical_strike_chance_+%_per_stackable_unique_jewel"]=3727, + ["critical_strike_chance_+%_vs_bleeding_enemies"]=2817, + ["critical_strike_chance_+%_vs_blinded_enemies"]=3011, + ["critical_strike_chance_+%_vs_dazed_enemies"]=5401, + ["critical_strike_chance_+%_vs_enemies_further_than_6m_distance"]=5402, + ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3627, + ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3123, + ["critical_strike_chance_+%_vs_exposed"]=5403, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=5404, + ["critical_strike_chance_+%_vs_marked_enemies"]=5405, + ["critical_strike_chance_+%_vs_poisoned_enemies"]=2908, + ["critical_strike_chance_+%_vs_shocked_enemies"]=5380, + ["critical_strike_chance_+%_vs_taunted_enemies"]=5428, + ["critical_strike_chance_+%_when_in_main_hand"]=3750, + ["critical_strike_chance_+%_while_affected_by_wrath"]=5429, + ["critical_strike_chance_+%_while_channelling"]=5430, + ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=9926, + ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5434, + ["critical_strike_chance_+%_with_at_least_200_int"]=3939, + ["critical_strike_chance_+%_with_unarmed_attacks"]=5406, + ["critical_strike_chance_against_cursed_enemies_+%"]=5407, + ["critical_strike_chance_against_enemies_on_full_life_+%"]=3348, + ["critical_strike_chance_increased_by_lightning_resistance"]=5408, + ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5409, + ["critical_strike_chance_while_dual_wielding_+%"]=1332, + ["critical_strike_chance_while_wielding_shield_+%"]=1326, + ["critical_strike_damage_cannot_be_reflected"]=5435, + ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5461, + ["critical_strike_multiplier_+%_with_claws_daggers"]=5462, + ["critical_strike_multiplier_+_during_any_flask_effect"]=5440, + ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5441, + ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5442, + ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5443, + ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5444, + ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5445, + ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5446, + ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5436, + ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5447, + ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5448, + ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5449, + ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5450, + ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5451, + ["critical_strike_multiplier_+_per_1%_block_chance"]=2816, + ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5452, + ["critical_strike_multiplier_+_per_power_charge"]=2898, + ["critical_strike_multiplier_+_vs_bleeding_enemies"]=2814, + ["critical_strike_multiplier_+_vs_burning_enemies"]=2815, + ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3148, + ["critical_strike_multiplier_+_vs_stunned_enemies"]=5437, + ["critical_strike_multiplier_+_vs_taunted_enemies"]=5453, + ["critical_strike_multiplier_+_vs_unique_enemies"]=5454, + ["critical_strike_multiplier_+_while_affected_by_anger"]=5455, + ["critical_strike_multiplier_+_while_affected_by_precision"]=5456, + ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1734, + ["critical_strike_multiplier_+_with_herald_skills"]=5460, + ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5438, + ["critical_strike_multiplier_is_250"]=5439, + ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3037, + ["critical_strike_multiplier_while_dual_wielding_+"]=1351, + ["critical_strike_multiplier_with_dagger_+"]=1340, + ["critical_strikes_always_knockback_shocked_enemies"]=5464, + ["critical_strikes_deal_no_damage"]=5465, + ["critical_strikes_do_not_always_ignite"]=5466, + ["critical_strikes_from_spells_have_no_multiplier"]=5467, + ["critical_strikes_ignore_elemental_resistances"]=3051, + ["critical_strikes_ignore_lightning_resistance"]=5468, + ["critical_strikes_ignore_positive_elemental_resistances"]=5469, + ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5470, + ["critical_support_gem_level_+"]=5471, + ["crits_have_culling_strike"]=3041, + ["crossbow_accuracy_rating"]=3864, + ["crossbow_accuracy_rating_+%"]=3865, + ["crossbow_attack_%_chance_to_not_consume_ammo"]=5472, + ["crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently"]=5473, + ["crossbow_attack_speed_+%"]=3866, + ["crossbow_critical_strike_chance_+%"]=3867, + ["crossbow_critical_strike_multiplier_+"]=3868, + ["crossbow_damage_+%"]=3862, + ["crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds"]=5474, + ["crossbow_elemental_damage_+%"]=3863, + ["crossbow_physical_damage_+%"]=3869, + ["crossbow_skill_gem_level_+"]=5475, + ["crowd_control_effects_are_triggered_at_%_poise_threshold_instead"]=5476, + ["cruelty_effect_+%"]=5477, + ["crush_for_2_seconds_on_hit_%_chance"]=5478, + ["crush_on_hit_ms_vs_full_life_enemies"]=5479, + ["culling_strike_enemies_on_block"]=5480, + ["culling_strike_on_burning_enemies"]=2503, + ["culling_strike_on_enemies_affected_by_poachers_mark"]=5481, + ["culling_strike_threshold_+%"]=5484, + ["culling_strike_threshold_+%_vs_immobilised_enemies"]=5482, + ["culling_strike_threshold_+%_vs_rare_or_unique_monsters"]=5483, + ["culling_strike_vs_beasts_while_in_presence_of_beast_companion"]=5485, + ["culling_strike_vs_cursed_enemies"]=5486, + ["culling_strike_vs_marked_enemy"]=5487, + ["current_endurance_charges"]=13, + ["current_energy_shield_%_as_elemental_damage_reduction"]=5488, + ["current_frenzy_charges"]=14, + ["current_power_charges"]=15, + ["curse_area_of_effect_+%"]=1896, + ["curse_aura_skill_area_of_effect_+%"]=5489, + ["curse_aura_skills_mana_reservation_efficiency_+%"]=5492, + ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5491, + ["curse_aura_skills_reservation_efficiency_+%"]=5490, + ["curse_cast_speed_+%"]=1890, + ["curse_delay_+%"]=5493, + ["curse_delay_+%_per_20_tribute"]=5494, + ["curse_duration_+%_if_you_have_at_least_100_tribute"]=5495, + ["curse_duration_+%_per_10_tribute"]=5496, + ["curse_effect_+%"]=2280, + ["curse_effect_+%_if_200_mana_spent_recently"]=5499, + ["curse_effect_on_self_+%"]=1856, + ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5497, + ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5498, + ["curse_mana_cost_+%"]=5500, + ["curse_on_block_enfeeble_chance_%"]=5501, + ["curse_on_hit_%_conductivity"]=2201, + ["curse_on_hit_%_despair"]=2202, + ["curse_on_hit_%_elemental_weakness"]=2203, + ["curse_on_hit_%_enfeeble"]=2200, + ["curse_on_hit_%_flammability"]=2204, + ["curse_on_hit_%_frostbite"]=2205, + ["curse_on_hit_%_temporal_chains"]=2206, + ["curse_on_hit_%_vulnerability"]=2207, + ["curse_on_hit_level_10_vulnerability_%"]=2211, + ["curse_on_hit_level_assassins_mark"]=559, + ["curse_on_hit_level_cold_weakness"]=2213, + ["curse_on_hit_level_conductivity"]=2214, + ["curse_on_hit_level_despair"]=2215, + ["curse_on_hit_level_elemental_weakness"]=2212, + ["curse_on_hit_level_enfeeble"]=2216, + ["curse_on_hit_level_flammability"]=2217, + ["curse_on_hit_level_frostbite"]=2218, + ["curse_on_hit_level_poachers_mark"]=560, + ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=561, + ["curse_on_hit_level_temporal_chains"]=2209, + ["curse_on_hit_level_vulnerability"]=2210, + ["curse_on_hit_level_warlords_mark"]=562, + ["curse_pillar_curse_effect_+%_final"]=2281, + ["curse_skill_effect_duration_+%"]=5502, + ["curse_skill_gem_level_+"]=5503, + ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2208, + ["curse_with_punishment_on_hit_%"]=5504, + ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5506, + ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5507, + ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5508, + ["cursed_enemies_are_exorcised_on_kill"]=5505, + ["cursed_with_silence_when_hit_%_chance"]=5509, + ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5510, + ["curses_never_expire"]=1848, + ["curses_reflected_to_self"]=5511, + ["curses_you_inflict_remain_after_death"]=5512, + ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5513, + ["cyclone_and_sweep_melee_knockback"]=5514, + ["cyclone_attack_speed_+%"]=3439, + ["cyclone_damage_+%"]=3261, + ["cyclone_max_stages_movement_speed_+%"]=5515, + ["dagger_accuracy_rating"]=1693, + ["dagger_accuracy_rating_+%"]=1295, + ["dagger_attack_speed_+%"]=1278, + ["dagger_critical_strike_chance_+%"]=1319, + ["dagger_damage_+%"]=1202, + ["damage_+%"]=1107, + ["damage_+%_against_enemies_marked_by_you"]=5543, + ["damage_+%_against_enemies_with_fully_broken_armour"]=5516, + ["damage_+%_during_flask_effect"]=3651, + ["damage_+%_final_against_bloodlusting_enemies"]=5517, + ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5544, + ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5518, + ["damage_+%_final_with_at_least_1_nearby_ally"]=5545, + ["damage_+%_for_4_seconds_on_crit"]=3052, + ["damage_+%_for_4_seconds_on_detonation"]=3073, + ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3654, + ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3631, + ["damage_+%_for_each_herald_affecting_you"]=5546, + ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3759, + ["damage_+%_for_each_trap_and_mine_active"]=3645, + ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=5547, + ["damage_+%_for_you_and_allies_affected_by_your_auras"]=3639, + ["damage_+%_if_consumed_frenzy_charge_recently"]=5519, + ["damage_+%_if_enemy_killed_recently"]=5548, + ["damage_+%_if_enemy_killed_recently_final"]=3784, + ["damage_+%_if_enemy_shattered_recently"]=5549, + ["damage_+%_if_firing_atleast_7_projectiles"]=5550, + ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3283, + ["damage_+%_if_have_been_ignited_recently"]=5551, + ["damage_+%_if_have_crit_in_past_8_seconds"]=5552, + ["damage_+%_if_only_one_enemy_nearby"]=5553, + ["damage_+%_if_skill_costs_life"]=5554, + ["damage_+%_if_triggered_skill_recently"]=5520, + ["damage_+%_if_used_travel_skill_recently"]=5555, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=3815, + ["damage_+%_if_you_have_frozen_enemy_recently"]=5556, + ["damage_+%_if_you_have_shocked_recently"]=5557, + ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3660, + ["damage_+%_on_consecrated_ground"]=3144, + ["damage_+%_on_full_energy_shield"]=5581, + ["damage_+%_per_1%_block_chance"]=5565, + ["damage_+%_per_1%_increased_item_found_quantity"]=5566, + ["damage_+%_per_100_dexterity"]=5558, + ["damage_+%_per_100_intelligence"]=5559, + ["damage_+%_per_100_strength"]=5560, + ["damage_+%_per_10_dex"]=5561, + ["damage_+%_per_10_levels"]=2505, + ["damage_+%_per_15_dex"]=5562, + ["damage_+%_per_15_int"]=5563, + ["damage_+%_per_15_strength"]=5564, + ["damage_+%_per_5_of_your_lowest_attribute"]=5567, + ["damage_+%_per_abyss_jewel_type"]=3735, + ["damage_+%_per_active_curse_on_self"]=1130, + ["damage_+%_per_active_golem"]=5568, + ["damage_+%_per_active_link"]=5569, + ["damage_+%_per_active_trap"]=3062, + ["damage_+%_per_crab_charge"]=3922, + ["damage_+%_per_different_warcry_used_recently"]=5570, + ["damage_+%_per_endurance_charge"]=2825, + ["damage_+%_per_enemy_elemental_ailment"]=5521, + ["damage_+%_per_equipped_magic_item"]=2712, + ["damage_+%_per_fire_adaptation"]=3989, + ["damage_+%_per_frenzy_charge"]=2902, + ["damage_+%_per_frenzy_power_or_endurance_charge"]=5571, + ["damage_+%_per_poison_stack"]=5522, + ["damage_+%_per_poison_up_to_75%"]=5572, + ["damage_+%_per_power_charge"]=5573, + ["damage_+%_per_raised_zombie"]=5523, + ["damage_+%_per_recently_triggered_hazard_up_to_50%"]=5574, + ["damage_+%_per_shock"]=2444, + ["damage_+%_per_socketed_red_support_gem"]=5524, + ["damage_+%_per_warcry_used_recently"]=5575, + ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=5576, + ["damage_+%_to_rare_and_unique_enemies"]=2834, + ["damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute"]=5525, + ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3655, + ["damage_+%_vs_abyssal_monsters"]=5577, + ["damage_+%_vs_blinded_enemies"]=2480, + ["damage_+%_vs_burning_enemies"]=3048, + ["damage_+%_vs_dazed_enemies"]=5526, + ["damage_+%_vs_demons"]=2435, + ["damage_+%_vs_enemies_affected_by_status_ailments"]=3058, + ["damage_+%_vs_enemies_on_full_life"]=5578, + ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2479, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1150, + ["damage_+%_vs_frozen_enemies"]=1146, + ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1151, + ["damage_+%_vs_hindered_enemies"]=3676, + ["damage_+%_vs_immobilised_enemies"]=5527, + ["damage_+%_vs_magic_monsters"]=5579, + ["damage_+%_vs_rare_monsters"]=2476, + ["damage_+%_vs_taunted_enemies"]=5580, + ["damage_+%_when_currently_has_no_energy_shield"]=2405, + ["damage_+%_when_not_on_low_life"]=2830, + ["damage_+%_when_on_burning_ground"]=1831, + ["damage_+%_when_on_full_life"]=5582, + ["damage_+%_when_on_low_life"]=1129, + ["damage_+%_while_affected_by_a_herald"]=5583, + ["damage_+%_while_channelling"]=5584, + ["damage_+%_while_dead"]=2727, + ["damage_+%_while_es_not_full"]=3647, + ["damage_+%_while_fortified"]=2823, + ["damage_+%_while_ignited"]=2471, + ["damage_+%_while_in_blood_stance"]=5585, + ["damage_+%_while_in_presence_of_companion"]=5528, + ["damage_+%_while_leeching"]=2698, + ["damage_+%_while_life_leeching"]=1131, + ["damage_+%_while_mana_leeching"]=1133, + ["damage_+%_while_totem_active"]=2831, + ["damage_+%_while_unarmed"]=3166, + ["damage_+%_while_using_charm"]=5586, + ["damage_+%_while_wielding_bow_if_totem_summoned"]=5587, + ["damage_+%_while_wielding_two_different_weapon_types"]=5588, + ["damage_+%_while_wielding_wand"]=1219, + ["damage_+%_while_you_have_a_summoned_golem"]=5589, + ["damage_+%_with_bow_skills"]=882, + ["damage_+%_with_daggers_against_full_life_enemies"]=5590, + ["damage_+%_with_herald_skills"]=5591, + ["damage_+%_with_maces_sceptres_staves"]=5592, + ["damage_+%_with_melee_weapons"]=1181, + ["damage_+%_with_movement_skills"]=1286, + ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=5593, + ["damage_+%_with_one_handed_melee_weapons"]=1180, + ["damage_+%_with_one_handed_weapons"]=2948, + ["damage_+%_with_shield_skills"]=5594, + ["damage_+%_with_shield_skills_per_2%_attack_block"]=5595, + ["damage_+%_with_two_handed_melee_weapons"]=1186, + ["damage_+%_with_two_handed_weapons"]=2949, + ["damage_+1%_per_X_strength_when_in_main_hand"]=2445, + ["damage_against_undead_+%"]=5529, + ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3054, + ["damage_blocked_%_recouped_as_mana"]=5530, + ["damage_over_time_+%"]=1124, + ["damage_over_time_+%_per_frenzy_charge"]=1817, + ["damage_over_time_+%_per_power_charge"]=1818, + ["damage_over_time_+%_while_affected_by_a_herald"]=5532, + ["damage_over_time_+%_while_dual_wielding"]=1819, + ["damage_over_time_+%_while_holding_a_shield"]=1820, + ["damage_over_time_+%_while_wielding_two_handed_weapon"]=1821, + ["damage_over_time_+%_with_attack_skills"]=5533, + ["damage_over_time_+%_with_bow_skills"]=5534, + ["damage_over_time_+%_with_herald_skills"]=5535, + ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5531, + ["damage_over_time_multiplier_+_with_attacks"]=1153, + ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5536, + ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5537, + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5538, + ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5539, + ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5540, + ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5541, + ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5542, + ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=5596, + ["damage_reduction_rating_%_with_active_totem"]=2951, + ["damage_reduction_rating_from_body_armour_doubled"]=2950, + ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=5597, + ["damage_removed_from_mana_before_life_%_while_focused"]=5598, + ["damage_removed_from_spectres_before_life_or_es_%"]=5599, + ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=5600, + ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=5614, + ["damage_taken_%_recovered_as_life_from_stunning_hits"]=5615, + ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=5616, + ["damage_taken_+%_final_per_tailwind"]=5617, + ["damage_taken_+%_final_per_totem"]=5618, + ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=5601, + ["damage_taken_+%_for_4_seconds_on_kill"]=2938, + ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3036, + ["damage_taken_+%_from_bleeding_enemies"]=2929, + ["damage_taken_+%_from_blinded_enemies"]=2900, + ["damage_taken_+%_from_ghosts"]=1919, + ["damage_taken_+%_from_hits"]=1911, + ["damage_taken_+%_from_skeletons"]=1918, + ["damage_taken_+%_from_taunted_enemies"]=3656, + ["damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute"]=5602, + ["damage_taken_+%_if_have_been_frozen_recently"]=5619, + ["damage_taken_+%_if_have_not_been_hit_recently"]=5620, + ["damage_taken_+%_if_not_hit_recently_final"]=3753, + ["damage_taken_+%_if_taunted_an_enemy_recently"]=3788, + ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=5603, + ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3741, + ["damage_taken_+%_on_full_life"]=5621, + ["damage_taken_+%_on_low_life"]=5622, + ["damage_taken_+%_per_frenzy_charge"]=2581, + ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3203, + ["damage_taken_+%_vs_demons"]=2434, + ["damage_taken_+%_while_affected_by_elusive"]=5604, + ["damage_taken_+%_while_es_full"]=1915, + ["damage_taken_+%_while_leeching"]=5623, + ["damage_taken_+%_while_phasing"]=5624, + ["damage_taken_from_traps_and_mines_+%"]=2910, + ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=5605, + ["damage_taken_goes_to_life_over_4_seconds_%"]=990, + ["damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute"]=5606, + ["damage_taken_goes_to_mana_%"]=997, + ["damage_taken_goes_to_mana_%_per_10_tribute"]=5607, + ["damage_taken_goes_to_mana_%_per_power_charge"]=2795, + ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=5608, + ["damage_taken_over_time_+%_final_during_life_flask_effect"]=5609, + ["damage_taken_per_250_dexterity_+%"]=5610, + ["damage_taken_per_250_intelligence_+%"]=5611, + ["damage_taken_per_250_strength_+%"]=5612, + ["damage_taken_per_ghost_dance_stack_+%"]=5613, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2652, + ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2635, + ["damage_vs_enemies_on_low_life_+%"]=2477, + ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2636, + ["damage_vs_shocked_enemies_+%"]=1148, + ["damage_while_dual_wielding_+%"]=1174, + ["damage_while_no_damage_taken_+%"]=2843, + ["damage_while_no_frenzy_charges_+%"]=3347, + ["damage_with_cold_skills_+%"]=1237, + ["damage_with_fire_skills_+%"]=1229, + ["damage_with_hits_is_lucky_vs_enemies_on_low_life"]=5625, + ["damage_with_hits_is_lucky_vs_heavy_stunned_enemies"]=5626, + ["damage_with_lightning_skills_+%"]=1242, + ["damaging_ailment_duration_+%"]=5627, + ["damaging_ailment_duration_+%_per_10_tribute"]=5628, + ["damaging_ailments_deal_damage_+%_faster"]=5630, + ["dark_pact_minions_recover_%_life_on_hit"]=5631, + ["dark_ritual_area_of_effect_+%"]=5632, + ["dark_ritual_damage_+%"]=5633, + ["dark_ritual_linked_curse_effect_+%"]=5634, + ["darkness_per_level"]=5635, + ["darkness_refresh_rate_+%"]=5636, + ["daytime_fish_caught_size_+%"]=5637, + ["daze_build_up_+%"]=5638, + ["daze_duration_+%"]=5639, + ["daze_magnitude_+%"]=5640, + ["deadeye_accuracy_unaffected_by_range"]=5641, + ["deadeye_damage_taken_+%_final_from_marked_enemy"]=5642, + ["deadeye_movement_speed_penalty_+%_final_while_performing_action"]=5643, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases"]=5644, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=5645, + ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=5646, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=5647, + ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=5648, + ["deal_double_damage_to_enemies_on_full_life"]=5649, + ["deal_no_damage_when_not_on_low_life"]=5650, + ["deal_no_damage_yourself"]=1920, + ["deal_no_elemental_damage"]=5651, + ["deal_no_elemental_physical_damage"]=5652, + ["deal_no_non_chaos_damage"]=5653, + ["deal_no_non_cold_damage"]=2464, + ["deal_no_non_elemental_damage"]=5654, + ["deal_no_non_fire_damage"]=2462, + ["deal_no_non_lightning_damage"]=2463, + ["deal_no_non_physical_damage"]=2460, + ["deal_thorns_damage_chance_%_on_hit"]=5655, + ["deal_thorns_damage_on_hit"]=5656, + ["deal_thorns_damage_on_stun"]=5657, + ["deathgrip_presence"]=5658, + ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2370, + ["deaths_oath_debuff_on_kill_duration_ms"]=2370, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=5659, + ["debilitate_enemies_within_X_metres_while_active_blocking"]=5660, + ["debuff_time_passed_+%"]=5662, + ["debuff_time_passed_-%_while_affected_by_haste"]=5661, + ["decimating_strike"]=5663, + ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=5664, + ["decoy_totem_life_+%"]=3568, + ["decoy_totem_radius_+%"]=3411, + ["defences_+%_while_on_low_life"]=5665, + ["defences_+%_while_wielding_quarterstaff"]=5666, + ["defences_+%_while_you_have_four_linked_targets"]=5667, + ["defences_are_zero"]=5668, + ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=5669, + ["defend_with_%_armour_against_critical_strikes"]=5670, + ["defend_with_%_armour_against_hits_from_distance_greater_than_6m"]=5671, + ["defend_with_%_armour_against_ranged_attacks"]=5672, + ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=5673, + ["defiance_banner_aura_effect_+%"]=5674, + ["defiance_banner_mana_reservation_efficiency_+%"]=5675, + ["deflected_hit_damage_taken_%_recouped_as_life"]=5676, + ["deflected_hits_cannot_directly_inflict_maim_on_self"]=5677, + ["deflected_hits_cannot_inflict_bleeding_on_self"]=5678, + ["deflection_rating_+%"]=5679, + ["deflection_rating_+%_while_surrounded"]=5680, + ["degen_effect_+%"]=1916, + ["delirium_aura_effect_+%"]=5681, + ["delirium_mana_reservation_+%"]=5682, + ["delirium_reserves_no_mana"]=5683, + ["delve_biome_area_contains_x_extra_packs_of_insects"]=5684, + ["delve_biome_azurite_collected_+%"]=1979, + ["delve_biome_boss_drops_additional_unique_item"]=1970, + ["delve_biome_boss_drops_extra_precursor_component_ring"]=1971, + ["delve_biome_boss_drops_x_additional_fossils"]=1972, + ["delve_biome_boss_hits_always_crit"]=1973, + ["delve_biome_boss_life_+%_final"]=1974, + ["delve_biome_boss_physical_damage_%_to_gain_as_cold"]=1975, + ["delve_biome_boss_physical_damage_%_to_gain_as_fire"]=1976, + ["delve_biome_boss_physical_damage_%_to_gain_as_lightning"]=1977, + ["delve_biome_city_chambers_can_contain_special_delve_chest"]=1981, + ["delve_biome_contains_delve_boss"]=1969, + ["delve_biome_encounters_extra_reward_chest_%_chance"]=1982, + ["delve_biome_monster_drop_fossil_chance_%"]=1983, + ["delve_biome_monster_projectiles_always_pierce"]=5685, + ["delve_biome_node_tier_upgrade_+%"]=1985, + ["delve_biome_off_path_reward_chests_always_azurite"]=1987, + ["delve_biome_off_path_reward_chests_always_currency"]=1988, + ["delve_biome_off_path_reward_chests_always_fossils"]=1989, + ["delve_biome_off_path_reward_chests_always_resonators"]=1990, + ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=1991, + ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=1992, + ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=1993, + ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=1994, + ["delve_biome_sulphite_cost_+%_final"]=1980, + ["delve_boss_life_+%_final_from_biome"]=5686, + ["demigod_footprints_from_item"]=9935, + ["demigods_virtue"]=9860, + ["demon_form_has_no_max_stacks"]=5687, + ["demon_minion_reservation_+%"]=9244, + ["desecrate_cooldown_speed_+%"]=3459, + ["desecrate_creates_X_additional_corpses"]=3814, + ["desecrate_damage_+%"]=3303, + ["desecrate_duration_+%"]=3496, + ["desecrate_maximum_number_of_corpses"]=5689, + ["desecrate_number_of_corpses_to_create"]=3690, + ["desecrate_on_block_%_chance_to_create"]=2260, + ["desecrated_ground_effect_on_self_+%"]=1833, + ["despair_curse_effect_+%"]=5690, + ["despair_duration_+%"]=5691, + ["despair_gem_level_+"]=1928, + ["despair_no_reservation"]=5692, + ["destructive_link_duration_+%"]=5693, + ["determination_aura_effect_+%"]=2978, + ["determination_mana_reservation_+%"]=3607, + ["determination_mana_reservation_efficiency_+%"]=5695, + ["determination_mana_reservation_efficiency_-2%_per_1"]=5694, + ["determination_reserves_no_mana"]=5696, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3566, + ["detonate_dead_damage_+%"]=3272, + ["detonate_dead_radius_+%"]=3406, + ["detonator_skill_area_of_effect_+%"]=5697, + ["detonator_skill_damage_+%"]=5698, + ["devouring_totem_%_chance_to_consume_additional_corpse"]=3574, + ["dexterity_+%"]=1101, + ["dexterity_+%_if_strength_higher_than_intelligence"]=5699, + ["dexterity_inherently_grants_mana_instead_of_accuracy"]=1704, + ["dexterity_skill_gem_level_+"]=5700, + ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=401, + ["disable_chest_slot"]=2268, + ["disable_skill_if_melee_attack"]=2184, + ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=5701, + ["discharge_area_of_effect_+%_final"]=5702, + ["discharge_chance_not_to_consume_charges_%"]=3021, + ["discharge_cooldown_override_ms"]=5703, + ["discharge_damage_+%"]=3019, + ["discharge_damage_+%_final"]=5704, + ["discharge_radius_+"]=5705, + ["discharge_radius_+%"]=3020, + ["discharge_triggered_damage_+%_final"]=5706, + ["discipline_aura_effect_+%"]=2979, + ["discipline_mana_reservation_+%"]=3608, + ["discipline_mana_reservation_efficiency_+%"]=5708, + ["discipline_mana_reservation_efficiency_-2%_per_1"]=5707, + ["discipline_reserves_no_mana"]=5709, + ["disintegrate_secondary_beam_angle_+%"]=5710, + ["dispel_bleed_on_guard_skill_use"]=5711, + ["dispel_corrupted_blood_on_guard_skill_use"]=5712, + ["dispel_status_ailments_on_flask_use"]=2912, + ["dispel_status_ailments_on_rampage_threshold"]=2602, + ["display_abberaths_hooves_skill_level"]=563, + ["display_ailment_bearer_charge_interval"]=4001, + ["display_altar_chaos_aura"]=5713, + ["display_altar_cold_aura"]=5714, + ["display_altar_fire_aura"]=5715, + ["display_altar_lightning_aura"]=5716, + ["display_altar_tangle_tentalces_daemon"]=5717, + ["display_area_contains_alluring_vaal_side_area"]=5718, + ["display_area_contains_corrupting_tempest"]=5719, + ["display_area_contains_improved_labyrinth_trial"]=5720, + ["display_attack_with_commandment_of_force_on_hit_%"]=3105, + ["display_attack_with_commandment_of_fury_on_hit_%"]=3117, + ["display_attack_with_commandment_of_ire_when_hit_%"]=3592, + ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3109, + ["display_attack_with_commandment_of_spite_when_hit_%"]=3121, + ["display_attack_with_decree_of_force_on_hit_%"]=3104, + ["display_attack_with_decree_of_fury_on_hit_%"]=3116, + ["display_attack_with_decree_of_ire_when_hit_%"]=3591, + ["display_attack_with_decree_of_light_when_critically_hit_%"]=3108, + ["display_attack_with_decree_of_spite_when_hit_%"]=3120, + ["display_attack_with_edict_of_force_on_hit_%"]=3103, + ["display_attack_with_edict_of_fury_on_hit_%"]=3115, + ["display_attack_with_edict_of_ire_when_hit_%"]=3590, + ["display_attack_with_edict_of_light_when_critically_hit_%"]=3107, + ["display_attack_with_edict_of_spite_when_hit_%"]=3119, + ["display_attack_with_word_of_force_on_hit_%"]=3102, + ["display_attack_with_word_of_fury_on_hit_%"]=3114, + ["display_attack_with_word_of_ire_when_hit_%"]=3589, + ["display_attack_with_word_of_light_when_critically_hit_%"]=3106, + ["display_attack_with_word_of_spite_when_hit_%"]=3118, + ["display_bow_range_+"]=2699, + ["display_cast_commandment_of_blades_on_hit_%_"]=3081, + ["display_cast_commandment_of_flames_on_hit_%"]=3131, + ["display_cast_commandment_of_frost_on_kill_%"]=3135, + ["display_cast_commandment_of_inferno_on_kill_%"]=3089, + ["display_cast_commandment_of_reflection_when_hit_%"]=3101, + ["display_cast_commandment_of_tempest_on_hit_%"]=3093, + ["display_cast_commandment_of_the_grave_on_kill_%"]=3097, + ["display_cast_commandment_of_thunder_on_kill_%"]=3139, + ["display_cast_commandment_of_war_on_kill_%"]=3113, + ["display_cast_commandment_of_winter_when_hit_%"]=3085, + ["display_cast_decree_of_blades_on_hit_%__"]=3080, + ["display_cast_decree_of_flames_on_hit_%"]=3130, + ["display_cast_decree_of_frost_on_kill_%"]=3134, + ["display_cast_decree_of_inferno_on_kill_%"]=3088, + ["display_cast_decree_of_reflection_when_hit_%"]=3100, + ["display_cast_decree_of_tempest_on_hit_%"]=3092, + ["display_cast_decree_of_the_grave_on_kill_%"]=3096, + ["display_cast_decree_of_thunder_on_kill_%"]=3138, + ["display_cast_decree_of_war_on_kill_%"]=3112, + ["display_cast_decree_of_winter_when_hit_%"]=3084, + ["display_cast_edict_of_blades_on_hit_%_"]=3079, + ["display_cast_edict_of_flames_on_hit_%"]=3129, + ["display_cast_edict_of_frost_on_kill_%"]=3133, + ["display_cast_edict_of_inferno_on_kill_%"]=3087, + ["display_cast_edict_of_reflection_when_hit_%"]=3099, + ["display_cast_edict_of_tempest_on_hit_%"]=3091, + ["display_cast_edict_of_the_grave_on_kill_%"]=3095, + ["display_cast_edict_of_thunder_on_kill_%"]=3137, + ["display_cast_edict_of_war_on_kill_%"]=3111, + ["display_cast_edict_of_winter_when_hit_%"]=3083, + ["display_cast_fire_burst_on_kill"]=564, + ["display_cast_word_of_blades_on_hit_%"]=3078, + ["display_cast_word_of_flames_on_hit_%"]=3128, + ["display_cast_word_of_frost_on_kill_%"]=3132, + ["display_cast_word_of_inferno_on_kill_%"]=3086, + ["display_cast_word_of_reflection_when_hit_%"]=3098, + ["display_cast_word_of_tempest_on_hit_%"]=3090, + ["display_cast_word_of_the_grave_on_kill_%"]=3094, + ["display_cast_word_of_thunder_on_kill_%"]=3136, + ["display_cast_word_of_war_on_kill_%"]=3110, + ["display_cast_word_of_winter_when_hit_%"]=3082, + ["display_cowards_trial_waves_of_monsters"]=5721, + ["display_cowards_trial_waves_of_undead_monsters"]=5722, + ["display_dark_ritual_curse_max_skill_level_requirement"]=5723, + ["display_golden_radiance"]=2183, + ["display_heist_contract_lockdown_timer_+%"]=5724, + ["display_herald_of_thunder_storm"]=5374, + ["display_item_generation_can_roll_minion_affixes"]=43, + ["display_item_generation_can_roll_totem_affixes"]=44, + ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=5725, + ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=5726, + ["display_legion_uber_fragment_improved_rewards_+%"]=5727, + ["display_link_stuff"]=7029, + ["display_mana_cost_reduction_%"]=1643, + ["display_map_augmentable_boss"]=5728, + ["display_map_boss_gives_experience_+%"]=2508, + ["display_map_final_boss_drops_higher_level_gear"]=2507, + ["display_map_has_oxygen"]=2629, + ["display_map_inhabited_by_lunaris_fanatics"]=5729, + ["display_map_inhabited_by_solaris_fanatics"]=5730, + ["display_map_inhabited_by_wild_beasts"]=2023, + ["display_map_labyrinth_chests_fortune"]=5731, + ["display_map_labyrinth_enchant_belts"]=5732, + ["display_map_large_chest"]=2229, + ["display_map_larger_maze"]=2228, + ["display_map_mission_id"]=5733, + ["display_map_no_monsters"]=2126, + ["display_map_restless_dead"]=2227, + ["display_memory_line_abyss_beyond_monsters_from_cracks"]=5734, + ["display_memory_line_ambush_contains_standalone_map_boss"]=5735, + ["display_memory_line_ambush_strongbox_chain"]=5736, + ["display_memory_line_anarchy_rogue_exiles_in_packs"]=5737, + ["display_memory_line_bestiary_capturable_harvest_monsters"]=5738, + ["display_memory_line_breach_area_is_breached"]=5739, + ["display_memory_line_breach_miniature_flash_breaches"]=5740, + ["display_memory_line_domination_multiple_modded_shrines"]=5741, + ["display_memory_line_domination_shrines_to_pantheon_gods"]=5742, + ["display_memory_line_essence_multiple_rare_monsters"]=5743, + ["display_memory_line_essence_rogue_exiles"]=5744, + ["display_memory_line_harbinger_player_is_a_harbinger"]=5745, + ["display_memory_line_harbinger_portals_everywhere"]=5746, + ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=5747, + ["display_memory_line_incursion_reverse"]=5748, + ["display_memory_line_torment_player_is_possessed"]=5749, + ["display_memory_line_torment_rares_uniques_are_possessed"]=5750, + ["display_minion_maximum_life"]=1644, + ["display_modifiers_to_totem_life_effect_these_minions"]=5751, + ["display_passive_attribute_text"]=5752, + ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=396, + ["display_strongbox_drops_additional_shaper_or_elder_cards"]=5753, + ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=565, + ["distance_scaled_accuracy_rating_penalty_+%"]=5754, + ["divine_tempest_beam_width_+%"]=5755, + ["divine_tempest_damage_+%"]=5756, + ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=5757, + ["djinn_damage_+%_final_per_teleport_in_sequence"]=5758, + ["do_not_chain"]=1493, + ["dodge_roll_base_travel_distance"]=5759, + ["dodge_roll_can_avoid_all_damage"]=5760, + ["dodge_roll_phasing_without_visual"]=5761, + ["dodge_roll_travel_distance_+_if_dodge_rolled_recently"]=4003, + ["dodge_roll_travel_distance_+_if_not_dodge_rolled_recently"]=4002, + ["dodge_roll_travel_distance_+_while_surrounded"]=5762, + ["doedre_aura_damage_+%_final"]=5763, + ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2639, + ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2642, + ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2641, + ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2640, + ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=5764, + ["dominating_blow_duration_+%"]=3475, + ["dominating_blow_minion_damage_+%"]=3286, + ["dominating_blow_skill_attack_damage_+%"]=3287, + ["dot_multiplier_+"]=1152, + ["dot_multiplier_+_if_crit_in_past_8_seconds"]=5765, + ["dot_multiplier_+_while_affected_by_malevolence"]=5766, + ["dot_multiplier_+_with_bow_skills"]=5767, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=5768, + ["double_armour_effect"]=5769, + ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=5771, + ["double_damage_chance_%_if_below_100_strength"]=5770, + ["double_effect_of_consuming_frenzy_charges"]=5772, + ["double_evasion_rating_from_gloves_helmets_boots"]=5773, + ["double_evasion_rating_if_you_havent_been_hit_recently"]=5774, + ["double_number_of_poison_you_can_inflict"]=5775, + ["double_slash_critical_strike_chance_+%"]=3714, + ["double_slash_damage_+%"]=3707, + ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=5776, + ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=5776, + ["double_slash_radius_+%"]=3716, + ["double_strike_attack_speed_+%"]=3430, + ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=5777, + ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2856, + ["double_strike_critical_strike_chance_+%"]=3513, + ["double_strike_damage_+%"]=3215, + ["drain_%_max_mana_to_activate_expended_charms"]=5778, + ["drain_focus_%_of_damage_dealt_on_hit"]=5779, + ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=5780, + ["dread_banner_aura_effect_+%"]=5781, + ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner"]=5782, + ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50"]=5783, + ["dread_banner_mana_reservation_efficiency_+%"]=5784, + ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=5785, + ["dual_strike_attack_speed_+%"]=3431, + ["dual_strike_attack_speed_+%_while_wielding_claw"]=5786, + ["dual_strike_critical_strike_chance_+%"]=3514, + ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=5787, + ["dual_strike_damage_+%"]=3216, + ["dual_strike_intimidate_on_hit_while_wielding_axe"]=5788, + ["dual_strike_main_hand_deals_double_damage_%"]=5789, + ["dual_strike_melee_splash_while_wielding_mace"]=5790, + ["dual_strike_melee_splash_with_off_hand_weapon"]=5791, + ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=5792, + ["dual_wield_or_shield_block_%"]=1083, + ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=5793, + ["duration_of_ailments_on_self_+%_per_fortification"]=5794, + ["each_arrow_fired_gains_random_perdandus_prefix"]=5795, + ["earthquake_and_earthshatter_shatter_on_killing_blow"]=5796, + ["earthquake_damage_+%"]=3318, + ["earthquake_damage_+%_per_100ms_duration"]=5797, + ["earthquake_duration_+%"]=3503, + ["earthquake_radius_+%"]=3421, + ["earthshatter_area_of_effect_+%"]=5798, + ["earthshatter_damage_+%"]=5799, + ["electrocuted_enemy_damage_taken_+%"]=5800, + ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=5801, + ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=5802, + ["elemental_ailment_types_apply_damage_taken_+%"]=5803, + ["elemental_ailments_reflected_to_self"]=5804, + ["elemental_critical_strike_chance_+%"]=1336, + ["elemental_critical_strike_multiplier_+"]=1357, + ["elemental_damage_+%"]=1671, + ["elemental_damage_+%_during_flask_effect"]=3791, + ["elemental_damage_+%_final_per_righteous_charge"]=5809, + ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=5810, + ["elemental_damage_+%_if_enemy_chilled_recently"]=5811, + ["elemental_damage_+%_if_enemy_ignited_recently"]=5812, + ["elemental_damage_+%_if_enemy_shocked_recently"]=5813, + ["elemental_damage_+%_if_have_crit_recently"]=5814, + ["elemental_damage_+%_if_used_a_warcry_recently"]=5815, + ["elemental_damage_+%_per_10_devotion"]=5816, + ["elemental_damage_+%_per_10_dexterity"]=5817, + ["elemental_damage_+%_per_12_int"]=5818, + ["elemental_damage_+%_per_12_strength"]=5819, + ["elemental_damage_+%_per_divine_charge"]=3962, + ["elemental_damage_+%_per_frenzy_charge"]=1822, + ["elemental_damage_+%_per_level"]=2622, + ["elemental_damage_+%_per_power_charge"]=5820, + ["elemental_damage_+%_per_sextant_affecting_area"]=5821, + ["elemental_damage_+%_per_stackable_unique_jewel"]=3728, + ["elemental_damage_+%_while_affected_by_a_herald"]=5822, + ["elemental_damage_+%_while_in_area_affected_by_sextant"]=5823, + ["elemental_damage_additional_rolls_lucky_shocked"]=5805, + ["elemental_damage_can_freeze"]=5806, + ["elemental_damage_can_ignite"]=5807, + ["elemental_damage_can_inflict_bleeding"]=5808, + ["elemental_damage_can_shock"]=2537, + ["elemental_damage_reduction_%_from_evasion_rating"]=5824, + ["elemental_damage_resistance_+%"]=5825, + ["elemental_damage_resisted_by_lowest_elemental_resistance"]=5826, + ["elemental_damage_taken_%_as_chaos"]=2144, + ["elemental_damage_taken_%_recouped_as_life"]=5827, + ["elemental_damage_taken_+%"]=2909, + ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=2934, + ["elemental_damage_taken_+%_during_flask_effect"]=3653, + ["elemental_damage_taken_+%_final_per_raised_zombie"]=5828, + ["elemental_damage_taken_+%_if_been_hit_recently"]=5830, + ["elemental_damage_taken_+%_if_not_hit_recently"]=5831, + ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=5832, + ["elemental_damage_taken_+%_per_endurance_charge"]=5833, + ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3626, + ["elemental_damage_taken_+%_while_stationary"]=5834, + ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=5829, + ["elemental_damage_with_attack_skills_+%"]=880, + ["elemental_damage_with_attack_skills_+%_per_power_charge"]=5835, + ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2427, + ["elemental_golem_granted_buff_effect_+%"]=3664, + ["elemental_golem_immunity_to_elemental_damage"]=3661, + ["elemental_golems_maximum_life_is_doubled"]=5836, + ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=5837, + ["elemental_hit_attack_speed_+%"]=3438, + ["elemental_hit_cannot_roll_cold_damage"]=5838, + ["elemental_hit_cannot_roll_fire_damage"]=5839, + ["elemental_hit_cannot_roll_lightning_damage"]=5840, + ["elemental_hit_damage_+%"]=3260, + ["elemental_hit_damage_taken_%_as_physical"]=5841, + ["elemental_hit_deals_50%_less_cold_damage"]=5842, + ["elemental_hit_deals_50%_less_fire_damage"]=5843, + ["elemental_hit_deals_50%_less_lightning_damage"]=5844, + ["elemental_overload_rotation_active"]=9920, + ["elemental_penetration_%_during_flask_effect"]=3826, + ["elemental_penetration_%_if_you_have_a_power_charge"]=5846, + ["elemental_penetration_%_while_chilled"]=5847, + ["elemental_penetration_can_go_down_to_override"]=5845, + ["elemental_reflect_damage_taken_+%"]=2384, + ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=5849, + ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=5848, + ["elemental_resistance_%_per_10_devotion"]=5852, + ["elemental_resistance_%_per_minion_up_to_30%"]=5850, + ["elemental_resistance_%_per_stackable_unique_jewel"]=3729, + ["elemental_resistance_%_when_on_low_life"]=1430, + ["elemental_resistance_+%_per_15_ascendance"]=1104, + ["elemental_resistance_cannot_be_lowered_by_curses"]=5851, + ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3640, + ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=5853, + ["elemental_skill_chance_to_blind_nearby_enemies_%"]=5854, + ["elemental_skill_gem_level_+"]=5855, + ["elemental_skills_deal_triple_damage"]=5856, + ["elemental_storm_cooldown_recovery_speed_+%_final"]=5857, + ["elemental_sundering_damage_+%_final_if_created_from_unique"]=5858, + ["elemental_weakness_curse_effect_+%"]=3582, + ["elemental_weakness_duration_+%"]=3493, + ["elemental_weakness_gem_level_+"]=1929, + ["elemental_weakness_ignores_hexproof"]=2286, + ["elemental_weakness_no_reservation"]=5859, + ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3209, + ["elementalist_area_of_effect_+%_for_5_seconds"]=5860, + ["elementalist_chill_maximum_magnitude_override"]=5861, + ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3205, + ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3202, + ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3204, + ["elementalist_elemental_damage_+%_for_5_seconds"]=5862, + ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3207, + ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=5863, + ["elementalist_ignite_effect_+%_final"]=5864, + ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3206, + ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3803, + ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3208, + ["elusive_effect_+%"]=5865, + ["elusive_effect_on_self_+%_per_power_charge"]=3965, + ["ember_projectile_spread_area_+%"]=5866, + ["empowered_attack_damage_+%"]=5868, + ["empowered_attack_damage_+%_per_10_tribute"]=5867, + ["empowered_attack_double_damage_%_chance"]=5869, + ["empowered_attack_hit_damage_stun_multiplier_+%"]=5870, + ["empowered_attack_physical_damage_%_to_gain_as_fire"]=5871, + ["enable_ring_slot_3"]=5872, + ["enchantment_boots_added_cold_damage_when_hit_maximum"]=2861, + ["enchantment_boots_added_cold_damage_when_hit_minimum"]=2861, + ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2860, + ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=2921, + ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2797, + ["enchantment_boots_mana_costs_when_hit_+%"]=2858, + ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=5873, + ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2923, + ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2863, + ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2862, + ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2923, + ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=2863, + ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2862, + ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=2864, + ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=2922, + ["enchantment_boots_stun_avoid_%_on_kill"]=2859, + ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3143, + ["endurance_charge_duration_+%"]=1809, + ["endurance_charge_on_hit_%_vs_no_armour"]=5874, + ["endurance_charge_on_kill_%"]=2307, + ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=5875, + ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=5876, + ["endurance_charge_on_off_hand_kill_%"]=3049, + ["endurance_only_conduit"]=1954, + ["enduring_cry_buff_effect_+%"]=3679, + ["enduring_cry_cooldown_speed_+%"]=3464, + ["enduring_cry_grants_x_additional_endurance_charges"]=5877, + ["enemies_affected_by_your_hazards_recently_have_+%_armour"]=5878, + ["enemies_affected_by_your_hazards_recently_have_+%_evasion_rating"]=5879, + ["enemies_are_maimed_for_x_seconds_after_becoming_unpinned"]=5880, + ["enemies_blinded_by_you_while_blinded_have_malediction"]=5881, + ["enemies_chaos_resistance_%_while_cursed"]=3630, + ["enemies_chill_as_unfrozen"]=1602, + ["enemies_chilled_by_bane_and_contagion"]=5882, + ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=5883, + ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=5884, + ["enemies_damage_taken_+%_while_cursed"]=3340, + ["enemies_explode_for_%_life_as_physical_damage"]=5885, + ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=5886, + ["enemies_explode_on_kill"]=5887, + ["enemies_explode_on_kill_while_unhinged"]=5888, + ["enemies_extra_damage_rolls_with_lightning_damage"]=5889, + ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=5890, + ["enemies_hitting_you_drop_burning_ground_%"]=5891, + ["enemies_hitting_you_drop_chilled_ground_%"]=5892, + ["enemies_hitting_you_drop_shocked_ground_%"]=5893, + ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=5894, + ["enemies_in_presence_are_blinded"]=5895, + ["enemies_in_presence_are_intimidated"]=5896, + ["enemies_in_presence_cooldown_recovery_+%"]=5897, + ["enemies_in_presence_count_as_low_life"]=5898, + ["enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance"]=5899, + ["enemies_in_presence_gain_critical_weakness_every_second_for_seconds"]=5900, + ["enemies_in_presence_have_fire_exposure"]=5901, + ["enemies_in_presence_have_fire_resistance_%"]=5902, + ["enemies_in_presence_have_life_reserved_%"]=5903, + ["enemies_in_presence_have_no_elemental_resistances"]=5904, + ["enemies_in_presence_life_regeneration_+%"]=5905, + ["enemies_in_presence_lightning_resist_equal_to_yours"]=5906, + ["enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=5907, + ["enemies_in_your_presence_cannot_be_revived"]=5908, + ["enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted"]=5909, + ["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=5910, + ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=5911, + ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=5912, + ["enemies_near_link_skill_target_have_exposure"]=5913, + ["enemies_near_marked_enemy_are_blinded"]=5914, + ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=5915, + ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=5916, + ["enemies_taunted_by_you_cannot_evade_attacks"]=5917, + ["enemies_taunted_by_your_warcies_are_intimidated"]=5918, + ["enemies_taunted_by_your_warcries_are_unnerved"]=5919, + ["enemies_that_hit_you_inflict_temporal_chains"]=5920, + ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=5921, + ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=3969, + ["enemies_you_bleed_grant_flask_charges_+%"]=2181, + ["enemies_you_blind_have_critical_strike_chance_+%"]=5922, + ["enemies_you_curse_are_intimidated"]=5923, + ["enemies_you_curse_are_unnerved"]=5924, + ["enemies_you_curse_cannot_recharge_energy_shield"]=5925, + ["enemies_you_curse_have_15%_hinder"]=5926, + ["enemies_you_curse_have_malediction"]=3341, + ["enemies_you_expose_have_self_elemental_status_duration_+%"]=5927, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=5928, + ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=5929, + ["enemies_you_ignite_wither_does_not_expire"]=5930, + ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=5931, + ["enemies_you_maim_have_damage_taken_over_time_+%"]=5932, + ["enemies_you_shock_cast_speed_+%"]=3846, + ["enemies_you_shock_movement_speed_+%"]=3847, + ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=5933, + ["enemies_you_wither_have_all_resistances_%"]=5934, + ["enemy_additional_critical_strike_chance_permyriad_against_self"]=2761, + ["enemy_aggro_radius_+%"]=2773, + ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2762, + ["enemy_evasion_+%_if_you_have_hit_them_recently"]=5935, + ["enemy_extra_damage_rolls_chance_%"]=5937, + ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=5938, + ["enemy_extra_damage_rolls_when_on_full_life"]=5939, + ["enemy_extra_damage_rolls_when_on_low_life"]=2242, + ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2746, + ["enemy_hits_against_you_have_distance_based_accuracy_falloff"]=5940, + ["enemy_hits_roll_low_damage"]=2239, + ["enemy_knockback_direction_is_reversed"]=2655, + ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=5941, + ["enemy_non_skill_physical_damage_%_as_extra_fire_vs_you"]=1624, + ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2315, + ["enemy_phys_reduction_%_penalty_vs_hit"]=2624, + ["enemy_shock_on_kill"]=1603, + ["enemy_spell_critical_strike_chance_+%_against_self"]=5942, + ["energy_generated_+%"]=5943, + ["energy_generated_+%_if_crit_recently"]=5945, + ["energy_generation_is_doubled"]=5946, + ["energy_shield_%_gained_on_block"]=2155, + ["energy_shield_%_of_armour_rating_gained_on_block"]=2156, + ["energy_shield_%_to_lose_on_block"]=2410, + ["energy_shield_+%_if_both_rings_have_evasion_mod"]=5947, + ["energy_shield_+%_if_consumed_power_charge_recently"]=5948, + ["energy_shield_+%_per_10_strength"]=5963, + ["energy_shield_+%_per_power_charge"]=5964, + ["energy_shield_+_per_8_evasion_on_boots"]=5949, + ["energy_shield_additive_modifiers_instead_apply_to_ward"]=5950, + ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2325, + ["energy_shield_delay_-%"]=987, + ["energy_shield_delay_-%_if_stunned_recently"]=5951, + ["energy_shield_delay_-%_when_not_on_full_life"]=5952, + ["energy_shield_delay_-%_while_affected_by_archon"]=5953, + ["energy_shield_delay_-%_while_affected_by_discipline"]=5954, + ["energy_shield_delay_during_flask_effect_-%"]=3168, + ["energy_shield_from_focus_+%"]=5955, + ["energy_shield_from_gloves_and_boots_+%"]=5956, + ["energy_shield_from_helmet_+%"]=5957, + ["energy_shield_gain_per_target"]=1457, + ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=5958, + ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=5959, + ["energy_shield_gained_on_block"]=1468, + ["energy_shield_gained_on_enemy_death_per_level"]=2620, + ["energy_shield_increased_by_overcapped_cold_resistance"]=5960, + ["energy_shield_lost_per_minute_%"]=5961, + ["energy_shield_per_level"]=5962, + ["energy_shield_protects_mana"]=2745, + ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=5965, + ["energy_shield_recharge_delay_override_ms"]=5966, + ["energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently"]=3329, + ["energy_shield_recharge_not_delayed_by_damage"]=1387, ["energy_shield_recharge_rate_+%"]=986, - ["energy_shield_recharge_rate_during_flask_effect_+%"]=3223, - ["energy_shield_recharge_rate_per_minute_%"]=1405, - ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3828, - ["energy_shield_recharge_start_when_stunned"]=5893, - ["energy_shield_recharges_on_block_%"]=3078, - ["energy_shield_recharges_on_kill_%"]=5894, - ["energy_shield_recharges_on_skill_use_chance_%"]=5895, - ["energy_shield_recharges_on_suppress_%"]=3079, - ["energy_shield_recovery_rate_+%"]=1408, - ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=5896, - ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=5897, - ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=5898, - ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=5899, - ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=5900, - ["energy_shield_regeneration_%_per_minute_while_shocked"]=2708, - ["energy_shield_regeneration_rate_+%"]=5907, - ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=5903, - ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=5904, - ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1521, - ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=5901, - ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=5902, - ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=5905, - ["energy_shield_regeneration_rate_per_second"]=5906, - ["enfeeble_curse_effect_+%"]=3640, - ["enfeeble_duration_+%"]=3546, - ["enfeeble_gem_level_+"]=1952, - ["enfeeble_ignores_hexproof"]=2319, - ["enfeeble_no_reservation"]=5908, - ["ensnaring_arrow_area_of_effect_+%"]=5909, - ["ensnaring_arrow_debuff_effect_+%"]=5910, - ["envy_reserves_no_mana"]=5911, - ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=5912, - ["equipped_jewellery_effect_of_bonuses_+%"]=5913, - ["equipped_ring1_effect_of_bonuses_+%"]=5914, - ["equipped_ring2_effect_of_bonuses_+%"]=5915, - ["equipped_rings_effect_of_bonuses_+%"]=5916, - ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3851, - ["es_regeneration_per_minute_%_while_stationary"]=5917, - ["essence_buff_ground_fire_damage_to_deal_per_second"]=3950, - ["essence_buff_ground_fire_duration_ms"]=3950, - ["essence_display_elemental_damage_taken_while_not_moving_+%"]=3953, - ["essence_drain_damage_+%"]=3366, - ["essence_drain_soulrend_base_projectile_speed_+%"]=5918, - ["essence_drain_soulrend_number_of_additional_projectiles"]=5919, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=5920, - ["ethereal_knives_damage_+%"]=3287, - ["ethereal_knives_number_of_additional_projectiles"]=5921, - ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=5922, - ["ethereal_knives_projectile_speed_+%"]=3526, - ["ethereal_knives_projectiles_nova"]=5923, - ["evasion_+%_if_hit_recently"]=3812, - ["evasion_+%_per_10_intelligence"]=5926, - ["evasion_and_physical_damage_reduction_rating_+%"]=1396, - ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=5937, - ["evasion_rating_%_to_gain_as_ailment_threshold"]=5927, - ["evasion_rating_%_to_gain_as_armour"]=5938, - ["evasion_rating_+%"]=893, - ["evasion_rating_+%_during_focus"]=5928, - ["evasion_rating_+%_if_consumed_frenzy_charge_recently"]=5929, - ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=5924, - ["evasion_rating_+%_if_have_cast_dash_recently"]=5942, - ["evasion_rating_+%_if_have_not_been_hit_recently"]=5943, - ["evasion_rating_+%_if_you_dodge_rolled_recently"]=5944, - ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=5945, - ["evasion_rating_+%_per_500_maximum_mana_up_to_100%"]=5930, - ["evasion_rating_+%_per_5_intelligence"]=5925, - ["evasion_rating_+%_per_frenzy_charge"]=1402, - ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=5946, - ["evasion_rating_+%_when_on_full_life"]=5947, - ["evasion_rating_+%_when_on_low_life"]=2253, - ["evasion_rating_+%_while_leeching"]=5948, - ["evasion_rating_+%_while_moving"]=5949, - ["evasion_rating_+%_while_onslaught_is_active"]=1400, - ["evasion_rating_+%_while_phasing"]=2223, - ["evasion_rating_+%_while_surrounded"]=5931, - ["evasion_rating_+%_while_you_have_energy_shield"]=5950, - ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=5939, - ["evasion_rating_+_per_1_armour_on_gloves"]=5932, - ["evasion_rating_+_per_1_helmet_energy_shield"]=1399, - ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4011, - ["evasion_rating_+_when_on_full_life"]=1398, - ["evasion_rating_+_when_on_low_life"]=1397, - ["evasion_rating_+_while_phasing"]=5940, - ["evasion_rating_+_while_you_have_tailwind"]=5941, - ["evasion_rating_also_reduces_physical_damage"]=5933, - ["evasion_rating_from_helmet_and_boots_+%"]=5934, - ["evasion_rating_increased_by_overcapped_cold_resistance"]=5935, - ["evasion_rating_increased_by_overcapped_lightning_resistance"]=5936, - ["evasion_rating_plus_in_sand_stance"]=9069, - ["evasion_rating_while_es_full_+%_final"]=3704, - ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=5951, - ["exerted_attack_knockback_chance_%"]=5952, - ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=5953, - ["expanding_fire_cone_additional_maximum_number_of_stages"]=5954, - ["expanding_fire_cone_area_of_effect_+%"]=5955, - ["expedition_chest_logbook_chance_%"]=5956, - ["expedition_monsters_logbook_chance_+%"]=5957, - ["experience_gain_+%"]=1435, - ["experience_loss_on_death_-%"]=1436, - ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=5958, - ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2969, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=2967, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=5959, - ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2968, - ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=9549, - ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=5960, - ["explode_on_kill_%_chaos_damage_to_deal"]=2966, - ["explode_on_kill_%_fire_damage_to_deal"]=2415, - ["explosive_arrow_attack_speed_+%"]=3756, - ["explosive_arrow_damage_+%"]=3318, - ["explosive_arrow_duration_+%"]=5961, - ["explosive_arrow_radius_+%"]=3456, - ["explosive_concoction_damage_+%"]=5962, - ["explosive_concoction_flask_charges_consumed_+%"]=5963, - ["explosive_concoction_skill_area_of_effect_+%"]=5964, - ["exposure_effect_+%_if_fire_cold_lightning_infusion"]=5965, - ["exposure_effect_on_you_+%"]=5966, - ["exposure_you_inflict_lowers_affected_resistance_by_extra_%"]=5968, - ["exsanguinate_additional_chain_chance_%"]=5969, - ["exsanguinate_damage_+%"]=5970, - ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=5971, - ["exsanguinate_duration_+%"]=5972, - ["extinguish_on_hit_%_chance"]=5973, - ["extra_critical_rolls"]=2382, - ["extra_critical_rolls_during_focus"]=5974, - ["extra_critical_rolls_while_on_low_life"]=5975, - ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=5976, - ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4057, - ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4058, - ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=5977, - ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=2912, - ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=5978, - ["extra_gore"]=9656, - ["extra_target_targeting_distance_+%"]=5979, - ["eye_of_winter_damage_+%"]=5980, - ["eye_of_winter_projectile_speed_+%"]=5981, - ["eye_of_winter_spiral_fire_frequency_+%"]=5982, - ["faster_bleed_%"]=5984, - ["faster_bleed_per_frenzy_charge_%"]=5983, - ["faster_burn_%"]=2282, - ["faster_burn_from_attacks_%"]=2284, - ["faster_poison_%"]=5985, - ["final_repeat_of_spells_area_of_effect_+%"]=5986, - ["fire_ailment_duration_+%"]=5987, - ["fire_and_chaos_damage_resistance_%"]=5988, - ["fire_and_cold_damage_resistance_%"]=2503, - ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=5989, - ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=5990, - ["fire_and_lightning_damage_resistance_%"]=2504, - ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=5991, - ["fire_attack_damage_+%"]=1129, - ["fire_attack_damage_+%_while_holding_a_shield"]=1132, - ["fire_axe_damage_+%"]=1204, - ["fire_beam_cast_speed_+%"]=5992, - ["fire_beam_damage_+%"]=5993, - ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=5994, - ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=5995, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=5996, - ["fire_beam_length_+%"]=5997, - ["fire_bow_damage_+%"]=1224, - ["fire_claw_damage_+%"]=1212, - ["fire_critical_strike_chance_+%"]=1345, - ["fire_critical_strike_multiplier_+"]=1366, - ["fire_dagger_damage_+%"]=1216, - ["fire_damage_+%"]=881, - ["fire_damage_+%_if_you_have_been_hit_recently"]=5999, - ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6000, - ["fire_damage_+%_per_20_strength"]=6001, - ["fire_damage_+%_per_endurance_charge"]=6002, - ["fire_damage_+%_per_missing_fire_resistance"]=6003, - ["fire_damage_+%_to_blinded_enemies"]=2891, - ["fire_damage_+%_vs_bleeding_enemies"]=6004, - ["fire_damage_+%_while_affected_by_anger"]=6005, - ["fire_damage_+%_while_affected_by_herald_of_ash"]=6006, - ["fire_damage_can_chill"]=2574, - ["fire_damage_can_freeze"]=2575, - ["fire_damage_can_shock"]=2576, - ["fire_damage_cannot_ignite"]=2583, - ["fire_damage_over_time_+%"]=1138, - ["fire_damage_over_time_multiplier_+%_while_burning"]=5998, - ["fire_damage_over_time_multiplier_+_with_attacks"]=1169, - ["fire_damage_resistance_%_when_on_low_life"]=1450, - ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6007, - ["fire_damage_resistance_+%"]=1451, - ["fire_damage_resistance_is_%"]=1448, - ["fire_damage_taken_%_as_cold"]=2850, - ["fire_damage_taken_%_as_lightning"]=2851, - ["fire_damage_taken_%_causes_additional_physical_damage"]=2176, - ["fire_damage_taken_+"]=1929, - ["fire_damage_taken_+%"]=1934, - ["fire_damage_taken_+%_while_moving"]=6010, - ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6008, - ["fire_damage_taken_per_second_while_flame_touched"]=6009, - ["fire_damage_taken_when_enemy_ignited"]=6011, - ["fire_damage_to_return_on_block"]=6012, - ["fire_damage_to_return_to_melee_attacker"]=1903, - ["fire_damage_to_return_when_hit"]=1907, - ["fire_damage_while_dual_wielding_+%"]=1188, - ["fire_damage_with_attack_skills_+%"]=6013, - ["fire_damage_with_spell_skills_+%"]=6014, - ["fire_dot_multiplier_+"]=1168, - ["fire_exposure_effect_+%"]=6015, - ["fire_exposure_on_hit_magnitude"]=6016, - ["fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%"]=6017, - ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6018, - ["fire_mace_damage_+%"]=1220, - ["fire_nova_mine_cast_speed_+%"]=3503, - ["fire_nova_mine_damage_+%"]=3301, - ["fire_nova_mine_num_of_additional_repeats"]=3599, - ["fire_penetration_%_if_you_have_blocked_recently"]=6019, - ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6020, - ["fire_resist_unaffected_by_area_penalties"]=6021, - ["fire_skill_chance_to_inflict_fire_exposure_%"]=6022, - ["fire_skill_gem_level_+"]=6023, - ["fire_skills_chance_to_poison_on_hit_%"]=6024, - ["fire_spell_skill_gem_level_+"]=947, - ["fire_staff_damage_+%"]=1208, - ["fire_storm_damage_+%"]=3302, - ["fire_sword_damage_+%"]=1229, - ["fire_trap_burning_damage_+%"]=3590, - ["fire_trap_burning_ground_duration_+%"]=6025, - ["fire_trap_cooldown_speed_+%"]=3505, - ["fire_trap_damage_+%"]=3271, - ["fire_trap_number_of_additional_traps_to_throw"]=6026, - ["fire_wand_damage_+%"]=1233, - ["fire_weakness_ignores_hexproof"]=2320, - ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6027, - ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6028, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=2920, - ["fireball_cannot_ignite"]=6029, - ["fireball_cast_speed_+%"]=3502, - ["fireball_chance_to_scorch_%"]=6030, - ["fireball_damage_+%"]=3272, - ["fireball_ignite_chance_%"]=3591, - ["fireball_radius_up_to_+%_at_longer_ranges"]=2919, - ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=6031, - ["firestorm_duration_+%"]=3560, - ["firestorm_explosion_area_of_effect_+%"]=3600, - ["first_X_minions_have_0_base_spirit_reservation"]=6032, - ["fish_quantity_+%"]=2552, - ["fish_rarity_+%"]=2553, - ["fish_rot_when_caught"]=6033, - ["fishing_bestiary_lures_at_fishing_holes"]=6034, - ["fishing_bite_sensitivity_+%"]=3227, - ["fishing_can_catch_divine_fish"]=6035, - ["fishing_chance_to_catch_boots_+%"]=6036, - ["fishing_chance_to_catch_divine_orb_+%"]=6037, - ["fishing_corrupted_fish_cleansed_chance_%"]=6038, - ["fishing_fish_always_tell_truth_with_this_rod"]=6039, - ["fishing_ghastly_fisherman_cannot_spawn"]=6040, - ["fishing_ghastly_fisherman_spawns_behind_you"]=6041, - ["fishing_hook_type"]=2550, - ["fishing_krillson_affection_per_fish_gifted_+%"]=6042, - ["fishing_life_of_fish_with_this_rod_+%"]=6043, - ["fishing_line_strength_+%"]=2547, - ["fishing_lure_type"]=2549, - ["fishing_magmatic_fish_are_cooked"]=6044, - ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6045, - ["fishing_pool_consumption_+%"]=2548, - ["fishing_range_+%"]=2551, - ["fishing_reeling_stability_+%"]=6046, - ["fishing_tasalio_ire_per_fish_caught_+%"]=6047, - ["fishing_valako_aid_per_stormy_day_+%"]=6048, - ["fishing_wish_effect_of_ancient_fish_+%"]=6049, - ["fishing_wish_per_fish_+"]=6050, - ["flail_accuracy_rating"]=3912, - ["flail_accuracy_rating_+%"]=3913, - ["flail_attack_speed_+%"]=3914, - ["flail_critical_strike_chance_+%"]=3915, - ["flail_critical_strike_multiplier_+"]=3916, - ["flail_damage_+%"]=3910, - ["flail_elemental_damage_+%"]=3911, - ["flame_dash_cooldown_speed_+%"]=3512, - ["flame_dash_damage_+%"]=3351, - ["flame_golem_damage_+%"]=3333, - ["flame_golem_elemental_resistances_%"]=3615, - ["flame_link_duration_+%"]=6051, - ["flame_surge_critical_strike_chance_+%"]=3572, - ["flame_surge_damage_+%"]=3303, - ["flame_surge_damage_+%_vs_burning_enemies"]=3601, - ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6052, - ["flame_totem_damage_+%"]=3343, - ["flame_totem_num_of_additional_projectiles"]=3584, - ["flame_totem_projectile_speed_+%"]=3527, - ["flame_wall_damage_+%"]=6053, - ["flame_wall_maximum_added_fire_damage"]=6054, - ["flame_wall_minimum_added_fire_damage"]=6054, - ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6055, - ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6056, - ["flameblast_and_incinerate_cannot_inflict_elemental_ailments"]=6057, - ["flameblast_cast_speed_+%_final_when_targeting_solar_orb"]=6058, - ["flameblast_critical_strike_chance_+%"]=3571, - ["flameblast_damage_+%"]=3319, - ["flameblast_radius_+%"]=3457, - ["flameblast_starts_with_X_additional_stages"]=6059, - ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6060, - ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6061, - ["flamethrower_tower_trap_cast_speed_+%"]=6062, - ["flamethrower_tower_trap_cooldown_speed_+%"]=6063, - ["flamethrower_tower_trap_damage_+%"]=6064, - ["flamethrower_tower_trap_duration_+%"]=6065, - ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6066, - ["flamethrower_tower_trap_throwing_speed_+%"]=6067, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6068, - ["flammability_curse_effect_+%"]=3641, - ["flammability_duration_+%"]=3545, - ["flammability_gem_level_+"]=1953, - ["flammability_mana_reservation_+%"]=3675, - ["flammability_no_reservation"]=6069, - ["flask_charge_recovery_is_doubled"]=6070, - ["flask_charges_+%_from_enemies_with_status_ailments"]=3870, - ["flask_charges_gained_+%"]=6074, - ["flask_charges_gained_+%_during_flask_effect"]=2856, - ["flask_charges_gained_+%_if_crit_recently"]=6071, - ["flask_charges_gained_from_kills_+%_final_from_unique"]=6072, - ["flask_charges_gained_from_marked_enemy_+%"]=6073, - ["flask_charges_recovered_per_3_seconds"]=3126, - ["flask_charges_used_+%"]=1001, - ["flask_duration_+%"]=906, - ["flask_duration_on_minions_+%"]=1891, - ["flask_effect_+%"]=2446, - ["flask_life_and_mana_recovery_+%_while_using_charm"]=6075, - ["flask_life_and_mana_to_recover_+%"]=6076, - ["flask_life_recovery_+%_while_affected_by_vitality"]=6077, - ["flask_life_recovery_rate_+%"]=903, - ["flask_life_to_recover_+%"]=1762, - ["flask_mana_charges_used_+%"]=1889, - ["flask_mana_recovery_rate_+%"]=904, - ["flask_mana_to_recover_+%"]=1763, - ["flask_minion_heal_%"]=2601, - ["flask_recovery_amount_%_to_recover_instantly"]=6078, - ["flask_recovery_is_instant"]=6079, - ["flask_recovery_speed_+%"]=1764, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6080, - ["flasks_%_chance_to_not_consume_charges"]=3854, - ["flasks_apply_to_your_linked_targets"]=6081, - ["flasks_apply_to_your_zombies_and_spectres"]=3387, - ["flasks_dispel_burning"]=2459, - ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6082, - ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6083, - ["flesh_and_stone_area_of_effect_+%"]=6084, - ["flesh_offering_attack_speed_+%"]=3749, - ["flesh_offering_duration_+%"]=3533, - ["flesh_offering_effect_+%"]=1105, - ["flesh_stone_mana_reservation_efficiency_+%"]=6086, - ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6085, - ["flesh_stone_no_reservation"]=6087, - ["flicker_strike_cooldown_speed_+%"]=3506, - ["flicker_strike_damage_+%"]=3292, - ["flicker_strike_damage_+%_per_frenzy_charge"]=3596, - ["flicker_strike_more_attack_speed_+%_final"]=1280, - ["focus_cooldown_modifier_ms"]=6088, - ["focus_cooldown_speed_+%"]=6089, - ["focus_decay_%_per_minute"]=6090, - ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6091, - ["forbidden_rite_damage_+%"]=6092, - ["forbidden_rite_number_of_additional_projectiles"]=6093, - ["forbidden_rite_projectile_speed_+%"]=6094, - ["forking_angle_+%"]=6095, - ["fortification_gained_from_hits_+%"]=6096, - ["fortification_gained_from_hits_+%_against_unique_enemies"]=6097, - ["fortify_duration_+%"]=1990, - ["fortify_duration_+%_per_10_strength"]=6098, - ["fortify_on_hit"]=6099, - ["freeze_as_though_dealt_damage_+%"]=2591, - ["freeze_chilled_enemies_as_though_dealt_damage_+%"]=6100, - ["freeze_damage_equal_to_%_of_maximum_mana_to_return_when_hit"]=6101, - ["freeze_duration_+%"]=1579, - ["freeze_duration_against_cursed_enemies_+%"]=6102, - ["freeze_mine_cold_resistance_+_while_frozen"]=2482, - ["freeze_mine_damage_+%"]=3352, - ["freeze_mine_radius_+%"]=3467, - ["freeze_prevention_ms_when_frozen"]=2594, - ["freeze_threshold_+%"]=2939, - ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6104, - ["freezing_pulse_cast_speed_+%"]=3501, - ["freezing_pulse_damage_+%"]=3273, - ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6105, - ["freezing_pulse_number_of_additional_projectiles"]=6106, - ["freezing_pulse_projectile_speed_+%"]=3523, - ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3608, - ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6107, - ["frenzy_charge_duration_+%_per_frenzy_charge"]=1754, - ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6108, - ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6109, - ["frenzy_damage_+%"]=3312, - ["frenzy_damage_+%_per_frenzy_charge"]=3607, - ["frenzy_only_conduit"]=1986, - ["from_self_maximum_added_attack_chaos_damage_taken"]=1258, - ["from_self_maximum_added_attack_cold_damage_taken"]=1245, - ["from_self_maximum_added_attack_fire_damage_taken"]=1239, - ["from_self_maximum_added_attack_lightning_damage_taken"]=1253, - ["from_self_maximum_added_attack_physical_damage_taken"]=1177, - ["from_self_maximum_added_cold_damage_taken"]=1243, - ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=3890, - ["from_self_maximum_added_fire_damage_taken"]=1237, - ["from_self_maximum_added_lightning_damage_taken"]=1251, - ["from_self_minimum_added_attack_chaos_damage_taken"]=1258, - ["from_self_minimum_added_attack_cold_damage_taken"]=1245, - ["from_self_minimum_added_attack_fire_damage_taken"]=1239, - ["from_self_minimum_added_attack_lightning_damage_taken"]=1253, - ["from_self_minimum_added_attack_physical_damage_taken"]=1177, - ["from_self_minimum_added_cold_damage_taken"]=1243, - ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=3890, - ["from_self_minimum_added_fire_damage_taken"]=1237, - ["from_self_minimum_added_lightning_damage_taken"]=1251, - ["frost_blades_damage_+%"]=3065, - ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6110, - ["frost_blades_number_of_additional_projectiles_in_chain"]=3067, - ["frost_blades_projectile_speed_+%"]=3066, - ["frost_bolt_cast_speed_+%"]=3776, - ["frost_bolt_damage_+%"]=3763, - ["frost_bolt_freeze_chance_%"]=3777, - ["frost_bolt_nova_cooldown_speed_+%"]=6111, - ["frost_bolt_nova_damage_+%"]=3764, - ["frost_bolt_nova_duration_+%"]=3778, - ["frost_bolt_nova_radius_+%"]=3771, - ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6113, - ["frost_bomb_buff_duration_+%"]=6112, - ["frost_bomb_cooldown_speed_+%"]=3519, - ["frost_bomb_damage_+%"]=3375, - ["frost_bomb_radius_+%"]=3476, - ["frost_fury_additional_max_number_of_stages"]=6114, - ["frost_fury_area_of_effect_+%_per_stage"]=6115, - ["frost_fury_damage_+%"]=6116, - ["frost_globe_added_cooldown_count"]=6117, - ["frost_globe_health_per_stage"]=6118, - ["frost_wall_cooldown_speed_+%"]=3510, - ["frost_wall_damage_+%"]=3346, - ["frost_wall_duration_+%"]=3536, - ["frostbite_curse_effect_+%"]=3642, - ["frostbite_duration_+%"]=3544, - ["frostbite_mana_reservation_+%"]=3676, - ["frostbite_no_reservation"]=6119, - ["frostbolt_number_of_additional_projectiles"]=6120, - ["frostbolt_projectile_acceleration"]=6121, - ["frozen_legion_%_chance_to_summon_additional_statue"]=6125, - ["frozen_legion_added_cooldown_count"]=6122, - ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6123, - ["frozen_legion_cooldown_speed_+%"]=6124, - ["frozen_monsters_take_increased_damage"]=2182, - ["frozen_sweep_damage_+%"]=6126, - ["frozen_sweep_damage_+%_final"]=6127, - ["full_life_threshold_%_override"]=6128, - ["full_mana_threshold_%_override"]=6129, - ["fungal_ground_while_stationary_radius"]=6130, - ["gain_%_damage_as_chaos_from_unreserved_darkness"]=6131, - ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4018, - ["gain_%_life_from_body_es"]=6132, - ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4017, - ["gain_%_maximum_energy_shield_as_freeze_threshold_+"]=6133, - ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6230, - ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6236, - ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6134, - ["gain_X%_armour_per_50_mana_reserved"]=6135, - ["gain_X_chaos_infusion_when_any_charge_is_consumed"]=6136, - ["gain_X_cold_infusion_on_reload"]=6137, - ["gain_X_cold_infusion_when_power_charge_is_consumed"]=6138, - ["gain_X_energy_shield_on_killing_shocked_enemy"]=2290, - ["gain_X_fire_infusion_on_reload"]=6137, - ["gain_X_fire_infusion_when_endurance_charge_is_consumed"]=6139, - ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6140, - ["gain_X_frenzy_charges_after_spending_200_mana"]=6141, - ["gain_X_life_on_stun"]=6142, - ["gain_X_lightning_infusion_when_frenzy_charge_is_consumed"]=6143, - ["gain_X_power_charges_on_using_a_warcry"]=6144, - ["gain_X_rage_on_hit_once_per_skill_use"]=6145, - ["gain_X_rage_on_hit_per_enemy_power"]=6146, - ["gain_X_random_charges_every_6_seconds"]=6147, - ["gain_X_random_charges_on_reaching_maximum_rage"]=6148, - ["gain_X_random_rare_monster_mods_on_kill"]=2739, - ["gain_X_vaal_souls_on_rampage_threshold"]=2645, - ["gain_X_volatility_on_persistent_minion_death"]=6149, - ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3760, - ["gain_absorption_charges_instead_of_power_charges"]=6150, - ["gain_accuracy_rating_equal_to_2_times_strength"]=6151, - ["gain_accuracy_rating_equal_to_intelligence"]=6152, - ["gain_accuracy_rating_equal_to_strength"]=6153, - ["gain_additional_crit_chance_from_%_chance_to_hit_over_100"]=6154, - ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6155, - ["gain_adrenaline_for_X_seconds_on_kill"]=6156, - ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6157, - ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6158, - ["gain_adrenaline_on_gaining_flame_touched"]=6159, - ["gain_adrenaline_when_ward_breaks_ms"]=6160, - ["gain_affliction_charges_instead_of_frenzy_charges"]=6161, - ["gain_alchemists_genius_on_flask_use_%"]=6162, - ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6163, - ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6164, - ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6165, - ["gain_arcane_surge_on_crit_%_chance"]=6166, - ["gain_arcane_surge_on_hit_%_chance"]=6169, - ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6167, - ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6168, - ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6170, - ["gain_arcane_surge_on_kill_chance_%"]=6171, - ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6172, - ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6173, - ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6174, - ["gain_arcane_surge_when_you_summon_a_totem"]=6175, - ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6176, - ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3681, - ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6177, - ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3099, - ["gain_blitz_charge_%_chance_on_crit"]=6178, - ["gain_brutal_charges_instead_of_endurance_charges"]=6179, - ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3436, - ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6180, - ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6181, - ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=9550, - ["gain_convergence_on_hitting_unique_enemy"]=4069, - ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=9635, - ["gain_crimson_dance_while_you_have_cat_stealth"]=9636, - ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6182, - ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3098, - ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=9551, - ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=3901, - ["gain_divine_charge_on_hit_%"]=4020, - ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4022, - ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3686, - ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3728, - ["gain_elusive_on_crit_%_chance"]=3898, - ["gain_elusive_on_kill_chance_%"]=3899, - ["gain_elusive_on_reaching_low_life"]=6184, - ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1541, - ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6189, - ["gain_endurance_charge_%_when_hit_while_channelling"]=6190, - ["gain_endurance_charge_if_attack_freezes"]=6185, - ["gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy"]=6186, - ["gain_endurance_charge_on_main_hand_kill_%"]=2986, - ["gain_endurance_charge_on_melee_stun"]=2473, - ["gain_endurance_charge_on_melee_stun_%"]=2473, - ["gain_endurance_charge_on_power_charge_expiry"]=2346, - ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6187, - ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6188, - ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6191, - ["gain_flask_chance_on_crit_%"]=3047, - ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6192, - ["gain_flask_charge_when_crit_%"]=1765, - ["gain_flask_charge_when_crit_amount"]=1765, - ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6193, - ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6194, - ["gain_frenzy_and_power_charge_on_kill_%"]=2345, - ["gain_frenzy_charge_%_when_hit_while_channelling"]=6205, - ["gain_frenzy_charge_if_attack_ignites"]=2540, - ["gain_frenzy_charge_on_critical_strike_%"]=6196, - ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6195, - ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6197, - ["gain_frenzy_charge_on_hit_%_while_blinded"]=6198, - ["gain_frenzy_charge_on_hit_while_bleeding"]=6199, - ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6200, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6201, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6202, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6203, - ["gain_frenzy_charge_on_main_hand_kill_%"]=2985, - ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3247, - ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6204, - ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6206, - ["gain_guard_flask_charge_when_hit_by_enemy_chance_%"]=6207, - ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=9637, - ["gain_iron_reflexes_while_stationary"]=9641, - ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3803, - ["gain_magic_monster_mods_on_kill_%_chance"]=6208, - ["gain_max_rage_on_losing_temporal_chains_debuff"]=6209, - ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6210, - ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3861, - ["gain_maximum_endurance_charges_when_crit_chance_%"]=6211, - ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6212, - ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6213, - ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6214, - ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6215, - ["gain_maximum_power_charges_on_vaal_skill_use"]=6216, - ["gain_mind_over_matter_while_at_maximum_power_charges"]=9638, - ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6217, - ["gain_no_inherent_bonus_from_dexterity"]=1729, - ["gain_no_inherent_bonus_from_intelligence"]=1730, - ["gain_no_inherent_bonus_from_strength"]=1731, - ["gain_onslaught_during_soul_gain_prevention"]=6218, - ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6219, - ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3836, - ["gain_onslaught_if_you_have_swapped_stance_recently"]=6220, - ["gain_onslaught_ms_on_using_a_warcry"]=6221, - ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2457, - ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6222, - ["gain_onslaught_on_hit_duration_ms"]=6223, - ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6224, - ["gain_onslaught_on_stun_duration_ms"]=2454, - ["gain_onslaught_when_ignited_ms"]=2721, - ["gain_onslaught_while_at_maximum_endurance_charges"]=6225, - ["gain_onslaught_while_frenzy_charges_full"]=3707, - ["gain_onslaught_while_not_on_low_mana"]=6226, - ["gain_onslaught_while_on_low_life"]=6227, - ["gain_onslaught_while_you_have_cats_agility"]=6228, - ["gain_onslaught_while_you_have_fortify"]=6229, - ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2222, - ["gain_phasing_if_enemy_killed_recently"]=6231, - ["gain_phasing_if_suppressed_spell_recently"]=6232, - ["gain_phasing_while_affected_by_haste"]=6233, - ["gain_phasing_while_at_maximum_frenzy_charges"]=2220, - ["gain_phasing_while_you_have_cats_stealth"]=6234, - ["gain_phasing_while_you_have_low_life"]=6235, - ["gain_phasing_while_you_have_onslaught"]=2221, - ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2644, - ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=9652, - ["gain_power_charge_on_critical_strike_with_wands_%"]=6237, - ["gain_power_charge_on_curse_cast_%"]=6238, - ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6239, - ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6240, - ["gain_power_charge_on_mana_flask_use_%_chance"]=6241, - ["gain_power_charge_on_non_critical_strike_%"]=3061, - ["gain_power_charge_on_vaal_skill_use_%"]=6242, - ["gain_power_charge_per_enemy_you_crit"]=2265, - ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6243, - ["gain_power_charge_when_throwing_trap_%"]=2628, - ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6244, - ["gain_rage_on_hitting_rare_unique_enemy_%"]=8668, - ["gain_rage_on_kill"]=8667, - ["gain_rage_when_you_use_a_warcry"]=8669, - ["gain_rampage_while_at_maximum_endurance_charges"]=2934, - ["gain_random_charge_on_block"]=6246, - ["gain_random_charge_per_second_while_stationary"]=6247, - ["gain_rare_monster_mods_on_kill_ms"]=2520, - ["gain_resolute_technique_while_do_not_have_elemental_overload"]=9642, - ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6248, - ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6249, - ["gain_shrine_buff_every_10_seconds"]=6250, - ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6251, - ["gain_soul_eater_during_flask_effect"]=3083, - ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6252, - ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6253, - ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2788, - ["gain_spell_cost_as_mana_every_fifth_cast"]=6254, - ["gain_spirit_charge_every_x_ms"]=4014, - ["gain_spirit_charge_on_kill_%_chance"]=4015, - ["gain_stormsurge_on_hit"]=6183, - ["gain_tailwind_on_critical_hit"]=6255, - ["gain_tailwind_stack_on_skill_use"]=6256, - ["gain_unholy_might_on_block_ms"]=2728, - ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6257, - ["gain_vaal_soul_on_hit_cooldown_ms"]=6258, - ["gain_wand_accuracy_rating_equal_to_intelligence"]=6259, - ["gain_x_es_on_trap_triggered_by_an_enemy"]=3866, - ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6260, - ["gain_x_fragile_regrowth_per_second"]=6261, - ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4054, - ["gain_x_life_on_trap_triggered_by_an_enemy"]=3865, - ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2696, - ["gain_x_rage_on_hit"]=8671, - ["gain_x_rage_on_hit_with_axes"]=6262, - ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6263, - ["gain_x_rage_on_melee_hit"]=6264, - ["gain_x_rage_per_200_mana_spent"]=6265, - ["gain_x_rage_when_hit"]=6266, - ["gain_x_rage_when_taken_crit"]=6267, - ["gain_x_rage_when_taken_hit"]=6268, - ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6269, - ["galvanic_arrow_area_damage_+%"]=8874, - ["galvanic_arrow_projectile_speed_+%"]=6270, - ["galvanic_field_beam_frequency_+%"]=6271, - ["galvanic_field_cast_speed_+%"]=6272, - ["galvanic_field_damage_+%"]=6273, - ["galvanic_field_number_of_chains"]=6274, - ["gem_experience_gain_+%"]=1594, - ["gem_requirements_can_be_satisfied_by_highest_attribute"]=6275, - ["gemling_all_attributes_+%_final"]=6276, - ["gemling_double_basic_attribute_bonuses"]=6277, - ["gemling_skill_cost_+%_final"]=6278, - ["generals_cry_cooldown_speed_+%"]=6279, - ["generals_cry_maximum_warriors_+"]=6280, - ["generate_endurance_charges_for_allies_in_your_presence"]=1858, - ["generate_frenzy_charges_for_allies_in_your_presence"]=1859, - ["generate_power_charges_for_allies_in_your_presence"]=1860, - ["generate_x_charges_for_any_flask_per_minute"]=6281, - ["generate_x_charges_for_charms_per_minute"]=6282, - ["generate_x_charges_for_guard_flasks_per_minute"]=6283, - ["generate_x_charges_for_life_flasks_per_minute"]=6284, - ["generate_x_charges_for_mana_flasks_per_minute"]=6285, - ["gifts_from_above_consecrated_ground_while_stationary"]=6286, - ["glacial_cascade_damage_+%"]=3320, - ["glacial_cascade_number_of_additional_bursts"]=6287, - ["glacial_cascade_physical_damage_%_to_gain_as_cold"]=6288, - ["glacial_cascade_radius_+%"]=3458, - ["glacial_hammer_damage_+%"]=3274, - ["glacial_hammer_freeze_chance_%"]=3592, - ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2899, - ["glacial_hammer_melee_splash_with_cold_damage"]=6289, - ["glacial_hammer_physical_damage_%_to_gain_as_cold_damage"]=3610, - ["global_added_chaos_damage_%_of_ward"]=1771, - ["global_always_hit"]=1748, - ["global_attack_speed_+%_per_green_socket_on_item"]=2430, - ["global_attack_speed_+%_per_level"]=6290, - ["global_bleed_on_hit"]=6291, - ["global_cannot_crit"]=1886, - ["global_chance_to_blind_on_hit_%"]=2646, - ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6292, - ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6293, - ["global_critical_strike_chance_+%_while_holding_bow"]=2193, - ["global_critical_strike_chance_+%_while_holding_staff"]=2191, - ["global_critical_strike_chance_while_dual_wielding_+%"]=3884, - ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2431, - ["global_critical_strike_multiplier_+_while_holding_bow"]=2194, - ["global_critical_strike_multiplier_+_while_holding_staff"]=2192, - ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1758, - ["global_critical_strike_multiplier_while_dual_wielding_+"]=3883, - ["global_defences_+%"]=2535, - ["global_defences_+%_per_frenzy_charge"]=6294, - ["global_defences_+%_per_white_socket_on_item"]=2436, - ["global_defences_while_in_presence_of_companion_+%"]=6295, - ["global_evasion_rating_+_while_moving"]=6296, - ["global_gem_attribute_requirements_+%_final_from_gemling"]=6297, - ["global_hit_causes_monster_flee_%"]=1746, - ["global_item_attribute_requirements_+%"]=2270, - ["global_knockback"]=1376, - ["global_knockback_on_crit"]=1666, - ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2427, - ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2433, - ["global_maximum_added_chaos_damage"]=1256, - ["global_maximum_added_cold_damage"]=1244, - ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6298, - ["global_maximum_added_fire_damage"]=1238, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=9185, - ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6299, - ["global_maximum_added_lightning_damage"]=1252, - ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6300, - ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6301, - ["global_maximum_added_physical_damage"]=1176, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6302, - ["global_melee_range_+_per_white_socket_on_item"]=2437, - ["global_minimum_added_chaos_damage"]=1256, - ["global_minimum_added_cold_damage"]=1244, - ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6298, - ["global_minimum_added_fire_damage"]=1238, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=9185, - ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6299, - ["global_minimum_added_lightning_damage"]=1252, - ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6300, - ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6301, - ["global_minimum_added_physical_damage"]=1176, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6302, - ["global_physical_damage_reduction_rating_while_moving"]=6303, - ["global_poison_on_hit"]=2846, - ["global_reduce_enemy_block_%"]=1618, - ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2428, - ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6304, - ["glows_in_area_with_unique_fish"]=3754, - ["goat_footprints_from_item"]=9657, - ["gold_+%_from_enemies"]=6305, - ["golem_attack_and_cast_speed_+%"]=6306, - ["golem_attack_maximum_added_physical_damage"]=6307, - ["golem_attack_minimum_added_physical_damage"]=6307, - ["golem_buff_effect_+%"]=6308, - ["golem_buff_effect_+%_per_summoned_golem"]=6309, - ["golem_cooldown_recovery_+%"]=2993, - ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3338, - ["golem_damage_+%_per_active_golem"]=3825, - ["golem_damage_+%_per_active_golem_type"]=3824, - ["golem_immunity_to_elemental_damage"]=3720, - ["golem_life_regeneration_per_minute_%"]=6310, - ["golem_maximum_life_+%"]=6311, - ["golem_maximum_mana_+%"]=6312, - ["golem_movement_speed_+%"]=6313, - ["golem_physical_damage_reduction_rating"]=6314, - ["golem_scale_+%"]=3331, - ["golem_skill_cooldown_recovery_+%"]=2992, - ["golems_larger_aggro_radius"]=9571, - ["grace_aura_effect_+%"]=3023, - ["grace_mana_reservation_+%"]=3671, - ["grace_mana_reservation_efficiency_+%"]=6316, - ["grace_mana_reservation_efficiency_-2%_per_1"]=6315, - ["grace_reserves_no_mana"]=6317, - ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2598, - ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6318, - ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6319, - ["grant_unholy_might_to_self_while_not_on_low_mana"]=2727, - ["grant_void_arrow_every_x_ms"]=6320, - ["gratuitous_violence_physical_damage_over_time_+%_final"]=6321, - ["grenade_fuse_duration_+%"]=6322, - ["grenade_skill_%_chance_to_explode_twice"]=6323, - ["grenade_skill_area_of_effect_+%"]=6324, - ["grenade_skill_cooldown_count_+"]=6325, - ["grenade_skill_cooldown_speed_+%"]=6326, - ["grenade_skill_damage_+%"]=6327, - ["grenade_skill_duration_+%"]=6328, - ["grenade_skill_number_of_additional_projectiles"]=6329, - ["ground_effect_duration_+%"]=6330, - ["ground_slam_angle_+%"]=2925, - ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6331, - ["ground_slam_damage_+%"]=3275, - ["ground_slam_radius_+%"]=3438, - ["ground_smoke_on_rampage_threshold_ms"]=2655, - ["ground_smoke_when_hit_%"]=2294, - ["ground_tar_on_block_base_area_of_effect_radius"]=6332, - ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2229, - ["ground_tar_when_hit_%_chance"]=6333, - ["guard_flask_effect_+%"]=6334, - ["guard_skill_cooldown_recovery_+%"]=6335, - ["guard_skill_effect_duration_+%"]=6336, - ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3419, - ["guardian_nearby_allies_share_charges"]=3744, - ["guardian_nearby_enemies_cannot_gain_charges"]=3415, - ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3418, - ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3416, - ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3417, - ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=2976, - ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6337, - ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6338, - ["halve_evasion_rating_from_body"]=6340, - ["harvest_encounter_fluid_granted_+%"]=6341, - ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6342, - ["has_curse_limit_equal_to_maximum_power_charges"]=6343, - ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6344, - ["has_onslaught_if_totem_summoned_recently"]=6345, - ["has_stun_prevention_flask"]=6346, - ["has_trickster_alternating_damage_taken_+%_final"]=6347, - ["has_unique_brutal_shrine_effect"]=6348, - ["has_unique_chaos_shrine_effect"]=6349, - ["has_unique_cold_shrine_effect"]=6350, - ["has_unique_fire_shrine_effect"]=6351, - ["has_unique_lightning_shrine_effect"]=6352, - ["has_unique_massive_shrine_effect"]=6353, - ["haste_aura_effect_+%"]=3024, - ["haste_mana_reservation_+%"]=3672, - ["haste_mana_reservation_efficiency_+%"]=6355, - ["haste_mana_reservation_efficiency_-2%_per_1"]=6354, - ["haste_reserves_no_mana"]=6356, - ["hatred_aura_effect_+%"]=3026, - ["hatred_mana_reservation_+%"]=3662, - ["hatred_mana_reservation_efficiency_+%"]=6358, - ["hatred_mana_reservation_efficiency_-2%_per_1"]=6357, - ["hatred_reserves_no_mana"]=6359, - ["hazard_damage_+%"]=6360, - ["hazard_duration_+%"]=1636, - ["hazard_rearm_%_chance"]=6361, - ["head_hunt_without_a_corpse"]=6362, - ["heavy_strike_attack_speed_+%"]=3486, - ["heavy_strike_chance_to_deal_double_damage_%"]=2902, - ["heavy_strike_damage_+%"]=3276, - ["heavy_stun_poise_decay_rate_+%"]=6363, - ["heavy_stun_threshold_+"]=6364, - ["heavy_stuns_have_culling_strike"]=6365, - ["heist_additional_abyss_rewards_from_reward_chests_%"]=6366, - ["heist_additional_armour_rewards_from_reward_chests_%"]=6367, - ["heist_additional_blight_rewards_from_reward_chests_%"]=6368, - ["heist_additional_breach_rewards_from_reward_chests_%"]=6369, - ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6370, - ["heist_additional_delirium_rewards_from_reward_chests_%"]=6371, - ["heist_additional_delve_rewards_from_reward_chests_%"]=6372, - ["heist_additional_divination_rewards_from_reward_chests_%"]=6373, - ["heist_additional_essences_rewards_from_reward_chests_%"]=6374, - ["heist_additional_gems_rewards_from_reward_chests_%"]=6375, - ["heist_additional_harbinger_rewards_from_reward_chests_%"]=6376, - ["heist_additional_jewellery_rewards_from_reward_chests_%"]=6377, - ["heist_additional_legion_rewards_from_reward_chests_%"]=6378, - ["heist_additional_metamorph_rewards_from_reward_chests_%"]=6379, - ["heist_additional_perandus_rewards_from_reward_chests_%"]=6380, - ["heist_additional_talisman_rewards_from_reward_chests_%"]=6381, - ["heist_additional_uniques_rewards_from_reward_chests_%"]=6382, - ["heist_additional_weapons_rewards_from_reward_chests_%"]=6383, - ["heist_alert_level_gained_on_monster_death"]=6384, - ["heist_alert_level_gained_per_10_sec"]=6385, - ["heist_chests_chance_for_secondary_objectives_%"]=6386, - ["heist_chests_double_blighted_maps_and_catalysts_%"]=6387, - ["heist_chests_double_breach_splinters_%"]=6388, - ["heist_chests_double_catalysts_%"]=6389, - ["heist_chests_double_currency_%"]=6390, - ["heist_chests_double_delirium_orbs_and_splinters_%"]=6391, - ["heist_chests_double_divination_cards_%"]=6392, - ["heist_chests_double_essences_%"]=6393, - ["heist_chests_double_jewels_%"]=6394, - ["heist_chests_double_legion_splinters_%"]=6395, - ["heist_chests_double_map_fragments_%"]=6396, - ["heist_chests_double_maps_%"]=6397, - ["heist_chests_double_oils_%"]=6398, - ["heist_chests_double_scarabs_%"]=6399, - ["heist_chests_double_sextants_%"]=6400, - ["heist_chests_double_uniques_%"]=6401, - ["heist_chests_unique_rarity_%"]=6402, - ["heist_coins_dropped_by_monsters_double_%"]=6404, - ["heist_coins_from_monsters_+%"]=31, - ["heist_coins_from_world_chests_double_%"]=6403, - ["heist_contract_alert_level_+%"]=6407, - ["heist_contract_alert_level_from_chests_+%"]=6405, - ["heist_contract_alert_level_from_monsters_+%"]=6406, - ["heist_contract_gang_cost_+%"]=6408, - ["heist_contract_gang_takes_no_cut"]=6409, - ["heist_contract_generate_secondary_objectives_chance_%"]=6410, - ["heist_contract_guarding_monsters_damage_+%"]=6411, - ["heist_contract_guarding_monsters_take_damage_+%"]=6412, - ["heist_contract_magical_unlock_count"]=6414, - ["heist_contract_mechanical_unlock_count"]=6413, - ["heist_contract_no_travel_cost"]=6415, - ["heist_contract_npc_cost_+%"]=6416, - ["heist_contract_objective_completion_time_+%"]=6417, - ["heist_contract_patrol_additional_elite_chance_+%"]=6418, - ["heist_contract_patrol_damage_+%"]=6419, - ["heist_contract_patrol_take_damage_+%"]=6420, - ["heist_contract_side_area_monsters_damage_+%"]=6421, - ["heist_contract_side_area_monsters_take_damage_+%"]=6422, - ["heist_contract_total_cost_+%_final"]=6423, - ["heist_contract_travel_cost_+%"]=6424, - ["heist_currency_alchemy_drops_as_blessed_%"]=6425, - ["heist_currency_alchemy_drops_as_divine_%"]=6426, - ["heist_currency_alchemy_drops_as_exalted_%"]=6427, - ["heist_currency_alteration_drops_as_alchemy_%"]=6428, - ["heist_currency_alteration_drops_as_chaos_%"]=6429, - ["heist_currency_alteration_drops_as_regal_%"]=6430, - ["heist_currency_augmentation_drops_as_alchemy_%"]=6431, - ["heist_currency_augmentation_drops_as_chaos_%"]=6432, - ["heist_currency_augmentation_drops_as_regal_%"]=6433, - ["heist_currency_chaos_drops_as_blessed_%"]=6434, - ["heist_currency_chaos_drops_as_divine_%"]=6435, - ["heist_currency_chaos_drops_as_exalted_%"]=6436, - ["heist_currency_chromatic_drops_as_fusing_%"]=6437, - ["heist_currency_chromatic_drops_as_jewellers_%"]=6438, - ["heist_currency_jewellers_drops_as_fusing_%"]=6439, - ["heist_currency_regal_drops_as_blessed_%"]=6440, - ["heist_currency_regal_drops_as_divine_%"]=6441, - ["heist_currency_regal_drops_as_exalted_%"]=6442, - ["heist_currency_regret_drops_as_annulment_%"]=6443, - ["heist_currency_scouring_drops_as_annulment_%"]=6444, - ["heist_currency_scouring_drops_as_regret_%"]=6445, - ["heist_currency_transmutation_drops_as_alchemy_%"]=6446, - ["heist_currency_transmutation_drops_as_chaos_%"]=6447, - ["heist_currency_transmutation_drops_as_regal_%"]=6448, - ["heist_drops_double_currency_%"]=6449, - ["heist_enchantment_ailment_mod_effect_+%"]=52, - ["heist_enchantment_attribute_mod_effect_+%"]=53, - ["heist_enchantment_casterdamage_mod_effect_+%"]=54, - ["heist_enchantment_chaos_mod_effect_+%"]=55, - ["heist_enchantment_cold_mod_effect_+%"]=56, - ["heist_enchantment_critical_mod_effect_+%"]=57, - ["heist_enchantment_damage_mod_effect_+%"]=58, - ["heist_enchantment_defence_mod_effect_+%"]=59, - ["heist_enchantment_fire_mod_effect_+%"]=60, - ["heist_enchantment_life_mod_effect_+%"]=61, - ["heist_enchantment_lightning_mod_effect_+%"]=62, - ["heist_enchantment_mana_mod_effect_+%"]=63, - ["heist_enchantment_physical_mod_effect_+%"]=64, - ["heist_enchantment_resistance_mod_effect_+%"]=65, - ["heist_enchantment_speed_mod_effect_+%"]=66, - ["heist_guards_are_magic"]=6450, - ["heist_guards_are_rare"]=6451, - ["heist_interruption_resistance_%"]=6452, - ["heist_item_quantity_+%"]=6453, - ["heist_item_rarity_+%"]=6454, - ["heist_items_are_fully_linked_%"]=6455, - ["heist_items_drop_corrupted_%"]=6456, - ["heist_items_drop_identified_%"]=6457, - ["heist_items_have_elder_influence_%"]=6458, - ["heist_items_have_one_additional_socket_%"]=6459, - ["heist_items_have_shaper_influence_%"]=6460, - ["heist_job_agility_level_+"]=6461, - ["heist_job_brute_force_level_+"]=6462, - ["heist_job_counter_thaumaturgy_level_+"]=6463, - ["heist_job_deception_level_+"]=6464, - ["heist_job_demolition_level_+"]=6465, - ["heist_job_demolition_speed_+%"]=6466, - ["heist_job_engineering_level_+"]=6467, - ["heist_job_lockpicking_level_+"]=6468, - ["heist_job_lockpicking_speed_+%"]=6469, - ["heist_job_perception_level_+"]=6470, - ["heist_job_trap_disarmament_level_+"]=6471, - ["heist_job_trap_disarmament_speed_+%"]=6472, - ["heist_lockdown_is_instant"]=6473, - ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=6474, - ["heist_npc_blueprint_reveal_cost_+%"]=6475, - ["heist_npc_contract_generates_gianna_intelligence"]=6476, - ["heist_npc_contract_generates_niles_intelligence"]=6477, - ["heist_npc_display_huck_combat"]=6478, - ["heist_npc_karst_alert_level_from_chests_+%_final"]=6479, - ["heist_npc_nenet_alert_level_+%_final"]=6480, - ["heist_npc_tullina_alert_level_+%_final"]=6481, - ["heist_npc_vinderi_alert_level_+%_final"]=6482, - ["heist_patrols_are_magic"]=6483, - ["heist_patrols_are_rare"]=6484, - ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=6485, - ["heist_player_armour_+%_final_per_25%_alert_level"]=6486, - ["heist_player_cold_resistance_%_per_25%_alert_level"]=6487, - ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=6488, - ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=6489, - ["heist_player_experience_gain_+%"]=6490, - ["heist_player_fire_resistance_%_per_25%_alert_level"]=6491, - ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=6492, - ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=6493, - ["heist_player_lightning_resistance_%_per_25%_alert_level"]=6494, - ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=6495, - ["heist_reinforcements_attack_speed_+%"]=6496, - ["heist_reinforcements_cast_speed_+%"]=6497, - ["heist_reinforcements_movements_speed_+%"]=6498, - ["heist_side_reward_room_monsters_+%"]=6499, - ["hellscape_extra_item_slots"]=6500, - ["hellscape_extra_map_slots"]=6501, - ["hellscaping_add_corruption_implicit_chance_%"]=6502, - ["hellscaping_add_explicit_mod_chance_%"]=6503, - ["hellscaping_additional_link_chance_%"]=6504, - ["hellscaping_additional_socket_chance_%"]=6505, - ["hellscaping_additional_upside_chance_%"]=6506, - ["hellscaping_downsides_tier_downgrade_chance_%"]=6507, - ["hellscaping_speed_+%_per_map_hellscape_tier"]=6508, - ["hellscaping_upgrade_mod_tier_chance_%"]=6514, - ["hellscaping_upsides_tier_upgrade_chance_%"]=6515, - ["helmet_mod_freeze_as_though_damage_+%_final"]=6516, - ["helmet_mod_shock_as_though_damage_+%_final"]=6517, - ["herald_effect_on_self_+%"]=6518, - ["herald_mana_reservation_override_45%"]=6519, - ["herald_of_agony_buff_drop_off_speed_+%"]=6520, - ["herald_of_agony_buff_effect_+%"]=6521, - ["herald_of_agony_mana_reservation_+%"]=6524, - ["herald_of_agony_mana_reservation_efficiency_+%"]=6523, - ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=6522, - ["herald_of_ash_buff_effect_+%"]=6525, - ["herald_of_ash_damage_+%"]=3353, - ["herald_of_ash_mana_reservation_+%"]=3658, - ["herald_of_ash_mana_reservation_efficiency_+%"]=6527, - ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=6526, - ["herald_of_ice_buff_effect_+%"]=6528, - ["herald_of_ice_damage_+%"]=3354, - ["herald_of_ice_mana_reservation_+%"]=3659, - ["herald_of_ice_mana_reservation_efficiency_+%"]=6530, - ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=6529, - ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=6531, - ["herald_of_light_buff_effect_+%"]=6532, - ["herald_of_light_minion_area_of_effect_+%"]=6533, - ["herald_of_purity_mana_reservation_+%"]=6536, - ["herald_of_purity_mana_reservation_efficiency_+%"]=6535, - ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=6534, - ["herald_of_thunder_bolt_frequency_+%"]=6537, - ["herald_of_thunder_buff_effect_+%"]=6538, - ["herald_of_thunder_damage_+%"]=3355, - ["herald_of_thunder_mana_reservation_+%"]=3660, - ["herald_of_thunder_mana_reservation_efficiency_+%"]=6540, - ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=6539, - ["herald_scorpion_number_of_additional_projectiles"]=6541, - ["herald_skills_mana_reservation_+%"]=6544, - ["herald_skills_mana_reservation_efficiency_+%"]=6543, - ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=6542, - ["hex_remove_at_effect_variance"]=6549, - ["hex_skill_cast_speed_+%"]=1912, - ["hex_skill_duration_+%"]=6545, - ["hexblast_%_chance_to_not_consume_hex"]=6547, - ["hexblast_damage_+%"]=6546, - ["hexblast_skill_area_of_effect_+%"]=6548, - ["hexes_expire_on_reaching_200%_effect"]=6549, - ["hexproof_if_right_ring_is_magic_item"]=6550, - ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=6551, - ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=6552, - ["hierophant_gloves_supported_by_increased_area_of_effect"]=474, - ["hierophant_helmet_supported_by_elemental_penetration"]=473, - ["hierophant_mana_cost_+%_final"]=6553, - ["hierophant_mana_reservation_+%_final"]=6554, - ["hierophant_passive_damage_+%_final_per_totem"]=3384, - ["hinder_chance_%_on_spreading_poioson"]=6555, - ["hinder_duration_+%"]=6556, - ["hinder_effect_on_self_+%"]=6557, - ["hinder_enemy_chaos_damage_+%"]=6558, - ["hinder_enemy_chaos_damage_taken_+%"]=6559, - ["hit_%_chance_to_gain_100%_damage_as_chaos"]=3992, - ["hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos"]=3993, - ["hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos"]=3195, - ["hit_%_chance_to_gain_25%_damage_as_chaos"]=3988, - ["hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos"]=3989, - ["hit_%_chance_to_gain_50%_damage_as_chaos"]=3990, - ["hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos"]=3991, - ["hit_damage_+%"]=6565, - ["hit_damage_+%_vs_bleeding_enemies"]=6566, - ["hit_damage_+%_vs_blinded_enemies"]=6567, - ["hit_damage_+%_vs_chilled_enemies"]=6568, - ["hit_damage_+%_vs_cursed_enemies"]=6569, - ["hit_damage_+%_vs_enemies_affected_by_ailments"]=6570, - ["hit_damage_+%_vs_ignited_enemies"]=6560, - ["hit_damage_+%_vs_unique_enemies"]=6571, - ["hit_damage_electrocute_multiplier_+%"]=6561, - ["hit_damage_electrocute_multiplier_+%_vs_shocked_enemies"]=6562, + ["energy_shield_recharge_rate_+%_if_blocked_recently"]=5971, + ["energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently"]=5967, + ["energy_shield_recharge_rate_+%_per_25_tribute"]=5968, + ["energy_shield_recharge_rate_+%_per_4_dexterity"]=5969, + ["energy_shield_recharge_rate_+%_while_affected_by_archon"]=5970, + ["energy_shield_recharge_rate_during_flask_effect_+%"]=3170, + ["energy_shield_recharge_rate_per_minute_%"]=1388, + ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3770, + ["energy_shield_recharge_start_when_minions_reform"]=5972, + ["energy_shield_recharge_start_when_stunned"]=5973, + ["energy_shield_recharges_on_block_%"]=3027, + ["energy_shield_recharges_on_kill_%"]=5974, + ["energy_shield_recharges_on_skill_use_chance_%"]=5975, + ["energy_shield_recovery_rate_+%"]=1391, + ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=5976, + ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=5977, + ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=5978, + ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=5979, + ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=5980, + ["energy_shield_regeneration_%_per_minute_while_shocked"]=2663, + ["energy_shield_regeneration_rate_+%"]=5987, + ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=5983, + ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=5984, + ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1504, + ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=5981, + ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=5982, + ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=5985, + ["energy_shield_regeneration_rate_per_second"]=5986, + ["enfeeble_curse_effect_+%"]=3583, + ["enfeeble_duration_+%"]=3492, + ["enfeeble_gem_level_+"]=1930, + ["enfeeble_ignores_hexproof"]=2287, + ["enfeeble_no_reservation"]=5988, + ["ensnaring_arrow_area_of_effect_+%"]=5989, + ["ensnaring_arrow_debuff_effect_+%"]=5990, + ["envy_reserves_no_mana"]=5991, + ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=5992, + ["equipped_jewellery_effect_of_bonuses_+%"]=5993, + ["equipped_ring1_effect_of_bonuses_+%"]=5994, + ["equipped_ring2_effect_of_bonuses_+%"]=5995, + ["equipped_rings_effect_of_bonuses_+%"]=5996, + ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3792, + ["es_regeneration_per_minute_%_while_stationary"]=5997, + ["essence_abyss_guaranteed_pick"]=5998, + ["essence_buff_ground_fire_damage_to_deal_per_second"]=3891, + ["essence_buff_ground_fire_duration_ms"]=3891, + ["essence_display_elemental_damage_taken_while_not_moving_+%"]=3894, + ["essence_drain_damage_+%"]=3312, + ["essence_drain_soulrend_base_projectile_speed_+%"]=5999, + ["essence_drain_soulrend_number_of_additional_projectiles"]=6000, + ["essence_grants_additional_attributes"]=6001, + ["essence_grants_additional_attributes_increase"]=6002, + ["essence_grants_defences_+%"]=6003, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6004, + ["ethereal_knives_damage_+%"]=3233, + ["ethereal_knives_number_of_additional_projectiles"]=6005, + ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6006, + ["ethereal_knives_projectile_speed_+%"]=3472, + ["ethereal_knives_projectiles_nova"]=6007, + ["evasion_+%_if_hit_recently"]=3754, + ["evasion_+%_per_10_intelligence"]=6010, + ["evasion_and_physical_damage_reduction_rating_+%"]=1380, + ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6024, + ["evasion_rating_%_to_gain_as_ailment_threshold"]=6011, + ["evasion_rating_%_to_gain_as_armour"]=6025, + ["evasion_rating_+%"]=887, + ["evasion_rating_+%_during_focus"]=6012, + ["evasion_rating_+%_if_consumed_frenzy_charge_recently"]=6013, + ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6008, + ["evasion_rating_+%_if_have_cast_dash_recently"]=6029, + ["evasion_rating_+%_if_have_not_been_hit_recently"]=6030, + ["evasion_rating_+%_if_not_dodge_rolled_recently"]=6014, + ["evasion_rating_+%_if_sprinting"]=6015, + ["evasion_rating_+%_if_you_dodge_rolled_recently"]=6031, + ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6032, + ["evasion_rating_+%_per_10_tribute"]=6016, + ["evasion_rating_+%_per_500_maximum_mana_up_to_100%"]=6017, + ["evasion_rating_+%_per_5_intelligence"]=6009, + ["evasion_rating_+%_per_frenzy_charge"]=1386, + ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6033, + ["evasion_rating_+%_when_on_full_life"]=6034, + ["evasion_rating_+%_when_on_low_life"]=2222, + ["evasion_rating_+%_while_leeching"]=6035, + ["evasion_rating_+%_while_moving"]=6036, + ["evasion_rating_+%_while_onslaught_is_active"]=1384, + ["evasion_rating_+%_while_phasing"]=2192, + ["evasion_rating_+%_while_surrounded"]=6018, + ["evasion_rating_+%_while_you_have_energy_shield"]=6037, + ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6026, + ["evasion_rating_+_per_1_armour_on_gloves"]=6019, + ["evasion_rating_+_per_1_helmet_energy_shield"]=1383, + ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=3952, + ["evasion_rating_+_when_on_full_life"]=1382, + ["evasion_rating_+_when_on_low_life"]=1381, + ["evasion_rating_+_while_phasing"]=6027, + ["evasion_rating_+_while_you_have_tailwind"]=6028, + ["evasion_rating_also_reduces_physical_damage"]=6020, + ["evasion_rating_from_helmet_and_boots_+%"]=6021, + ["evasion_rating_increased_by_overcapped_cold_resistance"]=6022, + ["evasion_rating_increased_by_overcapped_lightning_resistance"]=6023, + ["evasion_rating_plus_in_sand_stance"]=9329, + ["evasion_rating_while_es_full_+%_final"]=3646, + ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6038, + ["exerted_attack_knockback_chance_%"]=6039, + ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6040, + ["expanding_fire_cone_additional_maximum_number_of_stages"]=6041, + ["expanding_fire_cone_area_of_effect_+%"]=6042, + ["expedition_chest_logbook_chance_%"]=6043, + ["expedition_monsters_logbook_chance_+%"]=6044, + ["experience_gain_+%"]=1418, + ["experience_loss_on_death_-%"]=1419, + ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6045, + ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2920, + ["explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6046, + ["explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%"]=6047, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=2918, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6048, + ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2919, + ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=9829, + ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6049, + ["explode_on_kill_%_chaos_damage_to_deal"]=2917, + ["explode_on_kill_%_fire_damage_to_deal"]=2381, + ["explosive_arrow_attack_speed_+%"]=3698, + ["explosive_arrow_damage_+%"]=3264, + ["explosive_arrow_duration_+%"]=6050, + ["explosive_arrow_radius_+%"]=3402, + ["explosive_concoction_damage_+%"]=6051, + ["explosive_concoction_flask_charges_consumed_+%"]=6052, + ["explosive_concoction_skill_area_of_effect_+%"]=6053, + ["exposure_effect_+%"]=6056, + ["exposure_effect_+%_if_fire_cold_lightning_infusion"]=6054, + ["exposure_effect_on_you_+%"]=6055, + ["exposure_you_inflict_lowers_affected_resistance_by_extra_%"]=6057, + ["exsanguinate_additional_chain_chance_%"]=6058, + ["exsanguinate_damage_+%"]=6059, + ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6060, + ["exsanguinate_duration_+%"]=6061, + ["extinguish_on_hit_%_chance"]=6062, + ["extra_critical_rolls"]=2350, + ["extra_critical_rolls_during_focus"]=6063, + ["extra_critical_rolls_while_on_low_life"]=6064, + ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6065, + ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=3995, + ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=3996, + ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6066, + ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=2865, + ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6067, + ["extra_gore"]=9936, + ["extra_target_targeting_distance_+%"]=6068, + ["eye_of_winter_damage_+%"]=6069, + ["eye_of_winter_projectile_speed_+%"]=6070, + ["eye_of_winter_spiral_fire_frequency_+%"]=6071, + ["faster_bleed_%"]=6073, + ["faster_bleed_per_frenzy_charge_%"]=6072, + ["faster_burn_%"]=2250, + ["faster_burn_from_attacks_%"]=2252, + ["faster_poison_%"]=6074, + ["final_repeat_of_spells_area_of_effect_+%"]=6075, + ["fire_ailment_duration_+%"]=6076, + ["fire_and_chaos_damage_resistance_%"]=6077, + ["fire_and_cold_damage_resistance_%"]=2468, + ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=6078, + ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6079, + ["fire_and_lightning_damage_resistance_%"]=2469, + ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=6080, + ["fire_attack_damage_+%"]=1117, + ["fire_attack_damage_+%_while_holding_a_shield"]=1120, + ["fire_axe_damage_+%"]=1192, + ["fire_beam_cast_speed_+%"]=6081, + ["fire_beam_damage_+%"]=6082, + ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6083, + ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6084, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=6085, + ["fire_beam_length_+%"]=6086, + ["fire_bow_damage_+%"]=1212, + ["fire_claw_damage_+%"]=1200, + ["fire_critical_strike_chance_+%"]=1333, + ["fire_critical_strike_multiplier_+"]=1354, + ["fire_dagger_damage_+%"]=1204, + ["fire_damage_+%"]=876, + ["fire_damage_+%_if_you_have_been_hit_recently"]=6090, + ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6091, + ["fire_damage_+%_per_10%_armour_break"]=6087, + ["fire_damage_+%_per_20_strength"]=6092, + ["fire_damage_+%_per_endurance_charge"]=6093, + ["fire_damage_+%_per_missing_fire_resistance"]=6094, + ["fire_damage_+%_to_blinded_enemies"]=2846, + ["fire_damage_+%_vs_bleeding_enemies"]=6095, + ["fire_damage_+%_while_affected_by_anger"]=6096, + ["fire_damage_+%_while_affected_by_herald_of_ash"]=6097, + ["fire_damage_+%_while_ignited"]=6088, + ["fire_damage_can_chill"]=2538, + ["fire_damage_can_freeze"]=2539, + ["fire_damage_can_shock"]=2540, + ["fire_damage_cannot_ignite"]=2547, + ["fire_damage_over_time_+%"]=1126, + ["fire_damage_over_time_multiplier_+%_while_burning"]=6089, + ["fire_damage_over_time_multiplier_+_with_attacks"]=1157, + ["fire_damage_resistance_%_when_on_low_life"]=1433, + ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6098, + ["fire_damage_resistance_+%"]=1434, + ["fire_damage_resistance_is_%"]=1431, + ["fire_damage_taken_%_as_cold"]=2805, + ["fire_damage_taken_%_as_lightning"]=2806, + ["fire_damage_taken_%_causes_additional_physical_damage"]=2145, + ["fire_damage_taken_+"]=1908, + ["fire_damage_taken_+%"]=1913, + ["fire_damage_taken_+%_while_moving"]=6101, + ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6099, + ["fire_damage_taken_per_second_while_flame_touched"]=6100, + ["fire_damage_taken_when_enemy_ignited"]=6102, + ["fire_damage_to_return_on_block"]=6103, + ["fire_damage_to_return_to_melee_attacker"]=1882, + ["fire_damage_to_return_when_hit"]=1886, + ["fire_damage_while_dual_wielding_+%"]=1176, + ["fire_damage_with_attack_skills_+%"]=6104, + ["fire_damage_with_spell_skills_+%"]=6105, + ["fire_dot_multiplier_+"]=1156, + ["fire_exposure_effect_+%"]=6106, + ["fire_exposure_on_hit_magnitude"]=6107, + ["fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%"]=6108, + ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6109, + ["fire_mace_damage_+%"]=1208, + ["fire_nova_mine_cast_speed_+%"]=3449, + ["fire_nova_mine_damage_+%"]=3247, + ["fire_nova_mine_num_of_additional_repeats"]=3543, + ["fire_penetration_%_if_you_have_blocked_recently"]=6110, + ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6111, + ["fire_resist_unaffected_by_area_penalties"]=6112, + ["fire_skill_chance_to_inflict_fire_exposure_%"]=6113, + ["fire_skill_gem_level_+"]=6114, + ["fire_skills_chance_to_poison_on_hit_%"]=6115, + ["fire_spell_skill_gem_level_+"]=944, + ["fire_staff_damage_+%"]=1196, + ["fire_storm_damage_+%"]=3248, + ["fire_sword_damage_+%"]=1217, + ["fire_trap_burning_damage_+%"]=3535, + ["fire_trap_burning_ground_duration_+%"]=6116, + ["fire_trap_cooldown_speed_+%"]=3451, + ["fire_trap_damage_+%"]=3217, + ["fire_trap_number_of_additional_traps_to_throw"]=6117, + ["fire_wand_damage_+%"]=1221, + ["fire_weakness_ignores_hexproof"]=2288, + ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6118, + ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6119, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=2873, + ["fireball_cannot_ignite"]=6120, + ["fireball_cast_speed_+%"]=3448, + ["fireball_chance_to_scorch_%"]=6121, + ["fireball_damage_+%"]=3218, + ["fireball_radius_up_to_+%_at_longer_ranges"]=2872, + ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=6122, + ["firestorm_duration_+%"]=3506, + ["firestorm_explosion_area_of_effect_+%"]=3544, + ["first_X_minions_have_0_base_spirit_reservation"]=6123, + ["fish_quantity_+%"]=2516, + ["fish_rarity_+%"]=2517, + ["fish_rot_when_caught"]=6124, + ["fishing_bestiary_lures_at_fishing_holes"]=6125, + ["fishing_bite_sensitivity_+%"]=3174, + ["fishing_can_catch_divine_fish"]=6126, + ["fishing_chance_to_catch_boots_+%"]=6127, + ["fishing_chance_to_catch_divine_orb_+%"]=6128, + ["fishing_corrupted_fish_cleansed_chance_%"]=6129, + ["fishing_fish_always_tell_truth_with_this_rod"]=6130, + ["fishing_ghastly_fisherman_cannot_spawn"]=6131, + ["fishing_ghastly_fisherman_spawns_behind_you"]=6132, + ["fishing_hook_type"]=2514, + ["fishing_krillson_affection_per_fish_gifted_+%"]=6133, + ["fishing_life_of_fish_with_this_rod_+%"]=6134, + ["fishing_line_strength_+%"]=2511, + ["fishing_lure_type"]=2513, + ["fishing_magmatic_fish_are_cooked"]=6135, + ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6136, + ["fishing_pool_consumption_+%"]=2512, + ["fishing_range_+%"]=2515, + ["fishing_reeling_stability_+%"]=6137, + ["fishing_tasalio_ire_per_fish_caught_+%"]=6138, + ["fishing_valako_aid_per_stormy_day_+%"]=6139, + ["fishing_wish_effect_of_ancient_fish_+%"]=6140, + ["fishing_wish_per_fish_+"]=6141, + ["flail_accuracy_rating"]=3853, + ["flail_accuracy_rating_+%"]=3854, + ["flail_attack_speed_+%"]=3855, + ["flail_critical_strike_chance_+%"]=3856, + ["flail_critical_strike_multiplier_+"]=3857, + ["flail_damage_+%"]=3851, + ["flail_elemental_damage_+%"]=3852, + ["flame_dash_cooldown_speed_+%"]=3458, + ["flame_dash_damage_+%"]=3297, + ["flame_golem_damage_+%"]=3279, + ["flame_golem_elemental_resistances_%"]=3558, + ["flame_link_duration_+%"]=6142, + ["flame_surge_critical_strike_chance_+%"]=3518, + ["flame_surge_damage_+%"]=3249, + ["flame_surge_damage_+%_vs_burning_enemies"]=3545, + ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6143, + ["flame_totem_damage_+%"]=3289, + ["flame_totem_num_of_additional_projectiles"]=3530, + ["flame_totem_projectile_speed_+%"]=3473, + ["flame_wall_damage_+%"]=6144, + ["flame_wall_maximum_added_fire_damage"]=6145, + ["flame_wall_minimum_added_fire_damage"]=6145, + ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6146, + ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6147, + ["flameblast_and_incinerate_cannot_inflict_elemental_ailments"]=6148, + ["flameblast_cast_speed_+%_final_when_targeting_solar_orb"]=6149, + ["flameblast_critical_strike_chance_+%"]=3517, + ["flameblast_damage_+%"]=3265, + ["flameblast_radius_+%"]=3403, + ["flameblast_starts_with_X_additional_stages"]=6150, + ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6151, + ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6152, + ["flamethrower_tower_trap_cast_speed_+%"]=6153, + ["flamethrower_tower_trap_cooldown_speed_+%"]=6154, + ["flamethrower_tower_trap_damage_+%"]=6155, + ["flamethrower_tower_trap_duration_+%"]=6156, + ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6157, + ["flamethrower_tower_trap_throwing_speed_+%"]=6158, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6159, + ["flammability_curse_effect_+%"]=3584, + ["flammability_duration_+%"]=3491, + ["flammability_mana_reservation_+%"]=3618, + ["flammability_no_reservation"]=6160, + ["flask_charge_recovery_is_doubled"]=6161, + ["flask_charges_+%_from_enemies_with_status_ailments"]=3811, + ["flask_charges_gained_+%"]=6165, + ["flask_charges_gained_+%_during_flask_effect"]=2811, + ["flask_charges_gained_+%_if_crit_recently"]=6162, + ["flask_charges_gained_from_kills_+%_final_from_unique"]=6163, + ["flask_charges_gained_from_marked_enemy_+%"]=6164, + ["flask_charges_recovered_per_3_seconds"]=3074, + ["flask_charges_used_+%"]=1002, + ["flask_duration_+%"]=900, + ["flask_duration_+%_per_25_tribute"]=6166, + ["flask_duration_on_minions_+%"]=1870, + ["flask_effect_+%"]=2412, + ["flask_life_and_mana_recovery_+%_while_using_charm"]=6167, + ["flask_life_and_mana_to_recover_+%"]=6169, + ["flask_life_and_mana_to_recover_+%_per_10_tribute"]=6168, + ["flask_life_recovery_+%_while_affected_by_vitality"]=6170, + ["flask_life_recovery_rate_+%"]=897, + ["flask_life_to_recover_+%"]=1739, + ["flask_mana_charges_used_+%"]=1868, + ["flask_mana_recovery_rate_+%"]=898, + ["flask_mana_to_recover_+%"]=1740, + ["flask_minion_heal_%"]=2564, + ["flask_recovery_amount_%_to_recover_instantly"]=6171, + ["flask_recovery_is_instant"]=6172, + ["flask_recovery_speed_+%"]=1741, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6173, + ["flasks_%_chance_to_not_consume_charges"]=3795, + ["flasks_apply_to_your_linked_targets"]=6174, + ["flasks_apply_to_your_zombies_and_spectres"]=3333, + ["flasks_dispel_burning"]=2425, + ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6175, + ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6176, + ["flesh_and_stone_area_of_effect_+%"]=6177, + ["flesh_offering_attack_speed_+%"]=3691, + ["flesh_offering_duration_+%"]=3479, + ["flesh_offering_effect_+%"]=1092, + ["flesh_stone_mana_reservation_efficiency_+%"]=6179, + ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6178, + ["flesh_stone_no_reservation"]=6180, + ["flicker_strike_cooldown_speed_+%"]=3452, + ["flicker_strike_damage_+%"]=3238, + ["flicker_strike_damage_+%_per_frenzy_charge"]=3540, + ["flicker_strike_more_attack_speed_+%_final"]=1268, + ["focus_cooldown_modifier_ms"]=6181, + ["focus_cooldown_speed_+%"]=6182, + ["focus_decay_%_per_minute"]=6183, + ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6184, + ["forbidden_rite_damage_+%"]=6185, + ["forbidden_rite_number_of_additional_projectiles"]=6186, + ["forbidden_rite_projectile_speed_+%"]=6187, + ["forking_angle_+%"]=6188, + ["fortification_gained_from_hits_+%"]=6189, + ["fortification_gained_from_hits_+%_against_unique_enemies"]=6190, + ["fortify_duration_+%"]=1959, + ["fortify_duration_+%_per_10_strength"]=6191, + ["fortify_on_hit"]=6192, + ["frag_rounds_damage_+%_final_if_created_from_unique"]=6193, + ["freeze_duration_+%"]=1562, + ["freeze_duration_against_cursed_enemies_+%"]=6194, + ["freeze_mine_cold_resistance_+_while_frozen"]=2447, + ["freeze_mine_damage_+%"]=3298, + ["freeze_mine_radius_+%"]=3413, + ["freeze_prevention_ms_when_frozen"]=2557, + ["freeze_threshold_+%"]=2892, + ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6196, + ["freezing_pulse_cast_speed_+%"]=3447, + ["freezing_pulse_damage_+%"]=3219, + ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6197, + ["freezing_pulse_number_of_additional_projectiles"]=6198, + ["freezing_pulse_projectile_speed_+%"]=3469, + ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3552, + ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6199, + ["frenzy_charge_duration_+%_per_frenzy_charge"]=1731, + ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6200, + ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6201, + ["frenzy_damage_+%"]=3258, + ["frenzy_damage_+%_per_frenzy_charge"]=3551, + ["frenzy_only_conduit"]=1955, + ["from_self_maximum_added_attack_chaos_damage_taken"]=1246, + ["from_self_maximum_added_attack_cold_damage_taken"]=1233, + ["from_self_maximum_added_attack_fire_damage_taken"]=1227, + ["from_self_maximum_added_attack_lightning_damage_taken"]=1241, + ["from_self_maximum_added_attack_physical_damage_taken"]=1165, + ["from_self_maximum_added_cold_damage_taken"]=1231, + ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=3831, + ["from_self_maximum_added_fire_damage_taken"]=1225, + ["from_self_maximum_added_lightning_damage_taken"]=1239, + ["from_self_minimum_added_attack_chaos_damage_taken"]=1246, + ["from_self_minimum_added_attack_cold_damage_taken"]=1233, + ["from_self_minimum_added_attack_fire_damage_taken"]=1227, + ["from_self_minimum_added_attack_lightning_damage_taken"]=1241, + ["from_self_minimum_added_attack_physical_damage_taken"]=1165, + ["from_self_minimum_added_cold_damage_taken"]=1231, + ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=3831, + ["from_self_minimum_added_fire_damage_taken"]=1225, + ["from_self_minimum_added_lightning_damage_taken"]=1239, + ["frost_blades_damage_+%"]=3014, + ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6202, + ["frost_blades_number_of_additional_projectiles_in_chain"]=3016, + ["frost_blades_projectile_speed_+%"]=3015, + ["frost_bolt_cast_speed_+%"]=3718, + ["frost_bolt_damage_+%"]=3705, + ["frost_bolt_freeze_chance_%"]=3719, + ["frost_bolt_nova_cooldown_speed_+%"]=6203, + ["frost_bolt_nova_damage_+%"]=3706, + ["frost_bolt_nova_duration_+%"]=3720, + ["frost_bolt_nova_radius_+%"]=3713, + ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6205, + ["frost_bomb_buff_duration_+%"]=6204, + ["frost_bomb_cooldown_speed_+%"]=3465, + ["frost_bomb_damage_+%"]=3321, + ["frost_bomb_radius_+%"]=3422, + ["frost_fury_additional_max_number_of_stages"]=6206, + ["frost_fury_area_of_effect_+%_per_stage"]=6207, + ["frost_fury_damage_+%"]=6208, + ["frost_globe_added_cooldown_count"]=6209, + ["frost_globe_health_per_stage"]=6210, + ["frost_wall_cooldown_speed_+%"]=3456, + ["frost_wall_damage_+%"]=3292, + ["frost_wall_duration_+%"]=3482, + ["frostbite_curse_effect_+%"]=3585, + ["frostbite_duration_+%"]=3490, + ["frostbite_mana_reservation_+%"]=3619, + ["frostbite_no_reservation"]=6211, + ["frostbolt_number_of_additional_projectiles"]=6212, + ["frostbolt_projectile_acceleration"]=6213, + ["frozen_legion_%_chance_to_summon_additional_statue"]=6217, + ["frozen_legion_added_cooldown_count"]=6214, + ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6215, + ["frozen_legion_cooldown_speed_+%"]=6216, + ["frozen_monsters_take_increased_damage"]=2151, + ["frozen_sweep_damage_+%"]=6218, + ["frozen_sweep_damage_+%_final"]=6219, + ["full_life_threshold_%_override"]=6220, + ["full_mana_threshold_%_override"]=6221, + ["fully_break_enemies_armour_on_heavy_stun_with_shield_skills"]=6222, + ["fully_broken_armour_and_sundered_armour_debuff_also_applies_to_fire_damage"]=6223, + ["fungal_ground_while_stationary_radius"]=6224, + ["gain_%_damage_as_chaos_from_unreserved_darkness"]=6225, + ["gain_%_es_when_spirit_charge_expires_or_consumed"]=3959, + ["gain_%_life_from_body_es"]=6226, + ["gain_%_life_when_spirit_charge_expires_or_consumed"]=3958, + ["gain_%_maximum_energy_shield_as_freeze_threshold_+"]=6227, + ["gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use"]=6228, + ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6330, + ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6335, + ["gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence"]=6229, + ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6230, + ["gain_X%_armour_per_50_mana_reserved"]=6231, + ["gain_X_energy_shield_on_killing_shocked_enemy"]=2258, + ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6232, + ["gain_X_frenzy_charges_after_spending_200_mana"]=6233, + ["gain_X_instilling_chaos_when_any_charge_is_consumed"]=6234, + ["gain_X_instilling_cold_on_reload"]=6235, + ["gain_X_instilling_cold_when_power_charge_is_consumed"]=6236, + ["gain_X_instilling_fire_on_reload"]=6235, + ["gain_X_instilling_fire_when_endurance_charge_is_consumed"]=6237, + ["gain_X_instilling_lightning_when_frenzy_charge_is_consumed"]=6238, + ["gain_X_life_on_stun"]=6239, + ["gain_X_power_charges_on_using_a_warcry"]=6240, + ["gain_X_rage_on_hit_per_enemy_power"]=6241, + ["gain_X_random_charges_every_6_seconds"]=6242, + ["gain_X_random_charges_on_reaching_maximum_rage"]=6243, + ["gain_X_random_rare_monster_mods_on_kill"]=2694, + ["gain_X_vaal_souls_on_rampage_threshold"]=2604, + ["gain_X_volatility_on_persistent_minion_death"]=6244, + ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3702, + ["gain_absorption_charges_instead_of_power_charges"]=6245, + ["gain_accuracy_rating_equal_to_2_times_strength"]=6246, + ["gain_accuracy_rating_equal_to_intelligence"]=6247, + ["gain_accuracy_rating_equal_to_strength"]=6248, + ["gain_additional_crit_chance_from_%_chance_to_hit_over_100"]=6249, + ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6250, + ["gain_adrenaline_for_X_seconds_on_kill"]=6251, + ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6252, + ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6253, + ["gain_adrenaline_on_gaining_flame_touched"]=6254, + ["gain_adrenaline_when_ward_breaks_ms"]=6255, + ["gain_affliction_charges_instead_of_frenzy_charges"]=6256, + ["gain_alchemists_genius_on_flask_use_%"]=6257, + ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6258, + ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6259, + ["gain_arcane_surge_for_4_seconds_on_minion_death"]=6260, + ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6261, + ["gain_arcane_surge_on_crit_%_chance"]=6262, + ["gain_arcane_surge_on_hit_%_chance"]=6265, + ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6263, + ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6264, + ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6266, + ["gain_arcane_surge_on_kill_chance_%"]=6267, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6268, + ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6269, + ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6270, + ["gain_arcane_surge_when_you_summon_a_totem"]=6271, + ["gain_archon_cold_when_energy_shield_recharge_starts"]=6272, + ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=6273, + ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6274, + ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3624, + ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6275, + ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3047, + ["gain_blitz_charge_%_chance_on_crit"]=6276, + ["gain_brutal_charges_instead_of_endurance_charges"]=6277, + ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3382, + ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6278, + ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6279, + ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=9830, + ["gain_convergence_on_hitting_unique_enemy"]=4008, + ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=9915, + ["gain_crimson_dance_while_you_have_cat_stealth"]=9916, + ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6280, + ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3046, + ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=9831, + ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=3842, + ["gain_divine_charge_on_hit_%"]=3961, + ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=3963, + ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3629, + ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3670, + ["gain_elusive_on_crit_%_chance"]=3839, + ["gain_elusive_on_kill_chance_%"]=3840, + ["gain_elusive_on_reaching_low_life"]=6282, + ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1524, + ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6287, + ["gain_endurance_charge_%_when_hit_while_channelling"]=6288, + ["gain_endurance_charge_if_attack_freezes"]=6283, + ["gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy"]=6284, + ["gain_endurance_charge_on_main_hand_kill_%"]=2937, + ["gain_endurance_charge_on_melee_stun"]=2438, + ["gain_endurance_charge_on_melee_stun_%"]=2438, + ["gain_endurance_charge_on_power_charge_expiry"]=2314, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6285, + ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6286, + ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6289, + ["gain_flask_chance_on_crit_%"]=2998, + ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6290, + ["gain_flask_charge_when_crit_%"]=1742, + ["gain_flask_charge_when_crit_amount"]=1742, + ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6291, + ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6292, + ["gain_frenzy_and_power_charge_on_kill_%"]=2313, + ["gain_frenzy_charge_%_when_hit_while_channelling"]=6303, + ["gain_frenzy_charge_if_attack_ignites"]=2504, + ["gain_frenzy_charge_on_critical_strike_%"]=6294, + ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6293, + ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6295, + ["gain_frenzy_charge_on_hit_%_while_blinded"]=6296, + ["gain_frenzy_charge_on_hit_while_bleeding"]=6297, + ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6298, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6299, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6300, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6301, + ["gain_frenzy_charge_on_main_hand_kill_%"]=2936, + ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3193, + ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6302, + ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6304, + ["gain_guard_flask_charge_when_hit_by_enemy_chance_%"]=6305, + ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=9917, + ["gain_iron_reflexes_while_stationary"]=9921, + ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3745, + ["gain_lightning_archon_after_spending_100%_of_your_maximum_mana"]=6306, + ["gain_magic_monster_mods_on_kill_%_chance"]=6307, + ["gain_max_rage_on_losing_temporal_chains_debuff"]=6308, + ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6309, + ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3802, + ["gain_maximum_endurance_charges_when_crit_chance_%"]=6310, + ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6311, + ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6312, + ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6313, + ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6314, + ["gain_maximum_power_charges_on_vaal_skill_use"]=6315, + ["gain_mind_over_matter_while_at_maximum_power_charges"]=9918, + ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6316, + ["gain_no_inherent_bonus_from_dexterity"]=1706, + ["gain_no_inherent_bonus_from_intelligence"]=1707, + ["gain_no_inherent_bonus_from_strength"]=1708, + ["gain_onslaught_during_soul_gain_prevention"]=6317, + ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6318, + ["gain_onslaught_for_4_seconds_on_minion_death"]=6319, + ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3778, + ["gain_onslaught_if_you_have_swapped_stance_recently"]=6320, + ["gain_onslaught_ms_on_using_a_warcry"]=6321, + ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2423, + ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6322, + ["gain_onslaught_on_hit_duration_ms"]=6323, + ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6324, + ["gain_onslaught_on_stun_duration_ms"]=2420, + ["gain_onslaught_when_ignited_ms"]=2676, + ["gain_onslaught_while_at_maximum_endurance_charges"]=6325, + ["gain_onslaught_while_frenzy_charges_full"]=3649, + ["gain_onslaught_while_not_on_low_mana"]=6326, + ["gain_onslaught_while_on_low_life"]=6327, + ["gain_onslaught_while_you_have_cats_agility"]=6328, + ["gain_onslaught_while_you_have_fortify"]=6329, + ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2191, + ["gain_phasing_if_enemy_killed_recently"]=6331, + ["gain_phasing_while_affected_by_haste"]=6332, + ["gain_phasing_while_at_maximum_frenzy_charges"]=2189, + ["gain_phasing_while_you_have_cats_stealth"]=6333, + ["gain_phasing_while_you_have_low_life"]=6334, + ["gain_phasing_while_you_have_onslaught"]=2190, + ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2603, + ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=9932, + ["gain_power_charge_on_critical_strike_with_wands_%"]=6336, + ["gain_power_charge_on_curse_cast_%"]=6337, + ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6338, + ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6339, + ["gain_power_charge_on_mana_flask_use_%_chance"]=6340, + ["gain_power_charge_on_non_critical_strike_%"]=3010, + ["gain_power_charge_on_vaal_skill_use_%"]=6341, + ["gain_power_charge_per_enemy_you_crit"]=2233, + ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6342, + ["gain_power_charge_when_throwing_trap_%"]=2588, + ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6343, + ["gain_rage_on_hitting_rare_unique_enemy_%"]=8914, + ["gain_rage_on_kill"]=8913, + ["gain_rage_when_you_use_a_warcry"]=8915, + ["gain_rampage_while_at_maximum_endurance_charges"]=2887, + ["gain_random_charge_on_block"]=6345, + ["gain_random_charge_per_second_while_stationary"]=6346, + ["gain_rare_monster_mods_on_kill_ms"]=2484, + ["gain_resolute_technique_while_do_not_have_elemental_overload"]=9922, + ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6347, + ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6348, + ["gain_shrine_buff_every_10_seconds"]=6349, + ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6350, + ["gain_soul_eater_during_flask_effect"]=3031, + ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6351, + ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6352, + ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2743, + ["gain_spell_cost_as_mana_every_fifth_cast"]=6353, + ["gain_spirit_charge_every_x_ms"]=3955, + ["gain_spirit_charge_on_kill_%_chance"]=3956, + ["gain_stormsurge_on_hit"]=6281, + ["gain_tailwind_on_critical_hit"]=6355, + ["gain_tailwind_stack_on_skill_use"]=6356, + ["gain_unholy_might_on_block_ms"]=2683, + ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6357, + ["gain_vaal_soul_on_hit_cooldown_ms"]=6358, + ["gain_x_es_on_trap_triggered_by_an_enemy"]=3807, + ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6359, + ["gain_x_fragile_regrowth_per_second"]=6360, + ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=3992, + ["gain_x_life_on_trap_triggered_by_an_enemy"]=3806, + ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2651, + ["gain_x_rage_on_hit"]=8917, + ["gain_x_rage_on_hit_with_axes"]=6361, + ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6362, + ["gain_x_rage_on_melee_hit"]=6363, + ["gain_x_rage_per_200_mana_spent"]=6364, + ["gain_x_rage_when_hit"]=6365, + ["gain_x_rage_when_taken_crit"]=6366, + ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6367, + ["galvanic_arrow_area_damage_+%"]=9139, + ["galvanic_arrow_projectile_speed_+%"]=6368, + ["galvanic_field_beam_frequency_+%"]=6369, + ["galvanic_field_cast_speed_+%"]=6370, + ["galvanic_field_damage_+%"]=6371, + ["galvanic_field_number_of_chains"]=6372, + ["gem_experience_gain_+%"]=1577, + ["gem_requirements_can_be_satisfied_by_highest_attribute"]=6373, + ["gemling_all_attributes_+%_final"]=6374, + ["gemling_double_basic_attribute_bonuses"]=6375, + ["gemling_skill_cost_+%_final"]=6376, + ["generals_cry_cooldown_speed_+%"]=6377, + ["generals_cry_maximum_warriors_+"]=6378, + ["generate_endurance_charges_for_allies_in_your_presence"]=1835, + ["generate_frenzy_charges_for_allies_in_your_presence"]=1836, + ["generate_power_charges_for_allies_in_your_presence"]=1837, + ["generate_x_charges_for_any_flask_per_minute"]=6379, + ["generate_x_charges_for_charms_per_minute"]=6380, + ["generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute"]=6381, + ["generate_x_charges_for_guard_flasks_per_minute"]=6382, + ["generate_x_charges_for_life_flasks_per_minute"]=6383, + ["generate_x_charges_for_mana_flasks_per_minute"]=6384, + ["ghostflame_on_hit_duration_ms"]=6385, + ["gifts_from_above_consecrated_ground_while_stationary"]=6386, + ["glacial_cascade_damage_+%"]=3266, + ["glacial_cascade_number_of_additional_bursts"]=6387, + ["glacial_cascade_physical_damage_%_to_gain_as_cold"]=6388, + ["glacial_cascade_radius_+%"]=3404, + ["glacial_hammer_damage_+%"]=3220, + ["glacial_hammer_freeze_chance_%"]=3536, + ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2854, + ["glacial_hammer_melee_splash_with_cold_damage"]=6389, + ["glacial_hammer_physical_damage_%_to_gain_as_cold_damage"]=3553, + ["global_added_chaos_damage_%_of_ward"]=1748, + ["global_always_hit"]=1725, + ["global_attack_speed_+%_per_green_socket_on_item"]=2396, + ["global_attack_speed_+%_per_level"]=6390, + ["global_bleed_on_hit"]=6391, + ["global_cannot_crit"]=1863, + ["global_chance_to_blind_on_hit_%"]=2605, + ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6392, + ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6393, + ["global_critical_strike_chance_+%_while_holding_bow"]=2162, + ["global_critical_strike_chance_+%_while_holding_staff"]=2160, + ["global_critical_strike_chance_while_dual_wielding_+%"]=3825, + ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2397, + ["global_critical_strike_multiplier_+_while_holding_bow"]=2163, + ["global_critical_strike_multiplier_+_while_holding_staff"]=2161, + ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1735, + ["global_critical_strike_multiplier_while_dual_wielding_+"]=3824, + ["global_defences_+%"]=2499, + ["global_defences_+%_per_frenzy_charge"]=6394, + ["global_defences_+%_per_white_socket_on_item"]=2402, + ["global_defences_while_in_presence_of_companion_+%"]=6395, + ["global_evasion_rating_+_while_moving"]=6396, + ["global_gem_attribute_requirements_+%_final_from_gemling"]=6397, + ["global_hit_causes_monster_flee_%"]=1723, + ["global_item_attribute_requirements_+%"]=2238, + ["global_knockback"]=1364, + ["global_knockback_on_crit"]=1645, + ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2393, + ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2399, + ["global_maximum_added_chaos_damage"]=1244, + ["global_maximum_added_cold_damage"]=1232, + ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6398, + ["global_maximum_added_fire_damage"]=1226, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=9447, + ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6399, + ["global_maximum_added_lightning_damage"]=1240, + ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6400, + ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6401, + ["global_maximum_added_physical_damage"]=1164, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6402, + ["global_melee_range_+_per_white_socket_on_item"]=2403, + ["global_minimum_added_chaos_damage"]=1244, + ["global_minimum_added_cold_damage"]=1232, + ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6398, + ["global_minimum_added_fire_damage"]=1226, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=9447, + ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6399, + ["global_minimum_added_lightning_damage"]=1240, + ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6400, + ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6401, + ["global_minimum_added_physical_damage"]=1164, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6402, + ["global_physical_damage_reduction_rating_while_moving"]=6403, + ["global_poison_on_hit"]=2801, + ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2394, + ["glory_generation_+%"]=6405, + ["glory_generation_+%_for_banners"]=6406, + ["glory_generation_+%_if_you_have_at_least_100_tribute"]=6404, + ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6407, + ["glows_in_area_with_unique_fish"]=3696, + ["goat_footprints_from_item"]=9937, + ["gold_+%_from_enemies"]=6408, + ["golem_attack_and_cast_speed_+%"]=6409, + ["golem_attack_maximum_added_physical_damage"]=6410, + ["golem_attack_minimum_added_physical_damage"]=6410, + ["golem_buff_effect_+%"]=6411, + ["golem_buff_effect_+%_per_summoned_golem"]=6412, + ["golem_cooldown_recovery_+%"]=2944, + ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3284, + ["golem_damage_+%_per_active_golem"]=3767, + ["golem_damage_+%_per_active_golem_type"]=3766, + ["golem_immunity_to_elemental_damage"]=3662, + ["golem_life_regeneration_per_minute_%"]=6413, + ["golem_maximum_life_+%"]=6414, + ["golem_maximum_mana_+%"]=6415, + ["golem_movement_speed_+%"]=6416, + ["golem_physical_damage_reduction_rating"]=6417, + ["golem_scale_+%"]=3277, + ["golem_skill_cooldown_recovery_+%"]=2943, + ["golems_larger_aggro_radius"]=9851, + ["grace_aura_effect_+%"]=2974, + ["grace_mana_reservation_+%"]=3614, + ["grace_mana_reservation_efficiency_+%"]=6419, + ["grace_mana_reservation_efficiency_-2%_per_1"]=6418, + ["grace_reserves_no_mana"]=6420, + ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2561, + ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6421, + ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6422, + ["grant_unholy_might_to_self_while_not_on_low_mana"]=2682, + ["grant_void_arrow_every_x_ms"]=6423, + ["gratuitous_violence_physical_damage_over_time_+%_final"]=6424, + ["grenade_fuse_duration_+%"]=6425, + ["grenade_projectile_speed_+%"]=6426, + ["grenade_skill_%_chance_to_explode_twice"]=6427, + ["grenade_skill_area_of_effect_+%"]=6428, + ["grenade_skill_cooldown_count_+"]=6429, + ["grenade_skill_cooldown_speed_+%"]=6430, + ["grenade_skill_damage_+%"]=6431, + ["grenade_skill_duration_+%"]=6432, + ["grenade_skill_number_of_additional_projectiles"]=6433, + ["ground_effect_duration_+%"]=6434, + ["ground_slam_angle_+%"]=2878, + ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6435, + ["ground_slam_damage_+%"]=3221, + ["ground_slam_radius_+%"]=3384, + ["ground_smoke_on_rampage_threshold_ms"]=2614, + ["ground_smoke_when_hit_%"]=2262, + ["ground_tar_on_block_base_area_of_effect_radius"]=6436, + ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2198, + ["ground_tar_when_hit_%_chance"]=6437, + ["guard_flask_effect_+%"]=6438, + ["guard_gained_+%"]=6439, + ["guard_skill_cooldown_recovery_+%"]=6440, + ["guard_skill_effect_duration_+%"]=6441, + ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3365, + ["guardian_nearby_allies_share_charges"]=3686, + ["guardian_nearby_enemies_cannot_gain_charges"]=3361, + ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3364, + ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3362, + ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3363, + ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=2927, + ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6442, + ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6443, + ["halve_evasion_rating_from_body"]=6445, + ["harvest_encounter_fluid_granted_+%"]=6446, + ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6447, + ["has_curse_limit_equal_to_maximum_power_charges"]=6448, + ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6449, + ["has_onslaught_if_totem_summoned_recently"]=6450, + ["has_stun_prevention_flask"]=6451, + ["has_trickster_alternating_damage_taken_+%_final"]=6452, + ["has_unique_brutal_shrine_effect"]=6453, + ["has_unique_chaos_shrine_effect"]=6454, + ["has_unique_cold_shrine_effect"]=6455, + ["has_unique_fire_shrine_effect"]=6456, + ["has_unique_lightning_shrine_effect"]=6457, + ["has_unique_massive_shrine_effect"]=6458, + ["haste_aura_effect_+%"]=2975, + ["haste_mana_reservation_+%"]=3615, + ["haste_mana_reservation_efficiency_+%"]=6460, + ["haste_mana_reservation_efficiency_-2%_per_1"]=6459, + ["haste_reserves_no_mana"]=6461, + ["hatred_aura_effect_+%"]=2977, + ["hatred_mana_reservation_+%"]=3605, + ["hatred_mana_reservation_efficiency_+%"]=6463, + ["hatred_mana_reservation_efficiency_-2%_per_1"]=6462, + ["hatred_reserves_no_mana"]=6464, + ["have_unholy_might"]=6465, + ["hazard_area_of_effect_+%"]=6466, + ["hazard_base_debuff_slow_magnitude_+%"]=6467, + ["hazard_damage_+%"]=6468, + ["hazard_duration_+%"]=1615, + ["hazard_hit_damage_immobilisation_multiplier_+%"]=6469, + ["hazard_rearm_%_chance"]=6470, + ["hazards_cant_trigger_x_seconds_after_creation"]=6471, + ["head_hunt_without_a_corpse"]=6472, + ["heat_loss_%_slower"]=6473, + ["heavy_strike_attack_speed_+%"]=3432, + ["heavy_strike_chance_to_deal_double_damage_%"]=2857, + ["heavy_strike_damage_+%"]=3222, + ["heavy_stun_poise_decay_rate_+%"]=6475, + ["heavy_stun_poise_decay_rate_+%_per_10_tribute"]=6474, + ["heavy_stun_threshold_+"]=6476, + ["heavy_stuns_have_culling_strike"]=6477, + ["heist_additional_abyss_rewards_from_reward_chests_%"]=6478, + ["heist_additional_armour_rewards_from_reward_chests_%"]=6479, + ["heist_additional_blight_rewards_from_reward_chests_%"]=6480, + ["heist_additional_breach_rewards_from_reward_chests_%"]=6481, + ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6482, + ["heist_additional_delirium_rewards_from_reward_chests_%"]=6483, + ["heist_additional_delve_rewards_from_reward_chests_%"]=6484, + ["heist_additional_divination_rewards_from_reward_chests_%"]=6485, + ["heist_additional_essences_rewards_from_reward_chests_%"]=6486, + ["heist_additional_gems_rewards_from_reward_chests_%"]=6487, + ["heist_additional_harbinger_rewards_from_reward_chests_%"]=6488, + ["heist_additional_jewellery_rewards_from_reward_chests_%"]=6489, + ["heist_additional_legion_rewards_from_reward_chests_%"]=6490, + ["heist_additional_metamorph_rewards_from_reward_chests_%"]=6491, + ["heist_additional_perandus_rewards_from_reward_chests_%"]=6492, + ["heist_additional_talisman_rewards_from_reward_chests_%"]=6493, + ["heist_additional_uniques_rewards_from_reward_chests_%"]=6494, + ["heist_additional_weapons_rewards_from_reward_chests_%"]=6495, + ["heist_alert_level_gained_on_monster_death"]=6496, + ["heist_alert_level_gained_per_10_sec"]=6497, + ["heist_chests_chance_for_secondary_objectives_%"]=6498, + ["heist_chests_double_blighted_maps_and_catalysts_%"]=6499, + ["heist_chests_double_breach_splinters_%"]=6500, + ["heist_chests_double_catalysts_%"]=6501, + ["heist_chests_double_currency_%"]=6502, + ["heist_chests_double_delirium_orbs_and_splinters_%"]=6503, + ["heist_chests_double_divination_cards_%"]=6504, + ["heist_chests_double_essences_%"]=6505, + ["heist_chests_double_jewels_%"]=6506, + ["heist_chests_double_legion_splinters_%"]=6507, + ["heist_chests_double_map_fragments_%"]=6508, + ["heist_chests_double_maps_%"]=6509, + ["heist_chests_double_oils_%"]=6510, + ["heist_chests_double_scarabs_%"]=6511, + ["heist_chests_double_sextants_%"]=6512, + ["heist_chests_double_uniques_%"]=6513, + ["heist_chests_unique_rarity_%"]=6514, + ["heist_coins_dropped_by_monsters_double_%"]=6516, + ["heist_coins_from_monsters_+%"]=34, + ["heist_coins_from_world_chests_double_%"]=6515, + ["heist_contract_alert_level_+%"]=6519, + ["heist_contract_alert_level_from_chests_+%"]=6517, + ["heist_contract_alert_level_from_monsters_+%"]=6518, + ["heist_contract_gang_cost_+%"]=6520, + ["heist_contract_gang_takes_no_cut"]=6521, + ["heist_contract_generate_secondary_objectives_chance_%"]=6522, + ["heist_contract_guarding_monsters_damage_+%"]=6523, + ["heist_contract_guarding_monsters_take_damage_+%"]=6524, + ["heist_contract_magical_unlock_count"]=6526, + ["heist_contract_mechanical_unlock_count"]=6525, + ["heist_contract_no_travel_cost"]=6527, + ["heist_contract_npc_cost_+%"]=6528, + ["heist_contract_objective_completion_time_+%"]=6529, + ["heist_contract_patrol_additional_elite_chance_+%"]=6530, + ["heist_contract_patrol_damage_+%"]=6531, + ["heist_contract_patrol_take_damage_+%"]=6532, + ["heist_contract_side_area_monsters_damage_+%"]=6533, + ["heist_contract_side_area_monsters_take_damage_+%"]=6534, + ["heist_contract_total_cost_+%_final"]=6535, + ["heist_contract_travel_cost_+%"]=6536, + ["heist_currency_alchemy_drops_as_blessed_%"]=6537, + ["heist_currency_alchemy_drops_as_divine_%"]=6538, + ["heist_currency_alchemy_drops_as_exalted_%"]=6539, + ["heist_currency_alteration_drops_as_alchemy_%"]=6540, + ["heist_currency_alteration_drops_as_chaos_%"]=6541, + ["heist_currency_alteration_drops_as_regal_%"]=6542, + ["heist_currency_augmentation_drops_as_alchemy_%"]=6543, + ["heist_currency_augmentation_drops_as_chaos_%"]=6544, + ["heist_currency_augmentation_drops_as_regal_%"]=6545, + ["heist_currency_chaos_drops_as_blessed_%"]=6546, + ["heist_currency_chaos_drops_as_divine_%"]=6547, + ["heist_currency_chaos_drops_as_exalted_%"]=6548, + ["heist_currency_chromatic_drops_as_fusing_%"]=6549, + ["heist_currency_chromatic_drops_as_jewellers_%"]=6550, + ["heist_currency_jewellers_drops_as_fusing_%"]=6551, + ["heist_currency_regal_drops_as_blessed_%"]=6552, + ["heist_currency_regal_drops_as_divine_%"]=6553, + ["heist_currency_regal_drops_as_exalted_%"]=6554, + ["heist_currency_regret_drops_as_annulment_%"]=6555, + ["heist_currency_scouring_drops_as_annulment_%"]=6556, + ["heist_currency_scouring_drops_as_regret_%"]=6557, + ["heist_currency_transmutation_drops_as_alchemy_%"]=6558, + ["heist_currency_transmutation_drops_as_chaos_%"]=6559, + ["heist_currency_transmutation_drops_as_regal_%"]=6560, + ["heist_drops_double_currency_%"]=6561, + ["heist_enchantment_ailment_mod_effect_+%"]=54, + ["heist_enchantment_attribute_mod_effect_+%"]=55, + ["heist_enchantment_casterdamage_mod_effect_+%"]=56, + ["heist_enchantment_chaos_mod_effect_+%"]=57, + ["heist_enchantment_cold_mod_effect_+%"]=58, + ["heist_enchantment_critical_mod_effect_+%"]=59, + ["heist_enchantment_damage_mod_effect_+%"]=60, + ["heist_enchantment_defence_mod_effect_+%"]=61, + ["heist_enchantment_fire_mod_effect_+%"]=62, + ["heist_enchantment_life_mod_effect_+%"]=63, + ["heist_enchantment_lightning_mod_effect_+%"]=64, + ["heist_enchantment_mana_mod_effect_+%"]=65, + ["heist_enchantment_physical_mod_effect_+%"]=66, + ["heist_enchantment_resistance_mod_effect_+%"]=67, + ["heist_enchantment_speed_mod_effect_+%"]=68, + ["heist_guards_are_magic"]=6562, + ["heist_guards_are_rare"]=6563, + ["heist_interruption_resistance_%"]=6564, + ["heist_item_quantity_+%"]=6565, + ["heist_item_rarity_+%"]=6566, + ["heist_items_are_fully_linked_%"]=6567, + ["heist_items_drop_corrupted_%"]=6568, + ["heist_items_drop_identified_%"]=6569, + ["heist_items_have_elder_influence_%"]=6570, + ["heist_items_have_one_additional_socket_%"]=6571, + ["heist_items_have_shaper_influence_%"]=6572, + ["heist_job_agility_level_+"]=6573, + ["heist_job_brute_force_level_+"]=6574, + ["heist_job_counter_thaumaturgy_level_+"]=6575, + ["heist_job_deception_level_+"]=6576, + ["heist_job_demolition_level_+"]=6577, + ["heist_job_demolition_speed_+%"]=6578, + ["heist_job_engineering_level_+"]=6579, + ["heist_job_lockpicking_level_+"]=6580, + ["heist_job_lockpicking_speed_+%"]=6581, + ["heist_job_perception_level_+"]=6582, + ["heist_job_trap_disarmament_level_+"]=6583, + ["heist_job_trap_disarmament_speed_+%"]=6584, + ["heist_lockdown_is_instant"]=6585, + ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=6586, + ["heist_npc_blueprint_reveal_cost_+%"]=6587, + ["heist_npc_contract_generates_gianna_intelligence"]=6588, + ["heist_npc_contract_generates_niles_intelligence"]=6589, + ["heist_npc_display_huck_combat"]=6590, + ["heist_npc_karst_alert_level_from_chests_+%_final"]=6591, + ["heist_npc_nenet_alert_level_+%_final"]=6592, + ["heist_npc_tullina_alert_level_+%_final"]=6593, + ["heist_npc_vinderi_alert_level_+%_final"]=6594, + ["heist_patrols_are_magic"]=6595, + ["heist_patrols_are_rare"]=6596, + ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=6597, + ["heist_player_armour_+%_final_per_25%_alert_level"]=6598, + ["heist_player_cold_resistance_%_per_25%_alert_level"]=6599, + ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=6600, + ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=6601, + ["heist_player_experience_gain_+%"]=6602, + ["heist_player_fire_resistance_%_per_25%_alert_level"]=6603, + ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=6604, + ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=6605, + ["heist_player_lightning_resistance_%_per_25%_alert_level"]=6606, + ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=6607, + ["heist_reinforcements_attack_speed_+%"]=6608, + ["heist_reinforcements_cast_speed_+%"]=6609, + ["heist_reinforcements_movements_speed_+%"]=6610, + ["heist_side_reward_room_monsters_+%"]=6611, + ["hellscape_extra_item_slots"]=6612, + ["hellscape_extra_map_slots"]=6613, + ["hellscaping_add_corruption_implicit_chance_%"]=6614, + ["hellscaping_add_explicit_mod_chance_%"]=6615, + ["hellscaping_additional_link_chance_%"]=6616, + ["hellscaping_additional_socket_chance_%"]=6617, + ["hellscaping_additional_upside_chance_%"]=6618, + ["hellscaping_downsides_tier_downgrade_chance_%"]=6619, + ["hellscaping_speed_+%_per_map_hellscape_tier"]=6620, + ["hellscaping_upgrade_mod_tier_chance_%"]=6626, + ["hellscaping_upsides_tier_upgrade_chance_%"]=6627, + ["helmet_mod_freeze_as_though_damage_+%_final"]=6628, + ["helmet_mod_shock_as_though_damage_+%_final"]=6629, + ["herald_effect_on_self_+%"]=6630, + ["herald_mana_reservation_override_45%"]=6631, + ["herald_of_agony_buff_drop_off_speed_+%"]=6632, + ["herald_of_agony_buff_effect_+%"]=6633, + ["herald_of_agony_mana_reservation_+%"]=6636, + ["herald_of_agony_mana_reservation_efficiency_+%"]=6635, + ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=6634, + ["herald_of_ash_buff_effect_+%"]=6637, + ["herald_of_ash_damage_+%"]=3299, + ["herald_of_ash_mana_reservation_+%"]=3601, + ["herald_of_ash_mana_reservation_efficiency_+%"]=6639, + ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=6638, + ["herald_of_ice_buff_effect_+%"]=6640, + ["herald_of_ice_damage_+%"]=3300, + ["herald_of_ice_mana_reservation_+%"]=3602, + ["herald_of_ice_mana_reservation_efficiency_+%"]=6642, + ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=6641, + ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=6643, + ["herald_of_light_buff_effect_+%"]=6644, + ["herald_of_light_minion_area_of_effect_+%"]=6645, + ["herald_of_purity_mana_reservation_+%"]=6648, + ["herald_of_purity_mana_reservation_efficiency_+%"]=6647, + ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=6646, + ["herald_of_thunder_bolt_frequency_+%"]=6649, + ["herald_of_thunder_buff_effect_+%"]=6650, + ["herald_of_thunder_damage_+%"]=3301, + ["herald_of_thunder_mana_reservation_+%"]=3603, + ["herald_of_thunder_mana_reservation_efficiency_+%"]=6652, + ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=6651, + ["herald_scorpion_number_of_additional_projectiles"]=6653, + ["herald_skills_mana_reservation_+%"]=6656, + ["herald_skills_mana_reservation_efficiency_+%"]=6655, + ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=6654, + ["hex_remove_at_effect_variance"]=6661, + ["hex_skill_cast_speed_+%"]=1891, + ["hex_skill_duration_+%"]=6657, + ["hexblast_%_chance_to_not_consume_hex"]=6659, + ["hexblast_damage_+%"]=6658, + ["hexblast_skill_area_of_effect_+%"]=6660, + ["hexes_expire_on_reaching_200%_effect"]=6661, + ["hexproof_if_right_ring_is_magic_item"]=6662, + ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=6663, + ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=6664, + ["hierophant_gloves_supported_by_increased_area_of_effect"]=465, + ["hierophant_helmet_supported_by_elemental_penetration"]=464, + ["hierophant_mana_cost_+%_final"]=6665, + ["hierophant_mana_reservation_+%_final"]=6666, + ["hierophant_passive_damage_+%_final_per_totem"]=3330, + ["hinder_chance_%_on_spreading_poioson"]=6667, + ["hinder_duration_+%"]=6668, + ["hinder_effect_on_self_+%"]=6669, + ["hinder_enemy_chaos_damage_+%"]=6670, + ["hinder_enemy_chaos_damage_taken_+%"]=6671, + ["hinder_enemy_elemental_damage_taken_+%"]=6672, + ["hinder_enemy_physical_damage_taken_+%"]=6673, + ["hit_%_chance_to_gain_100%_damage_as_chaos"]=3933, + ["hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos"]=3934, + ["hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos"]=3142, + ["hit_%_chance_to_gain_25%_damage_as_chaos"]=3929, + ["hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos"]=3930, + ["hit_%_chance_to_gain_50%_damage_as_chaos"]=3931, + ["hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos"]=3932, + ["hit_damage_+%"]=6682, + ["hit_damage_+%_vs_bleeding_enemies"]=6683, + ["hit_damage_+%_vs_blinded_enemies"]=6684, + ["hit_damage_+%_vs_chilled_enemies"]=6685, + ["hit_damage_+%_vs_cursed_enemies"]=6686, + ["hit_damage_+%_vs_enemies_affected_by_ailments"]=6687, + ["hit_damage_+%_vs_ignited_enemies"]=6674, + ["hit_damage_+%_vs_unique_enemies"]=6688, + ["hit_damage_electrocute_multiplier_+%"]=6675, + ["hit_damage_electrocute_multiplier_+%_vs_shocked_enemies"]=6676, ["hit_damage_freeze_multiplier_+%"]=1010, - ["hit_damage_freeze_multiplier_+%_against_ignited_enemies"]=6563, - ["hit_damage_pin_multiplier_+%"]=6564, - ["hit_damage_stun_multiplier_+%"]=1003, - ["hit_damage_stun_multiplier_+%_final_with_crits"]=6572, - ["hit_damage_stun_multiplier_+%_vs_enemies_at_close_range"]=6573, - ["hit_damage_stun_multiplier_+%_vs_enemies_on_low_life"]=6574, - ["hit_for_%_max_life_es_on_max_infernal_flame"]=6575, - ["hit_for_%_of_infernal_flame_on_max_infernal_flame"]=6576, - ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=6577, - ["hits_can_only_kill_frozen_enemies"]=2704, - ["hits_cannot_be_evaded_vs_blinded_enemies"]=6578, - ["hits_from_maces_and_sceptres_crush_enemies"]=6579, - ["hits_ignore_elemental_resistances_vs_frozen_enemies"]=6580, - ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=6581, - ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=6582, - ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=6583, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=6585, - ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=6584, - ["hits_treat_enemy_cold_resistance_as_x%"]=6586, - ["hits_treat_enemy_fire_resistance_as_x%"]=6587, - ["hits_treat_enemy_lightning_resistance_as_x%"]=6588, - ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=6589, - ["holy_path_teleport_range_+%"]=6590, - ["holy_relic_area_of_effect_+%"]=6591, - ["holy_relic_buff_effect_+%"]=6592, - ["holy_relic_cooldown_recovery_+%"]=6593, - ["holy_relic_damage_+%"]=6594, - ["hydro_sphere_pulse_frequency_+%"]=6595, - ["hypothermia_gem_level_+"]=1954, - ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=6596, - ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=6597, - ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=6598, - ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=6599, - ["ice_crash_damage_+%"]=3321, - ["ice_crash_first_stage_damage_+%_final"]=6600, - ["ice_crash_physical_damage_%_to_gain_as_cold_damage"]=3611, - ["ice_crash_radius_+%"]=3461, - ["ice_crystal_maximum_life_+%"]=6601, - ["ice_dash_cooldown_speed_+%"]=6602, - ["ice_dash_duration_+%"]=6603, - ["ice_dash_travel_distance_+%"]=6604, - ["ice_golem_damage_+%"]=3334, - ["ice_golem_elemental_resistances_%"]=3616, - ["ice_nova_chill_minimum_slow_%"]=6605, - ["ice_nova_damage_+%"]=3304, - ["ice_nova_freeze_chance_%"]=3593, - ["ice_nova_radius_+%"]=3448, - ["ice_shot_additional_pierce_per_10_old"]=6606, - ["ice_shot_area_angle_+%"]=6607, - ["ice_shot_damage_+%"]=3288, - ["ice_shot_duration_+%"]=3565, - ["ice_shot_pierce_+"]=6608, - ["ice_shot_radius_+%"]=3444, - ["ice_siphon_trap_chill_effect_+%"]=6609, - ["ice_siphon_trap_damage_+%"]=6610, - ["ice_siphon_trap_damage_taken_+%_per_beam"]=6611, - ["ice_siphon_trap_duration_+%"]=6612, - ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3602, - ["ice_spear_and_ball_lightning_projectiles_nova"]=6613, - ["ice_spear_and_ball_lightning_projectiles_return"]=6614, - ["ice_spear_damage_+%"]=3305, - ["ice_spear_distance_before_form_change_+%"]=6615, - ["ice_spear_number_of_additional_projectiles"]=6616, - ["ice_spear_second_form_critical_strike_chance_+%"]=3750, - ["ice_spear_second_form_critical_strike_multiplier_+"]=3751, - ["ice_spear_second_form_projectile_speed_+%_final"]=3752, - ["ice_trap_cold_resistance_penetration_%"]=6617, - ["ice_trap_cooldown_speed_+%"]=3521, - ["ice_trap_damage_+%"]=3370, - ["ice_trap_radius_+%"]=3474, - ["ignite_as_though_dealing_X_damage_in_your_presence"]=6618, + ["hit_damage_freeze_multiplier_+%_against_ignited_enemies"]=6677, + ["hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently"]=6678, + ["hit_damage_immobilisation_multiplier_+%"]=6679, + ["hit_damage_immobilisation_multiplier_+%_vs_constructs"]=6680, + ["hit_damage_pin_multiplier_+%"]=6681, + ["hit_damage_stun_multiplier_+%"]=1004, + ["hit_damage_stun_multiplier_+%_per_10_tribute"]=6689, + ["hit_damage_stun_multiplier_+%_vs_enemies_at_close_range"]=6690, + ["hit_damage_stun_multiplier_+%_vs_enemies_on_low_life"]=6691, + ["hit_for_%_max_life_es_on_max_infernal_flame"]=6692, + ["hit_for_%_of_infernal_flame_on_max_infernal_flame"]=6693, + ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=6694, + ["hits_can_only_kill_frozen_enemies"]=2659, + ["hits_cannot_be_evaded_vs_blinded_enemies"]=6695, + ["hits_cannot_be_evaded_vs_heavy_stunned_enemies"]=6696, + ["hits_from_maces_and_sceptres_crush_enemies"]=6697, + ["hits_ignore_elemental_resistances_vs_frozen_enemies"]=6698, + ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=6699, + ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=6700, + ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=6701, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=6703, + ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=6702, + ["hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%"]=6704, + ["hits_treat_enemy_cold_resistance_as_x%"]=6705, + ["hits_treat_enemy_fire_resistance_as_x%"]=6706, + ["hits_treat_enemy_lightning_resistance_as_x%"]=6707, + ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=6708, + ["holy_path_teleport_range_+%"]=6709, + ["holy_relic_area_of_effect_+%"]=6710, + ["holy_relic_buff_effect_+%"]=6711, + ["holy_relic_cooldown_recovery_+%"]=6712, + ["holy_relic_damage_+%"]=6713, + ["hydro_sphere_pulse_frequency_+%"]=6714, + ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=6715, + ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=6716, + ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=6717, + ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=6718, + ["ice_crash_damage_+%"]=3267, + ["ice_crash_first_stage_damage_+%_final"]=6719, + ["ice_crash_physical_damage_%_to_gain_as_cold_damage"]=3554, + ["ice_crash_radius_+%"]=3407, + ["ice_crystal_maximum_life_+%"]=6720, + ["ice_dash_cooldown_speed_+%"]=6721, + ["ice_dash_duration_+%"]=6722, + ["ice_dash_travel_distance_+%"]=6723, + ["ice_golem_damage_+%"]=3280, + ["ice_golem_elemental_resistances_%"]=3559, + ["ice_nova_chill_minimum_slow_%"]=6724, + ["ice_nova_damage_+%"]=3250, + ["ice_nova_freeze_chance_%"]=3537, + ["ice_nova_radius_+%"]=3394, + ["ice_shot_additional_pierce_per_10_old"]=6725, + ["ice_shot_area_angle_+%"]=6726, + ["ice_shot_damage_+%"]=3234, + ["ice_shot_duration_+%"]=3511, + ["ice_shot_pierce_+"]=6727, + ["ice_shot_radius_+%"]=3390, + ["ice_siphon_trap_chill_effect_+%"]=6728, + ["ice_siphon_trap_damage_+%"]=6729, + ["ice_siphon_trap_damage_taken_+%_per_beam"]=6730, + ["ice_siphon_trap_duration_+%"]=6731, + ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3546, + ["ice_spear_and_ball_lightning_projectiles_nova"]=6732, + ["ice_spear_and_ball_lightning_projectiles_return"]=6733, + ["ice_spear_damage_+%"]=3251, + ["ice_spear_distance_before_form_change_+%"]=6734, + ["ice_spear_number_of_additional_projectiles"]=6735, + ["ice_spear_second_form_critical_strike_chance_+%"]=3692, + ["ice_spear_second_form_critical_strike_multiplier_+"]=3693, + ["ice_spear_second_form_projectile_speed_+%_final"]=3694, + ["ice_trap_cold_resistance_penetration_%"]=6736, + ["ice_trap_cooldown_speed_+%"]=3467, + ["ice_trap_damage_+%"]=3316, + ["ice_trap_radius_+%"]=3420, + ["ignite_as_though_dealing_X_damage_in_your_presence"]=6737, ["ignite_chance_+%"]=1008, - ["ignite_duration_+%"]=1580, - ["ignite_effect_+%_against_frozen_enemies"]=6621, - ["ignite_effect_on_self_+%"]=6619, - ["ignite_prevention_ms_when_ignited"]=2595, - ["ignite_proliferation_radius_15"]=1914, - ["ignite_shock_chill_duration_+%"]=6622, - ["ignite_slower_burn_%"]=2283, - ["ignited_enemies_explode_on_kill"]=2310, - ["ignites_and_chill_apply_elemental_resistance_+"]=6623, - ["ignites_apply_fire_resistance_+"]=6624, - ["ignites_reflected_to_self"]=2720, - ["ignore_armour_movement_penalties"]=1887, - ["ignore_hexproof"]=2315, - ["ignore_strength_requirements_of_melee_weapons_and_skills"]=6625, - ["ignores_enemy_cold_resistance"]=6626, - ["ignores_enemy_fire_resistance"]=6627, - ["ignores_enemy_lightning_resistance"]=6628, - ["imbue_weapon_max_exerts"]=6629, - ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3653, - ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=6630, - ["immortal_call_duration_+%"]=3531, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=6631, - ["immune_to_ally_buff_auras"]=2701, - ["immune_to_bleeding"]=3839, - ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=6632, - ["immune_to_burning_shocks_and_chilled_ground"]=6633, - ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=6634, - ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=6635, - ["immune_to_curses_while_at_least_X_rage"]=6636, - ["immune_to_curses_while_channelling"]=6637, - ["immune_to_elemental_ailments_while_on_consecrated_ground"]=6638, - ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=6639, - ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=6640, - ["immune_to_elemental_status_ailments_during_flask_effect"]=3848, - ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=9552, - ["immune_to_exposure"]=6641, - ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=6642, - ["immune_to_freeze_and_chill_while_ignited"]=6643, - ["immune_to_freeze_while_affected_by_purity_of_ice"]=6644, - ["immune_to_hinder"]=6645, - ["immune_to_ignite_and_shock"]=6646, - ["immune_to_ignite_while_affected_by_purity_of_fire"]=6647, - ["immune_to_maim"]=6648, - ["immune_to_poison"]=3255, - ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=6649, - ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=6650, - ["immune_to_shock_while_affected_by_purity_of_lightning"]=6651, - ["immune_to_status_ailments_while_focused"]=6652, - ["immune_to_status_ailments_while_phased"]=3116, - ["immune_to_thorns_damage"]=6653, - ["immune_to_wither"]=6654, - ["impacting_steel_%_chance_to_not_consume_ammo"]=6655, - ["impale_inflicted_by_two_handed_weapons_magnitude_+%"]=6656, - ["impale_magnitude_+%"]=6657, - ["impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=6658, - ["impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies"]=6659, - ["impale_on_hit_%_chance"]=6660, - ["impale_on_hit_%_chance_with_axes_swords"]=6661, - ["impending_doom_base_added_chaos_damage_%_of_current_mana"]=6662, - ["impurity_cold_damage_taken_+%_final"]=6663, - ["impurity_fire_damage_taken_+%_final"]=6664, - ["impurity_lightning_damage_taken_+%_final"]=6665, - ["incinerate_damage_+%"]=3306, - ["incinerate_damage_+%_per_stage"]=3633, - ["incinerate_projectile_speed_+%"]=3528, - ["incinerate_starts_with_X_additional_stages"]=6666, - ["incision_effect_+%"]=6667, - ["incision_you_inflict_applies_%_increased_physical_damage_taken"]=6668, - ["increase_crit_chance_by_lowest_of_str_or_int"]=6669, - ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1351, - ["infernal_blow_damage_+%"]=3277, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=6670, - ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=6671, - ["infernal_blow_physical_damage_%_to_gain_as_fire_damage"]=3589, - ["infernal_blow_radius_+%"]=3439, - ["infernal_cry_area_of_effect_+%"]=6672, - ["infernal_cry_cooldown_speed_+%"]=6673, - ["infernal_familiar_burn_damage"]=6674, - ["infernal_familiar_nearby_enemies_fire_damage_taken_+%"]=6675, - ["infernal_familiar_revive_if_killed_by_enemies_ms"]=6676, - ["infernal_familiar_total_burn_radius"]=6674, - ["infernal_flame_instead_of_mana"]=6339, - ["infernalist_burn_life_and_es_%_per_second_if_crit_recently"]=6677, - ["infernalist_critical_strike_chance_+%_final"]=6678, - ["infernalist_critical_strike_multiplier_+%_final"]=6679, - ["infinite_parry_blocked_projectile_distance"]=6680, - ["inflict_all_exposure_on_enemies_when_suppressing_their_spell"]=6681, - ["inflict_all_exposure_on_hit"]=6682, - ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=6683, - ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=6684, - ["inflict_cold_exposure_on_ignite"]=6685, - ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=6686, - ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=6687, - ["inflict_fire_exposure_on_hits_that_heavy_stun"]=6688, - ["inflict_fire_exposure_on_shock"]=6689, - ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=6690, - ["inflict_lightning_exposure_on_crit"]=6691, - ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=6692, - ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=6693, - ["inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence"]=6694, - ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=6695, - ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=6696, - ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=6697, - ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=6698, - ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=6699, - ["infusion_%_chance_to_gain_additional_infusion_charge"]=6700, - ["infusion_blast_area_of_effect_+%"]=6701, - ["infusion_blast_damage_+%"]=6702, - ["infusion_duration_+%"]=6703, - ["infusion_effect_+%"]=6704, - ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=6705, - ["inquisitor_aura_elemental_damage_+%_final"]=3235, - ["inspiration_charge_duration_+%"]=6706, - ["intelligence_+%"]=1114, - ["intelligence_+%_per_equipped_unique"]=2309, - ["intelligence_inherently_grants_life_instead_of_mana"]=1728, - ["intelligence_is_0"]=6707, - ["intelligence_skill_gem_level_+"]=6708, - ["intensity_loss_frequency_while_moving_+%"]=6709, - ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=6710, - ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=6711, - ["intimidate_enemy_on_block_for_duration_ms"]=6712, - ["intimidate_nearby_enemies_on_use_for_ms"]=6713, - ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=6714, - ["intimidating_cry_area_of_effect_+%"]=6715, - ["intimidating_cry_cooldown_speed_+%"]=6716, - ["intuitive_link_duration_+%"]=6717, - ["iron_reflexes_rotation_active"]=9643, - ["is_blighted_map"]=6718, - ["is_hindered"]=3733, - ["is_petrified"]=3248, - ["item_drop_slots"]=8, - ["item_drops_on_death"]=2276, - ["item_found_quality_+%"]=1433, - ["item_found_quantity_+%"]=1424, - ["item_found_quantity_+%_if_wearing_a_magic_item"]=3835, - ["item_found_quantity_+%_per_chest_opened_recently"]=6719, - ["item_found_quantity_+%_per_white_socket_on_item"]=2434, - ["item_found_quantity_+%_when_on_low_life"]=1426, - ["item_found_rarity_+%"]=1428, - ["item_found_rarity_+%_if_wearing_a_normal_item"]=3834, - ["item_found_rarity_+%_per_white_socket_on_item"]=2435, - ["item_found_rarity_+%_when_on_low_life"]=1431, - ["item_found_rarity_+%_while_phasing"]=2224, - ["item_found_rarity_+1%_per_X_rampage_stacks"]=6720, - ["item_found_relevancy_+%"]=1434, - ["item_generation_can_have_multiple_crafted_mods"]=49, - ["item_generation_cannot_change_prefixes"]=44, - ["item_generation_cannot_change_suffixes"]=46, - ["item_generation_cannot_roll_attack_affixes"]=48, - ["item_generation_cannot_roll_caster_affixes"]=47, - ["item_generation_local_maximum_mod_required_level_override"]=51, - ["item_rarity_+%_while_using_flask"]=2460, - ["jagged_ground_duration_+%"]=6721, - ["jagged_ground_effect_+%"]=6722, - ["jagged_ground_enemy_damage_taken_+%"]=6723, - ["jewellery_hellscaping_speed_+%"]=6510, - ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2500, - ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=6724, - ["keystone_2_companions"]=9581, - ["keystone_acrobatics"]=9582, - ["keystone_alternate_dexterity_bonus"]=9583, - ["keystone_alternate_intelligence_bonus"]=9584, - ["keystone_alternate_strength_bonus"]=9585, - ["keystone_ancestral_bond"]=9586, - ["keystone_avatar_of_fire"]=9587, - ["keystone_battlemage"]=9588, - ["keystone_blood_magic"]=9589, - ["keystone_bulwark"]=9590, - ["keystone_call_to_arms"]=9591, - ["keystone_chaos_inoculation"]=9592, - ["keystone_charge_cycle"]=9593, - ["keystone_conduit"]=9594, - ["keystone_crimson_assault"]=9595, - ["keystone_crimson_dance"]=9596, - ["keystone_dance_with_death"]=9597, - ["keystone_divine_flesh"]=9598, - ["keystone_divine_shield"]=9599, - ["keystone_eldritch_battery"]=9600, - ["keystone_elemental_equilibrium"]=9601, - ["keystone_elemental_overload"]=9602, - ["keystone_emperors_heart"]=9603, - ["keystone_eternal_youth"]=9604, - ["keystone_everlasting_sacrifice"]=9605, - ["keystone_giants_blood"]=9606, - ["keystone_glancing_blows"]=9607, - ["keystone_heartstopper"]=9608, - ["keystone_hex_master"]=9609, - ["keystone_hollow_palm_technique"]=9610, - ["keystone_impale"]=9611, - ["keystone_iron_grip"]=9612, - ["keystone_iron_reflexes"]=9613, - ["keystone_iron_will"]=9614, - ["keystone_mana_shield"]=9615, - ["keystone_minion_instability"]=9616, - ["keystone_oasis"]=9617, - ["keystone_pain_attunement"]=9618, - ["keystone_point_blank"]=9619, - ["keystone_precise_technique"]=9620, - ["keystone_projectile_evasion"]=9621, - ["keystone_quiet_might"]=9622, - ["keystone_runebinder"]=9623, - ["keystone_sacred_bastion"]=9624, - ["keystone_secrets_of_suffering"]=9625, - ["keystone_shepherd_of_souls"]=6725, - ["keystone_unwavering_stance"]=9626, - ["keystone_vaal_pact"]=9627, - ["keystone_versatile_combatant"]=9628, - ["keystone_wind_dancer"]=9629, - ["keystone_zealots_oath"]=9630, - ["kill_enemy_on_hit_if_under_10%_life"]=1743, - ["kill_enemy_on_hit_if_under_15%_life"]=3837, - ["kill_enemy_on_hit_if_under_20%_life"]=3838, - ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=6726, - ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2403, - ["killed_monster_dropped_item_rarity_+%_on_crit"]=2352, - ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2406, - ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2404, - ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3220, - ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2405, - ["kills_count_twice_for_rampage_%"]=6727, - ["kinetic_blast_%_chance_for_additional_blast"]=3743, - ["kinetic_blast_damage_+%"]=3322, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=6728, - ["kinetic_blast_radius_+%"]=3462, - ["kinetic_bolt_attack_speed_+%"]=6729, - ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=6730, - ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=6731, - ["kinetic_bolt_projectile_speed_+%"]=6732, - ["kinetic_wand_base_number_of_zig_zags"]=6733, - ["knockback_chance_%_against_bleeding_enemies_with_hits"]=6734, - ["knockback_chance_%_at_close_range"]=6735, - ["knockback_distance_+%"]=1712, - ["knockback_distance_+%_final_vs_unique_enemies"]=6736, - ["knockback_on_counterattack_%"]=3264, - ["knockback_on_crit_with_bow"]=1667, - ["knockback_on_crit_with_projectile_damage"]=6737, - ["knockback_on_crit_with_quarterstaff"]=1668, - ["knockback_on_crit_with_wand"]=1669, - ["knockback_with_bow"]=1379, - ["knockback_with_staff"]=1380, - ["knockback_with_wand"]=1381, - ["labyrinth_darkshrine_additional_divine_font_use_display"]=6738, - ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=6739, - ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=6740, - ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=6741, - ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=6742, - ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=6743, - ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=6744, - ["labyrinth_owner_x_addition_enchants"]=6745, - ["lancing_steel_%_chance_to_not_consume_ammo"]=6749, - ["lancing_steel_damage_+%"]=6746, - ["lancing_steel_impale_chance_%"]=6747, - ["lancing_steel_number_of_additional_projectiles"]=6748, - ["lancing_steel_primary_proj_pierce_num"]=6750, - ["leap_slam_attack_speed_+%"]=3489, - ["leap_slam_damage_+%"]=3293, - ["leap_slam_radius_+%"]=3446, - ["leech_%_is_instant"]=6751, - ["leech_rate_+%"]=1862, - level=7, - ["lich_mana_cost_+%_final_if_you_have_no_energy_shield"]=151, - ["life_%_gained_on_kill_if_spent_life_recently"]=2624, - ["life_+%_with_no_corrupted_equipped_items"]=3826, - ["life_and_energy_shield_recovery_rate_+%"]=6752, - ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=6753, - ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=6754, - ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=6755, - ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=6756, - ["life_and_mana_flasks_can_be_equipped_in_either_slot"]=6757, - ["life_and_mana_gain_per_hit"]=1468, - ["life_degeneration_%_per_minute_not_in_grace"]=1658, - ["life_degeneration_per_minute_not_in_grace"]=1412, - ["life_flask_charges_gained_+%"]=6758, - ["life_flask_charges_recovered_per_3_seconds"]=6759, - ["life_flask_effects_are_not_removed_at_full_life"]=6760, - ["life_flask_recovery_can_overcap_life"]=6761, - ["life_flask_recovery_is_instant"]=6762, - ["life_flask_recovery_is_instant_while_on_low_life"]=6763, - ["life_flasks_do_not_recover_life"]=6764, - ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=6765, - ["life_flasks_gain_X_charges_on_suppressing_spell"]=6766, - ["life_flasks_gain_a_charge_on_hit_once_per_second"]=6767, - ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=6768, - ["life_gain_on_ignited_enemy_hit"]=1470, - ["life_gain_per_target"]=1466, - ["life_gain_per_target_hit_while_affected_by_vitality"]=6769, - ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=6770, - ["life_gained_on_attack_hit_vs_cursed_enemies"]=6771, - ["life_gained_on_bleeding_enemy_hit"]=3214, - ["life_gained_on_block"]=1483, - ["life_gained_on_cull"]=6772, - ["life_gained_on_enemy_death_per_frenzy_charge"]=2623, - ["life_gained_on_enemy_death_per_level"]=2659, - ["life_gained_on_hit_per_enemy_status_ailment"]=2752, - ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=6773, - ["life_gained_on_killing_ignited_enemies"]=1479, - ["life_gained_on_spell_hit_per_enemy_status_ailment"]=2753, - ["life_gained_on_taunting_enemy"]=1506, - ["life_leech_%_is_instant_per_defiance"]=6777, - ["life_leech_%_maximum_life_on_spell_cast"]=6778, - ["life_leech_also_recovers_based_on_elemental_damage_types"]=6774, - ["life_leech_can_overcap_life"]=6775, - ["life_leech_excess_goes_to_energy_shield"]=6776, - ["life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies"]=1465, - ["life_leech_rate_+%_per_equipped_corrupted_item"]=2776, - ["life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage"]=6779, - ["life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence"]=6780, - ["life_leeched_from_hits_also_leeches_same_amount_to_companions"]=6781, - ["life_loss_%_per_minute_if_have_been_hit_recently"]=6782, - ["life_lost_%_per_minute_nonlethal"]=6783, - ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=6784, - ["life_mana_flasks_restore_mana_life"]=6785, - ["life_mastery_count_maximum_life_+%_final"]=6786, - ["life_per_level"]=6787, - ["life_recoup_also_applies_to_energy_shield"]=6788, - ["life_recoup_applies_to_energy_shield_instead"]=6789, - ["life_recovery_+%_from_flasks_while_on_low_life"]=6795, - ["life_recovery_from_flasks_also_recovers_energy_shield"]=6790, - ["life_recovery_from_flasks_applies_to_companions"]=6791, - ["life_recovery_from_flasks_apply_to_minions_in_your_presence"]=6792, - ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=6793, - ["life_recovery_from_regeneration_is_not_applied"]=6794, - ["life_recovery_rate_+%"]=1414, - ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=6797, - ["life_recovery_rate_+%_if_havent_killed_recently"]=6798, - ["life_recovery_rate_+%_per_5%_missing_life"]=6796, - ["life_recovery_rate_+%_while_affected_by_vitality"]=6799, - ["life_recovery_rate_while_in_presence_of_companion_+%"]=6800, - ["life_regen_per_minute_per_endurance_charge"]=2693, - ["life_regenerate_rate_per_second_%_while_totem_active"]=3680, - ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=6815, - ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=6816, - ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=6801, - ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=6806, - ["life_regeneration_per_minute_%_per_fortification"]=6807, - ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=6808, - ["life_regeneration_per_minute_%_while_burning"]=6809, - ["life_regeneration_per_minute_%_while_channelling"]=6810, - ["life_regeneration_per_minute_%_while_fortified"]=2869, - ["life_regeneration_per_minute_%_while_frozen"]=3380, - ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4005, - ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4006, - ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4004, - ["life_regeneration_per_minute_in_blood_stance"]=9067, - ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=6802, - ["life_regeneration_per_minute_per_active_buff"]=6803, - ["life_regeneration_per_minute_per_maximum_energy_shield"]=6804, - ["life_regeneration_per_minute_per_nearby_corpse"]=6805, - ["life_regeneration_per_minute_while_affected_by_vitality"]=6811, - ["life_regeneration_per_minute_while_ignited"]=6812, - ["life_regeneration_per_minute_while_moving"]=6813, - ["life_regeneration_per_minute_while_you_have_avians_flight"]=6814, - ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3827, - ["life_regeneration_rate_+%"]=988, - ["life_regeneration_rate_+%_while_es_full"]=2754, - ["life_regeneration_rate_+%_while_moving"]=6839, - ["life_regeneration_rate_+%_while_on_low_life"]=6840, - ["life_regeneration_rate_+%_while_stationary"]=6841, - ["life_regeneration_rate_+%_while_using_life_flask"]=6817, - ["life_regeneration_rate_per_minute_%"]=1659, - ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=6822, - ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=6823, - ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=6824, - ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=6825, - ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=6826, - ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=6818, - ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3847, - ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=6827, - ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=6828, - ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1413, - ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4031, - ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2338, - ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=6829, - ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=6830, - ["life_regeneration_rate_per_minute_%_per_power_charge"]=6831, - ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=6832, - ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=6833, - ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1855, - ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1660, - ["life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment"]=6819, - ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=6820, - ["life_regeneration_rate_per_minute_%_while_moving"]=6834, - ["life_regeneration_rate_per_minute_%_while_stationary"]=6835, - ["life_regeneration_rate_per_minute_%_while_surrounded"]=6821, - ["life_regeneration_rate_per_minute_%_while_using_flask"]=6836, - ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=6837, - ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2777, - ["life_regeneration_rate_per_minute_per_level"]=2649, - ["life_regeneration_rate_per_minute_while_on_low_life"]=6838, - ["life_reserved_by_stat_%"]=2161, + ["ignite_duration_+%"]=1563, + ["ignite_effect_+%_against_frozen_enemies"]=6739, + ["ignite_effect_+%_if_consumed_endurance_charge_recently"]=6740, + ["ignite_effect_on_self_+%"]=6738, + ["ignite_prevention_ms_when_ignited"]=2558, + ["ignite_proliferation_radius_15"]=1893, + ["ignite_shock_chill_duration_+%"]=6741, + ["ignite_slower_burn_%"]=2251, + ["ignited_enemies_explode_on_kill"]=2278, + ["ignites_and_chill_apply_elemental_resistance_+"]=6742, + ["ignites_apply_fire_resistance_+"]=6743, + ["ignites_reflected_to_self"]=2675, + ["ignore_armour_movement_penalties"]=1864, + ["ignore_armour_movement_penalties_if_you_have_at_least_100_tribute"]=6744, + ["ignore_hexproof"]=2283, + ["ignore_strength_requirements_of_melee_weapons_and_skills"]=6745, + ["ignores_enemy_cold_resistance"]=6746, + ["ignores_enemy_fire_resistance"]=6747, + ["ignores_enemy_lightning_resistance"]=6748, + ["imbue_weapon_max_exerts"]=6749, + ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3596, + ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=6750, + ["immortal_call_duration_+%"]=3477, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=6751, + ["immune_to_ally_buff_auras"]=2656, + ["immune_to_bleeding"]=3781, + ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=6752, + ["immune_to_burning_shocks_and_chilled_ground"]=6753, + ["immune_to_chill_if_majority_blue_supports_socketed"]=6754, + ["immune_to_corrupted_blood"]=6755, + ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=6756, + ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=6757, + ["immune_to_curses_while_at_least_X_rage"]=6758, + ["immune_to_curses_while_channelling"]=6759, + ["immune_to_elemental_ailments_while_on_consecrated_ground"]=6760, + ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=6761, + ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=6762, + ["immune_to_elemental_status_ailments_during_flask_effect"]=3790, + ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=9832, + ["immune_to_exposure"]=6763, + ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=6764, + ["immune_to_freeze_and_chill_while_ignited"]=6765, + ["immune_to_freeze_chill_while_ice_archon"]=6766, + ["immune_to_freeze_while_affected_by_purity_of_ice"]=6767, + ["immune_to_hinder"]=6768, + ["immune_to_ignite_and_shock"]=6769, + ["immune_to_ignite_if_majority_red_supports_socketed"]=6770, + ["immune_to_ignite_while_affected_by_purity_of_fire"]=6771, + ["immune_to_ignite_while_flame_archon"]=6772, + ["immune_to_maim"]=6773, + ["immune_to_poison"]=3201, + ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=6774, + ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=6775, + ["immune_to_shock_if_majority_green_supports_socketed"]=6776, + ["immune_to_shock_while_affected_by_purity_of_lightning"]=6777, + ["immune_to_shock_while_lightning_archon"]=6778, + ["immune_to_status_ailments_while_focused"]=6779, + ["immune_to_status_ailments_while_phased"]=3064, + ["immune_to_thorns_damage"]=6780, + ["immune_to_wither"]=6781, + ["impacting_steel_%_chance_to_not_consume_ammo"]=6782, + ["impale_inflicted_by_two_handed_weapons_magnitude_+%"]=6783, + ["impale_magnitude_+%"]=6784, + ["impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=6785, + ["impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies"]=6786, + ["impale_on_hit_%_chance"]=6787, + ["impale_on_hit_%_chance_with_axes_swords"]=6788, + ["impending_doom_base_added_chaos_damage_%_of_current_mana"]=6789, + ["impurity_cold_damage_taken_+%_final"]=6790, + ["impurity_fire_damage_taken_+%_final"]=6791, + ["impurity_lightning_damage_taken_+%_final"]=6792, + ["incinerate_damage_+%"]=3252, + ["incinerate_damage_+%_per_stage"]=3576, + ["incinerate_projectile_speed_+%"]=3474, + ["incinerate_starts_with_X_additional_stages"]=6793, + ["incision_effect_+%"]=6794, + ["incision_you_inflict_applies_%_increased_physical_damage_taken"]=6795, + ["increase_crit_chance_by_lowest_of_str_or_int"]=6796, + ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1339, + ["infernal_blow_damage_+%"]=3223, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=6797, + ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=6798, + ["infernal_blow_physical_damage_%_to_gain_as_fire_damage"]=3534, + ["infernal_blow_radius_+%"]=3385, + ["infernal_cry_area_of_effect_+%"]=6799, + ["infernal_cry_cooldown_speed_+%"]=6800, + ["infernal_familiar_burn_damage"]=6801, + ["infernal_familiar_nearby_enemies_fire_damage_taken_+%"]=6802, + ["infernal_familiar_revive_if_killed_by_enemies_ms"]=6803, + ["infernal_familiar_total_burn_radius"]=6801, + ["infernal_flame_instead_of_mana_at_%_ratio"]=6444, + ["infernalist_burn_life_and_es_%_per_second_if_crit_recently"]=6804, + ["infernalist_critical_strike_chance_+%_final"]=6805, + ["infernalist_critical_strike_multiplier_+%_final"]=6806, + ["infinite_active_block_distance"]=6807, + ["inflict_all_exposure_on_hit"]=6808, + ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=6809, + ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=6810, + ["inflict_cold_exposure_on_ignite"]=6811, + ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=6812, + ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=6813, + ["inflict_fire_exposure_on_hits_that_heavy_stun"]=6814, + ["inflict_fire_exposure_on_shock"]=6815, + ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=6816, + ["inflict_lightning_exposure_on_crit"]=6817, + ["inflict_lightning_exposure_on_electrocute_for_x_seconds"]=6818, + ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=6819, + ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=6820, + ["inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence"]=6821, + ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=6822, + ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=6823, + ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=6824, + ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=6825, + ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=6826, + ["infusion_blast_area_of_effect_+%"]=6827, + ["infusion_blast_damage_+%"]=6828, + ["infusion_duration_+%"]=6829, + ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=6830, + ["inquisitor_aura_elemental_damage_+%_final"]=3181, + ["inspiration_charge_duration_+%"]=6831, + ["instilling_%_chance_to_gain_additional_instilling_stack"]=6832, + ["intelligence_+%"]=1102, + ["intelligence_+%_per_equipped_unique"]=2277, + ["intelligence_inherently_grants_life_instead_of_mana"]=1705, + ["intelligence_is_0"]=6833, + ["intelligence_skill_gem_level_+"]=6834, + ["intensity_loss_frequency_while_moving_+%"]=6835, + ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=6836, + ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=6837, + ["intimidate_enemy_on_block_for_duration_ms"]=6838, + ["intimidate_nearby_enemies_on_use_for_ms"]=6839, + ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=6840, + ["intimidating_cry_area_of_effect_+%"]=6841, + ["intimidating_cry_cooldown_speed_+%"]=6842, + ["intuitive_link_duration_+%"]=6843, + ["invocation_skill_maximum_energy_+%"]=6844, + ["invocation_spell_chance_to_cost_half_energy_%"]=6845, + ["invocation_spell_critical_strike_chance_+%"]=6846, + ["invocation_spell_critical_strike_multiplier_+"]=6847, + ["invocation_spell_damage_+%"]=6848, + ["iron_reflexes_rotation_active"]=9923, + ["is_blighted_map"]=6849, + ["is_hindered"]=3675, + ["is_petrified"]=3194, + ["item_drop_slots"]=10, + ["item_drops_on_death"]=2244, + ["item_found_quality_+%"]=1416, + ["item_found_quantity_+%"]=1407, + ["item_found_quantity_+%_if_wearing_a_magic_item"]=3777, + ["item_found_quantity_+%_per_chest_opened_recently"]=6850, + ["item_found_quantity_+%_per_white_socket_on_item"]=2400, + ["item_found_quantity_+%_when_on_low_life"]=1409, + ["item_found_rarity_+%"]=1411, + ["item_found_rarity_+%_if_wearing_a_normal_item"]=3776, + ["item_found_rarity_+%_per_white_socket_on_item"]=2401, + ["item_found_rarity_+%_when_on_low_life"]=1414, + ["item_found_rarity_+%_while_phasing"]=2193, + ["item_found_rarity_+1%_per_X_rampage_stacks"]=6851, + ["item_found_relevancy_+%"]=1417, + ["item_generation_can_have_multiple_crafted_mods"]=51, + ["item_generation_cannot_change_prefixes"]=46, + ["item_generation_cannot_change_suffixes"]=48, + ["item_generation_cannot_roll_attack_affixes"]=50, + ["item_generation_cannot_roll_caster_affixes"]=49, + ["item_generation_local_maximum_mod_required_level_override"]=53, + ["item_rarity_+%_while_using_flask"]=2426, + ["jagged_ground_duration_+%"]=6852, + ["jagged_ground_effect_+%"]=6853, + ["jagged_ground_enemy_damage_taken_+%"]=6854, + ["jewellery_hellscaping_speed_+%"]=6622, + ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2465, + ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=6855, + ["keystone_2_companions"]=9861, + ["keystone_acrobatics"]=9862, + ["keystone_alternate_dexterity_bonus"]=9863, + ["keystone_alternate_intelligence_bonus"]=9864, + ["keystone_alternate_strength_bonus"]=9865, + ["keystone_ancestral_bond"]=9866, + ["keystone_auto_invocation"]=9867, + ["keystone_avatar_of_fire"]=9868, + ["keystone_battlemage"]=9869, + ["keystone_blood_magic"]=9870, + ["keystone_bulwark"]=9871, + ["keystone_call_to_arms"]=9872, + ["keystone_chaos_inoculation"]=9873, + ["keystone_charge_cycle"]=9874, + ["keystone_conduit"]=9875, + ["keystone_crimson_assault"]=9876, + ["keystone_crimson_dance"]=9877, + ["keystone_dance_with_death"]=9878, + ["keystone_divine_flesh"]=9879, + ["keystone_divine_shield"]=9880, + ["keystone_eldritch_battery"]=9881, + ["keystone_elemental_equilibrium"]=9882, + ["keystone_elemental_overload"]=9883, + ["keystone_emperors_heart"]=9884, + ["keystone_eternal_youth"]=9885, + ["keystone_everlasting_sacrifice"]=9886, + ["keystone_fire_spells_become_chaos_spells"]=9887, + ["keystone_giants_blood"]=9888, + ["keystone_glancing_blows"]=9889, + ["keystone_heartstopper"]=9890, + ["keystone_hex_master"]=9891, + ["keystone_hollow_palm_technique"]=9892, + ["keystone_impale"]=9893, + ["keystone_iron_grip"]=9894, + ["keystone_iron_reflexes"]=9895, + ["keystone_iron_will"]=9896, + ["keystone_mana_shield"]=9897, + ["keystone_minion_instability"]=9898, + ["keystone_oasis"]=9899, + ["keystone_pain_attunement"]=9900, + ["keystone_point_blank"]=9901, + ["keystone_precise_technique"]=9902, + ["keystone_quiet_might"]=9903, + ["keystone_runebinder"]=9904, + ["keystone_sacred_bastion"]=9905, + ["keystone_secrets_of_suffering"]=9906, + ["keystone_shepherd_of_souls"]=6856, + ["keystone_unwavering_stance"]=9907, + ["keystone_vaal_pact"]=9908, + ["keystone_versatile_combatant"]=9909, + ["keystone_zealots_oath"]=9910, + ["kill_enemy_on_hit_if_under_10%_life"]=1720, + ["kill_enemy_on_hit_if_under_15%_life"]=3779, + ["kill_enemy_on_hit_if_under_20%_life"]=3780, + ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=6857, + ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2371, + ["killed_monster_dropped_item_rarity_+%_on_crit"]=2320, + ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2374, + ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2372, + ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3167, + ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2373, + ["kills_count_twice_for_rampage_%"]=6858, + ["kinetic_blast_%_chance_for_additional_blast"]=3685, + ["kinetic_blast_damage_+%"]=3268, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=6859, + ["kinetic_blast_radius_+%"]=3408, + ["kinetic_bolt_attack_speed_+%"]=6860, + ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=6861, + ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=6862, + ["kinetic_bolt_projectile_speed_+%"]=6863, + ["kinetic_wand_base_number_of_zig_zags"]=6864, + ["knockback_chance_%_against_bleeding_enemies_with_hits"]=6865, + ["knockback_chance_%_at_close_range"]=6866, + ["knockback_distance_+%"]=1689, + ["knockback_distance_+%_final_vs_unique_enemies"]=6867, + ["knockback_on_counterattack_%"]=3210, + ["knockback_on_crit_with_bow"]=1646, + ["knockback_on_crit_with_projectile_damage"]=6868, + ["knockback_on_crit_with_quarterstaff"]=1647, + ["knockback_on_crit_with_wand"]=1648, + ["knockback_with_bow"]=1367, + ["knockback_with_staff"]=1368, + ["knockback_with_wand"]=1369, + ["labyrinth_darkshrine_additional_divine_font_use_display"]=6869, + ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=6870, + ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=6871, + ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=6872, + ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=6873, + ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=6874, + ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=6875, + ["labyrinth_owner_x_addition_enchants"]=6876, + ["lancing_steel_%_chance_to_not_consume_ammo"]=6880, + ["lancing_steel_damage_+%"]=6877, + ["lancing_steel_impale_chance_%"]=6878, + ["lancing_steel_number_of_additional_projectiles"]=6879, + ["lancing_steel_primary_proj_pierce_num"]=6881, + ["leap_slam_attack_speed_+%"]=3435, + ["leap_slam_damage_+%"]=3239, + ["leap_slam_radius_+%"]=3392, + ["leech_%_is_instant"]=6882, + ["leech_rate_+%"]=1839, + level=9, + ["lich_mana_cost_+%_final_if_you_have_no_energy_shield"]=143, + ["life_%_gained_on_kill_if_spent_life_recently"]=2584, + ["life_+%_with_no_corrupted_equipped_items"]=3768, + ["life_and_energy_shield_recovery_rate_+%"]=6883, + ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=6884, + ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=6885, + ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=6886, + ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=6887, + ["life_and_mana_flasks_can_be_equipped_in_either_slot"]=6888, + ["life_and_mana_gain_per_hit"]=1451, + ["life_degeneration_%_per_minute_not_in_grace"]=1637, + ["life_degeneration_per_minute_not_in_grace"]=1395, + ["life_flask_charges_gained_+%"]=6889, + ["life_flask_charges_recovered_per_3_seconds"]=6890, + ["life_flask_effects_are_not_removed_at_full_life"]=6891, + ["life_flask_recovery_can_overcap_life"]=6892, + ["life_flask_recovery_is_instant"]=6893, + ["life_flask_recovery_is_instant_while_on_low_life"]=6894, + ["life_flasks_do_not_recover_life"]=6895, + ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=6896, + ["life_flasks_gain_a_charge_on_hit_once_per_second"]=6897, + ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=6898, + ["life_gain_on_ignited_enemy_hit"]=1453, + ["life_gain_per_target"]=1449, + ["life_gain_per_target_hit_while_affected_by_vitality"]=6899, + ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=6900, + ["life_gained_on_attack_hit_vs_cursed_enemies"]=6901, + ["life_gained_on_bleeding_enemy_hit"]=3161, + ["life_gained_on_block"]=1466, + ["life_gained_on_cull"]=6902, + ["life_gained_on_enemy_death_per_frenzy_charge"]=2583, + ["life_gained_on_enemy_death_per_level"]=2618, + ["life_gained_on_hit_per_enemy_status_ailment"]=2707, + ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=6903, + ["life_gained_on_killing_ignited_enemies"]=1462, + ["life_gained_on_spell_hit_per_enemy_status_ailment"]=2708, + ["life_gained_on_taunting_enemy"]=1489, + ["life_leech_%_is_instant_if_you_have_at_least_200_tribute"]=6904, + ["life_leech_%_is_instant_per_defiance"]=6911, + ["life_leech_%_maximum_life_on_spell_cast"]=6912, + ["life_leech_also_recovers_based_on_elemental_damage_types"]=6905, + ["life_leech_amount_+%_if_consumed_frenzy_charge_recently"]=6906, + ["life_leech_can_overcap_life"]=6907, + ["life_leech_excess_goes_to_energy_shield"]=6908, + ["life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute"]=6909, + ["life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies"]=1448, + ["life_leech_is_instant_for_empowered_attacks"]=6910, + ["life_leech_rate_+%_if_you_have_at_least_100_tribute"]=6913, + ["life_leech_rate_+%_per_equipped_corrupted_item"]=2731, + ["life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage"]=6914, + ["life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence"]=6915, + ["life_leeched_from_hits_also_leeches_same_amount_to_companions"]=6916, + ["life_loss_%_per_minute_if_have_been_hit_recently"]=6917, + ["life_lost_%_per_minute_nonlethal"]=6918, + ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=6919, + ["life_mana_flasks_restore_mana_life"]=6920, + ["life_mastery_count_maximum_life_+%_final"]=6921, + ["life_per_level"]=6922, + ["life_recoup_also_applies_to_energy_shield"]=6923, + ["life_recoup_applies_to_energy_shield_instead"]=6924, + ["life_recovery_+%_from_flasks_while_on_low_life"]=6930, + ["life_recovery_from_flasks_also_recovers_energy_shield"]=6925, + ["life_recovery_from_flasks_applies_to_companions"]=6926, + ["life_recovery_from_flasks_apply_to_minions_in_your_presence"]=6927, + ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=6928, + ["life_recovery_from_regeneration_is_not_applied"]=6929, + ["life_recovery_rate_+%"]=1397, + ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=6933, + ["life_recovery_rate_+%_if_havent_killed_recently"]=6934, + ["life_recovery_rate_+%_per_10_tribute"]=6931, + ["life_recovery_rate_+%_per_5%_missing_life"]=6932, + ["life_recovery_rate_+%_while_affected_by_vitality"]=6935, + ["life_recovery_rate_while_in_presence_of_companion_+%"]=6936, + ["life_regen_per_minute_per_endurance_charge"]=2648, + ["life_regenerate_rate_per_second_%_while_totem_active"]=3623, + ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=6951, + ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=6952, + ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=6937, + ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=6942, + ["life_regeneration_per_minute_%_per_fortification"]=6943, + ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=6944, + ["life_regeneration_per_minute_%_while_burning"]=6945, + ["life_regeneration_per_minute_%_while_channelling"]=6946, + ["life_regeneration_per_minute_%_while_fortified"]=2824, + ["life_regeneration_per_minute_%_while_frozen"]=3326, + ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=3946, + ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=3947, + ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=3945, + ["life_regeneration_per_minute_in_blood_stance"]=9327, + ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=6938, + ["life_regeneration_per_minute_per_active_buff"]=6939, + ["life_regeneration_per_minute_per_maximum_energy_shield"]=6940, + ["life_regeneration_per_minute_per_nearby_corpse"]=6941, + ["life_regeneration_per_minute_while_affected_by_vitality"]=6947, + ["life_regeneration_per_minute_while_ignited"]=6948, + ["life_regeneration_per_minute_while_moving"]=6949, + ["life_regeneration_per_minute_while_you_have_avians_flight"]=6950, + ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3769, + ["life_regeneration_rate_+%"]=989, + ["life_regeneration_rate_+%_while_es_full"]=2709, + ["life_regeneration_rate_+%_while_moving"]=6976, + ["life_regeneration_rate_+%_while_on_low_life"]=6977, + ["life_regeneration_rate_+%_while_stationary"]=6978, + ["life_regeneration_rate_+%_while_surrounded"]=6953, + ["life_regeneration_rate_+%_while_using_life_flask"]=6954, + ["life_regeneration_rate_per_minute_%"]=1638, + ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=6959, + ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=6960, + ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=6961, + ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=6962, + ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=6963, + ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=6955, + ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3789, + ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=6964, + ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=6965, + ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1396, + ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=3972, + ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2306, + ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=6966, + ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=6967, + ["life_regeneration_rate_per_minute_%_per_power_charge"]=6968, + ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=6969, + ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=6970, + ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1832, + ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1639, + ["life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment"]=6956, + ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=6957, + ["life_regeneration_rate_per_minute_%_while_moving"]=6971, + ["life_regeneration_rate_per_minute_%_while_stationary"]=6972, + ["life_regeneration_rate_per_minute_%_while_surrounded"]=6958, + ["life_regeneration_rate_per_minute_%_while_using_flask"]=6973, + ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=6974, + ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2732, + ["life_regeneration_rate_per_minute_per_level"]=2608, + ["life_regeneration_rate_per_minute_while_on_low_life"]=6975, + ["life_reserved_by_stat_%"]=2130, ["light_radius_+%"]=1023, - ["light_radius_+%_while_phased"]=2227, - ["light_radius_additive_modifiers_apply_to_area_%_value"]=2217, - ["light_radius_additive_modifiers_apply_to_damage"]=2218, - ["light_radius_increases_apply_to_accuracy"]=6842, - ["light_radius_increases_apply_to_area_of_effect"]=6843, - ["light_radius_scales_with_energy_shield"]=2445, - ["lightning_ailment_duration_+%"]=6844, - ["lightning_ailment_effect_+%"]=6846, - ["lightning_ailment_effect_+%_against_chilled_enemies"]=6845, - ["lightning_and_chaos_damage_resistance_%"]=6847, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=6848, - ["lightning_arrow_damage_+%"]=3294, - ["lightning_arrow_radius_+%"]=3447, - ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=6849, - ["lightning_conduit_area_of_effect_+%"]=6850, - ["lightning_conduit_cast_speed_+%"]=6851, - ["lightning_conduit_damage_+%"]=6852, - ["lightning_critical_strike_chance_+%"]=1346, - ["lightning_critical_strike_multiplier_+"]=1367, - ["lightning_damage_%_taken_from_mana_before_life"]=3794, - ["lightning_damage_+%"]=883, - ["lightning_damage_+%_per_10_intelligence"]=3757, - ["lightning_damage_+%_per_frenzy_charge"]=2622, - ["lightning_damage_+%_per_lightning_resistance_above_75"]=6854, - ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=6855, - ["lightning_damage_+%_while_affected_by_wrath"]=6856, - ["lightning_damage_can_chill"]=2577, - ["lightning_damage_can_freeze"]=2582, - ["lightning_damage_can_ignite"]=6853, - ["lightning_damage_cannot_shock"]=2588, - ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=6857, - ["lightning_damage_resistance_+%"]=1457, - ["lightning_damage_resistance_is_%"]=1455, - ["lightning_damage_taken_%_as_cold"]=2855, - ["lightning_damage_taken_%_as_fire"]=2854, - ["lightning_damage_taken_+"]=6859, - ["lightning_damage_taken_+%"]=3044, - ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=6858, - ["lightning_damage_to_return_to_melee_attacker"]=1904, - ["lightning_damage_to_return_when_hit"]=1909, - ["lightning_damage_with_attack_skills_+%"]=6860, - ["lightning_damage_with_spell_skills_+%"]=6861, - ["lightning_dot_multiplier_+"]=1172, - ["lightning_explosion_mine_aura_effect_+%"]=6862, - ["lightning_explosion_mine_damage_+%"]=6863, - ["lightning_explosion_mine_throwing_speed_+%"]=6864, - ["lightning_exposure_effect_+%"]=6865, - ["lightning_exposure_on_hit_magnitude"]=6866, - ["lightning_golem_damage_+%"]=3335, - ["lightning_golem_elemental_resistances_%"]=3617, - ["lightning_hit_and_dot_damage_%_taken_as_fire"]=6867, - ["lightning_hit_damage_+%_vs_chilled_enemies"]=6868, - ["lightning_penetration_%_while_on_low_mana"]=741, - ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=6869, - ["lightning_resist_unaffected_by_area_penalties"]=6870, - ["lightning_resistance_does_not_apply_to_lighting_damage"]=6871, - ["lightning_skill_additional_chain_chance_%"]=6872, - ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=6873, - ["lightning_skill_gem_level_+"]=6874, - ["lightning_skill_stun_threshold_+%"]=6875, - ["lightning_skills_chance_to_poison_on_hit_%"]=6876, - ["lightning_spell_skill_gem_level_+"]=949, - ["lightning_strike_additional_pierce"]=3585, - ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=6877, - ["lightning_strike_damage_+%"]=3278, - ["lightning_strike_num_of_additional_projectiles"]=3576, - ["lightning_tendrils_critical_strike_chance_+%"]=3739, - ["lightning_tendrils_damage_+%"]=3279, - ["lightning_tendrils_radius_+%"]=3440, - ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=6878, - ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=6879, - ["lightning_tower_trap_additional_number_of_beams"]=6880, - ["lightning_tower_trap_cast_speed_+%"]=6881, - ["lightning_tower_trap_cooldown_speed_+%"]=6882, - ["lightning_tower_trap_damage_+%"]=6883, - ["lightning_tower_trap_duration_+%"]=6884, - ["lightning_tower_trap_throwing_speed_+%"]=6885, - ["lightning_trap_additional_pierce"]=3586, - ["lightning_trap_cooldown_speed_+%"]=3076, - ["lightning_trap_damage_+%"]=3074, - ["lightning_trap_lightning_resistance_penetration_%"]=6886, - ["lightning_trap_number_of_additional_projectiles"]=3075, - ["lightning_trap_shock_effect_+%"]=6887, - ["lightning_warp_cast_speed_+%"]=3504, - ["lightning_warp_damage_+%"]=3295, - ["lightning_warp_duration_+%"]=3564, - ["lightning_weakness_ignores_hexproof"]=2321, - ["link_buff_effect_+%_on_animate_guardian"]=6888, - ["link_effect_+%_when_50%_expired"]=6889, - ["link_grace_period_8_second_override"]=6890, - ["link_skill_buff_effect_+%"]=6891, - ["link_skill_buff_effect_+%_if_linked_target_recently"]=6892, - ["link_skill_cast_speed_+%"]=6893, - ["link_skill_duration_+%"]=6894, - ["link_skill_gem_level_+"]=6895, - ["link_skill_link_target_cannot_die_for_X_seconds"]=6896, - ["link_skill_lose_no_experience_on_link_target_death"]=6897, - ["link_skill_mana_cost_+%"]=6898, - ["link_skills_can_target_animate_guardian"]=6899, - ["link_skills_can_target_minions"]=6900, - ["link_skills_grant_damage_+%"]=6901, - ["link_skills_grant_damage_taken_+%"]=6902, - ["link_skills_grant_redirect_curses_to_link_source"]=6903, - ["link_to_X_additional_random_allies"]=6904, - ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=6905, + ["light_radius_+%_per_10_tribute"]=6979, + ["light_radius_+%_while_phased"]=2196, + ["light_radius_additive_modifiers_apply_to_area_%_value"]=2186, + ["light_radius_additive_modifiers_apply_to_damage"]=2187, + ["light_radius_increases_apply_to_accuracy"]=6980, + ["light_radius_increases_apply_to_area_of_effect"]=6981, + ["light_radius_scales_with_energy_shield"]=2411, + ["lightning_ailment_duration_+%"]=6982, + ["lightning_ailment_effect_+%"]=6984, + ["lightning_ailment_effect_+%_against_chilled_enemies"]=6983, + ["lightning_and_chaos_damage_resistance_%"]=6985, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=6986, + ["lightning_arrow_damage_+%"]=3240, + ["lightning_arrow_radius_+%"]=3393, + ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=6987, + ["lightning_conduit_area_of_effect_+%"]=6988, + ["lightning_conduit_cast_speed_+%"]=6989, + ["lightning_conduit_damage_+%"]=6990, + ["lightning_critical_strike_chance_+%"]=1334, + ["lightning_critical_strike_multiplier_+"]=1355, + ["lightning_damage_%_taken_from_mana_before_life"]=3736, + ["lightning_damage_+%"]=878, + ["lightning_damage_+%_per_10_intelligence"]=3699, + ["lightning_damage_+%_per_frenzy_charge"]=2582, + ["lightning_damage_+%_per_lightning_resistance_above_75"]=6992, + ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=6993, + ["lightning_damage_+%_while_affected_by_wrath"]=6994, + ["lightning_damage_can_chill"]=2541, + ["lightning_damage_can_freeze"]=2546, + ["lightning_damage_can_ignite"]=6991, + ["lightning_damage_cannot_shock"]=2552, + ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=6995, + ["lightning_damage_resistance_+%"]=1440, + ["lightning_damage_resistance_is_%"]=1438, + ["lightning_damage_taken_%_as_cold"]=2810, + ["lightning_damage_taken_%_as_fire"]=2809, + ["lightning_damage_taken_+"]=6997, + ["lightning_damage_taken_+%"]=2995, + ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=6996, + ["lightning_damage_to_return_to_melee_attacker"]=1883, + ["lightning_damage_to_return_when_hit"]=1888, + ["lightning_damage_with_attack_skills_+%"]=6998, + ["lightning_damage_with_spell_skills_+%"]=6999, + ["lightning_dot_multiplier_+"]=1160, + ["lightning_explosion_mine_aura_effect_+%"]=7000, + ["lightning_explosion_mine_damage_+%"]=7001, + ["lightning_explosion_mine_throwing_speed_+%"]=7002, + ["lightning_exposure_effect_+%"]=7003, + ["lightning_exposure_on_hit_magnitude"]=7004, + ["lightning_golem_damage_+%"]=3281, + ["lightning_golem_elemental_resistances_%"]=3560, + ["lightning_hit_and_dot_damage_%_taken_as_fire"]=7005, + ["lightning_hit_damage_+%_vs_chilled_enemies"]=7006, + ["lightning_penetration_%_while_on_low_mana"]=736, + ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7007, + ["lightning_resist_unaffected_by_area_penalties"]=7008, + ["lightning_resistance_does_not_apply_to_lighting_damage"]=7009, + ["lightning_skill_additional_chain_chance_%"]=7010, + ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7011, + ["lightning_skill_gem_level_+"]=7012, + ["lightning_skill_stun_threshold_+%"]=7013, + ["lightning_skills_chance_to_poison_on_hit_%"]=7014, + ["lightning_spell_skill_gem_level_+"]=946, + ["lightning_strike_additional_pierce"]=3531, + ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7015, + ["lightning_strike_damage_+%"]=3224, + ["lightning_strike_num_of_additional_projectiles"]=3522, + ["lightning_tendrils_critical_strike_chance_+%"]=3681, + ["lightning_tendrils_damage_+%"]=3225, + ["lightning_tendrils_radius_+%"]=3386, + ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7016, + ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7017, + ["lightning_tower_trap_additional_number_of_beams"]=7018, + ["lightning_tower_trap_cast_speed_+%"]=7019, + ["lightning_tower_trap_cooldown_speed_+%"]=7020, + ["lightning_tower_trap_damage_+%"]=7021, + ["lightning_tower_trap_duration_+%"]=7022, + ["lightning_tower_trap_throwing_speed_+%"]=7023, + ["lightning_trap_additional_pierce"]=3532, + ["lightning_trap_cooldown_speed_+%"]=3025, + ["lightning_trap_damage_+%"]=3023, + ["lightning_trap_lightning_resistance_penetration_%"]=7024, + ["lightning_trap_number_of_additional_projectiles"]=3024, + ["lightning_trap_shock_effect_+%"]=7025, + ["lightning_warp_cast_speed_+%"]=3450, + ["lightning_warp_damage_+%"]=3241, + ["lightning_warp_duration_+%"]=3510, + ["lightning_weakness_ignores_hexproof"]=2289, + ["lineage_support_gem_limit_+"]=7026, + ["link_buff_effect_+%_on_animate_guardian"]=7027, + ["link_effect_+%_when_50%_expired"]=7028, + ["link_grace_period_8_second_override"]=7029, + ["link_skill_buff_effect_+%"]=7030, + ["link_skill_buff_effect_+%_if_linked_target_recently"]=7031, + ["link_skill_cast_speed_+%"]=7032, + ["link_skill_duration_+%"]=7033, + ["link_skill_gem_level_+"]=7034, + ["link_skill_link_target_cannot_die_for_X_seconds"]=7035, + ["link_skill_lose_no_experience_on_link_target_death"]=7036, + ["link_skill_mana_cost_+%"]=7037, + ["link_skills_can_target_animate_guardian"]=7038, + ["link_skills_can_target_minions"]=7039, + ["link_skills_grant_damage_+%"]=7040, + ["link_skills_grant_damage_taken_+%"]=7041, + ["link_skills_grant_redirect_curses_to_link_source"]=7042, + ["link_to_X_additional_random_allies"]=7043, + ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7044, ["local_%_chance_to_gain_flask_charge_on_kill"]=1024, - ["local_%_chance_to_gain_flask_charge_when_hit"]=6906, - ["local_+%_weapon_range"]=6907, - ["local_X_additional_chains"]=6908, - ["local_accuracy_rating"]=852, - ["local_accuracy_rating_+%"]=1736, - ["local_accuracy_rating_+%_per_2%_quality"]=6909, - ["local_adaptation_rating"]=1390, - ["local_adaptation_rating_+%"]=1392, - ["local_additional_attack_chain_chance_%"]=6910, - ["local_additional_block_chance_%"]=855, - ["local_additional_charm_slots"]=966, - ["local_additional_deflect_chance_%"]=857, - ["local_aggravate_bleeding_on_hit_chance_%"]=6911, - ["local_aggravating_bleeds_also_causes_you_to_aggravate_ignites"]=4174, - ["local_all_attributes_+%_per_rune_or_soul_core"]=6914, - ["local_all_attributes_+_per_rune_or_soul_core"]=6912, - ["local_all_attributes_-_per_level"]=6913, - ["local_all_damage_can_chill"]=6915, - ["local_all_damage_can_electrocute"]=6916, - ["local_all_damage_can_freeze"]=6917, - ["local_all_damage_can_pin"]=6918, - ["local_all_damage_can_poison"]=2189, - ["local_all_sockets_are_blue"]=84, - ["local_all_sockets_are_green"]=85, - ["local_all_sockets_are_red"]=86, - ["local_all_sockets_are_white"]=87, - ["local_all_sockets_linked"]=83, - ["local_always_crit_heavy_stunned_enemies"]=6919, - ["local_always_freeze_on_full_life"]=6920, - ["local_always_hit"]=1747, - ["local_always_maim_on_crit"]=6921, - ["local_apply_X_armour_break_on_crit"]=6922, - ["local_apply_X_armour_break_on_hit"]=6923, - ["local_apply_X_armour_break_on_stun"]=6924, - ["local_apply_extra_herald_mod_when_synthesised"]=9553, - ["local_apply_fire_exposure_on_full_armour_break"]=6925, - ["local_area_of_effect_+%_per_4%_quality"]=6926, - ["local_armour_and_energy_shield_+%"]=865, - ["local_armour_and_evasion_+%"]=864, - ["local_armour_and_evasion_and_energy_shield_+%"]=1401, - ["local_armour_break_damage_%_dealt_as_armour_break"]=6927, - ["local_attack_and_cast_speed_+%_if_item_corrupted"]=6928, - ["local_attack_cast_movement_speed_+%_during_flask_effect"]=821, - ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=822, - ["local_attack_damage_+%_if_item_corrupted"]=6929, - ["local_attack_maximum_added_physical_damage_per_3_levels"]=1179, - ["local_attack_minimum_added_physical_damage_per_3_levels"]=1179, - ["local_attack_speed_+%"]=943, - ["local_attack_speed_+%_per_8%_quality"]=6930, - ["local_attacks_cannot_be_blocked"]=6931, - ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=6932, - ["local_attacks_impale_on_hit_%_chance"]=6933, - ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=6934, - ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=6935, - ["local_attacks_with_this_weapon_elemental_damage_+%"]=2620, - ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2634, - ["local_attribute_requirements_+%"]=945, - ["local_avoid_chill_%_during_flask_effect"]=750, - ["local_avoid_freeze_%_during_flask_effect"]=751, - ["local_avoid_ignite_%_during_flask_effect"]=752, - ["local_avoid_shock_%_during_flask_effect"]=753, - ["local_base_chaos_damage_resistance_%_per_rune_or_soul_core"]=6936, - ["local_base_evasion_rating"]=859, - ["local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core"]=6937, - ["local_base_maximum_life_+_per_rune_or_soul_core"]=6938, - ["local_base_maximum_mana_+_per_rune_or_soul_core"]=6939, - ["local_base_physical_damage_reduction_rating"]=858, - ["local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core"]=6940, - ["local_base_stun_duration_+%"]=1006, - ["local_bleed_on_critical_strike_chance_%"]=6941, - ["local_bleed_on_hit"]=2199, - ["local_bleeding_effect_+%"]=834, - ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=6942, - ["local_block_chance_+%"]=856, - ["local_can_have_additional_crafted_mods"]=50, - ["local_can_only_deal_damage_with_this_weapon"]=2422, - ["local_can_only_socket_corrupted_gems"]=6943, - ["local_can_only_socket_emerald_gems"]=6944, - ["local_can_only_socket_ruby_gems"]=6945, - ["local_can_only_socket_sapphire_gems"]=6946, - ["local_can_socket_gems_ignoring_colour"]=101, - ["local_cannot_be_thrown"]=6947, - ["local_cannot_be_used_with_chaos_innoculation"]=835, - ["local_cannot_have_blue_sockets"]=75, - ["local_cannot_have_green_sockets"]=76, - ["local_cannot_have_red_sockets"]=77, - ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4449, - ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=9649, - ["local_chance_to_bleed_on_crit_50%"]=6948, - ["local_chance_to_bleed_on_hit_%"]=2202, - ["local_chance_to_bleed_on_hit_25%"]=2200, - ["local_chance_to_bleed_on_hit_50%"]=2201, - ["local_chance_to_blind_on_hit_%"]=1988, - ["local_chance_to_intimidate_on_hit_%"]=6949, - ["local_chance_to_poison_on_hit_%_during_flask_effect"]=754, - ["local_chaos_damage_taken_per_minute_during_flask_effect"]=816, - ["local_chaos_penetration_%"]=6950, + ["local_%_chance_to_gain_flask_charge_when_hit"]=7045, + ["local_+%_weapon_range"]=7046, + ["local_X_additional_chains"]=7047, + ["local_accuracy_rating"]=848, + ["local_accuracy_rating_+%"]=1713, + ["local_accuracy_rating_+%_per_2%_quality"]=7048, + ["local_additional_attack_chain_chance_%"]=7049, + ["local_additional_block_chance_%"]=851, + ["local_additional_charm_slots"]=964, + ["local_aggravate_bleeding_on_hit_chance_%"]=7050, + ["local_aggravating_bleeds_also_causes_you_to_aggravate_ignites"]=4136, + ["local_all_attributes_+%_per_rune_or_soul_core"]=7053, + ["local_all_attributes_+_per_rune_or_soul_core"]=7051, + ["local_all_attributes_-_per_level"]=7052, + ["local_all_damage_can_chill"]=7054, + ["local_all_damage_can_electrocute"]=7055, + ["local_all_damage_can_freeze"]=7056, + ["local_all_damage_can_pin"]=7057, + ["local_all_damage_can_poison"]=2158, + ["local_always_crit_heavy_stunned_enemies"]=7058, + ["local_always_freeze_on_full_life"]=7059, + ["local_always_heavy_stun_on_full_life"]=1086, + ["local_always_hit"]=1724, + ["local_always_maim_on_crit"]=7060, + ["local_apply_X_armour_break_on_crit"]=7061, + ["local_apply_X_armour_break_on_hit"]=7062, + ["local_apply_X_armour_break_on_stun"]=7063, + ["local_apply_extra_herald_mod_when_synthesised"]=9833, + ["local_apply_fire_exposure_on_full_armour_break"]=7064, + ["local_area_of_effect_+%_per_4%_quality"]=7065, + ["local_armour_and_energy_shield_+%"]=860, + ["local_armour_and_evasion_+%"]=859, + ["local_armour_and_evasion_and_energy_shield_+%"]=1385, + ["local_armour_break_damage_%_dealt_as_armour_break"]=7066, + ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7067, + ["local_attack_cast_movement_speed_+%_during_flask_effect"]=817, + ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=818, + ["local_attack_damage_+%_if_item_corrupted"]=7068, + ["local_attack_maximum_added_physical_damage_per_3_levels"]=1167, + ["local_attack_minimum_added_physical_damage_per_3_levels"]=1167, + ["local_attack_speed_+%"]=940, + ["local_attack_speed_+%_per_8%_quality"]=7069, + ["local_attacks_cannot_be_blocked"]=7070, + ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7071, + ["local_attacks_impale_on_hit_%_chance"]=7072, + ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7073, + ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7074, + ["local_attacks_with_this_weapon_elemental_damage_+%"]=2580, + ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2593, + ["local_attribute_requirements_+%"]=942, + ["local_avoid_chill_%_during_flask_effect"]=745, + ["local_avoid_freeze_%_during_flask_effect"]=746, + ["local_avoid_ignite_%_during_flask_effect"]=747, + ["local_avoid_shock_%_during_flask_effect"]=748, + ["local_base_chaos_damage_resistance_%_per_rune_or_soul_core"]=7075, + ["local_base_evasion_rating"]=854, + ["local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core"]=7076, + ["local_base_maximum_life_+_per_rune_or_soul_core"]=7077, + ["local_base_maximum_mana_+_per_rune_or_soul_core"]=7078, + ["local_base_physical_damage_reduction_rating"]=853, + ["local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core"]=7079, + ["local_base_stun_duration_+%"]=1007, + ["local_bleed_on_critical_strike_chance_%"]=7080, + ["local_bleed_on_hit"]=2168, + ["local_bleeding_effect_+%"]=830, + ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7081, + ["local_block_chance_+%"]=852, + ["local_can_have_additional_crafted_mods"]=52, + ["local_can_only_deal_damage_with_this_weapon"]=2388, + ["local_can_only_socket_corrupted_gems"]=7082, + ["local_can_only_socket_emerald_gems"]=7083, + ["local_can_only_socket_ruby_gems"]=7084, + ["local_can_only_socket_sapphire_gems"]=7085, + ["local_can_socket_gems_ignoring_colour"]=93, + ["local_cannot_be_thrown"]=7086, + ["local_cannot_be_used_with_chaos_innoculation"]=831, + ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4443, + ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=9929, + ["local_chance_to_bleed_on_crit_50%"]=7087, + ["local_chance_to_bleed_on_hit_%"]=2171, + ["local_chance_to_bleed_on_hit_25%"]=2169, + ["local_chance_to_bleed_on_hit_50%"]=2170, + ["local_chance_to_blind_on_hit_%"]=1957, + ["local_chance_to_gain_onslaught_on_killing_blow_%"]=7088, + ["local_chance_to_intimidate_on_hit_%"]=7089, + ["local_chance_to_poison_on_hit_%_during_flask_effect"]=749, + ["local_chaos_damage_taken_per_minute_during_flask_effect"]=812, + ["local_chaos_penetration_%"]=7090, ["local_charges_added_+%"]=1025, ["local_charges_used_+%"]=1026, - ["local_charm_duration_+%"]=927, - ["local_charm_effect_+%"]=6951, - ["local_charm_slots"]=4590, - ["local_chill_on_hit_ms_if_in_off_hand"]=6952, - ["local_cold_penetration_%"]=3399, - ["local_cold_resistance_%_per_2%_quality"]=6953, - ["local_concoction_can_consume_sulphur_flasks"]=6954, - ["local_connectivity_of_sockets_+%"]=1633, - ["local_consecrate_ground_on_flask_use_radius"]=663, - ["local_critical_strike_chance"]=941, - ["local_critical_strike_chance_+%"]=1328, - ["local_critical_strike_chance_+%_if_item_corrupted"]=6955, - ["local_critical_strike_chance_+%_per_4%_quality"]=6956, - ["local_critical_strike_multiplier_+"]=942, - ["local_crits_have_culling_strike"]=6957, - ["local_crush_on_hit"]=6958, - ["local_cull_frozen_enemies_on_hit"]=6959, - ["local_culling_strike"]=6960, - ["local_culling_strike_if_crit_recently"]=6961, - ["local_culling_strike_vs_bleeding_enemies"]=6962, - ["local_damage_+%_if_item_corrupted"]=6963, - ["local_damage_roll_always_min_or_max"]=6964, - ["local_damage_taken_+%_if_item_corrupted"]=6965, - ["local_destroy_corpses_with_critical_strikes"]=6966, - ["local_dexterity_per_2%_quality"]=6967, - ["local_dexterity_requirement_+"]=836, - ["local_dexterity_requirement_+%"]=837, - ["local_disable_gem_experience_gain"]=1630, - ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=575, - ["local_display_aura_allies_have_culling_strike"]=2251, - ["local_display_aura_allies_have_increased_item_rarity_+%"]=1429, - ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2401, - ["local_display_aura_curse_effect_on_self_+%"]=2410, - ["local_display_aura_damage_+%"]=2409, - ["local_display_aura_damage_+%_allies_only"]=2605, - ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=422, - ["local_display_cast_animate_weapon_on_kill_%_chance"]=576, - ["local_display_cast_cold_aegis_on_gain_skill"]=577, - ["local_display_cast_elemental_aegis_on_gain_skill"]=578, - ["local_display_cast_fire_aegis_on_gain_skill"]=579, - ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=515, - ["local_display_cast_level_X_consecrate_on_crit"]=516, - ["local_display_cast_level_x_manifest_dancing_dervish"]=3001, - ["local_display_cast_level_x_shock_ground_when_hit"]=517, - ["local_display_cast_lightning_aegis_on_gain_skill"]=580, - ["local_display_cast_lightning_on_critical_strike"]=581, - ["local_display_cast_physical_aegis_on_gain_skill"]=582, - ["local_display_cast_primal_aegis_on_gain_skill"]=583, - ["local_display_cast_summon_arbalists_on_gain_skill"]=584, - ["local_display_cast_triggerbots_on_gain_skill"]=585, - ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=6968, - ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=6969, - ["local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds"]=6970, - ["local_display_fire_and_cold_resist_debuff"]=6971, - ["local_display_fire_burst_on_hit_%"]=586, - ["local_display_gain_fragile_growth_each_second"]=4029, - ["local_display_gain_power_charge_on_spending_mana"]=6972, - ["local_display_grant_level_x_petrification_statue"]=518, - ["local_display_grant_level_x_snipe_skill"]=73, - ["local_display_grants_level_X_envy"]=506, - ["local_display_grants_level_X_queens_demand_skill"]=562, - ["local_display_grants_level_X_reckoning"]=507, - ["local_display_grants_level_X_spell_aegis"]=74, - ["local_display_grants_level_X_vengeance"]=481, - ["local_display_grants_level_x_blood_offering_skill"]=520, - ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=521, - ["local_display_grants_level_x_curse_pillar_skill"]=522, - ["local_display_grants_level_x_despair"]=482, - ["local_display_grants_level_x_hidden_blade"]=587, - ["local_display_grants_level_x_summon_stone_golem"]=480, - ["local_display_grants_level_x_wintertide_brand"]=523, - ["local_display_grants_skill_abyssal_cry_level"]=524, - ["local_display_grants_skill_accuracy_crits_aura_level"]=525, - ["local_display_grants_skill_anger_level"]=501, - ["local_display_grants_skill_bear_trap_level"]=479, - ["local_display_grants_skill_bird_aspect_level"]=526, - ["local_display_grants_skill_blight_level"]=508, - ["local_display_grants_skill_blood_sacrament_level"]=494, - ["local_display_grants_skill_bone_armour"]=527, - ["local_display_grants_skill_brand_detonate_level"]=528, - ["local_display_grants_skill_call_of_steel"]=529, - ["local_display_grants_skill_cat_aspect_level"]=530, - ["local_display_grants_skill_clarity_level"]=493, - ["local_display_grants_skill_conductivity_level"]=488, - ["local_display_grants_skill_crab_aspect_level"]=531, - ["local_display_grants_skill_critical_weakness_level"]=498, - ["local_display_grants_skill_dash_level"]=532, - ["local_display_grants_skill_death_aura_level"]=513, - ["local_display_grants_skill_death_wish_level"]=533, - ["local_display_grants_skill_decoy_totem_level"]=534, - ["local_display_grants_skill_determination_level"]=502, - ["local_display_grants_skill_discipline_level"]=505, - ["local_display_grants_skill_doryanis_touch_level"]=511, - ["local_display_grants_skill_elemental_weakness_level"]=510, - ["local_display_grants_skill_embrace_madness_level"]=535, - ["local_display_grants_skill_enduring_cry_level"]=536, - ["local_display_grants_skill_flammability_level"]=486, - ["local_display_grants_skill_frostbite_level"]=489, - ["local_display_grants_skill_frostblink_level"]=476, - ["local_display_grants_skill_frostbolt_level"]=6973, - ["local_display_grants_skill_gluttony_of_elements_level"]=497, - ["local_display_grants_skill_grace_level"]=503, - ["local_display_grants_skill_haste_level"]=491, - ["local_display_grants_skill_hatred_level"]=500, - ["local_display_grants_skill_herald_of_agony_level"]=537, - ["local_display_grants_skill_herald_of_ash_level"]=538, - ["local_display_grants_skill_herald_of_ice_level"]=539, - ["local_display_grants_skill_herald_of_purity_level"]=540, - ["local_display_grants_skill_herald_of_thunder_level"]=541, - ["local_display_grants_skill_icestorm_level"]=514, - ["local_display_grants_skill_intimidating_cry_level"]=542, - ["local_display_grants_skill_lightning_warp_level"]=543, - ["local_display_grants_skill_malevolence_level"]=544, - ["local_display_grants_skill_mirage_chieftain"]=545, - ["local_display_grants_skill_pride_level"]=546, - ["local_display_grants_skill_projectile_weakness_level"]=509, - ["local_display_grants_skill_purity_level"]=496, - ["local_display_grants_skill_purity_of_cold_level"]=483, - ["local_display_grants_skill_purity_of_fire_level"]=477, - ["local_display_grants_skill_purity_of_lightning_level"]=485, - ["local_display_grants_skill_rallying_cry_level"]=547, - ["local_display_grants_skill_scorching_ray_level"]=504, - ["local_display_grants_skill_smite_level"]=548, - ["local_display_grants_skill_spider_aspect_level"]=549, - ["local_display_grants_skill_temporal_chains_level"]=490, - ["local_display_grants_skill_touch_of_fire_level"]=550, - ["local_display_grants_skill_unhinge_level"]=551, - ["local_display_grants_skill_vaal_impurity_of_fire_level"]=552, - ["local_display_grants_skill_vaal_impurity_of_ice_level"]=553, - ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=554, - ["local_display_grants_skill_vampiric_icon_level"]=555, - ["local_display_grants_skill_vitality_level"]=495, - ["local_display_grants_skill_vulnerability_level"]=512, - ["local_display_grants_skill_wrath_level"]=499, - ["local_display_grants_skill_zealotry_level"]=556, - ["local_display_grants_summon_beast_companion"]=484, - ["local_display_has_additional_implicit_mod"]=492, - ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3056, - ["local_display_illusory_warp_level"]=478, - ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1430, - ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7205, - ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3003, - ["local_display_manifest_dancing_dervish_disables_weapons"]=3002, - ["local_display_minions_grant_onslaught"]=3004, - ["local_display_mod_aura_mana_regeration_rate_+%"]=6974, - ["local_display_molten_burst_on_melee_hit_%"]=588, - ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=6975, - ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=6976, - ["local_display_nearby_allies_critical_strike_multiplier_+"]=6977, - ["local_display_nearby_allies_extra_damage_rolls"]=6978, - ["local_display_nearby_allies_have_fortify"]=6979, - ["local_display_nearby_enemies_all_resistances_%"]=2682, - ["local_display_nearby_enemies_are_blinded"]=3052, - ["local_display_nearby_enemies_are_chilled"]=6980, - ["local_display_nearby_enemies_are_covered_in_ash"]=6981, - ["local_display_nearby_enemies_are_crushed"]=3053, - ["local_display_nearby_enemies_are_intimidated"]=6982, - ["local_display_nearby_enemies_cannot_crit"]=6983, - ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3057, - ["local_display_nearby_enemies_flask_charges_granted_+%"]=3058, - ["local_display_nearby_enemies_have_fire_exposure"]=6984, - ["local_display_nearby_enemies_have_malediction"]=3054, - ["local_display_nearby_enemies_movement_speed_+%"]=3059, - ["local_display_nearby_enemies_scorched"]=3055, - ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3060, - ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3829, - ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2839, - ["local_display_nearby_enemy_chaos_damage_resistance_%"]=6985, - ["local_display_nearby_enemy_cold_damage_resistance_%"]=6986, - ["local_display_nearby_enemy_elemental_damage_taken_+%"]=6987, - ["local_display_nearby_enemy_fire_damage_resistance_%"]=6988, - ["local_display_nearby_enemy_life_reserved_by_stat_%"]=6989, - ["local_display_nearby_enemy_lightning_damage_resistance_%"]=6990, - ["local_display_nearby_enemy_no_chaos_damage_resistance"]=6991, - ["local_display_nearby_enemy_physical_damage_taken_+%"]=6992, - ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4055, - ["local_display_raise_spider_on_kill_%_chance"]=589, - ["local_display_self_crushed"]=6993, - ["local_display_socketed_attack_damage_+%_final"]=423, - ["local_display_socketed_attacks_additional_critical_strike_chance"]=424, - ["local_display_socketed_attacks_critical_strike_multiplier_+"]=425, - ["local_display_socketed_attacks_mana_cost_+"]=426, - ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=472, - ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=400, - ["local_display_socketed_gems_additional_critical_strike_chance_%"]=419, - ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=427, - ["local_display_socketed_gems_chain_X_additional_times"]=418, - ["local_display_socketed_gems_curse_auras_also_affect_you"]=428, - ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=429, - ["local_display_socketed_gems_damage_over_time_+%_final"]=461, - ["local_display_socketed_gems_elemental_damage_+%_final"]=430, - ["local_display_socketed_gems_exposure_on_hit"]=431, - ["local_display_socketed_gems_get_added_chaos_damage_level"]=353, - ["local_display_socketed_gems_get_added_fire_damage_level"]=356, - ["local_display_socketed_gems_get_added_lightning_damage_level"]=361, - ["local_display_socketed_gems_get_additional_accuracy_level"]=370, - ["local_display_socketed_gems_get_blind_level"]=364, - ["local_display_socketed_gems_get_blood_magic_level"]=354, - ["local_display_socketed_gems_get_cast_on_crit_level"]=366, - ["local_display_socketed_gems_get_cast_on_death_level"]=368, - ["local_display_socketed_gems_get_cast_when_stunned_level"]=367, - ["local_display_socketed_gems_get_chance_to_bleed_level"]=374, - ["local_display_socketed_gems_get_cold_to_fire_level"]=357, - ["local_display_socketed_gems_get_concentrated_area_level"]=348, - ["local_display_socketed_gems_get_curse_reflection"]=416, - ["local_display_socketed_gems_get_echo_level"]=378, - ["local_display_socketed_gems_get_elemental_proliferation_level"]=360, - ["local_display_socketed_gems_get_faster_attacks_level"]=363, - ["local_display_socketed_gems_get_faster_cast_level"]=384, - ["local_display_socketed_gems_get_faster_projectiles_level"]=372, - ["local_display_socketed_gems_get_fire_penetration_level"]=359, - ["local_display_socketed_gems_get_flee_level"]=383, - ["local_display_socketed_gems_get_fork_level"]=376, - ["local_display_socketed_gems_get_generosity_level"]=380, - ["local_display_socketed_gems_get_increased_area_level"]=200, - ["local_display_socketed_gems_get_increased_critical_damage_level"]=375, - ["local_display_socketed_gems_get_increased_duration_level"]=355, - ["local_display_socketed_gems_get_iron_will_level"]=385, - ["local_display_socketed_gems_get_item_quantity_+%"]=415, - ["local_display_socketed_gems_get_life_leech_level"]=373, - ["local_display_socketed_gems_get_mana_multplier_%"]=410, - ["local_display_socketed_gems_get_melee_physical_damage_level"]=362, - ["local_display_socketed_gems_get_melee_splash_level"]=365, - ["local_display_socketed_gems_get_multistrike_level"]=371, - ["local_display_socketed_gems_get_pierce_level"]=393, - ["local_display_socketed_gems_get_reduced_mana_cost_level"]=379, - ["local_display_socketed_gems_get_remote_mine_level"]=382, - ["local_display_socketed_gems_get_spell_totem_level"]=358, - ["local_display_socketed_gems_get_stun_level"]=369, - ["local_display_socketed_gems_get_trap_level"]=349, - ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=377, - ["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=413, - ["local_display_socketed_gems_have_blood_magic"]=407, - ["local_display_socketed_gems_have_chance_to_flee_%"]=414, - ["local_display_socketed_gems_have_elemental_equilibrium"]=462, - ["local_display_socketed_gems_have_iron_will"]=417, - ["local_display_socketed_gems_have_mana_reservation_+%"]=408, - ["local_display_socketed_gems_have_number_of_additional_projectiles"]=465, - ["local_display_socketed_gems_have_secrets_of_suffering"]=464, - ["local_display_socketed_gems_mana_cost_-%"]=432, - ["local_display_socketed_gems_maximum_added_fire_damage"]=433, - ["local_display_socketed_gems_minimum_added_fire_damage"]=433, - ["local_display_socketed_gems_projectile_damage_+%_final"]=434, - ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=435, - ["local_display_socketed_gems_projectiles_nova"]=467, - ["local_display_socketed_gems_skill_effect_duration_+%"]=469, - ["local_display_socketed_gems_supported_by_X_lesser_poison"]=403, - ["local_display_socketed_gems_supported_by_X_vile_toxins"]=402, - ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=201, - ["local_display_socketed_gems_supported_by_level_x_archmage"]=202, - ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=203, - ["local_display_socketed_gems_supported_by_level_x_barrage"]=204, - ["local_display_socketed_gems_supported_by_level_x_behead"]=205, - ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=206, - ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=207, - ["local_display_socketed_gems_supported_by_level_x_brutality"]=208, - ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=209, - ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=210, - ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=211, - ["local_display_socketed_gems_supported_by_level_x_chain"]=212, - ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=213, - ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=214, - ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=303, - ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=215, - ["local_display_socketed_gems_supported_by_level_x_close_combat"]=216, - ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=350, - ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=217, - ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=218, - ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=219, - ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=220, - ["local_display_socketed_gems_supported_by_level_x_deathmark"]=221, - ["local_display_socketed_gems_supported_by_level_x_decay"]=222, - ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=223, - ["local_display_socketed_gems_supported_by_level_x_efficacy"]=224, - ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=225, - ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=226, - ["local_display_socketed_gems_supported_by_level_x_empower"]=227, - ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=406, - ["local_display_socketed_gems_supported_by_level_x_enhance"]=228, - ["local_display_socketed_gems_supported_by_level_x_enlighten"]=229, - ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=230, - ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=231, - ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=232, - ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=233, - ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=234, - ["local_display_socketed_gems_supported_by_level_x_fortify"]=381, - ["local_display_socketed_gems_supported_by_level_x_fragility"]=235, - ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=236, - ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=237, - ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=238, - ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=239, - ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=240, - ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=241, - ["local_display_socketed_gems_supported_by_level_x_immolate"]=242, - ["local_display_socketed_gems_supported_by_level_x_impale"]=243, - ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=244, - ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=245, - ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=246, - ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=247, - ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=248, - ["local_display_socketed_gems_supported_by_level_x_intensify"]=249, - ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=250, - ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=251, - ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=252, - ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=253, - ["local_display_socketed_gems_supported_by_level_x_lifetap"]=254, - ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=255, - ["local_display_socketed_gems_supported_by_level_x_maim"]=256, - ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=257, - ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=258, - ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=259, - ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=260, - ["local_display_socketed_gems_supported_by_level_x_minefield"]=261, - ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=262, - ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=263, - ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=351, - ["local_display_socketed_gems_supported_by_level_x_multicast"]=264, - ["local_display_socketed_gems_supported_by_level_x_nightblade"]=265, - ["local_display_socketed_gems_supported_by_level_x_onslaught"]=266, - ["local_display_socketed_gems_supported_by_level_x_overcharge"]=267, - ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=268, - ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=269, - ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=270, - ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=271, - ["local_display_socketed_gems_supported_by_level_x_point_blank"]=272, - ["local_display_socketed_gems_supported_by_level_x_poison"]=273, - ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=274, - ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=275, - ["local_display_socketed_gems_supported_by_level_x_pulverise"]=276, - ["local_display_socketed_gems_supported_by_level_x_rage"]=277, - ["local_display_socketed_gems_supported_by_level_x_rain"]=278, - ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=279, - ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=280, - ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=281, - ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=282, - ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=283, - ["local_display_socketed_gems_supported_by_level_x_ruthless"]=284, - ["local_display_socketed_gems_supported_by_level_x_second_wind"]=285, - ["local_display_socketed_gems_supported_by_level_x_shockwave"]=286, - ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=287, - ["local_display_socketed_gems_supported_by_level_x_snipe"]=288, - ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=289, - ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=290, - ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=291, - ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=292, - ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=293, - ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=294, - ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=295, - ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=296, - ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=352, - ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=297, - ["local_display_socketed_gems_supported_by_level_x_trinity"]=298, - ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=299, - ["local_display_socketed_gems_supported_by_level_x_unleash"]=300, - ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=301, - ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=302, - ["local_display_socketed_gems_supported_by_pierce_level"]=392, - ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=398, - ["local_display_socketed_gems_supported_by_x_cold_penetration"]=396, - ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=405, - ["local_display_socketed_gems_supported_by_x_hypothermia"]=394, - ["local_display_socketed_gems_supported_by_x_ice_bite"]=395, - ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=390, - ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=389, - ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=387, - ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=391, - ["local_display_socketed_gems_supported_by_x_innervate_level"]=401, - ["local_display_socketed_gems_supported_by_x_knockback_level"]=386, - ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=388, - ["local_display_socketed_gems_supported_by_x_mana_leech"]=397, - ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=399, - ["local_display_socketed_golem_attack_and_cast_speed_+%"]=174, - ["local_display_socketed_golem_buff_effect_+%"]=175, - ["local_display_socketed_golem_chance_to_taunt_%"]=176, - ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=177, - ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=178, - ["local_display_socketed_melee_gems_have_area_radius_+%"]=411, - ["local_display_socketed_movement_skills_have_no_mana_cost"]=436, - ["local_display_socketed_non_curse_aura_gems_effect_+%"]=463, - ["local_display_socketed_projectile_spells_duration_+%_final"]=470, - ["local_display_socketed_skills_attack_speed_+%"]=437, - ["local_display_socketed_skills_cast_speed_+%"]=438, - ["local_display_socketed_skills_deal_double_damage"]=439, - ["local_display_socketed_skills_fork"]=440, - ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=412, - ["local_display_socketed_spell_damage_+%_final"]=441, - ["local_display_socketed_spells_additional_critical_strike_chance"]=442, - ["local_display_socketed_spells_additional_projectiles"]=466, - ["local_display_socketed_spells_critical_strike_multiplier_+"]=443, - ["local_display_socketed_spells_mana_cost_+%"]=444, - ["local_display_socketed_spells_projectiles_circle"]=468, - ["local_display_socketed_spells_repeat_count"]=420, - ["local_display_socketed_trap_skills_create_smoke_cloud"]=471, - ["local_display_socketed_travel_skills_damage_+%_final"]=445, - ["local_display_socketed_triggered_skills_deal_double_damage"]=304, - ["local_display_socketed_vaal_skills_area_of_effect_+%"]=446, - ["local_display_socketed_vaal_skills_aura_effect_+%"]=447, - ["local_display_socketed_vaal_skills_damage_+%_final"]=448, - ["local_display_socketed_vaal_skills_effect_duration_+%"]=449, - ["local_display_socketed_vaal_skills_elusive_on_use"]=450, - ["local_display_socketed_vaal_skills_extra_damage_rolls"]=451, - ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=452, - ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=453, - ["local_display_socketed_vaal_skills_projectile_speed_+%"]=454, - ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=455, - ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=456, - ["local_display_socketed_vaal_skills_store_uses_+"]=457, - ["local_display_socketed_warcry_skills_cooldown_use_+"]=458, - ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=459, - ["local_display_summon_harbinger_x_on_equip"]=487, - ["local_display_summon_raging_spirit_on_kill_%"]=590, - ["local_display_summon_wolf_on_kill_%"]=591, - ["local_display_supported_by_level_10_controlled_destruction"]=305, - ["local_display_supported_by_level_10_intensify"]=306, - ["local_display_supported_by_level_10_spell_echo"]=307, - ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=308, - ["local_display_supported_by_level_x_awakened_added_cold_damage"]=309, - ["local_display_supported_by_level_x_awakened_added_fire_damage"]=310, - ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=311, - ["local_display_supported_by_level_x_awakened_ancestral_call"]=312, - ["local_display_supported_by_level_x_awakened_arrow_nova"]=313, - ["local_display_supported_by_level_x_awakened_blasphemy"]=314, - ["local_display_supported_by_level_x_awakened_brutality"]=315, - ["local_display_supported_by_level_x_awakened_burning_damage"]=316, - ["local_display_supported_by_level_x_awakened_cast_on_crit"]=317, - ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=318, - ["local_display_supported_by_level_x_awakened_chain"]=319, - ["local_display_supported_by_level_x_awakened_cold_penetration"]=320, - ["local_display_supported_by_level_x_awakened_controlled_destruction"]=321, - ["local_display_supported_by_level_x_awakened_curse_on_hit"]=322, - ["local_display_supported_by_level_x_awakened_deadly_ailments"]=323, - ["local_display_supported_by_level_x_awakened_elemental_focus"]=324, - ["local_display_supported_by_level_x_awakened_empower"]=325, - ["local_display_supported_by_level_x_awakened_enhance"]=326, - ["local_display_supported_by_level_x_awakened_enlighten"]=327, - ["local_display_supported_by_level_x_awakened_fire_penetration"]=328, - ["local_display_supported_by_level_x_awakened_fork"]=329, - ["local_display_supported_by_level_x_awakened_generosity"]=330, - ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=331, - ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=332, - ["local_display_supported_by_level_x_awakened_lightning_penetration"]=333, - ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=334, - ["local_display_supported_by_level_x_awakened_melee_splash"]=335, - ["local_display_supported_by_level_x_awakened_minion_damage"]=336, - ["local_display_supported_by_level_x_awakened_multistrike"]=337, - ["local_display_supported_by_level_x_awakened_spell_cascade"]=338, - ["local_display_supported_by_level_x_awakened_spell_echo"]=339, - ["local_display_supported_by_level_x_awakened_swift_affliction"]=340, - ["local_display_supported_by_level_x_awakened_unbound_ailments"]=341, - ["local_display_supported_by_level_x_awakened_unleash"]=342, - ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=343, - ["local_display_supported_by_level_x_awakened_void_manipulation"]=344, - ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=345, - ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=460, - ["local_display_trigger_commandment_of_inferno_on_crit_%"]=592, - ["local_display_trigger_corpse_walk_on_equip_level"]=593, - ["local_display_trigger_death_walk_on_equip_level"]=595, - ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=596, - ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=597, - ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=598, - ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=599, - ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=600, - ["local_display_trigger_level_20_shade_form_when_hit_%"]=601, - ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=557, - ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=602, - ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=603, - ["local_display_trigger_level_X_atziri_flameblast"]=604, - ["local_display_trigger_level_X_atziri_storm_call"]=605, - ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=519, - ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=558, - ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=606, - ["local_display_trigger_level_X_offering_every_5_seconds"]=607, - ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=608, - ["local_display_trigger_level_X_shield_shatter_on_block"]=609, - ["local_display_trigger_level_X_void_gaze_on_skill_use"]=559, - ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=610, - ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=594, - ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=611, - ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=612, - ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=613, - ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=614, - ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=615, - ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=616, - ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=560, - ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=617, - ["local_display_trigger_level_x_reflection_skill_on_equip"]=618, - ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=619, - ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=620, - ["local_display_trigger_level_x_stalking_pustule_on_kill"]=621, - ["local_display_trigger_level_x_storm_cascade_on_attack"]=561, - ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=622, - ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=637, - ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=623, - ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=625, - ["local_display_trigger_summon_infernal_familiar_when_allocated"]=6994, - ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=624, - ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=626, - ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=627, - ["local_display_trigger_void_sphere_on_kill_%_chance"]=628, - ["local_display_triggers_level_x_corpse_cloud_on_footstep"]=6995, - ["local_display_triggers_level_x_detonation_on_off_hand_hit"]=6996, - ["local_display_triggers_level_x_ember_fusillade_on_spell_cast"]=6997, - ["local_display_triggers_level_x_gas_cloud_on_main_hand_hit"]=6998, - ["local_display_triggers_level_x_lightning_bolt_on_critical_strike"]=6999, - ["local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin"]=7000, - ["local_display_use_level_X_abyssal_cry_on_hit"]=629, - ["local_double_damage_to_chilled_enemies"]=3396, - ["local_double_damage_with_attacks"]=7001, - ["local_double_damage_with_attacks_chance_%"]=7002, - ["local_double_hit_damage_stun_build_up"]=7003, - ["local_elemental_damage_+%_per_2%_quality"]=7004, - ["local_elemental_penetration_%"]=3397, - ["local_energy_shield"]=860, - ["local_energy_shield_+%"]=863, - ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7005, - ["local_evasion_and_energy_shield_+%"]=866, - ["local_evasion_rating_+%"]=862, - ["local_evasion_rating_and_energy_shield"]=7006, - ["local_explicit_elemental_damage_mod_effect_+%"]=67, - ["local_explicit_minion_mod_effect_+%"]=68, - ["local_explicit_mod_effect_+%"]=71, - ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=69, - ["local_explode_on_kill_with_crit_%_physical_damage_to_deal"]=7007, + ["local_charm_duration_+%"]=924, + ["local_charm_effect_+%"]=7091, + ["local_charm_slots"]=4618, + ["local_charm_trigger_when_cursed"]=698, + ["local_chill_on_hit_ms_if_in_off_hand"]=7092, + ["local_cold_penetration_%"]=3345, + ["local_cold_resistance_%_per_2%_quality"]=7093, + ["local_concoction_can_consume_sulphur_flasks"]=7094, + ["local_connectivity_of_sockets_+%"]=1612, + ["local_consecrate_ground_on_flask_use_radius"]=658, + ["local_critical_strike_chance"]=938, + ["local_critical_strike_chance_+%"]=1316, + ["local_critical_strike_chance_+%_if_item_corrupted"]=7095, + ["local_critical_strike_chance_+%_per_4%_quality"]=7096, + ["local_critical_strike_multiplier_+"]=939, + ["local_crits_have_culling_strike"]=7097, + ["local_crush_on_hit"]=7098, + ["local_cull_frozen_enemies_on_hit"]=7099, + ["local_culling_strike"]=7100, + ["local_culling_strike_if_crit_recently"]=7101, + ["local_culling_strike_vs_bleeding_enemies"]=7102, + ["local_damage_+%_if_item_corrupted"]=7103, + ["local_damage_roll_always_min_or_max"]=7104, + ["local_damage_taken_+%_if_item_corrupted"]=7105, + ["local_destroy_corpses_with_critical_strikes"]=7106, + ["local_dexterity_per_2%_quality"]=7107, + ["local_dexterity_requirement_+"]=832, + ["local_dexterity_requirement_+%"]=833, + ["local_disable_gem_experience_gain"]=1609, + ["local_disable_rare_mod_on_hit_%_chance"]=7108, + ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=566, + ["local_display_aura_allies_have_culling_strike"]=2220, + ["local_display_aura_allies_have_increased_item_rarity_+%"]=1412, + ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2369, + ["local_display_aura_curse_effect_on_self_+%"]=2378, + ["local_display_aura_damage_+%"]=2377, + ["local_display_aura_damage_+%_allies_only"]=2567, + ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=413, + ["local_display_cast_animate_weapon_on_kill_%_chance"]=567, + ["local_display_cast_cold_aegis_on_gain_skill"]=568, + ["local_display_cast_elemental_aegis_on_gain_skill"]=569, + ["local_display_cast_fire_aegis_on_gain_skill"]=570, + ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=506, + ["local_display_cast_level_X_consecrate_on_crit"]=507, + ["local_display_cast_level_x_manifest_dancing_dervish"]=2952, + ["local_display_cast_level_x_shock_ground_when_hit"]=508, + ["local_display_cast_lightning_aegis_on_gain_skill"]=571, + ["local_display_cast_lightning_on_critical_strike"]=572, + ["local_display_cast_physical_aegis_on_gain_skill"]=573, + ["local_display_cast_primal_aegis_on_gain_skill"]=574, + ["local_display_cast_summon_arbalists_on_gain_skill"]=575, + ["local_display_cast_triggerbots_on_gain_skill"]=576, + ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7109, + ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7110, + ["local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds"]=7111, + ["local_display_fire_and_cold_resist_debuff"]=7112, + ["local_display_fire_burst_on_hit_%"]=577, + ["local_display_gain_fragile_growth_each_second"]=3970, + ["local_display_gain_power_charge_on_spending_mana"]=7113, + ["local_display_grant_level_x_petrification_statue"]=509, + ["local_display_grant_level_x_snipe_skill"]=75, + ["local_display_grants_level_X_envy"]=497, + ["local_display_grants_level_X_queens_demand_skill"]=553, + ["local_display_grants_level_X_reckoning"]=498, + ["local_display_grants_level_X_spell_aegis"]=76, + ["local_display_grants_level_X_vengeance"]=472, + ["local_display_grants_level_x_blood_offering_skill"]=511, + ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=512, + ["local_display_grants_level_x_curse_pillar_skill"]=513, + ["local_display_grants_level_x_despair"]=473, + ["local_display_grants_level_x_hidden_blade"]=578, + ["local_display_grants_level_x_summon_stone_golem"]=471, + ["local_display_grants_level_x_wintertide_brand"]=514, + ["local_display_grants_skill_abyssal_cry_level"]=515, + ["local_display_grants_skill_accuracy_crits_aura_level"]=516, + ["local_display_grants_skill_anger_level"]=492, + ["local_display_grants_skill_bear_trap_level"]=470, + ["local_display_grants_skill_bird_aspect_level"]=517, + ["local_display_grants_skill_blight_level"]=499, + ["local_display_grants_skill_blood_sacrament_level"]=485, + ["local_display_grants_skill_bone_armour"]=518, + ["local_display_grants_skill_brand_detonate_level"]=519, + ["local_display_grants_skill_call_of_steel"]=520, + ["local_display_grants_skill_cat_aspect_level"]=521, + ["local_display_grants_skill_clarity_level"]=484, + ["local_display_grants_skill_conductivity_level"]=479, + ["local_display_grants_skill_crab_aspect_level"]=522, + ["local_display_grants_skill_critical_weakness_level"]=489, + ["local_display_grants_skill_dash_level"]=523, + ["local_display_grants_skill_death_aura_level"]=504, + ["local_display_grants_skill_death_wish_level"]=524, + ["local_display_grants_skill_decoy_totem_level"]=525, + ["local_display_grants_skill_determination_level"]=493, + ["local_display_grants_skill_discipline_level"]=496, + ["local_display_grants_skill_doryanis_touch_level"]=502, + ["local_display_grants_skill_elemental_weakness_level"]=501, + ["local_display_grants_skill_embrace_madness_level"]=526, + ["local_display_grants_skill_enduring_cry_level"]=527, + ["local_display_grants_skill_flammability_level"]=477, + ["local_display_grants_skill_frostbite_level"]=480, + ["local_display_grants_skill_frostblink_level"]=467, + ["local_display_grants_skill_frostbolt_level"]=7114, + ["local_display_grants_skill_gluttony_of_elements_level"]=488, + ["local_display_grants_skill_grace_level"]=494, + ["local_display_grants_skill_haste_level"]=482, + ["local_display_grants_skill_hatred_level"]=491, + ["local_display_grants_skill_herald_of_agony_level"]=528, + ["local_display_grants_skill_herald_of_ash_level"]=529, + ["local_display_grants_skill_herald_of_ice_level"]=530, + ["local_display_grants_skill_herald_of_purity_level"]=531, + ["local_display_grants_skill_herald_of_thunder_level"]=532, + ["local_display_grants_skill_icestorm_level"]=505, + ["local_display_grants_skill_intimidating_cry_level"]=533, + ["local_display_grants_skill_lightning_warp_level"]=534, + ["local_display_grants_skill_malevolence_level"]=535, + ["local_display_grants_skill_mirage_chieftain"]=536, + ["local_display_grants_skill_pride_level"]=537, + ["local_display_grants_skill_projectile_weakness_level"]=500, + ["local_display_grants_skill_purity_level"]=487, + ["local_display_grants_skill_purity_of_cold_level"]=474, + ["local_display_grants_skill_purity_of_fire_level"]=468, + ["local_display_grants_skill_purity_of_lightning_level"]=476, + ["local_display_grants_skill_rallying_cry_level"]=538, + ["local_display_grants_skill_scorching_ray_level"]=495, + ["local_display_grants_skill_smite_level"]=539, + ["local_display_grants_skill_spider_aspect_level"]=540, + ["local_display_grants_skill_temporal_chains_level"]=481, + ["local_display_grants_skill_touch_of_fire_level"]=541, + ["local_display_grants_skill_unhinge_level"]=542, + ["local_display_grants_skill_vaal_impurity_of_fire_level"]=543, + ["local_display_grants_skill_vaal_impurity_of_ice_level"]=544, + ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=545, + ["local_display_grants_skill_vampiric_icon_level"]=546, + ["local_display_grants_skill_vitality_level"]=486, + ["local_display_grants_skill_vulnerability_level"]=503, + ["local_display_grants_skill_wrath_level"]=490, + ["local_display_grants_skill_zealotry_level"]=547, + ["local_display_grants_summon_beast_companion"]=475, + ["local_display_has_additional_implicit_mod"]=483, + ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3005, + ["local_display_illusory_warp_level"]=469, + ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1413, + ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7370, + ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=2954, + ["local_display_manifest_dancing_dervish_disables_weapons"]=2953, + ["local_display_minions_grant_onslaught"]=2955, + ["local_display_mod_aura_mana_regeration_rate_+%"]=7115, + ["local_display_molten_burst_on_melee_hit_%"]=579, + ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7116, + ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7117, + ["local_display_nearby_allies_critical_strike_multiplier_+"]=7118, + ["local_display_nearby_allies_extra_damage_rolls"]=7119, + ["local_display_nearby_allies_have_fortify"]=7120, + ["local_display_nearby_enemies_all_resistances_%"]=2637, + ["local_display_nearby_enemies_are_blinded"]=3001, + ["local_display_nearby_enemies_are_chilled"]=7121, + ["local_display_nearby_enemies_are_covered_in_ash"]=7122, + ["local_display_nearby_enemies_are_crushed"]=3002, + ["local_display_nearby_enemies_are_intimidated"]=7123, + ["local_display_nearby_enemies_cannot_crit"]=7124, + ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3006, + ["local_display_nearby_enemies_flask_charges_granted_+%"]=3007, + ["local_display_nearby_enemies_have_fire_exposure"]=7125, + ["local_display_nearby_enemies_have_malediction"]=3003, + ["local_display_nearby_enemies_movement_speed_+%"]=3008, + ["local_display_nearby_enemies_scorched"]=3004, + ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3009, + ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3771, + ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2794, + ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7126, + ["local_display_nearby_enemy_cold_damage_resistance_%"]=7127, + ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7128, + ["local_display_nearby_enemy_fire_damage_resistance_%"]=7129, + ["local_display_nearby_enemy_life_reserved_by_stat_%"]=7130, + ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7131, + ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7132, + ["local_display_nearby_enemy_physical_damage_taken_+%"]=7133, + ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=3993, + ["local_display_raise_spider_on_kill_%_chance"]=580, + ["local_display_self_crushed"]=7134, + ["local_display_socketed_attack_damage_+%_final"]=414, + ["local_display_socketed_attacks_additional_critical_strike_chance"]=415, + ["local_display_socketed_attacks_critical_strike_multiplier_+"]=416, + ["local_display_socketed_attacks_mana_cost_+"]=417, + ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=463, + ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=392, + ["local_display_socketed_gems_additional_critical_strike_chance_%"]=410, + ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=418, + ["local_display_socketed_gems_chain_X_additional_times"]=409, + ["local_display_socketed_gems_curse_auras_also_affect_you"]=419, + ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=420, + ["local_display_socketed_gems_damage_over_time_+%_final"]=452, + ["local_display_socketed_gems_elemental_damage_+%_final"]=421, + ["local_display_socketed_gems_exposure_on_hit"]=422, + ["local_display_socketed_gems_get_added_chaos_damage_level"]=345, + ["local_display_socketed_gems_get_added_fire_damage_level"]=348, + ["local_display_socketed_gems_get_added_lightning_damage_level"]=353, + ["local_display_socketed_gems_get_additional_accuracy_level"]=362, + ["local_display_socketed_gems_get_blind_level"]=356, + ["local_display_socketed_gems_get_blood_magic_level"]=346, + ["local_display_socketed_gems_get_cast_on_crit_level"]=358, + ["local_display_socketed_gems_get_cast_on_death_level"]=360, + ["local_display_socketed_gems_get_cast_when_stunned_level"]=359, + ["local_display_socketed_gems_get_chance_to_bleed_level"]=366, + ["local_display_socketed_gems_get_cold_to_fire_level"]=349, + ["local_display_socketed_gems_get_concentrated_area_level"]=340, + ["local_display_socketed_gems_get_curse_reflection"]=407, + ["local_display_socketed_gems_get_echo_level"]=370, + ["local_display_socketed_gems_get_elemental_proliferation_level"]=352, + ["local_display_socketed_gems_get_faster_attacks_level"]=355, + ["local_display_socketed_gems_get_faster_cast_level"]=376, + ["local_display_socketed_gems_get_faster_projectiles_level"]=364, + ["local_display_socketed_gems_get_fire_penetration_level"]=351, + ["local_display_socketed_gems_get_flee_level"]=375, + ["local_display_socketed_gems_get_fork_level"]=368, + ["local_display_socketed_gems_get_generosity_level"]=372, + ["local_display_socketed_gems_get_increased_area_level"]=192, + ["local_display_socketed_gems_get_increased_critical_damage_level"]=367, + ["local_display_socketed_gems_get_increased_duration_level"]=347, + ["local_display_socketed_gems_get_iron_will_level"]=377, + ["local_display_socketed_gems_get_item_quantity_+%"]=406, + ["local_display_socketed_gems_get_life_leech_level"]=365, + ["local_display_socketed_gems_get_mana_multplier_%"]=402, + ["local_display_socketed_gems_get_melee_physical_damage_level"]=354, + ["local_display_socketed_gems_get_melee_splash_level"]=357, + ["local_display_socketed_gems_get_multistrike_level"]=363, + ["local_display_socketed_gems_get_pierce_level"]=385, + ["local_display_socketed_gems_get_reduced_mana_cost_level"]=371, + ["local_display_socketed_gems_get_remote_mine_level"]=374, + ["local_display_socketed_gems_get_spell_totem_level"]=350, + ["local_display_socketed_gems_get_stun_level"]=361, + ["local_display_socketed_gems_get_trap_level"]=341, + ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=369, + ["local_display_socketed_gems_have_blood_magic"]=399, + ["local_display_socketed_gems_have_chance_to_flee_%"]=405, + ["local_display_socketed_gems_have_elemental_equilibrium"]=453, + ["local_display_socketed_gems_have_iron_will"]=408, + ["local_display_socketed_gems_have_mana_reservation_+%"]=400, + ["local_display_socketed_gems_have_number_of_additional_projectiles"]=456, + ["local_display_socketed_gems_have_secrets_of_suffering"]=455, + ["local_display_socketed_gems_mana_cost_-%"]=423, + ["local_display_socketed_gems_maximum_added_fire_damage"]=424, + ["local_display_socketed_gems_minimum_added_fire_damage"]=424, + ["local_display_socketed_gems_projectile_damage_+%_final"]=425, + ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=426, + ["local_display_socketed_gems_projectiles_nova"]=458, + ["local_display_socketed_gems_skill_effect_duration_+%"]=460, + ["local_display_socketed_gems_supported_by_X_lesser_poison"]=395, + ["local_display_socketed_gems_supported_by_X_vile_toxins"]=394, + ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=193, + ["local_display_socketed_gems_supported_by_level_x_archmage"]=194, + ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=195, + ["local_display_socketed_gems_supported_by_level_x_barrage"]=196, + ["local_display_socketed_gems_supported_by_level_x_behead"]=197, + ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=198, + ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=199, + ["local_display_socketed_gems_supported_by_level_x_brutality"]=200, + ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=201, + ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=202, + ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=203, + ["local_display_socketed_gems_supported_by_level_x_chain"]=204, + ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=205, + ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=206, + ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=295, + ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=207, + ["local_display_socketed_gems_supported_by_level_x_close_combat"]=208, + ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=342, + ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=209, + ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=210, + ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=211, + ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=212, + ["local_display_socketed_gems_supported_by_level_x_deathmark"]=213, + ["local_display_socketed_gems_supported_by_level_x_decay"]=214, + ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=215, + ["local_display_socketed_gems_supported_by_level_x_efficacy"]=216, + ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=217, + ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=218, + ["local_display_socketed_gems_supported_by_level_x_empower"]=219, + ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=398, + ["local_display_socketed_gems_supported_by_level_x_enhance"]=220, + ["local_display_socketed_gems_supported_by_level_x_enlighten"]=221, + ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=222, + ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=223, + ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=224, + ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=225, + ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=226, + ["local_display_socketed_gems_supported_by_level_x_fortify"]=373, + ["local_display_socketed_gems_supported_by_level_x_fragility"]=227, + ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=228, + ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=229, + ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=230, + ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=231, + ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=232, + ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=233, + ["local_display_socketed_gems_supported_by_level_x_immolate"]=234, + ["local_display_socketed_gems_supported_by_level_x_impale"]=235, + ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=236, + ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=237, + ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=238, + ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=239, + ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=240, + ["local_display_socketed_gems_supported_by_level_x_intensify"]=241, + ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=242, + ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=243, + ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=244, + ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=245, + ["local_display_socketed_gems_supported_by_level_x_lifetap"]=246, + ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=247, + ["local_display_socketed_gems_supported_by_level_x_maim"]=248, + ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=249, + ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=250, + ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=251, + ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=252, + ["local_display_socketed_gems_supported_by_level_x_minefield"]=253, + ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=254, + ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=255, + ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=343, + ["local_display_socketed_gems_supported_by_level_x_multicast"]=256, + ["local_display_socketed_gems_supported_by_level_x_nightblade"]=257, + ["local_display_socketed_gems_supported_by_level_x_onslaught"]=258, + ["local_display_socketed_gems_supported_by_level_x_overcharge"]=259, + ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=260, + ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=261, + ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=262, + ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=263, + ["local_display_socketed_gems_supported_by_level_x_point_blank"]=264, + ["local_display_socketed_gems_supported_by_level_x_poison"]=265, + ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=266, + ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=267, + ["local_display_socketed_gems_supported_by_level_x_pulverise"]=268, + ["local_display_socketed_gems_supported_by_level_x_rage"]=269, + ["local_display_socketed_gems_supported_by_level_x_rain"]=270, + ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=271, + ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=272, + ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=273, + ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=274, + ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=275, + ["local_display_socketed_gems_supported_by_level_x_ruthless"]=276, + ["local_display_socketed_gems_supported_by_level_x_second_wind"]=277, + ["local_display_socketed_gems_supported_by_level_x_shockwave"]=278, + ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=279, + ["local_display_socketed_gems_supported_by_level_x_snipe"]=280, + ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=281, + ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=282, + ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=283, + ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=284, + ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=285, + ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=286, + ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=287, + ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=288, + ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=344, + ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=289, + ["local_display_socketed_gems_supported_by_level_x_trinity"]=290, + ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=291, + ["local_display_socketed_gems_supported_by_level_x_unleash"]=292, + ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=293, + ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=294, + ["local_display_socketed_gems_supported_by_pierce_level"]=384, + ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=390, + ["local_display_socketed_gems_supported_by_x_cold_penetration"]=388, + ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=397, + ["local_display_socketed_gems_supported_by_x_hypothermia"]=386, + ["local_display_socketed_gems_supported_by_x_ice_bite"]=387, + ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=382, + ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=381, + ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=379, + ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=383, + ["local_display_socketed_gems_supported_by_x_innervate_level"]=393, + ["local_display_socketed_gems_supported_by_x_knockback_level"]=378, + ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=380, + ["local_display_socketed_gems_supported_by_x_mana_leech"]=389, + ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=391, + ["local_display_socketed_golem_attack_and_cast_speed_+%"]=166, + ["local_display_socketed_golem_buff_effect_+%"]=167, + ["local_display_socketed_golem_chance_to_taunt_%"]=168, + ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=169, + ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=170, + ["local_display_socketed_melee_gems_have_area_radius_+%"]=403, + ["local_display_socketed_movement_skills_have_no_mana_cost"]=427, + ["local_display_socketed_non_curse_aura_gems_effect_+%"]=454, + ["local_display_socketed_projectile_spells_duration_+%_final"]=461, + ["local_display_socketed_skills_attack_speed_+%"]=428, + ["local_display_socketed_skills_cast_speed_+%"]=429, + ["local_display_socketed_skills_deal_double_damage"]=430, + ["local_display_socketed_skills_fork"]=431, + ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=404, + ["local_display_socketed_spell_damage_+%_final"]=432, + ["local_display_socketed_spells_additional_critical_strike_chance"]=433, + ["local_display_socketed_spells_additional_projectiles"]=457, + ["local_display_socketed_spells_critical_strike_multiplier_+"]=434, + ["local_display_socketed_spells_mana_cost_+%"]=435, + ["local_display_socketed_spells_projectiles_circle"]=459, + ["local_display_socketed_spells_repeat_count"]=411, + ["local_display_socketed_trap_skills_create_smoke_cloud"]=462, + ["local_display_socketed_travel_skills_damage_+%_final"]=436, + ["local_display_socketed_triggered_skills_deal_double_damage"]=296, + ["local_display_socketed_vaal_skills_area_of_effect_+%"]=437, + ["local_display_socketed_vaal_skills_aura_effect_+%"]=438, + ["local_display_socketed_vaal_skills_damage_+%_final"]=439, + ["local_display_socketed_vaal_skills_effect_duration_+%"]=440, + ["local_display_socketed_vaal_skills_elusive_on_use"]=441, + ["local_display_socketed_vaal_skills_extra_damage_rolls"]=442, + ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=443, + ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=444, + ["local_display_socketed_vaal_skills_projectile_speed_+%"]=445, + ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=446, + ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=447, + ["local_display_socketed_vaal_skills_store_uses_+"]=448, + ["local_display_socketed_warcry_skills_cooldown_use_+"]=449, + ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=450, + ["local_display_summon_harbinger_x_on_equip"]=478, + ["local_display_summon_raging_spirit_on_kill_%"]=581, + ["local_display_summon_wolf_on_kill_%"]=582, + ["local_display_supported_by_level_10_controlled_destruction"]=297, + ["local_display_supported_by_level_10_intensify"]=298, + ["local_display_supported_by_level_10_spell_echo"]=299, + ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=300, + ["local_display_supported_by_level_x_awakened_added_cold_damage"]=301, + ["local_display_supported_by_level_x_awakened_added_fire_damage"]=302, + ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=303, + ["local_display_supported_by_level_x_awakened_ancestral_call"]=304, + ["local_display_supported_by_level_x_awakened_arrow_nova"]=305, + ["local_display_supported_by_level_x_awakened_blasphemy"]=306, + ["local_display_supported_by_level_x_awakened_brutality"]=307, + ["local_display_supported_by_level_x_awakened_burning_damage"]=308, + ["local_display_supported_by_level_x_awakened_cast_on_crit"]=309, + ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=310, + ["local_display_supported_by_level_x_awakened_chain"]=311, + ["local_display_supported_by_level_x_awakened_cold_penetration"]=312, + ["local_display_supported_by_level_x_awakened_controlled_destruction"]=313, + ["local_display_supported_by_level_x_awakened_curse_on_hit"]=314, + ["local_display_supported_by_level_x_awakened_deadly_ailments"]=315, + ["local_display_supported_by_level_x_awakened_elemental_focus"]=316, + ["local_display_supported_by_level_x_awakened_empower"]=317, + ["local_display_supported_by_level_x_awakened_enhance"]=318, + ["local_display_supported_by_level_x_awakened_enlighten"]=319, + ["local_display_supported_by_level_x_awakened_fire_penetration"]=320, + ["local_display_supported_by_level_x_awakened_fork"]=321, + ["local_display_supported_by_level_x_awakened_generosity"]=322, + ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=323, + ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=324, + ["local_display_supported_by_level_x_awakened_lightning_penetration"]=325, + ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=326, + ["local_display_supported_by_level_x_awakened_melee_splash"]=327, + ["local_display_supported_by_level_x_awakened_minion_damage"]=328, + ["local_display_supported_by_level_x_awakened_multistrike"]=329, + ["local_display_supported_by_level_x_awakened_spell_cascade"]=330, + ["local_display_supported_by_level_x_awakened_spell_echo"]=331, + ["local_display_supported_by_level_x_awakened_swift_affliction"]=332, + ["local_display_supported_by_level_x_awakened_unbound_ailments"]=333, + ["local_display_supported_by_level_x_awakened_unleash"]=334, + ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=335, + ["local_display_supported_by_level_x_awakened_void_manipulation"]=336, + ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=337, + ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=451, + ["local_display_trigger_commandment_of_inferno_on_crit_%"]=583, + ["local_display_trigger_corpse_walk_on_equip_level"]=584, + ["local_display_trigger_death_walk_on_equip_level"]=586, + ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=587, + ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=588, + ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=589, + ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=590, + ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=591, + ["local_display_trigger_level_20_shade_form_when_hit_%"]=592, + ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=548, + ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=593, + ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=594, + ["local_display_trigger_level_X_atziri_flameblast"]=595, + ["local_display_trigger_level_X_atziri_storm_call"]=596, + ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=510, + ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=549, + ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=597, + ["local_display_trigger_level_X_offering_every_5_seconds"]=598, + ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=599, + ["local_display_trigger_level_X_shield_shatter_on_block"]=600, + ["local_display_trigger_level_X_void_gaze_on_skill_use"]=550, + ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=601, + ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=585, + ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=602, + ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=603, + ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=604, + ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=605, + ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=606, + ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=607, + ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=551, + ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=608, + ["local_display_trigger_level_x_reflection_skill_on_equip"]=609, + ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=610, + ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=611, + ["local_display_trigger_level_x_stalking_pustule_on_kill"]=612, + ["local_display_trigger_level_x_storm_cascade_on_attack"]=552, + ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=613, + ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=628, + ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=614, + ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=616, + ["local_display_trigger_summon_infernal_familiar_when_allocated"]=7135, + ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=615, + ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=617, + ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=618, + ["local_display_trigger_void_sphere_on_kill_%_chance"]=619, + ["local_display_triggers_level_x_corpse_cloud_on_footstep"]=7136, + ["local_display_triggers_level_x_detonation_on_off_hand_hit"]=7137, + ["local_display_triggers_level_x_ember_fusillade_on_spell_cast"]=7138, + ["local_display_triggers_level_x_gas_cloud_on_main_hand_hit"]=7139, + ["local_display_triggers_level_x_lightning_bolt_on_critical_strike"]=7140, + ["local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin"]=7141, + ["local_display_use_level_X_abyssal_cry_on_hit"]=620, + ["local_double_damage_to_chilled_enemies"]=3342, + ["local_double_damage_with_attacks"]=7142, + ["local_double_damage_with_attacks_chance_%"]=7143, + ["local_double_hit_damage_stun_build_up"]=7144, + ["local_edict_declaration_gain_per_mod_disabled"]=7145, + ["local_elemental_damage_+%_per_2%_quality"]=7146, + ["local_elemental_penetration_%"]=3343, + ["local_energy_shield"]=855, + ["local_energy_shield_+%"]=858, + ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7147, + ["local_evasion_and_energy_shield_+%"]=861, + ["local_evasion_rating_+%"]=857, + ["local_evasion_rating_and_energy_shield"]=7148, + ["local_explicit_elemental_damage_mod_effect_+%"]=69, + ["local_explicit_minion_mod_effect_+%"]=70, + ["local_explicit_mod_effect_+%"]=73, + ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=71, + ["local_explode_on_kill_with_crit_%_physical_damage_to_deal"]=7149, ["local_extra_max_charges"]=1027, - ["local_extra_socket"]=1628, - ["local_fire_penetration_%"]=3398, - ["local_fire_resistance_%_per_2%_quality"]=7008, - ["local_flask_accuracy_rating_+%_during_effect"]=734, - ["local_flask_adapt_each_element"]=699, - ["local_flask_adaptation_rating_+%_during_effect"]=732, - ["local_flask_adaptations_apply_to_all_elements_during_effect"]=733, - ["local_flask_additional_physical_damage_reduction_%"]=755, - ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=683, - ["local_flask_adds_knockback_during_flask_effect"]=756, - ["local_flask_adds_knockback_while_healing"]=743, - ["local_flask_amount_to_recover_+%"]=929, - ["local_flask_amount_to_recover_+%_when_on_low_life"]=930, - ["local_flask_amount_to_recover_+%_when_on_low_mana"]=928, - ["local_flask_area_of_consecrated_ground_+%"]=665, - ["local_flask_area_of_effect_+%_during_flask_effect"]=757, - ["local_flask_armour_+%_while_healing"]=727, - ["local_flask_attack_speed_+%_while_healing"]=735, - ["local_flask_avoid_stun_chance_%_during_flask_effect"]=758, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=684, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=685, - ["local_flask_cannot_be_stunned_during_flask_effect"]=759, - ["local_flask_cannot_gain_charges_during_flask_effect"]=826, - ["local_flask_cast_speed_+%_while_healing"]=736, - ["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=760, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=686, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=687, - ["local_flask_chilled_ground_on_flask_use_radius"]=664, + ["local_extra_socket"]=1607, + ["local_fire_penetration_%"]=3344, + ["local_fire_resistance_%_per_2%_quality"]=7150, + ["local_flask_accuracy_rating_+%_during_effect"]=729, + ["local_flask_adapt_each_element"]=694, + ["local_flask_adaptations_apply_to_all_elements_during_effect"]=728, + ["local_flask_additional_physical_damage_reduction_%"]=750, + ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=678, + ["local_flask_adds_knockback_during_flask_effect"]=751, + ["local_flask_adds_knockback_while_healing"]=738, + ["local_flask_always_drinking"]=630, + ["local_flask_amount_to_recover_+%"]=926, + ["local_flask_amount_to_recover_+%_when_on_low_life"]=927, + ["local_flask_amount_to_recover_+%_when_on_low_mana"]=925, + ["local_flask_area_of_consecrated_ground_+%"]=660, + ["local_flask_area_of_effect_+%_during_flask_effect"]=752, + ["local_flask_armour_+%_while_healing"]=723, + ["local_flask_attack_speed_+%_while_healing"]=730, + ["local_flask_avoid_stun_chance_%_during_flask_effect"]=753, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=679, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=680, + ["local_flask_cannot_be_stunned_during_flask_effect"]=754, + ["local_flask_cannot_gain_charges_during_flask_effect"]=822, + ["local_flask_cast_speed_+%_while_healing"]=731, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=681, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=682, + ["local_flask_chilled_ground_on_flask_use_radius"]=659, ["local_flask_consume_charges_used_+%_when_used"]=1026, ["local_flask_consume_extra_max_charges_when_used"]=1027, - ["local_flask_consume_flask_duration_+%_when_used"]=931, - ["local_flask_consume_flask_effect_+%_when_used"]=726, - ["local_flask_consumes_max_charges_on_use"]=666, - ["local_flask_consumes_x_endurance_charges_on_use"]=667, - ["local_flask_consumes_x_frenzy_charges_on_use"]=668, - ["local_flask_consumes_x_power_charges_on_use"]=669, - ["local_flask_critical_strike_chance_+%_during_flask_effect"]=762, - ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=761, - ["local_flask_culling_strike_during_flask_effect"]=763, - ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=660, - ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=652, - ["local_flask_deciseconds_to_recover"]=649, - ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=700, - ["local_flask_dispels_freeze_and_chill"]=698, - ["local_flask_duration_+%"]=931, - ["local_flask_duration_+%_final"]=650, - ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=764, - ["local_flask_effect_+%"]=726, - ["local_flask_effect_ends_when_hit_by_player"]=653, - ["local_flask_effect_not_removed_at_full_mana"]=654, - ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=817, - ["local_flask_energy_shield_+%_while_healing"]=729, - ["local_flask_evasion_+%_while_healing"]=728, - ["local_flask_gain_X_charges_every_minute"]=7009, - ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=639, - ["local_flask_gain_X_charges_when_hit"]=640, - ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=670, - ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=765, - ["local_flask_gain_endurance_charges_on_use"]=671, - ["local_flask_gain_frenzy_charges_on_use"]=672, - ["local_flask_gain_power_charges_on_use"]=673, - ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"]=674, - ["local_flask_gain_x_vaal_souls_on_use"]=675, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=696, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=697, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=688, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=689, - ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=766, - ["local_flask_immune_to_damage"]=767, - ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=768, - ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=690, - ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=691, - ["local_flask_immune_to_poison_during_flask_effect"]=769, - ["local_flask_immune_to_shock_during_flask_effect"]=770, - ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=676, - ["local_flask_is_petrified"]=771, - ["local_flask_item_found_rarity_+%_during_flask_effect"]=772, - ["local_flask_life_gain_on_skill_use_%_mana_cost"]=749, - ["local_flask_life_leech_from_physical_attack_damage_permyriad_while_healing"]=740, - ["local_flask_life_leech_is_instant_during_flask_effect"]=773, - ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=647, - ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=774, - ["local_flask_life_to_recover"]=646, - ["local_flask_life_to_recover_+%"]=932, - ["local_flask_lose_all_charges_on_entering_new_area"]=645, - ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=677, - ["local_flask_mana_leech_from_physical_attack_damage_permyriad_while_healing"]=742, - ["local_flask_mana_to_recover"]=648, - ["local_flask_mana_to_recover_+%"]=933, - ["local_flask_minion_heal_%"]=934, - ["local_flask_movement_speed_+%_while_healing"]=737, - ["local_flask_no_mana_recovery_during_effect"]=775, - ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=776, - ["local_flask_number_of_additional_projectiles_during_flask_effect"]=777, - ["local_flask_poison_immunity_if_poisoned"]=692, - ["local_flask_poison_immunity_if_poisoned_s"]=693, - ["local_flask_prevents_death_while_healing"]=823, - ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=820, - ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=818, - ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=819, - ["local_flask_recover_instantly_when_on_low_life"]=651, - ["local_flask_recover_instantly_when_on_low_mana"]=7010, - ["local_flask_recovers_instantly"]=935, - ["local_flask_recovery_amount_%_to_recover_instantly"]=936, - ["local_flask_recovery_occurs_instantly_at_end_of_flask_effect"]=655, - ["local_flask_recovery_speed_+%"]=937, - ["local_flask_reflect_damage_taken_+%_during_flask_effect"]=778, - ["local_flask_remove_curses_on_use"]=682, - ["local_flask_remove_effect_when_ward_breaks"]=656, - ["local_flask_removes_%_maximum_energy_shield_on_use"]=659, - ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=658, - ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=938, - ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=939, - ["local_flask_resistances_+%_while_healing"]=739, - ["local_flask_restore_ward"]=701, - ["local_flask_shock_immunity_if_shocked"]=694, - ["local_flask_shock_immunity_if_shocked_s"]=695, - ["local_flask_skill_mana_cost_+%_during_flask_effect"]=779, - ["local_flask_stun_recovery_+%_while_healing"]=738, - ["local_flask_taunt_enemies_on_use_radius"]=678, - ["local_flask_use_causes_area_knockback"]=679, - ["local_flask_use_causes_monster_flee_chance_%"]=680, - ["local_flask_use_on_adjacent_flask_use"]=703, - ["local_flask_use_on_affected_by_bleed"]=704, - ["local_flask_use_on_affected_by_chill"]=705, - ["local_flask_use_on_affected_by_freeze"]=706, - ["local_flask_use_on_affected_by_ignite"]=707, - ["local_flask_use_on_affected_by_poison"]=708, - ["local_flask_use_on_affected_by_shock"]=709, - ["local_flask_use_on_affected_by_slow"]=710, - ["local_flask_use_on_chaos_damage_taken"]=711, - ["local_flask_use_on_cold_damage_taken"]=712, - ["local_flask_use_on_damage_blocked"]=713, - ["local_flask_use_on_fire_damage_taken"]=714, - ["local_flask_use_on_flask_effect_ended"]=715, - ["local_flask_use_on_full_charges"]=716, - ["local_flask_use_on_guard_skill_expired"]=717, - ["local_flask_use_on_guard_skill_used"]=718, - ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=719, - ["local_flask_use_on_killing_rare_or_unique_enemy"]=720, - ["local_flask_use_on_lightning_damage_taken"]=721, - ["local_flask_use_on_stunned"]=722, - ["local_flask_use_on_taking_savage_hit"]=723, - ["local_flask_use_on_travel_skill_used"]=724, - ["local_flask_use_on_using_a_life_flask"]=725, - ["local_flask_vaal_souls_gained_per_minute_during_effect"]=780, - ["local_flask_ward_+%_during_effect"]=730, - ["local_flask_ward_does_not_break_during_effect"]=731, - ["local_flask_zealots_oath"]=829, - ["local_force_corruption_outcome_two_enchants"]=7011, - ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7012, - ["local_gain_X_rage_on_hit"]=7013, - ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7014, - ["local_gem_experience_gain_+%"]=1631, - ["local_gem_level_+"]=139, - ["local_global_defences_+%_per_rune_or_soul_core"]=7015, - ["local_grant_eldritch_battery_during_flask_effect"]=830, - ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4044, - ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2692, - ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2690, - ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2689, - ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2691, - ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2692, - ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2690, - ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2689, - ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2691, - ["local_has_X_abyss_sockets"]=79, - ["local_has_X_sockets"]=80, - ["local_has_X_white_sockets"]=88, - ["local_has_no_sockets"]=78, - ["local_hit_causes_monster_flee_%"]=1745, - ["local_hit_damage_+%_vs_frozen_enemies"]=4002, - ["local_hit_damage_+%_vs_ignited_enemies"]=4001, - ["local_hit_damage_+%_vs_shocked_enemies"]=4003, - ["local_hit_damage_stun_multiplier_+%"]=1004, - ["local_hits_always_inflict_elemental_ailments"]=4000, - ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7016, - ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7017, - ["local_hits_with_this_weapon_ignore_poison_limit"]=7018, - ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7019, - ["local_ignite_effect_+%_final_with_this_weapon"]=7020, - ["local_immune_to_curses_if_item_corrupted"]=7021, - ["local_implicit_mod_cannot_be_changed"]=45, - ["local_implicit_stat_magnitude_+%"]=72, - ["local_inflict_lightning_exposure_on_hit_%_chance"]=7022, - ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7023, - ["local_intelligence_per_2%_quality"]=7024, - ["local_intelligence_requirement_+"]=838, - ["local_intelligence_requirement_+%"]=839, - ["local_is_alternate_tree_jewel"]=9554, - ["local_is_max_quality"]=1625, - ["local_is_survival_jewel"]=9555, - ["local_item_additional_skill_slots"]=81, - ["local_item_allow_modification_while_corrupted"]=35, - ["local_item_can_have_x_additional_enchantments"]=37, - ["local_item_can_roll_all_influences"]=7025, - ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2277, - ["local_item_found_rarity_+%_per_rune_or_soul_core"]=7026, - ["local_item_implicit_modifier_limit"]=38, - ["local_item_quality_+"]=7027, - ["local_item_sell_price_doubled"]=7028, - ["local_item_stats_are_doubled_in_breach"]=7029, - ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=33, - ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7030, - ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7031, - ["local_jewel_disable_combust_with_40_strength_in_radius"]=7032, - ["local_jewel_display_radius_change"]=7033, - ["local_jewel_expansion_jewels_count"]=7034, - ["local_jewel_expansion_jewels_count_override"]=7035, - ["local_jewel_expansion_keystone_disciple_of_kitava"]=7036, - ["local_jewel_expansion_keystone_hollow_palm_technique"]=7037, - ["local_jewel_expansion_keystone_kineticism"]=7038, - ["local_jewel_expansion_keystone_lone_messenger"]=7039, - ["local_jewel_expansion_keystone_natures_patience"]=7040, - ["local_jewel_expansion_keystone_pitfighter"]=7041, - ["local_jewel_expansion_keystone_secrets_of_suffering"]=7042, - ["local_jewel_expansion_keystone_veterans_awareness"]=7043, - ["local_jewel_expansion_passive_node_count"]=4074, - ["local_jewel_expansion_passive_node_index"]=7044, - ["local_jewel_fireball_cannot_ignite"]=7045, - ["local_jewel_fireball_chance_to_scorch_%"]=7046, - ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7048, - ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7047, - ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7050, - ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7049, - ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7051, - ["local_jewel_nearby_passives_dex_to_int"]=2732, - ["local_jewel_nearby_passives_dex_to_str"]=2731, - ["local_jewel_nearby_passives_int_to_dex"]=2734, - ["local_jewel_nearby_passives_int_to_str"]=2733, - ["local_jewel_nearby_passives_str_to_dex"]=2729, - ["local_jewel_nearby_passives_str_to_int"]=2730, - ["local_jewel_notable_passive_in_radius_effect_+%"]=7052, - ["local_jewel_notables_in_radius_grant_base_projectile_speed_+%"]=7053, - ["local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%"]=7054, - ["local_jewel_notables_in_radius_grant_curse_effect_+%"]=7055, - ["local_jewel_small_passive_in_radius_effect_+%"]=7056, - ["local_jewel_small_passives_in_radius_grant_evasion_rating_+%"]=7057, - ["local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%"]=7058, - ["local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7059, - ["local_jewel_variable_ring_radius_value"]=36, - ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7060, - ["local_knockback"]=1382, - ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2363, - ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2364, - ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7061, - ["local_left_ring_slot_curse_effect_on_self_+%"]=2365, - ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2420, - ["local_left_ring_slot_energy_shield"]=2380, - ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2366, - ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2367, - ["local_left_ring_slot_mana_regeneration_rate_+%"]=2369, - ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2368, - ["local_left_ring_slot_maximum_mana"]=2379, - ["local_left_ring_slot_minion_damage_taken_+%"]=2370, - ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2362, - ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7062, - ["local_left_ring_slot_projectiles_from_spells_fork"]=7063, - ["local_left_ring_slot_skill_effect_duration_+%"]=2371, - ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7064, - ["local_level_requirement_-"]=840, - ["local_life_and_mana_gain_per_target"]=1469, - ["local_life_gain_per_target"]=993, - ["local_life_gain_per_target_vs_blinded_enemies"]=7065, - ["local_life_gain_per_target_while_leeching"]=7066, - ["local_life_leech_from_physical_damage_permyriad"]=991, - ["local_life_leech_is_instant"]=2256, - ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=9379, - ["local_lightning_penetration_%"]=3400, - ["local_lightning_resistance_%_per_2%_quality"]=7067, - ["local_maim_on_hit"]=3758, - ["local_maim_on_hit_%"]=7068, - ["local_mana_gain_per_target"]=1472, - ["local_mana_leech_from_physical_damage_permyriad"]=997, + ["local_flask_consume_flask_duration_+%_when_used"]=928, + ["local_flask_consume_flask_effect_+%_when_used"]=722, + ["local_flask_consumes_max_charges_on_use"]=661, + ["local_flask_consumes_x_endurance_charges_on_use"]=662, + ["local_flask_consumes_x_frenzy_charges_on_use"]=663, + ["local_flask_consumes_x_power_charges_on_use"]=664, + ["local_flask_critical_strike_chance_+%_during_flask_effect"]=756, + ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=755, + ["local_flask_culling_strike_during_flask_effect"]=757, + ["local_flask_damage_taken_goes_to_life_over_4_seconds_%_during_effect"]=758, + ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=655, + ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=647, + ["local_flask_deciseconds_to_recover"]=643, + ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=695, + ["local_flask_dispels_freeze_and_chill"]=693, + ["local_flask_duration_+%"]=928, + ["local_flask_duration_+%_final"]=644, + ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=759, + ["local_flask_effect_+%"]=722, + ["local_flask_effect_ends_when_hit_by_player"]=648, + ["local_flask_effect_not_removed_at_full_life"]=649, + ["local_flask_effect_not_removed_at_full_mana"]=650, + ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=813, + ["local_flask_energy_shield_+%_while_healing"]=725, + ["local_flask_evasion_+%_while_healing"]=724, + ["local_flask_gain_X_charges_every_minute"]=631, + ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=632, + ["local_flask_gain_X_charges_when_hit"]=633, + ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=665, + ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=760, + ["local_flask_gain_endurance_charges_on_use"]=666, + ["local_flask_gain_frenzy_charges_on_use"]=667, + ["local_flask_gain_power_charges_on_use"]=668, + ["local_flask_gain_x_rage_when_hit_during_effect"]=761, + ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"]=669, + ["local_flask_gain_x_vaal_souls_on_use"]=670, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=691, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=692, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=683, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=684, + ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=762, + ["local_flask_immune_to_damage"]=763, + ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=764, + ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=685, + ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=686, + ["local_flask_immune_to_poison_during_flask_effect"]=765, + ["local_flask_immune_to_shock_during_flask_effect"]=766, + ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=671, + ["local_flask_is_petrified"]=767, + ["local_flask_item_found_rarity_+%_during_flask_effect"]=768, + ["local_flask_life_gain_on_skill_use_%_mana_cost"]=744, + ["local_flask_life_leech_from_physical_attack_damage_permyriad_while_healing"]=735, + ["local_flask_life_leech_is_instant_during_flask_effect"]=769, + ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=641, + ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=770, + ["local_flask_life_to_recover"]=639, + ["local_flask_life_to_recover_+%"]=929, + ["local_flask_life_to_recover_+%_final"]=640, + ["local_flask_lose_all_charges_on_entering_new_area"]=638, + ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=672, + ["local_flask_mana_leech_from_physical_attack_damage_permyriad_while_healing"]=737, + ["local_flask_mana_to_recover"]=642, + ["local_flask_mana_to_recover_+%"]=930, + ["local_flask_minion_heal_%"]=931, + ["local_flask_movement_speed_+%_while_healing"]=732, + ["local_flask_no_inherent_rage_loss_during_effect"]=771, + ["local_flask_no_mana_recovery_during_effect"]=772, + ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=773, + ["local_flask_number_of_additional_projectiles_during_flask_effect"]=774, + ["local_flask_poison_immunity_if_poisoned"]=687, + ["local_flask_poison_immunity_if_poisoned_s"]=688, + ["local_flask_prevents_death_while_healing"]=819, + ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=816, + ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=814, + ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=815, + ["local_flask_recover_instantly_when_on_low_life"]=645, + ["local_flask_recover_instantly_when_on_low_mana"]=646, + ["local_flask_recovers_instantly"]=932, + ["local_flask_recovery_amount_%_to_recover_instantly"]=933, + ["local_flask_recovery_occurs_instantly_at_end_of_flask_effect"]=651, + ["local_flask_recovery_speed_+%"]=934, + ["local_flask_reflect_damage_taken_+%_during_flask_effect"]=775, + ["local_flask_remove_curses_on_use"]=677, + ["local_flask_remove_effect_when_ward_breaks"]=652, + ["local_flask_removes_%_maximum_energy_shield_on_use"]=654, + ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=653, + ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=935, + ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=936, + ["local_flask_resistances_+%_while_healing"]=734, + ["local_flask_restore_ward"]=696, + ["local_flask_shock_immunity_if_shocked"]=689, + ["local_flask_shock_immunity_if_shocked_s"]=690, + ["local_flask_skill_mana_cost_+%_during_flask_effect"]=776, + ["local_flask_stun_recovery_+%_while_healing"]=733, + ["local_flask_taunt_enemies_on_use_radius"]=673, + ["local_flask_use_causes_area_knockback"]=674, + ["local_flask_use_causes_monster_flee_chance_%"]=675, + ["local_flask_use_on_adjacent_flask_use"]=699, + ["local_flask_use_on_affected_by_bleed"]=700, + ["local_flask_use_on_affected_by_chill"]=701, + ["local_flask_use_on_affected_by_freeze"]=702, + ["local_flask_use_on_affected_by_ignite"]=703, + ["local_flask_use_on_affected_by_poison"]=704, + ["local_flask_use_on_affected_by_shock"]=705, + ["local_flask_use_on_affected_by_slow"]=706, + ["local_flask_use_on_chaos_damage_taken"]=707, + ["local_flask_use_on_cold_damage_taken"]=708, + ["local_flask_use_on_damage_blocked"]=709, + ["local_flask_use_on_fire_damage_taken"]=710, + ["local_flask_use_on_flask_effect_ended"]=711, + ["local_flask_use_on_full_charges"]=712, + ["local_flask_use_on_guard_skill_expired"]=713, + ["local_flask_use_on_guard_skill_used"]=714, + ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=715, + ["local_flask_use_on_killing_rare_or_unique_enemy"]=716, + ["local_flask_use_on_lightning_damage_taken"]=717, + ["local_flask_use_on_stunned"]=718, + ["local_flask_use_on_taking_savage_hit"]=719, + ["local_flask_use_on_travel_skill_used"]=720, + ["local_flask_use_on_using_a_life_flask"]=721, + ["local_flask_vaal_souls_gained_per_minute_during_effect"]=777, + ["local_flask_ward_+%_during_effect"]=726, + ["local_flask_ward_does_not_break_during_effect"]=727, + ["local_flask_zealots_oath"]=825, + ["local_force_corruption_outcome_two_enchants"]=7151, + ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7152, + ["local_gain_X_rage_on_hit"]=7153, + ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7154, + ["local_gain_shrine_buff_every_10_seconds"]=7155, + ["local_gem_experience_gain_+%"]=1610, + ["local_gem_level_+"]=131, + ["local_global_defences_+%_per_rune_or_soul_core"]=7156, + ["local_grant_eldritch_battery_during_flask_effect"]=826, + ["local_grant_skeleton_warriors_triple_damage_on_hit"]=3985, + ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2647, + ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2645, + ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2644, + ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2646, + ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2647, + ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2645, + ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2644, + ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2646, + ["local_has_X_abyss_sockets"]=78, + ["local_has_X_sockets"]=79, + ["local_has_no_sockets"]=77, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes"]=7157, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity"]=7158, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence"]=7159, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_strength"]=7160, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute"]=7161, + ["local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%"]=7162, + ["local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%"]=7163, + ["local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%"]=7164, + ["local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%"]=7165, + ["local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%"]=7166, + ["local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%"]=7167, + ["local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%"]=7168, + ["local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%"]=7169, + ["local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%"]=7170, + ["local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%"]=7171, + ["local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%"]=7172, + ["local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%"]=7173, + ["local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%"]=7174, + ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_1"]=7175, + ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_2"]=7176, + ["local_hit_causes_monster_flee_%"]=1722, + ["local_hit_damage_+%_vs_frozen_enemies"]=3943, + ["local_hit_damage_+%_vs_ignited_enemies"]=3942, + ["local_hit_damage_+%_vs_shocked_enemies"]=3944, + ["local_hit_damage_stun_multiplier_+%"]=1005, + ["local_hits_always_inflict_elemental_ailments"]=3941, + ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7177, + ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7178, + ["local_hits_with_this_weapon_ignore_poison_limit"]=7179, + ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7180, + ["local_ignite_effect_+%_final_with_this_weapon"]=7181, + ["local_immune_to_curses_if_item_corrupted"]=7182, + ["local_implicit_mod_cannot_be_changed"]=47, + ["local_implicit_stat_magnitude_+%"]=74, + ["local_inflict_lightning_exposure_on_hit_%_chance"]=7183, + ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7184, + ["local_intelligence_per_2%_quality"]=7185, + ["local_intelligence_requirement_+"]=834, + ["local_intelligence_requirement_+%"]=835, + ["local_is_alternate_tree_jewel"]=9834, + ["local_is_max_quality"]=1604, + ["local_is_survival_jewel"]=9835, + ["local_item_additional_skill_slots"]=80, + ["local_item_allow_modification_while_corrupted"]=37, + ["local_item_benefit_socketable_as_if_body_armour"]=7186, + ["local_item_benefit_socketable_as_if_boots"]=7187, + ["local_item_benefit_socketable_as_if_gloves"]=7188, + ["local_item_benefit_socketable_as_if_helmet"]=7189, + ["local_item_benefit_socketable_as_if_shield"]=7190, + ["local_item_can_have_x_additional_enchantments"]=39, + ["local_item_can_roll_all_influences"]=7191, + ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2245, + ["local_item_found_rarity_+%_per_rune_or_soul_core"]=7192, + ["local_item_implicit_modifier_limit"]=40, + ["local_item_quality_+"]=7193, + ["local_item_sell_price_doubled"]=7194, + ["local_item_stats_are_doubled_in_breach"]=7195, + ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=35, + ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7196, + ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7197, + ["local_jewel_disable_combust_with_40_strength_in_radius"]=7198, + ["local_jewel_display_radius_change"]=7199, + ["local_jewel_expansion_jewels_count"]=7200, + ["local_jewel_expansion_jewels_count_override"]=7201, + ["local_jewel_expansion_keystone_disciple_of_kitava"]=7202, + ["local_jewel_expansion_keystone_hollow_palm_technique"]=7203, + ["local_jewel_expansion_keystone_kineticism"]=7204, + ["local_jewel_expansion_keystone_lone_messenger"]=7205, + ["local_jewel_expansion_keystone_natures_patience"]=7206, + ["local_jewel_expansion_keystone_pitfighter"]=7207, + ["local_jewel_expansion_keystone_secrets_of_suffering"]=7208, + ["local_jewel_expansion_keystone_veterans_awareness"]=7209, + ["local_jewel_expansion_passive_node_count"]=4013, + ["local_jewel_expansion_passive_node_index"]=7210, + ["local_jewel_fireball_cannot_ignite"]=7211, + ["local_jewel_fireball_chance_to_scorch_%"]=7212, + ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7214, + ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7213, + ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7216, + ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7215, + ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7217, + ["local_jewel_nearby_passives_dex_to_int"]=2687, + ["local_jewel_nearby_passives_dex_to_str"]=2686, + ["local_jewel_nearby_passives_int_to_dex"]=2689, + ["local_jewel_nearby_passives_int_to_str"]=2688, + ["local_jewel_nearby_passives_str_to_dex"]=2684, + ["local_jewel_nearby_passives_str_to_int"]=2685, + ["local_jewel_notable_passive_in_radius_effect_+%"]=7218, + ["local_jewel_notables_in_radius_grant_base_projectile_speed_+%"]=7219, + ["local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%"]=7220, + ["local_jewel_notables_in_radius_grant_curse_effect_+%"]=7221, + ["local_jewel_small_passive_in_radius_effect_+%"]=7222, + ["local_jewel_small_passives_in_radius_grant_evasion_rating_+%"]=7223, + ["local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%"]=7224, + ["local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7225, + ["local_jewel_variable_ring_radius_value"]=38, + ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7226, + ["local_knockback"]=1370, + ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2331, + ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2332, + ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7227, + ["local_left_ring_slot_curse_effect_on_self_+%"]=2333, + ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2386, + ["local_left_ring_slot_energy_shield"]=2348, + ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2334, + ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2335, + ["local_left_ring_slot_mana_regeneration_rate_+%"]=2337, + ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2336, + ["local_left_ring_slot_maximum_mana"]=2347, + ["local_left_ring_slot_minion_damage_taken_+%"]=2338, + ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2330, + ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7228, + ["local_left_ring_slot_projectiles_from_spells_fork"]=7229, + ["local_left_ring_slot_skill_effect_duration_+%"]=2339, + ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7230, + ["local_level_requirement_-"]=836, + ["local_life_and_mana_gain_per_target"]=1452, + ["local_life_gain_per_target"]=994, + ["local_life_gain_per_target_vs_blinded_enemies"]=7231, + ["local_life_gain_per_target_while_leeching"]=7232, + ["local_life_leech_from_physical_damage_permyriad"]=992, + ["local_life_leech_is_instant"]=2225, + ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=9647, + ["local_lightning_penetration_%"]=3346, + ["local_lightning_resistance_%_per_2%_quality"]=7233, + ["local_maim_on_hit"]=3700, + ["local_maim_on_hit_%"]=7234, + ["local_mana_gain_per_target"]=1455, + ["local_mana_leech_from_physical_damage_permyriad"]=998, ["local_max_charges_+%"]=1028, - ["local_maximum_added_chaos_damage"]=1259, - ["local_maximum_added_cold_damage"]=850, - ["local_maximum_added_fire_damage"]=849, - ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4407, - ["local_maximum_added_lightning_damage"]=851, - ["local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_6_seconds_up_to_X"]=7069, - ["local_maximum_added_physical_damage"]=848, - ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4414, - ["local_maximum_energy_shield_+%_if_item_corrupted"]=7070, - ["local_maximum_life_+%_if_item_corrupted"]=7072, - ["local_maximum_life_+%_per_rune_or_soul_core"]=7073, - ["local_maximum_life_per_2%_quality"]=7071, - ["local_maximum_mana_+%_per_rune_or_soul_core"]=7075, - ["local_maximum_mana_per_2%_quality"]=7074, - ["local_maximum_prefixes_allowed_+"]=39, - ["local_maximum_quality_+"]=7077, - ["local_maximum_quality_is_%"]=7076, - ["local_maximum_sockets_+"]=89, - ["local_maximum_suffixes_allowed_+"]=40, - ["local_minimum_added_chaos_damage"]=1259, - ["local_minimum_added_cold_damage"]=850, - ["local_minimum_added_fire_damage"]=849, - ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4407, - ["local_minimum_added_lightning_damage"]=851, - ["local_minimum_added_physical_damage"]=848, - ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4414, - ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7078, - ["local_movement_speed_+%_if_item_corrupted"]=7079, - ["local_no_attribute_requirements"]=841, - ["local_no_critical_strike_multiplier"]=7080, - ["local_no_critical_strike_multiplier_during_flask_effect"]=781, - ["local_no_deflect_chance"]=7081, - ["local_no_energy_shield"]=842, - ["local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon"]=3881, - ["local_number_of_bloodworms_to_spawn_on_flask_use"]=702, - ["local_one_socket_each_colour_only"]=90, - ["local_physical_damage_%_to_convert_to_a_random_element"]=3999, - ["local_physical_damage_+%"]=847, - ["local_physical_damage_reduction_rating_+%"]=861, - ["local_poison_duration_+%_during_flask_effect"]=782, - ["local_poison_effect_+%"]=843, - ["local_poison_on_critical_strike_chance_%"]=7082, - ["local_poison_on_hit"]=2188, - ["local_poison_on_hit_%"]=7083, - ["local_projectile_speed_+%"]=7084, - ["local_quality_does_not_increase_damage"]=1626, - ["local_quality_does_not_increase_defences"]=1627, - ["local_quantity_of_sockets_+%"]=1632, - ["local_random_support_gem_index"]=346, - ["local_random_support_gem_index_1"]=347, - ["local_random_support_gem_level"]=346, - ["local_random_support_gem_level_1"]=347, - ["local_recharge_on_crit"]=641, - ["local_recharge_on_crit_%"]=642, - ["local_recharge_on_demon_killed"]=643, - ["local_recharge_on_take_crit"]=644, - ["local_reload_speed_+%"]=944, - ["local_requirements_%_to_convert_to_dexterity"]=7085, - ["local_requirements_%_to_convert_to_intelligence"]=7086, - ["local_requirements_%_to_convert_to_strength"]=7087, - ["local_resist_all_elements_%_if_item_corrupted"]=7088, - ["local_resist_all_elements_+%_per_rune_or_soul_core"]=7089, - ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2372, - ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2359, - ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2373, - ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7090, - ["local_right_ring_slot_curse_effect_on_self_+%"]=2374, - ["local_right_ring_slot_energy_shield"]=2361, - ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2375, - ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2376, - ["local_right_ring_slot_maximum_mana"]=2360, - ["local_right_ring_slot_minion_damage_taken_+%"]=2377, - ["local_right_ring_slot_no_mana_regeneration"]=2358, - ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7091, - ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2421, - ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7092, - ["local_right_ring_slot_skill_effect_duration_+%"]=2378, - ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7093, - ["local_ring_attack_speed_+%_final"]=7094, - ["local_ring_burning_damage_+%_final"]=7095, - ["local_ring_disable_other_ring"]=1437, - ["local_ring_duplicate_other_ring"]=2554, - ["local_ring_nova_spells_area_of_effect_+%_final"]=7096, - ["local_rune_and_soul_core_effect_+%"]=7097, - ["local_rune_effect_+%"]=7098, - ["local_self_bleed_duration_+%_during_flask_effect"]=783, - ["local_self_chill_effect_+%_during_flask_effect"]=784, - ["local_self_curse_effect_+%_during_flask_effect"]=785, - ["local_self_freeze_duration_+%_during_flask_effect"]=786, - ["local_self_ignite_duration_+%_during_flask_effect"]=787, - ["local_self_poison_duration_+%_during_flask_effect"]=788, - ["local_self_shock_effect_+%_during_flask_effect"]=789, - ["local_sentinel_drone_difficulty_+%"]=7099, - ["local_shield_double_stun_threshold_while_active_blocking"]=7100, - ["local_six_linked_random_sockets"]=82, - ["local_smoke_ground_on_flask_use_radius"]=681, - ["local_socketed_abyss_jewel_effect_+%"]=197, - ["local_socketed_active_skill_gem_level_+"]=171, - ["local_socketed_active_skill_gem_quality_+"]=182, - ["local_socketed_area_of_effect_gem_level_+"]=157, - ["local_socketed_area_of_effect_gem_quality_+"]=183, - ["local_socketed_aura_gem_level_+"]=162, - ["local_socketed_aura_gem_quality_+"]=184, - ["local_socketed_bow_gem_level_+"]=159, - ["local_socketed_bow_gem_quality_+"]=185, - ["local_socketed_chaos_gem_level_+"]=154, - ["local_socketed_chaos_gem_quality_+"]=186, - ["local_socketed_cold_gem_level_+"]=152, - ["local_socketed_cold_gem_quality_+"]=187, - ["local_socketed_curse_gem_level_+"]=165, - ["local_socketed_dexterity_gem_level_+"]=141, - ["local_socketed_dexterity_gem_quality_+"]=188, - ["local_socketed_duration_gem_level_+"]=156, - ["local_socketed_elemental_gem_level_+"]=189, - ["local_socketed_fire_gem_level_+"]=150, - ["local_socketed_fire_gem_quality_+"]=190, - ["local_socketed_gem_level_+"]=145, - ["local_socketed_gem_quality_+"]=180, - ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=149, - ["local_socketed_gems_in_green_sockets_get_quality_%"]=148, - ["local_socketed_gems_in_red_sockets_get_level_+"]=147, - ["local_socketed_golem_gem_level_+"]=179, - ["local_socketed_herald_gem_level_+"]=163, - ["local_socketed_hex_gem_level_+"]=166, - ["local_socketed_intelligence_gem_level_+"]=143, - ["local_socketed_intelligence_gem_quality_+"]=191, - ["local_socketed_lightning_gem_level_+"]=153, - ["local_socketed_lightning_gem_quality_+"]=192, - ["local_socketed_melee_gem_level_+"]=160, - ["local_socketed_melee_gem_quality_+"]=193, - ["local_socketed_minion_gem_level_+"]=161, - ["local_socketed_minion_gem_quality_+"]=194, - ["local_socketed_movement_gem_level_+"]=164, - ["local_socketed_non_vaal_gem_level_+"]=172, - ["local_socketed_projectile_gem_level_+"]=158, - ["local_socketed_projectile_gem_quality_+"]=195, - ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=146, - ["local_socketed_spell_gem_level_+"]=155, - ["local_socketed_strength_gem_level_+"]=140, - ["local_socketed_strength_gem_quality_+"]=196, - ["local_socketed_support_gem_level_+"]=170, - ["local_socketed_support_gem_quality_+"]=181, - ["local_socketed_trap_and_mine_gem_level_+"]=168, - ["local_socketed_trap_gem_level_+"]=167, - ["local_socketed_vaal_gem_level_+"]=169, - ["local_socketed_warcry_gem_level_+"]=173, - ["local_soul_core_effect_+%"]=7101, - ["local_spell_damage_+%_if_item_corrupted"]=7102, - ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7103, - ["local_spirit"]=867, - ["local_spirit_+%"]=868, - ["local_spirit_+_per_rune_or_soul_core"]=7104, - ["local_strength_and_intelligence_requirement_+"]=844, - ["local_strength_per_2%_quality"]=7105, - ["local_strength_requirement_+"]=845, - ["local_strength_requirement_+%"]=846, - ["local_stun_threshold_+_per_rune_or_soul_core"]=7106, - ["local_stun_threshold_reduction_+%"]=2216, - ["local_support_gem_max_skill_level_requirement_to_support"]=2525, - ["local_tablet_make_maps_in_radius_available"]=7107, - ["local_unique_attacks_cast_socketed_lightning_spells_%"]=630, - ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=631, - ["local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect"]=747, - ["local_unique_counts_as_dual_wielding"]=2407, - ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=790, - ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=791, - ["local_unique_flask_avoid_chill_%_while_healing"]=746, - ["local_unique_flask_avoid_freeze_%_while_healing"]=748, - ["local_unique_flask_block_%_while_healing"]=792, - ["local_unique_flask_cannot_recover_life_while_healing"]=793, - ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=662, - ["local_unique_flask_charges_gained_+%_during_flask_effect"]=794, - ["local_unique_flask_critical_hit_poison_effect_+%_during_flask_effect"]=795, - ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=796, - ["local_unique_flask_damage_+%_vs_demons_while_healing"]=798, - ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=797, - ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=799, - ["local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing"]=800, - ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=824, - ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=825, - ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7108, - ["local_unique_flask_instantly_recovers_%_maximum_life"]=661, - ["local_unique_flask_item_quantity_+%_while_healing"]=801, - ["local_unique_flask_item_rarity_+%_while_healing"]=802, - ["local_unique_flask_kiaras_determination"]=803, - ["local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds"]=7109, - ["local_unique_flask_light_radius_+%_while_healing"]=804, - ["local_unique_flask_no_mana_cost_while_healing"]=805, - ["local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect"]=7110, - ["local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing"]=806, - ["local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing"]=745, - ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=744, - ["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=657, - ["local_unique_flask_recover_all_mana_on_use"]=7111, - ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=807, - ["local_unique_flask_spell_block_%_while_healing"]=808, - ["local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends"]=7112, - ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=809, - ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=810, - ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=811, - ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=812, - ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=813, - ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=814, - ["local_unique_hungry_loop_has_consumed_gem"]=112, - ["local_unique_hungry_loop_number_of_gems_to_consume"]=112, - ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2746, - ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2747, - ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2748, - ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7113, - ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2833, - ["local_unique_jewel_additional_life_per_X_int_in_radius"]=2809, - ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2826, - ["local_unique_jewel_alternate_tree_internal_revision"]=34, - ["local_unique_jewel_alternate_tree_keystone"]=34, - ["local_unique_jewel_alternate_tree_seed"]=34, - ["local_unique_jewel_alternate_tree_version"]=34, - ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2831, - ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2921, - ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2930, - ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7114, - ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7115, - ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7116, - ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7117, - ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7118, - ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7119, - ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7120, - ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7121, - ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7122, - ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2749, - ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2810, - ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2811, - ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2799, - ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3007, - ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3006, - ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7123, - ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2823, - ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2802, - ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7124, - ["local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%"]=7125, - ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2926, - ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7126, - ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2834, - ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2800, - ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2813, - ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7127, - ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7128, - ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7129, - ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7130, - ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7131, - ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2897, - ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7132, - ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7133, - ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7134, - ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7135, - ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7136, - ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7137, - ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7138, - ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7139, - ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7140, - ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7141, - ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7142, - ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7143, - ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7144, - ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2803, - ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2827, - ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3008, - ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3009, - ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2798, - ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7145, - ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7146, - ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2822, - ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7147, - ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7148, - ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7149, - ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2918, - ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2917, - ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2821, - ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3015, - ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3014, - ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7150, - ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7151, - ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7152, - ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7153, - ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7174, - ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2830, - ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7154, - ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2895, - ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3010, - ["local_unique_jewel_grants_x_empty_passives"]=7155, - ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2924, - ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2923, - ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2898, - ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7156, - ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7157, - ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7158, - ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2767, - ["local_unique_jewel_life_increases_applies_to_energy_shield"]=2804, - ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2812, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7159, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7160, - ["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=7161, - ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7162, - ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7163, - ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7164, - ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7165, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7166, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7167, - ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2835, - ["local_unique_jewel_melee_applies_to_bow"]=2745, - ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7168, - ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7169, - ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2828, - ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7170, - ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=832, - ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7171, - ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7172, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=9573, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=9574, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=9575, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=9573, - ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2808, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7173, - ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2750, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=9576, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=9576, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2825, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2820, - ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2824, - ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2801, - ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2829, - ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3011, - ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7175, - ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3012, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7176, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3013, - ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7177, - ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7178, - ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7179, - ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2896, - ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7180, - ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7181, - ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2832, - ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7182, - ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2737, - ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2814, - ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2915, - ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=2928, - ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2738, - ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=2913, - ["local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%"]=2768, - ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2769, - ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2755, - ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7183, - ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7184, - ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=815, - ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=827, - ["local_unique_regen_es_from_removed_life_duration_ms"]=2819, - ["local_unique_remove_life_and_regen_es_from_removed_life"]=2819, - ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=828, - ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3414, - ["local_ward"]=1384, - ["local_ward_+%"]=1386, - ["local_weapon_accuracy_is_unaffected_by_distance"]=7185, - ["local_weapon_base_crit_chance_permyriad_override"]=3427, - ["local_weapon_crit_chance_is_%"]=7186, - ["local_weapon_damage_%_to_gain_as_daze_build_up"]=7187, - ["local_weapon_enemy_phys_reduction_%_penalty"]=1155, - ["local_weapon_no_physical_damage"]=847, - ["local_weapon_range_+"]=2449, - ["local_weapon_range_+_per_10%_quality"]=7188, - ["local_weapon_roll_crits_twice"]=1324, - ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=634, - ["local_weapon_uses_both_hands"]=833, - ["local_withered_on_hit_for_2_seconds_%_chance"]=4042, - ["lose_%_of_es_on_crit"]=7198, - ["lose_%_of_infernal_flame_on_reaching_max"]=7189, - ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7199, - ["lose_%_of_life_loss_over_4_seconds_instead"]=7190, - ["lose_%_of_life_on_crit"]=7200, - ["lose_%_of_mana_when_you_use_an_attack_skill"]=7201, - ["lose_%_of_max_infernal_flame_per_minute"]=7191, - ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3122, - ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4025, - ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4026, - ["lose_adrenaline_on_losing_flame_touched"]=7192, - ["lose_all_charges_on_starting_movement"]=7193, - ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=3903, - ["lose_all_endurance_charges_when_reaching_maximum"]=2456, - ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7194, - ["lose_all_fragile_regrowth_when_hit"]=4033, - ["lose_all_power_charges_on_block"]=7195, - ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3245, - ["lose_all_rage_on_reaching_maximum_rage"]=7196, - ["lose_all_tailwind_when_hit"]=7197, - ["lose_endurance_charge_on_kill_%"]=2340, - ["lose_endurance_charges_on_rampage_end"]=2935, - ["lose_frenzy_charge_on_kill_%"]=2342, - ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7202, - ["lose_power_charge_on_kill_%"]=2344, - ["lose_soul_eater_souls_on_flask_use"]=3084, - ["lose_spirit_charges_on_savage_hit_taken"]=4016, - ["lose_x_life_when_you_use_skill"]=7203, - ["lose_x_mana_when_you_use_skill"]=7204, - ["low_life_threshold_%_override"]=7206, - ["mace_accuracy_rating"]=1720, - ["mace_accuracy_rating_+%"]=1308, - ["mace_attack_speed_+%"]=1291, - ["mace_critical_strike_chance_+%"]=1333, - ["mace_critical_strike_multiplier_+"]=1353, - ["mace_damage_+%"]=1218, - ["mace_elemental_damage_+%"]=1830, - ["mace_hit_damage_stun_multiplier_+%"]=7207, - ["mace_slam_aftershock_chance_%"]=7208, - ["mace_strike_aftershock_chance_%"]=7209, - ["magic_charm_effect_+%"]=2447, - ["magic_items_drop_identified"]=3781, - ["magic_monster_dropped_item_rarity_+%"]=7210, - ["magic_utility_flasks_cannot_be_removed"]=4053, - ["magic_utility_flasks_cannot_be_used"]=4051, - ["magma_orb_damage_+%"]=3280, - ["magma_orb_num_of_additional_projectiles_in_chain"]=3582, - ["magma_orb_number_of_additional_projectiles"]=7211, - ["magma_orb_radius_+%"]=3441, - ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7212, - ["maim_bleeding_enemies_on_hit_%"]=2979, - ["maim_chance_+%"]=7213, - ["maim_effect_+%"]=7214, - ["maim_on_crit_%_with_attacks"]=7215, - ["maim_on_hit_%"]=7216, - ["maim_on_hit_%_vs_poisoned_enemies"]=2958, - ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7217, - ["main_hand_attack_speed_+%_final"]=7218, - ["main_hand_base_weapon_attack_duration_ms"]=20, - ["main_hand_claw_life_gain_on_hit"]=7219, - ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7220, - ["main_hand_damage_+%_while_dual_wielding"]=7221, - ["main_hand_maximum_attack_distance"]=24, - ["main_hand_minimum_attack_distance"]=22, - ["main_hand_quality"]=17, - ["main_hand_weapon_type"]=9, - ["malediction_on_hit"]=7222, - ["malevolence_mana_reservation_efficiency_+%"]=7224, - ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7223, - ["mamba_strike_area_of_effect_+%"]=7225, - ["mamba_strike_damage_+%"]=7226, - ["mamba_strike_duration_+%"]=7227, - ["mana_%_gained_on_block"]=7248, - ["mana_%_to_gain_as_armour"]=7228, - ["mana_%_to_gain_as_energy_shield"]=1884, - ["mana_%_to_gain_as_energy_shield_at_devotion_threshold"]=7249, - ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3046, - ["mana_cost_+%_for_channelling_skills"]=7229, - ["mana_cost_+%_for_trap_and_mine_skills"]=7230, - ["mana_cost_+%_for_trap_skills"]=7231, - ["mana_cost_+%_on_consecrated_ground"]=3199, - ["mana_cost_+%_on_totemified_aura_skills"]=2786, - ["mana_cost_+%_per_10_devotion"]=7232, - ["mana_cost_+%_per_200_mana_spent_recently"]=3976, - ["mana_cost_+%_when_on_low_life"]=1601, - ["mana_cost_+%_while_not_low_mana"]=2762, - ["mana_cost_+%_while_on_full_energy_shield"]=1600, - ["mana_cost_-%_per_endurance_charge"]=2933, - ["mana_degeneration_%_per_minute_not_in_grace"]=7233, - ["mana_degeneration_per_minute"]=7234, - ["mana_degeneration_per_minute_%"]=7235, - ["mana_degeneration_per_minute_not_in_grace"]=1417, - ["mana_flask_charges_gained_+%"]=7236, - ["mana_flask_effects_not_removed_at_full_mana"]=7237, - ["mana_flask_recovery_is_instant_while_on_low_mana"]=7238, - ["mana_flasks_gain_X_charges_every_3_seconds"]=7239, - ["mana_gain_per_target"]=1471, - ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=7240, - ["mana_gained_on_attack_hit_vs_cursed_enemies"]=7241, - ["mana_gained_on_block"]=1484, - ["mana_gained_on_cull"]=7242, - ["mana_gained_on_enemy_death_per_level"]=2660, - ["mana_gained_on_hitting_taunted_enemy"]=1507, - ["mana_gained_on_spell_hit"]=7243, - ["mana_gained_on_spell_hit_vs_cursed_enemies"]=7244, - ["mana_gained_when_hit"]=2417, - ["mana_leech_also_recovers_based_on_other_damage_types"]=7245, - ["mana_leech_applies_recovery_to_energy_shield_also"]=7246, - ["mana_leech_rate_+%_per_equipped_corrupted_item"]=2778, - ["mana_per_level"]=7247, - ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=7250, - ["mana_recovery_from_regeneration_is_not_applied"]=7251, - ["mana_recovery_rate_+%"]=1419, - ["mana_recovery_rate_+%_if_havent_killed_recently"]=7253, - ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=7252, - ["mana_recovery_rate_+%_while_affected_by_clarity"]=7254, - ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3706, - ["mana_regeneration_rate_+%"]=995, - ["mana_regeneration_rate_+%_during_flask_effect"]=2857, - ["mana_regeneration_rate_+%_if_crit_recently"]=7269, - ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=7270, - ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=7271, - ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=7272, - ["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=7255, - ["mana_regeneration_rate_+%_per_fragile_regrowth"]=4032, - ["mana_regeneration_rate_+%_per_power_charge"]=1691, - ["mana_regeneration_rate_+%_per_raised_spectre"]=7273, - ["mana_regeneration_rate_+%_while_moving"]=7274, - ["mana_regeneration_rate_+%_while_not_on_low_mana"]=7256, - ["mana_regeneration_rate_+%_while_phasing"]=2225, - ["mana_regeneration_rate_+%_while_shocked"]=2226, - ["mana_regeneration_rate_+%_while_stationary"]=3957, - ["mana_regeneration_rate_per_minute_%"]=1415, - ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=7261, - ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=7262, - ["mana_regeneration_rate_per_minute_%_per_active_totem"]=7263, - ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1418, - ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=7257, - ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=7258, - ["mana_regeneration_rate_per_minute_per_10_devotion"]=7259, - ["mana_regeneration_rate_per_minute_per_power_charge"]=7260, - ["mana_regeneration_rate_per_minute_while_dual_wielding"]=7264, - ["mana_regeneration_rate_per_minute_while_holding_shield"]=7265, - ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=7266, - ["mana_regeneration_rate_per_minute_while_wielding_staff"]=7267, - ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=7268, - ["mana_reservation_+%_per_250_total_attributes"]=7280, - ["mana_reservation_+%_with_curse_skills"]=7281, - ["mana_reservation_+%_with_skills_that_throw_mines"]=7275, - ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=7276, - ["mana_reservation_efficiency_+%_per_250_total_attributes"]=7279, - ["mana_reservation_efficiency_-2%_per_1"]=1924, - ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=7277, - ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=7278, - ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=7282, - ["manabond_damage_+%"]=7283, - ["manabond_lightning_penetration_%_while_on_low_mana"]=7284, - ["manabond_skill_area_of_effect_+%"]=7285, - ["manifest_dancing_dervish_number_of_additional_copies"]=7286, - ["map_X_bestiary_packs_are_harvest_beasts"]=7287, - ["map_abyss_depths_chance_+%"]=7288, - ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=113, - ["map_abyss_monster_spawn_amount_+%"]=7289, - ["map_additional_number_of_packs_to_choose"]=2018, - ["map_additional_player_maximum_resistances_%"]=2086, - ["map_additional_rare_in_rare_pack_%_chance"]=7290, - ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=7291, - ["map_additional_red_beasts"]=7292, - ["map_adds_X_extra_synthesis_mods"]=7293, - ["map_adds_X_extra_synthesis_special_mods"]=7294, - ["map_addtional_magic_chest_amount"]=1955, - ["map_addtional_rare_chest_amount"]=1956, - ["map_affliction_encounter_boss_chance_+%"]=7295, - ["map_affliction_encounter_monster_depth_+%"]=7296, - ["map_affliction_pack_size_+%"]=7297, - ["map_affliction_reward_kills_+%"]=7298, - ["map_affliction_reward_progress_on_kill_+%"]=7299, - ["map_affliction_secondary_wave_acceleration_+%"]=7300, - ["map_affliction_secondary_wave_delay_ms_+"]=7301, - ["map_all_items_drop_as_gold"]=1960, - ["map_allow_shrines"]=2334, - ["map_always_has_weather"]=2333, - ["map_ambush_chests"]=2327, - ["map_architects_drops_additional_map_currency"]=7302, - ["map_area_contains_arcanists_strongbox"]=7304, - ["map_area_contains_avatar_of_ambush"]=7305, - ["map_area_contains_avatar_of_anarchy"]=7306, - ["map_area_contains_avatar_of_beyond"]=7307, - ["map_area_contains_avatar_of_bloodlines"]=7308, - ["map_area_contains_avatar_of_breach"]=7309, - ["map_area_contains_avatar_of_domination"]=7310, - ["map_area_contains_avatar_of_essence"]=7311, - ["map_area_contains_avatar_of_invasion"]=7312, - ["map_area_contains_avatar_of_nemesis"]=7313, - ["map_area_contains_avatar_of_onslaught"]=7314, - ["map_area_contains_avatar_of_perandus"]=7315, - ["map_area_contains_avatar_of_prophecy"]=7316, - ["map_area_contains_avatar_of_rampage"]=7317, - ["map_area_contains_avatar_of_talisman"]=7318, - ["map_area_contains_avatar_of_tempest"]=7319, - ["map_area_contains_avatar_of_torment"]=7320, - ["map_area_contains_avatar_of_warbands"]=7321, - ["map_area_contains_cartographers_strongbox"]=7322, - ["map_area_contains_currency_chest"]=7323, - ["map_area_contains_gemcutters_strongbox"]=7324, - ["map_area_contains_jewellery_chest"]=7325, - ["map_area_contains_map_chest"]=7326, - ["map_area_contains_metamorphs"]=7327, - ["map_area_contains_perandus_coin_chest"]=7328, - ["map_area_contains_rituals"]=7329, - ["map_area_contains_tormented_embezzler"]=7330, - ["map_area_contains_tormented_seditionist"]=7331, - ["map_area_contains_tormented_vaal_cultist"]=7332, - ["map_area_contains_unique_item_chest"]=7333, - ["map_area_contains_unique_strongbox"]=7334, - ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=7335, - ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=7336, - ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=7337, - ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=7338, - ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=7339, - ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=7340, - ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=7341, - ["map_area_contains_x_rare_monsters_with_inner_treasure"]=7431, - ["map_area_ritual_additional_chance_%"]=7342, - ["map_atlas_influence_type"]=7303, - ["map_base_ground_desecration_damage_to_deal_per_minute"]=2034, - ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2028, - ["map_base_ground_fire_damage_to_deal_per_minute"]=2027, - ["map_bestiary_monster_damage_+%_final"]=7343, - ["map_bestiary_monster_life_+%_final"]=7344, - ["map_betrayal_intelligence_+%"]=7345, - ["map_beyond_demon_always_elite"]=7346, - ["map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge"]=7347, - ["map_beyond_monster_difficulty_tankiness_+%_per_portal_merge"]=7347, - ["map_beyond_portal_chance_+%"]=7348, - ["map_beyond_portal_spawn_additional_demon_%_chance"]=7349, - ["map_beyond_rules"]=2336, - ["map_blight_chest_%_chance_for_additional_drop"]=7350, - ["map_blight_chests_repeat_drops_count"]=7351, - ["map_blight_encounter_spawn_rate_+%"]=7352, - ["map_blight_lane_additional_chest_chance_%"]=7353, - ["map_blight_lane_additional_chests"]=7354, - ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=7355, - ["map_blight_tower_cost_+%"]=7356, - ["map_blight_tower_cost_doubled"]=7357, - ["map_blight_up_to_X_additional_bosses"]=7358, - ["map_blighted_map_encounter_duration_-_sec"]=7359, - ["map_bloodline_packs_drop_x_additional_currency_items"]=7360, - ["map_bloodline_packs_drop_x_additional_rare_items"]=7361, - ["map_blueprint_drop_revealed_chance_%"]=7362, - ["map_boss_accompanied_by_bodyguards"]=7363, - ["map_boss_accompanied_by_harbinger"]=7364, - ["map_boss_area_of_effect_+%"]=2152, - ["map_boss_attack_and_cast_speed_+%"]=2150, - ["map_boss_damage_+%"]=2144, - ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2145, - ["map_boss_dropped_item_quantity_+%"]=7365, - ["map_boss_dropped_unique_items_+"]=7366, - ["map_boss_drops_additional_conqueror_map"]=2147, - ["map_boss_drops_additional_currency_shards"]=7367, - ["map_boss_drops_additional_elder_guardian_map"]=2148, - ["map_boss_drops_additional_shaper_guardian_map"]=2149, - ["map_boss_drops_corrupted_items"]=7368, - ["map_boss_drops_x_additional_vaal_items"]=7373, - ["map_boss_experience_+%_final"]=7369, - ["map_boss_is_possessed"]=7370, - ["map_boss_item_rarity_+%"]=7371, - ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2146, - ["map_boss_maximum_life_+%"]=2151, - ["map_boss_surrounded_by_tormented_spirits"]=7372, - ["map_breach_%_chance_for_1_additional_breach"]=7374, - ["map_breach_%_chance_for_3_additional_breach"]=7375, - ["map_breach_X_additional_rare_monsters"]=7376, - ["map_breach_chance_to_be_esh_+%"]=7377, - ["map_breach_chance_to_be_tul_+%"]=7378, - ["map_breach_chance_to_be_uul_netol_+%"]=7379, - ["map_breach_chance_to_be_xoph_+%"]=7380, - ["map_breach_hands_are_small"]=102, - ["map_breach_has_boss"]=7381, - ["map_breach_has_large_chest"]=7382, - ["map_breach_minimum_radius"]=7383, - ["map_breach_monster_quantity_+%"]=7384, - ["map_breach_monster_splinter_quantity_+%"]=7385, - ["map_breach_monsters_damage_+%"]=134, - ["map_breach_monsters_life_+%"]=126, - ["map_breach_number_of_magic_packs_+%"]=7386, - ["map_breach_rules"]=2328, - ["map_breach_size_+%"]=120, - ["map_breach_splinters_drop_as_stones_permyriad"]=121, - ["map_breach_time_passed_+%"]=114, - ["map_breach_type_override"]=7387, - ["map_breaches_num_additional_chests_to_spawn"]=7388, - ["map_chance_for_area_%_to_contain_harvest"]=7389, - ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=122, - ["map_chance_to_not_consume_sextant_use_%"]=7390, - ["map_chest_amount_+%"]=1957, - ["map_chest_item_quantity_+%"]=2153, - ["map_chest_item_rarity_+%"]=2154, - ["map_chests_all_magic_or_rare"]=7391, - ["map_contains_additional_breaches"]=7392, - ["map_contains_additional_chrysalis_talisman"]=7393, - ["map_contains_additional_clutching_talisman"]=7394, - ["map_contains_additional_fangjaw_talisman"]=7395, - ["map_contains_additional_mandible_talisman"]=7396, - ["map_contains_additional_packs_of_chaos_monsters"]=7397, - ["map_contains_additional_packs_of_cold_monsters"]=7398, - ["map_contains_additional_packs_of_fire_monsters"]=7399, - ["map_contains_additional_packs_of_lightning_monsters"]=7400, - ["map_contains_additional_packs_of_physical_monsters"]=7401, - ["map_contains_additional_packs_of_vaal_monsters"]=7402, - ["map_contains_additional_three_rat_talisman"]=7403, - ["map_contains_additional_tormented_betrayers"]=7404, - ["map_contains_additional_tormented_graverobbers"]=7405, - ["map_contains_additional_tormented_heretics"]=7406, - ["map_contains_additional_unique_talisman"]=7407, - ["map_contains_additional_writhing_talisman"]=7408, - ["map_contains_buried_treasure"]=1958, - ["map_contains_chayula_breach"]=7409, - ["map_contains_citadel"]=7410, - ["map_contains_cleansed_boss"]=7411, - ["map_contains_corrupted_strongbox"]=7412, - ["map_contains_creeping_agony"]=7413, - ["map_contains_keepers_of_the_trove_bloodline_pack"]=7414, - ["map_contains_master"]=7415, - ["map_contains_nevalis_monkey"]=7416, - ["map_contains_perandus_boss"]=7417, - ["map_contains_talisman_boss_with_higher_tier"]=7418, - ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=7419, - ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=7419, - ["map_contains_uul_netol_breach"]=7420, - ["map_contains_wealthy_pack"]=7421, - ["map_contains_x_additional_animated_weapon_packs"]=7422, - ["map_contains_x_additional_healing_packs"]=7423, - ["map_contains_x_additional_magic_packs"]=7424, - ["map_contains_x_additional_normal_packs"]=7425, - ["map_contains_x_additional_packs_on_their_own_team"]=7426, - ["map_contains_x_additional_packs_that_convert_on_death"]=7427, - ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=1959, - ["map_contains_x_additional_poison_packs"]=7428, - ["map_contains_x_additional_rare_packs"]=7429, - ["map_contains_x_fewer_portals"]=7430, - ["map_contracts_drop_with_additional_special_implicit_%_chance"]=7432, - ["map_cowards_trial_extra_ghosts"]=7433, - ["map_cowards_trial_extra_oriath_citizens"]=7434, - ["map_cowards_trial_extra_phantasms"]=7435, - ["map_cowards_trial_extra_raging_spirits"]=7436, - ["map_cowards_trial_extra_rhoas"]=7437, - ["map_cowards_trial_extra_skeleton_cannons"]=7438, - ["map_cowards_trial_extra_zombies"]=7439, - ["map_custom_league_damage_taken_+%_final"]=7440, - ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=7442, - ["map_damage_+%_per_poison_stack"]=7441, - ["map_damage_taken_+%_from_beyond_monsters"]=7443, - ["map_damage_taken_while_stationary_+%"]=7444, - ["map_damage_while_stationary_+%"]=7445, - ["map_death_and_taxes_boss_drops_additional_currency"]=7446, - ["map_delirium_additional_reward_type_chance_%"]=7447, - ["map_delirium_doodads_+%_final"]=7448, - ["map_delirium_fog_never_dissipates"]=7449, - ["map_delirium_splinter_stack_size_+%"]=7450, - ["map_delve_rules"]=7451, - ["map_display_area_contains_unbridged_gaps_to_cross"]=2016, - ["map_display_strongbox_monsters_are_enraged"]=7453, - ["map_display_unique_boss_drops_X_maps"]=2055, - ["map_divination_card_drop_chance_+%"]=7454, - ["map_doesnt_consume_sextant_use"]=7455, - ["map_dropped_maps_are_corrupted_with_8_mods"]=7456, - ["map_dropped_maps_are_duplicated_chance_permillage"]=7457, - ["map_duplicate_all_rare_monsters"]=1961, - ["map_duplicate_captured_beasts_chance_%"]=7458, - ["map_duplicate_essence_monsters_with_shrieking_essence"]=135, - ["map_duplicate_x_rare_monsters"]=7459, - ["map_duplicate_x_synthesised_rare_monsters"]=7460, - ["map_elder_boss_variation"]=7461, - ["map_elder_rare_chance_+%"]=7462, - ["map_elemental_weakness_curse_zones"]=2078, - ["map_endgame_affliction_reward_1"]=7463, - ["map_endgame_affliction_reward_2"]=7464, - ["map_endgame_affliction_reward_3"]=7465, - ["map_endgame_affliction_reward_4"]=7466, - ["map_endgame_affliction_reward_5"]=7467, - ["map_endgame_affliction_reward_6"]=7468, - ["map_endgame_affliction_reward_7"]=7469, - ["map_endgame_affliction_reward_8"]=7470, - ["map_endgame_affliction_reward_9"]=7471, - ["map_endgame_fog_depth"]=7472, - ["map_enfeeble_curse_zones"]=2074, - ["map_equipment_drops_identified"]=7473, - ["map_essence_corruption_cannot_release_monsters"]=127, - ["map_essence_monolith_contains_additional_essence_of_corruption"]=7474, - ["map_essence_monolith_contains_essence_of_corruption_%"]=7475, - ["map_essence_monsters_are_corrupted"]=7476, - ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=137, - ["map_essence_monsters_have_additional_essences"]=7477, - ["map_essence_monsters_higher_tier"]=7478, - ["map_essences_are_1_tier_higher_chance_%"]=123, - ["map_essences_contains_rogue_exiles"]=115, - ["map_expedition_artifact_quantity_+%"]=7479, - ["map_expedition_chest_double_drops_chance_%"]=7480, - ["map_expedition_chest_marker_count_+"]=7481, - ["map_expedition_common_chest_marker_count_+"]=7482, - ["map_expedition_elite_marker_count_+%"]=7483, - ["map_expedition_encounter_additional_chance_%"]=7484, - ["map_expedition_epic_chest_marker_count_+"]=7485, - ["map_expedition_explosion_radius_+%"]=7486, - ["map_expedition_explosives_+%"]=7487, - ["map_expedition_extra_relic_suffix_chance_%"]=7488, - ["map_expedition_league"]=7489, - ["map_expedition_maximum_placement_distance_+%"]=7490, - ["map_expedition_monster_spawn_with_half_life"]=7491, - ["map_expedition_number_of_monster_markers_+%"]=7492, - ["map_expedition_rare_monsters_+%"]=7493, - ["map_expedition_relic_mod_effect_+%"]=7494, - ["map_expedition_relics_+"]=7495, - ["map_expedition_relics_+%"]=7496, - ["map_expedition_saga_additional_terrain_features"]=7497, - ["map_expedition_saga_contains_boss"]=7498, - ["map_expedition_twinned_elites"]=7499, - ["map_expedition_uncommon_chest_marker_count_+"]=7500, - ["map_expedition_vendor_reroll_currency_quantity_+%"]=7501, - ["map_expedition_x_extra_relic_suffixes"]=7502, - ["map_experience_gain_+%"]=1962, - ["map_extra_gold_piles_chance_%"]=1963, - ["map_extra_monoliths"]=7503, - ["map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%"]=7504, - ["map_first_invasion_boss_killed_drops_x_additional_currency"]=7505, - ["map_first_strongbox_contains_x_additional_rare_monsters"]=7506, - ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=7507, - ["map_fishy_effect_0"]=7452, - ["map_fishy_effect_1"]=7452, - ["map_fishy_effect_2"]=7452, - ["map_fishy_effect_3"]=7452, - ["map_fixed_seed"]=2040, - ["map_flask_charges_recovered_per_3_seconds_%"]=7508, - ["map_force_side_area"]=7509, - ["map_force_stone_circle"]=2064, - ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=7510, - ["map_gauntlet_unique_monster_life_+%"]=7511, - ["map_gold_+%"]=1964, - ["map_grants_players_level_20_dash_skill"]=7512, - ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=7513, - ["map_ground_haste_action_speed_+%"]=7514, - ["map_ground_ice"]=2029, - ["map_ground_ice_base_magnitude"]=2030, - ["map_ground_lightning"]=2031, - ["map_ground_lightning_base_magnitude"]=2032, - ["map_ground_tar_movement_speed_+%"]=2033, - ["map_harbinger_additional_currency_shard_stack_chance_%"]=7515, - ["map_harbinger_cooldown_speed_+%"]=103, - ["map_harbinger_portal_drops_additional_fragments"]=7516, - ["map_harbingers_drops_additional_currency_shards"]=7517, - ["map_harvest_crafting_outcomes_X_lucky_rolls"]=7518, - ["map_harvest_double_lifeforce_dropped"]=7519, - ["map_harvest_monster_life_+%_final_from_sextant"]=7520, - ["map_harvest_seed_t2_upgrade_%_chance"]=124, - ["map_harvest_seed_t3_upgrade_%_chance"]=128, - ["map_harvest_seeds_1_of_every_2_plot_type_override"]=7521, - ["map_harvest_seeds_are_at_least_t2"]=116, - ["map_has_X_seconds_between_waves"]=2156, - ["map_has_X_waves_of_monsters"]=2155, - ["map_has_monoliths"]=7522, - ["map_has_x%_quality"]=7523, - ["map_heist_contract_additional_reveals_granted"]=7524, - ["map_heist_contract_chest_no_rewards_%_chance"]=7525, - ["map_heist_contract_npc_items_cannot_drop"]=7526, - ["map_heist_contract_primary_target_value_+%_final"]=7527, - ["map_heist_monster_life_+%_final_from_sextant"]=7528, - ["map_heist_npc_perks_effect_+%_final"]=7529, - ["map_hellscape_additional_boss"]=1049, - ["map_hellscape_blood_consumed_+%_final"]=1029, - ["map_hellscape_fire_damage_taken_when_switching"]=1035, - ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1031, - ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1030, - ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1032, - ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1033, - ["map_hellscape_gimmick_shift_randomly"]=1034, - ["map_hellscape_item_drop_quantity_+%"]=1050, - ["map_hellscape_item_drop_rarity_+%"]=1051, - ["map_hellscape_lightning_damage_taken_when_switching"]=1036, - ["map_hellscape_monster_damage_+%_final"]=1037, - ["map_hellscape_monster_damage_taken_+%_final"]=1038, - ["map_hellscape_monster_life_+%_final"]=1039, - ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1040, - ["map_hellscape_monster_slain_experience_+%_final"]=1052, - ["map_hellscape_pack_size_+%"]=1053, - ["map_hellscape_physical_damage_taken_when_switching"]=1041, - ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1054, - ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1055, - ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1056, - ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1057, - ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1058, - ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1059, - ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1060, - ["map_hellscape_rare_monster_drop_additional_essence"]=1061, - ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1062, - ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1063, - ["map_hellscape_rare_monster_drop_additional_gem"]=1064, - ["map_hellscape_rare_monster_drop_additional_incubator"]=1065, - ["map_hellscape_rare_monster_drop_additional_influence_item"]=1066, - ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1067, - ["map_hellscape_rare_monster_drop_additional_map_item"]=1068, - ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1069, - ["map_hellscape_rare_monster_drop_additional_scarab"]=1070, - ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1071, - ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1072, - ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1073, - ["map_hellscape_rare_monster_drop_additional_unique_item"]=1074, - ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1075, - ["map_hellscaping_speed_+%"]=6511, - ["map_imprisoned_monsters_action_speed_+%"]=7530, - ["map_imprisoned_monsters_damage_+%"]=7531, - ["map_imprisoned_monsters_damage_taken_+%"]=7532, - ["map_incursion_architects_drop_incursion_rare_chance_%"]=104, - ["map_incursion_boss_possessed_by_tormented_arsonist"]=7533, - ["map_incursion_boss_possessed_by_tormented_blasphemer"]=7534, - ["map_incursion_boss_possessed_by_tormented_cannibal"]=7535, - ["map_incursion_boss_possessed_by_tormented_charlatan"]=7536, - ["map_incursion_boss_possessed_by_tormented_corrupter"]=7537, - ["map_incursion_boss_possessed_by_tormented_counterfeiter"]=7538, - ["map_incursion_boss_possessed_by_tormented_cutthroat"]=7539, - ["map_incursion_boss_possessed_by_tormented_embezzler"]=7540, - ["map_incursion_boss_possessed_by_tormented_experimenter"]=7541, - ["map_incursion_boss_possessed_by_tormented_fisherman"]=7542, - ["map_incursion_boss_possessed_by_tormented_freezer"]=7543, - ["map_incursion_boss_possessed_by_tormented_librarian"]=7544, - ["map_incursion_boss_possessed_by_tormented_martyr"]=7545, - ["map_incursion_boss_possessed_by_tormented_mutilator"]=7546, - ["map_incursion_boss_possessed_by_tormented_necromancer"]=7547, - ["map_incursion_boss_possessed_by_tormented_poisoner"]=7548, - ["map_incursion_boss_possessed_by_tormented_rogue"]=7549, - ["map_incursion_boss_possessed_by_tormented_smuggler"]=7550, - ["map_incursion_boss_possessed_by_tormented_spy"]=7551, - ["map_incursion_boss_possessed_by_tormented_thief"]=7552, - ["map_incursion_boss_possessed_by_tormented_thug"]=7553, - ["map_incursion_boss_possessed_by_tormented_warlord"]=7554, - ["map_incursion_memory_line_monster_damage_+%_final"]=3939, - ["map_incursion_memory_line_monster_life_+%_final"]=3938, - ["map_incursion_spawn_large_caustic_plants"]=7555, - ["map_incursion_spawn_parasitic_caustic_plants"]=7556, - ["map_invasion_bosses_are_twinned"]=7557, - ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=7558, - ["map_invasion_bosses_dropped_items_are_fully_linked"]=7559, - ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=7560, - ["map_invasion_monster_packs"]=2330, - ["map_invasion_monsters_guarded_by_x_magic_packs"]=7561, - ["map_is_branchy"]=2010, - ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=7562, - ["map_item_drop_quantity_+%"]=1965, - ["map_item_drop_rarity_+%"]=1966, - ["map_item_found_rarity_+%_per_15_rampage_stacks"]=7563, - ["map_item_level_override"]=831, - ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=7564, - ["map_items_drop_corrupted"]=2724, - ["map_items_drop_corrupted_%"]=2725, - ["map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds"]=7565, - ["map_labyrinth_izaro_area_of_effect_+%"]=7566, - ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=7567, - ["map_labyrinth_izaro_damage_+%"]=7568, - ["map_labyrinth_izaro_life_+%"]=7569, - ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=7570, - ["map_labyrinth_monsters_damage_+%"]=7571, - ["map_labyrinth_monsters_life_+%"]=7572, - ["map_leaguestone_area_contains_x_additional_leaguestones"]=7573, - ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=7574, - ["map_leaguestone_contains_warband_leader"]=7575, - ["map_leaguestone_explicit_warband_type_override"]=7576, - ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=7577, - ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=7578, - ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=7579, - ["map_leaguestone_monolith_contains_essence_type"]=7580, - ["map_leaguestone_override_base_num_breaches"]=7581, - ["map_leaguestone_override_base_num_invasion_bosses"]=7582, - ["map_leaguestone_override_base_num_monoliths"]=7583, - ["map_leaguestone_override_base_num_perandus_chests"]=7584, - ["map_leaguestone_override_base_num_prophecy_coins"]=7585, - ["map_leaguestone_override_base_num_rogue_exiles"]=7586, - ["map_leaguestone_override_base_num_shrines"]=7587, - ["map_leaguestone_override_base_num_strongboxes"]=7588, - ["map_leaguestone_override_base_num_talismans"]=7589, - ["map_leaguestone_override_base_num_tormented_spirits"]=7590, - ["map_leaguestone_override_base_num_warband_packs"]=7591, - ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=7592, - ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=7593, - ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=7594, - ["map_leaguestone_shrine_monster_rarity_override"]=7595, - ["map_leaguestone_shrine_override_type"]=7596, - ["map_leaguestone_strongboxes_rarity_override"]=7597, - ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=7599, - ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=7600, - ["map_leaguestone_x_monsters_spawn_abaxoth"]=7601, - ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=7602, - ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=7603, - ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=7604, - ["map_legion_league_extra_spawns"]=7605, - ["map_legion_league_force_general"]=7606, - ["map_legion_league_force_war_chest"]=7607, - ["map_legion_monster_life_+%_final_from_sextant"]=7608, - ["map_legion_monster_splinter_emblem_drops_duplicated"]=7609, - ["map_level_+"]=7610, - ["map_magic_chest_amount_+%"]=1967, - ["map_magic_items_drop_as_normal"]=7611, - ["map_magic_monster_life_regeneration_rate_per_minute_%"]=3908, - ["map_magic_monsters_are_maimed"]=7612, - ["map_magic_monsters_damage_taken_+%"]=7613, - ["map_magic_pack_size_+%"]=1968, - ["map_metamorph_all_metamorphs_have_rewards"]=7614, - ["map_metamorph_boss_drops_additional_itemised_organs"]=7615, - ["map_metamorph_catalyst_drops_duplicated"]=7616, - ["map_metamorph_itemised_boss_min_rewards"]=7617, - ["map_metamorph_itemised_boss_more_difficult"]=7618, - ["map_metamorph_life_+%_final_from_sextant"]=7619, - ["map_metamorphosis_league"]=7620, - ["map_mini_monolith_monsters_are_magic"]=7621, - ["map_minimap_revealed"]=2041, - ["map_monolith_chance_%"]=7623, - ["map_monolith_chance_+%"]=7622, - ["map_monster_additional_baron_packs"]=1969, - ["map_monster_additional_beasts_packs"]=1970, - ["map_monster_additional_bramble_packs"]=1971, - ["map_monster_additional_doryani_packs"]=1972, - ["map_monster_additional_ezomyte_packs"]=1973, - ["map_monster_additional_faridun_packs"]=1974, - ["map_monster_additional_perennial_packs"]=1975, - ["map_monster_additional_sanctified_packs"]=7624, - ["map_monster_additional_undead_packs"]=1976, - ["map_monster_additional_vaal_packs"]=1977, - ["map_monster_and_player_onslaught_effect_+%"]=7625, - ["map_monster_attack_cast_and_movement_speed_+%"]=7626, - ["map_monster_beyond_portal_chance_+%"]=7627, - ["map_monster_curse_effect_on_self_+%"]=7628, - ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=7629, - ["map_monster_damage_taken_+%_while_possessed"]=7630, - ["map_monster_defences_+%"]=2536, - ["map_monster_drop_higher_level_gear"]=3237, - ["map_monster_melee_attacks_apply_random_curses"]=2134, - ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2135, - ["map_monster_no_drops"]=2142, - ["map_monster_non_damaging_ailment_effect_+%_on_self"]=7631, - ["map_monster_skills_chain_X_additional_times"]=2137, - ["map_monster_slain_experience_+%"]=7633, - ["map_monster_tre_+%"]=1978, - ["map_monster_unaffected_by_shock"]=2095, - ["map_monsters_%_all_damage_to_gain_as_chaos"]=2127, - ["map_monsters_%_all_damage_to_gain_as_cold"]=2123, - ["map_monsters_%_all_damage_to_gain_as_fire"]=2121, - ["map_monsters_%_all_damage_to_gain_as_lightning"]=2125, - ["map_monsters_%_chance_to_inflict_status_ailments"]=7687, - ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2120, - ["map_monsters_%_physical_damage_to_convert_to_cold"]=2118, - ["map_monsters_%_physical_damage_to_convert_to_fire"]=2117, - ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2119, - ["map_monsters_%_physical_damage_to_gain_as_chaos"]=2128, - ["map_monsters_%_physical_damage_to_gain_as_cold"]=2124, - ["map_monsters_%_physical_damage_to_gain_as_fire"]=2122, - ["map_monsters_%_physical_damage_to_gain_as_lightning"]=2126, - ["map_monsters_accuracy_rating_+%"]=7634, - ["map_monsters_action_speed_-%"]=7635, - ["map_monsters_add_endurance_charge_on_hit_%"]=7636, - ["map_monsters_add_frenzy_charge_on_hit_%"]=7637, - ["map_monsters_add_power_charge_on_hit_%"]=7638, - ["map_monsters_additional_chaos_resistance"]=7639, - ["map_monsters_additional_cold_resistance"]=2112, - ["map_monsters_additional_dexterity_ratio_%_for_evasion"]=7640, - ["map_monsters_additional_elemental_resistance"]=7641, - ["map_monsters_additional_fire_resistance"]=2111, - ["map_monsters_additional_lightning_resistance"]=2113, - ["map_monsters_additional_maximum_all_elemental_resistances_%"]=7642, - ["map_monsters_additional_number_of_projecitles"]=2110, - ["map_monsters_additional_physical_damage_reduction"]=2114, - ["map_monsters_additional_strength_ratio_%_for_armour"]=7643, - ["map_monsters_ailment_threshold_+%"]=7644, - ["map_monsters_all_damage_can_chill"]=7645, - ["map_monsters_all_damage_can_freeze"]=7646, - ["map_monsters_all_damage_can_ignite"]=7647, - ["map_monsters_all_damage_can_poison"]=7648, - ["map_monsters_all_damage_can_shock"]=7649, - ["map_monsters_always_crit"]=7650, - ["map_monsters_always_hit"]=7651, - ["map_monsters_always_ignite"]=7652, - ["map_monsters_are_converted_on_kill"]=7653, - ["map_monsters_are_hexproof"]=2140, - ["map_monsters_are_immune_to_curses"]=2139, - ["map_monsters_area_of_effect_+%"]=2091, - ["map_monsters_armour_break_physical_damage_%_dealt_as_armour_break"]=7654, - ["map_monsters_attack_speed_+%"]=2106, - ["map_monsters_attacks_inflict_bleeding_on_hit"]=7676, - ["map_monsters_avoid_ailments_%"]=2096, - ["map_monsters_avoid_elemental_ailments_%"]=2097, - ["map_monsters_avoid_freeze_and_chill_%"]=2092, - ["map_monsters_avoid_ignite_%"]=2093, - ["map_monsters_avoid_poison_bleed_impale_%"]=7655, - ["map_monsters_avoid_shock_%"]=2094, - ["map_monsters_base_bleed_duration_+%"]=7656, - ["map_monsters_base_block_%"]=7657, - ["map_monsters_base_chance_to_freeze_%"]=7658, - ["map_monsters_base_chance_to_ignite_%"]=7659, - ["map_monsters_base_chance_to_shock_%"]=7660, - ["map_monsters_base_poison_duration_+%"]=7661, - ["map_monsters_base_self_critical_strike_multiplier_-%"]=3253, - ["map_monsters_base_spell_block_%"]=7662, - ["map_monsters_cannot_be_leeched_from"]=2100, - ["map_monsters_cannot_be_stunned"]=2115, - ["map_monsters_cannot_be_taunted"]=7663, - ["map_monsters_cast_speed_+%"]=2107, - ["map_monsters_chance_to_blind_on_hit_%"]=7664, - ["map_monsters_chance_to_impale_%"]=7665, - ["map_monsters_chance_to_inflict_bleeding_%"]=7666, - ["map_monsters_chance_to_inflict_brittle_%"]=7667, - ["map_monsters_chance_to_inflict_sapped_%"]=7668, - ["map_monsters_chance_to_poison_on_hit_%"]=7669, - ["map_monsters_chance_to_scorch_%"]=7670, - ["map_monsters_critical_strike_chance_+%"]=2098, - ["map_monsters_critical_strike_multiplier_+"]=2099, - ["map_monsters_curse_effect_+%"]=2141, - ["map_monsters_curse_effect_on_self_+%_final"]=7671, - ["map_monsters_damage_+%"]=2103, - ["map_monsters_damage_taken_+%"]=7672, - ["map_monsters_drop_ground_fire_on_death_base_radius"]=2138, - ["map_monsters_drop_no_equipment"]=7673, - ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=7674, - ["map_monsters_energy_shield_leech_resistance_permyriad"]=3937, - ["map_monsters_freeze_duration_+%"]=7675, - ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2131, - ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2130, - ["map_monsters_gain_x_power_charges_every_20_seconds"]=2132, - ["map_monsters_global_poison_on_hit"]=7677, - ["map_monsters_have_onslaught"]=2104, - ["map_monsters_hit_damage_freeze_multiplier_+%"]=7678, - ["map_monsters_hit_damage_stun_multiplier_+%"]=7679, - ["map_monsters_ignite_chance_+%"]=7680, - ["map_monsters_ignite_duration_+%"]=7681, - ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2133, - ["map_monsters_life_+%"]=2090, - ["map_monsters_life_leech_resistance_permyriad"]=2101, - ["map_monsters_maim_on_hit_%_chance"]=7682, - ["map_monsters_mana_leech_resistance_permyriad"]=2102, - ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=7683, - ["map_monsters_movement_speed_+%"]=2105, - ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=7684, - ["map_monsters_near_shrines_are_chilled"]=7685, - ["map_monsters_penetrate_elemental_resistances_%"]=7686, - ["map_monsters_physical_damage_%_to_gain_as_random_element"]=2129, - ["map_monsters_poison_on_hit"]=2116, - ["map_monsters_reduce_enemy_chaos_resistance_%"]=7688, - ["map_monsters_reduce_enemy_cold_resistance_%"]=7689, - ["map_monsters_reduce_enemy_fire_resistance_%"]=7690, - ["map_monsters_reduce_enemy_lightning_resistance_%"]=7691, - ["map_monsters_reflect_%_elemental_damage"]=2109, - ["map_monsters_reflect_%_physical_damage"]=2108, - ["map_monsters_reflect_curses"]=2136, - ["map_monsters_remove_%_of_mana_on_hit"]=7694, - ["map_monsters_remove_charges_on_hit_%"]=7692, - ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=7693, - ["map_monsters_shock_chance_+%"]=7695, - ["map_monsters_shock_effect_+%"]=7696, - ["map_monsters_skill_speed_+%"]=7632, - ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=7697, - ["map_monsters_spell_damage_%_suppressed"]=7698, - ["map_monsters_spell_suppression_chance_%"]=7699, - ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=7700, - ["map_monsters_steal_charges"]=7701, - ["map_monsters_stun_threshold_+%"]=7702, - ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=7703, - ["map_monsters_unaffected_by_curses"]=7704, - ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=7705, - ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=7706, - ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=7707, - ["map_monstrous_treasure_no_monsters"]=7708, - ["map_movement_velocity_+%_per_poison_stack"]=7709, - ["map_nemesis_dropped_items_+"]=7710, - ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=7711, - ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=7712, - ["map_no_experience"]=7762, - ["map_no_magic_items_drop"]=7713, - ["map_no_rare_items_drop"]=7714, - ["map_no_refills_in_town"]=2042, - ["map_no_stashes"]=7715, - ["map_no_uniques_drop_randomly"]=7716, - ["map_no_vendors"]=7717, - ["map_non_unique_equipment_drops_as_sell_price"]=2723, - ["map_non_unique_items_drop_normal"]=7718, - ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=7719, - ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2067, - ["map_normal_items_drop_as_magic"]=7720, - ["map_normal_monster_life_regeneration_rate_per_minute_%"]=3907, - ["map_nuke_everything"]=7721, - ["map_num_extra_abysses"]=7722, - ["map_num_extra_blights_"]=7723, - ["map_num_extra_gloom_shrines"]=7724, - ["map_num_extra_harbingers"]=7725, - ["map_num_extra_invasion_bosses"]=2331, - ["map_num_extra_resonating_shrines"]=7726, - ["map_num_extra_shrines"]=2058, - ["map_num_extra_strongboxes"]=2066, - ["map_number_of_additional_mods"]=7727, - ["map_number_of_additional_prefixes"]=7728, - ["map_number_of_additional_silver_coin_drops"]=7729, - ["map_number_of_additional_suffixes"]=7730, - ["map_number_of_harbinger_portals"]=91, - ["map_number_of_magic_packs_+%"]=1979, - ["map_number_of_rare_packs_+%"]=1980, - ["map_on_complete_drop_x_additional_maps"]=7731, - ["map_owner_sulphite_gained_+%"]=7732, - ["map_pack_size_+%"]=1981, - ["map_packs_are_abomination_monsters"]=7733, - ["map_packs_are_animals"]=2048, - ["map_packs_are_bandits"]=2046, - ["map_packs_are_blackguards"]=7734, - ["map_packs_are_demons"]=2049, - ["map_packs_are_ghosts"]=7735, - ["map_packs_are_goatmen"]=2047, - ["map_packs_are_humanoids"]=2050, - ["map_packs_are_kitava"]=7736, - ["map_packs_are_lunaris"]=7737, - ["map_packs_are_sea_witches_and_spawn"]=2051, - ["map_packs_are_skeletons"]=2045, - ["map_packs_are_solaris"]=7738, - ["map_packs_are_spiders"]=7739, - ["map_packs_are_str_mission_totems"]=2044, - ["map_packs_are_totems"]=2043, - ["map_packs_are_undead_and_necromancers"]=2052, - ["map_packs_are_vaal"]=7740, - ["map_packs_fire_projectiles"]=2053, - ["map_packs_have_pop_up_traps"]=3900, - ["map_perandus_guards_are_rare"]=7741, - ["map_perandus_monsters_drop_perandus_coin_stack_%"]=7742, - ["map_player_accuracy_rating_+%_final"]=7743, - ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1042, - ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=7744, - ["map_player_base_chaos_damage_taken_per_minute"]=2068, - ["map_player_block_chance_%_in_hellscape"]=1043, - ["map_player_buff_time_passed_+%_only_buff_category"]=7745, - ["map_player_cannot_block_attacks"]=7746, - ["map_player_cannot_block_spells"]=7747, - ["map_player_cannot_expose"]=2070, - ["map_player_cannot_suppress_spell_damage"]=7748, - ["map_player_chance_to_evade_attacks_%_in_hellscape"]=1044, - ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=7749, - ["map_player_charges_gained_+%"]=7750, - ["map_player_cooldown_speed_+%_final"]=7751, - ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2865, - ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=7752, - ["map_player_curse_effect_on_self_+%"]=7753, - ["map_player_damage_+%_vs_breach_monsters"]=7754, - ["map_player_damage_taken_+%_vs_breach_monsters"]=7755, - ["map_player_damage_taken_+%_while_rampaging"]=7756, - ["map_player_disable_soul_gain_prevention"]=7757, + ["local_maximum_added_chaos_damage"]=1247, + ["local_maximum_added_cold_damage"]=846, + ["local_maximum_added_fire_damage"]=845, + ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4400, + ["local_maximum_added_lightning_damage"]=847, + ["local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_6_seconds_up_to_X"]=7235, + ["local_maximum_added_physical_damage"]=844, + ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4407, + ["local_maximum_energy_shield_+%_if_item_corrupted"]=7236, + ["local_maximum_life_+%_if_item_corrupted"]=7238, + ["local_maximum_life_+%_per_rune_or_soul_core"]=7239, + ["local_maximum_life_per_2%_quality"]=7237, + ["local_maximum_mana_+%_per_rune_or_soul_core"]=7241, + ["local_maximum_mana_per_2%_quality"]=7240, + ["local_maximum_prefixes_allowed_+"]=41, + ["local_maximum_quality_+"]=7243, + ["local_maximum_quality_is_%"]=7242, + ["local_maximum_sockets_+"]=81, + ["local_maximum_suffixes_allowed_+"]=42, + ["local_minimum_added_chaos_damage"]=1247, + ["local_minimum_added_cold_damage"]=846, + ["local_minimum_added_fire_damage"]=845, + ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4400, + ["local_minimum_added_lightning_damage"]=847, + ["local_minimum_added_physical_damage"]=844, + ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4407, + ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7244, + ["local_movement_speed_+%_if_item_corrupted"]=7245, + ["local_no_attribute_requirements"]=837, + ["local_no_critical_strike_multiplier"]=7246, + ["local_no_critical_strike_multiplier_during_flask_effect"]=778, + ["local_no_energy_shield"]=838, + ["local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon"]=3822, + ["local_number_of_bloodworms_to_spawn_on_flask_use"]=697, + ["local_one_socket_each_colour_only"]=82, + ["local_physical_damage_%_to_convert_to_a_random_element"]=3940, + ["local_physical_damage_+%"]=843, + ["local_physical_damage_reduction_rating_+%"]=856, + ["local_poison_duration_+%_during_flask_effect"]=779, + ["local_poison_effect_+%"]=839, + ["local_poison_on_critical_strike_chance_%"]=7247, + ["local_poison_on_hit"]=2157, + ["local_poison_on_hit_%"]=7248, + ["local_projectile_speed_+%"]=7249, + ["local_quality_does_not_increase_damage"]=1605, + ["local_quality_does_not_increase_defences"]=1606, + ["local_quantity_of_sockets_+%"]=1611, + ["local_random_support_gem_index"]=338, + ["local_random_support_gem_index_1"]=339, + ["local_random_support_gem_level"]=338, + ["local_random_support_gem_level_1"]=339, + ["local_recharge_on_crit"]=634, + ["local_recharge_on_crit_%"]=635, + ["local_recharge_on_demon_killed"]=636, + ["local_recharge_on_take_crit"]=637, + ["local_reload_speed_+%"]=941, + ["local_requirements_%_to_convert_to_dexterity"]=7250, + ["local_requirements_%_to_convert_to_intelligence"]=7251, + ["local_requirements_%_to_convert_to_strength"]=7252, + ["local_resist_all_elements_%_if_item_corrupted"]=7253, + ["local_resist_all_elements_+%_per_rune_or_soul_core"]=7254, + ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2340, + ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2327, + ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2341, + ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7255, + ["local_right_ring_slot_curse_effect_on_self_+%"]=2342, + ["local_right_ring_slot_energy_shield"]=2329, + ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2343, + ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2344, + ["local_right_ring_slot_maximum_mana"]=2328, + ["local_right_ring_slot_minion_damage_taken_+%"]=2345, + ["local_right_ring_slot_no_mana_regeneration"]=2326, + ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7256, + ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2387, + ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7257, + ["local_right_ring_slot_skill_effect_duration_+%"]=2346, + ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7258, + ["local_ring_attack_speed_+%_final"]=7259, + ["local_ring_burning_damage_+%_final"]=7260, + ["local_ring_disable_other_ring"]=1420, + ["local_ring_duplicate_other_ring"]=2518, + ["local_ring_nova_spells_area_of_effect_+%_final"]=7261, + ["local_rune_effect_+%"]=7262, + ["local_self_bleed_duration_+%_during_flask_effect"]=780, + ["local_self_chill_effect_+%_during_flask_effect"]=781, + ["local_self_curse_effect_+%_during_flask_effect"]=782, + ["local_self_freeze_duration_+%_during_flask_effect"]=783, + ["local_self_ignite_duration_+%_during_flask_effect"]=784, + ["local_self_poison_duration_+%_during_flask_effect"]=785, + ["local_self_shock_effect_+%_during_flask_effect"]=786, + ["local_sentinel_drone_difficulty_+%"]=7263, + ["local_shield_double_stun_threshold_while_active_blocking"]=7264, + ["local_smoke_ground_on_flask_use_radius"]=676, + ["local_socketed_abyss_jewel_effect_+%"]=189, + ["local_socketed_active_skill_gem_level_+"]=163, + ["local_socketed_active_skill_gem_quality_+"]=174, + ["local_socketed_area_of_effect_gem_level_+"]=149, + ["local_socketed_area_of_effect_gem_quality_+"]=175, + ["local_socketed_aura_gem_level_+"]=154, + ["local_socketed_aura_gem_quality_+"]=176, + ["local_socketed_bow_gem_level_+"]=151, + ["local_socketed_bow_gem_quality_+"]=177, + ["local_socketed_chaos_gem_level_+"]=146, + ["local_socketed_chaos_gem_quality_+"]=178, + ["local_socketed_cold_gem_level_+"]=144, + ["local_socketed_cold_gem_quality_+"]=179, + ["local_socketed_curse_gem_level_+"]=157, + ["local_socketed_dexterity_gem_level_+"]=133, + ["local_socketed_dexterity_gem_quality_+"]=180, + ["local_socketed_duration_gem_level_+"]=148, + ["local_socketed_elemental_gem_level_+"]=181, + ["local_socketed_fire_gem_level_+"]=142, + ["local_socketed_fire_gem_quality_+"]=182, + ["local_socketed_gem_level_+"]=137, + ["local_socketed_gem_quality_+"]=172, + ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=141, + ["local_socketed_gems_in_green_sockets_get_quality_%"]=140, + ["local_socketed_gems_in_red_sockets_get_level_+"]=139, + ["local_socketed_golem_gem_level_+"]=171, + ["local_socketed_herald_gem_level_+"]=155, + ["local_socketed_hex_gem_level_+"]=158, + ["local_socketed_intelligence_gem_level_+"]=135, + ["local_socketed_intelligence_gem_quality_+"]=183, + ["local_socketed_items_effect_+%"]=7265, + ["local_socketed_lightning_gem_level_+"]=145, + ["local_socketed_lightning_gem_quality_+"]=184, + ["local_socketed_melee_gem_level_+"]=152, + ["local_socketed_melee_gem_quality_+"]=185, + ["local_socketed_minion_gem_level_+"]=153, + ["local_socketed_minion_gem_quality_+"]=186, + ["local_socketed_movement_gem_level_+"]=156, + ["local_socketed_non_vaal_gem_level_+"]=164, + ["local_socketed_projectile_gem_level_+"]=150, + ["local_socketed_projectile_gem_quality_+"]=187, + ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=138, + ["local_socketed_spell_gem_level_+"]=147, + ["local_socketed_strength_gem_level_+"]=132, + ["local_socketed_strength_gem_quality_+"]=188, + ["local_socketed_support_gem_level_+"]=162, + ["local_socketed_support_gem_quality_+"]=173, + ["local_socketed_trap_and_mine_gem_level_+"]=160, + ["local_socketed_trap_gem_level_+"]=159, + ["local_socketed_vaal_gem_level_+"]=161, + ["local_socketed_warcry_gem_level_+"]=165, + ["local_soul_core_effect_+%"]=7266, + ["local_spell_damage_+%_if_item_corrupted"]=7267, + ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7268, + ["local_spirit"]=862, + ["local_spirit_+%"]=863, + ["local_spirit_+_per_rune_or_soul_core"]=7269, + ["local_strength_and_intelligence_requirement_+"]=840, + ["local_strength_per_2%_quality"]=7270, + ["local_strength_requirement_+"]=841, + ["local_strength_requirement_+%"]=842, + ["local_stun_threshold_+_per_rune_or_soul_core"]=7271, + ["local_stun_threshold_reduction_+%"]=2185, + ["local_support_gem_max_skill_level_requirement_to_support"]=2489, + ["local_tablet_make_maps_in_radius_available"]=7272, + ["local_unique_attacks_cast_socketed_lightning_spells_%"]=621, + ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=622, + ["local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect"]=742, + ["local_unique_counts_as_dual_wielding"]=2375, + ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=787, + ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=788, + ["local_unique_flask_avoid_chill_%_while_healing"]=741, + ["local_unique_flask_avoid_freeze_%_while_healing"]=743, + ["local_unique_flask_block_%_while_healing"]=789, + ["local_unique_flask_cannot_recover_life_while_healing"]=790, + ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=657, + ["local_unique_flask_charges_gained_+%_during_flask_effect"]=791, + ["local_unique_flask_critical_hit_poison_effect_+%_during_flask_effect"]=792, + ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=793, + ["local_unique_flask_damage_+%_vs_demons_while_healing"]=795, + ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=794, + ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=796, + ["local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing"]=797, + ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=820, + ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=821, + ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7273, + ["local_unique_flask_instantly_recovers_%_maximum_life"]=656, + ["local_unique_flask_item_quantity_+%_while_healing"]=798, + ["local_unique_flask_item_rarity_+%_while_healing"]=799, + ["local_unique_flask_kiaras_determination"]=800, + ["local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds"]=7274, + ["local_unique_flask_light_radius_+%_while_healing"]=801, + ["local_unique_flask_maximum_rage_is_doubled_during_effect"]=7275, + ["local_unique_flask_no_mana_cost_while_healing"]=802, + ["local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect"]=7276, + ["local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing"]=803, + ["local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing"]=740, + ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=739, + ["local_unique_flask_recover_all_mana_on_use"]=7277, + ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=804, + ["local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends"]=7278, + ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=805, + ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=806, + ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=807, + ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=808, + ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=809, + ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=810, + ["local_unique_hungry_loop_has_consumed_gem"]=104, + ["local_unique_hungry_loop_number_of_gems_to_consume"]=104, + ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2701, + ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2702, + ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2703, + ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7279, + ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2788, + ["local_unique_jewel_additional_life_per_X_int_in_radius"]=2764, + ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2781, + ["local_unique_jewel_alternate_tree_internal_revision"]=36, + ["local_unique_jewel_alternate_tree_keystone"]=36, + ["local_unique_jewel_alternate_tree_seed"]=36, + ["local_unique_jewel_alternate_tree_version"]=36, + ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2786, + ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2874, + ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2883, + ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7280, + ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7281, + ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7282, + ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7283, + ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7284, + ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7285, + ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7286, + ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7287, + ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7288, + ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2704, + ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2765, + ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2766, + ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2754, + ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=2958, + ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=2957, + ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7289, + ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2778, + ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2757, + ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7290, + ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2879, + ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7291, + ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2789, + ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2755, + ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2768, + ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7292, + ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7293, + ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7294, + ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7295, + ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7296, + ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2852, + ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7297, + ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7298, + ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7299, + ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7300, + ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7301, + ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7302, + ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7303, + ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7304, + ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7305, + ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7306, + ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7307, + ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7308, + ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7309, + ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2758, + ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2782, + ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=2959, + ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=2960, + ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2753, + ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7310, + ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7311, + ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2777, + ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7312, + ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7313, + ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7314, + ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2871, + ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2870, + ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2776, + ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=2966, + ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=2965, + ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7315, + ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7316, + ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7317, + ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7318, + ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7338, + ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2785, + ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7319, + ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2850, + ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=2961, + ["local_unique_jewel_grants_x_empty_passives"]=7320, + ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2877, + ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2876, + ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2853, + ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7321, + ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7322, + ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7323, + ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2722, + ["local_unique_jewel_life_increases_applies_to_energy_shield"]=2759, + ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2767, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7324, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7325, + ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7326, + ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7327, + ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7328, + ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7329, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7330, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7331, + ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2790, + ["local_unique_jewel_melee_applies_to_bow"]=2700, + ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7332, + ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7333, + ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2783, + ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7334, + ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=828, + ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7335, + ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7336, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=9853, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=9854, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=9855, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=9853, + ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2763, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7337, + ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2705, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=9856, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=9856, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2780, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2775, + ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2779, + ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2756, + ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2784, + ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=2962, + ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7339, + ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=2963, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7340, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=2964, + ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7341, + ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7342, + ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7343, + ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2851, + ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7344, + ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7345, + ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2787, + ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7346, + ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2692, + ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2769, + ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2868, + ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=2881, + ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2693, + ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=2866, + ["local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%"]=2723, + ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2724, + ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2710, + ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7347, + ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7348, + ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=811, + ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=823, + ["local_unique_regen_es_from_removed_life_duration_ms"]=2774, + ["local_unique_remove_life_and_regen_es_from_removed_life"]=2774, + ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=824, + ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3360, + ["local_ward"]=1372, + ["local_ward_+%"]=1374, + ["local_weapon_accuracy_is_unaffected_by_distance"]=7349, + ["local_weapon_base_crit_chance_permyriad_override"]=3373, + ["local_weapon_crit_chance_is_%"]=7350, + ["local_weapon_damage_%_to_gain_as_daze_build_up"]=7351, + ["local_weapon_daze_chance_%"]=7352, + ["local_weapon_enemy_phys_reduction_%_penalty"]=1143, + ["local_weapon_no_physical_damage"]=843, + ["local_weapon_range_+"]=2415, + ["local_weapon_range_+_per_10%_quality"]=7353, + ["local_weapon_roll_crits_twice"]=1312, + ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=625, + ["local_weapon_uses_both_hands"]=829, + ["local_withered_on_hit_for_2_seconds_%_chance"]=3983, + ["lose_%_of_es_on_crit"]=7363, + ["lose_%_of_infernal_flame_on_reaching_max"]=7354, + ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7364, + ["lose_%_of_life_loss_over_4_seconds_instead"]=7355, + ["lose_%_of_life_on_crit"]=7365, + ["lose_%_of_mana_when_you_use_an_attack_skill"]=7366, + ["lose_%_of_max_infernal_flame_per_minute"]=7356, + ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3070, + ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=3966, + ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=3967, + ["lose_adrenaline_on_losing_flame_touched"]=7357, + ["lose_all_charges_on_starting_movement"]=7358, + ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=3844, + ["lose_all_endurance_charges_when_reaching_maximum"]=2422, + ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7359, + ["lose_all_fragile_regrowth_when_hit"]=3974, + ["lose_all_power_charges_on_block"]=7360, + ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3191, + ["lose_all_rage_on_reaching_maximum_rage"]=7361, + ["lose_all_tailwind_when_hit"]=7362, + ["lose_endurance_charge_on_kill_%"]=2308, + ["lose_endurance_charges_on_rampage_end"]=2888, + ["lose_frenzy_charge_on_kill_%"]=2310, + ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7367, + ["lose_power_charge_on_kill_%"]=2312, + ["lose_soul_eater_souls_on_flask_use"]=3032, + ["lose_spirit_charges_on_savage_hit_taken"]=3957, + ["lose_x_life_when_you_use_skill"]=7368, + ["lose_x_mana_when_you_use_skill"]=7369, + ["low_life_threshold_%_override"]=7371, + ["mace_accuracy_rating"]=1697, + ["mace_accuracy_rating_+%"]=1296, + ["mace_attack_speed_+%"]=1279, + ["mace_critical_strike_chance_+%"]=1321, + ["mace_critical_strike_multiplier_+"]=1341, + ["mace_damage_+%"]=1206, + ["mace_elemental_damage_+%"]=1807, + ["mace_hit_damage_stun_multiplier_+%"]=7372, + ["mace_slam_aftershock_chance_%"]=7373, + ["mace_strike_aftershock_chance_%"]=7374, + ["magic_charm_effect_+%"]=2413, + ["magic_items_drop_identified"]=3723, + ["magic_monster_dropped_item_rarity_+%"]=7375, + ["magma_orb_damage_+%"]=3226, + ["magma_orb_num_of_additional_projectiles_in_chain"]=3528, + ["magma_orb_number_of_additional_projectiles"]=7376, + ["magma_orb_radius_+%"]=3387, + ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7377, + ["maim_bleeding_enemies_on_hit_%"]=2930, + ["maim_chance_+%"]=7378, + ["maim_effect_+%"]=7379, + ["maim_enemy_on_full_armour_break"]=7380, + ["maim_on_crit_%_with_attacks"]=7381, + ["maim_on_hit_%"]=7382, + ["maim_on_hit_%_vs_poisoned_enemies"]=2911, + ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7383, + ["main_hand_attack_speed_+%_final"]=7384, + ["main_hand_base_weapon_attack_duration_ms"]=22, + ["main_hand_claw_life_gain_on_hit"]=7385, + ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7386, + ["main_hand_damage_+%_while_dual_wielding"]=7387, + ["main_hand_maximum_attack_distance"]=26, + ["main_hand_minimum_attack_distance"]=24, + ["main_hand_quality"]=19, + ["main_hand_weapon_type"]=11, + ["malediction_on_hit"]=7388, + ["malevolence_mana_reservation_efficiency_+%"]=7390, + ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7389, + ["mamba_strike_area_of_effect_+%"]=7391, + ["mamba_strike_damage_+%"]=7392, + ["mamba_strike_duration_+%"]=7393, + ["mana_%_gained_on_block"]=7416, + ["mana_%_to_gain_as_armour"]=7394, + ["mana_%_to_gain_as_energy_shield"]=1861, + ["mana_%_to_gain_as_energy_shield_at_devotion_threshold"]=7417, + ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=2997, + ["mana_cost_+%_for_channelling_skills"]=7397, + ["mana_cost_+%_for_trap_and_mine_skills"]=7398, + ["mana_cost_+%_for_trap_skills"]=7399, + ["mana_cost_+%_on_consecrated_ground"]=3146, + ["mana_cost_+%_on_totemified_aura_skills"]=2741, + ["mana_cost_+%_per_10_devotion"]=7400, + ["mana_cost_+%_per_200_mana_spent_recently"]=3917, + ["mana_cost_+%_when_on_low_life"]=1584, + ["mana_cost_+%_while_not_low_mana"]=2717, + ["mana_cost_+%_while_on_full_energy_shield"]=1583, + ["mana_cost_-%_per_endurance_charge"]=2886, + ["mana_cost_efficiency_+%_if_dodge_rolled_recently"]=7395, + ["mana_cost_efficiency_+%_if_not_dodge_rolled_recently"]=7396, + ["mana_degeneration_%_per_minute_not_in_grace"]=7401, + ["mana_degeneration_per_minute"]=7402, + ["mana_degeneration_per_minute_%"]=7403, + ["mana_degeneration_per_minute_not_in_grace"]=1400, + ["mana_flask_charges_gained_+%"]=7404, + ["mana_flask_effects_not_removed_at_full_mana"]=7405, + ["mana_flask_recovery_is_instant_while_on_low_mana"]=7406, + ["mana_flasks_gain_X_charges_every_3_seconds"]=7407, + ["mana_gain_per_target"]=1454, + ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=7408, + ["mana_gained_on_attack_hit_vs_cursed_enemies"]=7409, + ["mana_gained_on_block"]=1467, + ["mana_gained_on_cull"]=7410, + ["mana_gained_on_enemy_death_per_level"]=2619, + ["mana_gained_on_hitting_taunted_enemy"]=1490, + ["mana_gained_on_spell_hit"]=7411, + ["mana_gained_on_spell_hit_vs_cursed_enemies"]=7412, + ["mana_gained_when_hit"]=2383, + ["mana_leech_also_recovers_based_on_other_damage_types"]=7413, + ["mana_leech_applies_recovery_to_energy_shield_also"]=7414, + ["mana_leech_rate_+%_per_equipped_corrupted_item"]=2733, + ["mana_per_level"]=7415, + ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=7418, + ["mana_recovery_from_regeneration_is_not_applied"]=7419, + ["mana_recovery_rate_+%"]=1402, + ["mana_recovery_rate_+%_if_havent_killed_recently"]=7422, + ["mana_recovery_rate_+%_per_10_tribute"]=7420, + ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=7421, + ["mana_recovery_rate_+%_while_affected_by_clarity"]=7423, + ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3648, + ["mana_regeneration_rate_+%"]=996, + ["mana_regeneration_rate_+%_during_flask_effect"]=2812, + ["mana_regeneration_rate_+%_if_crit_recently"]=7438, + ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=7439, + ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=7440, + ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=7441, + ["mana_regeneration_rate_+%_per_fragile_regrowth"]=3973, + ["mana_regeneration_rate_+%_per_power_charge"]=1670, + ["mana_regeneration_rate_+%_per_raised_spectre"]=7442, + ["mana_regeneration_rate_+%_while_moving"]=7443, + ["mana_regeneration_rate_+%_while_not_on_low_mana"]=7424, + ["mana_regeneration_rate_+%_while_phasing"]=2194, + ["mana_regeneration_rate_+%_while_shocked"]=2195, + ["mana_regeneration_rate_+%_while_stationary"]=3898, + ["mana_regeneration_rate_+%_while_surrounded"]=7425, + ["mana_regeneration_rate_per_minute_%"]=1398, + ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=7430, + ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=7431, + ["mana_regeneration_rate_per_minute_%_per_active_totem"]=7432, + ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1401, + ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=7426, + ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=7427, + ["mana_regeneration_rate_per_minute_per_10_devotion"]=7428, + ["mana_regeneration_rate_per_minute_per_power_charge"]=7429, + ["mana_regeneration_rate_per_minute_while_dual_wielding"]=7433, + ["mana_regeneration_rate_per_minute_while_holding_shield"]=7434, + ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=7435, + ["mana_regeneration_rate_per_minute_while_wielding_staff"]=7436, + ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=7437, + ["mana_reservation_+%_per_250_total_attributes"]=7449, + ["mana_reservation_+%_with_curse_skills"]=7450, + ["mana_reservation_+%_with_skills_that_throw_mines"]=7444, + ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=7445, + ["mana_reservation_efficiency_+%_per_250_total_attributes"]=7448, + ["mana_reservation_efficiency_-2%_per_1"]=1903, + ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=7446, + ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=7447, + ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=7451, + ["manabond_damage_+%"]=7452, + ["manabond_lightning_penetration_%_while_on_low_mana"]=7453, + ["manabond_skill_area_of_effect_+%"]=7454, + ["manifest_dancing_dervish_number_of_additional_copies"]=7455, + ["map_X_bestiary_packs_are_harvest_beasts"]=7456, + ["map_abyss_%_chance_chasm_spawns_at_least_magic_monsters"]=7457, + ["map_abyss_%_chance_path_spawns_at_least_magic_monsters"]=7458, + ["map_abyss_depths_chance_+%"]=7459, + ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=105, + ["map_abyss_monster_experience_+%"]=7460, + ["map_abyss_monster_spawn_amount_+%"]=7461, + ["map_abyss_monsters_enhanced_per_chasm_closed"]=7462, + ["map_abyss_no_reward_chance_+%"]=7463, + ["map_abyss_overrun_extra_pits"]=7464, + ["map_abyss_overrun_no_monsters"]=7465, + ["map_additional_number_of_packs_to_choose"]=1986, + ["map_additional_player_maximum_resistances_%"]=2055, + ["map_additional_rare_in_rare_pack_%_chance"]=7466, + ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=7467, + ["map_additional_red_beasts"]=7468, + ["map_adds_X_extra_synthesis_mods"]=7469, + ["map_adds_X_extra_synthesis_special_mods"]=7470, + ["map_addtional_magic_chest_amount"]=1931, + ["map_addtional_rare_chest_amount"]=1932, + ["map_affliction_encounter_boss_chance_+%"]=7471, + ["map_affliction_encounter_monster_depth_+%"]=7472, + ["map_affliction_pack_size_+%"]=7473, + ["map_affliction_reward_kills_+%"]=7474, + ["map_affliction_reward_progress_on_kill_+%"]=7475, + ["map_affliction_secondary_wave_acceleration_+%"]=7476, + ["map_affliction_secondary_wave_delay_ms_+"]=7477, + ["map_affliction_secondary_wave_delay_seconds_+"]=7478, + ["map_all_items_drop_as_gold"]=1936, + ["map_allow_shrines"]=2302, + ["map_always_has_weather"]=2301, + ["map_ambush_chests"]=2295, + ["map_architects_drops_additional_map_currency"]=7479, + ["map_area_contains_arcanists_strongbox"]=7481, + ["map_area_contains_avatar_of_ambush"]=7482, + ["map_area_contains_avatar_of_anarchy"]=7483, + ["map_area_contains_avatar_of_beyond"]=7484, + ["map_area_contains_avatar_of_bloodlines"]=7485, + ["map_area_contains_avatar_of_breach"]=7486, + ["map_area_contains_avatar_of_domination"]=7487, + ["map_area_contains_avatar_of_essence"]=7488, + ["map_area_contains_avatar_of_invasion"]=7489, + ["map_area_contains_avatar_of_nemesis"]=7490, + ["map_area_contains_avatar_of_onslaught"]=7491, + ["map_area_contains_avatar_of_perandus"]=7492, + ["map_area_contains_avatar_of_prophecy"]=7493, + ["map_area_contains_avatar_of_rampage"]=7494, + ["map_area_contains_avatar_of_talisman"]=7495, + ["map_area_contains_avatar_of_tempest"]=7496, + ["map_area_contains_avatar_of_torment"]=7497, + ["map_area_contains_avatar_of_warbands"]=7498, + ["map_area_contains_cartographers_strongbox"]=7499, + ["map_area_contains_currency_chest"]=7500, + ["map_area_contains_gemcutters_strongbox"]=7501, + ["map_area_contains_jewellery_chest"]=7502, + ["map_area_contains_map_chest"]=7503, + ["map_area_contains_metamorphs"]=7504, + ["map_area_contains_perandus_coin_chest"]=7505, + ["map_area_contains_rituals"]=7506, + ["map_area_contains_tormented_embezzler"]=7507, + ["map_area_contains_tormented_seditionist"]=7508, + ["map_area_contains_tormented_vaal_cultist"]=7509, + ["map_area_contains_unique_item_chest"]=7510, + ["map_area_contains_unique_strongbox"]=7511, + ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=7512, + ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=7513, + ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=7514, + ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=7515, + ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=7516, + ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=7517, + ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=7518, + ["map_area_contains_x_rare_monsters_with_inner_treasure"]=7611, + ["map_area_ritual_additional_chance_%"]=7519, + ["map_atlas_influence_type"]=7480, + ["map_base_ground_desecration_damage_to_deal_per_minute"]=2003, + ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=1996, + ["map_base_ground_fire_damage_to_deal_per_minute"]=1995, + ["map_bestiary_monster_damage_+%_final"]=7520, + ["map_bestiary_monster_life_+%_final"]=7521, + ["map_betrayal_intelligence_+%"]=7522, + ["map_beyond_demon_always_elite"]=7523, + ["map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge"]=7524, + ["map_beyond_monster_difficulty_tankiness_+%_per_portal_merge"]=7524, + ["map_beyond_portal_chance_+%"]=7525, + ["map_beyond_portal_spawn_additional_demon_%_chance"]=7526, + ["map_beyond_rules"]=2304, + ["map_blight_chest_%_chance_for_additional_drop"]=7527, + ["map_blight_chests_repeat_drops_count"]=7528, + ["map_blight_encounter_spawn_rate_+%"]=7529, + ["map_blight_lane_additional_chest_chance_%"]=7530, + ["map_blight_lane_additional_chests"]=7531, + ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=7532, + ["map_blight_tower_cost_+%"]=7533, + ["map_blight_tower_cost_doubled"]=7534, + ["map_blight_up_to_X_additional_bosses"]=7535, + ["map_blighted_map_encounter_duration_-_sec"]=7536, + ["map_bloodline_packs_drop_x_additional_currency_items"]=7537, + ["map_bloodline_packs_drop_x_additional_rare_items"]=7538, + ["map_blueprint_drop_revealed_chance_%"]=7539, + ["map_boss_accompanied_by_bodyguards"]=7540, + ["map_boss_accompanied_by_harbinger"]=7541, + ["map_boss_area_of_effect_+%"]=2121, + ["map_boss_attack_and_cast_speed_+%"]=2119, + ["map_boss_damage_+%"]=2113, + ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2114, + ["map_boss_dropped_item_quantity_+%"]=7542, + ["map_boss_dropped_unique_items_+"]=7543, + ["map_boss_drops_additional_conqueror_map"]=2116, + ["map_boss_drops_additional_currency_shards"]=7544, + ["map_boss_drops_additional_elder_guardian_map"]=2117, + ["map_boss_drops_additional_shaper_guardian_map"]=2118, + ["map_boss_drops_corrupted_items"]=7545, + ["map_boss_drops_x_additional_vaal_items"]=7550, + ["map_boss_experience_+%_final"]=7546, + ["map_boss_is_possessed"]=7547, + ["map_boss_item_rarity_+%"]=7548, + ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2115, + ["map_boss_maximum_life_+%"]=2120, + ["map_boss_surrounded_by_tormented_spirits"]=7549, + ["map_breach_%_chance_for_1_additional_breach"]=7551, + ["map_breach_%_chance_for_3_additional_breach"]=7552, + ["map_breach_X_additional_rare_monsters"]=7553, + ["map_breach_chance_to_be_esh_+%"]=7554, + ["map_breach_chance_to_be_tul_+%"]=7555, + ["map_breach_chance_to_be_uul_netol_+%"]=7556, + ["map_breach_chance_to_be_xoph_+%"]=7557, + ["map_breach_hands_are_small"]=94, + ["map_breach_has_boss"]=7558, + ["map_breach_has_large_chest"]=7559, + ["map_breach_minimum_radius"]=7560, + ["map_breach_monster_quantity_+%"]=7561, + ["map_breach_monster_splinter_quantity_+%"]=7562, + ["map_breach_monsters_damage_+%"]=126, + ["map_breach_monsters_life_+%"]=118, + ["map_breach_number_of_magic_packs_+%"]=7563, + ["map_breach_rules"]=2296, + ["map_breach_size_+%"]=112, + ["map_breach_splinters_drop_as_stones_permyriad"]=113, + ["map_breach_time_passed_+%"]=106, + ["map_breach_type_override"]=7564, + ["map_breaches_num_additional_chests_to_spawn"]=7565, + ["map_chance_for_area_%_to_contain_harvest"]=7566, + ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=114, + ["map_chance_to_not_consume_sextant_use_%"]=7567, + ["map_chest_amount_+%"]=1933, + ["map_chest_item_quantity_+%"]=2122, + ["map_chest_item_rarity_+%"]=2123, + ["map_chests_all_magic_or_rare"]=7568, + ["map_contains_abyss_boss"]=7569, + ["map_contains_abyss_depths"]=7570, + ["map_contains_abyss_depths_with_no_boss"]=7571, + ["map_contains_additional_breaches"]=7572, + ["map_contains_additional_chrysalis_talisman"]=7573, + ["map_contains_additional_clutching_talisman"]=7574, + ["map_contains_additional_fangjaw_talisman"]=7575, + ["map_contains_additional_mandible_talisman"]=7576, + ["map_contains_additional_packs_of_chaos_monsters"]=7577, + ["map_contains_additional_packs_of_cold_monsters"]=7578, + ["map_contains_additional_packs_of_fire_monsters"]=7579, + ["map_contains_additional_packs_of_lightning_monsters"]=7580, + ["map_contains_additional_packs_of_physical_monsters"]=7581, + ["map_contains_additional_packs_of_vaal_monsters"]=7582, + ["map_contains_additional_three_rat_talisman"]=7583, + ["map_contains_additional_tormented_betrayers"]=7584, + ["map_contains_additional_tormented_graverobbers"]=7585, + ["map_contains_additional_tormented_heretics"]=7586, + ["map_contains_additional_unique_talisman"]=7587, + ["map_contains_additional_writhing_talisman"]=7588, + ["map_contains_buried_treasure"]=1934, + ["map_contains_chayula_breach"]=7589, + ["map_contains_citadel"]=7590, + ["map_contains_cleansed_boss"]=7591, + ["map_contains_corrupted_strongbox"]=7592, + ["map_contains_creeping_agony"]=7593, + ["map_contains_keepers_of_the_trove_bloodline_pack"]=7594, + ["map_contains_master"]=7595, + ["map_contains_nevalis_monkey"]=7596, + ["map_contains_perandus_boss"]=7597, + ["map_contains_talisman_boss_with_higher_tier"]=7598, + ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=7599, + ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=7599, + ["map_contains_uul_netol_breach"]=7600, + ["map_contains_wealthy_pack"]=7601, + ["map_contains_x_additional_animated_weapon_packs"]=7602, + ["map_contains_x_additional_healing_packs"]=7603, + ["map_contains_x_additional_magic_packs"]=7604, + ["map_contains_x_additional_normal_packs"]=7605, + ["map_contains_x_additional_packs_on_their_own_team"]=7606, + ["map_contains_x_additional_packs_that_convert_on_death"]=7607, + ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=1935, + ["map_contains_x_additional_poison_packs"]=7608, + ["map_contains_x_additional_rare_packs"]=7609, + ["map_contains_x_fewer_portals"]=7610, + ["map_contracts_drop_with_additional_special_implicit_%_chance"]=7612, + ["map_cowards_trial_extra_ghosts"]=7613, + ["map_cowards_trial_extra_oriath_citizens"]=7614, + ["map_cowards_trial_extra_phantasms"]=7615, + ["map_cowards_trial_extra_raging_spirits"]=7616, + ["map_cowards_trial_extra_rhoas"]=7617, + ["map_cowards_trial_extra_skeleton_cannons"]=7618, + ["map_cowards_trial_extra_zombies"]=7619, + ["map_custom_league_damage_taken_+%_final"]=7620, + ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=7622, + ["map_damage_+%_per_poison_stack"]=7621, + ["map_damage_taken_+%_from_beyond_monsters"]=7623, + ["map_damage_taken_while_stationary_+%"]=7624, + ["map_damage_while_stationary_+%"]=7625, + ["map_death_and_taxes_boss_drops_additional_currency"]=7626, + ["map_delirium_additional_reward_type_chance_%"]=7627, + ["map_delirium_doodads_+%_final"]=7628, + ["map_delirium_fog_never_dissipates"]=7629, + ["map_delirium_splinter_stack_size_+%"]=7630, + ["map_delve_rules"]=7631, + ["map_display_area_contains_unbridged_gaps_to_cross"]=1984, + ["map_display_strongbox_monsters_are_enraged"]=7633, + ["map_display_unique_boss_drops_X_maps"]=2024, + ["map_divination_card_drop_chance_+%"]=7634, + ["map_doesnt_consume_sextant_use"]=7635, + ["map_dropped_maps_are_corrupted_with_8_mods"]=7636, + ["map_dropped_maps_are_duplicated_chance_permillage"]=7637, + ["map_duplicate_all_rare_monsters"]=1937, + ["map_duplicate_captured_beasts_chance_%"]=7638, + ["map_duplicate_essence_monsters_with_shrieking_essence"]=127, + ["map_duplicate_x_rare_monsters"]=7639, + ["map_duplicate_x_synthesised_rare_monsters"]=7640, + ["map_elder_boss_variation"]=7641, + ["map_elder_rare_chance_+%"]=7642, + ["map_elemental_weakness_curse_zones"]=2047, + ["map_endgame_affliction_reward_1"]=7643, + ["map_endgame_affliction_reward_2"]=7644, + ["map_endgame_affliction_reward_3"]=7645, + ["map_endgame_affliction_reward_4"]=7646, + ["map_endgame_affliction_reward_5"]=7647, + ["map_endgame_affliction_reward_6"]=7648, + ["map_endgame_affliction_reward_7"]=7649, + ["map_endgame_affliction_reward_8"]=7650, + ["map_endgame_affliction_reward_9"]=7651, + ["map_endgame_fog_depth"]=7652, + ["map_enfeeble_curse_zones"]=2043, + ["map_equipment_drops_identified"]=7653, + ["map_essence_corruption_cannot_release_monsters"]=119, + ["map_essence_monolith_contains_additional_essence_of_corruption"]=7654, + ["map_essence_monolith_contains_essence_of_corruption_%"]=7655, + ["map_essence_monsters_are_corrupted"]=7656, + ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=129, + ["map_essence_monsters_have_additional_essences"]=7657, + ["map_essence_monsters_higher_tier"]=7658, + ["map_essences_are_1_tier_higher_chance_%"]=115, + ["map_essences_contains_rogue_exiles"]=107, + ["map_expedition_artifact_quantity_+%"]=7659, + ["map_expedition_chest_double_drops_chance_%"]=7660, + ["map_expedition_chest_marker_count_+"]=7661, + ["map_expedition_common_chest_marker_count_+"]=7662, + ["map_expedition_elite_marker_count_+%"]=7663, + ["map_expedition_encounter_additional_chance_%"]=7664, + ["map_expedition_epic_chest_marker_count_+"]=7665, + ["map_expedition_explosion_radius_+%"]=7666, + ["map_expedition_explosives_+%"]=7667, + ["map_expedition_extra_relic_suffix_chance_%"]=7668, + ["map_expedition_league"]=7669, + ["map_expedition_maximum_placement_distance_+%"]=7670, + ["map_expedition_monster_spawn_with_half_life"]=7671, + ["map_expedition_number_of_monster_markers_+%"]=7672, + ["map_expedition_rare_monsters_+%"]=7673, + ["map_expedition_relic_mod_effect_+%"]=7674, + ["map_expedition_relics_+"]=7675, + ["map_expedition_relics_+%"]=7676, + ["map_expedition_saga_additional_terrain_features"]=7677, + ["map_expedition_saga_contains_boss"]=7678, + ["map_expedition_twinned_elites"]=7679, + ["map_expedition_uncommon_chest_marker_count_+"]=7680, + ["map_expedition_vendor_reroll_currency_quantity_+%"]=7681, + ["map_expedition_x_extra_relic_suffixes"]=7682, + ["map_extra_monoliths"]=7683, + ["map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%"]=7684, + ["map_first_invasion_boss_killed_drops_x_additional_currency"]=7685, + ["map_first_strongbox_contains_x_additional_rare_monsters"]=7686, + ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=7687, + ["map_fishy_effect_0"]=7632, + ["map_fishy_effect_1"]=7632, + ["map_fishy_effect_2"]=7632, + ["map_fishy_effect_3"]=7632, + ["map_fixed_seed"]=2009, + ["map_flask_charges_recovered_per_3_seconds_%"]=7688, + ["map_force_side_area"]=7689, + ["map_force_stone_circle"]=2033, + ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=7690, + ["map_gauntlet_unique_monster_life_+%"]=7691, + ["map_gold_+%"]=1938, + ["map_grants_players_level_20_dash_skill"]=7692, + ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=7693, + ["map_ground_haste_action_speed_+%"]=7694, + ["map_ground_ice"]=1997, + ["map_ground_ice_base_magnitude"]=1998, + ["map_ground_lightning"]=1999, + ["map_ground_lightning_base_magnitude"]=2001, + ["map_ground_mana_siphoning"]=2000, + ["map_ground_tar_movement_speed_+%"]=2002, + ["map_harbinger_additional_currency_shard_stack_chance_%"]=7695, + ["map_harbinger_cooldown_speed_+%"]=95, + ["map_harbinger_portal_drops_additional_fragments"]=7696, + ["map_harbingers_drops_additional_currency_shards"]=7697, + ["map_harvest_crafting_outcomes_X_lucky_rolls"]=7698, + ["map_harvest_double_lifeforce_dropped"]=7699, + ["map_harvest_monster_life_+%_final_from_sextant"]=7700, + ["map_harvest_seed_t2_upgrade_%_chance"]=116, + ["map_harvest_seed_t3_upgrade_%_chance"]=120, + ["map_harvest_seeds_1_of_every_2_plot_type_override"]=7701, + ["map_harvest_seeds_are_at_least_t2"]=108, + ["map_has_X_seconds_between_waves"]=2125, + ["map_has_X_waves_of_monsters"]=2124, + ["map_has_monoliths"]=7702, + ["map_has_x%_quality"]=7703, + ["map_heist_contract_additional_reveals_granted"]=7704, + ["map_heist_contract_chest_no_rewards_%_chance"]=7705, + ["map_heist_contract_npc_items_cannot_drop"]=7706, + ["map_heist_contract_primary_target_value_+%_final"]=7707, + ["map_heist_monster_life_+%_final_from_sextant"]=7708, + ["map_heist_npc_perks_effect_+%_final"]=7709, + ["map_hellscape_additional_boss"]=1048, + ["map_hellscape_blood_consumed_+%_final"]=1030, + ["map_hellscape_fire_damage_taken_when_switching"]=1036, + ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1032, + ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1031, + ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1033, + ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1034, + ["map_hellscape_gimmick_shift_randomly"]=1035, + ["map_hellscape_item_drop_quantity_+%"]=1049, + ["map_hellscape_item_drop_rarity_+%"]=1050, + ["map_hellscape_lightning_damage_taken_when_switching"]=1037, + ["map_hellscape_monster_damage_+%_final"]=1038, + ["map_hellscape_monster_damage_taken_+%_final"]=1039, + ["map_hellscape_monster_life_+%_final"]=1040, + ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1041, + ["map_hellscape_monster_slain_experience_+%_final"]=1051, + ["map_hellscape_pack_size_+%"]=1052, + ["map_hellscape_physical_damage_taken_when_switching"]=1042, + ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1053, + ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1054, + ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1055, + ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1056, + ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1057, + ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1058, + ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1059, + ["map_hellscape_rare_monster_drop_additional_essence"]=1060, + ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1061, + ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1062, + ["map_hellscape_rare_monster_drop_additional_gem"]=1063, + ["map_hellscape_rare_monster_drop_additional_incubator"]=1064, + ["map_hellscape_rare_monster_drop_additional_influence_item"]=1065, + ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1066, + ["map_hellscape_rare_monster_drop_additional_map_item"]=1067, + ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1068, + ["map_hellscape_rare_monster_drop_additional_scarab"]=1069, + ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1070, + ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1071, + ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1072, + ["map_hellscape_rare_monster_drop_additional_unique_item"]=1073, + ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1074, + ["map_hellscaping_speed_+%"]=6623, + ["map_imprisoned_monsters_action_speed_+%"]=7710, + ["map_imprisoned_monsters_damage_+%"]=7711, + ["map_imprisoned_monsters_damage_taken_+%"]=7712, + ["map_incursion_architects_drop_incursion_rare_chance_%"]=96, + ["map_incursion_boss_possessed_by_tormented_arsonist"]=7713, + ["map_incursion_boss_possessed_by_tormented_blasphemer"]=7714, + ["map_incursion_boss_possessed_by_tormented_cannibal"]=7715, + ["map_incursion_boss_possessed_by_tormented_charlatan"]=7716, + ["map_incursion_boss_possessed_by_tormented_corrupter"]=7717, + ["map_incursion_boss_possessed_by_tormented_counterfeiter"]=7718, + ["map_incursion_boss_possessed_by_tormented_cutthroat"]=7719, + ["map_incursion_boss_possessed_by_tormented_embezzler"]=7720, + ["map_incursion_boss_possessed_by_tormented_experimenter"]=7721, + ["map_incursion_boss_possessed_by_tormented_fisherman"]=7722, + ["map_incursion_boss_possessed_by_tormented_freezer"]=7723, + ["map_incursion_boss_possessed_by_tormented_librarian"]=7724, + ["map_incursion_boss_possessed_by_tormented_martyr"]=7725, + ["map_incursion_boss_possessed_by_tormented_mutilator"]=7726, + ["map_incursion_boss_possessed_by_tormented_necromancer"]=7727, + ["map_incursion_boss_possessed_by_tormented_poisoner"]=7728, + ["map_incursion_boss_possessed_by_tormented_rogue"]=7729, + ["map_incursion_boss_possessed_by_tormented_smuggler"]=7730, + ["map_incursion_boss_possessed_by_tormented_spy"]=7731, + ["map_incursion_boss_possessed_by_tormented_thief"]=7732, + ["map_incursion_boss_possessed_by_tormented_thug"]=7733, + ["map_incursion_boss_possessed_by_tormented_warlord"]=7734, + ["map_incursion_memory_line_monster_damage_+%_final"]=3880, + ["map_incursion_memory_line_monster_life_+%_final"]=3879, + ["map_incursion_spawn_large_caustic_plants"]=7735, + ["map_incursion_spawn_parasitic_caustic_plants"]=7736, + ["map_invasion_bosses_are_twinned"]=7737, + ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=7738, + ["map_invasion_bosses_dropped_items_are_fully_linked"]=7739, + ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=7740, + ["map_invasion_monster_packs"]=2298, + ["map_invasion_monsters_guarded_by_x_magic_packs"]=7741, + ["map_is_branchy"]=1978, + ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=7742, + ["map_item_drop_quantity_+%"]=29, + ["map_item_drop_rarity_+%"]=30, + ["map_item_found_rarity_+%_per_15_rampage_stacks"]=7743, + ["map_item_level_override"]=827, + ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=7744, + ["map_items_drop_corrupted"]=2679, + ["map_items_drop_corrupted_%"]=2680, + ["map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds"]=7745, + ["map_labyrinth_izaro_area_of_effect_+%"]=7746, + ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=7747, + ["map_labyrinth_izaro_damage_+%"]=7748, + ["map_labyrinth_izaro_life_+%"]=7749, + ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=7750, + ["map_labyrinth_monsters_damage_+%"]=7751, + ["map_labyrinth_monsters_life_+%"]=7752, + ["map_leaguestone_area_contains_x_additional_leaguestones"]=7753, + ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=7754, + ["map_leaguestone_contains_warband_leader"]=7755, + ["map_leaguestone_explicit_warband_type_override"]=7756, + ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=7757, + ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=7758, + ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=7759, + ["map_leaguestone_monolith_contains_essence_type"]=7760, + ["map_leaguestone_override_base_num_breaches"]=7761, + ["map_leaguestone_override_base_num_invasion_bosses"]=7762, + ["map_leaguestone_override_base_num_monoliths"]=7763, + ["map_leaguestone_override_base_num_perandus_chests"]=7764, + ["map_leaguestone_override_base_num_prophecy_coins"]=7765, + ["map_leaguestone_override_base_num_rogue_exiles"]=7766, + ["map_leaguestone_override_base_num_shrines"]=7767, + ["map_leaguestone_override_base_num_strongboxes"]=7768, + ["map_leaguestone_override_base_num_talismans"]=7769, + ["map_leaguestone_override_base_num_tormented_spirits"]=7770, + ["map_leaguestone_override_base_num_warband_packs"]=7771, + ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=7772, + ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=7773, + ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=7774, + ["map_leaguestone_shrine_monster_rarity_override"]=7775, + ["map_leaguestone_shrine_override_type"]=7776, + ["map_leaguestone_strongboxes_rarity_override"]=7777, + ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=7779, + ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=7780, + ["map_leaguestone_x_monsters_spawn_abaxoth"]=7781, + ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=7782, + ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=7783, + ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=7784, + ["map_legion_league_extra_spawns"]=7785, + ["map_legion_league_force_general"]=7786, + ["map_legion_league_force_war_chest"]=7787, + ["map_legion_monster_life_+%_final_from_sextant"]=7788, + ["map_legion_monster_splinter_emblem_drops_duplicated"]=7789, + ["map_level_+"]=7790, + ["map_magic_chest_amount_+%"]=1939, + ["map_magic_items_drop_as_normal"]=7791, + ["map_magic_monster_life_regeneration_rate_per_minute_%"]=3849, + ["map_magic_monsters_are_maimed"]=7792, + ["map_magic_monsters_damage_taken_+%"]=7793, + ["map_magic_pack_size_+%"]=1940, + ["map_metamorph_all_metamorphs_have_rewards"]=7794, + ["map_metamorph_boss_drops_additional_itemised_organs"]=7795, + ["map_metamorph_catalyst_drops_duplicated"]=7796, + ["map_metamorph_itemised_boss_min_rewards"]=7797, + ["map_metamorph_itemised_boss_more_difficult"]=7798, + ["map_metamorph_life_+%_final_from_sextant"]=7799, + ["map_metamorphosis_league"]=7800, + ["map_mini_monolith_monsters_are_magic"]=7801, + ["map_minimap_revealed"]=2010, + ["map_monolith_chance_%"]=7803, + ["map_monolith_chance_+%"]=7802, + ["map_monster_add_x_grasping_vines_on_hit"]=7812, + ["map_monster_additional_abyssal_monolithic_slug_packs"]=7804, + ["map_monster_additional_baron_packs"]=1941, + ["map_monster_additional_beasts_packs"]=1942, + ["map_monster_additional_bramble_packs"]=1943, + ["map_monster_additional_doryani_packs"]=1944, + ["map_monster_additional_ezomyte_packs"]=1945, + ["map_monster_additional_faridun_packs"]=1946, + ["map_monster_additional_perennial_packs"]=1947, + ["map_monster_additional_sanctified_packs"]=7805, + ["map_monster_additional_undead_packs"]=1948, + ["map_monster_additional_vaal_packs"]=1949, + ["map_monster_and_player_onslaught_effect_+%"]=7806, + ["map_monster_attack_cast_and_movement_speed_+%"]=7807, + ["map_monster_beyond_portal_chance_+%"]=7808, + ["map_monster_curse_effect_on_self_+%"]=7809, + ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=7810, + ["map_monster_damage_taken_+%_while_possessed"]=7811, + ["map_monster_defences_+%"]=2500, + ["map_monster_drop_higher_level_gear"]=3183, + ["map_monster_melee_attacks_apply_random_curses"]=2103, + ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2104, + ["map_monster_no_drops"]=2111, + ["map_monster_non_damaging_ailment_effect_+%_on_self"]=7813, + ["map_monster_skills_chain_X_additional_times"]=2106, + ["map_monster_slain_experience_+%"]=7815, + ["map_monster_tre_+%"]=1950, + ["map_monster_unaffected_by_shock"]=2064, + ["map_monsters_%_all_damage_to_gain_as_chaos"]=2096, + ["map_monsters_%_all_damage_to_gain_as_cold"]=2092, + ["map_monsters_%_all_damage_to_gain_as_fire"]=2090, + ["map_monsters_%_all_damage_to_gain_as_lightning"]=2094, + ["map_monsters_%_chance_to_inflict_status_ailments"]=7867, + ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2089, + ["map_monsters_%_physical_damage_to_convert_to_cold"]=2087, + ["map_monsters_%_physical_damage_to_convert_to_fire"]=2086, + ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2088, + ["map_monsters_%_physical_damage_to_gain_as_chaos"]=2097, + ["map_monsters_%_physical_damage_to_gain_as_cold"]=2093, + ["map_monsters_%_physical_damage_to_gain_as_fire"]=2091, + ["map_monsters_%_physical_damage_to_gain_as_lightning"]=2095, + ["map_monsters_accuracy_rating_+%"]=7816, + ["map_monsters_action_speed_-%"]=7817, + ["map_monsters_add_endurance_charge_on_hit_%"]=7818, + ["map_monsters_add_frenzy_charge_on_hit_%"]=7819, + ["map_monsters_add_power_charge_on_hit_%"]=7820, + ["map_monsters_additional_chaos_resistance"]=7821, + ["map_monsters_additional_cold_resistance"]=2081, + ["map_monsters_additional_dexterity_ratio_%_for_evasion"]=7822, + ["map_monsters_additional_elemental_resistance"]=7823, + ["map_monsters_additional_fire_resistance"]=2080, + ["map_monsters_additional_lightning_resistance"]=2082, + ["map_monsters_additional_maximum_all_elemental_resistances_%"]=7824, + ["map_monsters_additional_number_of_projecitles"]=2079, + ["map_monsters_additional_physical_damage_reduction"]=2083, + ["map_monsters_additional_strength_ratio_%_for_armour"]=7825, + ["map_monsters_ailment_threshold_+%"]=7826, + ["map_monsters_all_damage_can_chill"]=7827, + ["map_monsters_all_damage_can_freeze"]=7828, + ["map_monsters_all_damage_can_ignite"]=7829, + ["map_monsters_all_damage_can_poison"]=7830, + ["map_monsters_all_damage_can_shock"]=7831, + ["map_monsters_always_crit"]=7832, + ["map_monsters_always_hit"]=7833, + ["map_monsters_always_ignite"]=7834, + ["map_monsters_are_converted_on_kill"]=7835, + ["map_monsters_are_hexproof"]=2109, + ["map_monsters_are_immune_to_curses"]=2108, + ["map_monsters_area_of_effect_+%"]=2060, + ["map_monsters_armour_break_physical_damage_%_dealt_as_armour_break"]=7836, + ["map_monsters_attack_speed_+%"]=2075, + ["map_monsters_attacks_inflict_bleeding_on_hit"]=7856, + ["map_monsters_avoid_ailments_%"]=2065, + ["map_monsters_avoid_elemental_ailments_%"]=2066, + ["map_monsters_avoid_freeze_and_chill_%"]=2061, + ["map_monsters_avoid_ignite_%"]=2062, + ["map_monsters_avoid_poison_bleed_impale_%"]=7837, + ["map_monsters_avoid_shock_%"]=2063, + ["map_monsters_base_bleed_duration_+%"]=7838, + ["map_monsters_base_block_%"]=7839, + ["map_monsters_base_chance_to_freeze_%"]=7840, + ["map_monsters_base_chance_to_shock_%"]=7841, + ["map_monsters_base_poison_duration_+%"]=7842, + ["map_monsters_base_self_critical_strike_multiplier_-%"]=3199, + ["map_monsters_cannot_be_leeched_from"]=2069, + ["map_monsters_cannot_be_stunned"]=2084, + ["map_monsters_cannot_be_taunted"]=7843, + ["map_monsters_cast_speed_+%"]=2076, + ["map_monsters_chance_to_blind_on_hit_%"]=7844, + ["map_monsters_chance_to_impale_%"]=7845, + ["map_monsters_chance_to_inflict_bleeding_%"]=7846, + ["map_monsters_chance_to_inflict_brittle_%"]=7847, + ["map_monsters_chance_to_inflict_sapped_%"]=7848, + ["map_monsters_chance_to_poison_on_hit_%"]=7849, + ["map_monsters_chance_to_scorch_%"]=7850, + ["map_monsters_critical_strike_chance_+%"]=2067, + ["map_monsters_critical_strike_multiplier_+"]=2068, + ["map_monsters_curse_effect_+%"]=2110, + ["map_monsters_curse_effect_on_self_+%_final"]=7851, + ["map_monsters_damage_+%"]=2072, + ["map_monsters_damage_taken_+%"]=7852, + ["map_monsters_drop_ground_fire_on_death_base_radius"]=2107, + ["map_monsters_drop_no_equipment"]=7853, + ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=7854, + ["map_monsters_energy_shield_leech_resistance_permyriad"]=3878, + ["map_monsters_freeze_duration_+%"]=7855, + ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2100, + ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2099, + ["map_monsters_gain_x_power_charges_every_20_seconds"]=2101, + ["map_monsters_global_poison_on_hit"]=7857, + ["map_monsters_have_onslaught"]=2073, + ["map_monsters_hit_damage_freeze_multiplier_+%"]=7858, + ["map_monsters_hit_damage_stun_multiplier_+%"]=7859, + ["map_monsters_ignite_chance_+%"]=7860, + ["map_monsters_ignite_duration_+%"]=7861, + ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2102, + ["map_monsters_life_+%"]=2059, + ["map_monsters_life_leech_resistance_permyriad"]=2070, + ["map_monsters_maim_on_hit_%_chance"]=7862, + ["map_monsters_mana_leech_resistance_permyriad"]=2071, + ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=7863, + ["map_monsters_monster_difficulty_tankiness_+%_granted_to_pack_members_on_death"]=7864, + ["map_monsters_movement_speed_+%"]=2074, + ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=7865, + ["map_monsters_penetrate_elemental_resistances_%"]=7866, + ["map_monsters_physical_damage_%_to_gain_as_random_element"]=2098, + ["map_monsters_poison_on_hit"]=2085, + ["map_monsters_reduce_enemy_chaos_resistance_%"]=7868, + ["map_monsters_reduce_enemy_cold_resistance_%"]=7869, + ["map_monsters_reduce_enemy_fire_resistance_%"]=7870, + ["map_monsters_reduce_enemy_lightning_resistance_%"]=7871, + ["map_monsters_reflect_%_elemental_damage"]=2078, + ["map_monsters_reflect_%_physical_damage"]=2077, + ["map_monsters_reflect_curses"]=2105, + ["map_monsters_remove_%_of_mana_on_hit"]=7874, + ["map_monsters_remove_charges_on_hit_%"]=7872, + ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=7873, + ["map_monsters_shock_chance_+%"]=7875, + ["map_monsters_shock_effect_+%"]=7876, + ["map_monsters_skill_speed_+%"]=7814, + ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=7877, + ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=7878, + ["map_monsters_steal_charges"]=7879, + ["map_monsters_stun_threshold_+%"]=7880, + ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=7881, + ["map_monsters_unaffected_by_curses"]=7882, + ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=7883, + ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=7884, + ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=7885, + ["map_monstrous_treasure_no_monsters"]=7886, + ["map_movement_velocity_+%_per_poison_stack"]=7887, + ["map_natural_rare_monsters_have_soul_eater"]=7888, + ["map_natural_rare_monsters_have_x_additional_abyssal_modifiers"]=7889, + ["map_natural_rare_monsters_in_union_of_souls_with_boss"]=7890, + ["map_nemesis_dropped_items_+"]=7891, + ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=7892, + ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=7893, + ["map_no_experience"]=7942, + ["map_no_magic_items_drop"]=7894, + ["map_no_rare_items_drop"]=7895, + ["map_no_refills_in_town"]=2011, + ["map_no_stashes"]=7896, + ["map_no_uniques_drop_randomly"]=7897, + ["map_no_vendors"]=7898, + ["map_non_unique_equipment_drops_as_sell_price"]=2678, + ["map_non_unique_items_drop_normal"]=7899, + ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=7900, + ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2036, + ["map_normal_items_drop_as_magic"]=7901, + ["map_normal_monster_life_regeneration_rate_per_minute_%"]=3848, + ["map_nuke_everything"]=7902, + ["map_num_extra_abysses"]=7903, + ["map_num_extra_blights_"]=7904, + ["map_num_extra_gloom_shrines"]=7905, + ["map_num_extra_harbingers"]=7906, + ["map_num_extra_invasion_bosses"]=2299, + ["map_num_extra_resonating_shrines"]=7907, + ["map_num_extra_shrines"]=2027, + ["map_num_extra_strongboxes"]=2035, + ["map_number_of_additional_mods"]=7908, + ["map_number_of_additional_prefixes"]=7909, + ["map_number_of_additional_silver_coin_drops"]=7910, + ["map_number_of_additional_suffixes"]=7911, + ["map_number_of_harbinger_portals"]=83, + ["map_on_complete_drop_x_additional_maps"]=7912, + ["map_owner_sulphite_gained_+%"]=7913, + ["map_packs_are_abomination_monsters"]=7914, + ["map_packs_are_animals"]=2017, + ["map_packs_are_bandits"]=2015, + ["map_packs_are_blackguards"]=7915, + ["map_packs_are_demons"]=2018, + ["map_packs_are_ghosts"]=7916, + ["map_packs_are_goatmen"]=2016, + ["map_packs_are_humanoids"]=2019, + ["map_packs_are_kitava"]=7917, + ["map_packs_are_lunaris"]=7918, + ["map_packs_are_sea_witches_and_spawn"]=2020, + ["map_packs_are_skeletons"]=2014, + ["map_packs_are_solaris"]=7919, + ["map_packs_are_spiders"]=7920, + ["map_packs_are_str_mission_totems"]=2013, + ["map_packs_are_totems"]=2012, + ["map_packs_are_undead_and_necromancers"]=2021, + ["map_packs_are_vaal"]=7921, + ["map_packs_fire_projectiles"]=2022, + ["map_packs_have_pop_up_traps"]=3841, + ["map_perandus_guards_are_rare"]=7922, + ["map_perandus_monsters_drop_perandus_coin_stack_%"]=7923, + ["map_player_accuracy_rating_+%_final"]=7924, + ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1043, + ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=7925, + ["map_player_base_chaos_damage_taken_per_minute"]=2037, + ["map_player_block_chance_%_in_hellscape"]=1044, + ["map_player_buff_time_passed_+%_only_buff_category"]=7926, + ["map_player_cannot_block_attacks"]=7927, + ["map_player_cannot_expose"]=2039, + ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=7928, + ["map_player_charges_gained_+%"]=7929, + ["map_player_cooldown_speed_+%_final"]=7930, + ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2820, + ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=7931, + ["map_player_curse_effect_on_self_+%"]=7932, + ["map_player_damage_+%_vs_breach_monsters"]=7933, + ["map_player_damage_taken_+%_vs_breach_monsters"]=7934, + ["map_player_damage_taken_+%_while_rampaging"]=7935, + ["map_player_death_mark_on_rare_unique_kill_ms"]=7936, + ["map_player_disable_soul_gain_prevention"]=7937, ["map_player_es_loss_per_second_in_hellscape"]=1045, - ["map_player_flask_recovery_is_instant"]=7758, - ["map_player_global_defences_+%_final_from_sanctum_boon"]=2537, - ["map_player_has_blood_magic_keystone"]=2069, - ["map_player_has_chaos_inoculation_keystone"]=2071, - ["map_player_has_level_X_conductivity"]=2082, - ["map_player_has_level_X_despair"]=2083, - ["map_player_has_level_X_elemental_weakness"]=2077, - ["map_player_has_level_X_enfeeble"]=2073, - ["map_player_has_level_X_flammability"]=2080, - ["map_player_has_level_X_frostbite"]=2081, - ["map_player_has_level_X_punishment"]=2079, - ["map_player_has_level_X_silence"]=2084, - ["map_player_has_level_X_temporal_chains"]=2075, - ["map_player_has_level_X_vulnerability"]=2072, - ["map_player_has_random_level_X_curse_every_10_seconds"]=7759, - ["map_player_life_and_es_recovery_speed_+%_final"]=7760, + ["map_player_flask_recovery_is_instant"]=7938, + ["map_player_global_defences_+%_final_from_sanctum_boon"]=2501, + ["map_player_has_blood_magic_keystone"]=2038, + ["map_player_has_chaos_inoculation_keystone"]=2040, + ["map_player_has_level_X_conductivity"]=2051, + ["map_player_has_level_X_despair"]=2052, + ["map_player_has_level_X_elemental_weakness"]=2046, + ["map_player_has_level_X_enfeeble"]=2042, + ["map_player_has_level_X_flammability"]=2049, + ["map_player_has_level_X_frostbite"]=2050, + ["map_player_has_level_X_punishment"]=2048, + ["map_player_has_level_X_silence"]=2053, + ["map_player_has_level_X_temporal_chains"]=2044, + ["map_player_has_level_X_vulnerability"]=2041, + ["map_player_has_random_level_X_curse_every_10_seconds"]=7939, + ["map_player_life_and_es_recovery_speed_+%_final"]=7940, ["map_player_life_loss_per_second_in_hellscape"]=1046, - ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=7761, - ["map_player_lose_no_experience_on_death"]=7762, - ["map_player_maximum_life_and_es_+%_final_from_sanctum_curse"]=7763, - ["map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse"]=7764, + ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=7941, + ["map_player_lose_no_experience_on_death"]=7942, + ["map_player_maximum_life_and_es_+%_final_from_sanctum_curse"]=7943, + ["map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse"]=7944, ["map_player_movement_speed_+%_final_in_hellscape"]=1047, - ["map_player_movement_velocity_+%"]=7765, - ["map_player_no_regeneration"]=2085, - ["map_player_non_curse_aura_effect_+%"]=7766, - ["map_player_onslaught_on_kill_%"]=7767, - ["map_player_projectile_damage_+%_final"]=2088, - ["map_player_shrine_buff_effect_on_self_+%"]=7768, - ["map_player_shrine_effect_duration_+%"]=7769, - ["map_player_spell_suppression_chance_%_in_hellscape"]=1048, - ["map_player_status_recovery_speed_+%"]=2087, - ["map_players_additional_number_of_projectiles"]=2110, - ["map_players_and_monsters_chaos_damage_taken_+%"]=7770, - ["map_players_and_monsters_cold_damage_taken_+%"]=7771, - ["map_players_and_monsters_critical_strike_chance_+%"]=7772, - ["map_players_and_monsters_curses_are_reflected"]=7773, - ["map_players_and_monsters_damage_+%_per_curse"]=7774, - ["map_players_and_monsters_damage_taken_+%_while_stationary"]=7775, - ["map_players_and_monsters_fire_damage_taken_+%"]=7776, - ["map_players_and_monsters_have_onslaught_if_hit_recently"]=7777, - ["map_players_and_monsters_have_resolute_technique"]=7778, - ["map_players_and_monsters_lightning_damage_taken_+%"]=7779, - ["map_players_and_monsters_movement_speed_+%"]=7780, - ["map_players_and_monsters_physical_damage_taken_+%"]=7781, - ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=7782, - ["map_players_armour_+%_final"]=7783, - ["map_players_block_chance_+%"]=7784, - ["map_players_cannot_gain_endurance_charges"]=7785, - ["map_players_cannot_gain_flask_charges"]=7786, - ["map_players_cannot_gain_frenzy_charges"]=7787, - ["map_players_cannot_gain_power_charges"]=7788, - ["map_players_cannot_take_reflected_damage"]=7789, - ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=7790, - ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=7791, - ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=7792, - ["map_players_gain_onslaught_during_flask_effect"]=7793, - ["map_players_gain_rampage_stacks"]=2335, - ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=7794, - ["map_players_gain_rare_monster_mods_on_kill_ms"]=3080, - ["map_players_gain_soul_eater_on_rare_kill_ms"]=3082, - ["map_players_have_decay_rarity_buff"]=7795, - ["map_players_have_point_blank"]=7796, - ["map_players_movement_skills_cooldown_speed_+%"]=7797, - ["map_players_movement_speed_+%"]=7798, - ["map_players_no_regeneration_including_es"]=7799, - ["map_players_resist_all_%"]=7800, - ["map_players_skill_area_of_effect_+%_final"]=7801, - ["map_players_spell_damage_%_suppressed"]=7802, - ["map_portals_do_not_expire"]=7803, - ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=7804, - ["map_possessed_monsters_drop_map_chance_%"]=7805, - ["map_possessed_monsters_drop_polished_scarab_chance_%"]=7806, - ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=7807, - ["map_possessed_monsters_drop_unique_chance_%"]=7808, - ["map_possessed_monsters_drop_winged_scarab_chance_%"]=7809, - ["map_prefix_mod_effect_+%_final"]=7810, - ["map_projectile_speed_+%"]=2089, - ["map_rampage_time_+%"]=7811, - ["map_random_unique_monster_is_possessed"]=7812, - ["map_random_zana_mod"]=7813, - ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=7814, - ["map_rare_breach_monsters_drop_additional_shards"]=7815, - ["map_rare_chest_amount_+%"]=1982, - ["map_rare_monster_additional_modifier_chance_%_with_rollover"]=7816, - ["map_rare_monster_life_regeneration_rate_per_minute_%"]=3909, - ["map_rare_monster_num_additional_modifiers"]=7817, - ["map_rare_monsters_are_hindered"]=7818, - ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=7819, - ["map_rare_monsters_drop_x_additional_rare_items"]=7820, - ["map_rare_monsters_have_inner_treasure"]=7821, - ["map_reliquary_set"]=7822, - ["map_remove_irradiation_instead_of_completing"]=7823, - ["map_ritual_additional_reward_rerolls"]=7824, - ["map_ritual_defer_reward_tribute_cost_+%"]=7825, - ["map_ritual_deferred_rewards_are_offered_again_+%_sooner"]=7826, - ["map_ritual_magic_monsters_+%"]=7827, - ["map_ritual_number_of_free_rerolls"]=7828, - ["map_ritual_offered_and_defer_rewards_tribute_cost_+%"]=7829, - ["map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute"]=7830, - ["map_ritual_omen_chance_+%"]=7831, - ["map_ritual_rare_monsters_+%"]=7832, - ["map_ritual_rewards_reroll_cost_+%_final"]=7833, - ["map_ritual_tribute_+%"]=7834, - ["map_ritual_uber_rune_type_weighting_+%"]=7835, - ["map_ritual_unlimited_reward_rerolls"]=7836, - ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=7837, - ["map_rogue_exile_chance_%"]=7839, - ["map_rogue_exile_chance_+%"]=7838, - ["map_rogue_exile_drop_skill_gem_with_quality"]=7840, - ["map_rogue_exiles_are_doubled"]=7841, - ["map_rogue_exiles_damage_+%"]=7842, - ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=7843, - ["map_rogue_exiles_drop_x_additional_jewels"]=7844, - ["map_rogue_exiles_dropped_items_are_corrupted"]=7845, - ["map_rogue_exiles_dropped_items_are_duplicated"]=7846, - ["map_rogue_exiles_dropped_items_are_fully_linked"]=7847, - ["map_rogue_exiles_maximum_life_+%"]=7848, - ["map_shaper_rare_chance_+%"]=7849, - ["map_shrine_chance_%"]=7851, - ["map_shrine_chance_+%"]=7850, - ["map_shrine_granted_player_buff_duration_+%"]=7852, - ["map_shrine_granted_player_buff_effect_+%"]=7853, - ["map_shrine_monster_life_+%_final"]=7854, - ["map_shrines_are_darkshrines"]=2059, - ["map_shrines_drop_x_currency_items_on_activation"]=7855, - ["map_shrines_grant_a_random_additional_effect"]=7856, - ["map_simulacrum_reward_level_+"]=7857, - ["map_size_+%"]=2000, - ["map_spawn_abysses"]=7858, - ["map_spawn_affliction_mirror"]=7859, - ["map_spawn_bestiary_encounters"]=7860, - ["map_spawn_betrayals"]=2329, - ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=7861, - ["map_spawn_cadiro_%_chance"]=7862, - ["map_spawn_exile_per_area_%"]=2326, - ["map_spawn_extra_exiles"]=2056, - ["map_spawn_extra_perandus_chests"]=7863, - ["map_spawn_extra_talismans"]=2063, - ["map_spawn_extra_torment_spirits"]=2065, - ["map_spawn_extra_warbands"]=2057, - ["map_spawn_harbingers"]=2060, - ["map_spawn_heist_smugglers_cache"]=7864, - ["map_spawn_incursion_encounters"]=7865, - ["map_spawn_perandus_chests"]=2062, - ["map_spawn_talismans"]=2061, - ["map_spawn_tormented_spirits"]=2332, - ["map_spawn_two_bosses"]=2143, - ["map_spawn_x_additional_heist_smugglers_caches"]=7866, - ["map_spawn_x_random_map_bosses"]=7867, - ["map_storm_area_of_effect_+%"]=7868, - ["map_strongbox_chain_length"]=105, - ["map_strongbox_chance_%"]=7869, - ["map_strongbox_chance_+%"]=7870, - ["map_strongbox_items_dropped_are_mirrored"]=7871, - ["map_strongbox_monsters_attack_speed_+%"]=7872, - ["map_strongbox_monsters_damage_+%"]=136, - ["map_strongbox_monsters_item_quantity_+%"]=7873, - ["map_strongbox_monsters_life_+%"]=129, - ["map_strongboxes_additional_pack_chance_%"]=125, - ["map_strongboxes_are_corrupted"]=7874, - ["map_strongboxes_at_least_rare"]=7875, - ["map_strongboxes_drop_x_additional_rare_items"]=7876, - ["map_strongboxes_minimum_rarity"]=7877, - ["map_strongboxes_vaal_orb_drop_chance_%"]=7598, - ["map_suffix_mod_effect_+%_final"]=7878, - ["map_synthesis_league"]=7879, - ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=7880, - ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=7881, - ["map_synthesis_spawn_additional_fungal_chest_clusters"]=7882, - ["map_synthesis_spawn_additional_magic_ambush_chest"]=7883, - ["map_synthesis_spawn_additional_normal_ambush_chest"]=7884, - ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=7885, - ["map_synthesis_spawn_additional_rare_ambush_chest"]=7886, - ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=7887, - ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=7888, - ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=7889, - ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=7890, - ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=7891, - ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=7892, - ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=7893, - ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=7894, - ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=7895, - ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=7896, - ["map_synthesised_magic_monster_drop_additional_currency"]=7897, - ["map_synthesised_magic_monster_drop_additional_currency_shard"]=7898, - ["map_synthesised_magic_monster_drop_additional_quality_currency"]=7899, - ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=7900, - ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=7901, - ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=7902, - ["map_synthesised_magic_monster_items_drop_corrupted_%"]=7903, - ["map_synthesised_magic_monster_map_drop_chance_+%"]=7904, - ["map_synthesised_magic_monster_slain_experience_+%"]=7905, - ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=7906, - ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=7907, - ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=7908, - ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=7909, - ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=7910, - ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=7911, - ["map_synthesised_monster_additional_fossil_drop_chance_%"]=7912, - ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=7913, - ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=7914, - ["map_synthesised_monster_dropped_item_quantity_+%"]=7915, - ["map_synthesised_monster_dropped_item_rarity_+%"]=7916, - ["map_synthesised_monster_fractured_item_drop_chance_+%"]=7917, - ["map_synthesised_monster_items_drop_corrupted_%"]=7918, - ["map_synthesised_monster_map_drop_chance_+%"]=7919, - ["map_synthesised_monster_pack_size_+%"]=7920, - ["map_synthesised_monster_slain_experience_+%"]=7921, - ["map_synthesised_monster_unique_item_drop_chance_+%"]=7922, - ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=7923, - ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=7924, - ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=7925, - ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=7926, - ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=7927, - ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=7928, - ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=7929, - ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=7930, - ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=7931, - ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=7932, - ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=7933, - ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=7934, - ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=7935, - ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=7936, - ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=7937, - ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=7938, - ["map_synthesised_rare_monster_drop_additional_currency"]=7939, - ["map_synthesised_rare_monster_drop_additional_currency_shard"]=7940, - ["map_synthesised_rare_monster_drop_additional_quality_currency"]=7941, - ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=7942, - ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=7943, - ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=7944, - ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=7945, - ["map_synthesised_rare_monster_items_drop_corrupted_%"]=7946, - ["map_synthesised_rare_monster_map_drop_chance_+%"]=7947, - ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=7948, - ["map_synthesised_rare_monster_slain_experience_+%"]=7949, - ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=7950, - ["map_talismans_dropped_as_rare"]=7951, - ["map_talismans_higher_tier"]=7952, - ["map_tempest_area_of_effect_+%_visible"]=7953, - ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2039, - ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2035, - ["map_tempest_corruption_weight"]=7954, - ["map_tempest_display_prefix"]=29, - ["map_tempest_display_suffix"]=30, - ["map_tempest_frequency_+%"]=7955, - ["map_tempest_ground_ice"]=2036, - ["map_tempest_ground_lightning"]=2037, - ["map_tempest_ground_tar_movement_speed_+%"]=2038, - ["map_tempest_radiant_weight"]=7956, - ["map_temporal_chains_curse_zones"]=2076, - ["map_tormented_spirit_chance_%"]=7957, - ["map_tormented_spirit_chance_+%"]=7958, - ["map_tormented_spirits_drop_x_additional_rare_items"]=7959, - ["map_tormented_spirits_duration_+%"]=7960, - ["map_tormented_spirits_movement_speed_+%"]=7961, - ["map_tower_augment_quantity_+%"]=7962, - ["map_unique_boss_drops_divination_cards"]=7963, - ["map_unique_boss_num_additional_modifiers"]=7964, - ["map_unique_item_drop_chance_+%"]=7965, - ["map_unique_monster_num_additional_modifiers"]=7966, - ["map_unique_monsters_drop_corrupted_items"]=7967, - ["map_upgrade_pack_to_magic_%_chance"]=7968, - ["map_upgrade_pack_to_rare_%_chance"]=7969, - ["map_upgrade_synthesised_pack_to_magic_%_chance"]=7970, - ["map_upgrade_synthesised_pack_to_rare_%_chance"]=7971, - ["map_vaal_monster_items_drop_corrupted_%"]=7972, - ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=7973, - ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=7974, - ["map_vaal_temple_spawn_additional_vaal_vessels"]=7975, - ["map_vaal_vessel_drop_X_divination_cards"]=7976, - ["map_vaal_vessel_drop_X_fossils"]=7977, - ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=7978, - ["map_vaal_vessel_drop_X_mortal_fragments"]=7979, - ["map_vaal_vessel_drop_X_prophecies"]=7980, - ["map_vaal_vessel_drop_X_rare_temple_items"]=7981, - ["map_vaal_vessel_drop_X_sacrifice_fragments"]=7982, - ["map_vaal_vessel_drop_X_vaal_orbs"]=7983, - ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=7984, - ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=7985, - ["map_vaal_vessel_item_drop_quantity_+%"]=7986, - ["map_vaal_vessel_item_drop_rarity_+%"]=7987, - ["map_warbands_packs_have_additional_elites"]=7988, - ["map_warbands_packs_have_additional_grunts"]=7989, - ["map_warbands_packs_have_additional_supports"]=7990, - ["map_watchstone_additional_packs_of_elder_monsters"]=7991, - ["map_watchstone_additional_packs_of_shaper_monsters"]=7992, - ["map_watchstone_monsters_damage_+%_final"]=7993, - ["map_watchstone_monsters_life_+%_final"]=7994, - ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=130, - ["map_weapon_and_shields_drop_fractured_%_chance"]=131, - ["map_weapon_and_shields_drop_fully_linked_%_chance"]=132, - ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=133, - ["map_weapons_drop_animated"]=2726, - ["maps_with_bosses_additional_essence_+"]=7995, - ["maps_with_bosses_additional_shrine_+"]=7996, - ["maps_with_bosses_additional_spirit_+"]=7997, - ["maps_with_bosses_additional_strongbox_+"]=7998, - ["marauder_hidden_ascendancy_damage_+%_final"]=7999, - ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8000, - ["mark_effect_+%"]=2314, - ["mark_skill_cast_speed_+%"]=1913, - ["mark_skill_duration_+%"]=8001, - ["mark_skill_mana_cost_+%"]=8002, - ["marked_enemies_cannot_deal_critical_strikes"]=8003, - ["marked_enemies_cannot_regenerate_life"]=8004, - ["marked_enemy_accuracy_rating_+%"]=8005, - ["marked_enemy_damage_taken_+%"]=8006, - ["marks_you_inflict_remain_after_death"]=8007, - ["master_of_elements_evasion_rating_+%_final"]=8008, - ["mastery_chance_to_evade_melee_attacks_+%_final"]=8009, - ["maven_fight_layout_override"]=8010, - ["max_adaptations_+"]=1393, - ["max_chance_to_block_attacks_if_not_blocked_recently"]=8011, - ["max_charged_attack_stacks"]=3844, - ["max_endurance_charges"]=1524, - ["max_fortification_+1_per_5"]=8012, - ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=9556, - ["max_fortification_while_focused_+1_per_5"]=8013, - ["max_fortification_while_stationary_+1_per_5"]=8014, - ["max_frenzy_charges"]=1529, - ["max_life_%_as_mana"]=8015, - ["max_life_%_as_spirit"]=8016, - ["max_mana_increases_apply_to_effect_of_arcane_surge_on_self"]=8017, - ["max_power_charges"]=1534, - ["max_steel_ammo"]=8018, - ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1537, - ["maximum_added_chaos_damage_if_have_crit_recently"]=8109, - ["maximum_added_chaos_damage_per_curse_on_enemy"]=8110, - ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8111, - ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8112, - ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8113, - ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8114, - ["maximum_added_cold_damage_if_have_crit_recently"]=8115, - ["maximum_added_cold_damage_per_frenzy_charge"]=3891, - ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8116, - ["maximum_added_cold_damage_vs_chilled_enemies"]=8117, - ["maximum_added_cold_damage_while_affected_by_hatred"]=8118, - ["maximum_added_cold_damage_while_you_have_avians_might"]=8119, - ["maximum_added_fire_attack_damage_per_active_buff"]=1182, - ["maximum_added_fire_damage_if_blocked_recently"]=3893, - ["maximum_added_fire_damage_if_have_crit_recently"]=8120, - ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8121, - ["maximum_added_fire_damage_per_active_buff"]=1184, - ["maximum_added_fire_damage_per_endurance_charge"]=8122, - ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8123, - ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8124, - ["maximum_added_fire_damage_vs_ignited_enemies"]=1181, - ["maximum_added_fire_spell_damage_per_active_buff"]=1183, - ["maximum_added_lightning_damage_if_have_crit_recently"]=8125, - ["maximum_added_lightning_damage_per_10_int"]=8019, - ["maximum_added_lightning_damage_per_power_charge"]=8126, - ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8127, - ["maximum_added_lightning_damage_to_attacks_per_20_intelligence"]=8128, - ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8129, - ["maximum_added_lightning_damage_while_you_have_avians_might"]=8130, - ["maximum_added_physical_damage_if_have_crit_recently"]=8131, - ["maximum_added_physical_damage_per_endurance_charge"]=8132, - ["maximum_added_physical_damage_per_impaled_on_enemy"]=8133, - ["maximum_added_physical_damage_vs_bleeding_enemies"]=2213, - ["maximum_added_physical_damage_vs_frozen_enemies"]=1180, - ["maximum_added_physical_damage_vs_poisoned_enemies"]=8134, - ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=8135, - ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=8136, - ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=8137, - ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1532, - ["maximum_arrow_fire_damage_added_for_each_pierce"]=4325, - ["maximum_blitz_charges"]=8020, - ["maximum_block_modifiers_apply_to_maximum_resistances_instead"]=8021, - ["maximum_blood_scythe_charges"]=3986, - ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1527, - ["maximum_caltrops_allowed"]=8022, - ["maximum_challenger_charges"]=8023, - ["maximum_chance_to_evade_is_50%"]=8024, - ["maximum_chaos_damage_to_return_to_melee_attacker"]=1901, - ["maximum_chaos_infusion_stacks"]=8025, - ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8026, - ["maximum_cold_damage_to_return_to_melee_attacker"]=1899, - ["maximum_cold_infusion_stacks"]=8027, - ["maximum_cold_resistance_+1_per_X_corresponding_support"]=8028, - ["maximum_critical_strike_chance"]=2451, - ["maximum_critical_strike_chance_is_50%"]=8029, - ["maximum_darkness_+%"]=8030, - ["maximum_divine_charges"]=4019, - ["maximum_endurance_charges_+_while_affected_by_determination"]=8031, - ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1525, - ["maximum_energy_shield_%_lost_on_kill"]=1482, - ["maximum_energy_shield_+%"]=895, - ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1422, - ["maximum_energy_shield_+1_per_x_body_armour_evasion_rating"]=8032, - ["maximum_energy_shield_+_per_100_life_reserved"]=1406, - ["maximum_energy_shield_+_per_5_armour_on_shield"]=4009, - ["maximum_energy_shield_+_per_5_strength"]=3412, - ["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=1407, - ["maximum_energy_shield_from_body_armour_+%"]=8033, - ["maximum_es_+%_per_equipped_corrupted_item"]=2774, - ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2706, - ["maximum_fanaticism_charges"]=8034, - ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8036, - ["maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance"]=8035, - ["maximum_fire_damage_to_return_to_melee_attacker"]=1898, - ["maximum_fire_infusion_stacks"]=8037, - ["maximum_fire_resistance_+1_per_X_corresponding_support"]=8038, - ["maximum_frenzy_charges_+_while_affected_by_grace"]=8039, - ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1530, - ["maximum_frenzy_power_endurance_charges"]=8040, - ["maximum_intensify_stacks"]=8042, - ["maximum_life_%_lost_on_kill"]=1480, - ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8046, - ["maximum_life_%_to_gain_as_armour"]=8047, - ["maximum_life_%_to_gain_as_maximum_energy_shield"]=8048, - ["maximum_life_+%"]=897, - ["maximum_life_+%_and_fire_resistance_-%"]=1420, - ["maximum_life_+%_for_corpses_you_create"]=8049, - ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8050, - ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8051, - ["maximum_life_+%_per_equipped_corrupted_item"]=2773, - ["maximum_life_+%_per_stackable_unique_jewel"]=3788, - ["maximum_life_mana_and_energy_shield_+%"]=1409, - ["maximum_life_per_10_dexterity"]=8043, - ["maximum_life_per_10_intelligence"]=8044, - ["maximum_life_per_10_levels"]=2465, - ["maximum_life_per_2%_increased_item_found_rarity"]=8045, - ["maximum_life_per_equipped_elder_item"]=3969, - ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2705, - ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8052, - ["maximum_lightning_damage_to_return_on_block"]=2304, - ["maximum_lightning_damage_to_return_to_melee_attacker"]=1900, - ["maximum_lightning_infusion_stacks"]=8053, - ["maximum_lightning_resistance_+1_per_X_corresponding_support"]=8054, - ["maximum_mana_%_gained_on_kill"]=1481, - ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=8055, - ["maximum_mana_+%"]=899, - ["maximum_mana_+%_and_cold_resistance_-%"]=1421, - ["maximum_mana_+%_per_2%_spell_block_chance"]=3229, - ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8056, - ["maximum_number_of_blades_left_in_ground"]=8057, - ["maximum_physical_attack_damage_on_crit_+%_final"]=8058, - ["maximum_physical_damage_reduction_%"]=1395, - ["maximum_physical_damage_reduction_is_50%"]=8059, - ["maximum_physical_damage_to_reflect_to_self_on_attack"]=1896, - ["maximum_physical_damage_to_return_on_block"]=2303, - ["maximum_physical_damage_to_return_to_melee_attacker"]=1897, - ["maximum_power_and_endurance_charges_+"]=8060, - ["maximum_power_and_frenzy_charges_+"]=1535, - ["maximum_power_charges_+_while_affected_by_discipline"]=8061, - ["maximum_rage"]=8664, - ["maximum_rage_+_while_wielding_axe"]=8062, - ["maximum_rage_per_equipped_one_handed_sword"]=8063, - ["maximum_random_movement_velocity_+%_when_hit"]=8064, - ["maximum_spell_block_chance_per_50_strength"]=1702, - ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4012, - ["maximum_virulence_stacks"]=8065, - ["maximum_void_arrows"]=3987, - ["maximum_volatility_allowed"]=8066, - ["melee_ancestor_totem_damage_+%"]=3265, - ["melee_ancestor_totem_elemental_resistance_%"]=3742, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3433, - ["melee_ancestor_totem_placement_speed_+%"]=3604, - ["melee_attack_number_of_spirit_strikes"]=8067, - ["melee_attack_speed_+%"]=1281, - ["melee_attacks_usable_without_mana_cost"]=2392, - ["melee_cold_damage_+%"]=1695, - ["melee_cold_damage_+%_while_fortify_is_active"]=1994, - ["melee_cold_damage_+%_while_holding_shield"]=1698, - ["melee_critical_strike_chance_+%"]=1343, - ["melee_critical_strike_chance_+%_if_warcried_recently"]=8068, - ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8069, - ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1364, - ["melee_damage_+%"]=1156, - ["melee_damage_+%_at_close_range"]=8073, - ["melee_damage_+%_during_flask_effect"]=8074, - ["melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently"]=8070, - ["melee_damage_+%_per_endurance_charge"]=3801, - ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8075, - ["melee_damage_+%_vs_burning_enemies"]=1161, - ["melee_damage_+%_vs_frozen_enemies"]=1157, - ["melee_damage_+%_vs_heavy_stunned_enemies"]=8076, - ["melee_damage_+%_vs_immobilised_enemies"]=8071, - ["melee_damage_+%_vs_shocked_enemies"]=1159, - ["melee_damage_+%_when_on_full_life"]=2348, - ["melee_damage_+%_while_fortified"]=3872, - ["melee_damage_+%_with_spears_while_surrounded"]=8072, - ["melee_damage_taken_%_to_deal_to_attacker"]=2416, - ["melee_damage_taken_+%"]=2452, - ["melee_damage_vs_bleeding_enemies_+%"]=2211, - ["melee_fire_damage_+%"]=1694, - ["melee_fire_damage_+%_while_holding_shield"]=1697, - ["melee_hit_damage_stun_multiplier_+%"]=8077, - ["melee_hit_damage_stun_multiplier_+%_final_from_ot"]=8078, - ["melee_hits_grant_rampage_stacks"]=9578, - ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8079, - ["melee_physical_damage_+%"]=1693, - ["melee_physical_damage_+%_per_10_dexterity"]=8080, - ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8081, - ["melee_physical_damage_+%_vs_ignited_enemies"]=3942, - ["melee_physical_damage_+%_while_fortify_is_active"]=1995, - ["melee_physical_damage_+%_while_holding_shield"]=1696, - ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2178, - ["melee_range_+"]=2252, - ["melee_range_+_while_at_least_5_enemies_nearby"]=8082, - ["melee_range_+_while_dual_wielding"]=8084, - ["melee_range_+_while_unarmed"]=2756, - ["melee_range_+_while_wielding_shield"]=8083, - ["melee_range_+_with_axe"]=8085, - ["melee_range_+_with_claw"]=8086, - ["melee_range_+_with_dagger"]=8087, - ["melee_range_+_with_flail"]=8088, - ["melee_range_+_with_mace"]=8089, - ["melee_range_+_with_one_handed"]=8090, - ["melee_range_+_with_spear"]=8091, - ["melee_range_+_with_staff"]=8092, - ["melee_range_+_with_sword"]=8093, - ["melee_range_+_with_two_handed"]=8094, - ["melee_skill_gem_level_+"]=951, - ["melee_skills_area_of_effect_+%"]=8095, - ["melee_splash"]=1100, - ["melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently"]=8096, - ["melee_strike_skill_strike_previous_location"]=8097, - ["melee_weapon_critical_strike_multiplier_+"]=1362, - ["melee_weapon_range_+_if_you_have_killed_recently"]=8098, - ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8099, - ["melee_weapon_range_+_while_fortified"]=8100, - ["memory_line_abyss_scourge_spawn_boss_chance_%"]=106, - ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=117, - ["memory_line_big_harvest"]=107, - ["memory_line_breach_boss_spawn_chance_%"]=118, - ["memory_line_breach_covers_map"]=92, - ["memory_line_essence_monster_number_of_essences"]=108, - ["memory_line_maximum_possessions_of_rare_unique_monsters"]=109, - ["memory_line_minimum_possessions_of_rare_unique_monsters"]=93, - ["memory_line_num_harvest_plots"]=94, - ["memory_line_number_of_abyss_scourge_cracks"]=95, - ["memory_line_number_of_breaches"]=96, - ["memory_line_number_of_essences"]=97, - ["memory_line_number_of_excursions"]=98, - ["memory_line_number_of_large_breach_chests"]=110, - ["memory_line_number_of_pantheon_shrines"]=3935, - ["memory_line_number_of_shrines"]=3934, - ["memory_line_number_of_strongboxes"]=99, - ["memory_line_player_is_harbinger"]=100, - ["memory_line_strongboxes_chance_to_be_operatives_%"]=119, - ["mine_%_chance_to_detonate_twice"]=8106, - ["mine_area_damage_+%_if_detonated_mine_recently"]=8101, - ["mine_area_of_effect_+%"]=8102, - ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8103, - ["mine_arming_speed_+%"]=3853, - ["mine_aura_effect_+%"]=8104, - ["mine_critical_strike_chance_+%"]=1339, - ["mine_critical_strike_multiplier_+"]=1365, - ["mine_damage_+%"]=1123, - ["mine_damage_penetrates_%_elemental_resistance"]=2487, - ["mine_detonation_is_instant"]=2485, - ["mine_detonation_radius_+%"]=1638, - ["mine_detonation_speed_+%"]=8105, - ["mine_duration_+%"]=1635, - ["mine_extra_uses"]=2714, - ["mine_laying_speed_+%"]=1640, - ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3124, - ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8107, - ["mines_invulnerable"]=8108, - ["mines_invulnerable_for_duration_ms"]=2490, - ["minimum_added_chaos_damage_if_have_crit_recently"]=8109, - ["minimum_added_chaos_damage_per_curse_on_enemy"]=8110, - ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8111, - ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8112, - ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8113, - ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8114, - ["minimum_added_cold_damage_if_have_crit_recently"]=8115, - ["minimum_added_cold_damage_per_frenzy_charge"]=3891, - ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8116, - ["minimum_added_cold_damage_vs_chilled_enemies"]=8117, - ["minimum_added_cold_damage_while_affected_by_hatred"]=8118, - ["minimum_added_cold_damage_while_you_have_avians_might"]=8119, - ["minimum_added_fire_attack_damage_per_active_buff"]=1182, - ["minimum_added_fire_damage_if_blocked_recently"]=3893, - ["minimum_added_fire_damage_if_have_crit_recently"]=8120, - ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8121, - ["minimum_added_fire_damage_per_active_buff"]=1184, - ["minimum_added_fire_damage_per_endurance_charge"]=8122, - ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8123, - ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8124, - ["minimum_added_fire_damage_vs_ignited_enemies"]=1181, - ["minimum_added_fire_spell_damage_per_active_buff"]=1183, - ["minimum_added_lightning_damage_if_have_crit_recently"]=8125, - ["minimum_added_lightning_damage_per_power_charge"]=8126, - ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8127, - ["minimum_added_lightning_damage_to_attacks_per_20_intelligence"]=8128, - ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8129, - ["minimum_added_lightning_damage_while_you_have_avians_might"]=8130, - ["minimum_added_physical_damage_if_have_crit_recently"]=8131, - ["minimum_added_physical_damage_per_endurance_charge"]=8132, - ["minimum_added_physical_damage_per_impaled_on_enemy"]=8133, - ["minimum_added_physical_damage_vs_bleeding_enemies"]=2213, - ["minimum_added_physical_damage_vs_frozen_enemies"]=1180, - ["minimum_added_physical_damage_vs_poisoned_enemies"]=8134, - ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=8135, - ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=8136, - ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=8137, - ["minimum_arrow_fire_damage_added_for_each_pierce"]=4325, - ["minimum_chaos_damage_to_return_to_melee_attacker"]=1901, - ["minimum_cold_damage_to_return_to_melee_attacker"]=1899, - ["minimum_endurance_charges_at_devotion_threshold"]=8138, - ["minimum_endurance_charges_per_stackable_unique_jewel"]=3789, - ["minimum_endurance_charges_while_on_low_life_+"]=8139, - ["minimum_fire_damage_to_return_to_melee_attacker"]=1898, - ["minimum_frenzy_charges_at_devotion_threshold"]=8140, - ["minimum_frenzy_charges_per_stackable_unique_jewel"]=3790, - ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=8141, - ["minimum_frenzy_power_endurance_charges"]=8142, - ["minimum_lightning_damage_to_return_on_block"]=2304, - ["minimum_lightning_damage_to_return_to_melee_attacker"]=1900, - ["minimum_physical_attack_damage_on_crit_+%_final"]=8143, - ["minimum_physical_damage_to_reflect_to_self_on_attack"]=1896, - ["minimum_physical_damage_to_return_on_block"]=2303, - ["minimum_physical_damage_to_return_to_melee_attacker"]=1897, - ["minimum_power_charges_at_devotion_threshold"]=8144, - ["minimum_power_charges_per_stackable_unique_jewel"]=3791, - ["minimum_power_charges_while_on_low_life_+"]=8145, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=8210, - ["minion_1%_accuracy_rating_+%_per_X_player_dexterity"]=8146, - ["minion_1%_damage_+%_per_X_player_strength"]=8147, - ["minion_accuracy_rating"]=8148, - ["minion_accuracy_rating_+%"]=8150, - ["minion_accuracy_rating_per_10_devotion"]=8149, - ["minion_actor_scale_+%"]=8151, - ["minion_additional_base_critical_strike_chance"]=8152, - ["minion_additional_physical_damage_reduction_%"]=1998, - ["minion_additional_spell_block_%"]=2603, - ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=8153, - ["minion_attack_added_cold_damage_as_%_parent_maximum_life"]=8154, - ["minion_attack_and_cast_speed_+%"]=8155, - ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=8156, - ["minion_attack_and_cast_speed_+%_per_10_devotion"]=8157, - ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=2940, - ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=8158, - ["minion_attack_hits_knockback_chance_%"]=8159, - ["minion_attack_maximum_added_physical_damage"]=3403, - ["minion_attack_minimum_added_physical_damage"]=3403, - ["minion_attack_speed_+%"]=2606, - ["minion_attack_speed_+%_per_50_dex"]=8160, - ["minion_attacks_chance_to_blind_on_hit_%"]=8161, - ["minion_attacks_chance_to_taunt_on_hit_%"]=3087, - ["minion_base_physical_damage_%_to_convert_to_chaos"]=1678, - ["minion_base_physical_damage_%_to_convert_to_cold"]=1673, - ["minion_base_physical_damage_%_to_convert_to_fire"]=1671, - ["minion_base_physical_damage_%_to_convert_to_lightning"]=1675, - ["minion_bleed_on_hit_with_attacks_%"]=2209, - ["minion_block_%"]=2602, - ["minion_cannot_crit"]=8162, - ["minion_cast_speed_+%"]=2607, - ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3095, - ["minion_chance_to_deal_double_damage_%"]=8163, - ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=8164, - ["minion_chance_to_freeze_%"]=8165, - ["minion_chance_to_freeze_shock_ignite_%"]=8166, - ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3038, - ["minion_chance_to_gain_power_charge_on_hit_%"]=8167, - ["minion_chance_to_ignite_%"]=8168, - ["minion_chance_to_impale_on_attack_hit_%"]=8169, - ["minion_chance_to_shock_%"]=8170, - ["minion_chaos_resistance_%"]=2610, - ["minion_cold_damage_resistance_%"]=3814, - ["minion_commanded_skill_damage_+%"]=8171, - ["minion_cooldown_recovery_+%"]=8172, - ["minion_critical_strike_chance_+%"]=8173, - ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=8174, - ["minion_critical_strike_multiplier_+"]=8175, - ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=3792, - ["minion_damage_+%"]=1687, - ["minion_damage_+%_if_enemy_hit_recently"]=8179, - ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1688, - ["minion_damage_+%_per_5_dex"]=1690, - ["minion_damage_+%_per_active_spectre"]=2942, - ["minion_damage_+%_vs_abyssal_monsters"]=8180, - ["minion_damage_+%_while_affected_by_a_herald"]=8181, - ["minion_damage_+%_while_you_have_at_least_two_different_active_offerings"]=8176, - ["minion_damage_against_ignited_enemies_+%"]=8177, - ["minion_damage_increases_and_reductions_also_affects_you"]=3948, - ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=8178, - ["minion_damage_taken_%_recouped_as_their_life"]=8182, - ["minion_damage_taken_+%"]=8183, - ["minion_deal_no_non_cold_damage"]=8184, - ["minion_demon_add_fury_charge_on_hit_%"]=8185, - ["minion_demon_attack_speed_+%_per_fury_charge"]=8186, - ["minion_demon_damage_+%_final_per_fury_charge"]=8187, - ["minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range"]=8188, - ["minion_demon_life_loss_%_per_minute_per_fury_charge"]=8189, - ["minion_demon_maximum_fury_charges"]=8190, - ["minion_duration_+%_per_active_zombie"]=2941, - ["minion_elemental_resistance_%"]=2609, - ["minion_elemental_resistance_30%"]=8191, - ["minion_energy_shield_delay_-%"]=4036, - ["minion_evasion_rating_+%"]=8192, - ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=8193, - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=8194, - ["minion_fire_damage_resistance_%"]=8195, - ["minion_flask_charges_used_+%"]=1890, - ["minion_global_always_hit"]=8196, - ["minion_global_maximum_added_chaos_damage"]=3404, - ["minion_global_maximum_added_cold_damage"]=3405, - ["minion_global_maximum_added_fire_damage"]=3406, - ["minion_global_maximum_added_lightning_damage"]=3407, - ["minion_global_maximum_added_physical_damage"]=3408, - ["minion_global_minimum_added_chaos_damage"]=3404, - ["minion_global_minimum_added_cold_damage"]=3405, - ["minion_global_minimum_added_fire_damage"]=3406, - ["minion_global_minimum_added_lightning_damage"]=3407, - ["minion_global_minimum_added_physical_damage"]=3408, - ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=8197, - ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4037, - ["minion_larger_aggro_radius"]=9572, - ["minion_life_increased_by_overcapped_fire_resistance"]=8198, - ["minion_life_recovery_rate_+%"]=1489, - ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=2943, - ["minion_life_regeneration_rate_per_minute_%"]=2608, - ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=8199, - ["minion_life_regeneration_rate_per_second"]=8200, - ["minion_lightning_damage_resistance_%"]=3815, - ["minion_maim_on_hit_%"]=8201, - ["minion_malediction_on_hit"]=8202, - ["minion_maximum_all_elemental_resistances_%"]=8203, - ["minion_maximum_energy_shield_+%"]=1491, - ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4034, - ["minion_maximum_life_%_to_gain_as_maximum_energy_shield"]=8204, - ["minion_maximum_life_+%"]=985, - ["minion_maximum_mana_+%"]=1490, - ["minion_melee_damage_+%"]=8205, - ["minion_minimum_power_charges"]=8206, - ["minion_movement_speed_+%"]=1492, - ["minion_movement_speed_+%_per_50_dex"]=8207, - ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=8208, - ["minion_no_critical_strike_multiplier"]=8209, - ["minion_no_extra_bleeding_damage_while_moving"]=2863, - ["minion_physical_damage_%_to_gain_as_cold"]=3816, - ["minion_physical_damage_%_to_gain_as_fire"]=8211, - ["minion_physical_damage_%_to_gain_as_lightning"]=8212, - ["minion_physical_damage_reduction_rating"]=2604, - ["minion_physical_hit_and_dot_damage_%_taken_as_lightning"]=8213, - ["minion_projectile_speed_+%"]=8214, - ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=8216, - ["minion_raging_spirit_maximum_life_+%"]=8215, - ["minion_recover_%_maximum_life_on_minion_death"]=8217, - ["minion_recover_%_of_maximum_life_on_block"]=2741, - ["minion_recover_X_life_on_block"]=1487, - ["minion_reservation_+%"]=8218, - ["minion_resistances_equal_yours"]=8219, - ["minion_resummon_speed_+%"]=8221, - ["minion_resummon_speed_+%_if_all_active_minions_are_companions"]=8220, - ["minion_skill_area_of_effect_+%"]=2707, - ["minion_skill_gem_level_+"]=953, - ["minion_skill_mana_cost_+%"]=8222, - ["minion_skill_physical_damage_%_to_convert_to_fire"]=8223, - ["minion_spell_suppression_chance_%"]=8224, - ["minion_spells_chance_to_hinder_on_hit_%"]=8225, - ["minion_stun_threshold_reduction_+%"]=8226, - ["minion_summoned_recently_attack_and_cast_speed_+%"]=8227, - ["minion_summoned_recently_cannot_be_damaged"]=8228, - ["minion_summoned_recently_movement_speed_+%"]=8229, - ["minion_undead_minions_are_demons_instead"]=8230, - ["minions_%_chance_to_blind_on_hit"]=3780, - ["minions_accuracy_is_equal_to_yours"]=8231, - ["minions_attacks_overwhelm_%_physical_damage_reduction"]=8232, - ["minions_cannot_be_blinded"]=3779, - ["minions_cannot_be_damaged_after_summoned_ms"]=8233, - ["minions_cannot_taunt_enemies"]=8234, - ["minions_chance_to_intimidate_on_hit_%"]=8235, - ["minions_chance_to_poison_on_hit_%"]=2848, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=8236, - ["minions_gain_your_dexterity"]=8237, - ["minions_gain_your_strength"]=8238, - ["minions_get_amulet_stats_instead_of_you"]=1893, - ["minions_go_crazy_on_crit_ms"]=8239, - ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=2990, - ["minions_have_%_chance_to_inflict_wither_on_hit"]=8240, - ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=8241, - ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=1852, - ["minions_have_unholy_might"]=8242, - ["minions_hits_can_only_kill_ignited_enemies"]=8243, - ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=8244, - ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=8245, - ["minions_recover_%_maximum_life_when_you_focus"]=8246, - ["minions_reflected_damage_taken_+%"]=8247, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=8248, - ["minions_use_parents_flasks_on_summon"]=1888, - ["mirage_archer_duration_+%"]=8249, - ["mirage_archers_do_not_attach"]=4045, - ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3497, - ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3359, - ["mirror_arrow_cooldown_speed_+%"]=3515, - ["missing_life_%_gained_as_life_before_hit"]=8250, - ["mod_granted_passive_hash"]=8251, - ["mod_granted_passive_hash_2"]=8252, - ["mod_granted_passive_hash_3"]=8253, - ["mod_granted_passive_hash_4"]=8254, - ["mod_granted_passive_hash_essence"]=8255, - ["modifiers_to_attributes_instead_apply_to_ascendance"]=1115, - ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3217, - ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3218, - ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3216, - ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=8256, - ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3238, - ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=8257, - ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1526, - ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1531, - ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1536, - ["modifiers_to_minion_cast_speed_also_affect_you"]=3390, - ["modifiers_to_minion_damage_also_affect_you"]=3388, - ["modifiers_to_minion_life_regeneration_also_affect_you"]=3391, - ["modifiers_to_minion_movement_speed_also_affect_you"]=3392, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=8258, - ["molten_shell_buff_effect_+%"]=3652, - ["molten_shell_damage_+%"]=3347, - ["molten_shell_duration_+%"]=8259, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=8260, - ["molten_strike_chain_count_+"]=8262, - ["molten_strike_damage_+%"]=3281, - ["molten_strike_num_of_additional_projectiles"]=3577, - ["molten_strike_projectiles_chain_when_impacting_ground"]=8261, - ["molten_strike_radius_+%"]=3443, - ["monster_base_block_%"]=1076, - ["monster_dropped_item_quantity_+%"]=16, - ["monster_dropped_item_rarity_+%"]=15, - ["monster_life_+%_final_from_map"]=1411, - ["monster_life_+%_final_from_rarity"]=1410, - ["monster_slain_experience_+%"]=14, - ["mortar_barrage_mine_damage_+%"]=8265, - ["mortar_barrage_mine_num_projectiles"]=8266, - ["mortar_barrage_mine_throwing_speed_+%"]=8268, - ["mortar_barrage_mine_throwing_speed_halved_+%"]=8267, - ["movement_attack_skills_attack_speed_+%"]=8269, - ["movement_skills_cooldown_speed_+%"]=8270, - ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=8271, - ["movement_skills_cost_no_mana"]=3120, - ["movement_skills_deal_no_physical_damage"]=8272, - ["movement_skills_mana_cost_+%"]=3807, - ["movement_speed_+%_against_bloodlusting_enemies"]=8273, - ["movement_speed_+%_during_flask_effect"]=2858, - ["movement_speed_+%_for_4_seconds_on_block"]=2981, - ["movement_speed_+%_if_below_100_dexterity"]=8274, - ["movement_speed_+%_if_cast_a_mark_spell_recently"]=8283, - ["movement_speed_+%_if_crit_recently"]=8284, - ["movement_speed_+%_if_enemy_hit_recently"]=8285, - ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=8286, - ["movement_speed_+%_if_enemy_killed_recently"]=3880, - ["movement_speed_+%_if_have_cast_dash_recently"]=8287, - ["movement_speed_+%_if_have_not_taken_damage_recently"]=8288, - ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=8289, - ["movement_speed_+%_if_pierced_recently"]=3831, - ["movement_speed_+%_if_pinned_enemy_recently"]=8275, - ["movement_speed_+%_if_placed_trap_or_mine_recently"]=8276, - ["movement_speed_+%_if_used_a_warcry_recently"]=3805, - ["movement_speed_+%_on_throwing_trap"]=2476, - ["movement_speed_+%_per_chest_opened_recently"]=8290, - ["movement_speed_+%_per_endurance_charge"]=8291, - ["movement_speed_+%_per_nearby_corpse"]=8277, - ["movement_speed_+%_per_nearby_enemy"]=8292, - ["movement_speed_+%_per_poison_up_to_50%"]=8293, - ["movement_speed_+%_per_power_charge"]=8294, - ["movement_speed_+%_while_affected_by_ailment"]=8278, - ["movement_speed_+%_while_affected_by_grace"]=8295, - ["movement_speed_+%_while_bleeding"]=8296, - ["movement_speed_+%_while_dual_wielding"]=8297, - ["movement_speed_+%_while_fortified"]=2982, - ["movement_speed_+%_while_holding_shield"]=8298, - ["movement_speed_+%_while_not_affected_by_status_ailments"]=2973, - ["movement_speed_+%_while_not_using_flask"]=8299, - ["movement_speed_+%_while_off_hand_is_empty"]=8300, - ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=8301, - ["movement_speed_+%_while_on_burning_ground"]=8302, - ["movement_speed_+%_while_poisoned"]=8303, - ["movement_speed_+%_while_using_charm"]=8304, - ["movement_speed_+%_while_you_have_cats_stealth"]=8305, - ["movement_speed_+%_while_you_have_energy_shield"]=8306, - ["movement_speed_+%_while_you_have_storm_barrier_support"]=8307, - ["movement_speed_+%_while_you_have_two_linked_targets"]=8279, - ["movement_speed_bonus_when_throwing_trap_ms"]=2476, - ["movement_speed_cannot_be_reduced_below_base"]=2867, - ["movement_speed_is_equal_to_highest_linked_party_member"]=8280, - ["movement_speed_is_only_base_+1%_per_x_evasion_rating"]=8281, - ["movement_speed_penalty_+%_while_performing_action"]=8282, - ["movement_velocity_+%_on_full_energy_shield"]=2657, - ["movement_velocity_+%_per_frenzy_charge"]=1522, - ["movement_velocity_+%_per_poison_stack"]=8308, - ["movement_velocity_+%_per_shock"]=2511, - ["movement_velocity_+%_per_totem"]=8310, - ["movement_velocity_+%_when_on_full_life"]=1520, - ["movement_velocity_+%_when_on_low_life"]=1519, - ["movement_velocity_+%_when_on_shocked_ground"]=1853, - ["movement_velocity_+%_while_at_maximum_power_charges"]=8311, - ["movement_velocity_+%_while_chilled"]=8312, - ["movement_velocity_+%_while_cursed"]=2337, - ["movement_velocity_+%_while_ignited"]=2510, - ["movement_velocity_+%_while_phasing"]=2325, - ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=8309, - ["movement_velocity_+1%_per_X_evasion_rating"]=2383, - ["movement_velocity_while_not_hit_+%"]=2893, - ["nearby_allies_have_onslaught"]=8313, - ["nearby_enemies_all_exposure_%_while_phasing"]=8314, - ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=8315, - ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=8316, - ["nearby_enemies_are_crushed_while_you_have_X_rage"]=8317, - ["nearby_enemies_are_intimidated_while_you_have_rage"]=8318, - ["nearby_enemies_chilled_on_block"]=3889, - ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=8320, - ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=8321, - ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=8322, - ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=8323, - ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3129, - ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=8324, - ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=8325, - ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=8326, - ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=8327, - ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=8328, - ["necrotic_footprints_from_item"]=8329, - ["never_block"]=2932, - ["never_freeze"]=2279, - ["never_freeze_or_chill"]=2280, - ["never_ignite"]=2278, - ["never_ignite_chill_freeze_shock"]=8330, - ["never_shock"]=2281, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2817, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2816, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=8331, - ["no_critical_strike_multiplier"]=1372, - ["no_energy_shield"]=1873, - ["no_energy_shield_recharge_or_regeneration"]=2381, - ["no_evasion_rating"]=1874, - ["no_extra_bleeding_damage_while_moving"]=2864, - ["no_inherent_chance_to_block_while_dual_wielding"]=8332, - ["no_inherent_mana_regeneration"]=8333, - ["no_inherent_rage_loss"]=8334, - ["no_life_regeneration"]=1996, - ["no_mana_regeneration"]=1997, - ["no_mana_regeneration_if_not_crit_recently"]=8335, - ["no_maximum_power_charges"]=2699, - ["no_movement_penalty_while_shield_is_raised"]=8336, - ["no_physical_damage_reduction_rating"]=1872, - ["non_aura_hexes_gain_20%_effect_per_second"]=8337, - ["non_channelling_attack_added_lightning_damage_%_maximum_mana"]=8338, - ["non_channelling_spells_consume_power_charge_when_cast_to_deal_x%_more_damage"]=8339, - ["non_channelling_spells_cost_x%_of_your_energy_shield"]=8340, - ["non_channelling_spells_deal_x%_more_damage"]=8341, - ["non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit"]=8342, - ["non_critical_damage_multiplier_+%"]=2423, - ["non_critical_strikes_deal_no_damage"]=8343, - ["non_critical_strikes_penetrate_elemental_resistances_%"]=3202, - ["non_curse_aura_effect_+%"]=3211, - ["non_curse_aura_effect_+%_per_10_devotion"]=8344, - ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=8345, - ["non_damaging_ailment_effect_+%"]=8346, - ["non_damaging_ailment_effect_+%_on_self"]=8347, - ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=8348, - ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=3970, - ["non_damaging_ailment_effect_+%_per_10_devotion"]=8349, - ["non_damaging_ailment_effect_+%_with_critical_strikes"]=8350, - ["non_damaging_ailments_as_though_damage_+%_final"]=8351, - ["non_damaging_ailments_reflected_to_self"]=8352, - ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=3975, - ["non_piercing_projectiles_critical_strike_chance_+%"]=8353, - ["non_projectile_chaining_lightning_skill_additional_chains"]=8354, - ["non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost"]=8355, - ["non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance"]=8356, - ["non_skill_base_all_damage_%_to_gain_as_chaos"]=1644, - ["non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion"]=8357, - ["non_skill_base_all_damage_%_to_gain_as_cold"]=875, - ["non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning"]=8358, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=8359, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells"]=876, - ["non_skill_base_all_damage_%_to_gain_as_fire"]=873, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=8360, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_spells"]=874, - ["non_skill_base_all_damage_%_to_gain_as_lightning"]=877, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=8361, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells"]=878, - ["non_skill_base_all_damage_%_to_gain_as_physical"]=1643, - ["non_skill_base_cold_damage_%_to_convert_to_chaos"]=1684, - ["non_skill_base_cold_damage_%_to_convert_to_fire"]=1682, - ["non_skill_base_cold_damage_%_to_convert_to_lightning"]=1683, - ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=1654, - ["non_skill_base_cold_damage_%_to_gain_as_fire"]=1653, - ["non_skill_base_elemental_damage_%_to_convert_to_chaos"]=8365, - ["non_skill_base_elemental_damage_%_to_convert_to_cold"]=8366, - ["non_skill_base_elemental_damage_%_to_convert_to_fire"]=8367, - ["non_skill_base_elemental_damage_%_to_convert_to_lightning"]=8368, - ["non_skill_base_elemental_damage_%_to_gain_as_chaos"]=1656, - ["non_skill_base_elemental_damage_%_to_gain_as_cold"]=8362, - ["non_skill_base_elemental_damage_%_to_gain_as_fire"]=8363, - ["non_skill_base_elemental_damage_%_to_gain_as_lightning"]=8364, - ["non_skill_base_fire_damage_%_to_convert_to_chaos"]=1685, - ["non_skill_base_fire_damage_%_to_convert_to_cold"]=8369, - ["non_skill_base_fire_damage_%_to_convert_to_lightning"]=8370, - ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=1655, - ["non_skill_base_lightning_damage_%_to_convert_to_chaos"]=1681, - ["non_skill_base_lightning_damage_%_to_convert_to_cold"]=1680, - ["non_skill_base_lightning_damage_%_to_convert_to_fire"]=1679, - ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=1652, - ["non_skill_base_lightning_damage_%_to_gain_as_cold"]=1651, - ["non_skill_base_lightning_damage_%_to_gain_as_fire"]=1650, - ["non_skill_base_non_chaos_damage_%_to_gain_as_chaos"]=1657, - ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=1677, - ["non_skill_base_physical_damage_%_to_convert_to_chaos_per_level"]=8371, - ["non_skill_base_physical_damage_%_to_convert_to_cold"]=1672, - ["non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=8382, - ["non_skill_base_physical_damage_%_to_convert_to_fire"]=1670, - ["non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=8384, - ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=1674, - ["non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=8386, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1676, - ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=1649, - ["non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3119, - ["non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks"]=8372, - ["non_skill_base_physical_damage_%_to_gain_as_cold"]=1647, - ["non_skill_base_physical_damage_%_to_gain_as_fire"]=1646, - ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=1648, - ["non_skill_base_physical_damage_%_to_gain_as_random_element"]=2626, - ["non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge"]=8375, - ["non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy"]=8373, - ["non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies"]=8374, - ["non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped"]=3972, - ["non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge"]=8376, - ["non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=8377, - ["non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge"]=8378, - ["non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies"]=8379, - ["non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds"]=3393, - ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=8381, - ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=8383, - ["non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies"]=1885, - ["non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=9647, - ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=8385, - ["non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped"]=8380, - ["non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies"]=3863, - ["non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies"]=8387, - ["non_skill_physical_damage_%_to_gain_as_cold_with_attacks"]=3410, - ["non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge"]=8388, - ["non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger"]=8389, - ["non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently"]=8390, - ["non_skill_physical_damage_%_to_gain_as_fire_per_rage"]=8391, - ["non_skill_physical_damage_%_to_gain_as_fire_with_attacks"]=3409, - ["non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath"]=8392, - ["non_skill_physical_damage_%_to_gain_as_lightning_with_attacks"]=3411, - ["non_skill_physical_damage_%_to_gain_as_random_element_while_ignited"]=8393, - ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained"]=8394, - ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain"]=8395, - ["non_travel_attack_skill_repeat_count"]=8396, - ["non_unique_flask_effect_+%"]=2448, - ["normal_monster_dropped_item_quantity_+%"]=8397, - ["notable_knockback_distance_+%_final_for_blocked_hits"]=8398, - ["nova_spells_cast_at_target_location"]=8399, - ["num_additional_skill_slots"]=8400, - ["num_charm_slots"]=8401, - ["num_magic_utility_flasks_always_apply"]=4052, - ["num_of_additional_chains_at_max_frenzy_charges"]=1546, - ["number_of_additional_arrows"]=967, - ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1516, - ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=8402, - ["number_of_additional_chains_for_projectiles_while_phasing"]=8403, - ["number_of_additional_clones"]=2764, - ["number_of_additional_curses_allowed"]=1876, - ["number_of_additional_curses_allowed_on_self"]=1878, - ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=8404, - ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=8405, - ["number_of_additional_ignites_allowed"]=8406, - ["number_of_additional_marks_allowed"]=1877, - ["number_of_additional_mines_to_place"]=3194, - ["number_of_additional_mines_to_place_with_at_least_500_dex"]=8407, - ["number_of_additional_mines_to_place_with_at_least_500_int"]=8408, - ["number_of_additional_poison_stacks"]=8409, - ["number_of_additional_projectiles"]=1515, - ["number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw"]=8410, - ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=8411, - ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=8412, - ["number_of_additional_remote_mines_allowed"]=1947, - ["number_of_additional_shrapnel_ballistae_per_200_strength"]=3049, - ["number_of_additional_siege_ballistae_per_200_dexterity"]=3050, - ["number_of_additional_totems_allowed"]=1945, - ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3252, - ["number_of_additional_traps_allowed"]=1946, - ["number_of_additional_traps_to_throw"]=8413, - ["number_of_animated_weapons_allowed"]=8414, - ["number_of_chains"]=1512, - ["number_of_crab_charges_lost_when_hit"]=3982, - ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=8416, - ["number_of_golems_allowed_with_3_primordial_jewels"]=8417, - ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2914, - ["number_of_poison_cloud_allowed"]=8418, - ["number_of_projectiles_+%_final_from_skill"]=8419, - ["number_of_raging_spirits_is_limited_to_3"]=8420, - ["number_of_skeletons_allowed_per_2_old"]=8421, - ["number_of_support_ghosts_is_limited_to_3"]=8422, - ["number_of_vine_arrow_pod_allowed"]=8423, - ["number_of_zombies_allowed_+%"]=2305, - ["number_of_zombies_allowed_+1_per_X_strength"]=8424, - ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2765, - ["occultist_chaos_damage_+%_final"]=8425, - ["occultist_cold_damage_+%_final"]=8426, - ["occultist_immune_to_stun_while_has_energy_shield"]=3382, - ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3381, - ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=8427, - ["off_hand_attack_speed_+%_while_dual_wielding"]=8428, - ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=8429, - ["off_hand_base_weapon_attack_duration_ms"]=21, - ["off_hand_claw_mana_gain_on_hit"]=8430, - ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=8431, - ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=8432, - ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=8433, - ["off_hand_maximum_attack_distance"]=25, - ["off_hand_minimum_attack_distance"]=23, - ["off_hand_quality"]=18, - ["off_hand_weapon_type"]=10, - ["offering_area_of_effect_+%"]=8434, - ["offering_duration_+%"]=8435, - ["offering_life_+%"]=8436, - ["offering_spells_effect_+%"]=3690, - ["offerings_also_buff_you"]=1101, - ["old_dagger_implicit_critical_strike_chance_+30%"]=1325, - ["old_dagger_implicit_critical_strike_chance_+40%"]=1326, - ["old_dagger_implicit_critical_strike_chance_+50%"]=1327, - ["old_do_not_use_spell_block_%_from_assumed_block_value"]=1089, - ["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=1090, - ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=8437, - ["on_casting_banner_recover_%_of_planted_banner_stages"]=8438, - ["on_kill_effects_occur_twice"]=8439, - ["on_leaving_banner_area_recover_%_of_planted_banner_resources"]=8440, - ["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=8441, - ["on_weapon_global_damage_+%"]=1120, - ["one_handed_attack_ailment_chance_+%"]=8442, - ["one_handed_attack_speed_+%"]=2980, - ["one_handed_melee_accuracy_rating_+%"]=1302, - ["one_handed_melee_attack_speed_+%"]=1286, - ["one_handed_melee_cold_damage_+%"]=1196, - ["one_handed_melee_critical_strike_chance_+%"]=1342, - ["one_handed_melee_critical_strike_multiplier_+"]=1361, - ["one_handed_melee_fire_damage_+%"]=1195, - ["one_handed_melee_physical_damage_+%"]=1194, - ["onslaught_buff_duration_on_culling_strike_ms"]=2711, - ["onslaught_buff_duration_on_kill_ms"]=2353, - ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2354, - ["onslaught_effect_+%"]=2953, - ["onslaught_on_crit_duration_ms"]=2386, - ["onslaught_on_vaal_skill_use_duration_ms"]=2611, - ["onslaught_time_granted_on_kill_ms"]=2677, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2678, - ["open_nearby_chests_on_cast_chance_%"]=8443, - ["orb_of_storm_strike_rate_while_channelling_+%"]=8444, - ["orb_of_storms_cast_speed_+%"]=8445, - ["orb_of_storms_damage_+%"]=3376, - ["overkill_damage_%_as_physical_to_nearby_enemies"]=8446, - ["override_block_chance_for_allies_in_your_presence"]=8447, - ["override_maximum_damage_resistance_%"]=8448, - ["override_weapon_base_critical_strike_chance"]=8449, - ["pain_attunement_keystone_critical_strike_multiplier_+%_final"]=1895, - ["pantheon_abberath_ignite_duration_on_self_+%_final"]=8450, - ["pantheon_shakari_self_poison_duration_+%_final"]=8451, - ["parried_magnitude_+%"]=8452, - ["parry_applies_spell_damage_debuff_instead"]=8453, - ["parry_attack_speed_+%_if_youve_parried_recently"]=8454, - ["parry_blocked_projectile_range_+%"]=8455, - ["parry_cannot_be_critically_hit_during_parry"]=8456, - ["parry_damage_+%"]=8457, - ["parry_deal_thorns_damage_chance_%_on_hit"]=8458, - ["parry_evasion_rating_+%_during_parry"]=8459, - ["parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently"]=8460, - ["parry_hit_damage_stun_multiplier_+%"]=8461, - ["parry_movement_speed_+%_if_youve_parried_recently"]=8462, - ["parry_skill_effect_duration_+%"]=8463, - ["parry_stun_threshold_+%_during_parry"]=8464, - ["parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack"]=8465, - ["parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack"]=8466, - ["passive_applies_to_minions"]=2751, - ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=8467, - ["passive_mastery_damage_taken_over_time_+%_final"]=8468, - ["passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%"]=8469, - ["passive_mastery_less_projectile_speed_+%_final"]=8470, - ["passive_mastery_less_skill_effect_duration_+%_final"]=8471, - ["passive_mastery_more_projectile_speed_+%_final"]=8472, - ["passive_mastery_more_skill_effect_duration_+%_final"]=8473, - ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=8474, - ["passive_mastery_stun_duration_+%_final_with_two_hand_weapon"]=8475, - ["passive_notable_ignite_proliferation_radius"]=1915, - ["passive_tree_damage_taken_+%_final_from_hindered_enemies"]=8476, - ["passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies"]=8477, - ["pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x"]=8478, - ["pathfinder_flask_amount_to_recover_+%_final"]=8479, - ["pathfinder_flask_life_to_recover_+%_final"]=8480, - ["pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask"]=4062, - ["pathfinder_poison_duration_+%_final"]=8481, - ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4059, - ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4060, - ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4061, - ["penance_brand_area_of_effect_+%"]=8482, - ["penance_brand_cast_speed_+%"]=8483, - ["penance_brand_damage_+%"]=8484, - ["penetrate_elemental_resistance_%_per_15_ascendance"]=1117, - ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=8485, - ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2679, - ["perandus_double_number_of_coins_found"]=8486, - ["perfect_timing_window_ms_+%"]=8491, - ["permanent_damage_+%_per_second_of_chill"]=8492, - ["permanent_damage_+%_per_second_of_freeze"]=8493, - ["permanently_intimidate_enemies_you_hit_on_full_life"]=3876, - ["permanently_intimidate_enemy_on_block"]=8494, - ["petrified_blood_mana_reservation_efficiency_+%"]=8496, - ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=8495, - ["petrified_blood_reservation_+%"]=8497, - ["phantasm_refresh_duration_on_hit_vs_unique_%_chance"]=8498, - ["phase_on_vaal_skill_use_duration_ms"]=2612, - ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3654, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=8499, - ["phase_run_skill_effect_duration_+%"]=3745, - ["phase_through_objects"]=2524, - ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3864, - ["phasing_for_4_seconds_on_kill_%"]=3113, - ["phasing_if_blocked_recently"]=8500, - ["phasing_on_rampage_threshold_ms"]=2656, - ["phasing_on_trap_triggered_by_an_enemy_ms"]=3864, - ["phylactery_can_only_contain_non_unique_jewel"]=142, - ["phylactery_jewel_mod_effect_+%"]=144, - ["phys_cascade_trap_cooldown_speed_+%"]=8501, - ["phys_cascade_trap_damage_+%"]=8502, - ["phys_cascade_trap_duration_+%"]=8503, - ["phys_cascade_trap_number_of_additional_cascades"]=8504, - ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=8505, - ["physical_attack_damage_+%"]=1130, - ["physical_attack_damage_+%_while_holding_a_shield"]=1135, - ["physical_attack_damage_taken_+"]=1926, - ["physical_axe_damage_+%"]=1203, - ["physical_bow_damage_+%"]=1223, - ["physical_claw_damage_+%"]=1211, - ["physical_claw_damage_+%_when_on_low_life"]=2301, - ["physical_dagger_damage_+%"]=1215, - ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3882, - ["physical_damage_%_added_as_fire_damage_on_kill"]=2877, - ["physical_damage_%_taken_from_mana_before_life"]=3795, - ["physical_damage_+%"]=1154, - ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3855, - ["physical_damage_+%_if_skill_costs_life"]=8509, - ["physical_damage_+%_per_10_rage"]=8510, - ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=8506, - ["physical_damage_+%_vs_ignited_enemies"]=8511, - ["physical_damage_+%_vs_poisoned_enemies"]=2647, - ["physical_damage_+%_while_affected_by_herald_of_purity"]=8512, - ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3858, - ["physical_damage_+%_while_frozen"]=3005, - ["physical_damage_+%_while_life_leeching"]=1144, - ["physical_damage_+%_while_you_have_resolute_technique"]=9645, - ["physical_damage_+%_with_axes_swords"]=8513, - ["physical_damage_can_chill"]=2579, - ["physical_damage_can_freeze"]=2580, - ["physical_damage_can_shock"]=2581, - ["physical_damage_cannot_poison"]=2589, - ["physical_damage_from_hits_%_taken_as_random_element"]=8507, - ["physical_damage_on_block_+%"]=2889, - ["physical_damage_over_time_+%"]=1137, - ["physical_damage_over_time_multiplier_+_with_attacks"]=1167, - ["physical_damage_over_time_per_10_dexterity_+%"]=3430, - ["physical_damage_over_time_taken_+%_while_moving"]=8508, - ["physical_damage_per_endurance_charge_+%"]=1846, - ["physical_damage_prevented_recouped_as_life_%"]=8514, - ["physical_damage_reduction_%_at_devotion_threshold"]=8515, - ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=8523, - ["physical_damage_reduction_%_per_endurance_charge"]=1999, - ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=8517, - ["physical_damage_reduction_%_per_nearby_enemy"]=8525, - ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=8519, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3689, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3107, - ["physical_damage_reduction_percent_per_frenzy_charge"]=8516, - ["physical_damage_reduction_percent_per_power_charge"]=8518, - ["physical_damage_reduction_rating_%_while_not_moving"]=3954, - ["physical_damage_reduction_rating_+%"]=891, - ["physical_damage_reduction_rating_+%_per_endurance_charge"]=8524, - ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3230, - ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2521, - ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2481, - ["physical_damage_reduction_rating_during_soul_gain_prevention"]=8520, - ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=8521, - ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4010, - ["physical_damage_reduction_rating_per_endurance_charge"]=8522, - ["physical_damage_reduction_rating_per_level"]=2464, - ["physical_damage_reduction_rating_while_frozen"]=2508, - ["physical_damage_taken_%_as_chaos"]=2173, - ["physical_damage_taken_%_as_cold"]=2169, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=8527, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=8528, - ["physical_damage_taken_%_as_fire"]=2168, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=8529, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=8530, - ["physical_damage_taken_%_as_lightning"]=2170, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=8531, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=8532, - ["physical_damage_taken_+"]=1927, - ["physical_damage_taken_+%"]=1933, - ["physical_damage_taken_+%_from_hits"]=8526, - ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3859, - ["physical_damage_taken_+%_while_frozen"]=2509, - ["physical_damage_taken_+%_while_moving"]=3956, - ["physical_damage_taken_+_per_level"]=1928, - ["physical_damage_taken_+_vs_beasts"]=2619, - ["physical_damage_taken_on_minion_death"]=2710, - ["physical_damage_taken_recouped_as_life_%"]=8533, - ["physical_damage_to_return_to_melee_attacker"]=907, - ["physical_damage_to_return_when_hit"]=1906, - ["physical_damage_while_dual_wielding_+%"]=1187, - ["physical_damage_with_attack_skills_+%"]=8534, - ["physical_damage_with_spell_skills_+%"]=8535, - ["physical_dot_multiplier_+"]=1166, - ["physical_dot_multiplier_+_if_crit_recently"]=8536, - ["physical_dot_multiplier_+_if_spent_life_recently"]=8537, - ["physical_dot_multiplier_+_while_wielding_axes_swords"]=8538, - ["physical_hit_and_dot_damage_%_taken_as_chaos"]=8541, - ["physical_hit_and_dot_damage_%_taken_as_fire"]=8539, - ["physical_hit_and_dot_damage_%_taken_as_lightning"]=8540, - ["physical_mace_damage_+%"]=1219, - ["physical_ranged_attack_damage_taken_+"]=1938, - ["physical_reflect_damage_taken_+%"]=2419, - ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=8542, - ["physical_skill_gem_level_+"]=8543, - ["physical_spell_skill_gem_level_+"]=1440, - ["physical_staff_damage_+%"]=1206, - ["physical_sword_damage_+%"]=1227, - ["physical_wand_damage_+%"]=1232, - ["physical_weapon_damage_+%_per_10_str"]=2263, - ["piercing_attacks_cause_bleeding"]=3077, - ["piercing_projectiles_critical_strike_chance_+%"]=8544, - ["pin_almost_pinned_enemies"]=8545, - ["pin_stops_enemies"]=8546, - ["placed_banner_attack_damage_+%"]=8547, - ["placing_traps_cooldown_recovery_+%"]=3109, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=8548, - ["plague_bearer_maximum_stored_poison_damage_+%"]=8549, - ["plague_bearer_movement_speed_+%_while_infecting"]=8550, - ["plague_bearer_poison_effect_+%_while_infecting"]=8551, - ["player_can_be_touched_by_tormented_spirits"]=8552, - ["player_far_shot"]=9631, - ["player_gain_rampage_stacks"]=9579, - ["player_is_harbinger_spawn_pack_on_kill_chance"]=111, - ["poachers_mark_curse_effect_+%"]=3634, - ["poachers_mark_duration_+%"]=3538, - ["poison_as_though_dealing_X_damage_on_block"]=8553, - ["poison_chance_+%"]=8554, - ["poison_cursed_enemies_on_hit"]=3832, - ["poison_duration_+%_per_poison_applied_recently"]=8555, - ["poison_duration_+%_per_power_charge"]=8556, - ["poison_duration_+%_with_over_150_intelligence"]=8557, - ["poison_effect_+%_per_frenzy_charge"]=8561, - ["poison_effect_+%_vs_bleeding_enemies"]=8562, - ["poison_effect_+%_vs_non_poisoned_enemies"]=8558, - ["poison_effect_+%_while_wielding_claw_or_dagger"]=8563, - ["poison_effect_+%_with_spells"]=8564, - ["poison_effect_+100%_final_chance_during_flask_effect"]=8559, - ["poison_on_critical_strike"]=8565, - ["poison_on_critical_strike_with_bow"]=1321, - ["poison_on_critical_strike_with_dagger"]=1318, - ["poison_on_hit_during_flask_effect_%"]=2965, - ["poison_on_melee_critical_strike_%"]=2477, - ["poison_on_melee_hit"]=3878, - ["poison_reflected_to_self"]=8566, - ["poison_time_passed_+%"]=8567, - ["poisonous_concoction_damage_+%"]=8568, - ["poisonous_concoction_flask_charges_consumed_+%"]=8569, - ["poisonous_concoction_skill_area_of_effect_+%"]=8570, - ["poisons_you_inflict_can_stack_infintely"]=8571, - ["portal_alternate_destination_chance_permyriad"]=8572, - ["power_charge_duration_+%"]=1849, - ["power_charge_duration_+%_final"]=8573, - ["power_charge_on_block_%_chance"]=3888, - ["power_charge_on_kill_percent_chance_while_holding_shield"]=8574, - ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=8575, - ["power_charge_on_spell_block_%_chance"]=8576, - ["power_frenzy_or_endurance_charge_on_kill_%"]=3254, - ["power_only_conduit"]=1987, - ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3603, - ["power_siphon_attack_speed_+%"]=3494, - ["power_siphon_damage_+%"]=3307, - ["power_siphon_number_of_additional_projectiles"]=8577, - ["precision_aura_effect_+%"]=3025, - ["precision_mana_reservation_+%"]=8582, - ["precision_mana_reservation_-50%_final"]=8581, - ["precision_mana_reservation_efficiency_+%"]=8580, - ["precision_mana_reservation_efficiency_+100%"]=8579, - ["precision_mana_reservation_efficiency_-2%_per_1"]=8578, - ["precision_reserves_no_mana"]=8583, + ["map_player_movement_velocity_+%"]=7945, + ["map_player_no_regeneration"]=2054, + ["map_player_non_curse_aura_effect_+%"]=7946, + ["map_player_onslaught_on_kill_%"]=7947, + ["map_player_projectile_damage_+%_final"]=2057, + ["map_player_shrine_buff_effect_on_self_+%"]=7948, + ["map_player_shrine_effect_duration_+%"]=7949, + ["map_player_soul_eater_souls_stolen_on_rare_kill"]=7950, + ["map_player_speed_+%_final_per_recent_skill_use"]=7951, + ["map_player_status_recovery_speed_+%"]=2056, + ["map_players_additional_number_of_projectiles"]=2079, + ["map_players_and_monsters_chaos_damage_taken_+%"]=7952, + ["map_players_and_monsters_cold_damage_taken_+%"]=7953, + ["map_players_and_monsters_critical_strike_chance_+%"]=7954, + ["map_players_and_monsters_curses_are_reflected"]=7955, + ["map_players_and_monsters_damage_+%_per_curse"]=7956, + ["map_players_and_monsters_damage_taken_+%_while_stationary"]=7957, + ["map_players_and_monsters_fire_damage_taken_+%"]=7958, + ["map_players_and_monsters_have_onslaught_if_hit_recently"]=7959, + ["map_players_and_monsters_have_resolute_technique"]=7960, + ["map_players_and_monsters_lightning_damage_taken_+%"]=7961, + ["map_players_and_monsters_movement_speed_+%"]=7962, + ["map_players_and_monsters_physical_damage_taken_+%"]=7963, + ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=7964, + ["map_players_armour_+%_final"]=7965, + ["map_players_block_chance_+%"]=7966, + ["map_players_cannot_gain_endurance_charges"]=7967, + ["map_players_cannot_gain_flask_charges"]=7968, + ["map_players_cannot_gain_frenzy_charges"]=7969, + ["map_players_cannot_gain_power_charges"]=7970, + ["map_players_cannot_take_reflected_damage"]=7971, + ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=7972, + ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=7973, + ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=7974, + ["map_players_gain_onslaught_during_flask_effect"]=7975, + ["map_players_gain_rampage_stacks"]=2303, + ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=7976, + ["map_players_gain_rare_monster_mods_on_kill_ms"]=3028, + ["map_players_gain_soul_eater_on_rare_kill_ms"]=3030, + ["map_players_have_decay_rarity_buff"]=7977, + ["map_players_have_point_blank"]=7978, + ["map_players_movement_skills_cooldown_speed_+%"]=7979, + ["map_players_movement_speed_+%"]=7980, + ["map_players_no_regeneration_including_es"]=7981, + ["map_players_resist_all_%"]=7982, + ["map_players_skill_area_of_effect_+%_final"]=7983, + ["map_portals_do_not_expire"]=7984, + ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=7985, + ["map_possessed_monsters_drop_map_chance_%"]=7986, + ["map_possessed_monsters_drop_polished_scarab_chance_%"]=7987, + ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=7988, + ["map_possessed_monsters_drop_unique_chance_%"]=7989, + ["map_possessed_monsters_drop_winged_scarab_chance_%"]=7990, + ["map_prefix_mod_effect_+%_final"]=7991, + ["map_projectile_speed_+%"]=2058, + ["map_rampage_time_+%"]=7992, + ["map_random_unique_monster_is_possessed"]=7993, + ["map_random_zana_mod"]=7994, + ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=7995, + ["map_rare_breach_monsters_drop_additional_shards"]=7996, + ["map_rare_chest_amount_+%"]=1951, + ["map_rare_monster_additional_modifier_chance_%_with_rollover"]=7997, + ["map_rare_monster_life_regeneration_rate_per_minute_%"]=3850, + ["map_rare_monster_num_additional_modifiers"]=7998, + ["map_rare_monsters_are_hindered"]=7999, + ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8000, + ["map_rare_monsters_drop_x_additional_rare_items"]=8001, + ["map_rare_monsters_have_inner_treasure"]=8002, + ["map_reliquary_set"]=8003, + ["map_remove_irradiation_instead_of_completing"]=8004, + ["map_ritual_additional_reward_rerolls"]=8005, + ["map_ritual_defer_reward_tribute_cost_+%"]=8006, + ["map_ritual_deferred_rewards_are_offered_again_+%_sooner"]=8007, + ["map_ritual_magic_monsters_+%"]=8008, + ["map_ritual_number_of_free_rerolls"]=8009, + ["map_ritual_offered_and_defer_rewards_tribute_cost_+%"]=8010, + ["map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute"]=8011, + ["map_ritual_omen_chance_+%"]=8012, + ["map_ritual_rare_monsters_+%"]=8013, + ["map_ritual_rewards_reroll_cost_+%_final"]=8014, + ["map_ritual_tribute_+%"]=8015, + ["map_ritual_uber_rune_type_weighting_+%"]=8016, + ["map_ritual_unlimited_reward_rerolls"]=8017, + ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8018, + ["map_rogue_exile_chance_%"]=8020, + ["map_rogue_exile_chance_+%"]=8019, + ["map_rogue_exile_drop_skill_gem_with_quality"]=8021, + ["map_rogue_exiles_are_doubled"]=8022, + ["map_rogue_exiles_damage_+%"]=8023, + ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8024, + ["map_rogue_exiles_drop_x_additional_jewels"]=8025, + ["map_rogue_exiles_dropped_items_are_corrupted"]=8026, + ["map_rogue_exiles_dropped_items_are_duplicated"]=8027, + ["map_rogue_exiles_dropped_items_are_fully_linked"]=8028, + ["map_rogue_exiles_maximum_life_+%"]=8029, + ["map_shaper_rare_chance_+%"]=8030, + ["map_shrine_chance_%"]=8032, + ["map_shrine_chance_+%"]=8031, + ["map_shrine_granted_player_buff_duration_+%"]=8033, + ["map_shrine_granted_player_buff_effect_+%"]=8034, + ["map_shrine_monster_life_+%_final"]=8035, + ["map_shrines_are_darkshrines"]=2028, + ["map_shrines_drop_x_currency_items_on_activation"]=8036, + ["map_shrines_grant_a_random_additional_effect"]=8037, + ["map_simulacrum_reward_level_+"]=8038, + ["map_size_+%"]=1968, + ["map_spawn_affliction_mirror"]=8039, + ["map_spawn_bestiary_encounters"]=8040, + ["map_spawn_betrayals"]=2297, + ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8041, + ["map_spawn_cadiro_%_chance"]=8042, + ["map_spawn_exile_per_area_%"]=2294, + ["map_spawn_extra_exiles"]=2025, + ["map_spawn_extra_perandus_chests"]=8043, + ["map_spawn_extra_talismans"]=2032, + ["map_spawn_extra_torment_spirits"]=2034, + ["map_spawn_extra_warbands"]=2026, + ["map_spawn_harbingers"]=2029, + ["map_spawn_heist_smugglers_cache"]=8044, + ["map_spawn_incursion_encounters"]=8045, + ["map_spawn_perandus_chests"]=2031, + ["map_spawn_talismans"]=2030, + ["map_spawn_tormented_spirits"]=2300, + ["map_spawn_two_bosses"]=2112, + ["map_spawn_x_additional_heist_smugglers_caches"]=8046, + ["map_spawn_x_random_map_bosses"]=8047, + ["map_storm_area_of_effect_+%"]=8048, + ["map_strongbox_chain_length"]=97, + ["map_strongbox_chance_%"]=8049, + ["map_strongbox_chance_+%"]=8050, + ["map_strongbox_items_dropped_are_mirrored"]=8051, + ["map_strongbox_monsters_attack_speed_+%"]=8052, + ["map_strongbox_monsters_damage_+%"]=128, + ["map_strongbox_monsters_item_quantity_+%"]=8053, + ["map_strongbox_monsters_life_+%"]=121, + ["map_strongboxes_additional_pack_chance_%"]=117, + ["map_strongboxes_are_corrupted"]=8054, + ["map_strongboxes_at_least_rare"]=8055, + ["map_strongboxes_drop_x_additional_rare_items"]=8056, + ["map_strongboxes_minimum_rarity"]=8057, + ["map_strongboxes_vaal_orb_drop_chance_%"]=7778, + ["map_suffix_mod_effect_+%_final"]=8058, + ["map_synthesis_league"]=8059, + ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8060, + ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8061, + ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8062, + ["map_synthesis_spawn_additional_magic_ambush_chest"]=8063, + ["map_synthesis_spawn_additional_normal_ambush_chest"]=8064, + ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8065, + ["map_synthesis_spawn_additional_rare_ambush_chest"]=8066, + ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8067, + ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8068, + ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8069, + ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8070, + ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8071, + ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8072, + ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8073, + ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8074, + ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8075, + ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8076, + ["map_synthesised_magic_monster_drop_additional_currency"]=8077, + ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8078, + ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8079, + ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8080, + ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8081, + ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8082, + ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8083, + ["map_synthesised_magic_monster_map_drop_chance_+%"]=8084, + ["map_synthesised_magic_monster_slain_experience_+%"]=8085, + ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8086, + ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8087, + ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8088, + ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8089, + ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8090, + ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8091, + ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8092, + ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8093, + ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8094, + ["map_synthesised_monster_dropped_item_quantity_+%"]=8095, + ["map_synthesised_monster_dropped_item_rarity_+%"]=8096, + ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8097, + ["map_synthesised_monster_items_drop_corrupted_%"]=8098, + ["map_synthesised_monster_map_drop_chance_+%"]=8099, + ["map_synthesised_monster_pack_size_+%"]=8100, + ["map_synthesised_monster_slain_experience_+%"]=8101, + ["map_synthesised_monster_unique_item_drop_chance_+%"]=8102, + ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8103, + ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8104, + ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8105, + ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8106, + ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8107, + ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8108, + ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8109, + ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8110, + ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8111, + ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8112, + ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8113, + ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8114, + ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8115, + ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8116, + ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8117, + ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8118, + ["map_synthesised_rare_monster_drop_additional_currency"]=8119, + ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8120, + ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8121, + ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8122, + ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8123, + ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8124, + ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8125, + ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8126, + ["map_synthesised_rare_monster_map_drop_chance_+%"]=8127, + ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8128, + ["map_synthesised_rare_monster_slain_experience_+%"]=8129, + ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8130, + ["map_talismans_dropped_as_rare"]=8131, + ["map_talismans_higher_tier"]=8132, + ["map_tempest_area_of_effect_+%_visible"]=8133, + ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2008, + ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2004, + ["map_tempest_corruption_weight"]=8134, + ["map_tempest_display_prefix"]=31, + ["map_tempest_display_suffix"]=32, + ["map_tempest_frequency_+%"]=8135, + ["map_tempest_ground_ice"]=2005, + ["map_tempest_ground_lightning"]=2006, + ["map_tempest_ground_tar_movement_speed_+%"]=2007, + ["map_tempest_radiant_weight"]=8136, + ["map_temporal_chains_curse_zones"]=2045, + ["map_tormented_spirit_chance_%"]=8137, + ["map_tormented_spirit_chance_+%"]=8138, + ["map_tormented_spirits_drop_x_additional_rare_items"]=8139, + ["map_tormented_spirits_duration_+%"]=8140, + ["map_tormented_spirits_movement_speed_+%"]=8141, + ["map_tower_augment_quantity_+%"]=8142, + ["map_uber_map_player_damage_cycle"]=8143, + ["map_unique_boss_drops_divination_cards"]=8144, + ["map_unique_boss_num_additional_modifiers"]=8145, + ["map_unique_item_drop_chance_+%"]=8146, + ["map_unique_monster_num_additional_modifiers"]=8147, + ["map_unique_monsters_drop_corrupted_items"]=8148, + ["map_upgrade_pack_to_magic_%_chance"]=8149, + ["map_upgrade_pack_to_rare_%_chance"]=8150, + ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8151, + ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8152, + ["map_vaal_monster_items_drop_corrupted_%"]=8153, + ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8154, + ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8155, + ["map_vaal_temple_spawn_additional_vaal_vessels"]=8156, + ["map_vaal_vessel_drop_X_divination_cards"]=8157, + ["map_vaal_vessel_drop_X_fossils"]=8158, + ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8159, + ["map_vaal_vessel_drop_X_mortal_fragments"]=8160, + ["map_vaal_vessel_drop_X_prophecies"]=8161, + ["map_vaal_vessel_drop_X_rare_temple_items"]=8162, + ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8163, + ["map_vaal_vessel_drop_X_vaal_orbs"]=8164, + ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8165, + ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8166, + ["map_vaal_vessel_item_drop_quantity_+%"]=8167, + ["map_vaal_vessel_item_drop_rarity_+%"]=8168, + ["map_warbands_packs_have_additional_elites"]=8169, + ["map_warbands_packs_have_additional_grunts"]=8170, + ["map_warbands_packs_have_additional_supports"]=8171, + ["map_watchstone_additional_packs_of_elder_monsters"]=8172, + ["map_watchstone_additional_packs_of_shaper_monsters"]=8173, + ["map_watchstone_monsters_damage_+%_final"]=8174, + ["map_watchstone_monsters_life_+%_final"]=8175, + ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=122, + ["map_weapon_and_shields_drop_fractured_%_chance"]=123, + ["map_weapon_and_shields_drop_fully_linked_%_chance"]=124, + ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=125, + ["map_weapons_drop_animated"]=2681, + ["maps_with_bosses_additional_essence_+"]=8176, + ["maps_with_bosses_additional_shrine_+"]=8177, + ["maps_with_bosses_additional_spirit_+"]=8178, + ["maps_with_bosses_additional_strongbox_+"]=8179, + ["marauder_hidden_ascendancy_damage_+%_final"]=8180, + ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8181, + ["mark_effect_+%"]=2282, + ["mark_skill_duration_+%"]=8182, + ["mark_skill_mana_cost_+%"]=8183, + ["mark_use_speed_+%"]=1892, + ["marked_enemies_cannot_deal_critical_strikes"]=8184, + ["marked_enemies_cannot_regenerate_life"]=8185, + ["marked_enemy_accuracy_rating_+%"]=8186, + ["marked_enemy_damage_taken_+%"]=8187, + ["marks_you_inflict_remain_after_death"]=8188, + ["master_of_elements_evasion_rating_+%_final"]=8189, + ["maven_fight_layout_override"]=8190, + ["max_adaptations_+"]=1377, + ["max_chance_to_block_attacks_if_not_blocked_recently"]=8191, + ["max_charged_attack_stacks"]=3786, + ["max_endurance_charges"]=1507, + ["max_fortification_+1_per_5"]=8192, + ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=9836, + ["max_fortification_while_focused_+1_per_5"]=8193, + ["max_fortification_while_stationary_+1_per_5"]=8194, + ["max_frenzy_charges"]=1512, + ["max_life_%_as_mana"]=8195, + ["max_life_%_as_spirit"]=8196, + ["max_mana_increases_apply_to_effect_of_arcane_surge_on_self"]=8197, + ["max_power_charges"]=1517, + ["max_steel_ammo"]=8198, + ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1520, + ["maximum_added_chaos_damage_if_have_crit_recently"]=8302, + ["maximum_added_chaos_damage_per_curse_on_enemy"]=8303, + ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8304, + ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8305, + ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8306, + ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8307, + ["maximum_added_cold_damage_if_have_crit_recently"]=8308, + ["maximum_added_cold_damage_per_frenzy_charge"]=3832, + ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8309, + ["maximum_added_cold_damage_vs_chilled_enemies"]=8310, + ["maximum_added_cold_damage_while_affected_by_hatred"]=8311, + ["maximum_added_cold_damage_while_you_have_avians_might"]=8312, + ["maximum_added_fire_attack_damage_per_active_buff"]=1170, + ["maximum_added_fire_damage_if_blocked_recently"]=3834, + ["maximum_added_fire_damage_if_have_crit_recently"]=8313, + ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8314, + ["maximum_added_fire_damage_per_active_buff"]=1172, + ["maximum_added_fire_damage_per_endurance_charge"]=8315, + ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8316, + ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8317, + ["maximum_added_fire_damage_vs_ignited_enemies"]=1169, + ["maximum_added_fire_spell_damage_per_active_buff"]=1171, + ["maximum_added_lightning_damage_if_have_crit_recently"]=8318, + ["maximum_added_lightning_damage_per_10_int"]=8199, + ["maximum_added_lightning_damage_per_power_charge"]=8319, + ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8320, + ["maximum_added_lightning_damage_to_attacks_per_20_intelligence"]=8321, + ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8322, + ["maximum_added_lightning_damage_while_you_have_avians_might"]=8323, + ["maximum_added_physical_damage_if_have_crit_recently"]=8324, + ["maximum_added_physical_damage_per_endurance_charge"]=8325, + ["maximum_added_physical_damage_per_impaled_on_enemy"]=8326, + ["maximum_added_physical_damage_vs_bleeding_enemies"]=2182, + ["maximum_added_physical_damage_vs_frozen_enemies"]=1168, + ["maximum_added_physical_damage_vs_poisoned_enemies"]=8327, + ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=8328, + ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=8329, + ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=8330, + ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1515, + ["maximum_arrow_fire_damage_added_for_each_pierce"]=4310, + ["maximum_blitz_charges"]=8200, + ["maximum_block_modifiers_apply_to_maximum_resistances_instead"]=8201, + ["maximum_blood_scythe_charges"]=3927, + ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1510, + ["maximum_caltrops_allowed"]=8202, + ["maximum_challenger_charges"]=8203, + ["maximum_chance_to_evade_is_50%"]=8204, + ["maximum_chaos_damage_to_return_to_melee_attacker"]=1880, + ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8205, + ["maximum_cold_damage_to_return_to_melee_attacker"]=1878, + ["maximum_cold_infusion_stacks"]=8206, + ["maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed"]=8207, + ["maximum_cold_resistance_+1_per_X_corresponding_support"]=8208, + ["maximum_critical_strike_chance"]=2417, + ["maximum_critical_strike_chance_is_50%"]=8209, + ["maximum_darkness_+%"]=8210, + ["maximum_divine_charges"]=3960, + ["maximum_endurance_charges_+_if_you_have_at_least_100_tribute"]=8211, + ["maximum_endurance_charges_+_while_affected_by_determination"]=8212, + ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1508, + ["maximum_energy_shield_%_lost_on_kill"]=1465, + ["maximum_energy_shield_+%"]=889, + ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1405, + ["maximum_energy_shield_+%_per_10_tribute"]=8213, + ["maximum_energy_shield_+1_per_x_body_armour_evasion_rating"]=8214, + ["maximum_energy_shield_+_per_100_life_reserved"]=1389, + ["maximum_energy_shield_+_per_5_armour_on_shield"]=3950, + ["maximum_energy_shield_+_per_5_strength"]=3358, + ["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=1390, + ["maximum_energy_shield_from_body_armour_+%"]=8215, + ["maximum_es_+%_per_equipped_corrupted_item"]=2729, + ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2661, + ["maximum_fanaticism_charges"]=8216, + ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8218, + ["maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance"]=8217, + ["maximum_fire_damage_to_return_to_melee_attacker"]=1877, + ["maximum_fire_infusion_stacks"]=8219, + ["maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed"]=8220, + ["maximum_fire_resistance_+1_per_X_corresponding_support"]=8221, + ["maximum_frenzy_charges_+_if_you_have_at_least_100_tribute"]=8222, + ["maximum_frenzy_charges_+_while_affected_by_grace"]=8223, + ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1513, + ["maximum_frenzy_power_endurance_charges"]=8224, + ["maximum_intensify_stacks"]=8226, + ["maximum_life_%_lost_on_kill"]=1463, + ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8233, + ["maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute"]=8227, + ["maximum_life_%_to_gain_as_armour"]=8234, + ["maximum_life_%_to_gain_as_maximum_energy_shield"]=8235, + ["maximum_life_+%"]=891, + ["maximum_life_+%_and_fire_resistance_-%"]=1403, + ["maximum_life_+%_for_corpses_you_create"]=8236, + ["maximum_life_+%_if_10_red_supports_socketed"]=8228, + ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8237, + ["maximum_life_+%_if_you_have_at_least_100_tribute"]=8229, + ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8238, + ["maximum_life_+%_per_equipped_corrupted_item"]=2728, + ["maximum_life_+%_per_stackable_unique_jewel"]=3730, + ["maximum_life_mana_and_energy_shield_+%"]=1392, + ["maximum_life_per_10_dexterity"]=8230, + ["maximum_life_per_10_intelligence"]=8231, + ["maximum_life_per_10_levels"]=2431, + ["maximum_life_per_2%_increased_item_found_rarity"]=8232, + ["maximum_life_per_equipped_elder_item"]=3910, + ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2660, + ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8239, + ["maximum_lightning_damage_to_return_on_block"]=2272, + ["maximum_lightning_damage_to_return_to_melee_attacker"]=1879, + ["maximum_lightning_infusion_stacks"]=8240, + ["maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed"]=8241, + ["maximum_lightning_resistance_+1_per_X_corresponding_support"]=8242, + ["maximum_mana_%_gained_on_kill"]=1464, + ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=8245, + ["maximum_mana_+%"]=893, + ["maximum_mana_+%_and_cold_resistance_-%"]=1404, + ["maximum_mana_+%_if_10_blue_supports_socketed"]=8243, + ["maximum_mana_+%_if_you_have_at_least_100_tribute"]=8244, + ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8246, + ["maximum_number_of_blades_left_in_ground"]=8247, + ["maximum_physical_attack_damage_on_crit_+%_final"]=8248, + ["maximum_physical_damage_reduction_%"]=1379, + ["maximum_physical_damage_reduction_is_50%"]=8249, + ["maximum_physical_damage_to_reflect_to_self_on_attack"]=1875, + ["maximum_physical_damage_to_return_on_block"]=2271, + ["maximum_physical_damage_to_return_to_melee_attacker"]=1876, + ["maximum_power_and_endurance_charges_+"]=8250, + ["maximum_power_and_frenzy_charges_+"]=1518, + ["maximum_power_charges_+_if_you_have_at_least_100_tribute"]=8251, + ["maximum_power_charges_+_while_affected_by_discipline"]=8252, + ["maximum_rage"]=8910, + ["maximum_rage_+_while_wielding_axe"]=8253, + ["maximum_rage_per_50_tribute"]=8254, + ["maximum_rage_per_equipped_one_handed_sword"]=8255, + ["maximum_random_movement_velocity_+%_when_hit"]=8256, + ["maximum_spirit_charges_per_abyss_jewel_equipped"]=3953, + ["maximum_virulence_stacks"]=8257, + ["maximum_void_arrows"]=3928, + ["maximum_volatility_allowed"]=8258, + ["melee_ancestor_totem_damage_+%"]=3211, + ["melee_ancestor_totem_elemental_resistance_%"]=3684, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3379, + ["melee_ancestor_totem_placement_speed_+%"]=3548, + ["melee_attack_number_of_spirit_strikes"]=8259, + ["melee_attack_skills_additional_totems_allowed"]=8260, + ["melee_attack_speed_+%"]=1269, + ["melee_attacks_number_of_additional_projectiles"]=3763, + ["melee_attacks_usable_without_mana_cost"]=2360, + ["melee_cold_damage_+%"]=1674, + ["melee_cold_damage_+%_while_fortify_is_active"]=1962, + ["melee_cold_damage_+%_while_holding_shield"]=1677, + ["melee_critical_strike_chance_+%"]=1331, + ["melee_critical_strike_chance_+%_if_warcried_recently"]=8261, + ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8262, + ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1352, + ["melee_damage_+%"]=1144, + ["melee_damage_+%_at_close_range"]=8266, + ["melee_damage_+%_during_flask_effect"]=8267, + ["melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently"]=8263, + ["melee_damage_+%_per_endurance_charge"]=3743, + ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8268, + ["melee_damage_+%_vs_burning_enemies"]=1149, + ["melee_damage_+%_vs_frozen_enemies"]=1145, + ["melee_damage_+%_vs_heavy_stunned_enemies"]=8269, + ["melee_damage_+%_vs_immobilised_enemies"]=8264, + ["melee_damage_+%_vs_shocked_enemies"]=1147, + ["melee_damage_+%_when_on_full_life"]=2316, + ["melee_damage_+%_while_fortified"]=3813, + ["melee_damage_+%_with_spears_while_surrounded"]=8265, + ["melee_damage_taken_%_to_deal_to_attacker"]=2382, + ["melee_damage_taken_+%"]=2418, + ["melee_damage_vs_bleeding_enemies_+%"]=2180, + ["melee_fire_damage_+%"]=1673, + ["melee_fire_damage_+%_while_holding_shield"]=1676, + ["melee_hit_damage_stun_multiplier_+%"]=8270, + ["melee_hit_damage_stun_multiplier_+%_final_from_ot"]=8271, + ["melee_hits_grant_rampage_stacks"]=9858, + ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8272, + ["melee_physical_damage_+%"]=1672, + ["melee_physical_damage_+%_per_10_dexterity"]=8273, + ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8274, + ["melee_physical_damage_+%_vs_ignited_enemies"]=3883, + ["melee_physical_damage_+%_while_fortify_is_active"]=1963, + ["melee_physical_damage_+%_while_holding_shield"]=1675, + ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2147, + ["melee_range_+"]=2221, + ["melee_range_+_while_at_least_5_enemies_nearby"]=8275, + ["melee_range_+_while_dual_wielding"]=8277, + ["melee_range_+_while_unarmed"]=2711, + ["melee_range_+_while_wielding_shield"]=8276, + ["melee_range_+_with_axe"]=8278, + ["melee_range_+_with_claw"]=8279, + ["melee_range_+_with_dagger"]=8280, + ["melee_range_+_with_flail"]=8281, + ["melee_range_+_with_mace"]=8282, + ["melee_range_+_with_one_handed"]=8283, + ["melee_range_+_with_spear"]=8284, + ["melee_range_+_with_staff"]=8285, + ["melee_range_+_with_sword"]=8286, + ["melee_range_+_with_two_handed"]=8287, + ["melee_skill_gem_level_+"]=948, + ["melee_skills_area_of_effect_+%"]=8288, + ["melee_splash"]=1087, + ["melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently"]=8289, + ["melee_strike_skill_strike_previous_location"]=8290, + ["melee_weapon_critical_strike_multiplier_+"]=1350, + ["melee_weapon_range_+_if_you_have_killed_recently"]=8291, + ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8292, + ["melee_weapon_range_+_while_fortified"]=8293, + ["memory_line_abyss_scourge_spawn_boss_chance_%"]=98, + ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=109, + ["memory_line_big_harvest"]=99, + ["memory_line_breach_boss_spawn_chance_%"]=110, + ["memory_line_breach_covers_map"]=84, + ["memory_line_essence_monster_number_of_essences"]=100, + ["memory_line_maximum_possessions_of_rare_unique_monsters"]=101, + ["memory_line_minimum_possessions_of_rare_unique_monsters"]=85, + ["memory_line_num_harvest_plots"]=86, + ["memory_line_number_of_abyss_scourge_cracks"]=87, + ["memory_line_number_of_breaches"]=88, + ["memory_line_number_of_essences"]=89, + ["memory_line_number_of_excursions"]=90, + ["memory_line_number_of_large_breach_chests"]=102, + ["memory_line_number_of_pantheon_shrines"]=3876, + ["memory_line_number_of_shrines"]=3875, + ["memory_line_number_of_strongboxes"]=91, + ["memory_line_player_is_harbinger"]=92, + ["memory_line_strongboxes_chance_to_be_operatives_%"]=111, + ["mine_%_chance_to_detonate_twice"]=8299, + ["mine_area_damage_+%_if_detonated_mine_recently"]=8294, + ["mine_area_of_effect_+%"]=8295, + ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8296, + ["mine_arming_speed_+%"]=3794, + ["mine_aura_effect_+%"]=8297, + ["mine_critical_strike_chance_+%"]=1327, + ["mine_critical_strike_multiplier_+"]=1353, + ["mine_damage_+%"]=1111, + ["mine_damage_penetrates_%_elemental_resistance"]=2452, + ["mine_detonation_is_instant"]=2450, + ["mine_detonation_radius_+%"]=1617, + ["mine_detonation_speed_+%"]=8298, + ["mine_duration_+%"]=1614, + ["mine_extra_uses"]=2669, + ["mine_laying_speed_+%"]=1619, + ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3072, + ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8300, + ["mines_invulnerable"]=8301, + ["mines_invulnerable_for_duration_ms"]=2455, + ["minimum_added_chaos_damage_if_have_crit_recently"]=8302, + ["minimum_added_chaos_damage_per_curse_on_enemy"]=8303, + ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8304, + ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8305, + ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8306, + ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8307, + ["minimum_added_cold_damage_if_have_crit_recently"]=8308, + ["minimum_added_cold_damage_per_frenzy_charge"]=3832, + ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8309, + ["minimum_added_cold_damage_vs_chilled_enemies"]=8310, + ["minimum_added_cold_damage_while_affected_by_hatred"]=8311, + ["minimum_added_cold_damage_while_you_have_avians_might"]=8312, + ["minimum_added_fire_attack_damage_per_active_buff"]=1170, + ["minimum_added_fire_damage_if_blocked_recently"]=3834, + ["minimum_added_fire_damage_if_have_crit_recently"]=8313, + ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8314, + ["minimum_added_fire_damage_per_active_buff"]=1172, + ["minimum_added_fire_damage_per_endurance_charge"]=8315, + ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8316, + ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8317, + ["minimum_added_fire_damage_vs_ignited_enemies"]=1169, + ["minimum_added_fire_spell_damage_per_active_buff"]=1171, + ["minimum_added_lightning_damage_if_have_crit_recently"]=8318, + ["minimum_added_lightning_damage_per_power_charge"]=8319, + ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8320, + ["minimum_added_lightning_damage_to_attacks_per_20_intelligence"]=8321, + ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8322, + ["minimum_added_lightning_damage_while_you_have_avians_might"]=8323, + ["minimum_added_physical_damage_if_have_crit_recently"]=8324, + ["minimum_added_physical_damage_per_endurance_charge"]=8325, + ["minimum_added_physical_damage_per_impaled_on_enemy"]=8326, + ["minimum_added_physical_damage_vs_bleeding_enemies"]=2182, + ["minimum_added_physical_damage_vs_frozen_enemies"]=1168, + ["minimum_added_physical_damage_vs_poisoned_enemies"]=8327, + ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=8328, + ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=8329, + ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=8330, + ["minimum_arrow_fire_damage_added_for_each_pierce"]=4310, + ["minimum_chaos_damage_to_return_to_melee_attacker"]=1880, + ["minimum_cold_damage_to_return_to_melee_attacker"]=1878, + ["minimum_endurance_charges_at_devotion_threshold"]=8331, + ["minimum_endurance_charges_per_stackable_unique_jewel"]=3731, + ["minimum_endurance_charges_while_on_low_life_+"]=8332, + ["minimum_fire_damage_to_return_to_melee_attacker"]=1877, + ["minimum_frenzy_charges_at_devotion_threshold"]=8333, + ["minimum_frenzy_charges_per_stackable_unique_jewel"]=3732, + ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=8334, + ["minimum_frenzy_power_endurance_charges"]=8335, + ["minimum_lightning_damage_to_return_on_block"]=2272, + ["minimum_lightning_damage_to_return_to_melee_attacker"]=1879, + ["minimum_physical_attack_damage_on_crit_+%_final"]=8336, + ["minimum_physical_damage_to_reflect_to_self_on_attack"]=1875, + ["minimum_physical_damage_to_return_on_block"]=2271, + ["minimum_physical_damage_to_return_to_melee_attacker"]=1876, + ["minimum_power_charges_at_devotion_threshold"]=8337, + ["minimum_power_charges_per_stackable_unique_jewel"]=3733, + ["minimum_power_charges_while_on_low_life_+"]=8338, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=8413, + ["minion_1%_accuracy_rating_+%_per_X_player_dexterity"]=8339, + ["minion_1%_area_of_effect_+%_per_X_player_dexterity"]=8340, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"]=8341, + ["minion_1%_damage_+%_per_X_player_strength"]=8342, + ["minion_accuracy_rating"]=8343, + ["minion_accuracy_rating_+%"]=8345, + ["minion_accuracy_rating_per_10_devotion"]=8344, + ["minion_actor_scale_+%"]=8346, + ["minion_additional_base_critical_strike_chance"]=8347, + ["minion_additional_physical_damage_reduction_%"]=1966, + ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=8348, + ["minion_armour_break_physical_damage_%_dealt_as_armour_break"]=8349, + ["minion_attack_added_cold_damage_as_%_parent_maximum_life"]=8350, + ["minion_attack_and_cast_speed_+%"]=8352, + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=8353, + ["minion_attack_and_cast_speed_+%_per_10_devotion"]=8354, + ["minion_attack_and_cast_speed_+%_per_50_tribute"]=8351, + ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=2893, + ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=8355, + ["minion_attack_hits_knockback_chance_%"]=8356, + ["minion_attack_maximum_added_physical_damage"]=3349, + ["minion_attack_minimum_added_physical_damage"]=3349, + ["minion_attack_speed_+%"]=2568, + ["minion_attack_speed_+%_per_50_dex"]=8357, + ["minion_attacks_chance_to_blind_on_hit_%"]=8358, + ["minion_attacks_chance_to_taunt_on_hit_%"]=3035, + ["minion_base_maximum_cold_damage_resistance_%"]=8359, + ["minion_base_maximum_fire_damage_resistance_%"]=8360, + ["minion_base_maximum_lightning_damage_resistance_%"]=8361, + ["minion_base_physical_damage_%_to_convert_to_chaos"]=1657, + ["minion_base_physical_damage_%_to_convert_to_cold"]=1652, + ["minion_base_physical_damage_%_to_convert_to_fire"]=1650, + ["minion_base_physical_damage_%_to_convert_to_lightning"]=1654, + ["minion_bleed_on_hit_with_attacks_%"]=2178, + ["minion_block_%"]=2565, + ["minion_cannot_crit"]=8362, + ["minion_cast_speed_+%"]=2569, + ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3043, + ["minion_chance_to_deal_double_damage_%"]=8363, + ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=8364, + ["minion_chance_to_freeze_%"]=8365, + ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2989, + ["minion_chance_to_gain_power_charge_on_hit_%"]=8366, + ["minion_chance_to_impale_on_attack_hit_%"]=8367, + ["minion_chance_to_shock_%"]=8368, + ["minion_chaos_resistance_%"]=2572, + ["minion_cold_damage_resistance_%"]=3755, + ["minion_command_skill_cooldown_speed_+%"]=8369, + ["minion_commanded_skill_damage_+%"]=8371, + ["minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence"]=8370, + ["minion_cooldown_recovery_+%"]=8373, + ["minion_cooldown_recovery_+%_per_10_tribute"]=8372, + ["minion_critical_strike_chance_+%"]=8374, + ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=8375, + ["minion_critical_strike_multiplier_+"]=8376, + ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=3734, + ["minion_damage_+%"]=1666, + ["minion_damage_+%_if_enemy_hit_recently"]=8381, + ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1667, + ["minion_damage_+%_per_10_tribute"]=8377, + ["minion_damage_+%_per_5_dex"]=1669, + ["minion_damage_+%_per_active_spectre"]=2895, + ["minion_damage_+%_vs_abyssal_monsters"]=8382, + ["minion_damage_+%_while_affected_by_a_herald"]=8383, + ["minion_damage_+%_while_you_have_at_least_two_different_active_offerings"]=8378, + ["minion_damage_against_ignited_enemies_+%"]=8379, + ["minion_damage_increases_and_reductions_also_affects_you"]=3889, + ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=8380, + ["minion_damage_taken_%_recouped_as_their_life"]=8384, + ["minion_damage_taken_+%"]=8385, + ["minion_deal_no_non_cold_damage"]=8386, + ["minion_demon_add_fury_charge_on_hit_%"]=8387, + ["minion_demon_attack_speed_+%_per_fury_charge"]=8388, + ["minion_demon_damage_+%_final_per_fury_charge"]=8389, + ["minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range"]=8390, + ["minion_demon_life_loss_%_per_minute_per_fury_charge"]=8391, + ["minion_demon_maximum_fury_charges"]=8392, + ["minion_duration_+%_per_active_zombie"]=2894, + ["minion_elemental_resistance_%"]=2571, + ["minion_elemental_resistance_30%"]=8393, + ["minion_energy_shield_delay_-%"]=3977, + ["minion_evasion_rating_+%"]=8394, + ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=8395, + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=8396, + ["minion_fire_damage_resistance_%"]=8397, + ["minion_flask_charges_used_+%"]=1869, + ["minion_global_always_hit"]=8398, + ["minion_global_maximum_added_chaos_damage"]=3350, + ["minion_global_maximum_added_cold_damage"]=3351, + ["minion_global_maximum_added_fire_damage"]=3352, + ["minion_global_maximum_added_lightning_damage"]=3353, + ["minion_global_maximum_added_physical_damage"]=3354, + ["minion_global_minimum_added_chaos_damage"]=3350, + ["minion_global_minimum_added_cold_damage"]=3351, + ["minion_global_minimum_added_fire_damage"]=3352, + ["minion_global_minimum_added_lightning_damage"]=3353, + ["minion_global_minimum_added_physical_damage"]=3354, + ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=8399, + ["minion_hit_damage_stun_multiplier_+%"]=8400, + ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=3978, + ["minion_larger_aggro_radius"]=9852, + ["minion_life_increased_by_overcapped_fire_resistance"]=8401, + ["minion_life_recovery_rate_+%"]=1472, + ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=2896, + ["minion_life_regeneration_rate_per_minute_%"]=2570, + ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=8402, + ["minion_life_regeneration_rate_per_second"]=8403, + ["minion_lightning_damage_resistance_%"]=3756, + ["minion_maim_on_hit_%"]=8404, + ["minion_malediction_on_hit"]=8405, + ["minion_maximum_all_elemental_resistances_%"]=8406, + ["minion_maximum_energy_shield_+%"]=1474, + ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=3975, + ["minion_maximum_life_%_to_gain_as_maximum_energy_shield"]=8407, + ["minion_maximum_life_+%"]=982, + ["minion_maximum_mana_+%"]=1473, + ["minion_melee_damage_+%"]=8408, + ["minion_minimum_power_charges"]=8409, + ["minion_movement_speed_+%"]=1475, + ["minion_movement_speed_+%_per_50_dex"]=8410, + ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=8411, + ["minion_no_critical_strike_multiplier"]=8412, + ["minion_no_extra_bleeding_damage_while_moving"]=2818, + ["minion_physical_damage_%_to_gain_as_cold"]=3757, + ["minion_physical_damage_%_to_gain_as_fire"]=8414, + ["minion_physical_damage_%_to_gain_as_lightning"]=8415, + ["minion_physical_damage_reduction_rating"]=2566, + ["minion_physical_hit_and_dot_damage_%_taken_as_lightning"]=8416, + ["minion_projectile_speed_+%"]=8417, + ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=8419, + ["minion_raging_spirit_maximum_life_+%"]=8418, + ["minion_recover_%_maximum_life_on_minion_death"]=8420, + ["minion_recover_%_of_maximum_life_on_block"]=2696, + ["minion_recover_X_life_on_block"]=1470, + ["minion_reservation_+%"]=8422, + ["minion_resistances_equal_yours"]=8423, + ["minion_resummon_speed_+%"]=8426, + ["minion_resummon_speed_+%_if_all_active_minions_are_companions"]=8424, + ["minion_resummon_speed_+%_if_you_have_at_least_100_tribute"]=8425, + ["minion_skill_area_of_effect_+%"]=2662, + ["minion_skill_gem_level_+"]=951, + ["minion_skill_mana_cost_+%"]=8427, + ["minion_skill_physical_damage_%_to_convert_to_fire"]=8428, + ["minion_spells_chance_to_hinder_on_hit_%"]=8429, + ["minion_stun_threshold_reduction_+%"]=8430, + ["minion_summoned_recently_attack_and_cast_speed_+%"]=8431, + ["minion_summoned_recently_cannot_be_damaged"]=8432, + ["minion_summoned_recently_movement_speed_+%"]=8433, + ["minion_undead_minions_are_demons_instead"]=8434, + ["minions_%_chance_to_blind_on_hit"]=3722, + ["minions_accuracy_is_equal_to_yours"]=8435, + ["minions_are_gigantic"]=8436, + ["minions_attacks_overwhelm_%_physical_damage_reduction"]=8437, + ["minions_cannot_be_blinded"]=3721, + ["minions_cannot_be_damaged_after_summoned_ms"]=8438, + ["minions_cannot_die_while_affected_by_life_flask"]=1867, + ["minions_cannot_taunt_enemies"]=8439, + ["minions_chance_to_intimidate_on_hit_%"]=8440, + ["minions_chance_to_poison_on_hit_%"]=2803, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=8441, + ["minions_gain_your_dexterity"]=8442, + ["minions_gain_your_strength"]=8443, + ["minions_get_amulet_stats_instead_of_you"]=1872, + ["minions_go_crazy_on_crit_ms"]=8444, + ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=2941, + ["minions_have_%_chance_to_inflict_wither_on_hit"]=8445, + ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=8446, + ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=1829, + ["minions_have_unholy_might"]=8447, + ["minions_hits_can_only_kill_ignited_enemies"]=8448, + ["minions_lose_%_life_when_following_commands_per_10_tribute"]=8449, + ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=8450, + ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=8451, + ["minions_recover_%_maximum_life_when_you_focus"]=8452, + ["minions_reflected_damage_taken_+%"]=8453, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=8454, + ["minions_use_parents_flasks_on_summon"]=1865, + ["mirage_archer_duration_+%"]=8455, + ["mirage_archers_do_not_attach"]=3986, + ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3443, + ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3305, + ["mirror_arrow_cooldown_speed_+%"]=3461, + ["missing_life_%_gained_as_life_before_hit"]=8456, + ["mod_granted_passive_hash"]=8457, + ["mod_granted_passive_hash_2"]=8458, + ["mod_granted_passive_hash_3"]=8459, + ["mod_granted_passive_hash_4"]=8460, + ["mod_granted_passive_hash_essence"]=8461, + ["modifiers_to_attributes_instead_apply_to_ascendance"]=1103, + ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3164, + ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3165, + ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3163, + ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=8462, + ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3184, + ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=8463, + ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1509, + ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1514, + ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1519, + ["modifiers_to_minion_cast_speed_also_affect_you"]=3336, + ["modifiers_to_minion_damage_also_affect_you"]=3334, + ["modifiers_to_minion_life_regeneration_also_affect_you"]=3337, + ["modifiers_to_minion_movement_speed_also_affect_you"]=3338, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=8464, + ["molten_shell_buff_effect_+%"]=3595, + ["molten_shell_damage_+%"]=3293, + ["molten_shell_duration_+%"]=8465, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=8466, + ["molten_strike_chain_count_+"]=8468, + ["molten_strike_damage_+%"]=3227, + ["molten_strike_num_of_additional_projectiles"]=3523, + ["molten_strike_projectiles_chain_when_impacting_ground"]=8467, + ["molten_strike_radius_+%"]=3389, + ["monster_base_block_%"]=1075, + ["monster_dropped_item_quantity_+%"]=18, + ["monster_dropped_item_rarity_+%"]=17, + ["monster_life_+%_final_from_map"]=1394, + ["monster_life_+%_final_from_rarity"]=1393, + ["monster_slain_experience_+%"]=16, + ["mortar_barrage_mine_damage_+%"]=8471, + ["mortar_barrage_mine_num_projectiles"]=8472, + ["mortar_barrage_mine_throwing_speed_+%"]=8474, + ["mortar_barrage_mine_throwing_speed_halved_+%"]=8473, + ["movement_attack_skills_attack_speed_+%"]=8475, + ["movement_skills_cooldown_speed_+%"]=8476, + ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=8477, + ["movement_skills_cost_no_mana"]=3068, + ["movement_skills_deal_no_physical_damage"]=8478, + ["movement_skills_mana_cost_+%"]=3749, + ["movement_speed_+%_against_bloodlusting_enemies"]=8479, + ["movement_speed_+%_during_flask_effect"]=2813, + ["movement_speed_+%_for_4_seconds_on_block"]=2932, + ["movement_speed_+%_if_10_green_supports_socketed"]=8480, + ["movement_speed_+%_if_below_100_dexterity"]=8481, + ["movement_speed_+%_if_crit_recently"]=8492, + ["movement_speed_+%_if_enemy_hit_recently"]=8493, + ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=8494, + ["movement_speed_+%_if_enemy_killed_recently"]=3821, + ["movement_speed_+%_if_have_cast_dash_recently"]=8495, + ["movement_speed_+%_if_have_not_taken_damage_recently"]=8496, + ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=8497, + ["movement_speed_+%_if_pierced_recently"]=3773, + ["movement_speed_+%_if_pinned_enemy_recently"]=8482, + ["movement_speed_+%_if_placed_trap_or_mine_recently"]=8483, + ["movement_speed_+%_if_used_a_mark_recently"]=8498, + ["movement_speed_+%_if_used_a_warcry_recently"]=3747, + ["movement_speed_+%_on_throwing_trap"]=2441, + ["movement_speed_+%_per_chest_opened_recently"]=8499, + ["movement_speed_+%_per_endurance_charge"]=8500, + ["movement_speed_+%_per_nearby_corpse"]=8484, + ["movement_speed_+%_per_nearby_enemy"]=8501, + ["movement_speed_+%_per_poison_up_to_50%"]=8502, + ["movement_speed_+%_per_power_charge"]=8503, + ["movement_speed_+%_while_affected_by_ailment"]=8485, + ["movement_speed_+%_while_affected_by_grace"]=8504, + ["movement_speed_+%_while_bleeding"]=8505, + ["movement_speed_+%_while_dual_wielding"]=8506, + ["movement_speed_+%_while_fortified"]=2933, + ["movement_speed_+%_while_holding_shield"]=8507, + ["movement_speed_+%_while_not_affected_by_status_ailments"]=2924, + ["movement_speed_+%_while_not_using_flask"]=8508, + ["movement_speed_+%_while_off_hand_is_empty"]=8509, + ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=8510, + ["movement_speed_+%_while_on_burning_ground"]=8511, + ["movement_speed_+%_while_poisoned"]=8512, + ["movement_speed_+%_while_surrounded"]=8486, + ["movement_speed_+%_while_using_charm"]=8513, + ["movement_speed_+%_while_you_have_cats_stealth"]=8514, + ["movement_speed_+%_while_you_have_energy_shield"]=8515, + ["movement_speed_+%_while_you_have_storm_barrier_support"]=8516, + ["movement_speed_+%_while_you_have_two_linked_targets"]=8487, + ["movement_speed_bonus_when_throwing_trap_ms"]=2441, + ["movement_speed_cannot_be_reduced_below_base"]=2822, + ["movement_speed_is_equal_to_highest_linked_party_member"]=8488, + ["movement_speed_is_only_base_+1%_per_x_evasion_rating"]=8489, + ["movement_speed_penalty_+%_while_performing_action"]=8491, + ["movement_velocity_+%_on_full_energy_shield"]=2616, + ["movement_velocity_+%_per_frenzy_charge"]=1505, + ["movement_velocity_+%_per_poison_stack"]=8517, + ["movement_velocity_+%_per_shock"]=2475, + ["movement_velocity_+%_per_totem"]=8519, + ["movement_velocity_+%_when_on_full_life"]=1503, + ["movement_velocity_+%_when_on_low_life"]=1502, + ["movement_velocity_+%_when_on_shocked_ground"]=1830, + ["movement_velocity_+%_while_at_maximum_power_charges"]=8520, + ["movement_velocity_+%_while_chilled"]=8521, + ["movement_velocity_+%_while_cursed"]=2305, + ["movement_velocity_+%_while_ignited"]=2474, + ["movement_velocity_+%_while_phasing"]=2293, + ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=8518, + ["movement_velocity_+1%_per_X_evasion_rating"]=2351, + ["movement_velocity_while_not_hit_+%"]=2848, + ["nearby_allies_have_onslaught"]=8522, + ["nearby_enemies_all_exposure_%_while_phasing"]=8523, + ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=8524, + ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=8525, + ["nearby_enemies_are_crushed_while_you_have_X_rage"]=8526, + ["nearby_enemies_are_intimidated_while_you_have_rage"]=8527, + ["nearby_enemies_chilled_on_block"]=3830, + ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=8529, + ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=8530, + ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=8531, + ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=8532, + ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3077, + ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=8533, + ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=8534, + ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=8535, + ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=8536, + ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=8537, + ["necrotic_footprints_from_item"]=8538, + ["never_freeze"]=2247, + ["never_freeze_or_chill"]=2248, + ["never_ignite"]=2246, + ["never_ignite_chill_freeze_shock"]=8539, + ["never_shock"]=2249, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2772, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2771, + ["next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy"]=8540, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=8541, + ["no_critical_strike_multiplier"]=1360, + ["no_energy_shield"]=1850, + ["no_energy_shield_recharge_or_regeneration"]=2349, + ["no_evasion_rating"]=1851, + ["no_extra_bleeding_damage_while_moving"]=2819, + ["no_inherent_chance_to_block_while_dual_wielding"]=8542, + ["no_inherent_mana_regeneration"]=8543, + ["no_inherent_rage_loss"]=8544, + ["no_life_regeneration"]=1964, + ["no_mana_regeneration"]=1965, + ["no_mana_regeneration_if_not_crit_recently"]=8545, + ["no_maximum_power_charges"]=2654, + ["no_movement_penalty_while_shield_is_raised"]=8546, + ["no_physical_damage_reduction_rating"]=1849, + ["non_aura_hexes_gain_20%_effect_per_second"]=8547, + ["non_channelling_attack_added_lightning_damage_%_maximum_mana"]=8548, + ["non_channelling_spells_cost_x%_of_your_energy_shield"]=8549, + ["non_channelling_spells_deal_x%_more_damage"]=8550, + ["non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit"]=8551, + ["non_critical_damage_multiplier_+%"]=2389, + ["non_critical_strikes_deal_no_damage"]=8552, + ["non_critical_strikes_penetrate_elemental_resistances_%"]=3149, + ["non_curse_aura_effect_+%"]=3158, + ["non_curse_aura_effect_+%_per_10_devotion"]=8553, + ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=8554, + ["non_cursed_enemies_you_curse_gain_x_withered_stacks"]=8555, + ["non_damaging_ailment_effect_+%"]=8556, + ["non_damaging_ailment_effect_+%_on_self"]=8557, + ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=8558, + ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=3911, + ["non_damaging_ailment_effect_+%_per_10_devotion"]=8559, + ["non_damaging_ailment_effect_+%_with_critical_strikes"]=8560, + ["non_damaging_ailments_as_though_damage_+%_final"]=8561, + ["non_damaging_ailments_reflected_to_self"]=8562, + ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=3916, + ["non_piercing_projectiles_critical_strike_chance_+%"]=8563, + ["non_projectile_chaining_lightning_skill_additional_chains"]=8564, + ["non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost"]=8565, + ["non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance"]=8566, + ["non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed"]=8567, + ["non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed"]=8568, + ["non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed"]=8569, + ["non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed"]=8570, + ["non_skill_base_all_damage_%_to_gain_as_chaos"]=1623, + ["non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion"]=8571, + ["non_skill_base_all_damage_%_to_gain_as_cold"]=870, + ["non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning"]=8576, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill"]=8572, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=8577, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells"]=871, + ["non_skill_base_all_damage_%_to_gain_as_fire"]=868, + ["non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds"]=8573, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn"]=8574, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=8578, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_spells"]=869, + ["non_skill_base_all_damage_%_to_gain_as_lightning"]=872, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock"]=8575, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=8579, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells"]=873, + ["non_skill_base_all_damage_%_to_gain_as_physical"]=1622, + ["non_skill_base_cold_damage_%_to_convert_to_chaos"]=1663, + ["non_skill_base_cold_damage_%_to_convert_to_fire"]=1661, + ["non_skill_base_cold_damage_%_to_convert_to_lightning"]=1662, + ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=1633, + ["non_skill_base_cold_damage_%_to_gain_as_fire"]=1632, + ["non_skill_base_damage_%_to_gain_as_cold_while_on_chilled_ground"]=8580, + ["non_skill_base_damage_%_to_gain_as_fire_while_on_burning_ground"]=8581, + ["non_skill_base_damage_%_to_gain_as_lightning_while_on_shocked_ground"]=8582, + ["non_skill_base_elemental_damage_%_to_convert_to_chaos"]=8586, + ["non_skill_base_elemental_damage_%_to_convert_to_cold"]=8587, + ["non_skill_base_elemental_damage_%_to_convert_to_fire"]=8588, + ["non_skill_base_elemental_damage_%_to_convert_to_lightning"]=8589, + ["non_skill_base_elemental_damage_%_to_gain_as_chaos"]=1635, + ["non_skill_base_elemental_damage_%_to_gain_as_cold"]=8583, + ["non_skill_base_elemental_damage_%_to_gain_as_fire"]=8584, + ["non_skill_base_elemental_damage_%_to_gain_as_lightning"]=8585, + ["non_skill_base_fire_damage_%_to_convert_to_chaos"]=1664, + ["non_skill_base_fire_damage_%_to_convert_to_cold"]=8590, + ["non_skill_base_fire_damage_%_to_convert_to_lightning"]=8591, + ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=1634, + ["non_skill_base_lightning_damage_%_to_convert_to_chaos"]=1660, + ["non_skill_base_lightning_damage_%_to_convert_to_cold"]=1659, + ["non_skill_base_lightning_damage_%_to_convert_to_fire"]=1658, + ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=1631, + ["non_skill_base_lightning_damage_%_to_gain_as_cold"]=1630, + ["non_skill_base_lightning_damage_%_to_gain_as_fire"]=1629, + ["non_skill_base_non_chaos_damage_%_to_gain_as_chaos"]=1636, + ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=1656, + ["non_skill_base_physical_damage_%_to_convert_to_chaos_per_level"]=8596, + ["non_skill_base_physical_damage_%_to_convert_to_cold"]=1651, + ["non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=8607, + ["non_skill_base_physical_damage_%_to_convert_to_fire"]=1649, + ["non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=8609, + ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=1653, + ["non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=8611, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1655, + ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=1628, + ["non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3067, + ["non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks"]=8597, + ["non_skill_base_physical_damage_%_to_gain_as_cold"]=1626, + ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies"]=8592, + ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies"]=8593, + ["non_skill_base_physical_damage_%_to_gain_as_fire"]=1625, + ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=1627, + ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies"]=8594, + ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies"]=8595, + ["non_skill_base_physical_damage_%_to_gain_as_random_element"]=2586, + ["non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge"]=8600, + ["non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy"]=8598, + ["non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies"]=8599, + ["non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped"]=3913, + ["non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge"]=8601, + ["non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=8602, + ["non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge"]=8603, + ["non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies"]=8604, + ["non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds"]=3339, + ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=8606, + ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=8608, + ["non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies"]=1862, + ["non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=9927, + ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=8610, + ["non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped"]=8605, + ["non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies"]=3804, + ["non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies"]=8612, + ["non_skill_physical_damage_%_to_gain_as_cold_with_attacks"]=3356, + ["non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge"]=8613, + ["non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger"]=8614, + ["non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently"]=8615, + ["non_skill_physical_damage_%_to_gain_as_fire_per_rage"]=8616, + ["non_skill_physical_damage_%_to_gain_as_fire_with_attacks"]=3355, + ["non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath"]=8617, + ["non_skill_physical_damage_%_to_gain_as_lightning_with_attacks"]=3357, + ["non_skill_physical_damage_%_to_gain_as_random_element_while_ignited"]=8618, + ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained"]=8619, + ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain"]=8620, + ["non_travel_attack_skill_repeat_count"]=8621, + ["non_unique_flask_effect_+%"]=2414, + ["normal_monster_dropped_item_quantity_+%"]=8622, + ["notable_knockback_distance_+%_final_for_blocked_hits"]=8623, + ["nova_spells_cast_at_target_location"]=8624, + ["num_additional_skill_slots"]=8625, + ["num_charm_slots"]=8626, + ["num_charm_slots_+_if_you_have_at_least_100_tribute"]=8627, + ["num_of_additional_chains_at_max_frenzy_charges"]=1529, + ["number_of_additional_arrows"]=965, + ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1499, + ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=8628, + ["number_of_additional_banners_allowed"]=8629, + ["number_of_additional_chains_for_projectiles_while_phasing"]=8630, + ["number_of_additional_clones"]=2719, + ["number_of_additional_curses_allowed"]=1853, + ["number_of_additional_curses_allowed_on_self"]=1855, + ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=8631, + ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=8632, + ["number_of_additional_ignites_allowed"]=8633, + ["number_of_additional_marks_allowed"]=1854, + ["number_of_additional_mines_to_place"]=3141, + ["number_of_additional_mines_to_place_with_at_least_500_dex"]=8634, + ["number_of_additional_mines_to_place_with_at_least_500_int"]=8635, + ["number_of_additional_poison_stacks"]=8636, + ["number_of_additional_poison_stacks_if_you_have_at_least_100_tribute"]=8637, + ["number_of_additional_projectiles"]=1498, + ["number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw"]=8638, + ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=8639, + ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=8640, + ["number_of_additional_remote_mines_allowed"]=1926, + ["number_of_additional_totems_allowed"]=1924, + ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3198, + ["number_of_additional_traps_allowed"]=1925, + ["number_of_additional_traps_to_throw"]=8641, + ["number_of_animated_weapons_allowed"]=8642, + ["number_of_chains"]=1495, + ["number_of_crab_charges_lost_when_hit"]=3923, + ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=8644, + ["number_of_golems_allowed_with_3_primordial_jewels"]=8645, + ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2867, + ["number_of_poison_cloud_allowed"]=8646, + ["number_of_projectiles_+%_final_from_skill"]=8647, + ["number_of_raging_spirits_is_limited_to_3"]=8648, + ["number_of_skeletons_allowed_per_2_old"]=8649, + ["number_of_support_ghosts_is_limited_to_3"]=8650, + ["number_of_vine_arrow_pod_allowed"]=8651, + ["number_of_zombies_allowed_+%"]=2273, + ["number_of_zombies_allowed_+1_per_X_strength"]=8652, + ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2720, + ["occultist_chaos_damage_+%_final"]=8653, + ["occultist_cold_damage_+%_final"]=8654, + ["occultist_immune_to_stun_while_has_energy_shield"]=3328, + ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3327, + ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=8655, + ["off_hand_attack_speed_+%_while_dual_wielding"]=8656, + ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=8657, + ["off_hand_base_weapon_attack_duration_ms"]=23, + ["off_hand_claw_mana_gain_on_hit"]=8658, + ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=8659, + ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=8660, + ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=8661, + ["off_hand_maximum_attack_distance"]=27, + ["off_hand_minimum_attack_distance"]=25, + ["off_hand_quality"]=20, + ["off_hand_weapon_type"]=12, + ["offering_area_of_effect_+%"]=8662, + ["offering_duration_+%"]=8663, + ["offering_life_+%"]=8664, + ["offering_spells_effect_+%"]=3633, + ["offerings_also_buff_you"]=1088, + ["offerings_cannot_be_damaged_if_created_recently"]=8665, + ["old_dagger_implicit_critical_strike_chance_+30%"]=1313, + ["old_dagger_implicit_critical_strike_chance_+40%"]=1314, + ["old_dagger_implicit_critical_strike_chance_+50%"]=1315, + ["on_banner_expiry_recover_%_of_required_glory"]=8666, + ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=8667, + ["on_casting_banner_recover_%_of_planted_banner_stages"]=8668, + ["on_kill_effects_occur_twice"]=8669, + ["on_weapon_global_damage_+%"]=1108, + ["one_handed_attack_ailment_chance_+%"]=8670, + ["one_handed_attack_speed_+%"]=2931, + ["one_handed_melee_accuracy_rating_+%"]=1290, + ["one_handed_melee_attack_speed_+%"]=1274, + ["one_handed_melee_cold_damage_+%"]=1184, + ["one_handed_melee_critical_strike_chance_+%"]=1330, + ["one_handed_melee_critical_strike_multiplier_+"]=1349, + ["one_handed_melee_fire_damage_+%"]=1183, + ["one_handed_melee_physical_damage_+%"]=1182, + ["onslaught_buff_duration_on_culling_strike_ms"]=2666, + ["onslaught_buff_duration_on_kill_ms"]=2321, + ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2322, + ["onslaught_effect_+%"]=2906, + ["onslaught_on_crit_duration_ms"]=2354, + ["onslaught_on_vaal_skill_use_duration_ms"]=2573, + ["onslaught_time_granted_on_kill_ms"]=2632, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2633, + ["open_nearby_chests_on_cast_chance_%"]=8671, + ["orb_of_storm_strike_rate_while_channelling_+%"]=8672, + ["orb_of_storms_cast_speed_+%"]=8673, + ["orb_of_storms_damage_+%"]=3322, + ["orb_skill_limit_+"]=8674, + ["overkill_damage_%_as_physical_to_nearby_enemies"]=8675, + ["override_block_chance_for_allies_in_your_presence"]=8676, + ["override_maximum_damage_resistance_%"]=8677, + ["override_weapon_base_critical_strike_chance"]=8678, + ["pain_attunement_keystone_critical_strike_multiplier_+%_final"]=1874, + ["pantheon_abberath_ignite_duration_on_self_+%_final"]=8679, + ["pantheon_shakari_self_poison_duration_+%_final"]=8680, + ["parried_magnitude_+%"]=8681, + ["parry_applies_spell_damage_debuff_instead"]=8682, + ["parry_attack_speed_+%_if_youve_parried_recently"]=8683, + ["parry_cannot_be_critically_hit_during_parry"]=8684, + ["parry_damage_+%"]=8685, + ["parry_deal_thorns_damage_chance_%_on_hit"]=8686, + ["parry_evasion_rating_+%_during_parry"]=8687, + ["parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently"]=8688, + ["parry_hit_damage_stun_multiplier_+%"]=8689, + ["parry_modifiers_to_stun_buildup_instead_apply_to_freeze"]=8690, + ["parry_movement_speed_+%_if_youve_parried_recently"]=8691, + ["parry_physical_damage_%_to_convert_to_cold"]=8692, + ["parry_skill_effect_duration_+%"]=8694, + ["parry_skill_effect_duration_+%_per_10_tribute"]=8693, + ["parry_stun_threshold_+%_during_parry"]=8695, + ["parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack"]=8696, + ["parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack"]=8697, + ["passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=8698, + ["passive_applies_to_minions"]=2706, + ["passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value"]=8699, + ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=8700, + ["passive_mastery_damage_taken_over_time_+%_final"]=8701, + ["passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%"]=8702, + ["passive_mastery_less_projectile_speed_+%_final"]=8703, + ["passive_mastery_less_skill_effect_duration_+%_final"]=8704, + ["passive_mastery_more_projectile_speed_+%_final"]=8705, + ["passive_mastery_more_skill_effect_duration_+%_final"]=8706, + ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=8707, + ["passive_notable_ignite_proliferation_radius"]=1894, + ["passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits"]=8708, + ["passive_tree_damage_taken_+%_final_from_hindered_enemies"]=8709, + ["passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies"]=8710, + ["pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x"]=8711, + ["pathfinder_flask_amount_to_recover_+%_final"]=8712, + ["pathfinder_flask_life_to_recover_+%_final"]=8713, + ["pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask"]=4000, + ["pathfinder_poison_duration_+%_final"]=8714, + ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=3997, + ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=3998, + ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=3999, + ["penance_brand_area_of_effect_+%"]=8715, + ["penance_brand_cast_speed_+%"]=8716, + ["penance_brand_damage_+%"]=8717, + ["penetrate_elemental_resistance_%_per_15_ascendance"]=1105, + ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=8718, + ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2634, + ["perandus_double_number_of_coins_found"]=8719, + ["perfect_timing_window_ms_+%"]=8724, + ["permanent_damage_+%_per_second_of_chill"]=8725, + ["permanent_damage_+%_per_second_of_freeze"]=8726, + ["permanent_fire_damage_+%_per_second_of_ignite_up_to_10%"]=8727, + ["permanently_intimidate_enemies_you_hit_on_full_life"]=3817, + ["permanently_intimidate_enemy_on_block"]=8728, + ["petrified_blood_mana_reservation_efficiency_+%"]=8730, + ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=8729, + ["petrified_blood_reservation_+%"]=8731, + ["phantasm_refresh_duration_on_hit_vs_unique_%_chance"]=8732, + ["phase_on_vaal_skill_use_duration_ms"]=2574, + ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3597, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=8733, + ["phase_run_skill_effect_duration_+%"]=3687, + ["phase_through_objects"]=2488, + ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3805, + ["phasing_for_4_seconds_on_kill_%"]=3061, + ["phasing_if_blocked_recently"]=8734, + ["phasing_on_rampage_threshold_ms"]=2615, + ["phasing_on_trap_triggered_by_an_enemy_ms"]=3805, + ["phylactery_can_only_contain_non_unique_jewel"]=134, + ["phylactery_jewel_mod_effect_+%"]=136, + ["phys_cascade_trap_cooldown_speed_+%"]=8735, + ["phys_cascade_trap_damage_+%"]=8736, + ["phys_cascade_trap_duration_+%"]=8737, + ["phys_cascade_trap_number_of_additional_cascades"]=8738, + ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=8739, + ["physical_attack_damage_+%"]=1118, + ["physical_attack_damage_+%_while_holding_a_shield"]=1123, + ["physical_attack_damage_taken_+"]=1905, + ["physical_axe_damage_+%"]=1191, + ["physical_bow_damage_+%"]=1211, + ["physical_claw_damage_+%"]=1199, + ["physical_claw_damage_+%_when_on_low_life"]=2269, + ["physical_dagger_damage_+%"]=1203, + ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3823, + ["physical_damage_%_added_as_fire_damage_on_kill"]=2832, + ["physical_damage_%_taken_from_mana_before_life"]=3737, + ["physical_damage_%_to_gain_as_fire_vs_heavy_stunned"]=8740, + ["physical_damage_%_to_gain_as_lightning_vs_electrocuted"]=8741, + ["physical_damage_+%"]=1142, + ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3796, + ["physical_damage_+%_if_skill_costs_life"]=8746, + ["physical_damage_+%_per_10_rage"]=8747, + ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=8742, + ["physical_damage_+%_vs_ignited_enemies"]=8748, + ["physical_damage_+%_vs_poisoned_enemies"]=2606, + ["physical_damage_+%_while_affected_by_herald_of_blood"]=8743, + ["physical_damage_+%_while_affected_by_herald_of_purity"]=8749, + ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3799, + ["physical_damage_+%_while_frozen"]=2956, + ["physical_damage_+%_while_life_leeching"]=1132, + ["physical_damage_+%_while_you_have_resolute_technique"]=9925, + ["physical_damage_+%_with_axes_swords"]=8750, + ["physical_damage_can_chill"]=2543, + ["physical_damage_can_freeze"]=2544, + ["physical_damage_can_shock"]=2545, + ["physical_damage_cannot_poison"]=2553, + ["physical_damage_from_hits_%_taken_as_random_element"]=8744, + ["physical_damage_on_block_+%"]=2844, + ["physical_damage_over_time_+%"]=1125, + ["physical_damage_over_time_multiplier_+_with_attacks"]=1155, + ["physical_damage_over_time_per_10_dexterity_+%"]=3376, + ["physical_damage_over_time_taken_+%_while_moving"]=8745, + ["physical_damage_per_endurance_charge_+%"]=1823, + ["physical_damage_prevented_recouped_as_life_%"]=8751, + ["physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute"]=8752, + ["physical_damage_reduction_%_at_devotion_threshold"]=8753, + ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=8762, + ["physical_damage_reduction_%_per_endurance_charge"]=1967, + ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=8755, + ["physical_damage_reduction_%_per_nearby_enemy"]=8764, + ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=8757, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3632, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3055, + ["physical_damage_reduction_percent_per_frenzy_charge"]=8754, + ["physical_damage_reduction_percent_per_power_charge"]=8756, + ["physical_damage_reduction_rating_%_while_not_moving"]=3895, + ["physical_damage_reduction_rating_+%"]=885, + ["physical_damage_reduction_rating_+%_per_10_tribute"]=8758, + ["physical_damage_reduction_rating_+%_per_endurance_charge"]=8763, + ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3176, + ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2485, + ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2446, + ["physical_damage_reduction_rating_during_soul_gain_prevention"]=8759, + ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=8760, + ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=3951, + ["physical_damage_reduction_rating_per_endurance_charge"]=8761, + ["physical_damage_reduction_rating_per_level"]=2430, + ["physical_damage_reduction_rating_while_frozen"]=2472, + ["physical_damage_taken_%_as_chaos"]=2142, + ["physical_damage_taken_%_as_cold"]=2138, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=8766, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=8767, + ["physical_damage_taken_%_as_fire"]=2137, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=8768, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=8769, + ["physical_damage_taken_%_as_lightning"]=2139, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=8770, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=8771, + ["physical_damage_taken_+"]=1906, + ["physical_damage_taken_+%"]=1912, + ["physical_damage_taken_+%_from_hits"]=8765, + ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3800, + ["physical_damage_taken_+%_while_frozen"]=2473, + ["physical_damage_taken_+%_while_moving"]=3897, + ["physical_damage_taken_+_per_level"]=1907, + ["physical_damage_taken_+_vs_beasts"]=2579, + ["physical_damage_taken_on_minion_death"]=2665, + ["physical_damage_taken_recouped_as_life_%"]=8772, + ["physical_damage_to_return_to_melee_attacker"]=901, + ["physical_damage_to_return_when_hit"]=1885, + ["physical_damage_while_dual_wielding_+%"]=1175, + ["physical_damage_with_attack_skills_+%"]=8773, + ["physical_damage_with_spell_skills_+%"]=8774, + ["physical_dot_multiplier_+"]=1154, + ["physical_dot_multiplier_+_if_crit_recently"]=8775, + ["physical_dot_multiplier_+_if_spent_life_recently"]=8776, + ["physical_dot_multiplier_+_while_wielding_axes_swords"]=8777, + ["physical_hit_and_dot_damage_%_taken_as_chaos"]=8780, + ["physical_hit_and_dot_damage_%_taken_as_fire"]=8778, + ["physical_hit_and_dot_damage_%_taken_as_lightning"]=8779, + ["physical_hit_and_dot_damage_%_taken_as_lightning_while_active_blocking"]=8781, + ["physical_mace_damage_+%"]=1207, + ["physical_ranged_attack_damage_taken_+"]=1917, + ["physical_reflect_damage_taken_+%"]=2385, + ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=8782, + ["physical_skill_gem_level_+"]=8783, + ["physical_spell_damage_can_pin_on_critical_hit"]=8784, + ["physical_spell_skill_gem_level_+"]=1423, + ["physical_staff_damage_+%"]=1194, + ["physical_sword_damage_+%"]=1215, + ["physical_wand_damage_+%"]=1220, + ["physical_weapon_damage_+%_per_10_str"]=2232, + ["piercing_attacks_cause_bleeding"]=3026, + ["piercing_projectiles_critical_strike_chance_+%"]=8785, + ["pin_almost_pinned_enemies"]=8786, + ["pin_duration_+%"]=8787, + ["pin_stops_enemies"]=8788, + ["pinned_enemies_cannot_crit"]=8789, + ["pinned_enemies_cannot_evade_your_attacks"]=8790, + ["placed_banner_attack_damage_+%"]=8791, + ["placing_traps_cooldown_recovery_+%"]=3057, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=8792, + ["plague_bearer_maximum_stored_poison_damage_+%"]=8793, + ["plague_bearer_movement_speed_+%_while_infecting"]=8794, + ["plague_bearer_poison_effect_+%_while_infecting"]=8795, + ["player_can_be_touched_by_tormented_spirits"]=8796, + ["player_far_shot"]=9911, + ["player_gain_rampage_stacks"]=9859, + ["player_is_harbinger_spawn_pack_on_kill_chance"]=103, + ["poachers_mark_curse_effect_+%"]=3577, + ["poachers_mark_duration_+%"]=3484, + ["poison_as_though_dealing_X_damage_on_block"]=8797, + ["poison_chance_+%"]=8798, + ["poison_cursed_enemies_on_hit"]=3774, + ["poison_duration_+%_per_poison_applied_recently"]=8799, + ["poison_duration_+%_per_power_charge"]=8800, + ["poison_duration_+%_with_over_150_intelligence"]=8801, + ["poison_effect_+%_per_frenzy_charge"]=8805, + ["poison_effect_+%_vs_bleeding_enemies"]=8806, + ["poison_effect_+%_vs_non_poisoned_enemies"]=8802, + ["poison_effect_+%_with_spells"]=8807, + ["poison_effect_+100%_final_chance_during_flask_effect"]=8803, + ["poison_on_critical_strike"]=8808, + ["poison_on_critical_strike_with_bow"]=1309, + ["poison_on_critical_strike_with_dagger"]=1306, + ["poison_on_hit_during_flask_effect_%"]=2916, + ["poison_on_melee_critical_strike_%"]=2442, + ["poison_on_melee_hit"]=3819, + ["poison_reflected_to_self"]=8809, + ["poison_time_passed_+%"]=8810, + ["poisonous_concoction_damage_+%"]=8811, + ["poisonous_concoction_flask_charges_consumed_+%"]=8812, + ["poisonous_concoction_skill_area_of_effect_+%"]=8813, + ["poisons_you_inflict_can_stack_infintely"]=8814, + ["portal_alternate_destination_chance_permyriad"]=8815, + ["power_charge_duration_+%"]=1826, + ["power_charge_duration_+%_final"]=8816, + ["power_charge_on_block_%_chance"]=3829, + ["power_charge_on_kill_percent_chance_while_holding_shield"]=8817, + ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=8818, + ["power_frenzy_or_endurance_charge_on_kill_%"]=3200, + ["power_only_conduit"]=1956, + ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3547, + ["power_siphon_attack_speed_+%"]=3440, + ["power_siphon_damage_+%"]=3253, + ["power_siphon_number_of_additional_projectiles"]=8819, + ["precision_aura_effect_+%"]=2976, + ["precision_mana_reservation_+%"]=8824, + ["precision_mana_reservation_-50%_final"]=8823, + ["precision_mana_reservation_efficiency_+%"]=8822, + ["precision_mana_reservation_efficiency_+100%"]=8821, + ["precision_mana_reservation_efficiency_-2%_per_1"]=8820, + ["precision_reserves_no_mana"]=8825, ["presence_area_+%"]=1022, - ["prevent_monster_heal"]=1620, - ["prevent_monster_heal_duration_+%"]=1621, - ["prevent_projectile_chaining_%_chance"]=8584, - ["pride_aura_effect_+%"]=8585, - ["pride_chance_to_deal_double_damage_%"]=8586, - ["pride_chance_to_impale_with_attacks_%"]=8587, - ["pride_intimidate_enemy_for_4_seconds_on_hit"]=8588, - ["pride_mana_reservation_+%"]=8591, - ["pride_mana_reservation_efficiency_+%"]=8590, - ["pride_mana_reservation_efficiency_-2%_per_1"]=8589, - ["pride_physical_damage_+%"]=8592, - ["pride_reserves_no_mana"]=8593, - ["pride_your_impaled_debuff_lasts_+_additional_hits"]=8594, - ["primalist_charm_charges_gained_+%_final"]=8595, - ["primordial_altar_burning_ground_on_death_%"]=8263, - ["primordial_altar_chilled_ground_on_death_%"]=8264, - ["primordial_jewel_count"]=9557, - ["prismatic_rain_beam_frequency_+%"]=8596, - ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=8597, - ["projectile_ailment_chance_+%"]=8598, - ["projectile_all_damage_%_to_gain_as_infusion_type"]=8599, - ["projectile_attack_damage_+%"]=1707, - ["projectile_attack_damage_+%_during_flask_effect"]=8600, - ["projectile_attack_damage_+%_per_200_accuracy"]=3949, - ["projectile_attack_damage_+%_with_at_least_200_dex"]=3997, - ["projectile_attack_damage_+%_with_claw_or_dagger"]=8601, - ["projectile_attack_range_+%"]=8602, - ["projectile_attack_skill_critical_strike_chance_+%"]=3958, - ["projectile_attack_skill_critical_strike_multiplier_+"]=8603, - ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=3959, - ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=3960, - ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=3961, - ["projectile_base_number_of_targets_to_pierce"]=1513, - ["projectile_chain_from_terrain_chance_%"]=1547, - ["projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=8604, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=8605, - ["projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player"]=8606, - ["projectile_damage_+%"]=1706, - ["projectile_damage_+%_against_heavy_stunned_enemies"]=8607, - ["projectile_damage_+%_if_youve_dealt_melee_hit_recently"]=8608, - ["projectile_damage_+%_in_blood_stance"]=9068, - ["projectile_damage_+%_max_as_distance_travelled_increases"]=3708, - ["projectile_damage_+%_max_before_distance_increase"]=8612, - ["projectile_damage_+%_per_16_dexterity"]=8613, - ["projectile_damage_+%_per_chain"]=8614, - ["projectile_damage_+%_per_pierced_enemy"]=8615, - ["projectile_damage_+%_per_power_charge"]=2351, - ["projectile_damage_+%_per_remaining_chain"]=8616, - ["projectile_damage_+%_vs_chained_enemy"]=8617, - ["projectile_damage_+%_vs_enemies_further_than_6m_distance"]=8609, - ["projectile_damage_+%_vs_enemies_within_2m_distance"]=8610, - ["projectile_damage_+%_vs_nearby_enemies"]=8618, - ["projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you"]=8611, - ["projectile_damage_modifiers_apply_to_skill_dot"]=2400, - ["projectile_damage_taken_+%"]=2453, - ["projectile_freeze_chance_%"]=2413, - ["projectile_hit_damage_stun_multiplier_+%"]=8619, - ["projectile_ignite_chance_%"]=2412, - ["projectile_number_to_split"]=8620, - ["projectile_return_%_chance"]=2526, - ["projectile_shock_chance_%"]=2414, - ["projectile_skill_gem_level_+"]=952, - ["projectile_speed_+%_per_frenzy_charge"]=2350, - ["projectile_speed_+%_with_crossbow_skills"]=1518, - ["projectile_speed_+%_with_daggers"]=8621, - ["projectile_spell_cooldown_modifier_ms"]=8622, - ["projectile_weakness_curse_effect_+%"]=3635, - ["projectile_weakness_duration_+%"]=3539, - ["projectiles_always_pierce_you"]=8623, - ["projectiles_fork"]=3226, - ["projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently"]=8624, - ["projectiles_from_spells_cannot_pierce"]=8625, - ["projectiles_pierce_1_additional_target_per_10_stat_value"]=8626, - ["projectiles_pierce_1_additional_target_per_15_stat_value"]=8627, - ["projectiles_pierce_all_nearby_targets"]=8628, - ["projectiles_pierce_while_phasing"]=8629, - ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=8630, - ["projectiles_return"]=2526, - ["protective_link_duration_+%"]=8631, - ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=8632, - ["puncture_damage_+%"]=3296, - ["puncture_duration_+%"]=3530, - ["puncture_maim_on_hit_%_chance"]=3597, - ["punishment_curse_effect_+%"]=3643, - ["punishment_duration_+%"]=3543, - ["punishment_ignores_hexproof"]=2322, - ["punishment_no_reservation"]=8633, - ["puppet_master_base_duration_ms"]=8634, - ["purge_damage_+%"]=8635, - ["purge_duration_+%"]=8636, - ["purge_expose_resist_%_matching_highest_element_damage"]=8637, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=8638, - ["purity_of_elements_aura_effect_+%"]=3017, - ["purity_of_elements_mana_reservation_+%"]=3666, - ["purity_of_elements_mana_reservation_efficiency_+%"]=8640, - ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=8639, - ["purity_of_elements_reserves_no_mana"]=8641, - ["purity_of_fire_aura_effect_+%"]=3018, - ["purity_of_fire_mana_reservation_+%"]=3667, - ["purity_of_fire_mana_reservation_efficiency_+%"]=8643, - ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=8642, - ["purity_of_fire_reserves_no_mana"]=8644, - ["purity_of_ice_aura_effect_+%"]=3019, - ["purity_of_ice_mana_reservation_+%"]=3663, - ["purity_of_ice_mana_reservation_efficiency_+%"]=8646, - ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=8645, - ["purity_of_ice_reserves_no_mana"]=8647, - ["purity_of_lightning_aura_effect_+%"]=3020, - ["purity_of_lightning_mana_reservation_+%"]=3668, - ["purity_of_lightning_mana_reservation_efficiency_+%"]=8649, - ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=8648, - ["purity_of_lightning_reserves_no_mana"]=8650, - ["quality_display_base_number_of_crossbow_bolts_is_gem"]=965, - ["quality_display_trinity_is_gem"]=9300, - ["quantity_of_items_dropped_by_maimed_enemies_+%"]=3797, - ["quarterstaff_accuracy_rating_+%"]=1305, - ["quarterstaff_attack_speed_+%"]=1288, - ["quarterstaff_critical_strike_chance_+%"]=1334, - ["quarterstaff_critical_strike_multiplier_+"]=1359, - ["quarterstaff_damage_+%"]=1207, - ["quarterstaff_daze_build_up_+%"]=8651, - ["quarterstaff_hit_damage_freeze_multiplier_+%"]=8652, - ["quarterstaff_hit_damage_stun_multiplier_+%"]=8653, - ["quarterstaff_shock_chance_+%"]=8654, - ["quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges"]=8655, - ["quick_dodge_added_cooldown_count"]=8656, - ["quick_dodge_travel_distance_+%"]=8657, - ["quick_guard_additional_physical_damage_reduction_%"]=8658, - ["quicksilver_flasks_apply_to_nearby_allies"]=8659, - ["quiver_hellscaping_speed_+%"]=6513, - ["quiver_mod_effect_+%"]=8660, - ["quiver_projectiles_pierce_1_additional_target"]=8661, - ["quiver_projectiles_pierce_2_additional_targets"]=8662, - ["quiver_projectiles_pierce_3_additional_targets"]=8663, - ["rage_decay_speed_+%"]=8672, - ["rage_effects_doubled"]=8666, - ["rage_effects_tripled"]=8665, - ["rage_grants_spell_damage_instead"]=8673, - ["rage_loss_delay_ms"]=8674, - ["rage_slash_sacrifice_rage_%"]=8675, - ["rage_vortex_area_of_effect_+%"]=8676, - ["rage_vortex_damage_+%"]=8677, - ["raging_spirit_damage_+%"]=3290, - ["raging_spirits_always_ignite"]=8678, - ["raging_spirits_refresh_duration_on_hit_vs_unique_%_chance"]=8679, - ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=8680, - ["raider_chance_to_evade_attacks_+%_final_during_onslaught"]=8681, - ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=8682, - ["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=2959, - ["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=2960, - ["rain_of_arrows_additional_sequence_chance_%"]=8683, - ["rain_of_arrows_attack_speed_+%"]=3488, - ["rain_of_arrows_damage_+%"]=3289, - ["rain_of_arrows_radius_+%"]=3445, - ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=8684, - ["raise_spectre_gem_level_+"]=1442, - ["raise_spectre_mana_cost_+%"]=8685, - ["raise_zombie_does_not_use_corpses"]=8686, - ["raise_zombie_gem_level_+"]=1441, - ["raised_zombie_%_chance_to_taunt"]=8687, - ["raised_zombies_are_usable_as_corpses_when_alive"]=8688, - ["raised_zombies_cover_in_ash_on_hit_%"]=8689, - ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=8690, - ["raised_zombies_have_avatar_of_fire"]=8691, - ["rallying_cry_buff_effect_+%"]=3741, - ["rallying_cry_buff_effect_1%_per_3_stat_value"]=8692, - ["rallying_cry_buff_effect_1%_per_5_stat_value"]=8693, - ["rallying_cry_duration_+%"]=3551, - ["rallying_cry_exerts_x_additional_attacks"]=8694, - ["random_curse_on_hit_%"]=2230, - ["random_curse_on_hit_%_against_uncursed_enemies"]=8695, - ["random_curse_when_hit_%_ignoring_curse_limit"]=8696, - ["random_projectile_direction"]=8697, - ["randomly_cursed_when_totems_die_curse_level"]=2269, - ["ranged_weapon_physical_damage_+%"]=1708, - ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=8698, - ["rapid_assault_attached_spear_limit"]=8699, - ["rare_or_unique_monster_dropped_item_rarity_+%"]=8700, - ["rarity_of_items_dropped_by_maimed_enemies_+%"]=3798, - ["real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy"]=8701, - ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=8702, - ["reapply_enemy_shock_on_consuming_enemy_shock_chance_%"]=8703, - ["reave_attack_speed_per_reave_stack_+%"]=3594, - ["reave_damage_+%"]=3283, - ["reave_radius_+%"]=3442, - ["recall_sigil_target_search_range_+%"]=8704, - ["receive_bleeding_chance_%_when_hit"]=8705, - ["receive_bleeding_chance_%_when_hit_by_attack"]=8706, - ["received_attack_hits_have_impale_chance_%"]=8707, - ["recharge_flasks_on_crit"]=2653, - ["recharge_flasks_on_crit_while_affected_by_precision"]=8708, - ["reckoning_cooldown_speed_+%"]=3511, - ["reckoning_damage_+%"]=3348, - ["recoup_%_elemental_damage_as_energy_shield"]=8709, - ["recoup_%_of_damage_taken_by_your_totems_as_life"]=8710, - ["recoup_effects_apply_over_4_seconds_instead"]=8711, - ["recoup_life_effects_apply_over_3_seconds_instead"]=8712, - ["recoup_speed_+%"]=8713, - ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=8714, - ["recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff"]=8733, - ["recover_%_es_on_kill_per_different_mastery"]=1463, - ["recover_%_life_on_heavy_stunning_rare_or_unique_enemy"]=8715, - ["recover_%_life_on_kill_per_different_mastery"]=1462, - ["recover_%_life_per_endurance_charge_consumed"]=8716, - ["recover_%_life_when_gaining_adrenaline"]=8734, - ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=8735, - ["recover_%_life_when_you_create_an_offering"]=8717, - ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=8736, - ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=8737, - ["recover_%_mana_on_kill_per_different_mastery"]=1464, - ["recover_%_mana_when_attached_brand_expires"]=8738, - ["recover_%_mana_when_you_invoke_a_spell"]=8718, - ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=8719, - ["recover_%_maximum_life_on_enemy_ignited"]=3941, - ["recover_%_maximum_life_on_flask_use"]=3973, - ["recover_%_maximum_life_on_kill"]=1475, - ["recover_%_maximum_life_on_killing_chilled_enemy"]=8739, - ["recover_%_maximum_life_on_killing_cursed_enemy"]=8720, - ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=8740, - ["recover_%_maximum_life_on_killing_poisoned_enemy"]=8741, - ["recover_%_maximum_life_on_mana_flask_use"]=3974, - ["recover_%_maximum_life_on_rampage_threshold"]=2642, - ["recover_%_maximum_life_on_suppressing_spell"]=8721, - ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2736, - ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=8722, - ["recover_%_maximum_mana_on_charm_use"]=8742, - ["recover_%_maximum_mana_on_kill"]=1477, - ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1478, - ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=8723, - ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=8743, - ["recover_%_maximum_mana_when_enemy_shocked"]=3796, - ["recover_%_of_maximum_life_on_block"]=2740, - ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=8744, - ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=8724, - ["recover_10%_of_maximum_mana_on_skill_use_%"]=3123, - ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=8725, - ["recover_X_life_on_block"]=1486, - ["recover_X_life_on_enemy_ignited"]=8726, - ["recover_X_life_on_suppressing_spell"]=8727, - ["recover_X_life_when_fortification_expires_per_fortification_lost"]=8728, - ["recover_X_mana_on_killing_frozen_enemy"]=8729, - ["recover_energy_shield_%_on_consuming_steel_shard"]=8730, - ["recover_energy_shield_%_on_kill"]=1476, - ["recover_es_as_well_as_life_from_life_regeneration"]=8731, - ["recover_maximum_life_on_enemy_killed_chance_%"]=8732, - ["recover_permyriad_life_on_skill_use"]=8745, - ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=8746, - ["recover_x_energy_shield_on_spell_block"]=8747, - ["recover_x_energy_shield_on_suppressing_spell"]=8748, - ["reduce_enemy_chaos_resistance_%"]=8749, - ["reduce_enemy_chaos_resistance_with_weapons_%"]=3234, - ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=8750, - ["reduce_enemy_cold_resistance_with_weapons_%"]=3231, - ["reduce_enemy_dodge_%"]=1619, - ["reduce_enemy_elemental_resistance_%"]=2666, - ["reduce_enemy_elemental_resistance_with_weapons_%"]=3241, - ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=8751, - ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=8752, - ["reduce_enemy_fire_resistance_with_weapons_%"]=3232, - ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=8753, - ["reduce_enemy_lightning_resistance_with_weapons_%"]=3233, - ["reflect_%_of_physical_damage_prevented"]=8754, - ["reflect_curses"]=2195, - ["reflect_damage_taken_+%"]=3887, - ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=8755, - ["reflect_hexes_chance_%"]=2196, - ["reflect_shocks"]=8756, - ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=8757, - ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=8758, - ["refresh_endurance_charges_duration_when_hit_chance_%"]=8759, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=8760, - ["regenerate_%_armour_as_life_over_1_second_on_block"]=2534, - ["regenerate_%_energy_shield_over_1_second_when_stunned"]=8761, - ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=8762, - ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=8769, - ["regenerate_%_life_over_1_second_when_stunned"]=8763, - ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=8770, - ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=8771, - ["regenerate_1_rage_per_x_life_regeneration"]=8764, - ["regenerate_1_rage_per_x_mana_regeneration"]=8765, - ["regenerate_X_life_over_1_second_on_cast"]=2533, - ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=8766, - ["regenerate_energy_shield_instead_of_life"]=8767, - ["regenerate_mana_equal_to_x%_of_life_per_minute"]=8768, - ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=8772, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3626, - ["rejuvenation_totem_aura_effect_+%"]=3627, - ["reload_speed_+%"]=8773, - ["remove_%_of_mana_on_hit"]=8784, - ["remove_ailments_and_burning_on_gaining_adrenaline"]=8774, - ["remove_all_damaging_ailments_on_warcry"]=8775, - ["remove_bleed_on_flask_use"]=3042, - ["remove_bleed_on_life_flask_use"]=8776, - ["remove_bleeding_on_warcry"]=8777, - ["remove_chill_and_freeze_on_flask_use"]=8778, - ["remove_corrupted_blood_when_you_use_a_flask"]=3043, - ["remove_curse_on_mana_flask_use"]=8779, - ["remove_damaging_ailments_on_swapping_stance"]=8780, - ["remove_elemental_ailments_on_curse_cast_%"]=8781, - ["remove_ignite_and_burning_on_flask_use"]=8782, - ["remove_maim_and_hinder_on_flask_use"]=8783, - ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=8785, - ["remove_random_ailment_when_you_warcry"]=8786, - ["remove_random_charge_on_hit_%"]=8787, - ["remove_random_elemental_ailment_on_mana_flask_use"]=8788, - ["remove_random_non_elemental_ailment_on_life_flask_use"]=8789, - ["remove_shock_on_flask_use"]=8790, - ["remove_x_curses_after_channelling_for_2_seconds"]=8791, - ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=8792, - ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=8793, - ["reservation_efficiency_-2%_per_1"]=1925, - ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=8794, - ["resist_all_%"]=8795, - ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=8796, - ["resist_all_elements_%_per_10_levels"]=2466, - ["resist_all_elements_%_per_endurance_charge"]=1444, - ["resist_all_elements_%_per_power_charge"]=1445, - ["resist_all_elements_%_with_200_or_more_strength"]=3996, - ["resist_all_elements_+%_while_holding_shield"]=1446, - ["resolute_technique"]=9632, - ["restore_energy_shield_and_mana_when_you_focus_%"]=8797, - ["restore_life_and_mana_on_warcry_%"]=2871, - ["restore_life_on_warcry_%"]=2872, - ["returning_projectiles_always_pierce"]=8798, - ["revive_golems_if_killed_by_enemies_ms"]=8799, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=8800, - ["righteous_fire_damage_+%"]=3313, - ["righteous_fire_radius_+%"]=3453, - ["righteous_fire_spell_damage_+%"]=3740, - ["riposte_cooldown_speed_+%"]=3516, - ["riposte_damage_+%"]=3360, - ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=8801, - ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=8802, - ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=8803, - ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=8804, - ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=8805, - ["sacrifice_%_life_on_spell_skill"]=8806, - ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=8807, - ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=8808, - ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=8809, - ["sanctify_damage_+%"]=8810, - ["sap_on_critical_strike_with_lightning_skills"]=8811, - ["scion_helmet_skill_maximum_totems_+"]=475, - ["scorch_effect_+%"]=8812, - ["scorch_enemies_in_close_range_on_block"]=8813, - ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=8814, - ["scourge_arrow_damage_+%"]=8815, - ["searing_bond_damage_+%"]=3308, - ["searing_bond_totem_placement_speed_+%"]=3605, - ["searing_totem_elemental_resistance_+%"]=3746, - ["secondary_maximum_base_chaos_damage"]=1271, - ["secondary_maximum_base_cold_damage"]=1269, - ["secondary_maximum_base_fire_damage"]=1268, - ["secondary_maximum_base_lightning_damage"]=1270, - ["secondary_maximum_base_physical_damage"]=1267, - ["secondary_minimum_base_chaos_damage"]=1271, - ["secondary_minimum_base_cold_damage"]=1269, - ["secondary_minimum_base_fire_damage"]=1268, - ["secondary_minimum_base_lightning_damage"]=1270, - ["secondary_minimum_base_physical_damage"]=1267, - ["secondary_skill_effect_duration_+%"]=8816, - ["seismic_cry_exerted_attack_damage_+%"]=8817, - ["seismic_cry_minimum_power"]=8818, - ["self_bleed_duration_+%"]=1015, - ["self_chaos_damage_taken_per_minute_per_endurance_charge"]=8819, - ["self_chaos_damage_taken_per_minute_while_affected_by_flask"]=8820, - ["self_chill_duration_-%"]=1588, - ["self_cold_damage_on_reaching_maximum_power_charges"]=8821, - ["self_critical_strike_multiplier_+%_while_ignited"]=8822, - ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1371, - ["self_curse_duration_+%"]=1880, - ["self_curse_duration_+%_per_10_devotion"]=8823, - ["self_cursed_with_level_x_vulnerability"]=2797, - ["self_elemental_status_duration_-%"]=1587, - ["self_elemental_status_duration_-%_per_10_devotion"]=8824, - ["self_freeze_duration_-%"]=1589, - ["self_ignite_duration_-%"]=1590, - ["self_offering_effect_+%"]=1102, - ["self_physical_damage_on_movement_skill_use"]=8825, - ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=8826, + ["presence_area_+%_per_10_tribute"]=8826, + ["prevent_monster_heal"]=1599, + ["prevent_monster_heal_duration_+%"]=1600, + ["prevent_projectile_chaining_%_chance"]=8827, + ["pride_aura_effect_+%"]=8828, + ["pride_chance_to_deal_double_damage_%"]=8829, + ["pride_chance_to_impale_with_attacks_%"]=8830, + ["pride_intimidate_enemy_for_4_seconds_on_hit"]=8831, + ["pride_mana_reservation_+%"]=8834, + ["pride_mana_reservation_efficiency_+%"]=8833, + ["pride_mana_reservation_efficiency_-2%_per_1"]=8832, + ["pride_physical_damage_+%"]=8835, + ["pride_reserves_no_mana"]=8836, + ["pride_your_impaled_debuff_lasts_+_additional_hits"]=8837, + ["primalist_charm_charges_gained_+%_final"]=8838, + ["primordial_altar_burning_ground_on_death_%"]=8469, + ["primordial_altar_chilled_ground_on_death_%"]=8470, + ["primordial_jewel_count"]=9837, + ["prismatic_rain_beam_frequency_+%"]=8839, + ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=8840, + ["projectile_ailment_chance_+%"]=8841, + ["projectile_all_damage_%_to_gain_as_instilling_type"]=8842, + ["projectile_attack_damage_+%"]=1684, + ["projectile_attack_damage_+%_during_flask_effect"]=8843, + ["projectile_attack_damage_+%_per_200_accuracy"]=3890, + ["projectile_attack_damage_+%_with_at_least_200_dex"]=3938, + ["projectile_attack_damage_+%_with_claw_or_dagger"]=8844, + ["projectile_attack_range_+%"]=8845, + ["projectile_attack_skill_critical_strike_chance_+%"]=3899, + ["projectile_attack_skill_critical_strike_multiplier_+"]=8846, + ["projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving"]=8847, + ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=3900, + ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=3901, + ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=3902, + ["projectile_base_number_of_targets_to_pierce"]=1496, + ["projectile_chain_from_terrain_chance_%"]=1530, + ["projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=8848, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=8849, + ["projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player"]=8850, + ["projectile_damage_+%"]=1683, + ["projectile_damage_+%_against_heavy_stunned_enemies"]=8851, + ["projectile_damage_+%_if_youve_dealt_melee_hit_recently"]=8852, + ["projectile_damage_+%_in_blood_stance"]=9328, + ["projectile_damage_+%_max_as_distance_travelled_increases"]=3650, + ["projectile_damage_+%_max_before_distance_increase"]=8856, + ["projectile_damage_+%_per_16_dexterity"]=8857, + ["projectile_damage_+%_per_chain"]=8858, + ["projectile_damage_+%_per_pierced_enemy"]=8859, + ["projectile_damage_+%_per_power_charge"]=2319, + ["projectile_damage_+%_per_remaining_chain"]=8860, + ["projectile_damage_+%_vs_chained_enemy"]=8861, + ["projectile_damage_+%_vs_enemies_further_than_6m_distance"]=8853, + ["projectile_damage_+%_vs_enemies_within_2m_distance"]=8854, + ["projectile_damage_+%_vs_nearby_enemies"]=8862, + ["projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you"]=8855, + ["projectile_damage_modifiers_apply_to_skill_dot"]=2368, + ["projectile_damage_taken_+%"]=2419, + ["projectile_daze_chance_%_vs_enemies_further_than_6m"]=8863, + ["projectile_freeze_chance_%"]=2379, + ["projectile_hit_damage_stun_multiplier_+%"]=8864, + ["projectile_number_to_split"]=8865, + ["projectile_return_%_chance"]=2490, + ["projectile_shock_chance_%"]=2380, + ["projectile_skill_gem_level_+"]=950, + ["projectile_speed_+%_per_frenzy_charge"]=2318, + ["projectile_speed_+%_with_crossbow_skills"]=1501, + ["projectile_speed_+%_with_daggers"]=8866, + ["projectile_spell_cooldown_modifier_ms"]=8867, + ["projectile_weakness_curse_effect_+%"]=3578, + ["projectile_weakness_duration_+%"]=3485, + ["projectiles_always_pierce_you"]=8868, + ["projectiles_fork"]=3173, + ["projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently"]=8869, + ["projectiles_from_spells_cannot_pierce"]=8870, + ["projectiles_pierce_1_additional_target_per_10_stat_value"]=8871, + ["projectiles_pierce_1_additional_target_per_15_stat_value"]=8872, + ["projectiles_pierce_all_nearby_targets"]=8873, + ["projectiles_pierce_enemies_with_fully_broken_armour"]=8874, + ["projectiles_pierce_while_phasing"]=8875, + ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=8876, + ["projectiles_return"]=2490, + ["protective_link_duration_+%"]=8877, + ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=8878, + ["puncture_damage_+%"]=3242, + ["puncture_duration_+%"]=3476, + ["puncture_maim_on_hit_%_chance"]=3541, + ["punishment_curse_effect_+%"]=3586, + ["punishment_duration_+%"]=3489, + ["punishment_ignores_hexproof"]=2290, + ["punishment_no_reservation"]=8879, + ["puppet_master_base_duration_ms"]=8880, + ["purge_damage_+%"]=8881, + ["purge_duration_+%"]=8882, + ["purge_expose_resist_%_matching_highest_element_damage"]=8883, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=8884, + ["purity_of_elements_aura_effect_+%"]=2968, + ["purity_of_elements_mana_reservation_+%"]=3609, + ["purity_of_elements_mana_reservation_efficiency_+%"]=8886, + ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=8885, + ["purity_of_elements_reserves_no_mana"]=8887, + ["purity_of_fire_aura_effect_+%"]=2969, + ["purity_of_fire_mana_reservation_+%"]=3610, + ["purity_of_fire_mana_reservation_efficiency_+%"]=8889, + ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=8888, + ["purity_of_fire_reserves_no_mana"]=8890, + ["purity_of_ice_aura_effect_+%"]=2970, + ["purity_of_ice_mana_reservation_+%"]=3606, + ["purity_of_ice_mana_reservation_efficiency_+%"]=8892, + ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=8891, + ["purity_of_ice_reserves_no_mana"]=8893, + ["purity_of_lightning_aura_effect_+%"]=2971, + ["purity_of_lightning_mana_reservation_+%"]=3611, + ["purity_of_lightning_mana_reservation_efficiency_+%"]=8895, + ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=8894, + ["purity_of_lightning_reserves_no_mana"]=8896, + ["quality_display_base_number_of_crossbow_bolts_is_gem"]=963, + ["quality_display_trinity_is_gem"]=9567, + ["quantity_of_items_dropped_by_maimed_enemies_+%"]=3739, + ["quarterstaff_accuracy_rating_+%"]=1293, + ["quarterstaff_attack_speed_+%"]=1276, + ["quarterstaff_critical_strike_chance_+%"]=1322, + ["quarterstaff_critical_strike_multiplier_+"]=1347, + ["quarterstaff_damage_+%"]=1195, + ["quarterstaff_daze_build_up_+%"]=8897, + ["quarterstaff_hit_damage_freeze_multiplier_+%"]=8898, + ["quarterstaff_hit_damage_stun_multiplier_+%"]=8899, + ["quarterstaff_shock_chance_+%"]=8900, + ["quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges"]=8901, + ["quick_dodge_added_cooldown_count"]=8902, + ["quick_dodge_travel_distance_+%"]=8903, + ["quick_guard_additional_physical_damage_reduction_%"]=8904, + ["quicksilver_flasks_apply_to_nearby_allies"]=8905, + ["quiver_hellscaping_speed_+%"]=6625, + ["quiver_mod_effect_+%"]=8906, + ["quiver_projectiles_pierce_1_additional_target"]=8907, + ["quiver_projectiles_pierce_2_additional_targets"]=8908, + ["quiver_projectiles_pierce_3_additional_targets"]=8909, + ["rage_decay_speed_+%"]=8918, + ["rage_decay_speed_+%_per_10_tribute"]=8919, + ["rage_effects_doubled"]=8912, + ["rage_effects_tripled"]=8911, + ["rage_gained_on_life_flask_use"]=8920, + ["rage_generated_also_granted_to_allies_in_presence"]=8921, + ["rage_grants_spell_damage_instead"]=8922, + ["rage_loss_delay_ms"]=8923, + ["rage_slash_sacrifice_rage_%"]=8924, + ["rage_vortex_area_of_effect_+%"]=8925, + ["rage_vortex_damage_+%"]=8926, + ["raging_spirit_damage_+%"]=3236, + ["raging_spirits_always_ignite"]=8927, + ["raging_spirits_refresh_duration_on_hit_vs_unique_%_chance"]=8928, + ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=8929, + ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=8930, + ["rain_of_arrows_additional_sequence_chance_%"]=8931, + ["rain_of_arrows_attack_speed_+%"]=3434, + ["rain_of_arrows_damage_+%"]=3235, + ["rain_of_arrows_radius_+%"]=3391, + ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=8932, + ["raise_spectre_gem_level_+"]=1425, + ["raise_spectre_mana_cost_+%"]=8933, + ["raise_zombie_does_not_use_corpses"]=8934, + ["raise_zombie_gem_level_+"]=1424, + ["raised_zombie_%_chance_to_taunt"]=8935, + ["raised_zombies_are_usable_as_corpses_when_alive"]=8936, + ["raised_zombies_cover_in_ash_on_hit_%"]=8937, + ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=8938, + ["raised_zombies_have_avatar_of_fire"]=8939, + ["rallying_cry_buff_effect_+%"]=3683, + ["rallying_cry_buff_effect_1%_per_3_stat_value"]=8940, + ["rallying_cry_buff_effect_1%_per_5_stat_value"]=8941, + ["rallying_cry_duration_+%"]=3497, + ["rallying_cry_exerts_x_additional_attacks"]=8942, + ["random_curse_on_hit_%"]=2199, + ["random_curse_on_hit_%_against_uncursed_enemies"]=8943, + ["random_curse_when_hit_%_ignoring_curse_limit"]=8944, + ["random_projectile_direction"]=8945, + ["randomly_cursed_when_totems_die_curse_level"]=2237, + ["ranged_weapon_physical_damage_+%"]=1685, + ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=8946, + ["rapid_assault_attached_spear_limit"]=8947, + ["rare_or_unique_monster_dropped_item_rarity_+%"]=8948, + ["rarity_of_items_dropped_by_maimed_enemies_+%"]=3740, + ["real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy"]=8949, + ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=8950, + ["reapply_enemy_shock_on_consuming_enemy_shock_chance_%"]=8951, + ["reave_attack_speed_per_reave_stack_+%"]=3538, + ["reave_damage_+%"]=3229, + ["reave_radius_+%"]=3388, + ["recall_sigil_target_search_range_+%"]=8952, + ["receive_bleeding_chance_%_when_hit"]=8953, + ["receive_bleeding_chance_%_when_hit_by_attack"]=8954, + ["received_attack_hits_have_impale_chance_%"]=8955, + ["recharge_flasks_on_crit"]=2612, + ["recharge_flasks_on_crit_while_affected_by_precision"]=8956, + ["reckoning_cooldown_speed_+%"]=3457, + ["reckoning_damage_+%"]=3294, + ["recoup_%_elemental_damage_as_energy_shield"]=8957, + ["recoup_%_of_damage_taken_by_your_totems_as_life"]=8958, + ["recoup_effects_apply_over_4_seconds_instead"]=8959, + ["recoup_life_effects_apply_over_3_seconds_instead"]=8960, + ["recoup_speed_+%"]=8961, + ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=8962, + ["recover_%_es_on_kill_per_different_mastery"]=1446, + ["recover_%_life_on_heavy_stunning_rare_or_unique_enemy"]=8963, + ["recover_%_life_on_kill_per_different_mastery"]=1445, + ["recover_%_life_per_endurance_charge_consumed"]=8964, + ["recover_%_life_when_gaining_adrenaline"]=8984, + ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=8985, + ["recover_%_life_when_you_create_an_offering"]=8965, + ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=8986, + ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=8987, + ["recover_%_mana_on_kill_per_different_mastery"]=1447, + ["recover_%_mana_when_attached_brand_expires"]=8988, + ["recover_%_mana_when_you_invoke_a_spell"]=8966, + ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=8967, + ["recover_%_maximum_life_on_enemy_ignited"]=3882, + ["recover_%_maximum_life_on_flask_use"]=3914, + ["recover_%_maximum_life_on_kill"]=1458, + ["recover_%_maximum_life_on_kill_per_50_tribute"]=8968, + ["recover_%_maximum_life_on_killing_chilled_enemy"]=8989, + ["recover_%_maximum_life_on_killing_cursed_enemy"]=8969, + ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=8990, + ["recover_%_maximum_life_on_killing_poisoned_enemy"]=8991, + ["recover_%_maximum_life_on_mana_flask_use"]=3915, + ["recover_%_maximum_life_on_rampage_threshold"]=2601, + ["recover_%_maximum_life_per_glory_consumed"]=8970, + ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2691, + ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=8971, + ["recover_%_maximum_life_when_spending_at_least_10_combo"]=8992, + ["recover_%_maximum_mana_on_charm_use"]=8993, + ["recover_%_maximum_mana_on_kill"]=1460, + ["recover_%_maximum_mana_on_kill_per_50_tribute"]=8972, + ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1461, + ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=8973, + ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=8994, + ["recover_%_maximum_mana_when_enemy_shocked"]=3738, + ["recover_%_maximum_mana_when_spending_at_least_10_combo"]=8995, + ["recover_%_of_maximum_life_on_block"]=2695, + ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=8996, + ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=8974, + ["recover_10%_of_maximum_mana_on_skill_use_%"]=3071, + ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=8975, + ["recover_X_life_on_block"]=1469, + ["recover_X_life_on_enemy_ignited"]=8976, + ["recover_X_life_when_fortification_expires_per_fortification_lost"]=8977, + ["recover_X_mana_on_killing_frozen_enemy"]=8978, + ["recover_energy_shield_%_on_consuming_steel_shard"]=8979, + ["recover_energy_shield_%_on_kill"]=1459, + ["recover_es_as_well_as_life_from_life_regeneration"]=8980, + ["recover_life_%_on_enemy_death_in_presence"]=8981, + ["recover_mana_%_on_enemy_death_in_presence"]=8982, + ["recover_maximum_life_on_enemy_killed_chance_%"]=8983, + ["recover_permyriad_life_on_skill_use"]=8997, + ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=8998, + ["reduce_enemy_chaos_resistance_%"]=8999, + ["reduce_enemy_chaos_resistance_with_weapons_%"]=3180, + ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9000, + ["reduce_enemy_cold_resistance_with_weapons_%"]=3177, + ["reduce_enemy_elemental_resistance_%"]=2625, + ["reduce_enemy_elemental_resistance_with_weapons_%"]=3187, + ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9001, + ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9002, + ["reduce_enemy_fire_resistance_with_weapons_%"]=3178, + ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9003, + ["reduce_enemy_lightning_resistance_with_weapons_%"]=3179, + ["reflect_%_of_physical_damage_prevented"]=9004, + ["reflect_curses"]=2164, + ["reflect_damage_taken_+%"]=3828, + ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9005, + ["reflect_hexes_chance_%"]=2165, + ["reflect_shocks"]=9006, + ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9007, + ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9008, + ["refresh_endurance_charges_duration_when_hit_chance_%"]=9009, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=9010, + ["regenerate_%_armour_as_life_over_1_second_on_block"]=2498, + ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9011, + ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9012, + ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9019, + ["regenerate_%_life_over_1_second_when_stunned"]=9013, + ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9020, + ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9021, + ["regenerate_1_rage_per_x_life_regeneration"]=9014, + ["regenerate_1_rage_per_x_mana_regeneration"]=9015, + ["regenerate_X_life_over_1_second_on_cast"]=2497, + ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9016, + ["regenerate_energy_shield_instead_of_life"]=9017, + ["regenerate_mana_equal_to_x%_of_life_per_minute"]=9018, + ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9022, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3569, + ["rejuvenation_totem_aura_effect_+%"]=3570, + ["reload_speed_+%"]=9023, + ["remnant_effect_+%"]=9025, + ["remnant_effect_+%_per_10_tribute"]=9024, + ["remnant_pickup_range_+%"]=9027, + ["remnant_pickup_range_+%_if_you_have_at_least_100_tribute"]=9026, + ["remnant_recover_%_life_on_pickup"]=9028, + ["remnant_recover_%_mana_on_pickup"]=9029, + ["remove_%_of_mana_on_hit"]=9042, + ["remove_ailments_and_burning_on_gaining_adrenaline"]=9030, + ["remove_all_damaging_ailments_on_warcry"]=9031, + ["remove_bleed_on_flask_use"]=2993, + ["remove_bleed_on_life_flask_use"]=9032, + ["remove_bleeding_on_warcry"]=9033, + ["remove_chill_and_freeze_on_flask_use"]=9034, + ["remove_corrupted_blood_when_you_use_a_flask"]=2994, + ["remove_curse_on_mana_flask_use"]=9035, + ["remove_damaging_ailment_on_using_command_skill"]=9036, + ["remove_damaging_ailments_on_swapping_stance"]=9037, + ["remove_elemental_ailments_on_curse_cast_%"]=9038, + ["remove_ignite_and_burning_on_flask_use"]=9039, + ["remove_ignite_on_warcry"]=9040, + ["remove_maim_and_hinder_on_flask_use"]=9041, + ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9043, + ["remove_random_ailment_when_you_warcry"]=9044, + ["remove_random_charge_on_hit_%"]=9045, + ["remove_random_elemental_ailment_on_mana_flask_use"]=9046, + ["remove_random_non_elemental_ailment_on_life_flask_use"]=9047, + ["remove_shock_on_flask_use"]=9048, + ["remove_x_curses_after_channelling_for_2_seconds"]=9049, + ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9050, + ["required_enemies_to_be_considered_surrounded_offset"]=9051, + ["reservation_efficiency_+%_of_companion_skills"]=9052, + ["reservation_efficiency_+%_of_herald_skills"]=9053, + ["reservation_efficiency_+%_of_meta_skills"]=9054, + ["reservation_efficiency_+%_of_minion_skills"]=8421, + ["reservation_efficiency_+%_of_skeleton_minion_skills"]=9160, + ["reservation_efficiency_+%_of_undead_minion_skills"]=9623, + ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9055, + ["reservation_efficiency_-2%_per_1"]=1904, + ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9056, + ["resist_all_%"]=9057, + ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9058, + ["resist_all_elements_%_per_10_levels"]=2432, + ["resist_all_elements_%_per_endurance_charge"]=1427, + ["resist_all_elements_%_per_power_charge"]=1428, + ["resist_all_elements_%_with_200_or_more_strength"]=3937, + ["resist_all_elements_+%_while_holding_shield"]=1429, + ["resolute_technique"]=9912, + ["restore_energy_shield_and_mana_when_you_focus_%"]=9059, + ["restore_life_and_mana_on_warcry_%"]=2826, + ["restore_life_on_warcry_%"]=2827, + ["returning_projectiles_always_pierce"]=9060, + ["revive_golems_if_killed_by_enemies_ms"]=9061, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9062, + ["righteous_fire_damage_+%"]=3259, + ["righteous_fire_radius_+%"]=3399, + ["righteous_fire_spell_damage_+%"]=3682, + ["riposte_cooldown_speed_+%"]=3462, + ["riposte_damage_+%"]=3306, + ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9063, + ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9064, + ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9065, + ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9066, + ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9067, + ["sacrifice_%_life_on_spell_skill"]=9068, + ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9069, + ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9070, + ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9071, + ["sanctify_damage_+%"]=9072, + ["sap_on_critical_strike_with_lightning_skills"]=9073, + ["scion_helmet_skill_maximum_totems_+"]=466, + ["scorch_effect_+%"]=9074, + ["scorch_enemies_in_close_range_on_block"]=9075, + ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9076, + ["scourge_arrow_damage_+%"]=9077, + ["searing_bond_damage_+%"]=3254, + ["searing_bond_totem_placement_speed_+%"]=3549, + ["searing_totem_elemental_resistance_+%"]=3688, + ["secondary_maximum_base_chaos_damage"]=1259, + ["secondary_maximum_base_cold_damage"]=1257, + ["secondary_maximum_base_fire_damage"]=1256, + ["secondary_maximum_base_lightning_damage"]=1258, + ["secondary_maximum_base_physical_damage"]=1255, + ["secondary_minimum_base_chaos_damage"]=1259, + ["secondary_minimum_base_cold_damage"]=1257, + ["secondary_minimum_base_fire_damage"]=1256, + ["secondary_minimum_base_lightning_damage"]=1258, + ["secondary_minimum_base_physical_damage"]=1255, + ["secondary_skill_effect_duration_+%"]=9078, + ["seismic_cry_exerted_attack_damage_+%"]=9079, + ["seismic_cry_minimum_power"]=9080, + ["self_bleed_duration_+%"]=9081, + ["self_chaos_damage_taken_per_minute_per_endurance_charge"]=9082, + ["self_chaos_damage_taken_per_minute_while_affected_by_flask"]=9083, + ["self_chill_duration_-%"]=1571, + ["self_cold_damage_on_reaching_maximum_power_charges"]=9084, + ["self_critical_strike_multiplier_+%_while_ignited"]=9085, + ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1359, + ["self_curse_duration_+%"]=1857, + ["self_curse_duration_+%_per_10_devotion"]=9086, + ["self_cursed_with_level_x_vulnerability"]=2752, + ["self_elemental_status_duration_-%"]=1570, + ["self_elemental_status_duration_-%_per_10_devotion"]=9087, + ["self_freeze_duration_-%"]=1572, + ["self_ignite_duration_-%"]=1573, + ["self_offering_effect_+%"]=1089, + ["self_physical_damage_on_movement_skill_use"]=9088, + ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9089, ["self_poison_duration_+%"]=1020, - ["self_take_no_extra_damage_from_critical_strikes"]=3904, - ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=8827, - ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=8828, - ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=8829, - ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=8830, - ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=8831, - ["sentinel_minion_cooldown_speed_+%"]=8832, - ["sentinel_of_purity_damage_+%"]=8833, - ["serpent_strike_maximum_snakes"]=8834, - ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2683, - ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2688, - ["share_charges_with_allies_in_your_presence"]=8835, - ["shatter_has_%_chance_to_cover_in_frost"]=8836, - ["shatter_on_kill_if_fully_broken_armour"]=8837, - ["shatter_on_kill_vs_bleeding_enemies"]=8838, - ["shatter_on_kill_vs_poisoned_enemies"]=8839, - ["shattering_steel_%_chance_to_not_consume_ammo"]=8843, - ["shattering_steel_damage_+%"]=8840, - ["shattering_steel_fortify_on_hit_close_range"]=8841, - ["shattering_steel_number_of_additional_projectiles"]=8842, - ["shield_attack_speed_+%"]=1296, - ["shield_block_%"]=1077, - ["shield_charge_attack_speed_+%"]=3490, - ["shield_charge_damage_+%"]=3297, - ["shield_charge_damage_per_target_hit_+%"]=3716, - ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=8844, - ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=8845, - ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=8845, - ["shield_crush_attack_speed_+%"]=8846, - ["shield_crush_damage_+%"]=8847, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=8848, - ["shield_defences_+%"]=8849, - ["shield_defences_+%_per_10_devotion"]=8850, - ["shield_evasion_rating_+%"]=1703, - ["shield_maximum_energy_shield_+%"]=1686, - ["shield_physical_damage_reduction_rating_+%"]=1704, - ["shield_spell_block_%"]=1078, - ["shock_and_freeze_apply_elemental_damage_taken_+%"]=8851, - ["shock_attackers_for_4_seconds_on_block_%_chance"]=8852, + ["self_take_no_extra_damage_from_critical_strikes"]=3845, + ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9090, + ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9091, + ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9092, + ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9093, + ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9094, + ["sentinel_minion_cooldown_speed_+%"]=9095, + ["sentinel_of_purity_damage_+%"]=9096, + ["serpent_strike_maximum_snakes"]=9097, + ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2638, + ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2643, + ["share_charges_with_allies_in_your_presence"]=9098, + ["shatter_has_%_chance_to_cover_in_frost"]=9099, + ["shatter_on_kill_if_fully_broken_armour"]=9100, + ["shatter_on_kill_vs_bleeding_enemies"]=9101, + ["shatter_on_kill_vs_poisoned_enemies"]=9102, + ["shattering_steel_%_chance_to_not_consume_ammo"]=9106, + ["shattering_steel_damage_+%"]=9103, + ["shattering_steel_fortify_on_hit_close_range"]=9104, + ["shattering_steel_number_of_additional_projectiles"]=9105, + ["shield_attack_speed_+%"]=1284, + ["shield_block_%"]=1076, + ["shield_charge_attack_speed_+%"]=3436, + ["shield_charge_damage_+%"]=3243, + ["shield_charge_damage_per_target_hit_+%"]=3658, + ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9107, + ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9108, + ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9108, + ["shield_crush_attack_speed_+%"]=9109, + ["shield_crush_damage_+%"]=9110, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=9111, + ["shield_defences_+%"]=9112, + ["shield_defences_+%_per_10_devotion"]=9114, + ["shield_defences_+%_per_25_tribute"]=9113, + ["shield_evasion_rating_+%"]=1680, + ["shield_maximum_energy_shield_+%"]=1665, + ["shield_physical_damage_reduction_rating_+%"]=1681, + ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9115, + ["shock_attackers_for_4_seconds_on_block_%_chance"]=9116, ["shock_chance_+%"]=1012, - ["shock_chance_+%_vs_electrocuted_enemies"]=8853, - ["shock_duration_+%"]=1578, - ["shock_effect_+%"]=8855, - ["shock_effect_+%_with_critical_strikes"]=8856, - ["shock_effect_against_cursed_enemies_+%"]=8854, - ["shock_enemies_in_150cm_radius_on_shock_chance_%"]=8857, - ["shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy"]=2519, - ["shock_magnitude_calculated_from_damage"]=8858, - ["shock_maximum_magnitude_+"]=8860, - ["shock_maximum_magnitude_is_60%"]=8859, - ["shock_minimum_damage_taken_increase_%"]=4068, - ["shock_nearby_enemies_for_x_ms_when_you_focus"]=8862, - ["shock_nova_damage_+%"]=3323, - ["shock_nova_radius_+%"]=3466, - ["shock_nova_ring_chance_to_shock_+%"]=8863, - ["shock_nova_ring_damage_+%"]=3620, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=8864, - ["shock_prevention_ms_when_shocked"]=2596, - ["shock_self_for_x_ms_when_you_focus"]=8861, - ["shocked_chilled_effect_on_self_+%"]=8865, - ["shocked_effect_on_self_+%"]=8866, - ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=8867, - ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3246, - ["shocked_ground_base_magnitude_override"]=8868, - ["shocked_ground_on_death_%"]=8869, - ["shocked_ground_when_hit_%"]=2295, - ["shocks_reflected_to_self"]=2478, - ["shockwave_slam_attack_speed_+%"]=3496, - ["shockwave_slam_damage_+%"]=3379, - ["shockwave_slam_explosion_damage_+%_final"]=3210, - ["shockwave_slam_radius_+%"]=3479, - ["shockwave_totem_cast_speed_+%"]=3630, - ["shockwave_totem_damage_+%"]=3324, - ["shockwave_totem_radius_+%"]=3481, - ["should_use_alternate_fortify"]=1991, - ["shrapnel_ballista_num_additional_arrows"]=8870, - ["shrapnel_ballista_num_pierce"]=8871, - ["shrapnel_ballista_projectile_speed_+%"]=8872, - ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=8873, - ["shrapnel_shot_damage_+%"]=3364, - ["shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage"]=3655, - ["shrapnel_shot_radius_+%"]=3468, - ["shrapnel_trap_area_of_effect_+%"]=8875, - ["shrapnel_trap_damage_+%"]=8876, - ["shrapnel_trap_number_of_additional_secondary_explosions"]=8877, - ["shrine_buff_effect_on_self_+%"]=2517, - ["shrine_effect_duration_+%"]=2518, - ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=3933, - ["siege_ballista_attack_speed_+%"]=3495, - ["siege_ballista_damage_+%"]=3377, - ["siege_ballista_totem_placement_speed_+%"]=3632, - ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=8878, - ["sigil_attached_target_damage_+%"]=8879, - ["sigil_attached_target_damage_taken_+%"]=8880, - ["sigil_critical_strike_chance_+%"]=8881, - ["sigil_critical_strike_multiplier_+"]=8882, - ["sigil_damage_+%"]=8883, - ["sigil_damage_+%_per_10_devotion"]=8884, - ["sigil_duration_+%"]=8885, - ["sigil_recall_cooldown_speed_+%"]=8886, - ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=8887, - ["sigil_repeat_frequency_+%"]=8888, - ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=8889, - ["sigil_target_search_range_+%"]=8890, - ["silver_flask_display_onslaught"]=3240, - ["silver_footprints_from_item"]=9658, - ["siphon_duration_+%"]=3554, - ["skeletal_chains_area_of_effect_+%"]=8891, - ["skeletal_chains_cast_speed_+%"]=8892, - ["skeletal_chains_damage_+%"]=3373, - ["skeleton_attack_speed_+%"]=8893, - ["skeleton_cast_speed_+%"]=8894, - ["skeleton_duration_+%"]=1502, - ["skeleton_minion_reservation_+%"]=8895, - ["skeleton_movement_speed_+%"]=8896, - ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=8898, - ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=8897, - ["skeletons_are_permanent_minions"]=8899, - ["skeletons_damage_+%"]=3298, - ["skill_area_of_effect_+%_if_enemy_killed_recently"]=3843, - ["skill_area_of_effect_+%_in_sand_stance"]=9073, - ["skill_area_of_effect_+%_per_active_mine"]=3115, - ["skill_area_of_effect_+%_per_power_charge"]=1836, - ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=1837, - ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1759, - ["skill_area_of_effect_when_unarmed_+%"]=2735, - ["skill_can_see_monster_categories"]=8900, - ["skill_cooldown_-%"]=1612, - ["skill_cost_base_life_equal_to_base_mana"]=8901, - ["skill_detonation_time_+%"]=8902, - ["skill_effect_duration_+%"]=1610, - ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3845, - ["skill_effect_duration_+%_per_10_strength"]=1725, - ["skill_effect_duration_+%_while_affected_by_malevolence"]=8903, - ["skill_effect_duration_+%_with_bow_skills"]=8904, - ["skill_effect_duration_+%_with_non_curse_aura_skills"]=8905, - ["skill_effect_duration_per_100_int"]=2766, - ["skill_internal_monster_responsiveness_+%"]=1641, - ["skill_life_cost_+"]=1605, - ["skill_life_cost_+_with_channelling_skills"]=8906, - ["skill_life_cost_+_with_non_channelling_skills"]=8907, - ["skill_mana_cost_+"]=1606, - ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=3971, - ["skill_mana_cost_+_while_affected_by_clarity"]=8908, - ["skill_mana_cost_+_with_channelling_skills"]=8909, - ["skill_mana_cost_+_with_non_channelling_skills"]=8911, - ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=8913, - ["skill_range_+%"]=1642, - ["skill_repeat_count"]=1608, - ["skill_requires_X_ultimate_charge"]=32, - ["skill_speed_+%"]=854, - ["skill_speed_+%_against_bloodlusting_enemies"]=8914, - ["skill_speed_+%_per_socketed_green_support_gem"]=8915, - ["skill_visual_scale_+%"]=19, - ["skills_cost_no_mana_while_focused"]=8916, - ["skills_deal_you_x%_of_mana_cost_as_physical_damage"]=8917, - ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo"]=8918, - ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=8919, - ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=8920, - ["skills_supported_by_nightblade_have_elusive_effect_+%"]=8921, - ["skitterbots_mana_reservation_efficiency_+%"]=8923, - ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=8922, - ["slam_aftershock_chance_%"]=8924, - ["slam_ancestor_totem_damage_+%"]=3767, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3435, - ["slam_ancestor_totem_radius_+%"]=3770, - ["slam_skill_area_of_effect_+%"]=8925, - ["slams_always_ancestral_slam"]=8926, - ["slash_ancestor_totem_damage_+%"]=3768, - ["slash_ancestor_totem_elemental_resistance_%"]=2492, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3434, - ["slash_ancestor_totem_radius_+%"]=3769, - ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=8927, - ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1107, - ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=8928, - ["slayer_damage_+%_final_against_unique_enemies"]=8929, - ["slayer_damage_+%_final_from_distance"]=8930, - ["slither_elusive_effect_+%"]=8931, - ["slither_wither_stacks"]=8932, - ["slows_have_no_potency_on_you"]=8933, - ["small_passives_effect_+%"]=8934, - ["smite_aura_effect_+%"]=8935, - ["smite_chance_for_lighting_to_strike_extra_target_%"]=8936, - ["smite_damage_+%"]=8937, - ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=8938, - ["smoke_cloud_while_stationary_radius"]=8939, - ["smoke_mine_base_movement_velocity_+%"]=3736, - ["smoke_mine_duration_+%"]=3535, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=8941, - ["snapping_adder_damage_+%"]=8940, - ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=8942, - ["snipe_attack_speed_+%"]=8943, - ["solaris_spear_number_of_pulses"]=8944, - ["solaris_spear_pulse_delay_ms"]=8944, - ["sorcery_ward_+%_strength"]=8945, - ["soul_eater_maximum_stacks"]=8946, - ["soul_eater_on_rare_kill_ms"]=3081, - ["soul_link_duration_+%"]=8947, - ["soulfeast_number_of_secondary_projectiles"]=8948, - ["soulrend_applies_hinder_movement_speed_+%"]=8949, - ["soulrend_damage_+%"]=8950, - ["soulrend_number_of_additional_projectiles"]=8951, - ["spark_damage_+%"]=3284, - ["spark_num_of_additional_projectiles"]=3578, - ["spark_number_of_additional_projectiles"]=8952, - ["spark_projectile_speed_+%"]=3524, - ["spark_projectiles_nova"]=8953, - ["spark_skill_effect_duration_+%"]=8954, - ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=8955, - ["spawn_defender_with_totem"]=8956, - ["spear_accuracy_rating"]=1722, - ["spear_accuracy_rating_+%"]=1312, - ["spear_attack_speed_+%"]=1295, - ["spear_critical_strike_chance_+%"]=1337, - ["spear_critical_strike_multiplier_+"]=1360, - ["spear_damage_+%"]=1236, - ["spear_throws_consume_frenzy_charge_to_fire_additional_projectiles"]=8957, - ["spectral_helix_damage_+%"]=8958, - ["spectral_helix_projectile_speed_+%"]=8959, - ["spectral_helix_rotations_%"]=8960, - ["spectral_shield_throw_additional_chains"]=8961, - ["spectral_shield_throw_damage_+%"]=8962, - ["spectral_shield_throw_num_of_additional_projectiles"]=8963, - ["spectral_shield_throw_projectile_speed_+%"]=8964, - ["spectral_shield_throw_secondary_projectiles_pierce"]=8965, - ["spectral_shield_throw_shard_projectiles_+%_final"]=8966, - ["spectral_spiral_weapon_base_number_of_bounces"]=8967, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=8968, - ["spectral_throw_damage_+%"]=3285, - ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2900, - ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=8969, - ["spectral_throw_projectile_deceleration_+%"]=3595, - ["spectral_throw_projectile_speed_+%"]=3525, - ["spectre_attack_and_cast_speed_+%"]=3500, - ["spectre_damage_+%"]=3108, - ["spectre_elemental_resistances_%"]=3612, - ["spectre_maximum_life_+"]=8970, - ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=8972, - ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=8973, - ["spectres_critical_strike_chance_+%"]=8974, - ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=8975, - ["spectres_have_base_duration_ms"]=8976, - ["spell_additional_critical_strike_chance_permyriad"]=8977, - ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=8978, - ["spell_and_attack_maximum_added_cold_damage"]=1248, - ["spell_and_attack_maximum_added_fire_damage"]=1247, - ["spell_and_attack_maximum_added_lightning_damage"]=1278, - ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=8978, - ["spell_and_attack_minimum_added_cold_damage"]=1248, - ["spell_and_attack_minimum_added_fire_damage"]=1247, - ["spell_and_attack_minimum_added_lightning_damage"]=1278, - ["spell_area_damage_+%"]=8979, - ["spell_area_of_effect_+%"]=8980, - ["spell_block_%_if_blocked_a_spell_recently"]=8982, - ["spell_block_%_if_blocked_an_attack_recently"]=8983, - ["spell_block_%_while_at_max_power_charges"]=8984, - ["spell_block_%_while_on_low_life"]=1082, - ["spell_block_chance_%_while_holding_staff_or_shield"]=8981, - ["spell_block_equals_attack_block"]=1091, - ["spell_block_while_dual_wielding_%"]=1081, - ["spell_block_with_bow_%"]=1084, - ["spell_block_with_staff_%"]=1085, - ["spell_bow_damage_+%"]=1151, - ["spell_chance_to_deal_double_damage_%"]=8985, - ["spell_chance_to_shock_frozen_enemies_%"]=2617, - ["spell_cold_damage_+%"]=1149, - ["spell_critical_strike_chance_+%"]=957, - ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=8986, - ["spell_critical_strike_chance_+%_per_100_max_life"]=8988, - ["spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills"]=8987, - ["spell_critical_strike_chance_+%_per_raised_spectre"]=8989, - ["spell_critical_strike_chance_+%_while_dual_wielding"]=5390, - ["spell_critical_strike_chance_+%_while_holding_shield"]=5391, - ["spell_critical_strike_chance_+%_while_wielding_staff"]=5392, - ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5416, - ["spell_critical_strike_multiplier_+_while_holding_shield"]=5417, - ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5418, - ["spell_damage_%_suppressed_if_taken_a_savage_hit_recently"]=8990, - ["spell_damage_%_suppressed_per_hit_suppressed_recently"]=8991, - ["spell_damage_%_suppressed_while_on_full_energy_shield"]=1083, - ["spell_damage_+%"]=879, - ["spell_damage_+%_during_flask_effect"]=8996, - ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=8992, - ["spell_damage_+%_for_4_seconds_on_cast"]=3177, - ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=8997, - ["spell_damage_+%_if_have_crit_recently"]=8993, - ["spell_damage_+%_if_other_ring_is_elder_item"]=3966, - ["spell_damage_+%_if_you_have_blocked_recently"]=8998, - ["spell_damage_+%_per_100_max_life"]=9000, - ["spell_damage_+%_per_100_max_life_with_non_channelling_skills"]=8999, - ["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=9001, - ["spell_damage_+%_per_10_int"]=2443, - ["spell_damage_+%_per_10_spirit"]=9002, - ["spell_damage_+%_per_10_strength"]=9003, - ["spell_damage_+%_per_16_dex"]=9004, - ["spell_damage_+%_per_16_int"]=9005, - ["spell_damage_+%_per_16_strength"]=9006, - ["spell_damage_+%_per_200_mana_spent_recently"]=3977, - ["spell_damage_+%_per_5%_block_chance"]=2442, - ["spell_damage_+%_per_5%_spell_block_chance"]=9007, - ["spell_damage_+%_per_500_maximum_mana"]=8994, - ["spell_damage_+%_per_level"]=2652, - ["spell_damage_+%_per_power_charge"]=1847, - ["spell_damage_+%_while_dual_wielding"]=1153, - ["spell_damage_+%_while_es_full"]=2758, - ["spell_damage_+%_while_holding_shield"]=1152, - ["spell_damage_+%_while_no_mana_reserved"]=2760, - ["spell_damage_+%_while_not_low_mana"]=2761, - ["spell_damage_+%_while_shocked"]=9008, - ["spell_damage_+%_while_wielding_melee_weapon"]=8995, - ["spell_damage_+%_while_you_have_arcane_surge"]=9009, - ["spell_damage_modifiers_apply_to_attack_damage"]=2393, - ["spell_damage_modifiers_apply_to_skill_dot"]=2399, - ["spell_damage_taken_+%_from_blinded_enemies"]=2892, - ["spell_damage_taken_+%_when_on_low_mana"]=2190, - ["spell_elemental_damage_+%"]=1770, - ["spell_fire_damage_+%"]=1148, - ["spell_hits_against_you_inflict_poison_%"]=9010, - ["spell_impale_magnitude_+%"]=9011, - ["spell_impale_on_crit_%_chance"]=9012, - ["spell_maximum_added_chaos_damage"]=1276, - ["spell_maximum_added_chaos_damage_while_dual_wielding"]=1813, - ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1814, - ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=1815, - ["spell_maximum_added_cold_damage"]=1274, - ["spell_maximum_added_cold_damage_per_power_charge"]=1545, - ["spell_maximum_added_cold_damage_while_dual_wielding"]=1816, - ["spell_maximum_added_cold_damage_while_holding_a_shield"]=1817, - ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=1818, - ["spell_maximum_added_fire_damage"]=1273, - ["spell_maximum_added_fire_damage_while_dual_wielding"]=1819, - ["spell_maximum_added_fire_damage_while_holding_a_shield"]=1820, - ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=1821, - ["spell_maximum_added_lightning_damage"]=1275, - ["spell_maximum_added_lightning_damage_while_dual_wielding"]=1822, - ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=1823, - ["spell_maximum_added_lightning_damage_while_unarmed"]=2160, - ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=1824, - ["spell_maximum_added_physical_damage"]=1272, - ["spell_maximum_added_physical_damage_while_dual_wielding"]=1825, - ["spell_maximum_added_physical_damage_while_holding_a_shield"]=1826, - ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=1827, - ["spell_maximum_base_chaos_damage"]=1266, - ["spell_maximum_base_cold_damage"]=1264, - ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1277, - ["spell_maximum_base_cold_damage_as_%_of_intelligence"]=9013, - ["spell_maximum_base_fire_damage"]=1263, - ["spell_maximum_base_fire_damage_as_%_of_intelligence"]=9014, - ["spell_maximum_base_lightning_damage"]=1265, - ["spell_maximum_base_lightning_damage_as_%_of_intelligence"]=9015, - ["spell_maximum_base_physical_damage"]=1262, - ["spell_minimum_added_chaos_damage"]=1276, - ["spell_minimum_added_chaos_damage_while_dual_wielding"]=1813, - ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=1814, - ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=1815, - ["spell_minimum_added_cold_damage"]=1274, - ["spell_minimum_added_cold_damage_per_power_charge"]=1545, - ["spell_minimum_added_cold_damage_while_dual_wielding"]=1816, - ["spell_minimum_added_cold_damage_while_holding_a_shield"]=1817, - ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=1818, - ["spell_minimum_added_fire_damage"]=1273, - ["spell_minimum_added_fire_damage_while_dual_wielding"]=1819, - ["spell_minimum_added_fire_damage_while_holding_a_shield"]=1820, - ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=1821, - ["spell_minimum_added_lightning_damage"]=1275, - ["spell_minimum_added_lightning_damage_while_dual_wielding"]=1822, - ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=1823, - ["spell_minimum_added_lightning_damage_while_unarmed"]=2160, - ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=1824, - ["spell_minimum_added_physical_damage"]=1272, - ["spell_minimum_added_physical_damage_while_dual_wielding"]=1825, - ["spell_minimum_added_physical_damage_while_holding_a_shield"]=1826, - ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=1827, - ["spell_minimum_base_chaos_damage"]=1266, - ["spell_minimum_base_cold_damage"]=1264, - ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1277, - ["spell_minimum_base_cold_damage_as_%_of_intelligence"]=9013, - ["spell_minimum_base_fire_damage"]=1263, - ["spell_minimum_base_fire_damage_as_%_of_intelligence"]=9014, - ["spell_minimum_base_lightning_damage"]=1265, - ["spell_minimum_base_lightning_damage_as_%_of_intelligence"]=9015, - ["spell_minimum_base_physical_damage"]=1262, - ["spell_physical_damage_+%"]=886, - ["spell_projectile_skills_fire_X_additional_projectiles_in_a_circle"]=9016, - ["spell_repeat_count"]=1609, - ["spell_skill_gem_level_+"]=946, - ["spell_skill_projectile_speed_+%"]=9017, - ["spell_skills_always_crit_on_final_repeat"]=9018, - ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=9019, - ["spell_skills_deal_no_damage"]=9020, - ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=9021, - ["spell_skills_never_crit_except_on_final_repeat"]=9022, - ["spell_staff_damage_+%"]=1150, - ["spell_suppression_chance_%_if_all_equipment_grants_evasion"]=9023, - ["spell_suppression_chance_%_if_enemy_hit_recently"]=9024, - ["spell_suppression_chance_%_if_suppressed_spell_recently"]=9038, - ["spell_suppression_chance_%_if_taken_spell_damage_recently"]=2905, - ["spell_suppression_chance_%_per_endurance_charge"]=9025, - ["spell_suppression_chance_%_per_equipped_dagger"]=9026, - ["spell_suppression_chance_%_per_fortification"]=1992, - ["spell_suppression_chance_%_per_frenzy_charge"]=2264, - ["spell_suppression_chance_%_per_hit_suppressed_recently"]=9027, - ["spell_suppression_chance_%_per_power_charge"]=9028, - ["spell_suppression_chance_%_while_affected_by_grace"]=9029, - ["spell_suppression_chance_%_while_affected_by_haste"]=9030, - ["spell_suppression_chance_%_while_channelling"]=9031, - ["spell_suppression_chance_%_while_holding_shield"]=9032, - ["spell_suppression_chance_%_while_moving"]=9033, - ["spell_suppression_chance_%_while_off_hand_empty"]=9034, - ["spell_suppression_chance_%_while_on_full_energy_shield"]=9039, - ["spell_suppression_chance_%_while_on_full_life"]=9040, - ["spell_suppression_chance_%_while_phasing"]=9035, - ["spell_suppression_chance_is_lucky"]=9036, - ["spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value"]=9037, - ["spells_chance_to_hinder_on_hit_%"]=9041, - ["spells_chance_to_knockback_on_hit_%"]=9042, - ["spells_chance_to_poison_on_hit_%"]=9043, - ["spells_cost_life_instead_of_mana_%"]=9044, - ["spells_have_culling_strike"]=2250, - ["spells_have_x%_chance_inflict_withered_on_hit"]=9045, - ["spells_impale_on_hit_%_chance"]=9046, - ["spells_number_of_additional_projectiles"]=3947, - ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=9048, - ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=9047, - ["spellslinger_cooldown_duration_+%"]=9049, - ["spellslinger_mana_reservation_+%"]=9052, - ["spellslinger_mana_reservation_efficiency_+%"]=9051, - ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=9050, - ["spend_energy_shield_for_costs_before_mana"]=2789, - ["spending_energy_shield_does_not_interrupt_recharge"]=9053, - ["spider_aspect_debuff_duration_+%"]=9054, - ["spider_aspect_skill_area_of_effect_+%"]=9055, - ["spider_aspect_web_interval_ms_override"]=9056, - ["spike_slam_num_spikes"]=9057, - ["spirit_+%"]=1389, - ["spirit_+%_per_stackable_unique_jewel"]=9061, - ["spirit_does_not_exist"]=9058, - ["spirit_offering_critical_strike_chance_+%"]=9059, - ["spirit_offering_critical_strike_multiplier_+"]=9060, - ["spirit_offering_duration_+%"]=3534, - ["spirit_offering_effect_+%"]=1106, - ["spirit_offering_physical_damage_%_to_gain_as_chaos"]=3810, - ["split_arrow_critical_strike_chance_+%"]=3569, - ["split_arrow_damage_+%"]=3286, - ["split_arrow_num_of_additional_projectiles"]=3579, - ["split_arrow_number_of_additional_arrows"]=2836, - ["split_arrow_projectiles_fire_in_parallel_x_dist"]=9062, - ["splitting_steel_area_of_effect_+%"]=9064, - ["splitting_steel_damage_+%"]=9065, - ["spread_ignite_from_killed_enemies_range"]=9066, - ["stacking_damage_+%_on_kill_for_4_seconds"]=3250, - ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=2974, - ["staff_accuracy_rating"]=1719, - ["staff_block_%"]=1086, - ["staff_elemental_damage_+%"]=1829, - ["staff_stun_duration_+%"]=1586, - ["stance_skill_cooldown_speed_+%"]=9070, - ["stance_skill_reservation_+%"]=9072, - ["stance_skills_mana_reservation_efficiency_+%"]=9071, - ["stance_swap_cooldown_modifier_ms"]=9074, - ["start_at_zero_energy_shield"]=9076, - ["start_energy_shield_recharge_when_you_use_a_mana_flask"]=9077, - ["static_strike_additional_number_of_beam_targets"]=9078, - ["static_strike_damage_+%"]=3309, - ["static_strike_duration_+%"]=3561, - ["static_strike_radius_+%"]=3449, - ["status_ailments_removed_at_low_life"]=2984, - ["status_ailments_you_inflict_duration_+%_while_focused"]=9079, - ["status_ailments_you_inflict_duration_+%_with_bows"]=9080, - ["stealth_+%"]=9081, - ["stealth_+%_if_have_hit_with_claw_recently"]=9082, - ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4445, - ["steel_steal_area_of_effect_+%"]=9083, - ["steel_steal_cast_speed_+%"]=9084, - ["steel_steal_reflect_damage_+%"]=9085, - ["steelskin_damage_limit_+%"]=9086, - ["stibnite_flask_evasion_rating_+%_final"]=9087, - ["stone_golem_damage_+%"]=3332, - ["stone_golem_elemental_resistances_%"]=3614, - ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=9088, - ["storm_armageddon_sigils_can_target_reaper_minions"]=9089, - ["storm_blade_has_local_attack_speed_+%"]=9090, - ["storm_blade_has_local_lightning_penetration_%"]=9091, - ["storm_blade_quality_chance_to_shock_%"]=9092, - ["storm_blade_quality_local_critical_strike_chance_+%"]=9093, - ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=9094, - ["storm_brand_additional_chain_chance_%"]=9095, - ["storm_brand_attached_target_lightning_penetration_%"]=9096, - ["storm_brand_damage_+%"]=9097, - ["storm_burst_15_%_chance_to_create_additional_orb"]=9098, - ["storm_burst_additional_object_chance_%"]=9099, - ["storm_burst_area_of_effect_+%"]=9100, - ["storm_burst_avoid_interruption_while_casting_%"]=9101, - ["storm_burst_damage_+%"]=3374, - ["storm_burst_number_of_additional_projectiles"]=9102, - ["storm_call_damage_+%"]=3310, - ["storm_call_duration_+%"]=3562, - ["storm_call_radius_+%"]=3450, - ["storm_cloud_charge_count"]=3096, - ["storm_cloud_charged_damage_+%_final"]=3097, - ["storm_cloud_critical_strike_chance_+%"]=3574, - ["storm_cloud_radius_+%"]=3477, - ["storm_rain_damage_+%"]=9103, - ["storm_rain_num_additional_arrows"]=9104, - ["stormbind_skill_area_of_effect_+%"]=9105, - ["stormbind_skill_damage_+%"]=9106, - ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=9107, - ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=9108, - ["stormweaver_chill_effect_+%_final"]=9109, - ["stormweaver_shock_effect_+%_final"]=9110, - ["strength_+%"]=1112, - ["strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills"]=9111, - ["strength_inherently_grants_accuracy_instead_of_life"]=1726, - ["strength_skill_gem_level_+"]=9112, - ["strike_skills_knockback_on_melee_hit"]=9113, - ["stun_duration_+%"]=1713, - ["stun_duration_+%_per_15_strength"]=9115, - ["stun_duration_+%_per_endurance_charge"]=9116, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=2995, - ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=2996, - ["stun_duration_on_critical_strike_+%"]=9114, - ["stun_duration_on_self_+%"]=3800, - ["stun_nearby_enemies_when_stunned_chance_%"]=9117, - ["stun_recovery_+%_per_frenzy_charge"]=1615, + ["shock_chance_+%_vs_electrocuted_enemies"]=9117, + ["shock_duration_+%"]=1561, + ["shock_effect_+%"]=9119, + ["shock_effect_+%_if_consumed_frenzy_charge_recently"]=9120, + ["shock_effect_+%_with_critical_strikes"]=9121, + ["shock_effect_against_cursed_enemies_+%"]=9118, + ["shock_enemies_in_150cm_radius_on_shock_chance_%"]=9122, + ["shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy"]=2483, + ["shock_magnitude_calculated_from_damage"]=9123, + ["shock_maximum_magnitude_+"]=9125, + ["shock_maximum_magnitude_is_60%"]=9124, + ["shock_minimum_damage_taken_increase_%"]=4007, + ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9127, + ["shock_nova_damage_+%"]=3269, + ["shock_nova_radius_+%"]=3412, + ["shock_nova_ring_chance_to_shock_+%"]=9128, + ["shock_nova_ring_damage_+%"]=3563, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9129, + ["shock_prevention_ms_when_shocked"]=2559, + ["shock_self_for_x_ms_when_you_focus"]=9126, + ["shocked_chilled_effect_on_self_+%"]=9130, + ["shocked_effect_on_self_+%"]=9131, + ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9132, + ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3192, + ["shocked_ground_base_magnitude_override"]=9133, + ["shocked_ground_on_death_%"]=9134, + ["shocked_ground_when_hit_%"]=2263, + ["shocks_reflected_to_self"]=2443, + ["shockwave_slam_attack_speed_+%"]=3442, + ["shockwave_slam_damage_+%"]=3325, + ["shockwave_slam_explosion_damage_+%_final"]=3157, + ["shockwave_slam_radius_+%"]=3425, + ["shockwave_totem_cast_speed_+%"]=3573, + ["shockwave_totem_damage_+%"]=3270, + ["shockwave_totem_radius_+%"]=3427, + ["should_use_alternate_fortify"]=1960, + ["shrapnel_ballista_num_additional_arrows"]=9135, + ["shrapnel_ballista_num_pierce"]=9136, + ["shrapnel_ballista_projectile_speed_+%"]=9137, + ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9138, + ["shrapnel_shot_damage_+%"]=3310, + ["shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage"]=3598, + ["shrapnel_shot_radius_+%"]=3414, + ["shrapnel_trap_area_of_effect_+%"]=9140, + ["shrapnel_trap_damage_+%"]=9141, + ["shrapnel_trap_number_of_additional_secondary_explosions"]=9142, + ["shrine_buff_effect_on_self_+%"]=2481, + ["shrine_effect_duration_+%"]=2482, + ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=3874, + ["siege_ballista_attack_speed_+%"]=3441, + ["siege_ballista_damage_+%"]=3323, + ["siege_ballista_totem_placement_speed_+%"]=3575, + ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9143, + ["sigil_attached_target_damage_+%"]=9144, + ["sigil_attached_target_damage_taken_+%"]=9145, + ["sigil_critical_strike_chance_+%"]=9146, + ["sigil_critical_strike_multiplier_+"]=9147, + ["sigil_damage_+%"]=9148, + ["sigil_damage_+%_per_10_devotion"]=9149, + ["sigil_duration_+%"]=9150, + ["sigil_recall_cooldown_speed_+%"]=9151, + ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9152, + ["sigil_repeat_frequency_+%"]=9153, + ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9154, + ["sigil_target_search_range_+%"]=9155, + ["silver_flask_display_onslaught"]=3186, + ["silver_footprints_from_item"]=9938, + ["siphon_duration_+%"]=3500, + ["skeletal_chains_area_of_effect_+%"]=9156, + ["skeletal_chains_cast_speed_+%"]=9157, + ["skeletal_chains_damage_+%"]=3319, + ["skeleton_attack_speed_+%"]=9158, + ["skeleton_cast_speed_+%"]=9159, + ["skeleton_duration_+%"]=1485, + ["skeleton_minion_reservation_+%"]=9161, + ["skeleton_movement_speed_+%"]=9162, + ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9164, + ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9163, + ["skeletons_are_permanent_minions"]=9165, + ["skeletons_damage_+%"]=3244, + ["skill_additional_fissure_chance_%"]=9166, + ["skill_area_of_effect_+%_if_enemy_killed_recently"]=3785, + ["skill_area_of_effect_+%_in_sand_stance"]=9333, + ["skill_area_of_effect_+%_per_active_mine"]=3063, + ["skill_area_of_effect_+%_per_power_charge"]=1813, + ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=1814, + ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1736, + ["skill_area_of_effect_when_unarmed_+%"]=2690, + ["skill_can_see_monster_categories"]=9167, + ["skill_cooldown_-%"]=1595, + ["skill_cost_base_life_equal_to_base_mana"]=9168, + ["skill_cost_efficiency_+%_if_consumed_power_charge_recently"]=9169, + ["skill_detonation_time_+%"]=9170, + ["skill_effect_duration_+%"]=1593, + ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3787, + ["skill_effect_duration_+%_per_10_strength"]=1702, + ["skill_effect_duration_+%_while_affected_by_malevolence"]=9171, + ["skill_effect_duration_+%_with_bow_skills"]=9172, + ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9173, + ["skill_effect_duration_per_100_int"]=2721, + ["skill_internal_monster_responsiveness_+%"]=1620, + ["skill_life_cost_+"]=1588, + ["skill_life_cost_+_with_channelling_skills"]=9174, + ["skill_life_cost_+_with_non_channelling_skills"]=9175, + ["skill_mana_cost_+"]=1589, + ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=3912, + ["skill_mana_cost_+_while_affected_by_clarity"]=9176, + ["skill_mana_cost_+_with_channelling_skills"]=9177, + ["skill_mana_cost_+_with_non_channelling_skills"]=9179, + ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9181, + ["skill_mana_costs_converted_to_life_costs_%_during_life_flask"]=9182, + ["skill_range_+%"]=1621, + ["skill_repeat_count"]=1591, + ["skill_speed_+%"]=850, + ["skill_speed_+%_against_bloodlusting_enemies"]=9183, + ["skill_speed_+%_if_consumed_frenzy_charge_recently"]=9184, + ["skill_speed_+%_per_socketed_green_support_gem"]=9185, + ["skill_visual_scale_+%"]=21, + ["skills_cost_no_mana_while_focused"]=9186, + ["skills_deal_you_x%_of_mana_cost_as_physical_damage"]=9187, + ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo"]=9188, + ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9189, + ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9190, + ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9191, + ["skitterbots_mana_reservation_efficiency_+%"]=9193, + ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9192, + ["slam_aftershock_chance_%"]=9194, + ["slam_ancestor_totem_damage_+%"]=3709, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3381, + ["slam_ancestor_totem_radius_+%"]=3712, + ["slam_skill_area_of_effect_+%"]=9195, + ["slams_always_ancestral_slam"]=9196, + ["slash_ancestor_totem_damage_+%"]=3710, + ["slash_ancestor_totem_elemental_resistance_%"]=2457, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3380, + ["slash_ancestor_totem_radius_+%"]=3711, + ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9197, + ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1094, + ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9198, + ["slayer_damage_+%_final_against_unique_enemies"]=9199, + ["slayer_damage_+%_final_from_distance"]=9200, + ["slither_elusive_effect_+%"]=9201, + ["slither_wither_stacks"]=9202, + ["slow_potency_+%_if_you_have_used_a_charm_recently"]=9203, + ["slows_have_no_potency_on_you"]=9204, + ["small_passives_effect_+%"]=9205, + ["smite_aura_effect_+%"]=9206, + ["smite_chance_for_lighting_to_strike_extra_target_%"]=9207, + ["smite_damage_+%"]=9208, + ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9209, + ["smoke_cloud_while_stationary_radius"]=9210, + ["smoke_mine_base_movement_velocity_+%"]=3678, + ["smoke_mine_duration_+%"]=3481, + ["snap_damage_+%_final_if_created_from_unique"]=9211, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9213, + ["snapping_adder_damage_+%"]=9212, + ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9214, + ["snipe_attack_speed_+%"]=9215, + ["snipe_damage_+%_final_if_created_from_unique"]=9216, + ["solaris_spear_number_of_pulses"]=9217, + ["solaris_spear_pulse_delay_ms"]=9217, + ["sorcery_ward_+%_strength"]=9218, + ["soul_eater_maximum_stacks"]=9219, + ["soul_eater_on_rare_kill_ms"]=3029, + ["soul_link_duration_+%"]=9220, + ["soulfeast_number_of_secondary_projectiles"]=9221, + ["soulrend_applies_hinder_movement_speed_+%"]=9222, + ["soulrend_damage_+%"]=9223, + ["soulrend_number_of_additional_projectiles"]=9224, + ["spark_damage_+%"]=3230, + ["spark_num_of_additional_projectiles"]=3524, + ["spark_number_of_additional_projectiles"]=9225, + ["spark_projectile_speed_+%"]=3470, + ["spark_projectiles_nova"]=9226, + ["spark_skill_effect_duration_+%"]=9227, + ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9228, + ["spawn_defender_with_totem"]=9229, + ["spear_accuracy_rating"]=1699, + ["spear_accuracy_rating_+%"]=1300, + ["spear_attack_speed_+%"]=1283, + ["spear_critical_strike_chance_+%"]=1325, + ["spear_critical_strike_multiplier_+"]=1348, + ["spear_damage_+%"]=1224, + ["spear_throws_consume_frenzy_charge_to_fire_additional_projectiles"]=9230, + ["spectral_helix_damage_+%"]=9231, + ["spectral_helix_projectile_speed_+%"]=9232, + ["spectral_helix_rotations_%"]=9233, + ["spectral_shield_throw_additional_chains"]=9234, + ["spectral_shield_throw_damage_+%"]=9235, + ["spectral_shield_throw_num_of_additional_projectiles"]=9236, + ["spectral_shield_throw_projectile_speed_+%"]=9237, + ["spectral_shield_throw_secondary_projectiles_pierce"]=9238, + ["spectral_shield_throw_shard_projectiles_+%_final"]=9239, + ["spectral_spiral_weapon_base_number_of_bounces"]=9240, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=9241, + ["spectral_throw_damage_+%"]=3231, + ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2855, + ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=9242, + ["spectral_throw_projectile_deceleration_+%"]=3539, + ["spectral_throw_projectile_speed_+%"]=3471, + ["spectre_attack_and_cast_speed_+%"]=3446, + ["spectre_damage_+%"]=3056, + ["spectre_elemental_resistances_%"]=3555, + ["spectre_maximum_life_+"]=9243, + ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=9245, + ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=9246, + ["spectres_critical_strike_chance_+%"]=9247, + ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=9248, + ["spectres_have_base_duration_ms"]=9249, + ["spell_additional_critical_strike_chance_permyriad"]=9250, + ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=9251, + ["spell_and_attack_maximum_added_cold_damage"]=1236, + ["spell_and_attack_maximum_added_fire_damage"]=1235, + ["spell_and_attack_maximum_added_lightning_damage"]=1266, + ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=9251, + ["spell_and_attack_minimum_added_cold_damage"]=1236, + ["spell_and_attack_minimum_added_fire_damage"]=1235, + ["spell_and_attack_minimum_added_lightning_damage"]=1266, + ["spell_area_damage_+%"]=9252, + ["spell_area_of_effect_+%"]=9253, + ["spell_bow_damage_+%"]=1139, + ["spell_chance_to_deal_double_damage_%"]=9254, + ["spell_chance_to_shock_frozen_enemies_%"]=2577, + ["spell_cold_damage_+%"]=1137, + ["spell_critical_strike_chance_+%"]=955, + ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=9255, + ["spell_critical_strike_chance_+%_per_100_max_life"]=9257, + ["spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills"]=9256, + ["spell_critical_strike_chance_+%_per_raised_spectre"]=9258, + ["spell_critical_strike_chance_+%_while_dual_wielding"]=5431, + ["spell_critical_strike_chance_+%_while_holding_shield"]=5432, + ["spell_critical_strike_chance_+%_while_wielding_staff"]=5433, + ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5457, + ["spell_critical_strike_multiplier_+_while_holding_shield"]=5458, + ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5459, + ["spell_damage_+%"]=874, + ["spell_damage_+%_during_flask_effect"]=9266, + ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=9259, + ["spell_damage_+%_for_4_seconds_on_cast"]=3124, + ["spell_damage_+%_if_have_consumed_infusion_recently"]=9260, + ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=9267, + ["spell_damage_+%_if_have_crit_recently"]=9261, + ["spell_damage_+%_if_minion_died_recently"]=9262, + ["spell_damage_+%_if_other_ring_is_elder_item"]=3907, + ["spell_damage_+%_if_you_have_blocked_recently"]=9268, + ["spell_damage_+%_per_100_max_life"]=9269, + ["spell_damage_+%_per_100_max_life_with_non_channelling_skills"]=9270, + ["spell_damage_+%_per_100_maximum_mana"]=9271, + ["spell_damage_+%_per_10_int"]=2409, + ["spell_damage_+%_per_10_spirit"]=9272, + ["spell_damage_+%_per_10_strength"]=9273, + ["spell_damage_+%_per_16_dex"]=9274, + ["spell_damage_+%_per_16_int"]=9275, + ["spell_damage_+%_per_16_strength"]=9276, + ["spell_damage_+%_per_200_mana_spent_recently"]=3918, + ["spell_damage_+%_per_5%_block_chance"]=2408, + ["spell_damage_+%_per_500_maximum_mana"]=9263, + ["spell_damage_+%_per_level"]=2611, + ["spell_damage_+%_per_power_charge"]=1824, + ["spell_damage_+%_while_dual_wielding"]=1141, + ["spell_damage_+%_while_es_full"]=2713, + ["spell_damage_+%_while_holding_shield"]=1140, + ["spell_damage_+%_while_no_mana_reserved"]=2715, + ["spell_damage_+%_while_not_low_mana"]=2716, + ["spell_damage_+%_while_shocked"]=9277, + ["spell_damage_+%_while_wielding_melee_weapon"]=9264, + ["spell_damage_+%_while_you_have_arcane_surge"]=9278, + ["spell_damage_+%_with_spells_that_cost_life"]=9265, + ["spell_damage_modifiers_apply_to_attack_damage"]=2361, + ["spell_damage_modifiers_apply_to_skill_dot"]=2367, + ["spell_damage_taken_+%_from_blinded_enemies"]=2847, + ["spell_damage_taken_+%_when_on_low_mana"]=2159, + ["spell_elemental_damage_+%"]=1747, + ["spell_fire_damage_+%"]=1136, + ["spell_hits_against_you_inflict_poison_%"]=9279, + ["spell_impale_magnitude_+%"]=9280, + ["spell_impale_on_crit_%_chance"]=9281, + ["spell_maximum_added_chaos_damage"]=1264, + ["spell_maximum_added_chaos_damage_while_dual_wielding"]=1790, + ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1791, + ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=1792, + ["spell_maximum_added_cold_damage"]=1262, + ["spell_maximum_added_cold_damage_per_power_charge"]=1528, + ["spell_maximum_added_cold_damage_while_dual_wielding"]=1793, + ["spell_maximum_added_cold_damage_while_holding_a_shield"]=1794, + ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=1795, + ["spell_maximum_added_fire_damage"]=1261, + ["spell_maximum_added_fire_damage_while_dual_wielding"]=1796, + ["spell_maximum_added_fire_damage_while_holding_a_shield"]=1797, + ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=1798, + ["spell_maximum_added_lightning_damage"]=1263, + ["spell_maximum_added_lightning_damage_while_dual_wielding"]=1799, + ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=1800, + ["spell_maximum_added_lightning_damage_while_unarmed"]=2129, + ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=1801, + ["spell_maximum_added_physical_damage"]=1260, + ["spell_maximum_added_physical_damage_while_dual_wielding"]=1802, + ["spell_maximum_added_physical_damage_while_holding_a_shield"]=1803, + ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=1804, + ["spell_maximum_base_chaos_damage"]=1254, + ["spell_maximum_base_cold_damage"]=1252, + ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1265, + ["spell_maximum_base_cold_damage_as_%_of_intelligence"]=9282, + ["spell_maximum_base_fire_damage"]=1251, + ["spell_maximum_base_fire_damage_as_%_of_intelligence"]=9283, + ["spell_maximum_base_lightning_damage"]=1253, + ["spell_maximum_base_lightning_damage_as_%_of_intelligence"]=9284, + ["spell_maximum_base_physical_damage"]=1250, + ["spell_minimum_added_chaos_damage"]=1264, + ["spell_minimum_added_chaos_damage_while_dual_wielding"]=1790, + ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=1791, + ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=1792, + ["spell_minimum_added_cold_damage"]=1262, + ["spell_minimum_added_cold_damage_per_power_charge"]=1528, + ["spell_minimum_added_cold_damage_while_dual_wielding"]=1793, + ["spell_minimum_added_cold_damage_while_holding_a_shield"]=1794, + ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=1795, + ["spell_minimum_added_fire_damage"]=1261, + ["spell_minimum_added_fire_damage_while_dual_wielding"]=1796, + ["spell_minimum_added_fire_damage_while_holding_a_shield"]=1797, + ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=1798, + ["spell_minimum_added_lightning_damage"]=1263, + ["spell_minimum_added_lightning_damage_while_dual_wielding"]=1799, + ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=1800, + ["spell_minimum_added_lightning_damage_while_unarmed"]=2129, + ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=1801, + ["spell_minimum_added_physical_damage"]=1260, + ["spell_minimum_added_physical_damage_while_dual_wielding"]=1802, + ["spell_minimum_added_physical_damage_while_holding_a_shield"]=1803, + ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=1804, + ["spell_minimum_base_chaos_damage"]=1254, + ["spell_minimum_base_cold_damage"]=1252, + ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1265, + ["spell_minimum_base_cold_damage_as_%_of_intelligence"]=9282, + ["spell_minimum_base_fire_damage"]=1251, + ["spell_minimum_base_fire_damage_as_%_of_intelligence"]=9283, + ["spell_minimum_base_lightning_damage"]=1253, + ["spell_minimum_base_lightning_damage_as_%_of_intelligence"]=9284, + ["spell_minimum_base_physical_damage"]=1250, + ["spell_physical_damage_+%"]=881, + ["spell_projectile_skills_fire_X_additional_projectiles_in_a_circle"]=9285, + ["spell_repeat_count"]=1592, + ["spell_skill_gem_level_+"]=943, + ["spell_skill_projectile_speed_+%"]=9286, + ["spell_skills_additional_totems_allowed"]=9287, + ["spell_skills_always_crit_on_final_repeat"]=9288, + ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=9289, + ["spell_skills_deal_no_damage"]=9290, + ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=9291, + ["spell_skills_never_crit_except_on_final_repeat"]=9292, + ["spell_staff_damage_+%"]=1138, + ["spellflux_duration_+%_per_different_socketed_spell"]=9294, + ["spellflux_duration_between_fluxes_ms"]=9293, + ["spellflux_spell_damage_+%_final_if_matching_flux_cast"]=9295, + ["spellflux_time_to_cast_empowered_spell_ms"]=9295, + ["spells_chance_to_hinder_on_hit_%"]=9296, + ["spells_chance_to_knockback_on_hit_%"]=9297, + ["spells_chance_to_poison_on_hit_%"]=9298, + ["spells_cost_life_instead_of_mana_%"]=9299, + ["spells_have_culling_strike"]=2219, + ["spells_have_x%_chance_inflict_withered_on_hit"]=9300, + ["spells_impale_on_hit_%_chance"]=9301, + ["spells_number_of_additional_projectiles"]=3888, + ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=9303, + ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=9302, + ["spellslinger_cooldown_duration_+%"]=9304, + ["spellslinger_mana_reservation_+%"]=9307, + ["spellslinger_mana_reservation_efficiency_+%"]=9306, + ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=9305, + ["spend_energy_shield_for_costs_before_mana"]=2744, + ["spending_energy_shield_does_not_interrupt_recharge"]=9308, + ["spider_aspect_debuff_duration_+%"]=9309, + ["spider_aspect_skill_area_of_effect_+%"]=9310, + ["spider_aspect_web_interval_ms_override"]=9311, + ["spike_slam_num_spikes"]=9312, + ["spirit_+%"]=1376, + ["spirit_+%_if_you_have_at_least_100_tribute"]=9313, + ["spirit_+%_per_stackable_unique_jewel"]=9320, + ["spirit_+_if_at_least_200_dexterity"]=9314, + ["spirit_+_if_at_least_200_intelligence"]=9315, + ["spirit_+_if_at_least_200_strength"]=9316, + ["spirit_does_not_exist"]=9317, + ["spirit_offering_critical_strike_chance_+%"]=9318, + ["spirit_offering_critical_strike_multiplier_+"]=9319, + ["spirit_offering_duration_+%"]=3480, + ["spirit_offering_effect_+%"]=1093, + ["spirit_offering_physical_damage_%_to_gain_as_chaos"]=3752, + ["split_arrow_critical_strike_chance_+%"]=3515, + ["split_arrow_damage_+%"]=3232, + ["split_arrow_num_of_additional_projectiles"]=3525, + ["split_arrow_number_of_additional_arrows"]=2791, + ["split_arrow_projectiles_fire_in_parallel_x_dist"]=9321, + ["splitting_steel_area_of_effect_+%"]=9323, + ["splitting_steel_damage_+%"]=9324, + ["spread_ignite_from_killed_enemies_range"]=9325, + ["sprint_movement_speed_+%"]=9326, + ["stacking_damage_+%_on_kill_for_4_seconds"]=3196, + ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=2925, + ["staff_accuracy_rating"]=1696, + ["staff_block_%"]=1077, + ["staff_elemental_damage_+%"]=1806, + ["staff_stun_duration_+%"]=1569, + ["stance_skill_cooldown_speed_+%"]=9330, + ["stance_skill_reservation_+%"]=9332, + ["stance_skills_mana_reservation_efficiency_+%"]=9331, + ["stance_swap_cooldown_modifier_ms"]=9334, + ["start_at_zero_energy_shield"]=9336, + ["start_energy_shield_recharge_when_you_use_a_mana_flask"]=9337, + ["static_strike_additional_number_of_beam_targets"]=9338, + ["static_strike_damage_+%"]=3255, + ["static_strike_duration_+%"]=3507, + ["static_strike_radius_+%"]=3395, + ["status_ailments_removed_at_low_life"]=2935, + ["status_ailments_you_inflict_duration_+%_while_focused"]=9339, + ["status_ailments_you_inflict_duration_+%_with_bows"]=9340, + ["stealth_+%"]=9341, + ["stealth_+%_if_have_hit_with_claw_recently"]=9342, + ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4439, + ["steel_steal_area_of_effect_+%"]=9343, + ["steel_steal_cast_speed_+%"]=9344, + ["steel_steal_reflect_damage_+%"]=9345, + ["steelskin_damage_limit_+%"]=9346, + ["stibnite_flask_evasion_rating_+%_final"]=9347, + ["stone_golem_damage_+%"]=3278, + ["stone_golem_elemental_resistances_%"]=3557, + ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=9348, + ["storm_armageddon_sigils_can_target_reaper_minions"]=9349, + ["storm_barrier_effect_+%"]=9350, + ["storm_blade_has_local_attack_speed_+%"]=9351, + ["storm_blade_has_local_lightning_penetration_%"]=9352, + ["storm_blade_quality_chance_to_shock_%"]=9353, + ["storm_blade_quality_local_critical_strike_chance_+%"]=9354, + ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=9355, + ["storm_brand_additional_chain_chance_%"]=9356, + ["storm_brand_attached_target_lightning_penetration_%"]=9357, + ["storm_brand_damage_+%"]=9358, + ["storm_burst_15_%_chance_to_create_additional_orb"]=9359, + ["storm_burst_additional_object_chance_%"]=9360, + ["storm_burst_area_of_effect_+%"]=9361, + ["storm_burst_avoid_interruption_while_casting_%"]=9362, + ["storm_burst_damage_+%"]=3320, + ["storm_burst_number_of_additional_projectiles"]=9363, + ["storm_call_damage_+%"]=3256, + ["storm_call_duration_+%"]=3508, + ["storm_call_radius_+%"]=3396, + ["storm_cloud_charge_count"]=3044, + ["storm_cloud_charged_damage_+%_final"]=3045, + ["storm_cloud_critical_strike_chance_+%"]=3520, + ["storm_cloud_radius_+%"]=3423, + ["storm_rain_damage_+%"]=9364, + ["storm_rain_num_additional_arrows"]=9365, + ["stormbind_skill_area_of_effect_+%"]=9366, + ["stormbind_skill_damage_+%"]=9367, + ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=9368, + ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=9369, + ["stormweaver_chill_effect_+%_final"]=9370, + ["stormweaver_shock_effect_+%_final"]=9371, + ["strength_+%"]=1100, + ["strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills"]=9372, + ["strength_inherently_grants_accuracy_instead_of_life"]=1703, + ["strength_skill_gem_level_+"]=9373, + ["strike_skills_knockback_on_melee_hit"]=9374, + ["stun_and_ailment_threshold_+%_while_surrounded"]=9375, + ["stun_duration_+%"]=1690, + ["stun_duration_+%_per_15_strength"]=9377, + ["stun_duration_+%_per_endurance_charge"]=9378, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=2946, + ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=2947, + ["stun_duration_on_critical_strike_+%"]=9376, + ["stun_duration_on_self_+%"]=3742, + ["stun_nearby_enemies_when_stunned_chance_%"]=9379, + ["stun_recovery_+%_per_frenzy_charge"]=1598, ["stun_threshold_+"]=1014, - ["stun_threshold_+%"]=2938, - ["stun_threshold_+%_during_empowered_attacks"]=9118, - ["stun_threshold_+%_per_number_of_times_stunned_recently"]=9119, - ["stun_threshold_+%_per_rage"]=9570, - ["stun_threshold_+%_when_not_stunned_recently"]=9125, - ["stun_threshold_+%_when_on_full_life"]=9126, - ["stun_threshold_+_from_%_maximum_energy_shield"]=9123, - ["stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour"]=9120, - ["stun_threshold_+_per_strength"]=9121, - ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=9122, - ["stun_threshold_based_on_%_mana_instead_of_life"]=2937, - ["stun_threshold_based_on_energy_shield_instead_of_life"]=3894, - ["stun_threshold_reduction_+%_while_using_flask"]=2618, - ["stun_threshold_reduction_+%_with_500_or_more_strength"]=9127, - ["stuns_have_culling_strike"]=1744, - ["summon_2_totems"]=9128, - ["summon_arbalist_attack_speed_+%"]=9129, - ["summon_arbalist_chains_+"]=9130, - ["summon_arbalist_chance_to_bleed_%"]=9131, - ["summon_arbalist_chance_to_crush_on_hit_%"]=9132, - ["summon_arbalist_chance_to_deal_double_damage_%"]=9133, - ["summon_arbalist_chance_to_freeze_%"]=9149, - ["summon_arbalist_chance_to_ignite_%"]=9150, - ["summon_arbalist_chance_to_ignite_freeze_shock_%"]=9134, - ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=9152, - ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=9153, - ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=9154, - ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=9135, - ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=9136, - ["summon_arbalist_chance_to_poison_%"]=9137, - ["summon_arbalist_chance_to_shock_%"]=9151, - ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=9138, - ["summon_arbalist_number_of_additional_projectiles"]=9139, - ["summon_arbalist_number_of_splits"]=9140, - ["summon_arbalist_projectiles_fork"]=9147, - ["summon_arbalist_targets_to_pierce"]=9148, - ["summon_raging_spirit_melee_splash_fire_damage_only"]=9155, - ["summon_reaper_cooldown_speed_+%"]=9156, - ["summon_skeleton_gem_level_+"]=1443, - ["summon_skeletons_additional_warrior_skeleton_%_chance"]=9158, - ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=9157, - ["summon_skeletons_cooldown_modifier_ms"]=9159, - ["summon_skeletons_num_additional_warrior_skeletons"]=3629, - ["summon_skitterbots_area_of_effect_+%"]=9160, - ["summon_skitterbots_mana_reservation_+%"]=9161, - ["summon_totem_cast_speed_+%"]=2296, - ["summoned_arbalist_physical_damage_%_to_convert_to_cold"]=9141, - ["summoned_arbalist_physical_damage_%_to_convert_to_fire"]=9142, - ["summoned_arbalist_physical_damage_%_to_convert_to_lightning"]=9143, - ["summoned_arbalist_physical_damage_%_to_gain_as_cold"]=9144, - ["summoned_arbalist_physical_damage_%_to_gain_as_fire"]=9145, - ["summoned_arbalist_physical_damage_%_to_gain_as_lightning"]=9146, - ["summoned_phantasms_grant_buff"]=9162, - ["summoned_phantasms_have_no_duration"]=9163, - ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3069, - ["summoned_raging_spirit_duration_+%"]=3068, - ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=9164, - ["summoned_reaper_damage_+%"]=9165, - ["summoned_reaper_physical_dot_multiplier_+"]=9166, - ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=9167, - ["summoned_skeleton_%_physical_to_chaos"]=9168, - ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4043, - ["summoned_skeletons_cover_in_ash_on_hit_%"]=9169, - ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=9170, - ["summoned_skeletons_have_avatar_of_fire"]=9633, - ["summoned_skeletons_hits_cant_be_evaded"]=9171, - ["summoned_skitterbots_cooldown_recovery_+%"]=9172, - ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=9173, - ["sunder_wave_delay_+%"]=3480, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=9174, - ["support_anticipation_charge_gain_frequency_+%"]=9175, - ["support_buffed_heralds_buff_effect_+%_final"]=9176, - ["support_deadly_heralds_buff_effect_+%_final"]=9177, - ["support_deadly_heralds_damage_+%_final"]=9178, - ["support_exposure_effect_+%"]=5967, - ["support_fast_forward_detonation_time_+%_final"]=9179, - ["support_gem_elemental_damage_+%_final"]=3236, - ["support_gem_limit_+"]=9180, - ["support_gems_socketed_in_amulet_also_support_body_skills"]=198, - ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=199, - ["support_hourglass_damage_+%_final"]=9181, - ["support_jagged_ground_chance_%"]=9182, - ["support_last_gasp_duration_ms"]=9183, - ["support_maimed_enemies_physical_damage_taken_+%"]=9184, - ["support_minion_maximum_life_+%_final"]=1488, - ["support_mirage_archer_base_duration"]=9186, - ["support_slashing_damage_+%_final_from_distance"]=9187, - ["support_slower_projectiles_damage_+%_final"]=2546, - ["supported_active_skill_gem_expereince_gained_+%"]=2590, - ["supported_active_skill_gem_level_+"]=2463, - ["supported_active_skill_gem_quality_%"]=2523, - ["supported_aura_skill_gem_level_+"]=9188, - ["supported_cold_skill_gem_level_+"]=9189, - ["supported_elemental_skill_gem_level_+"]=9190, - ["supported_fire_skill_gem_level_+"]=9191, - ["supported_lightning_skill_gem_level_+"]=9192, - ["suppressed_spell_damage_cannot_inflict_elemental_ailments"]=9193, - ["sweep_add_endurance_charge_on_hit_%"]=3451, - ["sweep_damage_+%"]=3311, - ["sweep_knockback_chance_%"]=3606, - ["sweep_radius_+%"]=3452, - ["sword_accuracy_rating"]=1714, - ["sword_accuracy_rating_+%"]=1310, - ["sword_attack_speed_+%"]=1293, - ["sword_critical_strike_chance_+%"]=1332, - ["sword_critical_strike_multiplier_+"]=1356, - ["sword_damage_+%"]=1228, - ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=9194, - ["synthesis_map_global_mod_values_doubled_on_this_node"]=9195, - ["synthesis_map_global_mod_values_tripled_on_this_node"]=9196, - ["synthesis_map_memories_do_not_collapse_on_this_node"]=9197, - ["synthesis_map_monster_slain_experience_+%_on_this_node"]=9198, - ["synthesis_map_nearby_memories_have_bonus"]=9199, - ["synthesis_map_node_additional_uses_+"]=9200, - ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=9201, - ["synthesis_map_node_grants_additional_global_mod"]=9202, - ["synthesis_map_node_grants_no_global_mod"]=9203, - ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=9204, - ["synthesis_map_node_item_quantity_increases_doubled"]=9205, - ["synthesis_map_node_item_rarity_increases_doubled"]=9206, - ["synthesis_map_node_level_+"]=9207, - ["synthesis_map_node_monsters_drop_no_items"]=9208, - ["synthesis_map_node_pack_size_increases_doubled"]=9209, - ["tactician_spirit_reservation_+%_final_for_permanent_buffs"]=9210, - ["tailwind_effect_on_self_+%"]=9211, - ["tailwind_effect_on_self_+%_per_gale_force"]=9212, - ["tailwind_if_have_crit_recently"]=9213, - ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=9214, - ["take_chaos_damage_from_ignite_instead"]=2174, - ["take_half_area_damage_from_hit_%_chance"]=9215, - ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=9216, - ["take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack"]=9217, - ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=9218, - ["taunt_duration_+%"]=1505, - ["taunt_on_projectile_hit_chance_%"]=9219, - ["taunted_enemies_by_warcry_damage_taken_+%"]=9220, - ["taunted_enemies_chance_to_be_stunned_+%"]=2884, - ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3877, - ["taunted_enemies_damage_taken_+%"]=2885, - ["tectonic_slam_%_chance_to_do_charged_slam"]=9226, - ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=9221, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=9222, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=9223, - ["tectonic_slam_area_of_effect_+%"]=9224, - ["tectonic_slam_damage_+%"]=9225, - ["tectonic_slam_side_crack_additional_chance_%"]=9228, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=9227, - ["tempest_shield_buff_effect_+%"]=9229, - ["tempest_shield_damage_+%"]=3356, - ["tempest_shield_num_of_additional_projectiles_in_chain"]=3656, - ["temporal_chains_curse_effect_+%"]=3636, - ["temporal_chains_duration_+%"]=3540, - ["temporal_chains_effect_on_self_+%"]=1459, - ["temporal_chains_gem_level_+"]=1983, - ["temporal_chains_ignores_hexproof"]=2323, - ["temporal_chains_mana_reservation_+%"]=3677, - ["temporal_chains_no_reservation"]=9230, - ["temporal_rift_cooldown_speed_+%"]=9231, - ["thaumaturgy_rotation_active"]=9232, - ["thorns_critical_strike_chance_+%"]=9233, - ["thorns_damage_+%"]=9235, - ["thorns_damage_+%_if_blocked_recently"]=9236, - ["thorns_damage_has_%_chance_to_ignore_armour"]=9234, - ["thorns_maximum_base_chaos_damage"]=9237, - ["thorns_maximum_base_cold_damage"]=9238, - ["thorns_maximum_base_fire_damage"]=9239, - ["thorns_maximum_base_lightning_damage"]=9240, - ["thorns_maximum_base_physical_damage"]=9241, - ["thorns_minimum_base_chaos_damage"]=9237, - ["thorns_minimum_base_cold_damage"]=9238, - ["thorns_minimum_base_fire_damage"]=9239, - ["thorns_minimum_base_lightning_damage"]=9240, - ["thorns_minimum_base_physical_damage"]=9241, - ["thorns_proc_off_any_hit"]=9242, - ["threshold_jewel_magma_orb_damage_+%_final"]=9243, - ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=9244, - ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=9245, - ["thrown_shield_secondary_projectile_damage_+%_final"]=9246, - ["titan_additional_inventory"]=9247, - ["titan_damage_+%_final_against_heavy_stunned_enemies"]=9248, - ["titan_expanded_main_inventory"]=9249, - ["titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies"]=9250, - ["titan_maximum_life_+%_final"]=9251, - ["tornado_damage_+%"]=9253, - ["tornado_damage_frequency_+%"]=9252, - ["tornado_movement_speed_+%"]=9254, - ["tornado_only_primary_duration_+%"]=9255, - ["tornado_shot_critical_strike_chance_+%"]=3573, - ["tornado_shot_damage_+%"]=3316, - ["tornado_shot_num_of_secondary_projectiles"]=3581, - ["tornado_skill_area_of_effect_+%"]=9256, - ["total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence"]=923, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3421, - ["totem_additional_physical_damage_reduction_%"]=2493, - ["totem_aura_enemy_damage_+%_final"]=3423, - ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3424, - ["totem_chaos_immunity"]=9258, - ["totem_chaos_resistance_%"]=9259, - ["totem_critical_strike_chance_+%"]=1350, - ["totem_critical_strike_multiplier_+"]=1373, - ["totem_damage_+%"]=1121, - ["totem_damage_+%_final_per_active_totem"]=3385, - ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=9260, - ["totem_damage_+%_per_10_devotion"]=9261, - ["totem_duration_+%"]=1501, - ["totem_elemental_resistance_%"]=2491, - ["totem_energy_shield_+%"]=1499, - ["totem_fire_immunity"]=1439, - ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=9262, - ["totem_life_+%"]=1497, - ["totem_mana_+%"]=1498, - ["totem_maximum_energy_shield"]=9263, - ["totem_number_of_additional_projectiles"]=2759, - ["totem_only_uses_skill_when_owner_attacks"]=9264, - ["totem_placement_range_+%"]=9265, - ["totem_range_+%"]=1500, - ["totem_skill_area_of_effect_+%"]=2299, - ["totem_skill_attack_speed_+%"]=2298, - ["totem_skill_cast_speed_+%"]=2297, - ["totem_skill_gem_level_+"]=9266, - ["totem_spells_damage_+%"]=9267, - ["totemified_skills_taunt_on_hit_%"]=3085, - ["totems_action_speed_cannot_be_modified_below_base"]=9257, - ["totems_attack_speed_+%_per_active_totem"]=3819, - ["totems_cannot_be_stunned"]=2742, - ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=2975, - ["totems_explode_on_death_for_%_life_as_physical"]=9268, - ["totems_nearby_enemies_damage_taken_+%"]=9269, - ["totems_regenerate_%_life_per_minute"]=9270, - ["totems_resist_all_elements_+%_per_active_totem"]=3802, - ["totems_spells_cast_speed_+%_per_active_totem"]=3806, - ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=9271, - ["tower_add_breach_to_X_maps"]=9272, - ["tower_add_delirium_to_X_maps"]=9273, - ["tower_add_expedition_to_X_maps"]=9274, - ["tower_add_irradiated_to_X_maps"]=9275, - ["tower_add_map_bosses_to_X_maps"]=9276, - ["tower_add_ritual_to_X_maps"]=9277, - ["toxic_rain_damage_+%"]=9278, - ["toxic_rain_num_of_additional_projectiles"]=9279, - ["toxic_rain_physical_damage_%_to_gain_as_chaos"]=9280, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2625, - ["trap_%_chance_to_trigger_twice"]=3429, - ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=9281, - ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2488, - ["trap_and_mine_maximum_added_physical_damage"]=3428, - ["trap_and_mine_minimum_added_physical_damage"]=3428, - ["trap_and_mine_throwing_speed_+%"]=9282, - ["trap_critical_strike_chance_+%"]=958, - ["trap_critical_strike_multiplier_+"]=962, - ["trap_damage_+%"]=880, - ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3426, - ["trap_damage_buildup_damage_+%_final_when_first_set"]=3425, - ["trap_damage_penetrates_%_elemental_resistance"]=2486, - ["trap_duration_+%"]=1634, - ["trap_or_mine_damage_+%"]=1122, - ["trap_skill_added_cooldown_count"]=9283, - ["trap_skill_area_of_effect_+%"]=3127, - ["trap_skill_gem_level_+"]=954, - ["trap_spread_+%"]=9284, - ["trap_throw_skills_have_blood_magic"]=9644, - ["trap_throwing_speed_+%"]=1639, - ["trap_throwing_speed_+%_per_frenzy_charge"]=9285, - ["trap_trigger_radius_+%"]=1637, - ["traps_and_mines_%_chance_to_poison"]=3717, - ["traps_cannot_be_triggered_by_enemies"]=9286, - ["traps_do_not_explode_on_timeout"]=2483, - ["traps_explode_on_timeout"]=2484, - ["traps_invulnerable"]=9287, - ["traps_invulnerable_for_duration_ms"]=2489, - ["travel_skill_cooldown_speed_+%"]=4013, - ["travel_skills_cannot_be_exerted"]=9288, - ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4023, - ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=9289, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=9290, - ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=9291, - ["trickster_damage_+%_final_per_different_mastery"]=1461, - ["trickster_damage_over_time_+%_final"]=9292, - ["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=3175, - ["trigger_elemental_storm_on_crit"]=9293, - ["trigger_skills_refund_half_energy_spent_chance_%"]=9294, - ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=632, - ["trigger_socketed_spell_on_attack_%"]=633, - ["trigger_socketed_spell_on_skill_use_%"]=635, - ["trigger_socketed_spells_when_you_focus_%"]=636, - ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=138, - ["trigger_wild_strike_on_attack_crit"]=9295, - ["triggerbots_damage_+%_final_with_triggered_spells"]=9296, - ["triggered_spell_spell_damage_+%"]=9297, - ["triggers_burning_runes_on_placing_ground_rune"]=9298, - ["triggers_soulbreaker_on_breaking_enemy_energy_shield"]=9299, - ["trinity_damage_+%_final_to_grant_per_50_resonance"]=9300, - ["trinity_loss_per_hit"]=9301, - ["trinity_resonance_to_grant"]=9301, - ["two_handed_melee_accuracy_rating_+%"]=1303, - ["two_handed_melee_area_damage_+%"]=9302, - ["two_handed_melee_area_of_effect_+%"]=9303, - ["two_handed_melee_attack_speed_+%"]=1285, - ["two_handed_melee_cold_damage_+%"]=1200, - ["two_handed_melee_critical_strike_chance_+%"]=1340, - ["two_handed_melee_critical_strike_multiplier_+"]=1341, - ["two_handed_melee_fire_damage_+%"]=1199, - ["two_handed_melee_physical_damage_+%"]=1197, - ["two_handed_melee_stun_duration_+%"]=1584, - ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=9304, - ["uber_domain_monster_all_resistances_+%_per_revival"]=9305, - ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=9306, - ["uber_domain_monster_avoid_stun_%_per_revival"]=9307, - ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=9308, - ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=9309, - ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=9310, - ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=9311, - ["uber_domain_monster_maximum_life_+%_per_revival"]=9312, - ["uber_domain_monster_movement_speed_+%_per_revival"]=9313, - ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=9314, - ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=9315, - ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=9316, - ["uber_domain_monster_reward_chance_+%"]=9317, - ["ultimatum_wager_type_hash"]=43, - ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=9318, - ["unaffected_by_bleeding_while_affected_by_malevolence"]=9319, - ["unaffected_by_bleeding_while_leeching"]=9320, - ["unaffected_by_blind"]=9321, - ["unaffected_by_burning_ground"]=9322, - ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=9323, - ["unaffected_by_chill"]=9324, - ["unaffected_by_chill_during_dodge_roll"]=9325, - ["unaffected_by_chill_while_channelling"]=9326, - ["unaffected_by_chill_while_mana_leeching"]=9327, - ["unaffected_by_chilled_ground"]=9328, - ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=9329, - ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=9330, - ["unaffected_by_corrupted_blood_while_leeching"]=9331, - ["unaffected_by_curses"]=2197, - ["unaffected_by_curses_while_affected_by_zealotry"]=9332, - ["unaffected_by_desecrated_ground"]=9333, - ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=9334, - ["unaffected_by_enfeeble_while_affected_by_grace"]=9335, - ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=9336, - ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=9337, - ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=9338, - ["unaffected_by_ignite"]=9339, - ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=9340, - ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=9341, - ["unaffected_by_poison_while_affected_by_malevolence"]=9342, - ["unaffected_by_shock"]=9343, - ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=9344, - ["unaffected_by_shock_while_channelling"]=9345, - ["unaffected_by_shocked_ground"]=9346, - ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=9347, - ["unaffected_by_temporal_chains"]=9348, - ["unaffected_by_temporal_chains_while_affected_by_haste"]=9349, - ["unaffected_by_vulnerability_while_affected_by_determination"]=9350, - ["unarmed_attack_skill_melee_dash_range_+%"]=9351, - ["unarmed_attack_speed_+%"]=9352, - ["unarmed_damage_+%_vs_bleeding_enemies"]=3212, - ["unarmed_melee_attack_speed_+%"]=1297, - ["unarmed_melee_physical_damage_+%"]=1201, - ["unattached_sigil_attachment_range_+%_per_second"]=9353, - ["unbound_ailment_elemental_ailment_buildup_+%_final"]=9354, - ["unbound_ailment_elemental_ailment_chance_+%_final"]=9355, - ["undead_minion_reservation_+%"]=9356, - ["unearth_additional_corpse_level"]=9357, - ["unholy_might_granted_magnitude_+%_per_100_maximum_mana"]=9358, - ["unholy_might_while_you_have_no_energy_shield"]=2441, - ["unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell"]=9359, - ["unique_add_power_charge_on_melee_knockback_%"]=2627, - ["unique_blood_barrier_applies_x_stacks_of_corrupted_blood_on_block"]=9360, - ["unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life"]=9360, - ["unique_blood_barrier_corrupted_blood_duration_ms"]=9360, - ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"]=9361, - ["unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield"]=9362, - ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4056, - ["unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life"]=3951, - ["unique_boots_secondary_ground_shock_while_moving"]=3952, - ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=9648, - ["unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence"]=4066, - ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2658, - ["unique_chill_duration_+%_when_in_off_hand"]=2472, - ["unique_chin_sol_close_range_bow_damage_+%_final"]=2164, - ["unique_chin_sol_close_range_knockback"]=2165, - ["unique_cold_damage_ignites"]=2558, - ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1453, - ["unique_cooldown_modifier_ms"]=9363, - ["unique_critical_strike_chance_+%_final"]=2528, - ["unique_crowd_controlled_enemy_damage_taken_-%_final"]=9364, - ["unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max"]=9365, - ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2185, - ["unique_double_presence_radius"]=9366, - ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2158, - ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1449, - ["unique_fire_damage_shocks"]=2557, - ["unique_gain_onslaught_when_hit_duration_ms"]=2530, - ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2545, - ["unique_gain_power_charge_on_non_crit"]=2599, - ["unique_gain_soul_eater"]=9367, - ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=9368, - ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=9369, - ["unique_ignite_chance_%_when_in_main_hand"]=2471, - ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=9370, - ["unique_jewel_flask_duration_+%_final"]=9371, - ["unique_jewel_grants_notable_hash_1"]=9372, - ["unique_jewel_grants_notable_hash_2"]=9373, - ["unique_jewel_grants_notable_hash_3"]=9374, - ["unique_jewel_grants_notable_hash_part_1"]=9375, - ["unique_jewel_grants_notable_hash_part_2"]=9376, - ["unique_jewel_reserved_blood_maximum_life_+%_final"]=9377, - ["unique_jewel_specific_skill_level_+_level"]=9378, - ["unique_jewel_specific_skill_level_+_skill"]=9378, - ["unique_lightning_damage_freezes"]=2559, - ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1456, - ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1260, - ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1246, - ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1240, - ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1260, - ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1246, - ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1240, - ["unique_loris_lantern_golden_light"]=2272, - ["unique_lose_a_power_charge_when_hit"]=9380, - ["unique_lose_all_endurance_charges_when_hit"]=2529, - ["unique_lose_all_power_charges_on_crit"]=2600, - ["unique_map_boss_class_of_rare_items_to_drop"]=2424, - ["unique_map_boss_number_of_rare_items_to_drop"]=2424, - ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2658, - ["unique_mine_damage_+%_final"]=1124, - ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2658, - ["unique_minions_in_presence_gain_and_lose_life_when_you_do"]=9381, - ["unique_monster_dropped_item_rarity_+%"]=9382, - ["unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds"]=9383, - ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2675, - ["unique_no_curse_delay"]=9384, - ["unique_primordial_tether_golem_damage_+%_final"]=3339, - ["unique_primordial_tether_golem_life_+%_final"]=3721, - ["unique_prism_guardian_spirit_+_per_X_maximum_life"]=9385, - ["unique_quill_rain_damage_+%_final"]=2177, - ["unique_recover_%_maximum_life_on_x_altenator"]=9386, - ["unique_redblade_banner_enemies_in_presence_monster_power_+%_final"]=9387, - ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=9388, - ["unique_revive_permanent_minions_on_mana_flask_use"]=9389, - ["unique_ryslathas_coil_maximum_physical_attack_damage_+%_final"]=1126, - ["unique_ryslathas_coil_minimum_physical_attack_damage_+%_final"]=1127, - ["unique_shield_window_of_paradise_apply_elemental_exposure_while_raised"]=9390, - ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=9391, - ["unique_spirit_reservations_are_halved"]=9392, - ["unique_sunblast_throw_traps_in_circle_radius"]=9393, - ["unique_volkuurs_clutch_poison_duration_+%_final"]=2845, - ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2616, - ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=9394, - ["unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below"]=9395, - ["unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below"]=9396, - ["unnerve_for_4_seconds_on_hit_with_wands"]=9397, - ["unnerve_nearby_enemies_on_use_for_ms"]=9398, - ["unveiled_mod_effect_+%"]=70, - ["utility_flask_charges_recovered_per_3_seconds"]=9399, - ["utility_flask_cold_damage_taken_+%_final"]=9400, - ["utility_flask_fire_damage_taken_+%_final"]=9401, - ["utility_flask_lightning_damage_taken_+%_final"]=9402, - ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2398, - ["vaal_skill_critical_strike_chance_+%"]=2783, - ["vaal_skill_critical_strike_multiplier_+"]=2784, - ["vaal_skill_damage_+%"]=2771, - ["vaal_skill_effect_duration_+%"]=2781, - ["vaal_skill_gem_level_+"]=9403, - ["vaal_skill_soul_cost_+%"]=9404, - ["vaal_skill_soul_gain_preventation_duration_+%"]=2782, - ["vaal_skill_soul_refund_chance_%"]=9405, - ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=9406, - ["vampiric_link_duration_+%"]=9407, - ["vengeance_cooldown_speed_+%"]=3517, - ["vengeance_damage_+%"]=3361, - ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=9408, - ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2916, - ["vigilant_strike_damage_+%"]=3349, - ["vigilant_strike_fortify_duration_+%"]=3537, - ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=9409, - ["viper_strike_critical_strike_chance_+%"]=3570, - ["viper_strike_damage_+%"]=3291, - ["viper_strike_dual_wield_damage_+%_final"]=9410, - ["viper_strike_poison_duration_+%"]=3559, - ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3048, - ["virtual_block_%_damage_taken"]=9411, - ["virtual_chance_to_gain_1_more_endurance_charge_%"]=9412, - ["virtual_chance_to_gain_1_more_frenzy_charge_%"]=9413, - ["virtual_chance_to_gain_1_more_power_charge_%"]=9414, - ["virtual_energy_shield_delay_-%"]=3222, - ["virtual_energy_shield_recharge_rate_+%"]=3224, - ["virtual_light_radius_+%"]=2219, - ["virtual_mana_gain_per_target"]=1473, - ["virtual_minion_damage_+%"]=1689, - ["virtual_number_of_ranged_animated_weapons_allowed"]=2936, - ["virulent_arrow_additional_spores_at_max_stages"]=9415, - ["virulent_arrow_chance_to_poison_%_per_stage"]=9416, - ["vitality_mana_reservation_+%"]=3669, - ["vitality_mana_reservation_efficiency_+%"]=9418, - ["vitality_mana_reservation_efficiency_-2%_per_1"]=9417, - ["vitality_reserves_no_mana"]=9419, - ["void_sphere_cooldown_speed_+%"]=9420, - ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=9421, - ["volatile_dead_base_number_of_corpses_to_consume"]=9422, - ["volatile_dead_cast_speed_+%"]=9423, - ["volatile_dead_consume_additional_corpse"]=9424, - ["volatile_dead_damage_+%"]=9425, - ["volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant"]=9426, - ["volatility_on_kill_%_chance"]=9427, - ["volatility_refresh_%_chance"]=9428, - ["volatility_when_stunned_%_chance"]=9429, - ["volcanic_fissure_damage_+%"]=9430, - ["volcanic_fissure_number_of_additional_projectiles"]=9431, - ["volcanic_fissure_speed_+%"]=9432, - ["voltaxic_burst_damage_+%"]=9433, - ["voltaxic_burst_damage_+%_per_100ms_duration"]=9434, - ["voltaxic_burst_skill_area_of_effect_+%"]=9435, - ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=9436, - ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=9437, - ["vulnerability_curse_effect_+%"]=3644, - ["vulnerability_duration_+%"]=3542, - ["vulnerability_gem_level_+"]=1984, - ["vulnerability_ignores_hexproof"]=2324, - ["vulnerability_mana_reservation_+%"]=3678, - ["vulnerability_no_reservation"]=9438, - ["wand_accuracy_rating"]=1721, - ["wand_accuracy_rating_+%"]=1311, - ["wand_attack_speed_+%"]=1294, - ["wand_attacks_fire_an_additional_projectile"]=9439, - ["wand_critical_strike_chance_+%"]=1335, - ["wand_critical_strike_multiplier_+"]=1357, - ["wand_damage_+%"]=2633, - ["wand_damage_+%_if_crit_recently"]=9440, - ["wand_damage_+%_per_power_charge"]=1848, - ["wand_elemental_damage_+%"]=1828, - ["war_banner_aura_effect_+%"]=9441, - ["war_banner_mana_reservation_efficiency_+%"]=9442, - ["warbringer_overbreak_armour"]=9443, - ["warcries_are_instant"]=3111, - ["warcries_bypass_cooldown"]=9444, - ["warcries_cost_no_mana"]=3759, - ["warcries_debilitate_enemies_for_1_second"]=9445, - ["warcries_have_minimum_10_power"]=9446, - ["warcries_knock_back_enemies"]=9447, - ["warcry_buff_effect_+%"]=9448, - ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=9449, - ["warcry_cooldown_modifier_ms"]=9450, - ["warcry_cooldown_speed_+%"]=2991, - ["warcry_damage_+%"]=9451, - ["warcry_damage_taken_goes_to_mana_%"]=2929, - ["warcry_duration_+%"]=2873, - ["warcry_empowers_next_x_melee_attacks"]=9452, - ["warcry_monster_power_+%"]=9453, - ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=9454, - ["warcry_skill_area_of_effect_+%"]=9455, - ["warcry_skills_cooldown_is_4_seconds"]=9456, - ["warcry_speed_+%"]=2944, - ["ward_+%"]=1385, - ["ward_delay_recovery_+%"]=1387, - ["warlords_mark_curse_effect_+%"]=3645, - ["warlords_mark_duration_+%"]=3541, - ["water_sphere_cold_lightning_exposure_%"]=9457, - ["water_sphere_damage_+%"]=9458, - ["weapon_chaos_damage_+%"]=1769, - ["weapon_cold_damage_+%"]=1767, - ["weapon_damage_+%_per_10_str"]=9459, - ["weapon_elemental_damage_+%"]=1235, - ["weapon_elemental_damage_+%_per_power_charge"]=2390, - ["weapon_elemental_damage_+%_while_using_flask"]=2462, - ["weapon_fire_damage_+%"]=1766, - ["weapon_hellscaping_speed_+%"]=6512, - ["weapon_lightning_damage_+%"]=1768, - ["weapon_physical_damage_+%"]=2450, - ["weapon_swap_speed_+%"]=9460, - ["while_curse_is_25%_expired_hinder_enemy_%"]=9461, - ["while_curse_is_33%_expired_malediction"]=9462, - ["while_curse_is_50%_expired_curse_effect_+%"]=9463, - ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=9464, - ["while_stationary_gain_additional_physical_damage_reduction_%"]=9465, - ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=9466, - ["while_using_mace_stun_threshold_reduction_+%"]=1374, - ["while_using_sword_reduce_enemy_block_%"]=1616, - ["whirling_blades_attack_speed_+%"]=3499, - ["whirling_blades_damage_+%"]=3350, - ["wild_strike_damage_+%"]=3325, - ["wild_strike_num_of_additional_projectiles_in_chain"]=3628, - ["wild_strike_radius_+%"]=3459, - ["winter_brand_chill_effect_+%"]=9467, - ["winter_brand_damage_+%"]=9468, - ["winter_brand_max_number_of_stages_+"]=9469, - ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=9470, - ["witch_passive_maximum_lightning_damage_+%_final"]=9471, - ["witchhunter_armour_evasion_+%_final"]=9472, - ["witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical"]=9473, - ["witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus"]=9474, - ["with_bow_additional_block_%"]=2181, - ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=9475, - ["wither_duration_+%"]=3555, - ["wither_expire_speed_+%"]=9476, - ["wither_radius_+%"]=3471, - ["withered_effect_+%"]=9478, - ["withered_effect_on_self_+%"]=9477, - ["withered_on_hit_for_2_seconds_%_chance"]=4027, - ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=9479, - ["withered_on_hit_for_4_seconds_%_chance"]=9480, - ["wrath_aura_effect_+%"]=3021, - ["wrath_mana_reservation_+%"]=3670, - ["wrath_mana_reservation_efficiency_+%"]=9482, - ["wrath_mana_reservation_efficiency_-2%_per_1"]=9481, - ["wrath_reserves_no_mana"]=9483, - ["x%_faster_start_of_sorcery_ward_recovery"]=9484, - ["x_to_maximum_life_per_2_intelligence"]=1735, - ["you_and_allies_additional_block_%_if_have_attacked_recently"]=9485, - ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=9486, - ["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage"]=3698, - ["you_and_allies_in_presence_all_damage_can_ignite"]=9487, - ["you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame"]=9488, - ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3699, - ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=9489, - ["you_and_nearby_allies_critical_strike_chance_+%"]=9490, - ["you_and_nearby_allies_critical_strike_multiplier_+"]=9491, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=9492, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=9493, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=9494, - ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=9495, - ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=9496, - ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=9497, - ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=2989, - ["you_are_cursed_with_conductivity"]=9498, - ["you_are_cursed_with_despair"]=9499, - ["you_are_cursed_with_elemental_weakness"]=9500, - ["you_are_cursed_with_enfeeble"]=9501, - ["you_are_cursed_with_flammability"]=9502, - ["you_are_cursed_with_frostbite"]=9503, - ["you_are_cursed_with_temporal_chains"]=9504, - ["you_are_cursed_with_vulnerability"]=9505, - ["you_cannot_be_hindered"]=9506, - ["you_cannot_have_non_animated_minions"]=9507, - ["you_cannot_have_non_golem_minions"]=3330, - ["you_cannot_have_non_spectre_minions"]=9508, - ["you_cannot_inflict_curses"]=9509, - ["you_count_as_full_life_while_affected_by_vulnerability"]=2794, - ["you_count_as_low_life_while_affected_by_vulnerability"]=2795, - ["you_count_as_low_life_while_not_on_full_life"]=9510, - ["you_gain_%_life_when_one_of_your_minions_is_revived"]=9511, - ["your_aegis_skills_except_primal_are_disabled"]=638, - ["your_aftershock_area_of_effect_+%"]=9512, - ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=9514, - ["your_attacks_cannot_be_blocked"]=9515, - ["your_auras_except_anger_are_disabled"]=9516, - ["your_auras_except_clarity_are_disabled"]=9517, - ["your_auras_except_determination_are_disabled"]=9518, - ["your_auras_except_discipline_are_disabled"]=9519, - ["your_auras_except_grace_are_disabled"]=9520, - ["your_auras_except_haste_are_disabled"]=9521, - ["your_auras_except_hatred_are_disabled"]=9522, - ["your_auras_except_malevolence_are_disabled"]=9523, - ["your_auras_except_precision_are_disabled"]=9524, - ["your_auras_except_pride_are_disabled"]=9525, - ["your_auras_except_purity_of_elements_are_disabled"]=9526, - ["your_auras_except_purity_of_fire_are_disabled"]=9527, - ["your_auras_except_purity_of_ice_are_disabled"]=9528, - ["your_auras_except_purity_of_lightning_are_disabled"]=9529, - ["your_auras_except_vitality_are_disabled"]=9530, - ["your_auras_except_wrath_are_disabled"]=9531, - ["your_auras_except_zealotry_are_disabled"]=9532, - ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=9533, - ["your_consecrated_ground_grants_damage_+%"]=3856, - ["your_elemental_resistances_do_not_exist"]=2538, - ["your_es_takes_%_hit_damage_from_allies_in_presence_before_them"]=9534, - ["your_life_cannot_change_while_you_have_energy_shield"]=9535, - ["your_mace_slam_aftershock_chance_%"]=9536, - ["your_mace_strike_aftershock_chance_%"]=9537, - ["your_marks_transfer_to_nearby_enemies_on_death_%_chance"]=9538, - ["your_movement_skills_are_disabled"]=9539, - ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=9540, - ["your_shield_skills_are_disabled"]=9541, - ["your_slam_aftershock_chance_%"]=9542, - ["your_spells_are_disabled"]=9543, - ["your_travel_skills_are_disabled"]=9544, - ["your_travel_skills_except_dash_are_disabled"]=9545, - ["zealotry_aura_effect_+%"]=9559, - ["zealotry_mana_reservation_+%"]=9562, - ["zealotry_mana_reservation_efficiency_+%"]=9561, - ["zealotry_mana_reservation_efficiency_-2%_per_1"]=9560, - ["zealotry_reserves_no_mana"]=9563, - ["zero_chaos_resistance"]=9564, - ["zombie_attack_speed_+%"]=3487, - ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=9565, - ["zombie_chaos_elemental_damage_resistance_%"]=2307, - ["zombie_damage_+%"]=3282, - ["zombie_elemental_resistances_%"]=3613, - ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2389, - ["zombie_maximum_life_+"]=2306, - ["zombie_physical_damage_+%"]=2388, - ["zombie_physical_damage_+%_final"]=9566, - ["zombie_scale_+%"]=2387, - ["zombie_slam_area_of_effect_+%"]=9567, - ["zombie_slam_cooldown_speed_+%"]=9568, - ["zombie_slam_damage_+%"]=9569 + ["stun_threshold_+%"]=2891, + ["stun_threshold_+%_during_empowered_attacks"]=9380, + ["stun_threshold_+%_for_each_time_hit_recently_up_to_100%"]=9381, + ["stun_threshold_+%_per_25_tribute"]=9382, + ["stun_threshold_+%_per_number_of_times_stunned_recently"]=9383, + ["stun_threshold_+%_per_rage"]=9850, + ["stun_threshold_+%_when_not_stunned_recently"]=9390, + ["stun_threshold_+%_when_on_full_life"]=9391, + ["stun_threshold_+_from_%_maximum_energy_shield"]=9388, + ["stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour"]=9384, + ["stun_threshold_+_per_dexterity"]=9385, + ["stun_threshold_+_per_strength"]=9386, + ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=9387, + ["stun_threshold_based_on_%_mana_instead_of_life"]=2890, + ["stun_threshold_based_on_energy_shield_instead_of_life"]=3835, + ["stun_threshold_reduction_+%_while_using_flask"]=2578, + ["stun_threshold_reduction_+%_with_500_or_more_strength"]=9392, + ["stuns_have_culling_strike"]=1721, + ["summon_2_totems"]=9393, + ["summon_arbalist_attack_speed_+%"]=9394, + ["summon_arbalist_chains_+"]=9395, + ["summon_arbalist_chance_to_bleed_%"]=9396, + ["summon_arbalist_chance_to_crush_on_hit_%"]=9397, + ["summon_arbalist_chance_to_deal_double_damage_%"]=9398, + ["summon_arbalist_chance_to_freeze_%"]=9413, + ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=9415, + ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=9416, + ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=9417, + ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=9399, + ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=9400, + ["summon_arbalist_chance_to_poison_%"]=9401, + ["summon_arbalist_chance_to_shock_%"]=9414, + ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=9402, + ["summon_arbalist_number_of_additional_projectiles"]=9403, + ["summon_arbalist_number_of_splits"]=9404, + ["summon_arbalist_projectiles_fork"]=9411, + ["summon_arbalist_targets_to_pierce"]=9412, + ["summon_raging_spirit_melee_splash_fire_damage_only"]=9418, + ["summon_reaper_cooldown_speed_+%"]=9419, + ["summon_skeleton_gem_level_+"]=1426, + ["summon_skeletons_additional_warrior_skeleton_%_chance"]=9421, + ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=9420, + ["summon_skeletons_cooldown_modifier_ms"]=9422, + ["summon_skeletons_num_additional_warrior_skeletons"]=3572, + ["summon_skitterbots_area_of_effect_+%"]=9423, + ["summon_skitterbots_mana_reservation_+%"]=9424, + ["summon_totem_cast_speed_+%"]=2264, + ["summoned_arbalist_physical_damage_%_to_convert_to_cold"]=9405, + ["summoned_arbalist_physical_damage_%_to_convert_to_fire"]=9406, + ["summoned_arbalist_physical_damage_%_to_convert_to_lightning"]=9407, + ["summoned_arbalist_physical_damage_%_to_gain_as_cold"]=9408, + ["summoned_arbalist_physical_damage_%_to_gain_as_fire"]=9409, + ["summoned_arbalist_physical_damage_%_to_gain_as_lightning"]=9410, + ["summoned_phantasms_grant_buff"]=9425, + ["summoned_phantasms_have_no_duration"]=9426, + ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3018, + ["summoned_raging_spirit_duration_+%"]=3017, + ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=9427, + ["summoned_reaper_damage_+%"]=9428, + ["summoned_reaper_physical_dot_multiplier_+"]=9429, + ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=9430, + ["summoned_skeleton_%_physical_to_chaos"]=9431, + ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=3984, + ["summoned_skeletons_cover_in_ash_on_hit_%"]=9432, + ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=9433, + ["summoned_skeletons_have_avatar_of_fire"]=9913, + ["summoned_skeletons_hits_cant_be_evaded"]=9434, + ["summoned_skitterbots_cooldown_recovery_+%"]=9435, + ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=9436, + ["sunder_wave_delay_+%"]=3426, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=9437, + ["support_anticipation_charge_gain_frequency_+%"]=9438, + ["support_buffed_heralds_buff_effect_+%_final"]=9439, + ["support_deadly_heralds_buff_effect_+%_final"]=9440, + ["support_deadly_heralds_damage_+%_final"]=9441, + ["support_fast_forward_detonation_time_+%_final"]=9442, + ["support_gem_elemental_damage_+%_final"]=3182, + ["support_gems_socketed_in_amulet_also_support_body_skills"]=190, + ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=191, + ["support_hourglass_damage_+%_final"]=9443, + ["support_jagged_ground_chance_%"]=9444, + ["support_last_gasp_duration_ms"]=9445, + ["support_maimed_enemies_physical_damage_taken_+%"]=9446, + ["support_minion_maximum_life_+%_final"]=1471, + ["support_mirage_archer_base_duration"]=9448, + ["support_slashing_damage_+%_final_from_distance"]=9449, + ["support_slower_projectiles_damage_+%_final"]=2510, + ["supported_active_skill_gem_expereince_gained_+%"]=2554, + ["supported_active_skill_gem_level_+"]=2429, + ["supported_active_skill_gem_quality_%"]=2487, + ["supported_aura_skill_gem_level_+"]=9450, + ["supported_cold_skill_gem_level_+"]=9451, + ["supported_elemental_skill_gem_level_+"]=9452, + ["supported_fire_skill_gem_level_+"]=9453, + ["supported_lightning_skill_gem_level_+"]=9454, + ["surrounded_area_of_effect_+%"]=9455, + ["sweep_add_endurance_charge_on_hit_%"]=3397, + ["sweep_damage_+%"]=3257, + ["sweep_knockback_chance_%"]=3550, + ["sweep_radius_+%"]=3398, + ["sword_accuracy_rating"]=1691, + ["sword_accuracy_rating_+%"]=1298, + ["sword_attack_speed_+%"]=1281, + ["sword_critical_strike_chance_+%"]=1320, + ["sword_critical_strike_multiplier_+"]=1344, + ["sword_damage_+%"]=1216, + ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=9456, + ["synthesis_map_global_mod_values_doubled_on_this_node"]=9457, + ["synthesis_map_global_mod_values_tripled_on_this_node"]=9458, + ["synthesis_map_memories_do_not_collapse_on_this_node"]=9459, + ["synthesis_map_monster_slain_experience_+%_on_this_node"]=9460, + ["synthesis_map_nearby_memories_have_bonus"]=9461, + ["synthesis_map_node_additional_uses_+"]=9462, + ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=9463, + ["synthesis_map_node_grants_additional_global_mod"]=9464, + ["synthesis_map_node_grants_no_global_mod"]=9465, + ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=9466, + ["synthesis_map_node_item_quantity_increases_doubled"]=9467, + ["synthesis_map_node_item_rarity_increases_doubled"]=9468, + ["synthesis_map_node_level_+"]=9469, + ["synthesis_map_node_monsters_drop_no_items"]=9470, + ["synthesis_map_node_pack_size_increases_doubled"]=9471, + ["tactician_spirit_reservation_+%_final_for_permanent_buffs"]=9472, + ["tailwind_effect_on_self_+%"]=9473, + ["tailwind_effect_on_self_+%_per_gale_force"]=9474, + ["tailwind_if_have_crit_recently"]=9475, + ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=9476, + ["take_chaos_damage_from_ignite_instead"]=2143, + ["take_half_area_damage_from_hit_%_chance"]=9477, + ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=9478, + ["take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack"]=9479, + ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=9480, + ["taunt_duration_+%"]=1488, + ["taunt_on_projectile_hit_chance_%"]=9481, + ["taunted_enemies_by_warcry_damage_taken_+%"]=9482, + ["taunted_enemies_chance_to_be_stunned_+%"]=2839, + ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3818, + ["taunted_enemies_damage_taken_+%"]=2840, + ["tectonic_slam_%_chance_to_do_charged_slam"]=9488, + ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=9483, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=9484, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=9485, + ["tectonic_slam_area_of_effect_+%"]=9486, + ["tectonic_slam_damage_+%"]=9487, + ["tectonic_slam_side_crack_additional_chance_%"]=9490, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=9489, + ["tempest_shield_buff_effect_+%"]=9491, + ["tempest_shield_damage_+%"]=3302, + ["tempest_shield_num_of_additional_projectiles_in_chain"]=3599, + ["temporal_chains_curse_effect_+%"]=3579, + ["temporal_chains_duration_+%"]=3486, + ["temporal_chains_effect_on_self_+%"]=1442, + ["temporal_chains_gem_level_+"]=1952, + ["temporal_chains_ignores_hexproof"]=2291, + ["temporal_chains_mana_reservation_+%"]=3620, + ["temporal_chains_no_reservation"]=9492, + ["temporal_rift_cooldown_speed_+%"]=9493, + ["temporary_minion_limit_+"]=9494, + ["thaumaturgy_rotation_active"]=9495, + ["thorns_critical_strike_chance_+%"]=9496, + ["thorns_damage_+%"]=9500, + ["thorns_damage_+%_if_blocked_recently"]=9501, + ["thorns_damage_+%_if_consumed_endurance_charge_recently"]=9497, + ["thorns_damage_+%_per_10_tribute"]=9498, + ["thorns_damage_has_%_chance_to_ignore_armour"]=9499, + ["thorns_maximum_base_chaos_damage"]=9503, + ["thorns_maximum_base_cold_damage"]=9504, + ["thorns_maximum_base_fire_damage"]=9505, + ["thorns_maximum_base_lightning_damage"]=9506, + ["thorns_maximum_base_physical_damage"]=9507, + ["thorns_maximum_fire_damage_per_100_life"]=9502, + ["thorns_minimum_base_chaos_damage"]=9503, + ["thorns_minimum_base_cold_damage"]=9504, + ["thorns_minimum_base_fire_damage"]=9505, + ["thorns_minimum_base_lightning_damage"]=9506, + ["thorns_minimum_base_physical_damage"]=9507, + ["thorns_minimum_fire_damage_per_100_life"]=9502, + ["thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute"]=9508, + ["thorns_proc_off_any_hit"]=9509, + ["threshold_jewel_magma_orb_damage_+%_final"]=9510, + ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=9511, + ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=9512, + ["thrown_shield_secondary_projectile_damage_+%_final"]=9513, + ["titan_additional_inventory"]=9514, + ["titan_damage_+%_final_against_heavy_stunned_enemies"]=9515, + ["titan_expanded_main_inventory"]=9516, + ["titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies"]=9517, + ["titan_maximum_life_+%_final"]=9518, + ["tornado_damage_+%"]=9520, + ["tornado_damage_frequency_+%"]=9519, + ["tornado_movement_speed_+%"]=9521, + ["tornado_only_primary_duration_+%"]=9522, + ["tornado_shot_critical_strike_chance_+%"]=3519, + ["tornado_shot_damage_+%"]=3262, + ["tornado_shot_num_of_secondary_projectiles"]=3527, + ["tornado_skill_area_of_effect_+%"]=9523, + ["total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence"]=920, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3367, + ["totem_additional_physical_damage_reduction_%"]=2458, + ["totem_aura_enemy_damage_+%_final"]=3369, + ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3370, + ["totem_chaos_immunity"]=9525, + ["totem_chaos_resistance_%"]=9526, + ["totem_critical_strike_chance_+%"]=1338, + ["totem_critical_strike_multiplier_+"]=1361, + ["totem_damage_+%"]=1109, + ["totem_damage_+%_final_per_active_totem"]=3331, + ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=9527, + ["totem_damage_+%_per_10_devotion"]=9528, + ["totem_duration_+%"]=1484, + ["totem_elemental_resistance_%"]=2456, + ["totem_energy_shield_+%"]=1482, + ["totem_fire_immunity"]=1422, + ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=9529, + ["totem_life_+%"]=1480, + ["totem_mana_+%"]=1481, + ["totem_maximum_energy_shield"]=9530, + ["totem_number_of_additional_projectiles"]=2714, + ["totem_only_uses_skill_when_owner_attacks"]=9531, + ["totem_placement_range_+%"]=9532, + ["totem_range_+%"]=1483, + ["totem_skill_area_of_effect_+%"]=2267, + ["totem_skill_attack_speed_+%"]=2266, + ["totem_skill_cast_speed_+%"]=2265, + ["totem_skill_gem_level_+"]=9533, + ["totem_spells_damage_+%"]=9534, + ["totemified_skills_taunt_on_hit_%"]=3033, + ["totems_action_speed_cannot_be_modified_below_base"]=9524, + ["totems_attack_speed_+%_per_active_totem"]=3760, + ["totems_cannot_be_stunned"]=2697, + ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=2926, + ["totems_explode_on_death_for_%_life_as_physical"]=9535, + ["totems_nearby_enemies_damage_taken_+%"]=9536, + ["totems_regenerate_%_life_per_minute"]=9537, + ["totems_resist_all_elements_+%_per_active_totem"]=3744, + ["totems_spells_cast_speed_+%_per_active_totem"]=3748, + ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=9538, + ["tower_add_breach_to_X_maps"]=9539, + ["tower_add_delirium_to_X_maps"]=9540, + ["tower_add_expedition_to_X_maps"]=9541, + ["tower_add_irradiated_to_X_maps"]=9542, + ["tower_add_map_bosses_to_X_maps"]=9543, + ["tower_add_ritual_to_X_maps"]=9544, + ["toxic_rain_damage_+%"]=9545, + ["toxic_rain_num_of_additional_projectiles"]=9546, + ["toxic_rain_physical_damage_%_to_gain_as_chaos"]=9547, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2585, + ["trap_%_chance_to_trigger_twice"]=3375, + ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=9548, + ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2453, + ["trap_and_mine_maximum_added_physical_damage"]=3374, + ["trap_and_mine_minimum_added_physical_damage"]=3374, + ["trap_and_mine_throwing_speed_+%"]=9549, + ["trap_critical_strike_chance_+%"]=956, + ["trap_critical_strike_multiplier_+"]=960, + ["trap_damage_+%"]=875, + ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3372, + ["trap_damage_buildup_damage_+%_final_when_first_set"]=3371, + ["trap_damage_penetrates_%_elemental_resistance"]=2451, + ["trap_duration_+%"]=1613, + ["trap_or_mine_damage_+%"]=1110, + ["trap_skill_added_cooldown_count"]=9550, + ["trap_skill_area_of_effect_+%"]=3075, + ["trap_skill_gem_level_+"]=952, + ["trap_spread_+%"]=9551, + ["trap_throw_skills_have_blood_magic"]=9924, + ["trap_throwing_speed_+%"]=1618, + ["trap_throwing_speed_+%_per_frenzy_charge"]=9552, + ["trap_trigger_radius_+%"]=1616, + ["traps_and_mines_%_chance_to_poison"]=3659, + ["traps_cannot_be_triggered_by_enemies"]=9553, + ["traps_do_not_explode_on_timeout"]=2448, + ["traps_explode_on_timeout"]=2449, + ["traps_invulnerable"]=9554, + ["traps_invulnerable_for_duration_ms"]=2454, + ["travel_skill_cooldown_speed_+%"]=3954, + ["travel_skills_cannot_be_exerted"]=9555, + ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=3964, + ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=9556, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=9557, + ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=9558, + ["trickster_damage_+%_final_per_different_mastery"]=1444, + ["trickster_damage_over_time_+%_final"]=9559, + ["trigger_elemental_storm_on_crit"]=9560, + ["trigger_skills_refund_half_energy_spent_chance_%"]=9561, + ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=623, + ["trigger_socketed_spell_on_attack_%"]=624, + ["trigger_socketed_spell_on_skill_use_%"]=626, + ["trigger_socketed_spells_when_you_focus_%"]=627, + ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=130, + ["trigger_wild_strike_on_attack_crit"]=9562, + ["triggerbots_damage_+%_final_with_triggered_spells"]=9563, + ["triggered_spell_spell_damage_+%"]=9564, + ["triggers_burning_runes_on_placing_ground_rune"]=9565, + ["triggers_soulbreaker_on_breaking_enemy_energy_shield"]=9566, + ["trinity_damage_+%_final_to_grant_per_50_resonance"]=9567, + ["trinity_loss_per_hit"]=9568, + ["trinity_resonance_to_grant"]=9568, + ["two_handed_melee_accuracy_rating_+%"]=1291, + ["two_handed_melee_area_damage_+%"]=9569, + ["two_handed_melee_area_of_effect_+%"]=9570, + ["two_handed_melee_attack_speed_+%"]=1273, + ["two_handed_melee_cold_damage_+%"]=1188, + ["two_handed_melee_critical_strike_chance_+%"]=1328, + ["two_handed_melee_critical_strike_multiplier_+"]=1329, + ["two_handed_melee_fire_damage_+%"]=1187, + ["two_handed_melee_physical_damage_+%"]=1185, + ["two_handed_melee_stun_duration_+%"]=1567, + ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=9571, + ["uber_domain_monster_all_resistances_+%_per_revival"]=9572, + ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=9573, + ["uber_domain_monster_avoid_stun_%_per_revival"]=9574, + ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=9575, + ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=9576, + ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=9577, + ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=9578, + ["uber_domain_monster_maximum_life_+%_per_revival"]=9579, + ["uber_domain_monster_movement_speed_+%_per_revival"]=9580, + ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=9581, + ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=9582, + ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=9583, + ["uber_domain_monster_reward_chance_+%"]=9584, + ["ultimatum_wager_type_hash"]=45, + ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=9585, + ["unaffected_by_bleeding_while_affected_by_malevolence"]=9586, + ["unaffected_by_bleeding_while_leeching"]=9587, + ["unaffected_by_blind"]=9588, + ["unaffected_by_burning_ground"]=9589, + ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=9590, + ["unaffected_by_chill"]=9591, + ["unaffected_by_chill_during_dodge_roll"]=9592, + ["unaffected_by_chill_while_channelling"]=9593, + ["unaffected_by_chill_while_mana_leeching"]=9594, + ["unaffected_by_chilled_ground"]=9595, + ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=9596, + ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=9597, + ["unaffected_by_corrupted_blood_while_leeching"]=9598, + ["unaffected_by_curses"]=2166, + ["unaffected_by_curses_while_affected_by_zealotry"]=9599, + ["unaffected_by_desecrated_ground"]=9600, + ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=9601, + ["unaffected_by_enfeeble_while_affected_by_grace"]=9602, + ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=9603, + ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=9604, + ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=9605, + ["unaffected_by_ignite"]=9606, + ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=9607, + ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=9608, + ["unaffected_by_poison_while_affected_by_malevolence"]=9609, + ["unaffected_by_shock"]=9610, + ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=9611, + ["unaffected_by_shock_while_channelling"]=9612, + ["unaffected_by_shocked_ground"]=9613, + ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=9614, + ["unaffected_by_temporal_chains"]=9615, + ["unaffected_by_temporal_chains_while_affected_by_haste"]=9616, + ["unaffected_by_vulnerability_while_affected_by_determination"]=9617, + ["unarmed_attack_skill_melee_dash_range_+%"]=9618, + ["unarmed_attack_speed_+%"]=9619, + ["unarmed_damage_+%_vs_bleeding_enemies"]=3159, + ["unarmed_melee_attack_speed_+%"]=1285, + ["unarmed_melee_physical_damage_+%"]=1189, + ["unattached_sigil_attachment_range_+%_per_second"]=9620, + ["unbound_ailment_elemental_ailment_chance_+%_final"]=9621, + ["unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final"]=9622, + ["undead_minion_reservation_+%"]=9624, + ["unearth_additional_corpse_level"]=9625, + ["unholy_might_granted_magnitude_+%_per_100_maximum_mana"]=9626, + ["unholy_might_while_you_have_no_energy_shield"]=2407, + ["unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell"]=9627, + ["unique_add_power_charge_on_melee_knockback_%"]=2587, + ["unique_blood_barrier_applies_x_stacks_of_corrupted_blood_on_block"]=9628, + ["unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life"]=9628, + ["unique_blood_barrier_corrupted_blood_duration_ms"]=9628, + ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"]=9629, + ["unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield"]=9630, + ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=3994, + ["unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life"]=3892, + ["unique_boots_secondary_ground_shock_while_moving"]=3893, + ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=9928, + ["unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence"]=4004, + ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2617, + ["unique_chill_duration_+%_when_in_off_hand"]=2437, + ["unique_chin_sol_close_range_bow_damage_+%_final"]=2133, + ["unique_chin_sol_close_range_knockback"]=2134, + ["unique_cold_damage_ignites"]=2522, + ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1436, + ["unique_cooldown_modifier_ms"]=9631, + ["unique_critical_strike_chance_+%_final"]=2492, + ["unique_crowd_controlled_enemy_damage_taken_-%_final"]=9632, + ["unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max"]=9633, + ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2154, + ["unique_double_presence_radius"]=9634, + ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2127, + ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1432, + ["unique_fire_damage_shocks"]=2521, + ["unique_gain_onslaught_when_hit_duration_ms"]=2494, + ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2509, + ["unique_gain_power_charge_on_non_crit"]=2562, + ["unique_gain_soul_eater"]=9635, + ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=9636, + ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=9637, + ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=9638, + ["unique_jewel_flask_duration_+%_final"]=9639, + ["unique_jewel_grants_notable_hash_1"]=9640, + ["unique_jewel_grants_notable_hash_2"]=9641, + ["unique_jewel_grants_notable_hash_3"]=9642, + ["unique_jewel_grants_notable_hash_part_1"]=9643, + ["unique_jewel_grants_notable_hash_part_2"]=9644, + ["unique_jewel_reserved_blood_maximum_life_+%_final"]=9645, + ["unique_jewel_specific_skill_level_+_level"]=9646, + ["unique_jewel_specific_skill_level_+_skill"]=9646, + ["unique_lightning_damage_freezes"]=2523, + ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1439, + ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1248, + ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1234, + ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1228, + ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1248, + ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1234, + ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1228, + ["unique_loris_lantern_golden_light"]=2240, + ["unique_lose_a_power_charge_when_hit"]=9648, + ["unique_lose_all_endurance_charges_when_hit"]=2493, + ["unique_lose_all_power_charges_on_crit"]=2563, + ["unique_map_boss_class_of_rare_items_to_drop"]=2390, + ["unique_map_boss_number_of_rare_items_to_drop"]=2390, + ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2617, + ["unique_mine_damage_+%_final"]=1112, + ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2617, + ["unique_minions_in_presence_gain_and_lose_life_when_you_do"]=9649, + ["unique_monster_dropped_item_rarity_+%"]=9650, + ["unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds"]=9651, + ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2630, + ["unique_no_curse_delay"]=9652, + ["unique_primordial_tether_golem_damage_+%_final"]=3285, + ["unique_primordial_tether_golem_life_+%_final"]=3663, + ["unique_prism_guardian_spirit_+_per_X_maximum_life"]=9653, + ["unique_quill_rain_damage_+%_final"]=2146, + ["unique_recover_%_maximum_life_on_x_altenator"]=9654, + ["unique_redblade_banner_enemies_in_presence_monster_power_+%_final"]=9655, + ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=9656, + ["unique_revive_permanent_minions_on_mana_flask_use"]=9657, + ["unique_ryslathas_coil_maximum_physical_attack_damage_+%_final"]=1114, + ["unique_ryslathas_coil_minimum_physical_attack_damage_+%_final"]=1115, + ["unique_shield_window_of_paradise_apply_elemental_exposure_while_raised"]=9658, + ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=9659, + ["unique_spirit_reservations_are_halved"]=9660, + ["unique_sunblast_throw_traps_in_circle_radius"]=9661, + ["unique_two_handed_weapon_lightning_stun_multiplier_+%_final"]=9662, + ["unique_volkuurs_clutch_poison_duration_+%_final"]=2800, + ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2576, + ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=9663, + ["unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below"]=9664, + ["unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below"]=9665, + ["unnerve_for_4_seconds_on_hit_with_wands"]=9666, + ["unnerve_nearby_enemies_on_use_for_ms"]=9667, + ["unveiled_mod_effect_+%"]=72, + ["utility_flask_charges_recovered_per_3_seconds"]=9668, + ["utility_flask_cold_damage_taken_+%_final"]=9669, + ["utility_flask_fire_damage_taken_+%_final"]=9670, + ["utility_flask_lightning_damage_taken_+%_final"]=9671, + ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2366, + ["vaal_skill_critical_strike_chance_+%"]=2738, + ["vaal_skill_critical_strike_multiplier_+"]=2739, + ["vaal_skill_damage_+%"]=2726, + ["vaal_skill_effect_duration_+%"]=2736, + ["vaal_skill_gem_level_+"]=9672, + ["vaal_skill_soul_cost_+%"]=9673, + ["vaal_skill_soul_gain_preventation_duration_+%"]=2737, + ["vaal_skill_soul_refund_chance_%"]=9674, + ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=9675, + ["vampiric_link_duration_+%"]=9676, + ["vengeance_cooldown_speed_+%"]=3463, + ["vengeance_damage_+%"]=3307, + ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=9677, + ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2869, + ["vigilant_strike_damage_+%"]=3295, + ["vigilant_strike_fortify_duration_+%"]=3483, + ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=9678, + ["viper_strike_critical_strike_chance_+%"]=3516, + ["viper_strike_damage_+%"]=3237, + ["viper_strike_dual_wield_damage_+%_final"]=9679, + ["viper_strike_poison_duration_+%"]=3505, + ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=2999, + ["virtual_block_%_damage_taken"]=9680, + ["virtual_chance_to_gain_1_more_endurance_charge_%"]=9681, + ["virtual_chance_to_gain_1_more_frenzy_charge_%"]=9682, + ["virtual_chance_to_gain_1_more_power_charge_%"]=9683, + ["virtual_energy_shield_delay_-%"]=3169, + ["virtual_energy_shield_recharge_rate_+%"]=3171, + ["virtual_glory_generation_+%"]=9684, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break"]=9685, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit"]=9686, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun"]=9687, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite"]=9688, + ["virtual_light_radius_+%"]=2188, + ["virtual_mana_gain_per_target"]=1456, + ["virtual_maximum_curse_zones_allowed"]=9689, + ["virtual_minion_damage_+%"]=1668, + ["virtual_number_of_banners_allowed"]=9690, + ["virtual_number_of_ranged_animated_weapons_allowed"]=2889, + ["virulent_arrow_additional_spores_at_max_stages"]=9691, + ["virulent_arrow_chance_to_poison_%_per_stage"]=9692, + ["vitality_mana_reservation_+%"]=3612, + ["vitality_mana_reservation_efficiency_+%"]=9694, + ["vitality_mana_reservation_efficiency_-2%_per_1"]=9693, + ["vitality_reserves_no_mana"]=9695, + ["void_sphere_cooldown_speed_+%"]=9696, + ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=9697, + ["volatile_dead_base_number_of_corpses_to_consume"]=9698, + ["volatile_dead_cast_speed_+%"]=9699, + ["volatile_dead_consume_additional_corpse"]=9700, + ["volatile_dead_damage_+%"]=9701, + ["volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant"]=9702, + ["volatility_critical_strike_chance_+%_to_grant"]=9703, + ["volatility_detonation_delay_+%"]=9704, + ["volatility_on_kill_%_chance"]=9705, + ["volatility_refresh_%_chance"]=9706, + ["volatility_when_stunned_%_chance"]=9707, + ["volcanic_fissure_damage_+%"]=9708, + ["volcanic_fissure_number_of_additional_projectiles"]=9709, + ["volcanic_fissure_speed_+%"]=9710, + ["voltaxic_burst_damage_+%"]=9711, + ["voltaxic_burst_damage_+%_per_100ms_duration"]=9712, + ["voltaxic_burst_skill_area_of_effect_+%"]=9713, + ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=9714, + ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=9715, + ["vulnerability_curse_effect_+%"]=3587, + ["vulnerability_duration_+%"]=3488, + ["vulnerability_gem_level_+"]=1953, + ["vulnerability_ignores_hexproof"]=2292, + ["vulnerability_mana_reservation_+%"]=3621, + ["vulnerability_no_reservation"]=9716, + ["wand_accuracy_rating"]=1698, + ["wand_accuracy_rating_+%"]=1299, + ["wand_attack_speed_+%"]=1282, + ["wand_critical_strike_chance_+%"]=1323, + ["wand_critical_strike_multiplier_+"]=1345, + ["wand_damage_+%"]=2592, + ["wand_damage_+%_if_crit_recently"]=9717, + ["wand_damage_+%_per_power_charge"]=1825, + ["wand_elemental_damage_+%"]=1805, + ["war_banner_aura_effect_+%"]=9718, + ["war_banner_mana_reservation_efficiency_+%"]=9719, + ["warbringer_overbreak_armour"]=9720, + ["warcries_apply_fire_exposure"]=9721, + ["warcries_are_instant"]=3059, + ["warcries_bypass_cooldown"]=9722, + ["warcries_cost_no_mana"]=3701, + ["warcries_debilitate_enemies_for_1_second"]=9723, + ["warcries_have_minimum_10_power"]=9724, + ["warcries_knock_back_enemies"]=9725, + ["warcry_buff_effect_+%"]=9726, + ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=9727, + ["warcry_cooldown_modifier_ms"]=9728, + ["warcry_cooldown_speed_+%"]=2942, + ["warcry_damage_+%"]=9729, + ["warcry_damage_taken_goes_to_mana_%"]=2882, + ["warcry_duration_+%"]=2828, + ["warcry_empowers_next_x_melee_attacks"]=9730, + ["warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute"]=9731, + ["warcry_monster_power_+%"]=9732, + ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=9733, + ["warcry_skill_area_of_effect_+%"]=9734, + ["warcry_skills_cooldown_is_4_seconds"]=9735, + ["warcry_speed_+%"]=2897, + ["warcry_speed_+%_per_25_tribute"]=9736, + ["ward_+%"]=1373, + ["ward_delay_recovery_+%"]=1375, + ["warlords_mark_curse_effect_+%"]=3588, + ["warlords_mark_duration_+%"]=3487, + ["water_sphere_cold_lightning_exposure_%"]=9737, + ["water_sphere_damage_+%"]=9738, + ["weapon_chaos_damage_+%"]=1746, + ["weapon_cold_damage_+%"]=1744, + ["weapon_damage_+%_per_10_str"]=9739, + ["weapon_elemental_damage_+%"]=1223, + ["weapon_elemental_damage_+%_per_power_charge"]=2358, + ["weapon_elemental_damage_+%_while_using_flask"]=2428, + ["weapon_fire_damage_+%"]=1743, + ["weapon_hellscaping_speed_+%"]=6624, + ["weapon_lightning_damage_+%"]=1745, + ["weapon_physical_damage_+%"]=2416, + ["weapon_swap_speed_+%"]=9740, + ["while_curse_is_25%_expired_hinder_enemy_%"]=9741, + ["while_curse_is_33%_expired_malediction"]=9742, + ["while_curse_is_50%_expired_curse_effect_+%"]=9743, + ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=9744, + ["while_stationary_gain_additional_physical_damage_reduction_%"]=9745, + ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=9746, + ["while_using_mace_stun_threshold_reduction_+%"]=1362, + ["whirling_blades_attack_speed_+%"]=3445, + ["whirling_blades_damage_+%"]=3296, + ["wild_strike_damage_+%"]=3271, + ["wild_strike_num_of_additional_projectiles_in_chain"]=3571, + ["wild_strike_radius_+%"]=3405, + ["winter_brand_chill_effect_+%"]=9747, + ["winter_brand_damage_+%"]=9748, + ["winter_brand_max_number_of_stages_+"]=9749, + ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=9750, + ["witch_passive_maximum_lightning_damage_+%_final"]=9751, + ["witchhunter_armour_evasion_+%_final"]=9752, + ["witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical"]=9753, + ["witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus"]=9754, + ["with_bow_additional_block_%"]=2150, + ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=9755, + ["wither_duration_+%"]=3501, + ["wither_expire_speed_+%"]=9756, + ["wither_never_expires"]=4005, + ["wither_radius_+%"]=3417, + ["withered_effect_on_self_+%"]=9757, + ["withered_magnitude_+%"]=9758, + ["withered_on_hit_for_2_seconds_%_chance"]=3968, + ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=9759, + ["withered_on_hit_for_4_seconds_%_chance"]=9760, + ["wrath_aura_effect_+%"]=2972, + ["wrath_mana_reservation_+%"]=3613, + ["wrath_mana_reservation_efficiency_+%"]=9762, + ["wrath_mana_reservation_efficiency_-2%_per_1"]=9761, + ["wrath_reserves_no_mana"]=9763, + ["x%_faster_start_of_sorcery_ward_recovery"]=9764, + ["x_to_maximum_life_per_2_intelligence"]=1712, + ["you_and_allies_additional_block_%_if_have_attacked_recently"]=9765, + ["you_and_allies_in_presence_accuracy_rating_+%"]=9766, + ["you_and_allies_in_presence_all_damage_can_ignite"]=9767, + ["you_and_allies_in_presence_attack_speed_+%"]=9768, + ["you_and_allies_in_presence_cast_speed_+%"]=9769, + ["you_and_allies_in_presence_chaos_damage_resistance_%"]=9770, + ["you_and_allies_in_presence_cooldown_speed_+%"]=9771, + ["you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame"]=9772, + ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3641, + ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=9773, + ["you_and_nearby_allies_critical_strike_chance_+%"]=9774, + ["you_and_nearby_allies_critical_strike_multiplier_+"]=9775, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=9776, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=9777, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=9778, + ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=9779, + ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=9780, + ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=9781, + ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=2940, + ["you_are_cursed_with_despair"]=9782, + ["you_are_cursed_with_elemental_weakness"]=9783, + ["you_are_cursed_with_enfeeble"]=9784, + ["you_are_cursed_with_temporal_chains"]=9785, + ["you_are_cursed_with_vulnerability"]=9786, + ["you_cannot_be_hindered"]=9787, + ["you_cannot_have_non_animated_minions"]=9788, + ["you_cannot_have_non_golem_minions"]=3276, + ["you_cannot_have_non_spectre_minions"]=9789, + ["you_cannot_inflict_curses"]=9790, + ["you_count_as_full_life_while_affected_by_vulnerability"]=2749, + ["you_count_as_low_life_while_affected_by_vulnerability"]=2750, + ["you_count_as_low_life_while_not_on_full_life"]=9791, + ["you_gain_%_life_when_one_of_your_minions_is_revived"]=9792, + ["your_aegis_skills_except_primal_are_disabled"]=629, + ["your_aftershock_area_of_effect_+%"]=9793, + ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=9795, + ["your_auras_except_anger_are_disabled"]=9796, + ["your_auras_except_clarity_are_disabled"]=9797, + ["your_auras_except_determination_are_disabled"]=9798, + ["your_auras_except_discipline_are_disabled"]=9799, + ["your_auras_except_grace_are_disabled"]=9800, + ["your_auras_except_haste_are_disabled"]=9801, + ["your_auras_except_hatred_are_disabled"]=9802, + ["your_auras_except_malevolence_are_disabled"]=9803, + ["your_auras_except_precision_are_disabled"]=9804, + ["your_auras_except_pride_are_disabled"]=9805, + ["your_auras_except_purity_of_elements_are_disabled"]=9806, + ["your_auras_except_purity_of_fire_are_disabled"]=9807, + ["your_auras_except_purity_of_ice_are_disabled"]=9808, + ["your_auras_except_purity_of_lightning_are_disabled"]=9809, + ["your_auras_except_vitality_are_disabled"]=9810, + ["your_auras_except_wrath_are_disabled"]=9811, + ["your_auras_except_zealotry_are_disabled"]=9812, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=9813, + ["your_consecrated_ground_grants_damage_+%"]=3797, + ["your_elemental_resistances_do_not_exist"]=2502, + ["your_es_takes_%_hit_damage_from_allies_in_presence_before_them"]=9814, + ["your_life_cannot_change_while_you_have_energy_shield"]=9815, + ["your_life_flasks_also_apply_to_your_minions"]=1866, + ["your_mace_slam_aftershock_chance_%"]=9816, + ["your_mace_strike_aftershock_chance_%"]=9817, + ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=9818, + ["your_movement_skills_are_disabled"]=9819, + ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=9820, + ["your_shield_skills_are_disabled"]=9821, + ["your_slam_aftershock_chance_%"]=9822, + ["your_spells_are_disabled"]=9823, + ["your_travel_skills_are_disabled"]=9824, + ["your_travel_skills_except_dash_are_disabled"]=9825, + ["zealotry_aura_effect_+%"]=9839, + ["zealotry_mana_reservation_+%"]=9842, + ["zealotry_mana_reservation_efficiency_+%"]=9841, + ["zealotry_mana_reservation_efficiency_-2%_per_1"]=9840, + ["zealotry_reserves_no_mana"]=9843, + ["zero_chaos_resistance"]=9844, + ["zombie_attack_speed_+%"]=3433, + ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=9845, + ["zombie_chaos_elemental_damage_resistance_%"]=2275, + ["zombie_damage_+%"]=3228, + ["zombie_elemental_resistances_%"]=3556, + ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2357, + ["zombie_maximum_life_+"]=2274, + ["zombie_physical_damage_+%"]=2356, + ["zombie_physical_damage_+%_final"]=9846, + ["zombie_scale_+%"]=2355, + ["zombie_slam_area_of_effect_+%"]=9847, + ["zombie_slam_cooldown_speed_+%"]=9848, + ["zombie_slam_damage_+%"]=9849 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/utility_flask_buff_stat_descriptions.lua b/src/Data/StatDescriptions/utility_flask_buff_stat_descriptions.lua index 95f3c0c19c..1051bc7d61 100644 --- a/src/Data/StatDescriptions/utility_flask_buff_stat_descriptions.lua +++ b/src/Data/StatDescriptions/utility_flask_buff_stat_descriptions.lua @@ -99,6 +99,22 @@ return { } }, [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Immunity to Curses" + } + }, + stats={ + [1]="immune_to_curses" + } + }, + [8]={ [1]={ [1]={ limit={ @@ -120,6 +136,7 @@ return { ["base_immune_to_shock"]=4, ["immune_to_bleeding"]=5, ["immune_to_burning"]=6, - ["immune_to_poison"]=7, + ["immune_to_curses"]=7, + ["immune_to_poison"]=8, parent="stat_descriptions" } \ No newline at end of file diff --git a/src/Export/Minions/Minions.txt b/src/Export/Minions/Minions.txt index 6f7a7108d3..c5a124f981 100644 --- a/src/Export/Minions/Minions.txt +++ b/src/Export/Minions/Minions.txt @@ -67,4 +67,10 @@ local minions, mod = ... #emit #monster Metadata/Monsters/AnimatedItem/AnimatedWeaponPlayerSummoned ManifestWeapon +#emit + +#monster Metadata/Monsters/Daemon/RavenousSwarmPlayer/RavenousSwarmPlayerSummoned RavenousSwarm +#emit + +#monster Metadata/Monsters/Monsters/LivingLightningPlayerSummoned LivingLightning #emit \ No newline at end of file diff --git a/src/Export/Scripts/skillGemList.lua b/src/Export/Scripts/skillGemList.lua index 60ed387006..027ed2cedb 100644 --- a/src/Export/Scripts/skillGemList.lua +++ b/src/Export/Scripts/skillGemList.lua @@ -2,25 +2,35 @@ -- Export all playable skill gems from game data -- local out = io.open("../Export/Skills/SkillGems.txt", "w") +local export = io.open("../Export/Skills/SkillGemsExport.txt", "w") out:write('-- This file is automatically generated, do not edit!\n') out:write('-- Gem data (c) Grinding Gear Games\n\n') - -local export = false +export:write('-- This file is automatically generated, do not edit!\n') +export:write('-- Gem data (c) Grinding Gear Games\n\n') local types = { "Strength", "Dexterity", "Intelligence", "Other" } -local function grantedEffectString(grantedEffect, support) +local function grantedEffectString(grantedEffect, support) local s = "#skill "..grantedEffect.Id.."\n" - for _, statSet in ipairs(tableConcat({grantedEffect.GrantedEffectStatSets}, grantedEffect.AdditionalStatSets)) do + if not (grantedEffect.GrantedEffectStatSets.LabelType and grantedEffect.GrantedEffectStatSets.LabelType.Id == "Hidden") then + s = s.."#set "..grantedEffect.GrantedEffectStatSets.Id + if grantedEffect.IsSupport then + s = s.."\n#mods\n" + else + s = s.."\n#flags\n#mods\n" + end + end + for _, statSet in ipairs(grantedEffect.AdditionalStatSets) do if not (statSet.LabelType and statSet.LabelType.Id == "Hidden") then s = s.."#set "..statSet.Id - if support then - s = s.."\n#mods\n#skillEnd\n" + if grantedEffect.IsSupport then + s = s.."\n#mods\n" else - s = s.."\n#flags\n#mods\n#skillEnd\n" + s = s.."\n#flags\n#mods\n" end end end + s = s.."#skillEnd\n" return s end for i, _ in ipairs(types) do @@ -47,13 +57,14 @@ for i, _ in ipairs(types) do if gemEffect.AdditionalGrantedEffects then for _, additionalGrantedEffect in ipairs(gemEffect.AdditionalGrantedEffects) do temp = temp.."\t"..additionalGrantedEffect.Id - temp1 = temp1..grantedEffectString(additionalGrantedEffect, true) + temp1 = temp1.."\n"..grantedEffectString(additionalGrantedEffect, true) end end table.insert(support, temp) table.insert(supportExport, temp1) elseif not skillGem.IsSupport and types[i] == colour and not gemEffect.Id:match("Unknown") and not gemEffect.Id:match("Playtest") and not gemEffect.GrantedEffect.ActiveSkill.DisplayName:match("DNT") and not skillGem.BaseItemType.Name:match("DNT") - and (gemEffect.Id:match("UniqueBreach") or dat("SkillGemSupports"):GetRow("ActiveGem", dat("SkillGems"):GetRow("BaseItemType", dat("BaseItemTypes"):GetRow("Id", skillGem.BaseItemType.Id)))) then + and (gemEffect.Id:match("UniqueBreach") or dat("SkillGemSupports"):GetRow("ActiveGem", dat("SkillGems"):GetRow("BaseItemType", dat("BaseItemTypes"):GetRow("Id", skillGem.BaseItemType.Id))) + or gemEffect.GrantedEffect.ActiveSkill.DisplayName:match("Tame Beast")) then local temp = gemEffect.GrantedEffect.ActiveSkill.DisplayName..string.rep(" ", 30 - string.len(gemEffect.GrantedEffect.ActiveSkill.DisplayName)).."\t\t----\t\t"..gemEffect.GrantedEffect.Id local temp1 = gemEffect.GrantedEffect.ActiveSkill.DisplayName..grantedEffectString(gemEffect.GrantedEffect) if gemEffect.AdditionalGrantedEffects then @@ -82,21 +93,21 @@ for i, _ in ipairs(types) do end out:write("\t\t\t\t\t\t--------- Active "..types[i].." ---------\n") - if export == false then - out:write(table.concat(active, "\n")) - else - out:write(table.concat(activeExport, "\n")) - end + out:write(table.concat(active, "\n")) out:write('\n\n') out:write("\t\t\t\t\t\t--------- Support "..types[i].." ---------\n") - if export == false then - out:write(table.concat(support, "\n")) - else - out:write(table.concat(supportExport, "\n")) - end + out:write(table.concat(support, "\n")) out:write('\n\n') + + export:write("\t\t\t\t\t\t--------- Active "..types[i].." ---------\n") + export:write(table.concat(activeExport, "\n")) + export:write('\n\n') + export:write("\t\t\t\t\t\t--------- Support "..types[i].." ---------\n") + export:write(table.concat(supportExport, "\n")) + export:write('\n\n') end out:close() +export:close() -print("Skill gems exported.") +print("Skill gem list exported.") diff --git a/src/Export/Scripts/skills.lua b/src/Export/Scripts/skills.lua index f9f3b6cf19..c321432d29 100644 --- a/src/Export/Scripts/skills.lua +++ b/src/Export/Scripts/skills.lua @@ -304,6 +304,23 @@ directiveTable.skill = function(state, args, out) out:write(mapAST(type), ', ') end out:write('},\n') + if skillGem then + local gemFamily = { } + local supportGem = dat("SupportGems"):GetRow("SkillGem", dat("SkillGems"):GetRow("BaseItemType", dat("BaseItemTypes"):GetRow("Id", skillGem.BaseItemType.Id))) + for _, type in ipairs(supportGem.Family) do + table.insert(gemFamily, type.Id) + end + if next(gemFamily) then + out:write('\tgemFamily = { ') + for _, type in ipairs(gemFamily) do + out:write('"', type, '",') + end + out:write('},\n') + end + if supportGem.Lineage then + out:write('\tisLineage = true,\n') + end + end if skill.isTrigger then out:write('\tisTrigger = true,\n') end @@ -418,6 +435,9 @@ end directiveTable.set = function(state, args, out) local statSetId = args local originalGrantedEffectStatSet = dat("GrantedEffectStatSets"):GetRow("Id", statSetId) + if dat("GrantedEffectStatSetsPerLevel"):GetRowList("GrantedEffectStatSets", originalGrantedEffectStatSet) == nil or originalGrantedEffectStatSet == nil then + ConPrintf(args.." is not a valid Granted Effect") + end local grantedEffectStatSet = copyTableSafe(originalGrantedEffectStatSet, false, true) local statsPerLevel = copyTableSafe(dat("GrantedEffectStatSetsPerLevel"):GetRowList("GrantedEffectStatSets", originalGrantedEffectStatSet), false, true) local label = grantedEffectStatSet.LabelType and grantedEffectStatSet.LabelType.Label or state.skill.displayName @@ -861,6 +881,16 @@ for skillGem in dat("SkillGems"):Rows() do end end out:write('\t\tgemType = "', gemType, '",\n') + if skillGem.IsSupport then + local gemFamily = { } + local supportGem = dat("SupportGems"):GetRow("SkillGem", dat("SkillGems"):GetRow("BaseItemType", dat("BaseItemTypes"):GetRow("Id", skillGem.BaseItemType.Id))) + for _, type in ipairs(supportGem.Family) do + table.insert(gemFamily, type.Name) + end + if next(gemFamily) then + out:write('\t\tgemFamily = "', table.concat(gemFamily, ", "), '",\n') + end + end out:write('\t\ttagString = "', table.concat(tagNames, ", "), '",\n') if next(weaponRequirement) then out:write('\t\tweaponRequirements = "', table.concat(weaponRequirement, ", "), '",\n') diff --git a/src/Export/Scripts/statdesc.lua b/src/Export/Scripts/statdesc.lua index fd2152d7e1..316e3b9db9 100644 --- a/src/Export/Scripts/statdesc.lua +++ b/src/Export/Scripts/statdesc.lua @@ -45,7 +45,7 @@ local function processStatFile(name, changeOutLocation) elseif curLang and not line:match('table_only') then local statLimits, text, special = line:match('([%d%-#!| ]+)%s*"(.-)"%s*(.*)') if statLimits then - local desc = { text = escapeGGGString(text):gsub("\\([^nb])", "\\n%1"), limit = { } } + local desc = { text = sanitiseText(escapeGGGString(text)):gsub("\\([^nb])", "\\n%1"), limit = { } } for statLimit in statLimits:gmatch("[!%d%-#|]+") do local limit = { } diff --git a/src/Export/Skills/SkillGems.txt b/src/Export/Skills/SkillGems.txt index 74bcd2b29a..661dc2ff49 100644 --- a/src/Export/Skills/SkillGems.txt +++ b/src/Export/Skills/SkillGems.txt @@ -323,6 +323,7 @@ Spearfield ---- SpearfieldPlayer Spiral Volley ---- SpiralVolleyPlayer Storm Lance ---- StormLancePlayer Stormcaller Arrow ---- StormcallerArrowPlayer +Tame Beast ---- TameBeastPlayer Thunderous Leap ---- ThunderousLeapPlayer Tornado Shot ---- TornadoShotPlayer Toxic Domain ---- ToxicDomainPlayer diff --git a/src/Export/Skills/SkillGemsExport.txt b/src/Export/Skills/SkillGemsExport.txt new file mode 100644 index 0000000000..3f083d790f --- /dev/null +++ b/src/Export/Skills/SkillGemsExport.txt @@ -0,0 +1,5579 @@ +-- This file is automatically generated, do not edit! +-- Gem data (c) Grinding Gear Games + + --------- Active Strength --------- +#skill AncestralCryPlayer +#set AncestralCryPlayer +#flags +#mods +#skillEnd + +#skill AncestralCryShockwavePlayer +#set AncestralCryShockwavePlayer +#flags +#mods +#skillEnd + +#skill AncestralCryProjectilePlayer +#set AncestralCryProjectilePlayer +#flags +#mods +#skillEnd + +#skill AncestralWarriorTotemPlayer +#set AncestralWarriorTotemPlayer +#flags +#mods +#skillEnd + +#skill SupportAncestralWarriorTotemPlayer +#set SupportAncestralWarriorTotemPlayer +#mods +#skillEnd + +#skill ArmourBreakerPlayer +#set ArmourBreakerPlayer +#flags +#mods +#skillEnd + +#skill ArtilleryBallistaPlayer +#set ArtilleryBallistaPlayer +#flags +#mods +#skillEnd + +#skill ArtilleryBallistaProjectilePlayer +#set ArtilleryBallistaProjectilePlayer +#flags +#mods +#skillEnd + +#skill AttritionPlayer +#set AttritionPlayer +#flags +#mods +#skillEnd + +#skill BerserkPlayer +#set BerserkPlayer +#flags +#mods +#skillEnd + +#skill BlackPowderBlitzReservationPlayer +#set BlackPowderBlitzReservationPlayer +#flags +#mods +#skillEnd + +#skill BlackPowderBlitzPlayer +#set BlackPowderBlitzPlayer +#flags +#mods +#skillEnd + +#skill BoneshatterPlayer +#set BoneshatterPlayer +#flags +#mods +#set BoneshatterShockwavePlayer +#flags +#mods +#skillEnd + +#skill MetaCastOnBlockPlayer +#set MetaCastOnBlockPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnBlockPlayer +#set SupportMetaCastOnBlockPlayer +#mods +#skillEnd + +#skill MetaCastOnMeleeKillPlayer +#set MetaCastOnMeleeKillPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnMeleeKillPlayer +#set SupportMetaCastOnMeleeKillPlayer +#mods +#skillEnd + +#skill MetaCastOnMeleeStunPlayer +#set MetaCastOnMeleeStunPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnMeleeStunPlayer +#set SupportMetaCastOnMeleeStunPlayer +#mods +#skillEnd + +#skill ClusterGrenadePlayer +#set ClusterGrenadePlayer +#flags +#mods +#set ClusterGrenadeMiniPlayer +#flags +#mods +#skillEnd + +#skill CrossbowRequiemAmmoPlayer +#set CrossbowRequiemAmmoPlayer +#flags +#mods +#skillEnd + +#skill CrossbowRequiemPlayer +#set CrossbowRequiemPlayer +#flags +#mods +#skillEnd + +#skill StaffConsecratePlayer +#set StaffConsecratePlayer +#flags +#mods +#skillEnd + +#skill DefianceBannerReservationPlayer +#set DefianceBannerReservationPlayer +#flags +#mods +#skillEnd + +#skill DefianceBannerPlayer +#set DefianceBannerPlayer +#flags +#mods +#skillEnd + +#skill DreadBannerReservationPlayer +#set DreadBannerReservationPlayer +#flags +#mods +#skillEnd + +#skill DreadBannerPlayer +#set DreadBannerPlayer +#flags +#mods +#skillEnd + +#skill EarthquakePlayer +#set EarthquakePlayer +#flags +#mods +#set EarthquakeAftershockPlayer +#flags +#mods +#skillEnd + +#skill EarthshatterPlayer +#set EarthshatterPlayer +#flags +#mods +#set EarthshatterSpikePlayer +#flags +#mods +#skillEnd + +#skill EmergencyReloadPlayer +#set EmergencyReloadPlayer +#flags +#mods +#skillEnd + +#skill ExplosiveGrenadePlayer +#set ExplosiveGrenadePlayer +#flags +#mods +#skillEnd + +#skill FlashGrenadePlayer +#set FlashGrenadePlayer +#flags +#mods +#skillEnd + +#skill ForgeHammerPlayer +#set ForgeHammerPlayer +#flags +#mods +#set ForgeHammerFissurePlayer +#flags +#mods +#skillEnd + +#skill FortifyingCryPlayer +#set FortifyingCryPlayer +#flags +#mods +#skillEnd + +#skill FortifyingCryShockwavePlayer +#set FortifyingCryShockwavePlayer +#flags +#mods +#skillEnd + +#skill ToxicGrenadePlayer +#set ToxicGrenadePlayer +#flags +#mods +#set ToxicGrenadeCloudPlayer +#flags +#mods +#set ToxicGrenadeCloudExplosionPlayer +#flags +#mods +#skillEnd + +#skill GeminiSurgePlayer +#set GeminiSurgeColdPlayer +#flags +#mods +#set GeminiSurgeFirePlayer +#flags +#mods +#skillEnd + +#skill HammerOfTheGodsPlayer +#set HammerOfTheGodsPlayer +#flags +#mods +#skillEnd + +#skill HeraldOfAshPlayer +#set HeraldOfAshPlayer +#flags +#mods +#set HeraldOfAshOnKillPlayer +#flags +#mods +#skillEnd + +#skill UniqueHeraldOfAshPlayer +#set UniqueHeraldOfAshPlayer +#flags +#mods +#set UniqueHeraldOfAshOnKillPlayer +#flags +#mods +#skillEnd + +#skill HeraldOfBloodPlayer +#set HeraldOfBloodPlayer +#flags +#mods +#set HeraldOfBloodExplosionPlayer +#flags +#mods +#skillEnd + +#skill InfernalCryPlayer +#set InfernalCryPlayer +#flags +#mods +#skillEnd + +#skill InfernalCryCorpseExplosionPlayer +#set InfernalCryCorpseExplosionPlayer +#flags +#mods +#skillEnd + +#skill IronWardPlayer +#set IronWardPlayer +#flags +#mods +#skillEnd + +#skill IronWardNovaPlayer +#set IronWardNovaPlayer +#flags +#mods +#skillEnd + +#skill LeapSlamPlayer +#set LeapSlamPlayer +#flags +#mods +#skillEnd + +#skill ArmourPiercingBoltsAmmoPlayer +#set ArmourPiercingBoltsAmmoPlayer +#flags +#mods +#skillEnd + +#skill ArmourPiercingBoltsPlayer +#set ArmourPiercingBoltsPlayer +#flags +#mods +#skillEnd + +#skill ExplosiveShotAmmoPlayer +#set ExplosiveShotAmmoPlayer +#flags +#mods +#skillEnd + +#skill ExplosiveShotPlayer +#set ExplosiveShotPlayer +#flags +#mods +#set ExplosiveShotExplosionPlayer +#flags +#mods +#skillEnd + +#skill FragmentationRoundsAmmoPlayer +#set FragmentationRoundsAmmoPlayer +#flags +#mods +#skillEnd + +#skill FragmentationRoundsPlayer +#set FragmentationRoundsPlayer +#flags +#mods +#set FragmentationRoundsFreezeShatterPlayer +#flags +#mods +#skillEnd + +#skill GalvanicShardsAmmoPlayer +#set GalvanicShardsAmmoPlayer +#flags +#mods +#skillEnd + +#skill GalvanicShardsPlayer +#set GalvanicShardsPlayer +#flags +#mods +#set GalvanicShardsBeamPlayer +#flags +#mods +#skillEnd + +#skill GlacialBoltAmmoPlayer +#set GlacialBoltAmmoPlayer +#flags +#mods +#skillEnd + +#skill GlacialBoltPlayer +#set GlacialBoltPlayer +#flags +#mods +#set GlacialBoltWallPlayer +#flags +#mods +#skillEnd + +#skill HailstormRoundsAmmoPlayer +#set HailstormRoundsAmmoPlayer +#flags +#mods +#skillEnd + +#skill HailstormRoundsPlayer +#set HailstormRoundsPlayer +#flags +#mods +#skillEnd + +#skill HighVelocityRoundsAmmoPlayer +#set HighVelocityRoundsAmmoPlayer +#flags +#mods +#skillEnd + +#skill HighVelocityRoundsPlayer +#set HighVelocityRoundsPlayer +#flags +#mods +#set HighVelocityRoundsArmourBrokenPlayer +#flags +#mods +#skillEnd + +#skill IceShardsAmmoPlayer +#set IceShardsAmmoPlayer +#flags +#mods +#skillEnd + +#skill IceShardsPlayer +#set IceShardsPlayer +#flags +#mods +#set IceShardsShardPlayer +#flags +#mods +#skillEnd + +#skill IncendiaryShotAmmoPlayer +#set IncendiaryShotAmmoPlayer +#flags +#mods +#skillEnd + +#skill IncendiaryShotPlayer +#set IncendiaryShotPlayer +#flags +#mods +#skillEnd + +#skill PermafrostBoltsAmmoPlayer +#set PermafrostBoltsAmmoPlayer +#flags +#mods +#skillEnd + +#skill PermafrostBoltsPlayer +#set PermafrostBoltsPlayer +#flags +#mods +#skillEnd + +#skill PlasmaBlastAmmoPlayer +#set PlasmaBlastAmmoPlayer +#flags +#mods +#skillEnd + +#skill PlasmaBlastPlayer +#set PlasmaBlastPlayer +#flags +#mods +#set PlasmaBlastExplosionPlayer +#flags +#mods +#skillEnd + +#skill RapidShotAmmoPlayer +#set RapidShotAmmoPlayer +#flags +#mods +#skillEnd + +#skill RapidShotPlayer +#set RapidShotPlayer +#flags +#mods +#skillEnd + +#skill ShockburstRoundsAmmoPlayer +#set ShockburstRoundsAmmoPlayer +#flags +#mods +#skillEnd + +#skill ShockburstRoundsPlayer +#set ShockburstRoundsPlayer +#flags +#mods +#set ShockburstRoundsExplosionPlayer +#flags +#mods +#skillEnd + +#skill SiegeCascadeAmmoPlayer +#set SiegeCascadeAmmoPlayer +#flags +#mods +#skillEnd + +#skill SiegeCascadePlayer +#set SiegeCascadePlayer +#flags +#mods +#set SiegeCascadeExplodePlayer +#flags +#mods +#skillEnd + +#skill StormblastBoltsAmmoPlayer +#set StormblastBoltsAmmoPlayer +#flags +#mods +#skillEnd + +#skill StormblastBoltsPlayer +#set StormblastBoltsPlayer +#flags +#mods +#set StormblastBoltsExplosionPlayer +#flags +#mods +#skillEnd + +#skill MagmaBarrierPlayer +#set MagmaBarrierPlayer +#flags +#mods +#skillEnd + +#skill MagmaSprayPlayer +#set MagmaSprayPlayer +#flags +#mods +#skillEnd + +#skill MoltenBlastPlayer +#set MoltenBlastPlayer +#flags +#mods +#set MoltenBlastSecondaryPlayer +#flags +#mods +#skillEnd + +#skill MetaMortarCannonPlayer +#set MetaMortarCannonPlayer +#flags +#mods +#skillEnd + +#skill SupportMortarCannonPlayer +#set SupportMortarCannonPlayer +#mods +#skillEnd + +#skill OilGrenadePlayer +#set OilGrenadePlayer +#flags +#mods +#skillEnd + +#skill OverwhelmingPresencePlayer +#set OverwhelmingPresencePlayer +#flags +#mods +#skillEnd + +#skill PerfectStrikePlayer +#set PerfectStrikePlayer +#flags +#mods +#set PerfectStrikeShockwavePlayer +#flags +#mods +#skillEnd + +#skill ResonatingShieldPlayer +#set ResonatingShieldPlayer +#flags +#mods +#skillEnd + +#skill RollingSlamPlayer +#set RollingSlamPlayer +#flags +#mods +#set RollingSlamFirstSlamPlayer +#flags +#mods +#set RollingSlamSecondSlamPlayer +#flags +#mods +#skillEnd + +#skill ScavengedPlatingPlayer +#set ScavengedPlatingPlayer +#flags +#mods +#skillEnd + +#skill SeismicCryPlayer +#set SeismicCryPlayer +#flags +#mods +#skillEnd + +#skill ShardScavengerPlayer +#set ShardScavengerPlayer +#flags +#mods +#skillEnd + +#skill ShieldChargePlayer +#set ShieldChargePlayer +#flags +#mods +#set ShieldChargeFinalConePlayer +#flags +#mods +#skillEnd + +#skill ShieldWallPlayer +#set ShieldWallPlayer +#flags +#mods +#skillEnd + +#skill ShockwaveTotemPlayer +#set ShockwaveTotemPlayer +#flags +#mods +#skillEnd + +#skill ShockwaveTotemQuakePlayer +#set ShockwaveTotemQuakePlayer +#flags +#mods +#set ShockwaveTotemJaggedQuakePlayer +#flags +#mods +#skillEnd + +#skill SiegeBallistaPlayer +#set SiegeBallistaPlayer +#flags +#mods +#skillEnd + +#skill SiegeBallistaProjectilePlayer +#set SiegeBallistaProjectilePlayer +#flags +#mods +#set SiegeBallistaProjectileExplodePlayer +#flags +#mods +#skillEnd + +#skill StampedePlayer +#set StampedePlayer +#flags +#mods +#set StampedeSlamPlayer +#flags +#mods +#set StampedeEruptionPlayer +#flags +#mods +#skillEnd + +#skill SunderPlayer +#set SunderPlayer +#flags +#mods +#set SunderShockwavePlayer +#flags +#mods +#skillEnd + +#skill SuperchargedSlamPlayer +#set SuperchargedSlamPlayer +#flags +#mods +#set SuperchargedSlamAftershockPlayer +#flags +#mods +#skillEnd + +#skill MetaCastLightningSpellOnHitPlayer +#set MetaCastLightningSpellOnHitPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastLightningSpellOnHitPlayer +#set SupportMetaCastLightningSpellOnHitPlayer +#mods +#skillEnd + +#skill TimeOfNeedPlayer +#set TimeOfNeedPlayer +#flags +#mods +#skillEnd + +#skill ValakosChargePlayer +#set ValakosChargePlayer +#flags +#mods +#set ValakosChargeArcPlayer +#flags +#mods +#skillEnd + +#skill VolcanicFissurePlayer +#set VolcanicFissurePlayer +#flags +#mods +#skillEnd + +#skill ShockGrenadePlayer +#set ShockGrenadePlayer +#flags +#mods +#skillEnd + +#skill WarBannerReservationPlayer +#set WarBannerReservationPlayer +#flags +#mods +#skillEnd + +#skill WarBannerPlayer +#set WarBannerPlayer +#flags +#mods +#skillEnd + + + --------- Support Strength --------- +#skill SupportAftershockChancePlayer +#set SupportAftershockChancePlayer +#mods +#skillEnd + +#skill SupportAftershockChancePlayerTwo +#set SupportAftershockChancePlayerTwo +#mods +#skillEnd + +#skill SupportAftershockChancePlayerThree +#set SupportAftershockChancePlayerThree +#mods +#skillEnd + +#skill SupportAmanamusTithePlayer +#set SupportAmanamusTithePlayer +#mods +#skillEnd + +#skill SupportAncestralAidPlayer +#set SupportAncestralAidPlayer +#mods +#skillEnd + +#skill SupportAncestralCallPlayer +#set SupportAncestralCallPlayer +#mods +#skillEnd + +#skill SupportAncestralCallPlayerTwo +#set SupportAncestralCallPlayerTwo +#mods +#skillEnd + +#skill SupportAncestralCallPlayerThree +#set SupportAncestralCallPlayerThree +#mods +#skillEnd + +#skill SupportArmourBreakPlayer +#set SupportArmourBreakPlayer +#mods +#skillEnd + +#skill SupportArmourBreakPlayerTwo +#set SupportArmourBreakPlayerTwo +#mods +#skillEnd + +#skill SupportArmourBreakPlayerThree +#set SupportArmourBreakPlayerThree +#mods +#skillEnd + +#skill SupportArmourDemolisherPlayer +#set SupportArmourDemolisherPlayer +#mods +#skillEnd + +#skill SupportArmourDemolisherPlayerTwo +#set SupportArmourDemolisherPlayerTwo +#mods +#skillEnd + +#skill SupportArmourExplosionPlayer +#set SupportArmourExplosionPlayer +#mods +#skillEnd + +#skill ArmourExplosionPlayer +#set ArmourExplosion +#flags +#mods +#skillEnd + +#skill SupportArmsLengthPlayer +#set SupportArmsLengthPlayer +#mods +#skillEnd + +#skill SupportAtaluiBloodlettingPlayer +#set SupportAtaluiBloodlettingPlayer +#mods +#skillEnd + +#skill SupportAutoReloadPlayer +#set SupportAutoReloadPlayer +#mods +#skillEnd + +#skill SupportBarbsPlayer +#set SupportBarbsPlayer +#mods +#skillEnd + +#skill SupportBarbsPlayerTwo +#set SupportBarbsPlayerTwo +#mods +#skillEnd + +#skill SupportBarbsPlayerThree +#set SupportBarbsPlayerThree +#mods +#skillEnd + +#skill SupportBattershoutPlayer +#set SupportBattershoutPlayer +#mods +#skillEnd + +#skill TriggeredBattershoutExplosionPlayer +#set TriggeredBattershoutExplosionPlayer +#flags +#mods +#skillEnd + +#skill SupportBeheadPlayer +#set SupportBeheadPlayer +#mods +#skillEnd + +#skill SupportBeheadPlayerTwo +#set SupportBeheadPlayerTwo +#mods +#skillEnd + +#skill SupportBleedPlayer +#set SupportBleedPlayer +#mods +#skillEnd + +#skill SupportBleedPlayerTwo +#set SupportBleedPlayerTwo +#mods +#skillEnd + +#skill SupportBleedPlayerThree +#set SupportBleedPlayerThree +#mods +#skillEnd + +#skill SupportBleedPlayerFour +#set SupportBleedPlayerFour +#mods +#skillEnd + +#skill SupportBloodlustPlayer +#set SupportBloodlustPlayer +#mods +#skillEnd + +#skill SupportBranchingFissuresPlayer +#set SupportBranchingFissuresPlayer +#mods +#skillEnd + +#skill SupportBranchingFissuresPlayerTwo +#set SupportBranchingFissuresPlayerTwo +#mods +#skillEnd + +#skill SupportEnduranceChargeOnArmourBreak +#set SupportEnduranceChargeOnArmourBreak +#mods +#skillEnd + +#skill SupportBrinkPlayer +#set SupportBrinkPlayer +#mods +#skillEnd + +#skill SupportBrinkPlayerTwo +#set SupportBrinkPlayerTwo +#mods +#skillEnd + +#skill SupportBrutalityPlayer +#set SupportBrutalityPlayer +#mods +#skillEnd + +#skill SupportBrutalityPlayerTwo +#set SupportBrutalityPlayerTwo +#mods +#skillEnd + +#skill SupportBrutalityPlayerThree +#set SupportBrutalityPlayerThree +#mods +#skillEnd + +#skill SupportBrutusBrainPlayer +#set SupportBrutusBrainPlayer +#mods +#skillEnd + +#skill SupportCannibalismPlayer +#set SupportCannibalismPlayer +#mods +#skillEnd + +#skill SupportCannibalismPlayerTwo +#set SupportCannibalismPlayerTwo +#mods +#skillEnd + +#skill SupportClashPlayer +#set SupportClashPlayer +#mods +#skillEnd + +#skill CompressedDurationSupportPlayer +#set CompressedDurationSupportPlayer +#mods +#skillEnd + +#skill CompressedDurationSupportPlayerTwo +#set CompressedDurationSupportPlayerTwo +#mods +#skillEnd + +#skill SupportConcoctPlayer +#set SupportConcoctPlayer +#mods +#skillEnd + +#skill SupportConcoctPlayerTwo +#set SupportConcoctPlayerTwo +#mods +#skillEnd + +#skill SupportCoolheadedPlayer +#set SupportCoolheadedPlayer +#mods +#skillEnd + +#skill SupportCorruptingCryPlayer +#set SupportCorruptingCryPlayer +#mods +#skillEnd + +#skill SupportCorruptingCryPlayerTwo +#set SupportCorruptingCryPlayerTwo +#mods +#skillEnd + +#skill SupportCraterPlayer +#set SupportCraterPlayer +#mods +#skillEnd + +#skill TriggeredCraterPlayer +#set TriggeredCraterPlayer +#flags +#mods +#skillEnd + +#skill SupportDaressosPassionPlayer +#set SupportDaressosPassionPlayer +#mods +#skillEnd + +#skill SupportDauntlessPlayer +#set SupportDauntlessPlayer +#mods +#skillEnd + +#skill SupportDazingCryPlayer +#set SupportDazingCryPlayer +#mods +#skillEnd + +#skill SupportDeepCutsPlayer +#set SupportDeepCutsPlayer +#mods +#skillEnd + +#skill SupportDeepCutsPlayerTwo +#set SupportDeepCutsPlayerTwo +#mods +#skillEnd + +#skill SupportDefyPlayer +#set SupportDefyPlayer +#mods +#skillEnd + +#skill SupportDefyPlayerTwo +#set SupportDefyPlayerTwo +#mods +#skillEnd + +#skill SupportDesperationPlayer +#set SupportDesperationPlayer +#mods +#skillEnd + +#skill SupportDevastatePlayer +#set SupportDevastatePlayer +#mods +#skillEnd + +#skill SupportDirestrikePlayer +#set SupportDirestrikePlayer +#mods +#skillEnd + +#skill SupportDirestrikePlayerTwo +#set SupportDirestrikePlayerTwo +#mods +#skillEnd + +#skill SupportDoubleBarrelPlayer +#set SupportDoubleBarrelPlayer +#mods +#skillEnd + +#skill SupportDoubleBarrelPlayerTwo +#set SupportDoubleBarrelPlayerTwo +#mods +#skillEnd + +#skill SupportDoubleBarrelPlayerThree +#set SupportDoubleBarrelPlayerThree +#mods +#skillEnd + +#skill SupportEfficiencyPlayer +#set SupportEfficiencyPlayer +#mods +#skillEnd + +#skill SupportEfficiencyPlayerTwo +#set SupportEfficiencyPlayerTwo +#mods +#skillEnd + +#skill SupportEinharsBeastritePlayer +#set SupportEinharsBeastritePlayer +#mods +#skillEnd + +#skill SupportElementalArmamentPlayer +#set SupportElementalArmamentPlayer +#mods +#skillEnd + +#skill SupportElementalArmamentPlayerTwo +#set SupportElementalArmamentPlayerTwo +#mods +#skillEnd + +#skill SupportElementalArmamentPlayerThree +#set SupportElementalArmamentPlayerThree +#mods +#skillEnd + +#skill SupportHeavyStunEndurancePlayerOne +#set SupportHeavyStunEndurancePlayerOne +#mods +#skillEnd + +#skill SupportHeavyStunEndurancePlayerTwo +#set SupportHeavyStunEndurancePlayerTwo +#mods +#skillEnd + +#skill SupportEnragedWarcryPlayer +#set SupportEnragedWarcryPlayer +#mods +#skillEnd + +#skill SupportEnragedWarcryPlayerTwo +#set SupportEnragedWarcryPlayerTwo +#mods +#skillEnd + +#skill SupportIgniteDurationPlayer +#set SupportIgniteDurationPlayer +#mods +#skillEnd + +#skill SupportIgniteDurationPlayerTwo +#set SupportIgniteDurationPlayerTwo +#mods +#skillEnd + +#skill SupportIgniteDurationPlayerThree +#set SupportIgniteDurationPlayerThree +#mods +#skillEnd + +#skill SupportExecutePlayer +#set SupportExecutePlayer +#mods +#skillEnd + +#skill SupportExecutePlayerTwo +#set SupportExecutePlayerTwo +#mods +#skillEnd + +#skill SupportExecutePlayerThree +#set SupportExecutePlayerThree +#mods +#skillEnd + +#skill SupportExploitWeaknessPlayer +#set SupportExploitWeaknessPlayer +#mods +#skillEnd + +#skill SupportAddedFireDamagePlayer +#set SupportAddedFireDamagePlayer +#mods +#skillEnd + +#skill SupportFireExposurePlayer +#set SupportFireExposurePlayer +#mods +#skillEnd + +#skill SupportFirePenetrationPlayer +#set SupportFirePenetrationPlayer +#mods +#skillEnd + +#skill SupportFirePenetrationPlayerTwo +#set SupportFirePenetrationPlayerTwo +#mods +#skillEnd + +#skill SupportFirstBloodPlayer +#set SupportFirstBloodPlayer +#mods +#skillEnd + +#skill FistOfWarSupportPlayer +#set FistOfWarSupportPlayer +#mods +#skillEnd + +#skill FistOfWarSupportPlayerTwo +#set FistOfWarSupportPlayerTwo +#mods +#skillEnd + +#skill FistOfWarSupportPlayerThree +#set FistOfWarSupportPlayerThree +#mods +#skillEnd + +#skill SupportFlamePillarPlayer +#set SupportFlamePillarPlayer +#mods +#skillEnd + +#skill TriggeredFlamePillarPlayer +#set TriggeredFlamePillarPlayer +#flags +#mods +#skillEnd + +#skill SupportFlamepiercePlayer +#set SupportFlamepiercePlayer +#mods +#skillEnd + +#skill SupportBloodFountainPlayer +#set SupportBloodFountainPlayer +#mods +#skillEnd + +#skill SupportRageFountainPlayer +#set SupportRageFountainPlayer +#mods +#skillEnd + +#skill SupportFreshClipPlayer +#set SupportFreshClipPlayer +#mods +#skillEnd + +#skill SupportFreshClipPlayerTwo +#set SupportFreshClipPlayerTwo +#mods +#skillEnd + +#skill SupportGreatwoodPlayer +#set SupportGreatwoodPlayer +#mods +#skillEnd + +#skill SupportGreatwoodPlayerTwo +#set SupportGreatwoodPlayerTwo +#mods +#skillEnd + +#skill SupportHaemocrystalsPlayer +#set SupportHaemocrystalsPlayer +#mods +#skillEnd + +#skill TriggeredHaemocrystalsPlayer +#set TriggeredHaemocrystalsPlayer +#flags +#mods +#skillEnd + +#skill SupportHardyTotemsPlayer +#set SupportHardyTotemsPlayer +#mods +#skillEnd + +#skill SupportHardyTotemsPlayerTwo +#set SupportHardyTotemsPlayerTwo +#mods +#skillEnd + +#skill SupportMeleePhysicalDamagePlayer +#set SupportMeleePhysicalDamagePlayer +#mods +#skillEnd + +#skill SupportHeftPlayer +#set SupportHeftPlayer +#mods +#skillEnd + +#skill SupportHerbalismPlayer +#set SupportHerbalismPlayer +#mods +#skillEnd + +#skill SupportHerbalismPlayerTwo +#set SupportHerbalismPlayerTwo +#mods +#skillEnd + +#skill SupportHolyDescentPlayer +#set SupportHolyDescentPlayer +#mods +#skillEnd + +#skill SupportIgnitePlayer +#set SupportIgnitePlayer +#mods +#skillEnd + +#skill SupportIgnitePlayerTwo +#set SupportIgnitePlayerTwo +#mods +#skillEnd + +#skill SupportIgnitePlayerThree +#set SupportIgnitePlayerThree +#mods +#skillEnd + +#skill SupportImmolatePlayer +#set SupportImmolatePlayer +#mods +#skillEnd + +#skill ImpactShockwaveSupportPlayer +#set ImpactShockwaveSupportPlayer +#mods +#skillEnd + +#skill SupportIncisionPlayer +#set SupportIncisionPlayer +#mods +#skillEnd + +#skill SupportInfernalLegionPlayer +#set SupportInfernalLegionPlayer +#mods +#skillEnd + +#skill SupportInfernalLegionPlayerTwo +#set SupportInfernalLegionPlayerTwo +#mods +#skillEnd + +#skill SupportInfernalLegionPlayerThree +#set SupportInfernalLegionPlayerThree +#mods +#skillEnd + +#skill SupportJaggedGroundPlayer +#set SupportJaggedGroundPlayer +#mods +#skillEnd + +#skill SupportJaggedGroundPlayerTwo +#set SupportJaggedGroundPlayerTwo +#mods +#skillEnd + +#skill SupportKaomsMadnessPlayer +#set SupportKaomsMadnessPlayer +#mods +#skillEnd + +#skill SupportKnockbackPlayer +#set SupportKnockbackPlayer +#mods +#skillEnd + +#skill SupportLastingGroundPlayer +#set SupportLastingGroundPlayer +#mods +#skillEnd + +#skill SupportLifeLeechPlayer +#set SupportLifeLeechPlayer +#mods +#skillEnd + +#skill SupportLifeLeechPlayerTwo +#set SupportLifeLeechPlayerTwo +#mods +#skillEnd + +#skill SupportLifeLeechPlayerThree +#set SupportLifeLeechPlayerThree +#mods +#skillEnd + +#skill SupportBloodMagicPlayer +#set SupportBloodMagicPlayer +#mods +#skillEnd + +#skill SupportLongFusePlayer +#set SupportLongFusePlayer +#mods +#skillEnd + +#skill SupportLongFusePlayerTwo +#set SupportLongFusePlayerTwo +#mods +#skillEnd + +#skill SupportMeatShieldPlayer +#set SupportMeatShieldPlayer +#mods +#skillEnd + +#skill SupportMeatShieldPlayerTwo +#set SupportMeatShieldPlayerTwo +#mods +#skillEnd + +#skill SupportCorruptingCryPlayerThree +#set SupportCorruptingCryPlayerThree +#mods +#skillEnd + +#skill SupportPersistentGroundPlayer +#set SupportPersistentGroundPlayer +#mods +#skillEnd + +#skill SupportPersistentGroundPlayerTwo +#set SupportPersistentGroundPlayerTwo +#mods +#skillEnd + +#skill SupportPersistentGroundPlayerThree +#set SupportPersistentGroundPlayerThree +#mods +#skillEnd + +#skill SupportEmpoweredDamagePlayer +#set SupportEmpoweredDamagePlayer +#mods +#skillEnd + +#skill ProlongedDurationSupportPlayer +#set ProlongedDurationSupportPlayer +#mods +#skillEnd + +#skill ProlongedDurationSupportPlayerTwo +#set ProlongedDurationSupportPlayerTwo +#mods +#skillEnd + +#skill ProlongedDurationSupportPlayerThree +#set ProlongedDurationSupportPlayerThree +#mods +#skillEnd + +#skill SupportQuillburstPlayer +#set SupportQuillburstPlayer +#mods +#skillEnd + +#skill TriggeredQuillburstPlayer +#set TriggeredQuillburstPlayer +#flags +#mods +#skillEnd + +#skill SupportRagePlayer +#set SupportRagePlayer +#mods +#skillEnd + +#skill SupportRagePlayerTwo +#set SupportRagePlayerTwo +#mods +#skillEnd + +#skill SupportRagePlayerThree +#set SupportRagePlayerThree +#mods +#skillEnd + +#skill SupportRageforgedPlayer +#set SupportRageforgedPlayer +#mods +#skillEnd + +#skill SupportRageforgedPlayerTwo +#set SupportRageforgedPlayerTwo +#mods +#skillEnd + +#skill SupportRagingCryPlayer +#set SupportRagingCryPlayer +#mods +#skillEnd + +#skill SupportRallyPlayer +#set SupportRallyPlayer +#mods +#skillEnd + +#skill SupportRefractionPlayer +#set SupportRefractionPlayer +#mods +#skillEnd + +#skill SupportRefractionPlayerTwo +#set SupportRefractionPlayerTwo +#mods +#skillEnd + +#skill SupportRefractionPlayerThree +#set SupportRefractionPlayerThree +#mods +#skillEnd + +#skill SupportReinforcedTotemsPlayer +#set SupportReinforcedTotemsPlayer +#mods +#skillEnd + +#skill SupportReinforcedTotemsPlayerTwo +#set SupportReinforcedTotemsPlayerTwo +#mods +#skillEnd + +#skill SupportRelentlessRagePlayer +#set SupportRelentlessRagePlayer +#mods +#skillEnd + +#skill SupportInterludePlayer +#set SupportInterludePlayer +#mods +#skillEnd + +#skill SupportInterludePlayerTwo +#set SupportInterludePlayerTwo +#mods +#skillEnd + +#skill SupportInterludePlayerThree +#set SupportInterludePlayerThree +#mods +#skillEnd + +#skill SupportRetaliatePlayer +#set SupportRetaliatePlayer +#mods +#skillEnd + +#skill SupportRetaliatePlayerTwo +#set SupportRetaliatePlayerTwo +#mods +#skillEnd + +#skill SupportReveberatePlayer +#set SupportReveberatePlayer +#mods +#skillEnd + +#skill SupportRipPlayer +#set SupportRipPlayer +#mods +#skillEnd + +#skill SupportRupturePlayer +#set SupportRupturePlayer +#mods +#skillEnd + +#skill SupportRustedSpikesPlayer +#set SupportRustedSpikesPlayer +#mods +#skillEnd + +#skill RuthlessSupportPlayer +#set RuthlessSupportPlayer +#mods +#skillEnd + +#skill SupportDeadlyIgnitesPlayer +#set SupportDeadlyIgnitesPlayer +#mods +#skillEnd + +#skill SupportDeadlyIgnitesPlayerTwo +#set SupportDeadlyIgnitesPlayerTwo +#mods +#skillEnd + +#skill SupportSeeRedPlayer +#set SupportSeeRedPlayer +#mods +#skillEnd + +#skill SupportSelflessRemnantsPlayer +#set SupportSelflessRemnantsPlayer +#mods +#skillEnd + +#skill SupportShortFusePlayer +#set SupportShortFusePlayer +#mods +#skillEnd + +#skill SupportShortFusePlayerTwo +#set SupportShortFusePlayerTwo +#mods +#skillEnd + +#skill SupportSkitteringStonePlayer +#set SupportSkitteringStonePlayer +#mods +#skillEnd + +#skill TriggeredSkitteringStonePlayer +#set TriggeredSkitteringStonePlayer +#flags +#mods +#skillEnd + +#skill SupportSkitteringStonePlayerTwo +#set SupportSkitteringStonePlayerTwo +#mods +#skillEnd + +#skill TriggeredSkitteringStonePlayerTwo +#set TriggeredSkitteringStonePlayerTwo +#flags +#mods +#skillEnd + +#skill SupportSparPlayer +#set SupportSparPlayer +#mods +#skillEnd + +#skill SupportSteadfastPlayer +#set SupportSteadfastPlayer +#mods +#skillEnd + +#skill SupportSteadfastPlayerTwo +#set SupportSteadfastPlayerTwo +#mods +#skillEnd + +#skill SupportStoicismPlayer +#set SupportStoicismPlayer +#mods +#skillEnd + +#skill SupportStoicismPlayerTwo +#set SupportStoicismPlayerTwo +#mods +#skillEnd + +#skill SupportStompingGroundPlayer +#set SupportStompingGroundPlayer +#mods +#skillEnd + +#skill StompingGroundShockwavePlayer +#set StompingGroundShockwavePlayer +#flags +#mods +#skillEnd + +#skill SupportStunPlayer +#set SupportStunPlayer +#mods +#skillEnd + +#skill SupportStunPlayerTwo +#set SupportStunPlayerTwo +#mods +#skillEnd + +#skill SupportStunPlayerThree +#set SupportStunPlayerThree +#mods +#skillEnd + +#skill SupportSyzygyPlayer +#set SupportSyzygyPlayer +#mods +#skillEnd + +#skill SupportHardyTotemsPlayerThree +#set SupportHardyTotemsPlayerThree +#mods +#skillEnd + +#skill TriggeredSplinterExplosionHardyTotems +#set TriggeredSplinterExplosionHardyTotems +#flags +#mods +#skillEnd + +#skill SupportTearPlayer +#set SupportTearPlayer +#mods +#skillEnd + +#skill SupportThornskinPlayer +#set SupportThornskinPlayer +#mods +#skillEnd + +#skill SupportThornskinPlayerTwo +#set SupportThornskinPlayerTwo +#mods +#skillEnd + +#skill SupportTirelessPlayer +#set SupportTirelessPlayer +#mods +#skillEnd + +#skill SupportTremorsPlayer +#set SupportTremorsPlayer +#mods +#skillEnd + +#skill SupportUhtredAuguryPlayer +#set SupportUhtredAuguryPlayer +#mods +#skillEnd + +#skill SupportUhtredExodusPlayer +#set SupportUhtredExodusPlayer +#mods +#skillEnd + +#skill SupportUhtredOmenPlayer +#set SupportUhtredOmenPlayer +#mods +#skillEnd + +#skill SupportUnabatingPlayer +#set SupportUnabatingPlayer +#mods +#skillEnd + +#skill UnbreakableSupportPlayer +#set UnbreakableSupportPlayer +#mods +#skillEnd + +#skill SupportUnderminePlayer +#set SupportUnderminePlayer +#mods +#skillEnd + +#skill SupportUnsteadyTempoPlayer +#set SupportUnsteadyTempoPlayer +#mods +#skillEnd + +#skill SupportUnyieldingPlayer +#set SupportUnyieldingPlayer +#mods +#skillEnd + +#skill SupportUpheavalPlayer +#set SupportUpheavalPlayer +#mods +#skillEnd + +#skill SupportUpheavalPlayerTwo +#set SupportUpheavalPlayerTwo +#mods +#skillEnd + +#skill SupportUrgentTotemsPlayer +#set SupportUrgentTotemsPlayer +#mods +#skillEnd + +#skill SupportUrgentTotemsPlayerTwo +#set SupportUrgentTotemsPlayerTwo +#mods +#skillEnd + +#skill SupportUrgentTotemsPlayerThree +#set SupportUrgentTotemsPlayerThree +#mods +#skillEnd + +#skill SupportUruksSmeltingPlayer +#set SupportUruksSmeltingPlayer +#mods +#skillEnd + +#skill SupportUulNetolsEmbracePlayer +#set SupportUulNetolsEmbracePlayer +#mods +#skillEnd + +#skill SupportVanguardPlayer +#set SupportVanguardPlayer +#mods +#skillEnd + +#skill SupportVanguardPlayerTwo +#set SupportVanguardPlayerTwo +#mods +#skillEnd + +#skill SupportVitalityPlayer +#set SupportVitalityPlayer +#mods +#skillEnd + +#skill SupportVitalityPlayerTwo +#set SupportVitalityPlayerTwo +#mods +#skillEnd + +#skill SupportVolcanicEruptionPlayer +#set SupportVolcanicEruptionPlayer +#mods +#skillEnd + +#skill TriggeredVolcanicEruptionPlayer +#set TriggeredVolcanicEruptionPlayer +#flags +#mods +#skillEnd + +#skill SupportXophsPyrePlayer +#set SupportXophsPyrePlayer +#mods +#skillEnd + + + --------- Active Dexterity --------- +#skill AlchemistsBoonPlayer +#set AlchemistsBoonPlayer +#flags +#mods +#skillEnd + +#skill BarragePlayer +#set BarragePlayer +#flags +#mods +#skillEnd + +#skill BloodHuntPlayer +#set BloodHuntPlayer +#flags +#mods +#set BloodHuntExplosionPlayer +#flags +#mods +#skillEnd + +#skill BloodhoundsMarkPlayer +#set BloodhoundsMarkPlayer +#flags +#mods +#skillEnd + +#skill BloodhoundsMarkExplosionPlayer +#set BloodhoundsMarkExplosionPlayer +#flags +#mods +#skillEnd + +#skill CombatFrenzyPlayer +#set CombatFrenzyPlayer +#flags +#mods +#skillEnd + +#skill SummonBeastPlayer +#set SummonBeastPlayer +#flags +#mods +#skillEnd + +#skill CullTheWeakPlayer +#set CullTheWeakPlayer +#flags +#mods +#skillEnd + +#skill DetonatingArrowPlayer +#set DetonatingArrowPlayer +#flags +#mods +#set DetonatingArrowExplosionPlayer +#flags +#mods +#skillEnd + +#skill DisengagePlayer +#set DisengagePlayer +#flags +#mods +#set DisengageShockwavePlayer +#flags +#mods +#skillEnd + +#skill ElectrocutingArrowPlayer +#set ElectrocutingArrowPlayer +#flags +#mods +#skillEnd + +#skill ElementalSiphonPlayer +#set ElementalSiphonPlayer +#flags +#mods +#set ElementalSiphonColdPlayer +#flags +#mods +#set ElementalSiphonFirePlayer +#flags +#mods +#set ElementalSiphonLightningPlayer +#flags +#mods +#skillEnd + +#skill ElementalSunderingPlayer +#set ElementalSunderingPlayer +#flags +#mods +#set ElementalSunderingColdPlayer +#flags +#mods +#set ElementalSunderingFirePlayer +#flags +#mods +#set ElementalSunderingLightningPlayer +#flags +#mods +#skillEnd + +#skill EscapeShotPlayer +#set EscapeShotPlayer +#flags +#mods +#skillEnd + +#skill EscapeShotIceFragmentPlayer +#set EscapeShotIceFragmentPlayer +#flags +#mods +#skillEnd + +#skill ExplosiveSpearPlayer +#set ExplosiveSpearPlayer +#flags +#mods +#set ExplosiveSpearExplodePlayer +#flags +#mods +#set ExplosiveSpearInfusedExplodePlayer +#flags +#mods +#skillEnd + +#skill FangsOfFrostPlayer +#set FangsOfFrostPlayer +#flags +#mods +#set FangsOfFrostBurstPlayer +#flags +#mods +#skillEnd + +#skill FreezingSalvoPlayer +#set FreezingSalvoPlayer +#flags +#mods +#skillEnd + +#skill GasArrowPlayer +#set GasArrowPlayer +#flags +#mods +#set GasArrowGasDegenPlayer +#flags +#mods +#set GasArrowGasExplosionPlayer +#flags +#mods +#skillEnd + +#skill GlacialLancePlayer +#set GlacialLancePlayer +#flags +#mods +#set GlacialLanceWallsPlayer +#flags +#mods +#skillEnd + +#skill HeraldOfPlaguePlayer +#set HeraldOfPlaguePlayer +#flags +#mods +#skillEnd + +#skill HeraldOfThunderPlayer +#set HeraldOfThunderPlayer +#flags +#mods +#set HeraldOfThunderOnKillPlayer +#flags +#mods +#skillEnd + +#skill UniqueHeraldOfThunderPlayer +#set UniqueHeraldOfThunderPlayer +#flags +#mods +#set UniqueHeraldOfThunderOnKillPlayer +#flags +#mods +#skillEnd + +#skill IceShotPlayer +#set IceShotPlayer +#flags +#mods +#set IceShotShardPlayer +#flags +#mods +#skillEnd + +#skill IceTippedArrowsPlayer +#set IceTippedArrowsPlayer +#flags +#mods +#skillEnd + +#skill IceTippedArrowsIceFragmentPlayer +#set IceTippedArrowsIceFragmentPlayer +#flags +#mods +#skillEnd + +#skill LightningArrowPlayer +#set LightningArrowPlayer +#flags +#mods +#set LightningArrowArcPlayer +#flags +#mods +#skillEnd + +#skill LightningRodPlayer +#set LightningRodPlayer +#flags +#mods +#skillEnd + +#skill LightningSpearPlayer +#set LightningSpearPlayer +#flags +#mods +#set LightningSpearSecondaryProjectilePlayer +#flags +#mods +#skillEnd + +#skill MagneticSalvoPlayer +#set MagneticSalvoPlayer +#flags +#mods +#set MagneticSalvoEmpoweredPlayer +#flags +#mods +#skillEnd + +#skill MetaMirageArcherPlayer +#set MetaMirageArcherPlayer +#flags +#mods +#skillEnd + +#skill SupportMirageArcherPlayer +#set SupportMirageArcherPlayer +#mods +#skillEnd + +#skill MirageArcherSpawnPlayer +#set MirageArcherSpawnPlayer +#flags +#mods +#skillEnd + +#skill PhantasmalArrowPlayer +#set PhantasmalArrowPlayer +#flags +#mods +#set PhantasmalArrowExplosionPlayer +#flags +#mods +#skillEnd + +#skill PlagueBearerPlayer +#set PlagueBearerPlayer +#flags +#mods +#skillEnd + +#skill PlagueBearerNovaPlayer +#set PlagueBearerNovaPlayer +#flags +#mods +#skillEnd + +#skill PoisonBurstArrowPlayer +#set PoisonBurstArrowPlayer +#flags +#mods +#set PoisonBurstArrowCloudPlayer +#flags +#mods +#skillEnd + +#skill PrimalStrikesPlayer +#set PrimalStrikesPlayer +#flags +#mods +#set PrimalStrikesFinalPlayer +#flags +#mods +#set PrimalStrikesStagWavePlayer +#flags +#mods +#skillEnd + +#skill RainOfArrowsPlayer +#set RainOfArrowsPlayer +#flags +#mods +#skillEnd + +#skill RakePlayer +#set RakePlayer +#flags +#mods +#skillEnd + +#skill RapidAssaultPlayer +#set RapidAssaultPlayer +#flags +#mods +#set RapidAssaultFinalHitPlayer +#flags +#mods +#set RapidAssaultDetonation +#flags +#mods +#skillEnd + +#skill RhoaMountPlayer +#set RhoaMountPlayer +#flags +#mods +#skillEnd + +#skill ShockchainArrowPlayer +#set ShockchainArrowPlayer +#flags +#mods +#set ShockchainArrowBeamPlayer +#flags +#mods +#set ShockchainArrowExplosionPlayer +#flags +#mods +#skillEnd + +#skill SnipePlayer +#set SnipePlayer +#flags +#mods +#set SnipeExplosionPlayer +#flags +#mods +#set SnipeHeavyExplosionPlayer +#flags +#mods +#set SnipeFrozenExplosionPlayer +#flags +#mods +#skillEnd + +#skill SnipersMarkPlayer +#set SnipersMarkPlayer +#flags +#mods +#skillEnd + +#skill SpearOfSolarisPlayer +#set SpearOfSolarisImpactPlayer +#flags +#mods +#set SpearOfSolarisPulsePlayer +#flags +#mods +#set SpearOfSolarisGroundPlayer +#flags +#mods +#skillEnd + +#skill SpearfieldPlayer +#set SpearfieldPlayer +#flags +#mods +#set SpearfieldHazardPlayer +#flags +#mods +#skillEnd + +#skill SpiralVolleyPlayer +#set SpiralVolleyPlayer +#flags +#mods +#skillEnd + +#skill StormLancePlayer +#set StormLancePlayer +#flags +#mods +#set StormLanceInfusedPlayer +#flags +#mods +#set StormLanceBeamPlayer +#flags +#mods +#set StormLanceDetonatedBeamPlayer +#flags +#mods +#skillEnd + +#skill StormcallerArrowPlayer +#set StormcallerArrowPlayer +#flags +#mods +#set StormcallerArrowBoltPlayer +#flags +#mods +#skillEnd + +#skill TameBeastPlayer +#set TameBeastPlayer +#flags +#mods +#skillEnd + +#skill ThunderousLeapPlayer +#set ThunderousLeapPlayer +#flags +#mods +#skillEnd + +#skill TornadoShotPlayer +#set TornadoShotPlayer +#flags +#mods +#set TornadoShotNovaPlayer +#flags +#mods +#skillEnd + +#skill ToxicDomainPlayer +#set ToxicDomainPlayer +#flags +#mods +#set ToxicDomainPustuleExplosion +#flags +#mods +#skillEnd + +#skill ToxicGrowthPlayer +#set ToxicGrowthPlayer +#flags +#mods +#set ToxicGrowthBurstPlayer +#flags +#mods +#skillEnd + +#skill TrailOfCaltropsPlayer +#set TrailOfCaltropsPlayer +#flags +#mods +#skillEnd + +#skill TriggeredTrailOfCaltropsPlayer +#set TriggeredTrailOfCaltropsPlayer +#flags +#mods +#skillEnd + +#skill TwisterPlayer +#set TwisterPlayer +#flags +#mods +#skillEnd + +#skill VineArrowPlayer +#set VineArrowPlayer +#flags +#mods +#set VineArrowFlowerPlayer +#flags +#mods +#skillEnd + +#skill VoltaicMarkPlayer +#set VoltaicMarkPlayer +#flags +#mods +#skillEnd + +#skill TriggeredVoltaicMarkNovaPlayer +#set TriggeredVoltaicMarkNovaPlayer +#flags +#mods +#skillEnd + +#skill WhirlingSlashPlayer +#set WhirlingSlashPlayer +#flags +#mods +#set WhirlingSlashSandstormPlayer +#flags +#mods +#skillEnd + +#skill WhirlwindLancePlayer +#set WhirlwindLancePlayer +#flags +#mods +#set WhirlwindLanceStormPlayer +#flags +#mods +#skillEnd + +#skill WindDancerPlayer +#set WindDancerPlayer +#flags +#mods +#skillEnd + +#skill TriggeredWindDancerPlayer +#set TriggeredWindDancerPlayer +#flags +#mods +#skillEnd + +#skill WindSerpentsFuryPlayer +#set WindSerpentsFuryPlayer +#flags +#mods +#set WindSerpentsFurySnakePlayer +#flags +#mods +#skillEnd + + + --------- Support Dexterity --------- +#skill SupportAdhesiveGrenadesPlayer +#set SupportAdhesiveGrenadesPlayer +#mods +#skillEnd + +#skill SupportAdhesiveGrenadesPlayerTwo +#set SupportAdhesiveGrenadesPlayerTwo +#mods +#skillEnd + +#skill SupportAdhesiveGrenadesPlayerThree +#set SupportAdhesiveGrenadesPlayerThree +#mods +#skillEnd + +#skill SupportAdmixturePlayer +#set SupportAdmixturePlayer +#mods +#skillEnd + +#skill SupportAilithLineagePlayer +#set SupportAilithLineagePlayer +#mods +#skillEnd + +#skill SupportAlignmentPlayer +#set SupportAlignmentPlayer +#mods +#skillEnd + +#skill SupportAlignmentPlayerTwo +#set SupportAlignmentPlayerTwo +#mods +#skillEnd + +#skill SupportAlignmentPlayerThree +#set SupportAlignmentPlayerThree +#mods +#skillEnd + +#skill SupportAmmoConservationPlayer +#set SupportAmmoConservationPlayer +#mods +#skillEnd + +#skill SupportAmmoConservationPlayerTwo +#set SupportAmmoConservationPlayerTwo +#mods +#skillEnd + +#skill SupportAmmoConservationPlayerThree +#set SupportAmmoConservationPlayerThree +#mods +#skillEnd + +#skill SupportArakaalisLustPlayer +#set SupportArakaalisLustPlayer +#mods +#skillEnd + +#skill SupportAmmoConservationPlayerFour +#set SupportAmmoConservationPlayerFour +#mods +#skillEnd + +#skill SupportBlindPlayer +#set SupportBlindPlayer +#mods +#skillEnd + +#skill SupportBlindPlayerTwo +#set SupportBlindPlayerTwo +#mods +#skillEnd + +#skill SupportBlindsidePlayer +#set SupportBlindsidePlayer +#mods +#skillEnd + +#skill SupportBountyPlayer +#set SupportBountyPlayer +#mods +#skillEnd + +#skill SupportBountyPlayerTwo +#set SupportBountyPlayerTwo +#mods +#skillEnd + +#skill SupportBrambleslamPlayer +#set SupportBrambleslamPlayer +#mods +#skillEnd + +#skill TriggeredBrambleslamPlayer +#set TriggeredBrambleslamPlayer +#flags +#mods +#skillEnd + +#skill SupportDazedBreakPlayer +#set SupportDazedBreakPlayer +#mods +#skillEnd + +#skill SupportBurstingPlaguePlayer +#set SupportBurstingPlaguePlayer +#mods +#skillEnd + +#skill PlagueBurstPlayer +#set PlagueBurstPlayer +#flags +#mods +#skillEnd + +#skill SupportCadencePlayer +#set SupportCadencePlayer +#mods +#skillEnd + +#skill SupportCaltropsPlayer +#set SupportCaltropsPlayer +#mods +#skillEnd + +#skill TriggeredCaltropsPlayer +#set TriggeredCaltropsPlayer +#flags +#mods +#skillEnd + +#skill SupportChainPlayer +#set SupportChainPlayer +#mods +#skillEnd + +#skill SupportChainPlayerTwo +#set SupportChainPlayerTwo +#mods +#skillEnd + +#skill SupportChainPlayerThree +#set SupportChainPlayerThree +#mods +#skillEnd + +#skill SupportChargeProfusionPlayer +#set SupportChargeProfusionPlayer +#mods +#skillEnd + +#skill SupportChargeProfusionPlayerTwo +#set SupportChargeProfusionPlayerTwo +#mods +#skillEnd + +#skill SupportChargedShotsPlayer +#set SupportChargedShotsPlayer +#mods +#skillEnd + +#skill SupportChargedShotsPlayerTwo +#set SupportChargedShotsPlayerTwo +#mods +#skillEnd + +#skill SupportCharmBountyPlayer +#set SupportCharmBountyPlayer +#mods +#skillEnd + +#skill SupportCloseCombatPlayer +#set SupportCloseCombatPlayer +#mods +#skillEnd + +#skill SupportCloseCombatPlayerTwo +#set SupportCloseCombatPlayerTwo +#mods +#skillEnd + +#skill SupportComboFinisherPlayer +#set SupportComboFinisherPlayer +#mods +#skillEnd + +#skill SupportComboFinisherPlayerTwo +#set SupportComboFinisherPlayerTwo +#mods +#skillEnd + +#skill SupportCommiseratePlayer +#set SupportCommiseratePlayer +#mods +#skillEnd + +#skill SupportCooldownRecoveryPlayer +#set SupportCooldownRecoveryPlayer +#mods +#skillEnd + +#skill SupportCooldownRecoveryPlayerTwo +#set SupportCooldownRecoveryPlayerTwo +#mods +#skillEnd + +#skill SupportCorrosionPlayer +#set SupportCorrosionPlayer +#mods +#skillEnd + +#skill SupportCrescendoPlayer +#set SupportCrescendoPlayer +#mods +#skillEnd + +#skill SupportCrescendoPlayerTwo +#set SupportCrescendoPlayerTwo +#mods +#skillEnd + +#skill SupportCrescendoPlayerThree +#set SupportCrescendoPlayerThree +#mods +#skillEnd + +#skill SupportCullingStrikePlayer +#set SupportCullingStrikePlayer +#mods +#skillEnd + +#skill SupportCullingStrikePlayerTwo +#set SupportCullingStrikePlayerTwo +#mods +#skillEnd + +#skill SupportCulminationPlayer +#set SupportCulminationPlayer +#mods +#skillEnd + +#skill SupportCulminationPlayerTwo +#set SupportCulminationPlayerTwo +#mods +#skillEnd + +#skill SupportDazePlayer +#set SupportDazePlayer +#mods +#skillEnd + +#skill SupportDazzlePlayer +#set SupportDazzlePlayer +#mods +#skillEnd + +#skill SupportDeadlyHeraldsPlayer +#set SupportDeadlyHeraldsPlayer +#mods +#skillEnd + +#skill SupportDeadlyPoisonPlayer +#set SupportDeadlyPoisonPlayer +#mods +#skillEnd + +#skill SupportDeadlyPoisonPlayerTwo +#set SupportDeadlyPoisonPlayerTwo +#mods +#skillEnd + +#skill SupportDelayedGratificationPlayer +#set SupportDelayedGratificationPlayer +#mods +#skillEnd + +#skill SupportDelayedReactionPlayer +#set SupportDelayedReactionPlayer +#mods +#skillEnd + +#skill SupportDeliberationPlayer +#set SupportDeliberationPlayer +#mods +#skillEnd + +#skill SupportDurabilityPlayer +#set SupportDurabilityPlayer +#mods +#skillEnd + +#skill SupportElectrocutePlayer +#set SupportElectrocutePlayer +#mods +#skillEnd + +#skill SupportEscalatingPoisonPlayer +#set SupportEscalatingPoisonPlayer +#mods +#skillEnd + +#skill SupportExcoriatePlayer +#set SupportExcoriatePlayer +#mods +#skillEnd + +#skill SupportFerocityPlayer +#set SupportFerocityPlayer +#mods +#skillEnd + +#skill SupportFlowPlayer +#set SupportFlowPlayer +#mods +#skillEnd + +#skill SupportForkPlayer +#set SupportForkPlayer +#mods +#skillEnd + +#skill SupportFrenziedRipostePlayer +#set SupportFrenziedRipostePlayer +#mods +#skillEnd + +#skill SupportFrozenSpitePlayer +#set SupportFrozenSpitePlayer +#mods +#skillEnd + +#skill TriggeredSupportFrozenSpiteIceFragmentPlayer +#set TriggeredSupportFrozenSpiteIceFragmentPlayer +#flags +#mods +#skillEnd + +#skill SupportFusilladePlayer +#set SupportFusilladePlayer +#mods +#skillEnd + +#skill SupportGambleshotPlayer +#set SupportGambleshotPlayer +#mods +#skillEnd + +#skill SupportGarukhansResolvePlayer +#set SupportGarukhansResolvePlayer +#mods +#skillEnd + +#skill SupportHeightenedAccuracyPlayer +#set SupportHeightenedAccuracyPlayer +#mods +#skillEnd + +#skill SupportHeightenedAccuracyPlayerTwo +#set SupportHeightenedAccuracyPlayerTwo +#mods +#skillEnd + +#skill SupportHeightenedChargesPlayer +#set SupportHeightenedChargesPlayer +#mods +#skillEnd + +#skill SupportHitAndRunPlayer +#set SupportHitAndRunPlayer +#mods +#skillEnd + +#skill SupportHobblePlayer +#set SupportHobblePlayer +#mods +#skillEnd + +#skill SupportImpalePlayer +#set SupportImpalePlayer +#mods +#skillEnd + +#skill SupportChargeInhibitionPlayer +#set SupportChargeInhibitionPlayer +#mods +#skillEnd + +#skill SupportInnervatePlayer +#set SupportInnervatePlayer +#mods +#skillEnd + +#skill SupportLastingShockPlayer +#set SupportLastingShockPlayer +#mods +#skillEnd + +#skill SupportLeveragePlayer +#set SupportLeveragePlayer +#mods +#skillEnd + +#skill SupportLifeFlaskPlayer +#set SupportLifeFlaskPlayer +#mods +#skillEnd + +#skill SupportLifeOnCullPlayer +#set SupportLifeOnCullPlayer +#mods +#skillEnd + +#skill SupportAddedLightningDamagePlayer +#set SupportAddedLightningDamagePlayer +#mods +#skillEnd + +#skill SupportLightningExposurePlayer +#set SupportLightningExposurePlayer +#mods +#skillEnd + +#skill SupportLightningPenetrationPlayer +#set SupportLightningPenetrationPlayer +#mods +#skillEnd + +#skill SupportLockdownPlayer +#set SupportLockdownPlayer +#mods +#skillEnd + +#skill SupportFarCombatPlayer +#set SupportFarCombatPlayer +#mods +#skillEnd + +#skill SupportFarCombatPlayerTwo +#set SupportFarCombatPlayerTwo +#mods +#skillEnd + +#skill SupportMaimPlayer +#set SupportMaimPlayer +#mods +#skillEnd + +#skill SupportMaladyPlayer +#set SupportMaladyPlayer +#mods +#skillEnd + +#skill SupportManaFlaskPlayer +#set SupportManaFlaskPlayer +#mods +#skillEnd + +#skill SupportMarkForDeathPlayer +#set SupportMarkForDeathPlayer +#mods +#skillEnd + +#skill SupportMobilityPlayer +#set SupportMobilityPlayer +#mods +#skillEnd + +#skill SupportMomentumPlayer +#set SupportMomentumPlayer +#mods +#skillEnd + +#skill SupportMultishotPlayer +#set SupportMultishotPlayer +#mods +#skillEnd + +#skill SupportMultishotPlayerTwo +#set SupportMultishotPlayerTwo +#mods +#skillEnd + +#skill SupportEmpoweredCullPlayer +#set SupportEmpoweredCullPlayer +#mods +#skillEnd + +#skill SupportNeuralOverloadPlayer +#set SupportNeuralOverloadPlayer +#mods +#skillEnd + +#skill SupportNimbleReloadPlayer +#set SupportNimbleReloadPlayer +#mods +#skillEnd + +#skill SupportNovaProjectilesPlayer +#set SupportNovaProjectilesPlayer +#mods +#skillEnd + +#skill SupportOutmaneuverPlayer +#set SupportOutmaneuverPlayer +#mods +#skillEnd + +#skill SupportIncreaseLimitPlayer +#set SupportIncreaseLimitPlayer +#mods +#skillEnd + +#skill SupportIncreaseLimitPlayerTwo +#set SupportIncreaseLimitPlayerTwo +#mods +#skillEnd + +#skill SupportIncreaseLimitPlayerThree +#set SupportIncreaseLimitPlayerThree +#mods +#skillEnd + +#skill SupportOverchargePlayer +#set SupportOverchargePlayer +#mods +#skillEnd + +#skill SupportOverextendPlayer +#set SupportOverextendPlayer +#mods +#skillEnd + +#skill SupportOverreachPlayer +#set SupportOverreachPlayer +#mods +#skillEnd + +#skill SupportPayloadPlayer +#set SupportPayloadPlayer +#mods +#skillEnd + +#skill SupportPerfectEndurancePlayer +#set SupportPerfectEndurancePlayer +#mods +#skillEnd + +#skill SupportPerfectionPlayer +#set SupportPerfectionPlayer +#mods +#skillEnd + +#skill SupportPerpetualChargePlayer +#set SupportPerpetualChargePlayer +#mods +#skillEnd + +#skill SupportPiercePlayer +#set SupportPiercePlayer +#mods +#skillEnd + +#skill SupportPiercePlayerTwo +#set SupportPiercePlayerTwo +#mods +#skillEnd + +#skill SupportPiercePlayerThree +#set SupportPiercePlayerThree +#mods +#skillEnd + +#skill SupportPietysMercyPlayer +#set SupportPietysMercyPlayer +#mods +#skillEnd + +#skill SupportPinPlayer +#set SupportPinPlayer +#mods +#skillEnd + +#skill SupportPinPlayerTwo +#set SupportPinPlayerTwo +#mods +#skillEnd + +#skill SupportPinPlayerThree +#set SupportPinPlayerThree +#mods +#skillEnd + +#skill SupportPoisonPlayer +#set SupportPoisonPlayer +#mods +#skillEnd + +#skill SupportPoisonPlayerTwo +#set SupportPoisonPlayerTwo +#mods +#skillEnd + +#skill SupportPoisonPlayerThree +#set SupportPoisonPlayerThree +#mods +#skillEnd + +#skill SupportPracticedComboPlayer +#set SupportPracticedComboPlayer +#mods +#skillEnd + +#skill SupportPrecisionPlayer +#set SupportPrecisionPlayer +#mods +#skillEnd + +#skill SupportPrecisionPlayerTwo +#set SupportPrecisionPlayerTwo +#mods +#skillEnd + +#skill SupportProjectileAccelerationPlayer +#set SupportProjectileAccelerationPlayer +#mods +#skillEnd + +#skill SupportProjectileAccelerationPlayerTwo +#set SupportProjectileAccelerationPlayerTwo +#mods +#skillEnd + +#skill SupportProjectileAccelerationPlayerThree +#set SupportProjectileAccelerationPlayerThree +#mods +#skillEnd + +#skill SupportProjectileDecelerationPlayer +#set SupportProjectileDecelerationPlayer +#mods +#skillEnd + +#skill SupportProjectileDecelerationPlayerTwo +#set SupportProjectileDecelerationPlayerTwo +#mods +#skillEnd + +#skill SupportPunchThroughPlayer +#set SupportPunchThroughPlayer +#mods +#skillEnd + +#skill SupportPursuitPlayer +#set SupportPursuitPlayer +#mods +#skillEnd + +#skill SupportPursuitPlayerTwo +#set SupportPursuitPlayerTwo +#mods +#skillEnd + +#skill SupportPursuitPlayerThree +#set SupportPursuitPlayerThree +#mods +#skillEnd + +#skill SupportRakiatasFlowPlayer +#set SupportRakiatasFlowPlayer +#mods +#skillEnd + +#skill SupportRapidAttacksPlayer +#set SupportRapidAttacksPlayer +#mods +#skillEnd + +#skill SupportRapidAttacksPlayerTwo +#set SupportRapidAttacksPlayerTwo +#mods +#skillEnd + +#skill SupportRapidAttacksPlayerThree +#set SupportRapidAttacksPlayerThree +#mods +#skillEnd + +#skill SupportCombatReloadPlayer +#set SupportCombatReloadPlayer +#mods +#skillEnd + +#skill SupportRearmPlayer +#set SupportRearmPlayer +#mods +#skillEnd + +#skill SupportRearmPlayerTwo +#set SupportRearmPlayerTwo +#mods +#skillEnd + +#skill SupportRetreatPlayer +#set SupportRetreatPlayer +#mods +#skillEnd + +#skill SupportRetreatPlayerTwo +#set SupportRetreatPlayerTwo +#mods +#skillEnd + +#skill SupportRetreatPlayerThree +#set SupportRetreatPlayerThree +#mods +#skillEnd + +#skill SupportRicochetPlayer +#set SupportRicochetPlayer +#mods +#skillEnd + +#skill SupportRicochetPlayerTwo +#set SupportRicochetPlayerTwo +#mods +#skillEnd + +#skill SupportRicochetPlayerThree +#set SupportRicochetPlayerThree +#mods +#skillEnd + +#skill SupportRigwaldsFerocityPlayer +#set SupportRigwaldsFerocityPlayer +#mods +#skillEnd + +#skill SupportSalvoPlayer +#set SupportSalvoPlayer +#mods +#skillEnd + +#skill SupportSecondWindPlayer +#set SupportSecondWindPlayer +#mods +#skillEnd + +#skill SupportSecondWindPlayerTwo +#set SupportSecondWindPlayerTwo +#mods +#skillEnd + +#skill SupportSecondWindPlayerThree +#set SupportSecondWindPlayerThree +#mods +#skillEnd + +#skill SupportShockPlayer +#set SupportShockPlayer +#mods +#skillEnd + +#skill SupportShockingLeapPlayer +#set SupportShockingLeapPlayer +#mods +#skillEnd + +#skill SupportSlowPotencyPlayer +#set SupportSlowPotencyPlayer +#mods +#skillEnd + +#skill SupportManaOnCullPlayer +#set SupportManaOnCullPlayer +#mods +#skillEnd + +#skill SupportSpectralVolleyPlayer +#set SupportSpectralVolleyPlayer +#mods +#skillEnd + +#skill SupportStormchainPlayer +#set SupportStormchainPlayer +#mods +#skillEnd + +#skill SupportStreamlinedRoundsPlayer +#set SupportStreamlinedRoundsPlayer +#mods +#skillEnd + +#skill SupportSwiftAfflictionPlayer +#set SupportSwiftAfflictionPlayer +#mods +#skillEnd + +#skill SupportSwiftAfflictionPlayerTwo +#set SupportSwiftAfflictionPlayerTwo +#mods +#skillEnd + +#skill SupportSwiftAfflictionPlayerThree +#set SupportSwiftAfflictionPlayerThree +#mods +#skillEnd + +#skill SupportTacatisIrePlayer +#set SupportTacatisIrePlayer +#mods +#skillEnd + +#skill SupportTulsStillnessPlayer +#set SupportTulsStillnessPlayer +#mods +#skillEnd + +#skill SupportTumultPlayer +#set SupportTumultPlayer +#mods +#skillEnd + +#skill SupportUnerringPowerPlayer +#set SupportUnerringPowerPlayer +#mods +#skillEnd + +#skill SupportUntouchablePlayer +#set SupportUntouchablePlayer +#mods +#skillEnd + +#skill SupportVoltPlayer +#set SupportVoltPlayer +#mods +#skillEnd + +#skill SupportWarmbloodedPlayer +#set SupportWarmbloodedPlayer +#mods +#skillEnd + +#skill SupportKnockbackWavePlayer +#set SupportKnockbackWavePlayer +#mods +#skillEnd + +#skill KnockbackWavePlayer +#set KnockbackWavePlayer +#flags +#mods +#skillEnd + +#skill SupportWindowOfOpportunityPlayer +#set SupportWindowOfOpportunityPlayer +#mods +#skillEnd + +#skill SupportWindowOfOpportunityPlayerTwo +#set SupportWindowOfOpportunityPlayerTwo +#mods +#skillEnd + + + --------- Active Intelligence --------- +#skill ArcPlayer +#set ArcPlayer +#flags +#mods +#skillEnd + +#skill ArchmagePlayer +#set ArchmagePlayer +#flags +#mods +#skillEnd + +#skill ArcticArmourPlayer +#set ArcticArmourPlayer +#flags +#mods +#skillEnd + +#skill BallLightningPlayer +#set BallLightningPlayer +#flags +#mods +#set BallLightningInfusedExplosionPlayer +#flags +#mods +#set BallLightningIgnitedGround +#flags +#mods +#skillEnd + +#skill MetaBarrierInvocationPlayer +#set MetaBarrierInvocationPlayer +#flags +#mods +#skillEnd + +#skill SupportBarrierInvocationPlayer +#set SupportBarrierInvocationPlayer +#mods +#skillEnd + +#skill BlasphemyPlayer +#set BlasphemyPlayer +#flags +#mods +#skillEnd + +#skill SupportBlasphemyPlayer +#set SupportBlasphemyPlayer +#mods +#skillEnd + +#skill BlinkReservationPlayer +#set BlinkReservationPlayer +#flags +#mods +#skillEnd + +#skill BlinkPlayer +#set BlinkPlayer +#flags +#mods +#skillEnd + +#skill BoneBlastPlayer +#set BoneBlastPlayer +#flags +#mods +#skillEnd + +#skill BoneCagePlayer +#set BoneCagePlayer +#flags +#mods +#skillEnd + +#skill BoneOfferingPlayer +#set BoneOfferingPlayer +#flags +#mods +#skillEnd + +#skill BonestormPlayer +#set BonestormPlayer +#flags +#mods +#set BonestormExplosionPlayer +#flags +#mods +#skillEnd + +#skill MetaCastOnCritPlayer +#set MetaCastOnCritPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnCritPlayer +#set SupportMetaCastOnCritPlayer +#mods +#skillEnd + +#skill MetaCastOnDeathPlayer +#set MetaCastOnDeathPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnDeathPlayer +#set SupportMetaCastOnDeathPlayer +#mods +#skillEnd + +#skill MetaCastOnDodgePlayer +#set MetaCastOnDodgePlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnDodgePlayer +#set SupportMetaCastOnDodgePlayer +#mods +#skillEnd + +#skill MetaCastOnElementalAilmentPlayer +#set MetaCastOnElementalAilmentPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnElementalAilmentPlayer +#set SupportMetaCastOnIgnitePlayer +#mods +#skillEnd + +#skill MetaCastOnMinionDeathPlayer +#set MetaCastOnMinionDeathPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnMinionDeathPlayer +#set SupportMetaCastOnMinionDeathPlayer +#mods +#skillEnd + +#skill WeaponGrantedChaosboltPlayer +#set WeaponGrantedChaosboltPlayer +#flags +#mods +#skillEnd + +#skill ChargeRegulationPlayer +#set ChargeRegulationPlayer +#flags +#mods +#skillEnd + +#skill ChargedStaffPlayer +#set ChargedStaffPlayer +#flags +#mods +#skillEnd + +#skill ChargedStaffShockwavePlayer +#set ChargedStaffShockwavePlayer +#flags +#mods +#skillEnd + +#skill CometPlayer +#set CometPlayer +#flags +#mods +#set CometFireInfusionPlayer +#flags +#mods +#skillEnd + +#skill ConductivityPlayer +#set ConductivityPlayer +#flags +#mods +#skillEnd + +#skill ContagionPlayer +#set ContagionPlayer +#flags +#mods +#skillEnd + +#skill ConvalescencePlayer +#set ConvalescencePlayer +#flags +#mods +#skillEnd + +#skill ConvalescenceActivePlayer +#set ConvalescenceActivePlayer +#flags +#mods +#skillEnd + +#skill CracklingPalmPlayer +#set CracklingPalmPlayer +#flags +#mods +#set CracklingPalmBoltPlayer +#flags +#mods +#skillEnd + +#skill MetaCastCurseOnBlockPlayer +#set MetaCastCurseOnBlockPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastCurseOnBlockPlayer +#set SupportMetaCastCurseOnBlockPlayer +#mods +#skillEnd + +#skill DarkEffigyPlayer +#set DarkEffigyPlayer +#flags +#mods +#skillEnd + +#skill DarkEffigyProjectilePlayer +#set DarkEffigyProjectilePlayer +#flags +#mods +#skillEnd + +#skill CorpseCloudPlayer +#set CorpseCloudPlayer +#flags +#mods +#set CorpseCloudExplosionPlayer +#flags +#mods +#skillEnd + +#skill DespairPlayer +#set DespairPlayer +#flags +#mods +#skillEnd + +#skill DetonateDeadPlayer +#set DetonateDeadPlayer +#flags +#mods +#skillEnd + +#skill DisciplinePlayer +#set DisciplinePlayer +#flags +#mods +#skillEnd + +#skill ElementalConfluxPlayer +#set ElementalConfluxPlayer +#flags +#mods +#skillEnd + +#skill MetaElementalInvocationPlayer +#set MetaElementalInvocationPlayer +#flags +#mods +#skillEnd + +#skill SupportElementalInvocationPlayer +#set SupportElementalInvocationPlayer +#mods +#skillEnd + +#skill ElementalWeaknessPlayer +#set ElementalWeaknessPlayer +#flags +#mods +#skillEnd + +#skill EmberFusilladePlayer +#set EmberFusilladePlayer +#flags +#mods +#set EmberFusilladeExplosionPlayer +#flags +#mods +#set EmberFusilladeBeamPlayer +#flags +#mods +#skillEnd + +#skill UniqueDuskVigilTriggeredBlazingClusterPlayer +#set UniqueDuskVigilTriggeredBlazingClusterPlayer +#flags +#mods +#set EmberFusilladeExplosionPlayer +#flags +#mods +#set EmberFusilladeBeamPlayer +#flags +#mods +#skillEnd + +#skill EnfeeblePlayer +#set EnfeeblePlayer +#flags +#mods +#skillEnd + +#skill EssenceDrainPlayer +#set EssenceDrainPlayer +#flags +#mods +#set EssenceDrainDotPlayer +#flags +#mods +#skillEnd + +#skill ExsanguinatePlayer +#set ExsanguinatePlayer +#flags +#mods +#set ExsanguinateDotPlayer +#flags +#mods +#skillEnd + +#skill EyeOfWinterPlayer +#set EyeOfWinterPlayer +#flags +#mods +#skillEnd + +#skill FallingThunderPlayer +#set FallingThunderPlayer +#flags +#mods +#set FallingThunderProjectilePlayer +#flags +#mods +#skillEnd + +#skill FeastOfFleshPlayer +#set FeastOfFleshPlayer +#flags +#mods +#skillEnd + +#skill FireballPlayer +#set FireballPlayer +#flags +#mods +#set FireballExplosionPlayer +#flags +#mods +#set FireballSecondaryProjectilePlayer +#flags +#mods +#skillEnd + +#skill FireboltPlayer +#set FireboltPlayer +#flags +#mods +#set FireboltExplosionPlayer +#flags +#mods +#skillEnd + +#skill FirestormPlayer +#set FirestormPlayer +#flags +#mods +#set FirestormColdInfusionPlayer +#flags +#mods +#set FirestormLightningInfusionPlayer +#flags +#mods +#skillEnd + +#skill FlameWallPlayer +#set FlameWallPlayer +#flags +#mods +#set FlameWallProjectileBuffPlayer +#flags +#mods +#skillEnd + +#skill FlameblastPlayer +#set FlameblastPlayer +#flags +#mods +#skillEnd + +#skill FlammabilityPlayer +#set FlammabilityPlayer +#flags +#mods +#skillEnd + +#skill FlickerStrikePlayer +#set FlickerStrikePlayer +#flags +#mods +#skillEnd + +#skill FreezingMarkPlayer +#set FreezingMarkPlayer +#flags +#mods +#skillEnd + +#skill TriggeredFreezingMarkNovaPlayer +#set TriggeredFreezingMarkNovaPlayer +#flags +#mods +#skillEnd + +#skill FreezingShardsPlayer +#set FreezingShardsPlayer +#flags +#mods +#skillEnd + +#skill FrostBombPlayer +#set FrostBombPlayer +#flags +#mods +#skillEnd + +#skill FrostDartsPlayer +#set FrostDartsPlayer +#flags +#mods +#set FrostDartsExplodePlayer +#flags +#mods +#set FrostDartsIceMortarPlayer +#flags +#mods +#skillEnd + +#skill FrostWallPlayer +#set FrostWallPlayer +#flags +#mods +#set FrostWallInfusedPlayer +#flags +#mods +#skillEnd + +#skill FrostboltPlayer +#set FrostboltPlayer +#flags +#mods +#set FrostboltExplosionPlayer +#flags +#mods +#skillEnd + +#skill FrozenLocusPlayer +#set FrozenLocusPlayer +#flags +#mods +#set FrozenLocusGroundPlayer +#flags +#mods +#set FrozenLocusExplodePlayer +#flags +#mods +#skillEnd + +#skill FulminationPlayer +#set FulminationPlayer +#flags +#mods +#skillEnd + +#skill GalvanicFieldBuffPlayer +#set GalvanicFieldBuffPlayer +#flags +#mods +#set GalvanicFieldOrbPlayer +#flags +#mods +#skillEnd + +#skill GatheringStormPlayer +#set GatheringStormPlayer +#flags +#mods +#set GatheringStormPerfectPlayer +#flags +#mods +#set GatheringStormExplodePlayer +#flags +#mods +#skillEnd + +#skill GhostDancePlayer +#set GhostDancePlayer +#flags +#mods +#skillEnd + +#skill GlacialCascadePlayer +#set GlacialCascadePlayer +#flags +#mods +#set GlacialCascadeLastSpikePlayer +#flags +#mods +#skillEnd + +#skill GrimFeastPlayer +#set GrimFeastPlayer +#flags +#mods +#skillEnd + +#skill GrimFeastResummonPlayer +#set GrimFeastResummonPlayer +#flags +#mods +#skillEnd + +#skill HandOfChayulaPlayer +#set HandOfChayulaPlayer +#flags +#mods +#skillEnd + +#skill SupportHandOfChayulaPlayer +#set SupportHandOfChayulaPlayer +#mods +#skillEnd + +#skill HeartOfIcePlayer +#set HeartOfIcePlayer +#flags +#mods +#skillEnd + +#skill HeraldOfIcePlayer +#set HeraldOfIcePlayer +#flags +#mods +#set HeraldOfIceOnKillPlayer +#flags +#mods +#skillEnd + +#skill UniqueHeraldOfIcePlayer +#set UniqueHeraldOfIcePlayer +#flags +#mods +#set UniqueHeraldOfIceOnKillPlayer +#flags +#mods +#skillEnd + +#skill HexblastPlayer +#set HexblastPlayer +#flags +#mods +#skillEnd + +#skill DarkTempestPlayer +#set DarkTempestPlayer +#flags +#mods +#skillEnd + +#skill HisFoulEmergencePlayer +#set HisFoulEmergencePlayer +#flags +#mods +#skillEnd + +#skill ScatteringCalamityPlayer +#set ScatteringCalamityPlayer +#flags +#mods +#set ScatteringCalamityExplosionPlayer +#flags +#mods +#skillEnd + +#skill VileDisruptionPlayer +#set VileDisruptionPlayer +#flags +#mods +#skillEnd + +#skill HisWinnowingFlamePlayer +#set HisWinnowingFlamePlayer +#flags +#mods +#skillEnd + +#skill TriggeredHisWinnowingFlamePillarPlayer +#set TriggeredHisWinnowingFlamePillarPlayer +#flags +#mods +#skillEnd + +#skill HypothermiaPlayer +#set HypothermiaPlayer +#flags +#mods +#skillEnd + +#skill IceNovaPlayer +#set IceNovaPlayer +#flags +#mods +#set IceNovaColdInfusedPlayer +#flags +#mods +#skillEnd + +#skill IceStrikePlayer +#set IceStrikePlayer +#flags +#mods +#set IceStrikeThirdAttackPlayer +#flags +#mods +#skillEnd + +#skill IcestormPlayer +#set IcestormPlayer +#flags +#mods +#set IcestormEmpoweredPlayer +#flags +#mods +#skillEnd + +#skill ImpurityPlayer +#set ImpurityPlayer +#flags +#mods +#skillEnd + +#skill IncineratePlayer +#set IncineratePlayer +#flags +#mods +#set IncinerateGroundPlayer +#flags +#mods +#skillEnd + +#skill KillingPalmPlayer +#set KillingPalmPlayer +#flags +#mods +#skillEnd + +#skill LightningBoltPlayer +#set LightningBoltPlayer +#flags +#mods +#skillEnd + +#skill UniqueBreachLightningBoltPlayer +#set UniqueBreachLightningBoltPlayer +#flags +#mods +#skillEnd + +#skill LightningConduitPlayer +#set LightningConduitPlayer +#flags +#mods +#skillEnd + +#skill LightningWarpPlayer +#set LightningWarpPlayer +#flags +#mods +#skillEnd + +#skill LingeringIllusionPlayer +#set LingeringIllusionPlayer +#flags +#mods +#skillEnd + +#skill LingeringIllusionSpawnPlayer +#set LingeringIllusionSpawnPlayer +#flags +#mods +#skillEnd + +#skill LivingBombPlayer +#set LivingBombPlayer +#flags +#mods +#skillEnd + +#skill MalicePlayer +#set MalicePlayer +#flags +#mods +#skillEnd + +#skill ManaDrainPlayer +#set ManaDrainPlayer +#flags +#mods +#skillEnd + +#skill ManaRemnantsPlayer +#set ManaRemnantsPlayer +#flags +#mods +#skillEnd + +#skill ManaTempestPlayer +#set ManaTempestPlayer +#flags +#mods +#skillEnd + +#skill MantraOfDestructionPlayer +#set MantraOfDestructionPlayer +#flags +#mods +#skillEnd + +#skill OrbOfStormsPlayer +#set OrbOfStormsPlayer +#flags +#mods +#skillEnd + +#skill PainOfferingPlayer +#set PainOfferingPlayer +#flags +#mods +#skillEnd + +#skill PowerSiphonPlayer +#set PowerSiphonPlayer +#flags +#mods +#skillEnd + +#skill ProfaneRitualPlayer +#set ProfaneRitualPlayer +#flags +#mods +#skillEnd + +#skill PurityOfFirePlayer +#set PurityOfFirePlayer +#flags +#mods +#skillEnd + +#skill PurityOfIcePlayer +#set PurityOfIcePlayer +#flags +#mods +#skillEnd + +#skill PurityOfLightningPlayer +#set PurityOfLightningPlayer +#flags +#mods +#skillEnd + +#skill RagingSpiritsPlayer +#set RagingSpiritsPlayer +#flags +#mods +#skillEnd + +#skill RaiseZombiePlayer +#set RaiseZombiePlayer +#flags +#mods +#skillEnd + +#skill RavenousSwarmPlayer +#set RavenousSwarmPlayer +#flags +#mods +#skillEnd + +#skill ReapPlayer +#set ReapPlayer +#flags +#mods +#skillEnd + +#skill MetaReapersInvocationPlayer +#set MetaReapersInvocationPlayer +#flags +#mods +#skillEnd + +#skill SupportReapersInvocationPlayer +#set SupportReapersInvocationPlayer +#mods +#skillEnd + +#skill RollingMagmaPlayer +#set RollingMagmaPlayer +#flags +#mods +#skillEnd + +#skill SacrificePlayer +#set SacrificePlayer +#flags +#mods +#skillEnd + +#skill ShatteringPalmPlayer +#set ShatteringPalmPlayer +#flags +#mods +#skillEnd + +#skill ShatteringPalmExplosionPlayer +#set ShatteringPalmExplosionPlayer +#flags +#mods +#skillEnd + +#skill SigilOfPowerPlayer +#set SigilOfPowerPlayer +#flags +#mods +#skillEnd + +#skill SiphonElementsPlayer +#set SiphonElementsPlayer +#flags +#mods +#skillEnd + +#skill SiphoningStrikePlayer +#set SiphoningStrikePlayer +#flags +#mods +#set SiphoningStrikePulsePlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalArsonistsPlayer +#set SummonSkeletalArsonistsPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalArsonistPlayer +#set CommandSkeletalArsonistPlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalBrutesPlayer +#set SummonSkeletalBrutesPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalBrutesPlayer +#set CommandSkeletalBrutesPlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalClericsPlayer +#set SummonSkeletalClericsPlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalFrostMagesPlayer +#set SummonSkeletalFrostMagesPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalFrostMagePlayer +#set CommandSkeletalFrostMagePlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalReaversPlayer +#set SummonSkeletalReaversPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalReaversPlayer +#set CommandSkeletalReaversPlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalSnipersPlayer +#set SummonSkeletalSnipersPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalSniperPlayer +#set CommandSkeletalSniperPlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalSnipersPlayer +#set SummonSkeletalSnipersPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalSniperPlayer +#set CommandSkeletalSniperPlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalStormMagesPlayer +#set SummonSkeletalStormMagesPlayer +#flags +#mods +#skillEnd + +#skill CommandSkeletalStormMagePlayer +#set CommandSkeletalStormMagePlayer +#flags +#mods +#skillEnd + +#skill SummonSkeletalWarriorsPlayer +#set SummonSkeletalWarriorsPlayer +#flags +#mods +#skillEnd + +#skill SnapPlayer +#set SnapColdPlayer +#flags +#mods +#set SnapLightningPlayer +#flags +#mods +#set SnapFirePlayer +#flags +#mods +#skillEnd + +#skill SolarOrbPlayer +#set SolarOrbPlayer +#flags +#mods +#set SolarOrbAuraPlayer +#flags +#mods +#skillEnd + +#skill SoulOfferingPlayer +#set SoulOfferingPlayer +#flags +#mods +#skillEnd + +#skill SoulrendPlayer +#set SoulrendPlayer +#flags +#mods +#set SoulrendDotPlayer +#flags +#mods +#skillEnd + +#skill SparkPlayer +#set SparkPlayer +#flags +#mods +#set SparkColdInfusedPlayer +#flags +#mods +#skillEnd + +#skill UniqueEarthboundTriggeredSparkPlayer +#set UniqueEarthboundTriggeredSparkPlayer +#flags +#mods +#set UniqueEarthboundTriggeredSparkColdInfusedPlayer +#flags +#mods +#skillEnd + +#skill SummonSpectrePlayer +#set SummonSpectrePlayer +#flags +#mods +#skillEnd + +#skill MetaSpellslingerPlayer +#set MetaSpellslingerPlayer +#flags +#mods +#skillEnd + +#skill SupportSpellslingerPlayer +#set SupportSpellslingerPlayer +#mods +#skillEnd + +#skill StaggeringPalmPlayer +#set StaggeringPalmPlayer +#flags +#mods +#skillEnd + +#skill StaggeringPalmProjectilePlayer +#set StaggeringPalmProjectilePlayer +#flags +#mods +#skillEnd + +#skill StormWavePlayer +#set StormWavePlayer +#flags +#mods +#skillEnd + +#skill TempestBellPlayer +#set TempestBellPlayer +#flags +#mods +#set TempestBellSlamPlayer +#flags +#mods +#set TempestBellShockwavePlayer +#flags +#mods +#skillEnd + +#skill TempestFlurryPlayer +#set TempestFlurryPlayer +#flags +#mods +#set TempestFlurryPlayerThirdStrike +#flags +#mods +#set TempestFlurryPlayerFinalStrike +#flags +#mods +#skillEnd + +#skill TemporalChainsPlayer +#set TemporalChainsPlayer +#flags +#mods +#skillEnd + +#skill TrinityPlayer +#set TrinityPlayer +#flags +#mods +#skillEnd + +#skill UnearthPlayer +#set UnearthPlayer +#flags +#mods +#skillEnd + +#skill UnleashPlayer +#set UnleashPlayer +#flags +#mods +#skillEnd + +#skill VaultingImpactPlayer +#set VaultingImpactPlayer +#flags +#mods +#set VaultingImpactDazedPlayer +#flags +#mods +#skillEnd + +#skill VolatileDeadPlayer +#set VolatileDeadPlayer +#flags +#mods +#set VolatileDeadIgniteAuraPlayer +#flags +#mods +#skillEnd + +#skill VulnerabilityPlayer +#set VulnerabilityPlayer +#flags +#mods +#skillEnd + +#skill WaveOfFrostPlayer +#set WaveOfFrostPlayer +#flags +#mods +#skillEnd + +#skill WhirlingAssaultPlayer +#set WhirlingAssaultPlayer +#flags +#mods +#skillEnd + +#skill GaleStrikePlayer +#set GaleStrikePlayer +#flags +#mods +#skillEnd + +#skill UniqueWitheringPresencePlayer +#set UniqueWitheringPresencePlayer +#flags +#mods +#skillEnd + +#skill WitheringPresencePlayer +#set WitheringPresencePlayer +#flags +#mods +#skillEnd + + + --------- Support Intelligence --------- +#skill SupportAbidingHexPlayer +#set SupportAbidingHexPlayer +#mods +#skillEnd + +#skill SupportAcrimonyPlayer +#set SupportAcrimonyPlayer +#mods +#skillEnd + +#skill SupportAhnsCitadelPlayer +#set SupportAhnsCitadelPlayer +#mods +#skillEnd + +#skill SupportAmbrosiaPlayer +#set SupportAmbrosiaPlayer +#mods +#skillEnd + +#skill SupportAmbushPlayer +#set SupportAmbushPlayer +#mods +#skillEnd + +#skill SupportArbitersIgnitionPlayer +#set SupportArbitersIgnitionPlayer +#mods +#skillEnd + +#skill SupportArcaneSurgePlayer +#set SupportArcaneSurgePlayer +#mods +#skillEnd + +#skill SupportAstralProjectionPlayer +#set SupportAstralProjectionPlayer +#mods +#skillEnd + +#skill SupportAtzirisAllurePlayer +#set SupportAtzirisAllurePlayer +#mods +#skillEnd + +#skill SupportBiddingPlayer +#set SupportBiddingPlayer +#mods +#skillEnd + +#skill SupportBiddingPlayerTwo +#set SupportBiddingPlayerTwo +#mods +#skillEnd + +#skill SupportBiddingPlayerThree +#set SupportBiddingPlayerThree +#mods +#skillEnd + +#skill SupportBitingFrostPlayer +#set SupportBitingFrostPlayer +#mods +#skillEnd + +#skill SupportBoneShrapnelPlayer +#set SupportBoneShrapnelPlayer +#mods +#skillEnd + +#skill TriggeredBoneShrapnelPlayer +#set TriggeredBoneShrapnelPlayer +#flags +#mods +#skillEnd + +#skill SupportBoundlessEnergyPlayer +#set SupportBoundlessEnergyPlayer +#mods +#skillEnd + +#skill SupportBoundlessEnergyPlayerTwo +#set SupportBoundlessEnergyPlayerTwo +#mods +#skillEnd + +#skill SupportBurgeonPlayer +#set SupportBurgeonPlayer +#mods +#skillEnd + +#skill SupportBurgeonPlayerTwo +#set SupportBurgeonPlayerTwo +#mods +#skillEnd + +#skill SupportBurningRunesPlayer +#set SupportBurningRunesPlayer +#mods +#skillEnd + +#skill TriggeredBurningRunesPlayer +#set TriggeredBurningRunesPlayer +#flags +#mods +#skillEnd + +#skill SupportCatharsisPlayer +#set SupportCatharsisPlayer +#mods +#skillEnd + +#skill SupportAddedChaosDamagePlayer +#set SupportAddedChaosDamagePlayer +#mods +#skillEnd + +#skill SupportChaosMasteryPlayer +#set SupportChaosMasteryPlayer +#mods +#skillEnd + +#skill SupportChaoticFreezePlayer +#set SupportChaoticFreezePlayer +#mods +#skillEnd + +#skill SupportClarityPlayer +#set SupportClarityPlayer +#mods +#skillEnd + +#skill SupportClarityPlayerTwo +#set SupportClarityPlayerTwo +#mods +#skillEnd + +#skill SupportAddedColdDamagePlayer +#set SupportAddedColdDamagePlayer +#mods +#skillEnd + +#skill SupportColdExposurePlayer +#set SupportColdExposurePlayer +#mods +#skillEnd + +#skill SupportColdMasteryPlayer +#set SupportColdMasteryPlayer +#mods +#skillEnd + +#skill SupportColdPenetrationPlayer +#set SupportColdPenetrationPlayer +#mods +#skillEnd + +#skill SupportCommandment +#set SupportCommandment +#mods +#skillEnd + +#skill SupportConcentratedAreaPlayer +#set SupportConcentratedAreaPlayer +#mods +#skillEnd + +#skill SupportConsideredCastingPlayer +#set SupportConsideredCastingPlayer +#mods +#skillEnd + +#skill SupportControlledDestructionPlayer +#set SupportControlledDestructionPlayer +#mods +#skillEnd + +#skill SupportCorpseConservationPlayer +#set SupportCorpseConservationPlayer +#mods +#skillEnd + +#skill SupportCracklingBarrierPlayer +#set SupportCracklingBarrierPlayer +#mods +#skillEnd + +#skill SupportCrazedMinionsPlayer +#set SupportCrazedMinionsPlayer +#mods +#skillEnd + +#skill SupportCrystallineShardsPlayer +#set SupportCrystallineShardsPlayer +#mods +#skillEnd + +#skill SupportCursedGroundPlayer +#set SupportCursedGroundPlayer +#mods +#skillEnd + +#skill SupportDanseMacabrePlayer +#set SupportDanseMacabrePlayer +#mods +#skillEnd + +#skill SupportDeathmarchPlayer +#set SupportDeathmarchPlayer +#mods +#skillEnd + +#skill SupportDecayingHexPlayer +#set SupportDecayingHexPlayer +#mods +#skillEnd + +#skill SupportLastingFrostPlayer +#set SupportLastingFrostPlayer +#mods +#skillEnd + +#skill SupportDerangePlayer +#set SupportDerangePlayer +#mods +#skillEnd + +#skill SupportDiallasDesirePlayer +#set SupportDiallasDesirePlayer +#mods +#skillEnd + +#skill SupportDoedresUndoingPlayer +#set SupportDoedresUndoingPlayer +#mods +#skillEnd + +#skill TriggeredCurseZoneHazardExplosionPlayer +#set TriggeredCurseZoneHazardExplosionPlayer +#flags +#mods +#skillEnd + +#skill SupportDrainedAilmentPlayer +#set SupportDrainedAilmentPlayer +#mods +#skillEnd + +#skill SupportElementalArmyPlayer +#set SupportElementalArmyPlayer +#mods +#skillEnd + +#skill SupportElementalDischargePlayer +#set SupportElementalDischargePlayer +#mods +#skillEnd + +#skill TriggeredElementalDischargePlayer +#set TriggeredElementalDischargePlayer +#flags +#mods +#skillEnd + +#skill SupportElementalFocusPlayer +#set SupportElementalFocusPlayer +#mods +#skillEnd + +#skill SupportEmbitterPlayer +#set SupportEmbitterPlayer +#mods +#skillEnd + +#skill SupportEncroachingGroundPlayer +#set SupportEncroachingGroundPlayer +#mods +#skillEnd + +#skill SupportEnergyBarrierPlayer +#set SupportEnergyBarrierPlayer +#mods +#skillEnd + +#skill SupportEnergyCapacitorPlayer +#set SupportEnergyCapacitorPlayer +#mods +#skillEnd + +#skill SupportEnergyRetentionPlayer +#set SupportEnergyRetentionPlayer +#mods +#skillEnd + +#skill SupportEshsRadiancePlayer +#set SupportEshsRadiancePlayer +#mods +#skillEnd + +#skill SupportEssenceHarvestPlayer +#set SupportEssenceHarvestPlayer +#mods +#skillEnd + +#skill SupportExcisePlayer +#set SupportExcisePlayer +#mods +#skillEnd + +#skill SupportExecratePlayer +#set SupportExecratePlayer +#mods +#skillEnd + +#skill SupportExpansePlayer +#set SupportExpansePlayer +#mods +#skillEnd + +#skill SupportExtractionPlayer +#set SupportExtractionPlayer +#mods +#skillEnd + +#skill SupportFeedingFrenzyPlayer +#set SupportFeedingFrenzyPlayer +#mods +#skillEnd + +#skill SupportFeedingFrenzyPlayerTwo +#set SupportFeedingFrenzyPlayerTwo +#mods +#skillEnd + +#skill SupportFieryDeathPlayer +#set SupportFieryDeathPlayer +#mods +#skillEnd + +#skill TriggeredFieryDeathPlayer +#set TriggeredFieryDeathPlayer +#flags +#mods +#skillEnd + +#skill SupportFireMasteryPlayer +#set SupportFireMasteryPlayer +#mods +#skillEnd + +#skill SupportFlukePlayer +#set SupportFlukePlayer +#mods +#skillEnd + +#skill SupportFocusedCursePlayer +#set SupportFocusedCursePlayer +#mods +#skillEnd + +#skill SupportManaFountainPlayer +#set SupportManaFountainPlayer +#mods +#skillEnd + +#skill SupportWallFortressPlayer +#set SupportWallFortressPlayer +#mods +#skillEnd + +#skill SupportWallFortressPlayerTwo +#set SupportWallFortressPlayerTwo +#mods +#skillEnd + +#skill SupportFreezePlayer +#set SupportFreezePlayer +#mods +#skillEnd + +#skill SupportFreezeforkPlayer +#set SupportFreezeforkPlayer +#mods +#skillEnd + +#skill SupportChillingIcePlayer +#set SupportChillingIcePlayer +#mods +#skillEnd + +#skill SupportFrostfirePlayer +#set SupportFrostfirePlayer +#mods +#skillEnd + +#skill SupportFrozenVortexPlayer +#set SupportFrozenVortexPlayer +#mods +#skillEnd + +#skill TriggeredFrozenVortexPlayer +#set TriggeredFrozenVortexPlayer +#flags +#mods +#skillEnd + +#skill SupportGlacierPlayer +#set SupportGlacierPlayer +#mods +#skillEnd + +#skill SupportFleetingRemnantsPlayer +#set SupportFleetingRemnantsPlayer +#mods +#skillEnd + +#skill SupportFleetingRemnantsPlayerTwo +#set SupportFleetingRemnantsPlayerTwo +#mods +#skillEnd + +#skill SupportCurseEffectPlayer +#set SupportCurseEffectPlayer +#mods +#skillEnd + +#skill SupportHexBloomPlayer +#set SupportHexBloomPlayer +#mods +#skillEnd + +#skill SupportHinderPlayer +#set SupportHinderPlayer +#mods +#skillEnd + +#skill SupportHoarfrostPlayer +#set SupportHoarfrostPlayer +#mods +#skillEnd + +#skill TriggeredHoarfrostPlayer +#set TriggeredHoarfrostPlayer +#flags +#mods +#skillEnd + +#skill SupportHourglassPlayer +#set SupportHourglassPlayer +#mods +#skillEnd + +#skill SupportHulkingMinionsPlayer +#set SupportHulkingMinionsPlayer +#mods +#skillEnd + +#skill SupportIceBitePlayer +#set SupportIceBitePlayer +#mods +#skillEnd + +#skill SupportIciclePlayer +#set SupportIciclePlayer +#mods +#skillEnd + +#skill ViciousHexSupportPlayer +#set ViciousHexSupportPlayer +#mods +#skillEnd + +#skill DoomBlastPlayer +#set DoomBlastPlayer +#flags +#mods +#skillEnd + +#skill SupportInevitableCriticalsPlayer +#set SupportInevitableCriticalsPlayer +#mods +#skillEnd + +#skill SupportIntenseAgonyPlayer +#set SupportIntenseAgonyPlayer +#mods +#skillEnd + +#skill SupportFlukePlayerTwo +#set SupportFlukePlayerTwo +#mods +#skillEnd + +#skill SupportKalisasCrescendoPlayer +#set SupportKalisasCrescendoPlayer +#mods +#skillEnd + +#skill SupportKulemaksDominionPlayer +#set SupportKulemaksDominionPlayer +#mods +#skillEnd + +#skill SupportKurgalsLeashPlayer +#set SupportKurgalsLeashPlayer +#mods +#skillEnd + +#skill SupportLastGaspPlayer +#set SupportLastGaspPlayer +#mods +#skillEnd + +#skill SupportLightningMasteryPlayer +#set SupportLightningMasteryPlayer +#mods +#skillEnd + +#skill SupportLivingLightningPlayerTwo +#set SupportLivingLightningPlayerTwo +#mods +#skillEnd + +#skill TriggeredLivingLightningPlayerTwo +#set TriggeredLivingLightningPlayerTwo +#flags +#mods +#skillEnd + +#skill SupportLivingLightningPlayer +#set SupportLivingLightningPlayer +#mods +#skillEnd + +#skill TriggeredLivingLightningPlayer +#set TriggeredLivingLightningPlayer +#flags +#mods +#skillEnd + +#skill SupportLoyaltyPlayer +#set SupportLoyaltyPlayer +#mods +#skillEnd + +#skill SupportMagneticRemnantsPlayer +#set SupportMagneticRemnantsPlayer +#mods +#skillEnd + +#skill SupportMagnifiedAreaPlayer +#set SupportMagnifiedAreaPlayer +#mods +#skillEnd + +#skill SupportMagnifiedAreaPlayerTwo +#set SupportMagnifiedAreaPlayerTwo +#mods +#skillEnd + +#skill SupportManaFlarePlayer +#set SupportManaFlarePlayer +#mods +#skillEnd + +#skill TriggeredManaFlarePlayer +#set TriggeredManaFlarePlayer +#flags +#mods +#skillEnd + +#skill SupportManaLeechPlayer +#set SupportManaLeechPlayer +#mods +#skillEnd + +#skill SupportMinionInstabilityPlayer +#set SupportMinionInstabilityPlayer +#mods +#skillEnd + +#skill SupportMinionMasteryPlayer +#set SupportMinionMasteryPlayer +#mods +#skillEnd + +#skill SupportMinionPactPlayer +#set SupportMinionPactPlayer +#mods +#skillEnd + +#skill SupportMinionPactPlayerTwo +#set SupportMinionPactPlayerTwo +#mods +#skillEnd + +#skill SupportMusterPlayer +#set SupportMusterPlayer +#mods +#skillEnd + +#skill SupportMysticismPlayer +#set SupportMysticismPlayer +#mods +#skillEnd + +#skill SupportMysticismPlayerTwo +#set SupportMysticismPlayerTwo +#mods +#skillEnd + +#skill SupportNadirPlayer +#set SupportNadirPlayer +#mods +#skillEnd + +#skill SupportPhysicalMasteryPlayer +#set SupportPhysicalMasteryPlayer +#mods +#skillEnd + +#skill SupportPinpointCriticalPlayer +#set SupportPinpointCriticalPlayer +#mods +#skillEnd + +#skill SupportPotentExposurePlayer +#set SupportPotentExposurePlayer +#mods +#skillEnd + +#skill SupportPotentialPlayer +#set SupportPotentialPlayer +#mods +#skillEnd + +#skill SupportProfanityPlayer +#set SupportProfanityPlayer +#mods +#skillEnd + +#skill SupportProfanityPlayerTwo +#set SupportProfanityPlayerTwo +#mods +#skillEnd + +#skill SupportRapidCastingPlayer +#set SupportRapidCastingPlayer +#mods +#skillEnd + +#skill SupportRapidCastingPlayerTwo +#set SupportRapidCastingPlayerTwo +#mods +#skillEnd + +#skill SupportRapidCastingPlayerThree +#set SupportRapidCastingPlayerThree +#mods +#skillEnd + +#skill SupportRimePlayer +#set SupportRimePlayer +#mods +#skillEnd + +#skill SupportTempestuousTempoPlayer +#set SupportTempestuousTempoPlayer +#mods +#skillEnd + +#skill SupportRitualisticCursePlayer +#set SupportRitualisticCursePlayer +#mods +#skillEnd + +#skill SupportRomirasRequitalPlayer +#set SupportRomirasRequitalPlayer +#mods +#skillEnd + +#skill SupportSacrificialLambPlayer +#set SupportSacrificialLambPlayer +#mods +#skillEnd + +#skill SupportSacrificialLambPlayerTwo +#set SupportSacrificialLambPlayerTwo +#mods +#skillEnd + +#skill SupportSacrificalOfferingPlayer +#set SupportSacrificialOfferingPlayer +#mods +#skillEnd + +#skill SupportShockConductionPlayer +#set SupportShockConductionPlayer +#mods +#skillEnd + +#skill SupportEnergyShieldOnShockKillPlayer +#set SupportEnergyShieldOnShockKillPlayer +#mods +#skillEnd + +#skill SupportWildshardsPlayerThree +#set SupportWildshardsPlayerThree +#mods +#skillEnd + +#skill SupportSoulbreakerPlayer +#set SupportSoulbreakerPlayer +#mods +#skillEnd + +#skill TriggeredSoulbreakerPlayer +#set TriggeredSoulbreakerPlayer +#flags +#mods +#skillEnd + +#skill SupportSpellCascadePlayer +#set SupportSpellCascadePlayer +#mods +#skillEnd + +#skill SupportSpellEchoPlayer +#set SupportSpellEchoPlayer +#mods +#skillEnd + +#skill SupportStormfirePlayer +#set SupportStormfirePlayer +#mods +#skillEnd + +#skill SupportStrongHeartedPlayer +#set SupportStrongHeartedPlayer +#mods +#skillEnd + +#skill SupportIncreasedCriticalDamagePlayer +#set SupportIncreasedCriticalDamagePlayer +#mods +#skillEnd + +#skill SupportTecrodsRevengePlayer +#set SupportTecrodsRevengePlayer +#mods +#skillEnd + +#skill SupportUnbendingPlayer +#set SupportUnbendingPlayer +#mods +#skillEnd + +#skill SupportUnleashPlayer +#set SupportUnleashPlayer +#mods +#skillEnd + +#skill SupportUpwellingPlayer +#set SupportUpwellingPlayer +#mods +#skillEnd + +#skill SupportUpwellingPlayerTwo +#set SupportUpwellingPlayerTwo +#mods +#skillEnd + +#skill SupportVarashtasBlessingPlayer +#set SupportVarashtasBlessingPlayer +#mods +#skillEnd + +#skill SupportVerglasPlayer +#set SupportVerglasPlayer +#mods +#skillEnd + +#skill SupportVilentasPropulsionPlayer +#set SupportVilentasPropulsionPlayer +#mods +#skillEnd + +#skill SupportVolatilePowerPlayer +#set SupportVolatilePowerPlayer +#mods +#skillEnd + +#skill SupportVolatilityPlayer +#set SupportVolatilityPlayer +#mods +#skillEnd + +#skill SupportWildfirePlayer +#set SupportWildfirePlayer +#mods +#skillEnd + +#skill SupportWildshardsPlayer +#set SupportWildshardsPlayer +#mods +#skillEnd + +#skill SupportWildshardsPlayerTwo +#set SupportWildshardsPlayerTwo +#mods +#skillEnd + +#skill SupportWitheringTouchPlayer +#set SupportWitheringTouchPlayer +#mods +#skillEnd + +#skill SupportZarokhsRefrainPlayer +#set SupportZarokhsRefrainPlayer +#mods +#skillEnd + +#skill SupportZenithPlayer +#set SupportZenithPlayer +#mods +#skillEnd + +#skill SupportZenithPlayerTwo +#set SupportZenithPlayerTwo +#mods +#skillEnd + + + --------- Active Other --------- +#skill AcidicConcoctionPlayer +#set AcidicConcoctionPlayer +#flags +#mods +#set AcidicConcoctionPoisonBurstPlayer +#flags +#mods +#skillEnd + +#skill AncestralSpiritsPlayer +#set AncestralSpiritsPlayer +#flags +#mods +#skillEnd + +#skill BleedingConcoctionPlayer +#set BleedingConcoctionPlayer +#flags +#mods +#skillEnd + +#skill BlinkSandPlayer +#set BlinkSandPlayer +#flags +#mods +#skillEnd + +#skill BloodBoilPlayer +#set BloodBoilPlayer +#flags +#mods +#skillEnd + +#skill MeleeBowPlayer +#set MeleeBowPlayer +#flags +#mods +#skillEnd + +#skill ExplodingPoisonToadPlayer +#set ExplodingPoisonToadPlayer +#flags +#mods +#skillEnd + +#skill MetaDeadeyeMarksPlayer +#set MetaDeadeyeMarksPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaDeadeyeMarksPlayer +#set SupportMetaDeadeyeMarksPlayer +#mods +#skillEnd + +#skill MetaCastOnCharmUsePlayer +#set MetaCastOnCharmUsePlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnCharmUsePlayer +#set SupportMetaCastOnCharmUsePlayer +#mods +#skillEnd + +#skill ChaosSpearTriggerChaosSurgePlayer +#set ChaosSpearTriggerChaosSurgePlayer +#flags +#mods +#skillEnd + +#skill MeleeCrossbowPlayer +#set MeleeCrossbowPlayer +#flags +#mods +#skillEnd + +#skill UnloadAmmoPlayer +#set UnloadAmmoPlayer +#flags +#mods +#skillEnd + +#skill CorpsewadeCorpseCloudPlayer +#set CorpsewadeCorpseCloudPlayer +#flags +#mods +#set CorpsewadeCorpseCloudExplosionPlayer +#flags +#mods +#skillEnd + +#skill DemonFormPlayer +#set DemonFormPlayer +#flags +#mods +#skillEnd + +#skill ElementalExpressionTriggeredPlayer +#set ElementalExpressionTriggeredPlayer +#flags +#mods +#set ElementalExpressionFirePlayer +#flags +#mods +#set ElementalExpressionColdPlayer +#flags +#mods +#set ElementalExpressionLightningPlayer +#flags +#mods +#skillEnd + +#skill ElementalStormPlayer +#set ElementalStormPlayer +#flags +#mods +#set ElementalStormFirePlayer +#flags +#mods +#set ElementalStormLightningPlayer +#flags +#mods +#set ElementalStormColdPlayer +#flags +#mods +#skillEnd + +#skill AmazonTriggerElementalSurgePlayer +#set AmazonTriggerColdSurgePlayer +#flags +#mods +#set AmazonTriggerFireSurgePlayer +#flags +#mods +#set AmazonTriggerLightningSurgePlayer +#flags +#mods +#skillEnd + +#skill EncaseInJadePlayer +#set EncaseInJadePlayer +#flags +#mods +#skillEnd + +#skill ExplosiveConcoctionPlayer +#set ExplosiveConcoctionPlayer +#flags +#mods +#set ExplosiveConcoctionSecondPlayer +#flags +#mods +#skillEnd + +#skill MetaCastFireSpellOnHitPlayer +#set MetaCastFireSpellOnHitPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastFireSpellOnHitPlayer +#set SupportMetaCastFireSpellOnHitPlayer +#mods +#skillEnd + +#skill FulminatingConcoctionPlayer +#set FulminatingConcoctionPlayer +#flags +#mods +#skillEnd + +#skill FuturePastPlayer +#set FuturePastPlayer +#flags +#mods +#skillEnd + +#skill InevitableAgonyPlayer +#set InevitableAgonyPlayer +#flags +#mods +#skillEnd + +#skill IntoTheBreachPlayer +#set IntoTheBreachPlayer +#flags +#mods +#skillEnd + +#skill LifeRemnantsPlayer +#set LifeRemnantsPlayer +#flags +#mods +#skillEnd + +#skill Melee1HMacePlayer +#set Melee1HMacePlayer +#flags +#mods +#skillEnd + +#skill Melee2HMacePlayer +#set Melee2HMacePlayer +#flags +#mods +#skillEnd + +#skill MeleeMaceMacePlayer +#set MeleeMaceMacePlayer +#flags +#mods +#skillEnd + +#skill ManifestWeaponPlayer +#set ManifestWeaponPlayer +#flags +#mods +#skillEnd + +#skill MeditatePlayer +#set MeditatePlayer +#flags +#mods +#skillEnd + +#skill ParryPlayer +#set ParryPlayer +#flags +#mods +#skillEnd + +#skill PinnacleOfPowerPlayer +#set PinnacleOfPowerPlayer +#flags +#mods +#skillEnd + +#skill MeleeUnarmedPlayer +#set MeleeUnarmedPlayer +#flags +#mods +#skillEnd + +#skill MeleeQuarterstaffPlayer +#set MeleeQuarterstaffPlayer +#flags +#mods +#skillEnd + +#skill ShieldBlockPlayer +#set ShieldBlockPlayer +#flags +#mods +#skillEnd + +#skill RitualSacrificePlayer +#set RitualSacrificePlayer +#flags +#mods +#skillEnd + +#skill RunicTemperingPlayer +#set RunicTempering +#flags +#mods +#skillEnd + +#skill ShatteringConcoctionPlayer +#set ShatteringConcoctionPlayer +#flags +#mods +#skillEnd + +#skill SorceryWardPlayer +#set SorceryWardPlayer +#flags +#mods +#skillEnd + +#skill MeleeSpearOffHandPlayer +#set MeleeSpearOffHandPlayer +#flags +#mods +#skillEnd + +#skill MeleeSpearPlayer +#set MeleeSpearPlayer +#flags +#mods +#skillEnd + +#skill SpearThrowPlayer +#set SpearThrowPlayer +#flags +#mods +#set SpearThrowFrenzyChargePlayer +#flags +#mods +#skillEnd + +#skill SummonInfernalHoundPlayer +#set SummonInfernalHoundPlayer +#flags +#mods +#skillEnd + +#skill SupportingFirePlayer +#set SupportingFirePlayer +#flags +#mods +#skillEnd + +#skill CommandDeathFromAbovePlayer +#set CommandDeathFromAbovePlayer +#flags +#mods +#skillEnd + +#skill TemperWeaponPlayer +#set TemperWeaponPlayer +#flags +#mods +#skillEnd + +#skill TemperWeaponCombustionPlayer +#set TemperWeaponCombustionPlayer +#flags +#mods +#skillEnd + +#skill TemporalRiftPlayer +#set TemporalRiftPlayer +#flags +#mods +#skillEnd + +#skill TimeFreezePlayer +#set TimeFreezePlayer +#flags +#mods +#skillEnd + +#skill TimeSnapPlayer +#set TimeSnapPlayer +#flags +#mods +#skillEnd + +#skill UnboundAvatarPlayer +#set UnboundAvatarPlayer +#flags +#mods +#skillEnd + +#skill UnleashPlayer +#set UnleashPlayer +#flags +#mods +#skillEnd + +#skill VoidIllusionPlayer +#set VoidIllusionPlayer +#flags +#mods +#skillEnd + +#skill VoidIllusionSpawnPlayer +#set VoidIllusionSpawnPlayer +#flags +#mods +#skillEnd + + + --------- Support Other --------- + + diff --git a/src/Export/Skills/act_dex.txt b/src/Export/Skills/act_dex.txt index fc93dd6658..ca6fb31bdc 100644 --- a/src/Export/Skills/act_dex.txt +++ b/src/Export/Skills/act_dex.txt @@ -181,6 +181,12 @@ statMap = { #mods #skillEnd +#skill EscapeShotIceFragmentPlayer +#set EscapeShotIceFragmentPlayer +#flags attack projectile area +#mods +#skillEnd + #skill ExplosiveSpearPlayer #set ExplosiveSpearPlayer #flags attack projectile @@ -263,6 +269,18 @@ statMap = { #mods #skillEnd +#skill IceTippedArrowsPlayer +#set IceTippedArrowsPlayer +#flags duration +#mods +#skillEnd + +#skill IceTippedArrowsIceFragmentPlayer +#set IceTippedArrowsIceFragmentPlayer +#flags attack projectile area +#mods +#skillEnd + #skill LightningArrowPlayer #set LightningArrowPlayer #flags attack projectile @@ -307,6 +325,32 @@ statMap = { #mods #skillEnd +#skill MetaMirageArcherPlayer +#set MetaMirageArcherPlayer +#flags +#mods +#skillEnd + +#skill SupportMirageArcherPlayer +#set SupportMirageArcherPlayer +#mods +#skillEnd + +#skill MirageArcherSpawnPlayer +#set MirageArcherSpawnPlayer +#flags +#mods +#skillEnd + +#skill PhantasmalArrowPlayer +#set PhantasmalArrowPlayer +#flags attack projectile duration +#mods +#set PhantasmalArrowExplosionPlayer +#flags attack projectile area duration +#mods +#skillEnd + #skill PlagueBearerPlayer #set PlagueBearerPlayer #flags @@ -413,7 +457,9 @@ end, #mods #set SnipeExplosionPlayer #flags attack projectile area -#baseMod mod("Condition:PerfectTiming", "FLAG", true) +#mods +#set SnipeFrozenExplosionPlayer +#flags attack projectile area #mods #skillEnd @@ -542,10 +588,22 @@ statMap = { #mods #skillEnd +#skill ToxicDomainPlayer +#set ToxicDomainPlayer +#flags +#mods +#set ToxicDomainPustuleExplosion +#flags attack area duration +#mods +#skillEnd + #skill ToxicGrowthPlayer #set ToxicGrowthPlayer #flags attack projectile area #mods +#set ToxicGrowthBurstPlayer +#flags attack projectile +#mods #skillEnd #skill TrailOfCaltropsPlayer @@ -560,26 +618,6 @@ statMap = { #mods #skillEnd -#skill TrinityPlayer -#set TrinityPlayer -#flags buff duration -statMap = { - ["trinity_damage_+%_final_to_grant_per_50_resonance"] = { - mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ResonanceCount", div = 30 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), - }, - ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"] = { - mod("Speed", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "ResonanceCount", threshold = 250 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), - }, - ["quality_display_trinity_is_gem"] = { - -- Display only - }, - ["trinity_loss_per_hit"] = { - -- Display only - }, -}, -#mods -#skillEnd - #skill TwisterPlayer #set TwisterPlayer #flags attack area duration projectile @@ -624,6 +662,12 @@ statMap = { #mods #skillEnd +#skill TriggeredVoltaicMarkNovaPlayer +#set TriggeredVoltaicMarkNovaPlayer +#flags nonWeaponAttack +#mods +#skillEnd + #skill WhirlingSlashPlayer #set WhirlingSlashPlayer #flags attack area melee @@ -669,12 +713,6 @@ statMap = { #mods #skillEnd -#skill TriggeredVoltaicMarkNovaPlayer -#set TriggeredVoltaicMarkNovaPlayer -#flags nonWeaponAttack -#mods -#skillEnd - #skill WindDancerPlayer #set WindDancerPlayer #flags @@ -713,7 +751,4 @@ statMap = { #set WindSerpentsFurySnakePlayer #flags attack area melee #mods -#set WindSerpentsFuryKnockbackExplosionPlayer -#flags attack area melee -#mods #skillEnd \ No newline at end of file diff --git a/src/Export/Skills/act_int.txt b/src/Export/Skills/act_int.txt index cd9c3a8981..00da8f1d36 100644 --- a/src/Export/Skills/act_int.txt +++ b/src/Export/Skills/act_int.txt @@ -7,18 +7,7 @@ local skills, mod, flag, skill = ... #skill ArcPlayer #set ArcPlayer -#flags spell chaining -statMap = { - ["arc_damage_+%_final_for_each_remaining_chain"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ChainRemaining" }), - }, - ["quality_display_arc_is_gem"] = { - -- Display only - }, -}, -#mods -#set ArcExplosionPlayer -#flags spell area +#flags spell chaining projectile statMap = { ["arc_damage_+%_final_for_each_remaining_chain"] = { mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ChainRemaining" }), @@ -61,6 +50,12 @@ statMap = { }, }, #mods +#set BallLightningInfusedExplosionPlayer +#flags spell area projectile +#mods +#set BallLightningIgnitedGround +#flags spell area projectile duration +#mods #skillEnd #skill MetaBarrierInvocationPlayer @@ -164,26 +159,14 @@ statMap = { #mods #skillEnd -#skill MetaCastOnFreezePlayer -#set MetaCastOnFreezePlayer -#flags -#mods -#skillEnd - -#skill SupportMetaCastOnFreezePlayer -#set SupportMetaCastOnFreezePlayer -#flags -#mods -#skillEnd - -#skill MetaCastOnIgnitePlayer -#set MetaCastOnIgnitePlayer +#skill MetaCastOnElementalAilmentPlayer +#set MetaCastOnElementalAilmentPlayer #flags #mods #skillEnd -#skill SupportMetaCastOnIgnitePlayer -#set SupportMetaCastOnIgnitePlayer +#skill SupportMetaCastOnElementalAilmentPlayer +#set SupportMetaCastOnElementalAilmentPlayer #flags #mods #skillEnd @@ -200,18 +183,6 @@ statMap = { #mods #skillEnd -#skill MetaCastOnShockPlayer -#set MetaCastOnShockPlayer -#flags -#mods -#skillEnd - -#skill SupportMetaCastOnShockPlayer -#set SupportMetaCastOnShockPlayer -#flags -#mods -#skillEnd - #from item #skill WeaponGrantedChaosboltPlayer #set WeaponGrantedChaosboltPlayer @@ -219,8 +190,8 @@ statMap = { #mods #skillEnd -#skill ChargeInfusionPlayer -#set ChargeInfusionPlayer +#skill ChargeRegulationPlayer +#set ChargeRegulationPlayer statMap = { ["charge_mastery_skill_speed_+%_final_with_frenzy_charges"] = { mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), @@ -259,16 +230,13 @@ statMap = { #mods #skillEnd -#skill ColdSnapPlayer -#set ColdSnapPlayer -#flags area spell -#mods -#skillEnd - #skill CometPlayer #set CometPlayer #flags area spell #mods +#set CometFireInfusionPlayer +#flags area spell +#mods #skillEnd #skill ConductivityPlayer @@ -292,11 +260,34 @@ statMap = { #set ConvalescencePlayer #flags #mods +#skillEnd + +#skill ConvalescenceActivePlayer #set ConvalescenceActivePlayer #flags duration #mods #skillEnd +#skill CracklingPalmPlayer +#set CracklingPalmPlayer +#flags +#mods +#set CracklingPalmBoltPlayer +#flags attack unarmed area +#mods +#skillEnd + +#skill MetaCastCurseOnBlockPlayer +#set MetaCastCurseOnBlockPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastCurseOnBlockPlayer +#set SupportMetaCastCurseOnBlockPlayer +#mods +#skillEnd + #skill DarkEffigyPlayer #set DarkEffigyPlayer #flags area spell totem duration @@ -367,13 +358,27 @@ statMap = { #mods #skillEnd -#skill BlazingClusterPlayer -#set BlazingClusterPlayer +#skill ElementalWeaknessPlayer +#set ElementalWeaknessPlayer +#flags area spell duration +statMap = { + ["base_skill_buff_all_elements_resistance_%_to_apply"] = { + mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), + }, +}, +#mods +#skillEnd + +#skill EmberFusilladePlayer +#set EmberFusilladePlayer #flags spell duration projectile #mods -#set BlazingClusterExplosionPlayer +#set EmberFusilladeExplosionPlayer #flags spell area projectile #mods +#set EmberFusilladeBeamPlayer +#flags spell projectile +#mods #skillEnd #skill EnfeeblePlayer @@ -400,6 +405,16 @@ statMap = { #mods #skillEnd +#from item +#skill ExsanguinatePlayer +#set ExsanguinatePlayer +#flags spell duration chaining +#mods +#set ExsanguinateDotPlayer +#flags spell duration chaining +#mods +#skillEnd + #skill EyeOfWinterPlayer #set EyeOfWinterPlayer #flags spell projectile @@ -415,6 +430,12 @@ statMap = { #mods #skillEnd +#skill FeastOfFleshPlayer +#set FeastOfFleshPlayer +#flags +#mods +#skillEnd + #skill FireballPlayer #set FireballPlayer #flags spell projectile @@ -441,8 +462,11 @@ statMap = { #set FirestormPlayer #flags spell area duration #mods -#set FirestormEmpoweredPlayer -#flags spell +#set FirestormColdInfusionPlayer +#flags spell area duration +#mods +#set FirestormLightningInfusionPlayer +#flags spell area duration #mods #skillEnd @@ -517,20 +541,24 @@ statMap = { #mods #skillEnd +#skill FrostDartsPlayer +#set FrostDartsPlayer +#flags spell projectile +#mods +#set FrostDartsExplodePlayer +#flags spell projectile area +#mods +#set FrostDartsIceMortarPlayer +#flags spell projectile area +#mods +#skillEnd + #skill FrostWallPlayer #set FrostWallPlayer #flags spell area duration #mods -#skillEnd - -#skill HypothermiaPlayer -#set HypothermiaPlayer -#flags spell curse area duration -statMap = { - ["base_skill_buff_cold_damage_resistance_%_to_apply"] = { - mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, -}, +#set FrostWallInfusedPlayer +#flags spell area duration #mods #skillEnd @@ -555,26 +583,34 @@ statMap = { #set FrozenLocusGroundPlayer #flags area duration #mods +#set FrozenLocusExplodePlayer +#flags attack area +#mods #skillEnd -#skill FrozenLocusExplodePlayer -#set FrozenLocusExplodePlayer -#flags area nonWeaponAttack hit +#skill FulminationPlayer +#set FulminationPlayer +#flags #mods #skillEnd #from item -#skill GalvanicFieldPlayer -#set GalvanicFieldPlayer +#skill GalvanicFieldBuffPlayer +#set GalvanicFieldBuffPlayer #flags area duration chaining statMap = { - ["galvanic_field_retargeting_delay_ms"] = { + ["galvanic_field_shock_chance_+%_final"] = { + mod("EnemyShockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Galvanic Field" }), + }, +}, +#mods +#set GalvanicFieldOrbPlayer +#flags spell duration +statMap = { + ["base_galvanic_field_beam_delay_ms"] = { skill("hitTimeOverride", nil), div = 1000, }, - ["base_chance_to_shock_%_from_skill"] = { - mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Galvanic Field" }), - }, }, #mods #skillEnd @@ -588,7 +624,6 @@ end, #mods #set GatheringStormPerfectPlayer #flags attack area melee channelRelease -#baseMod mod("Condition:PerfectTiming", "FLAG", true) #mods #set GatheringStormExplodePlayer #flags attack area melee channelRelease duration @@ -616,6 +651,12 @@ end, #mods #skillEnd +#skill GrimFeastResummonPlayer +#set GrimFeastResummonPlayer +#flags +#mods +#skillEnd + #skill HandOfChayulaPlayer #set HandOfChayulaPlayer #flags attack melee area unarmed @@ -628,6 +669,13 @@ end, #mods #skillEnd +#from item +#skill HeartOfIcePlayer +#set HeartOfIcePlayer +#flags buff aura +#mods +#skillEnd + #skill HeraldOfIcePlayer #set HeraldOfIcePlayer #flags @@ -648,11 +696,22 @@ statMap = { #mods #skillEnd +#skill HypothermiaPlayer +#set HypothermiaPlayer +#flags spell curse area duration +statMap = { + ["base_skill_buff_cold_damage_resistance_%_to_apply"] = { + mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), + }, +}, +#mods +#skillEnd + #skill IceNovaPlayer #set IceNovaPlayer #flags spell area #mods -#set IceNovaPlayerOnFrostbolt +#set IceNovaColdInfusedPlayer #flags spell area #mods #skillEnd @@ -666,6 +725,34 @@ statMap = { #mods #skillEnd +#from item +#skill IcestormPlayer +#set IcestormPlayer +#flags spell area duration +statMap = { + ["fire_storm_fireball_delay_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, +}, +#mods +#set IcestormEmpoweredPlayer +#flags spell area duration +#mods +#skillEnd + +#from item +#skill ImpurityPlayer +#set ImpurityPlayer +#flags spell aura area +statMap = { + ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = { + mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), + }, +}, +#mods +#skillEnd + #skill IncineratePlayer #set IncineratePlayer #flags spell area duration @@ -688,6 +775,13 @@ statMap = { #mods #skillEnd +#from item +#skill UniqueBreachLightningBoltPlayer +#set UniqueBreachLightningBoltPlayer +#flags spell area +#mods +#skillEnd + #skill LightningConduitPlayer #set LightningConduitPlayer #flags spell @@ -847,6 +941,20 @@ statMap = { #mods #skillEnd +#minionList RavenousSwarm +#skill RavenousSwarmPlayer +#set RavenousSwarmPlayer +#flags spell minion +#mods +#skillEnd + +#from item +#skill ReapPlayer +#set ReapPlayer +#flags spell area +#mods +#skillEnd + #skill MetaReapersInvocationPlayer #set MetaReapersInvocationPlayer #flags @@ -878,18 +986,11 @@ statMap = { #skillEnd #skill ShatteringPalmExplosionPlayer -#set TriggeredFreezingWordExplosionPlayer +#set ShatteringPalmExplosionPlayer #flags area nonWeaponAttack hit unarmed #mods #skillEnd -#from item -#skill ShockNovaPlayer -#set ShockNovaPlayer -#flags spell area -#mods -#skillEnd - #from item #skill SigilOfPowerPlayer #set SigilOfPowerPlayer @@ -905,6 +1006,12 @@ statMap = { #mods #skillEnd +#skill SiphonElementsPlayer +#set SiphonElementsPlayer +#flags +#mods +#skillEnd + #skill SiphoningStrikePlayer #set SiphoningStrikePlayer #flags attack area melee @@ -971,6 +1078,18 @@ statMap = { #mods #skillEnd +#skill SnapPlayer +#set SnapColdPlayer +#flags area spell +#mods +#set SnapLightningPlayer +#flags area spell +#mods +#set SnapFirePlayer +#flags area spell +#mods +#skillEnd + #skill SolarOrbPlayer #set SolarOrbPlayer #flags spell area duration @@ -982,7 +1101,7 @@ statMap = { }, #mods #set SolarOrbAuraPlayer -#flags spell area duration +#flags spell area #mods #skillEnd @@ -997,10 +1116,24 @@ statMap = { #mods #skillEnd +#from item +#skill SoulrendPlayer +#set SoulrendPlayer +#flags spell projectile +#mods +#set SoulrendDotPlayer +#flags spell duration +#baseMod skill("debuff", true) +#mods +#skillEnd + #skill SparkPlayer #set SparkPlayer #flags spell projectile duration #mods +#set SparkColdInfusedPlayer +#flags spell projectile duration +#mods #skillEnd #minionList @@ -1022,12 +1155,6 @@ statMap = { #mods #skillEnd -#skill StaggeringPalmUnarmedProjectilePlayer -#set StaggeringPalmUnarmedProjectilePlayer -#flags attack projectile unarmed -#mods -#skillEnd - #skill StormWavePlayer #set StormWavePlayer #flags attack melee area @@ -1064,6 +1191,26 @@ statMap = { #mods #skillEnd +#skill TrinityPlayer +#set TrinityPlayer +#flags buff duration +statMap = { + ["trinity_damage_+%_final_to_grant_per_50_resonance"] = { + mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ResonanceCount", div = 30 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), + }, + ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"] = { + mod("Speed", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "ResonanceCount", threshold = 250 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }), + }, + ["quality_display_trinity_is_gem"] = { + -- Display only + }, + ["trinity_loss_per_hit"] = { + -- Display only + }, +}, +#mods +#skillEnd + #minionList UnearthBoneConstruct #skill UnearthPlayer #set UnearthPlayer @@ -1083,6 +1230,9 @@ statMap = { #set VaultingImpactPlayer #flags attack area melee #mods +#set VaultingImpactDazedPlayer +#flags attack area melee +#mods #skillEnd #from item @@ -1090,6 +1240,9 @@ statMap = { #set VolatileDeadPlayer #flags spell area #mods +#set VolatileDeadIgniteAuraPlayer +#flags spell area +#mods #skillEnd #skill VulnerabilityPlayer diff --git a/src/Export/Skills/act_str.txt b/src/Export/Skills/act_str.txt index 8d6b70aa79..ffd2630c39 100644 --- a/src/Export/Skills/act_str.txt +++ b/src/Export/Skills/act_str.txt @@ -5,6 +5,24 @@ -- local skills, mod, flag, skill = ... +#skill AncestralCryPlayer +#set AncestralCryPlayer +#flags warcry area duration +#mods +#skillEnd + +#skill AncestralCryShockwavePlayer +#set AncestralCryShockwavePlayer +#flags attack melee area +#mods +#skillEnd + +#skill AncestralCryProjectilePlayer +#set AncestralCryProjectilePlayer +#flags attack projectile +#mods +#skillEnd + #skill AncestralWarriorTotemPlayer #set AncestralWarriorTotemPlayer #flags totem attack @@ -33,9 +51,6 @@ local skills, mod, flag, skill = ... #set ArtilleryBallistaProjectilePlayer #flags attack area projectile totem #mods -#set ArtilleryBallistaProjectileExplodePlayer -#flags attack area projectile totem -#mods #skillEnd #skill AttritionPlayer @@ -76,6 +91,18 @@ statMap = { #mods #skillEnd +#skill BlackPowderBlitzReservationPlayer +#set BlackPowderBlitzReservationPlayer +#flags +#mods +#skillEnd + +#skill BlackPowderBlitzPlayer +#set BlackPowderBlitzPlayer +#flags hit area +#mods +#skillEnd + #skill BoneshatterPlayer #set BoneshatterPlayer #flags attack melee @@ -131,22 +158,36 @@ statMap = { #set ClusterGrenadePlayer #flags attack area projectile duration #mods -#skillEnd - -#skill ClusterGrenadeMiniPlayer #set ClusterGrenadeMiniPlayer #flags attack area projectile #mods #skillEnd +#from item +#skill CrossbowRequiemAmmoPlayer +#set CrossbowRequiemAmmoPlayer +#flags +#mods +#skillEnd + +#from item +#skill CrossbowRequiemPlayer +#set CrossbowRequiemPlayer +#flags projectile area +#mods +#skillEnd + #from item #skill StaffConsecratePlayer #set StaffConsecratePlayer -#flags spell +#flags spell duration #mods #skillEnd #skill DefianceBannerReservationPlayer +#set DefianceBannerReservationPlayer +#flags +#mods #skillEnd #skill DefianceBannerPlayer @@ -165,6 +206,9 @@ statMap = { #skillEnd #skill DreadBannerReservationPlayer +#set DreadBannerReservationPlayer +#flags +#mods #skillEnd #skill DreadBannerPlayer @@ -231,19 +275,30 @@ statMap = { #mods #skillEnd -#from item -#skill ExsanguinatePlayer -#set ExsanguinatePlayer -#flags spell duration chaining +#skill FlashGrenadePlayer +#set FlashGrenadePlayer +#flags attack area projectile +#mods +#skillEnd + +#skill ForgeHammerPlayer +#set ForgeHammerPlayer +#flags attack area melee duration +#mods +#set ForgeHammerFissurePlayer +#flags attack area melee duration #mods -#set ExsanguinateDotPlayer -#flags spell duration chaining +#skillEnd + +#skill FortifyingCryPlayer +#set FortifyingCryPlayer +#flags warcry area duration #mods #skillEnd -#skill FlashGrenadePlayer -#set FlashGrenadePlayer -#flags attack area projectile +#skill FortifyingCryShockwavePlayer +#set FortifyingCryShockwavePlayer +#flags attack melee area shieldAttack #mods #skillEnd @@ -259,6 +314,15 @@ statMap = { #mods #skillEnd +#skill GeminiSurgePlayer +#set GeminiSurgeColdPlayer +#flags attack area +#mods +#set GeminiSurgeFirePlayer +#flags attack area +#mods +#skillEnd + #skill HammerOfTheGodsPlayer #set HammerOfTheGodsPlayer #flags attack area melee duration @@ -300,18 +364,21 @@ statMap = { #mods #skillEnd -#skill LeapSlamPlayer -#set LeapSlamPlayer -#flags attack area melee +#skill IronWardPlayer +#set IronWardPlayer +#flags #mods #skillEnd -#skill MetaCastLightningSpellOnHitPlayer -#set MetaCastLightningSpellOnHitPlayer -#flags spell +#skill IronWardNovaPlayer +#set IronWardNovaPlayer +#flags hit area #mods -#set SupportMetaCastLightningSpellOnHitPlayer -#flags +#skillEnd + +#skill LeapSlamPlayer +#set LeapSlamPlayer +#flags attack area melee #mods #skillEnd @@ -557,6 +624,21 @@ statMap = { #mods #skillEnd +#skill MetaMortarCannonPlayer +#set MetaMortarCannonPlayer +#flags totem attack +#mods +#skillEnd + +#skill SupportMortarCannonPlayer +#set SupportMortarCannonPlayer + addFlags = { + totem = true, + }, +#flags +#mods +#skillEnd + #skill OilGrenadePlayer #set OilGrenadePlayer #flags attack area projectile duration @@ -578,14 +660,6 @@ end, #mods #set PerfectStrikeShockwavePlayer #flags attack area melee duration channelRelease -#baseMod mod("Condition:PerfectTiming", "FLAG", true) -#mods -#skillEnd - -#from item -#skill ReapPlayer -#set ReapPlayer -#flags spell area #mods #skillEnd @@ -595,18 +669,6 @@ end, #mods #skillEnd -#skill RipwireBallistaPlayer -#set RipwireBallistaPlayer -#flags totem -#mods -#skillEnd - -#skill RipwireBallistaProjectilePlayer -#set RipwireBallistaProjectilePlayer -#flags attack projectile totem -#mods -#skillEnd - #skill RollingSlamPlayer #set RollingSlamPlayer #flags attack area melee @@ -675,6 +737,21 @@ statMap = { #mods #skillEnd +#skill SiegeBallistaPlayer +#set SiegeBallistaPlayer +#flags totem +#mods +#skillEnd + +#skill SiegeBallistaProjectilePlayer +#set SiegeBallistaProjectilePlayer +#flags attack projectile totem +#mods +#set SiegeBallistaProjectileExplodePlayer +#flags attack projectile totem +#mods +#skillEnd + #skill StampedePlayer #set StampedePlayer #flags attack area melee @@ -705,12 +782,33 @@ statMap = { #mods #skillEnd +#skill MetaCastLightningSpellOnHitPlayer +#set MetaCastLightningSpellOnHitPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastLightningSpellOnHitPlayer +#set SupportMetaCastLightningSpellOnHitPlayer +#flags +#mods +#skillEnd + #skill TimeOfNeedPlayer #set TimeOfNeedPlayer #flags duration #mods #skillEnd +#skill ValakosChargePlayer +#set ValakosChargePlayer +#flags area +#mods +#set ValakosChargeArcPlayer +#flags spell chaining +#mods +#skillEnd + #skill VolcanicFissurePlayer #set VolcanicFissurePlayer #flags attack area melee duration @@ -724,6 +822,9 @@ statMap = { #skillEnd #skill WarBannerReservationPlayer +#set WarBannerReservationPlayer +#flags +#mods #skillEnd #skill WarBannerPlayer diff --git a/src/Export/Skills/minion.txt b/src/Export/Skills/minion.txt index b1566f1247..0198811e11 100644 --- a/src/Export/Skills/minion.txt +++ b/src/Export/Skills/minion.txt @@ -178,3 +178,15 @@ skills["MinionInstability"] = { #flags attack melee #mods #skillEnd + +#skill RavenousSwarmAttack Attack +#set RavenousSwarmAttack +#flags attack melee area +#mods +#skillEnd + +#skill LivingLightningZap Zap +#set LivingLightningZap +#flags attack melee chaining +#mods +#skillEnd \ No newline at end of file diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 97f0b2a026..78e411577f 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -5,11 +5,38 @@ -- local skills, mod, flag, skill = ... +#from tree +#skill AcidicConcoctionPlayer +#set AcidicConcoctionPlayer +#flags attack projectile unarmed area +#mods +#set AcidicConcoctionPoisonBurstPlayer +#flags attack area +statMap = { + ["poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed"] = { + mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", actor = "enemy", var = "PoisonStacks" }), + }, + ["active_skill_base_secondary_area_of_effect_radius"] = { + skill("radius", nil), + }, +}, +#mods +#skillEnd + #from tree #minionList AncestralSpiritTurtle AncestralSpiritHulk AncestralSpiritCaster AncestralSpiritWarhorn #skill AncestralSpiritsPlayer #set AncestralSpiritsPlayer #flags spell minion +statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, +}, #mods #skillEnd @@ -17,11 +44,6 @@ local skills, mod, flag, skill = ... #skill BleedingConcoctionPlayer #set BleedingConcoctionPlayer #flags attack projectile unarmed area -statMap = { - ["flask_throw_bleed_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed), - }, -}, #mods #skillEnd @@ -33,19 +55,42 @@ statMap = { #skillEnd #from item -#skill MetaCastOnCharmUsePlayer -#set MetaCastOnCharmUsePlayer +#skill MeleeBowPlayer +#set MeleeBowPlayer +#flags attack projectile +#mods +#skillEnd + +#from item +#skill ExplodingPoisonToadPlayer +#set ExplodingPoisonToadPlayer +#flags area attack +#mods +#skillEnd + +#from tree +#skill MetaDeadeyeMarksPlayer +#set MetaDeadeyeMarksPlayer #flags #mods -#set SupportMetaCastOnCharmUsePlayer +#skillEnd + +#from tree +#skill SupportMetaDeadeyeMarksPlayer +#set SupportMetaDeadeyeMarksPlayer +#mods +#skillEnd + +#from item +#skill MetaCastOnCharmUsePlayer +#set MetaCastOnCharmUsePlayer #flags #mods #skillEnd #from item -#skill MeleeBowPlayer -#set MeleeBowPlayer -#flags attack projectile +#skill SupportMetaCastOnCharmUsePlayer +#set SupportMetaCastOnCharmUsePlayer #mods #skillEnd @@ -127,23 +172,22 @@ statMap = { #skillEnd #from tree -#skill EncaseInJadePlayer -#set EncaseInJadePlayer -#flags duration +#skill AmazonTriggerElementalSurgePlayer +#set AmazonTriggerColdSurgePlayer +#flags attack area #mods -#skillEnd - -#from tree -#skill MetaCastFireSpellOnHitPlayer -#set MetaCastFireSpellOnHitPlayer -#flags +#set AmazonTriggerFireSurgePlayer +#flags attack area +#mods +#set AmazonTriggerLightningSurgePlayer +#flags attack area #mods #skillEnd #from tree -#skill SupportMetaCastFireSpellOnHitPlayer -#set SupportMetaCastFireSpellOnHitPlayer -#flags +#skill EncaseInJadePlayer +#set EncaseInJadePlayer +#flags duration #mods #skillEnd @@ -160,6 +204,20 @@ statMap = { #mods #skillEnd +#from tree +#skill MetaCastFireSpellOnHitPlayer +#set MetaCastFireSpellOnHitPlayer +#flags +#mods +#skillEnd + +#from tree +#skill SupportMetaCastFireSpellOnHitPlayer +#set SupportMetaCastFireSpellOnHitPlayer +#flags +#mods +#skillEnd + #from tree #skill FulminatingConcoctionPlayer #set FulminatingConcoctionPlayer @@ -173,16 +231,17 @@ statMap = { #mods #skillEnd -#from tree -#skill AmazonTriggerElementalInfusionPlayer -#set AmazonTriggerColdInfusionPlayer -#flags attack area -#mods -#set AmazonTriggerFireInfusionPlayer -#flags attack area +#from item +#skill FuturePastPlayer +#set FuturePastPlayer +#flags #mods -#set AmazonTriggerLightningInfusionPlayer -#flags attack area +#skillEnd + +#from tree +#skill InevitableAgonyPlayer +#set InevitableAgonyPlayer +#flags #mods #skillEnd @@ -221,13 +280,6 @@ statMap = { #mods #skillEnd -#from item -#skill ChaosSpearTriggerChaosInfusionPlayer -#set ChaosSpearTriggerChaosInfusionPlayer -#flags attack area -#mods -#skillEnd - #from tree #minionList ManifestWeapon #skill ManifestWeaponPlayer @@ -237,6 +289,15 @@ minionUses = { }, #set ManifestWeaponPlayer #flags spell minion duration +statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, +}, #mods #skillEnd @@ -259,15 +320,10 @@ statMap = { #mods #skillEnd -#from tree -#skill PoisonousConcoctionPlayer -#set PoisonousConcoctionPlayer -#flags attack projectile unarmed area -statMap = { - ["flask_throw_poison_effect_+%_final"] = { - mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison), - }, -}, +#from item +#skill PinnacleOfPowerPlayer +#set PinnacleOfPowerPlayer +#flags buff duration #mods #skillEnd @@ -356,9 +412,15 @@ statMap = { #skill SupportingFirePlayer #set SupportingFirePlayer #flags minion permanentMinion -#mods -#set CommandDeathFromAbovePlayer -#flags minion permanentMinion +statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_area_of_effect_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, +}, #mods #skillEnd @@ -404,63 +466,16 @@ statMap = { #mods #skillEnd -#from item -#skill UniqueBreachLightningBoltPlayer -#set UniqueBreachLightningBoltPlayer -#flags spell area -#mods -#skillEnd - -#from item -#skill CrossbowRequiemAmmoPlayer -#set CrossbowRequiemAmmoPlayer +#from tree +#skill VoidIllusionPlayer +#set VoidIllusionPlayer #flags #mods #skillEnd -#from item -#skill CrossbowRequiemPlayer -#set CrossbowRequiemPlayer -#flags projectile area -#mods -#skillEnd - -#from item -#skill ExplodingPoisonToadPlayer -#set ExplodingPoisonToadPlayer -#flags area attack -#mods -#skillEnd - -#from item -#skill PinnacleOfPowerPlayer -#set PinnacleOfPowerPlayer -#flags buff duration -#mods -#skillEnd - -#from item -#skill ImpurityPlayer -#set ImpurityPlayer -#flags aura -statMap = { - ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = { - mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, -}, -#mods -#skillEnd - -#from item -#skill HeartOfIcePlayer -#set HeartOfIcePlayer -#flags buff aura -#mods -#skillEnd - -#from item -#skill IcestormPlayer -#set IcestormPlayer -#flags spell area duration +#from tree +#skill VoidIllusionSpawnPlayer Void Illusion +#set VoidIllusionSpawnPlayer +#flags attack #mods #skillEnd \ No newline at end of file diff --git a/src/Export/Skills/sup_dex.txt b/src/Export/Skills/sup_dex.txt index a728f95b76..c60ed3fb42 100644 --- a/src/Export/Skills/sup_dex.txt +++ b/src/Export/Skills/sup_dex.txt @@ -4,18 +4,18 @@ -- local skills, mod, flag, skill = ... -#skill SupportFasterProjectilesPlayer -#set SupportFasterProjectilesPlayer +#skill SupportAdhesiveGrenadesPlayer +#set SupportAdhesiveGrenadesPlayer statMap = { - ["support_faster_projectiles_projectile_speed_+%_final"] = { - mod("ProjectileSpeed", "MORE", nil), + ["support_sticky_grenade_damage_+%_final"] = { + mod("Damage", "MORE", nil), }, }, #mods #skillEnd -#skill SupportAdherePlayer -#set SupportAdherePlayer +#skill SupportAdhesiveGrenadesPlayerTwo +#set SupportAdhesiveGrenadesPlayerTwo statMap = { ["support_sticky_grenade_damage_+%_final"] = { mod("Damage", "MORE", nil), @@ -24,11 +24,49 @@ statMap = { #mods #skillEnd +#skill SupportAdhesiveGrenadesPlayerThree +#set SupportAdhesiveGrenadesPlayerThree +statMap = { + ["support_sticky_grenade_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportAdmixturePlayer +#set SupportAdmixturePlayer +statMap = { + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Poison, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }), + }, + ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Bleed, { type = "ActorCondition", actor = "enemy", var = "Poisoned" }), + }, +}, +#mods +#skillEnd + +#skill SupportAilithLineagePlayer +#set SupportAilithLineagePlayer +#mods +#skillEnd + #skill SupportAlignmentPlayer #set SupportAlignmentPlayer #mods #skillEnd +#skill SupportAlignmentPlayerTwo +#set SupportAlignmentPlayerTwo +#mods +#skillEnd + +#skill SupportAlignmentPlayerThree +#set SupportAlignmentPlayerThree +#mods +#skillEnd + #skill SupportAmmoConservationPlayer #set SupportAmmoConservationPlayer statMap = { @@ -39,11 +77,49 @@ statMap = { #mods #skillEnd +#skill SupportAmmoConservationPlayerTwo +#set SupportAmmoConservationPlayerTwo +statMap = { + ["crossbow_attack_%_chance_to_not_consume_ammo"] = { + mod("ChanceToNotConsumeAmmo", "BASE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportAmmoConservationPlayerThree +#set SupportAmmoConservationPlayerThree +statMap = { + ["crossbow_attack_%_chance_to_not_consume_ammo"] = { + mod("ChanceToNotConsumeAmmo", "BASE", nil), + }, + ["support_ammo_conservation_crossbow_reload_speed_+%_final"] = { + mod("ReloadSpeed", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportArakaalisLustPlayer +#set SupportArakaalisLustPlayer +#mods +#skillEnd + +#skill SupportAmmoConservationPlayerFour +#set SupportAmmoConservationPlayerFour +#mods +#skillEnd + #skill SupportBlindPlayer #set SupportBlindPlayer #mods #skillEnd +#skill SupportBlindPlayerTwo +#set SupportBlindPlayerTwo +#mods +#skillEnd + #skill SupportBlindsidePlayer #set SupportBlindsidePlayer statMap = { @@ -57,23 +133,29 @@ statMap = { #mods #skillEnd -#skill SupportBloodInTheEyesPlayer -#set SupportBloodInTheEyesPlayer +#skill SupportBountyPlayer +#set SupportBountyPlayer #mods #skillEnd -#skill SupportDazedBreakPlayer -#set SupportDazedBreakPlayer +#skill SupportBountyPlayerTwo +#set SupportBountyPlayerTwo #mods #skillEnd -#skill SupportAdditionalAccuracyPlayer -#set SupportAdditionalAccuracyPlayer -statMap = { - ["support_additional_accurary_rating_+%_final"] = { - mod("Accuracy", "MORE", nil), - }, -}, +#skill SupportBrambleslamPlayer +#set SupportBrambleslamPlayer +#mods +#skillEnd + +#skill TriggeredBrambleslamPlayer +#set TriggeredBrambleslamPlayer +#flags attack +#mods +#skillEnd + +#skill SupportDazedBreakPlayer +#set SupportDazedBreakPlayer #mods #skillEnd @@ -81,8 +163,10 @@ statMap = { #set SupportBurstingPlaguePlayer #mods #skillEnd + #skill PlagueBurstPlayer #set PlagueBurstPlayer +#flags area #mods #skillEnd @@ -98,7 +182,7 @@ statMap = { #skill TriggeredCaltropsPlayer #set TriggeredCaltropsPlayer -#flags projectile duration area +#flags attack projectile duration area #mods #skillEnd @@ -112,8 +196,55 @@ statMap = { #mods #skillEnd +#skill SupportChainPlayerTwo +#set SupportChainPlayerTwo +statMap = { + ["support_chain_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, +}, +#mods +#skillEnd + +#skill SupportChainPlayerThree +#set SupportChainPlayerThree +statMap = { + ["support_chain_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, +}, +#mods +#skillEnd + +#skill SupportChargeProfusionPlayer +#set SupportChargeProfusionPlayer +#mods +#skillEnd + +#skill SupportChargeProfusionPlayerTwo +#set SupportChargeProfusionPlayerTwo +#mods +#skillEnd + #skill SupportChargedShotsPlayer #set SupportChargedShotsPlayer +statMap = { + ["support_charged_shots_%_damage_to_gain_as_lightning"] = { + mod("DamageGainAsLightning", "BASE", nil), + div = 3, + }, +}, +#mods +#skillEnd + +#skill SupportChargedShotsPlayerTwo +#set SupportChargedShotsPlayerTwo +statMap = { + ["support_charged_shots_%_damage_to_gain_as_lightning"] = { + mod("DamageGainAsLightning", "BASE", nil), + div = 3, + }, +}, #mods #skillEnd @@ -132,35 +263,46 @@ statMap = { #mods #skillEnd +#skill SupportCloseCombatPlayerTwo +#set SupportCloseCombatPlayerTwo +statMap = { + ["support_close_combat_attack_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{10,1},{35,0}} }), + }, +}, +#mods +#skillEnd + #skill SupportComboFinisherPlayer #set SupportComboFinisherPlayer #mods #skillEnd +#skill SupportComboFinisherPlayerTwo +#set SupportComboFinisherPlayerTwo +#mods +#skillEnd + #skill SupportCommiseratePlayer #set SupportCommiseratePlayer #mods #skillEnd -#skill SupportMultiplePoisonPlayer -#set SupportMultiplePoisonPlayer +#skill SupportCooldownRecoveryPlayer +#set SupportCooldownRecoveryPlayer statMap = { - ["support_multi_poison_poison_duration_+%_final"] = { - mod("EnemyPoisonDuration", "MORE", nil), - }, - ["number_of_additional_poison_stacks"] = { - mod("PoisonStacks", "BASE", nil), - flag("PoisonCanStack"), + ["support_cooldown_reduction_cooldown_recovery_+%"] = { + mod("CooldownRecovery", "INC", nil), }, }, #mods #skillEnd -#skill SupportChanceToShockPlayer -#set SupportChanceToShockPlayer +#skill SupportCooldownRecoveryPlayerTwo +#set SupportCooldownRecoveryPlayerTwo statMap = { - ["support_conduction_chance_to_shock_+%_final"] = { - mod("EnemyShockChance", "MORE", nil), + ["support_cooldown_reduction_cooldown_recovery_+%"] = { + mod("CooldownRecovery", "INC", nil), }, }, #mods @@ -176,6 +318,16 @@ statMap = { #mods #skillEnd +#skill SupportCrescendoPlayerTwo +#set SupportCrescendoPlayerTwo +#mods +#skillEnd + +#skill SupportCrescendoPlayerThree +#set SupportCrescendoPlayerThree +#mods +#skillEnd + #skill SupportCullingStrikePlayer #set SupportCullingStrikePlayer statMap = { @@ -187,11 +339,32 @@ statMap = { #mods #skillEnd +#skill SupportCullingStrikePlayerTwo +#set SupportCullingStrikePlayerTwo +statMap = { + ["support_culling_strike_vs_rare_or_unique_enemy"] = { + mod("CullPercent", "MAX", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "RareOrUnique" }), + value = 10 + }, +}, +#mods +#skillEnd + #skill SupportCulminationPlayer #set SupportCulminationPlayer #mods #skillEnd +#skill SupportCulminationPlayerTwo +#set SupportCulminationPlayerTwo +#mods +#skillEnd + +#skill SupportDazePlayer +#set SupportDazePlayer +#mods +#skillEnd + #skill SupportDazzlePlayer #set SupportDazzlePlayer #mods @@ -220,11 +393,14 @@ statMap = { #mods #skillEnd -#skill SupportSlowerProjectilesPlayer -#set SupportSlowerProjectilesPlayer +#skill SupportDeadlyPoisonPlayerTwo +#set SupportDeadlyPoisonPlayerTwo statMap = { - ["support_slower_projectiles_projectile_speed_+%_final"] = { - mod("ProjectileSpeed", "MORE", nil), + ["support_deadly_poison_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_deadly_poison_poison_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison), }, }, #mods @@ -258,8 +434,8 @@ statMap = { #mods #skillEnd -#skill SupportDazingPlayer -#set SupportDazingPlayer +#skill SupportDurabilityPlayer +#set SupportDurabilityPlayer #mods #skillEnd @@ -268,13 +444,17 @@ statMap = { #mods #skillEnd -#skill SupportEncumberancePlayer -#set SupportEncumberancePlayer -#mods -#skillEnd - -#skill SupportChanceToPoisonPlayer -#set SupportChanceToPoisonPlayer +#skill SupportEscalatingPoisonPlayer +#set SupportEscalatingPoisonPlayer +statMap = { + ["support_multi_poison_poison_duration_+%_final"] = { + mod("EnemyPoisonDuration", "MORE", nil), + }, + ["number_of_additional_poison_stacks"] = { + mod("PoisonStacks", "BASE", nil), + flag("PoisonCanStack"), + }, +}, #mods #skillEnd @@ -317,6 +497,22 @@ statMap = { #mods #skillEnd +#skill SupportFrenziedRipostePlayer +#set SupportFrenziedRipostePlayer +#mods +#skillEnd + +#skill SupportFrozenSpitePlayer +#set SupportFrozenSpitePlayer +#mods +#skillEnd + +#skill TriggeredSupportFrozenSpiteIceFragmentPlayer +#set TriggeredSupportFrozenSpiteIceFragmentPlayer +#flags hit area projectile +#mods +#skillEnd + #skill SupportGambleshotPlayer #set SupportGambleshotPlayer statMap = { @@ -327,28 +523,53 @@ statMap = { #mods #skillEnd -#skill SupportHitAndRunPlayer -#set SupportHitAndRunPlayer +#skill SupportGarukhansResolvePlayer +#set SupportGarukhansResolvePlayer #mods #skillEnd -#skill SupportImpalePlayer -#set SupportImpalePlayer +#skill SupportHeightenedAccuracyPlayer +#set SupportHeightenedAccuracyPlayer +statMap = { + ["support_additional_accurary_rating_+%_final"] = { + mod("Accuracy", "MORE", nil), + }, +}, #mods #skillEnd -#skill SupportCooldownReductionPlayer -#set SupportCooldownReductionPlayer +#skill SupportHeightenedAccuracyPlayerTwo +#set SupportHeightenedAccuracyPlayerTwo statMap = { - ["support_cooldown_reduction_cooldown_recovery_+%"] = { - mod("CooldownRecovery", "INC", nil), + ["support_additional_accurary_rating_+%_final"] = { + mod("Accuracy", "MORE", nil), }, }, #mods #skillEnd -#skill SupportInhibitorPlayer -#set SupportInhibitorPlayer +#skill SupportHeightenedChargesPlayer +#set SupportHeightenedChargesPlayer +#mods +#skillEnd + +#skill SupportHitAndRunPlayer +#set SupportHitAndRunPlayer +#mods +#skillEnd + +#skill SupportHobblePlayer +#set SupportHobblePlayer +#mods +#skillEnd + +#skill SupportImpalePlayer +#set SupportImpalePlayer +#mods +#skillEnd + +#skill SupportChargeInhibitionPlayer +#set SupportChargeInhibitionPlayer statMap = { ["support_inhibitor_damage_+%_final_per_charge_type"] = { mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "FrenzyCharge", threshold = 1 }), @@ -398,11 +619,6 @@ statMap = { #mods #skillEnd -#skill SupportLightningExposurePlayer -#set SupportLightningExposurePlayer -#mods -#skillEnd - #skill SupportAddedLightningDamagePlayer #set SupportAddedLightningDamagePlayer statMap = { @@ -414,6 +630,11 @@ statMap = { #mods #skillEnd +#skill SupportLightningExposurePlayer +#set SupportLightningExposurePlayer +#mods +#skillEnd + #skill SupportLightningPenetrationPlayer #set SupportLightningPenetrationPlayer #mods @@ -434,6 +655,16 @@ statMap = { #mods #skillEnd +#skill SupportFarCombatPlayerTwo +#set SupportFarCombatPlayerTwo +statMap = { + ["support_far_combat_attack_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "DistanceRamp", ramp = {{35,0},{70,1}} }), + }, +}, +#mods +#skillEnd + #skill SupportMaimPlayer #set SupportMaimPlayer #mods @@ -449,13 +680,8 @@ statMap = { #mods #skillEnd -#skill SupportFasterAttackPlayer -#set SupportFasterAttackPlayer -statMap = { - ["support_faster_attacks_attack_speed_+%_final"] = { - mod("Speed", "MORE", nil, ModFlag.Attack), - }, -}, +#skill SupportMarkForDeathPlayer +#set SupportMarkForDeathPlayer #mods #skillEnd @@ -474,6 +700,32 @@ statMap = { #mods #skillEnd +#skill SupportMultishotPlayer +#set SupportMultishotPlayer +statMap = { + ["support_multiple_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_scattershot_skill_speed_+%_final"] = { + mod("Speed", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportMultishotPlayerTwo +#set SupportMultishotPlayerTwo +statMap = { + ["support_multiple_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_scattershot_skill_speed_+%_final"] = { + mod("Speed", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportEmpoweredCullPlayer #set SupportEmpoweredCullPlayer statMap = { @@ -495,6 +747,16 @@ statMap = { #mods #skillEnd +#skill SupportNovaProjectilesPlayer +#set SupportNovaProjectilesPlayer +statMap = { + ["support_nova_projectiles_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportOutmaneuverPlayer #set SupportOutmaneuverPlayer #mods @@ -510,6 +772,26 @@ statMap = { #mods #skillEnd +#skill SupportIncreaseLimitPlayerTwo +#set SupportIncreaseLimitPlayerTwo +statMap = { + ["support_limit_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportIncreaseLimitPlayerThree +#set SupportIncreaseLimitPlayerThree +statMap = { + ["support_limit_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportOverchargePlayer #set SupportOverchargePlayer #mods @@ -525,11 +807,26 @@ statMap = { #mods #skillEnd +#skill SupportOverreachPlayer +#set SupportOverreachPlayer +statMap = { + ["support_reach_accuracy_within_2m_+%_final"] = { + mod("Accuracy", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "enemyDistance", threshold = 20, upper = true } ), + }, +}, +#mods +#skillEnd + #skill SupportPayloadPlayer #set SupportPayloadPlayer #mods #skillEnd +#skill SupportPerfectEndurancePlayer +#set SupportPerfectEndurancePlayer +#mods +#skillEnd + #skill SupportPerfectionPlayer #set SupportPerfectionPlayer #mods @@ -545,11 +842,61 @@ statMap = { #mods #skillEnd +#skill SupportPiercePlayerTwo +#set SupportPiercePlayerTwo +#mods +#skillEnd + +#skill SupportPiercePlayerThree +#set SupportPiercePlayerThree +statMap = { + ["support_pierce_damage_+%_final_per_pierced_target"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "PiercedCount" }), + }, +}, +#mods +#skillEnd + +#skill SupportPietysMercyPlayer +#set SupportPietysMercyPlayer +#mods +#skillEnd + #skill SupportPinPlayer #set SupportPinPlayer #mods #skillEnd +#skill SupportPinPlayerTwo +#set SupportPinPlayerTwo +#mods +#skillEnd + +#skill SupportPinPlayerThree +#set SupportPinPlayerThree +#mods +#skillEnd + +#skill SupportPoisonPlayer +#set SupportPoisonPlayer +#mods +#skillEnd + +#skill SupportPoisonPlayerTwo +#set SupportPoisonPlayerTwo +#mods +#skillEnd + +#skill SupportPoisonPlayerThree +#set SupportPoisonPlayerThree +statMap = { + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Poison, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }), + }, +}, +#mods +#skillEnd + #skill SupportPracticedComboPlayer #set SupportPracticedComboPlayer #mods @@ -565,8 +912,63 @@ statMap = { #mods #skillEnd -#skill SupportMultipleChargesPlayer -#set SupportMultipleChargesPlayer +#skill SupportPrecisionPlayerTwo +#set SupportPrecisionPlayerTwo +statMap = { + ["support_precision_accuracy_rating_+%"] = { + mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Precision" } ), + }, +}, +#mods +#skillEnd + +#skill SupportProjectileAccelerationPlayer +#set SupportProjectileAccelerationPlayer +statMap = { + ["support_faster_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportProjectileAccelerationPlayerTwo +#set SupportProjectileAccelerationPlayerTwo +statMap = { + ["support_faster_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportProjectileAccelerationPlayerThree +#set SupportProjectileAccelerationPlayerThree +statMap = { + ["support_faster_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportProjectileDecelerationPlayer +#set SupportProjectileDecelerationPlayer +statMap = { + ["support_slower_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportProjectileDecelerationPlayerTwo +#set SupportProjectileDecelerationPlayerTwo +statMap = { + ["support_slower_projectiles_projectile_speed_+%_final"] = { + mod("ProjectileSpeed", "MORE", nil), + }, +}, #mods #skillEnd @@ -588,26 +990,69 @@ statMap = { #mods #skillEnd -#skill SupportReachPlayer -#set SupportReachPlayer +#skill SupportPursuitPlayerTwo +#set SupportPursuitPlayerTwo statMap = { - ["support_reach_accuracy_within_2m_+%_final"] = { - mod("Accuracy", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "enemyDistance", threshold = 20, upper = true } ), + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "HitProjectileRecently" } ), + }, + ["support_advancing_assault_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile), + }, +}, +#mods +#skillEnd + +#skill SupportPursuitPlayerThree +#set SupportPursuitPlayerThree +statMap = { + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Melee, 0, { type = "Condition", var = "HitProjectileRecently" } ), }, - ["support_reach_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), + ["support_advancing_assault_projectile_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile), + }, +}, +#mods +#skillEnd + +#skill SupportRakiatasFlowPlayer +#set SupportRakiatasFlowPlayer +#mods +#skillEnd + +#skill SupportRapidAttacksPlayer +#set SupportRapidAttacksPlayer +#mods +#skillEnd + +#skill SupportRapidAttacksPlayerTwo +#set SupportRapidAttacksPlayerTwo +#mods +#skillEnd + +#skill SupportRapidAttacksPlayerThree +#set SupportRapidAttacksPlayerThree +statMap = { + ["support_faster_attacks_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Attack), }, }, #mods #skillEnd +#skill SupportCombatReloadPlayer +#set SupportCombatReloadPlayer +#mods +#skillEnd + #skill SupportRearmPlayer #set SupportRearmPlayer #mods #skillEnd -#skill SupportRetortPlayer -#set SupportRetortPlayer +#skill SupportRearmPlayerTwo +#set SupportRearmPlayerTwo #mods #skillEnd @@ -624,26 +1069,54 @@ statMap = { #mods #skillEnd +#skill SupportRetreatPlayerTwo +#set SupportRetreatPlayerTwo +statMap = { + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "Condition", var = "HitMeleeRecently" } ), + }, + ["support_retreating_assault_melee_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Melee), + }, +}, +#mods +#skillEnd + +#skill SupportRetreatPlayerThree +#set SupportRetreatPlayerThree +statMap = { + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "Condition", var = "HitMeleeRecently" } ), + }, + ["support_retreating_assault_melee_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Melee), + }, +}, +#mods +#skillEnd + #skill SupportRicochetPlayer #set SupportRicochetPlayer #mods #skillEnd -#skill SupportSalvoPlayer -#set SupportSalvoPlayer +#skill SupportRicochetPlayerTwo +#set SupportRicochetPlayerTwo #mods #skillEnd -#skill SupportMultipleProjectilesPlayer -#set SupportMultipleProjectilesPlayer -statMap = { - ["support_multiple_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, - ["support_multiple_attack_and_cast_speed_+%_final"] = { - mod("Speed", "MORE", nil), - }, -}, +#skill SupportRicochetPlayerThree +#set SupportRicochetPlayerThree +#mods +#skillEnd + +#skill SupportRigwaldsFerocityPlayer +#set SupportRigwaldsFerocityPlayer +#mods +#skillEnd + +#skill SupportSalvoPlayer +#set SupportSalvoPlayer #mods #skillEnd @@ -652,13 +1125,33 @@ statMap = { #mods #skillEnd +#skill SupportSecondWindPlayerTwo +#set SupportSecondWindPlayerTwo +#mods +#skillEnd + +#skill SupportSecondWindPlayerThree +#set SupportSecondWindPlayerThree +#mods +#skillEnd + +#skill SupportShockPlayer +#set SupportShockPlayer +statMap = { + ["support_conduction_chance_to_shock_+%_final"] = { + mod("EnemyShockChance", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportShockingLeapPlayer #set SupportShockingLeapPlayer #mods #skillEnd -#skill SupportSingleOutPlayer -#set SupportSingleOutPlayer +#skill SupportSlowPotencyPlayer +#set SupportSlowPotencyPlayer #mods #skillEnd @@ -677,6 +1170,25 @@ statMap = { #mods #skillEnd +#skill SupportStreamlinedRoundsPlayer +#set SupportStreamlinedRoundsPlayer +statMap = { + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil) + }, + ["support_auto_shotgun_attack_speed_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack) + }, + ["support_auto_shotgun_damage_+%_final"] = { + mod("Damage", "MORE", nil) + }, + ["support_auto_shotgun_reload_speed_+%_final"] = { + mod("ReloadSpeed", "MORE", nil) + }, +}, +#mods +#skillEnd + #skill SupportSwiftAfflictionPlayer #set SupportSwiftAfflictionPlayer statMap = { @@ -687,13 +1199,43 @@ statMap = { #mods #skillEnd -#skill SupportTumultPlayer -#set SupportTumultPlayer +#skill SupportSwiftAfflictionPlayerTwo +#set SupportSwiftAfflictionPlayerTwo +statMap = { + ["support_rapid_decay_damage_over_time_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Dot), + }, +}, +#mods +#skillEnd + +#skill SupportSwiftAfflictionPlayerThree +#set SupportSwiftAfflictionPlayerThree +statMap = { + ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"] = { + mod("Damage", "MORE", nil, ModFlag.Dot, 0, { type = "StatThreshold", stat = "Duration", threshold = 1, upper = true }), + }, +}, +#mods +#skillEnd + +#skill SupportTacatisIrePlayer +#set SupportTacatisIrePlayer +statMap = { + ["faster_poison_%_per_current_rage"] = { + mod("PoisonFaster", "INC", nil, 0, 0, { type = "PerStat", stat = "Rage" }), + }, +}, +#mods +#skillEnd + +#skill SupportTulsStillnessPlayer +#set SupportTulsStillnessPlayer #mods #skillEnd -#skill SupportTwofoldPlayer -#set SupportTwofoldPlayer +#skill SupportTumultPlayer +#set SupportTumultPlayer #mods #skillEnd @@ -734,6 +1276,7 @@ statMap = { #set SupportKnockbackWavePlayer #mods #skillEnd + #skill KnockbackWavePlayer #set KnockbackWavePlayer #mods @@ -748,3 +1291,13 @@ statMap = { }, #mods #skillEnd + +#skill SupportWindowOfOpportunityPlayerTwo +#set SupportWindowOfOpportunityPlayerTwo +statMap = { + ["support_window_of_opportunity_perfect_timing_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "PerfectTiming" }), + }, +}, +#mods +#skillEnd diff --git a/src/Export/Skills/sup_int.txt b/src/Export/Skills/sup_int.txt index 16392397c4..1606bd99df 100644 --- a/src/Export/Skills/sup_int.txt +++ b/src/Export/Skills/sup_int.txt @@ -10,18 +10,21 @@ local skills, mod, flag, skill = ... #mods #skillEnd -#skill SupportAblationPlayer -#set SupportAblationPlayer -statMap = { - ["support_ablation_offering_skill_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Offering }), - }, -}, +#skill SupportAcrimonyPlayer +#set SupportAcrimonyPlayer #mods #skillEnd -#skill SupportAcrimonyPlayer -#set SupportAcrimonyPlayer +#skill SupportAhnsCitadelPlayer +#set SupportAhnsCitadelPlayer +statMap = { + ["support_wall_fortress_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_wall_fortress_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), + }, +}, #mods #skillEnd @@ -50,26 +53,31 @@ statMap = { #mods #skillEnd +#skill SupportArbitersIgnitionPlayer +#set SupportArbitersIgnitionPlayer +#mods +#skillEnd + #skill SupportArcaneSurgePlayer #set SupportArcaneSurgePlayer #mods #skillEnd -#skill SupportFasterCastPlayer -#set SupportFasterCastPlayer +#skill SupportAstralProjectionPlayer +#set SupportAstralProjectionPlayer statMap = { - ["support_faster_casting_cast_speed_+%_final"] = { - mod("Speed", "MORE", nil, ModFlag.Cast), + ["support_astral_projection_aoe_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), }, }, #mods #skillEnd -#skill SupportAstralProjectionPlayer -#set SupportAstralProjectionPlayer +#skill SupportAtzirisAllurePlayer +#set SupportAtzirisAllurePlayer statMap = { - ["support_astral_projection_aoe_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), + ["support_atziri_curse_effect_+%_final"] = { + mod("CurseEffect", "MORE", nil), }, }, #mods @@ -80,6 +88,16 @@ statMap = { #mods #skillEnd +#skill SupportBiddingPlayerTwo +#set SupportBiddingPlayerTwo +#mods +#skillEnd + +#skill SupportBiddingPlayerThree +#set SupportBiddingPlayerThree +#mods +#skillEnd + #skill SupportBitingFrostPlayer #set SupportBitingFrostPlayer statMap = { @@ -100,6 +118,16 @@ statMap = { #mods #skillEnd +#skill SupportBoundlessEnergyPlayer +#set SupportBoundlessEnergyPlayer +#mods +#skillEnd + +#skill SupportBoundlessEnergyPlayerTwo +#set SupportBoundlessEnergyPlayerTwo +#mods +#skillEnd + #skill SupportBurgeonPlayer #set SupportBurgeonPlayer statMap = { @@ -113,10 +141,24 @@ statMap = { #mods #skillEnd +#skill SupportBurgeonPlayerTwo +#set SupportBurgeonPlayerTwo +statMap = { + ["support_chanelling_damage_+%_final_per_second_channelling"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "Channelling" }, { type = "Multiplier", var = "ChannellingTime", limitVar = "BurgeonDamageCap", limitTotal = true }), + }, + ["support_channelling_damage_cap"] = { + mod("Multiplier:BurgeonDamageCap", "BASE"), + }, +}, +#mods +#skillEnd + #skill SupportBurningRunesPlayer #set SupportBurningRunesPlayer #mods #skillEnd + #skill TriggeredBurningRunesPlayer #set TriggeredBurningRunesPlayer statMap = { @@ -131,11 +173,6 @@ statMap = { #mods #skillEnd -#skill SupportCapacitorPlayer -#set SupportCapacitorPlayer -#mods -#skillEnd - #skill SupportCatharsisPlayer #set SupportCatharsisPlayer #mods @@ -174,11 +211,11 @@ statMap = { #mods #skillEnd -#skill SupportColdExposurePlayer -#set SupportColdExposurePlayer +#skill SupportClarityPlayerTwo +#set SupportClarityPlayerTwo statMap = { - ["inflict_cold_exposure_for_x_ms_on_cold_crit"] = { - mod("ColdExposureChance", "BASE", nil), + ["support_clarity_mana_regeneration_rate_+%"] = { + mod("ManaRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Clarity" }), }, }, #mods @@ -195,6 +232,16 @@ statMap = { #mods #skillEnd +#skill SupportColdExposurePlayer +#set SupportColdExposurePlayer +statMap = { + ["inflict_cold_exposure_for_x_ms_on_cold_crit"] = { + mod("ColdExposureChance", "BASE", nil), + }, +}, +#mods +#skillEnd + #skill SupportColdMasteryPlayer #set SupportColdMasteryPlayer #mods @@ -218,8 +265,8 @@ statMap = { #mods #skillEnd -#skill SupportConcentratedEffectPlayer -#set SupportConcentratedEffectPlayer +#skill SupportConcentratedAreaPlayer +#set SupportConcentratedAreaPlayer statMap = { ["support_concentrated_effect_skill_area_of_effect_+%_final"] = { mod("AreaOfEffect", "MORE", nil), @@ -259,11 +306,6 @@ statMap = { #mods #skillEnd -#skill SupportCoursingCurrentPlayer -#set SupportCoursingCurrentPlayer -#mods -#skillEnd - #skill SupportCracklingBarrierPlayer #set SupportCracklingBarrierPlayer #mods @@ -274,6 +316,11 @@ statMap = { #mods #skillEnd +#skill SupportCrystallineShardsPlayer +#set SupportCrystallineShardsPlayer +#mods +#skillEnd + #skill SupportCursedGroundPlayer #set SupportCursedGroundPlayer #mods @@ -324,8 +371,19 @@ statMap = { #mods #skillEnd -#skill SupportDissipatePlayer -#set SupportDissipatePlayer +#skill SupportDiallasDesirePlayer +#set SupportDiallasDesirePlayer +#mods +#skillEnd + +#skill SupportDoedresUndoingPlayer +#set SupportDoedresUndoingPlayer +#mods +#skillEnd + +#skill TriggeredCurseZoneHazardExplosionPlayer +#set TriggeredCurseZoneHazardExplosionPlayer +#flags hit #mods #skillEnd @@ -390,26 +448,28 @@ statMap = { #mods #skillEnd +#skill SupportEncroachingGroundPlayer +#set SupportEncroachingGroundPlayer +#mods +#skillEnd + #skill SupportEnergyBarrierPlayer #set SupportEnergyBarrierPlayer #mods #skillEnd +#skill SupportEnergyCapacitorPlayer +#set SupportEnergyCapacitorPlayer +#mods +#skillEnd + #skill SupportEnergyRetentionPlayer #set SupportEnergyRetentionPlayer #mods #skillEnd -#skill SupportEnormityPlayer -#set SupportEnormityPlayer -statMap = { - ["support_titanblood_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), - }, - ["support_titanblood_minion_life_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), - }, -}, +#skill SupportEshsRadiancePlayer +#set SupportEshsRadiancePlayer #mods #skillEnd @@ -469,10 +529,24 @@ statMap = { #mods #skillEnd +#skill SupportFeedingFrenzyPlayerTwo +#set SupportFeedingFrenzyPlayerTwo +statMap = { + ["feeding_frenzy_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + ["feeding_frenzy_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, +}, +#mods +#skillEnd + #skill SupportFieryDeathPlayer #set SupportFieryDeathPlayer #mods #skillEnd + #skill TriggeredFieryDeathPlayer #set TriggeredFieryDeathPlayer #flags spell area @@ -516,6 +590,24 @@ statMap = { #mods #skillEnd +#skill SupportWallFortressPlayerTwo +#set SupportWallFortressPlayerTwo +statMap = { + ["support_wall_fortress_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["support_wall_fortress_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportFreezePlayer +#set SupportFreezePlayer +#mods +#skillEnd + #skill SupportFreezeforkPlayer #set SupportFreezeforkPlayer #mods @@ -536,11 +628,6 @@ statMap = { #mods #skillEnd -#skill SupportGlaciationPlayer -#set SupportGlaciationPlayer -#mods -#skillEnd - #skill SupportGlacierPlayer #set SupportGlacierPlayer statMap = { @@ -551,6 +638,16 @@ statMap = { #mods #skillEnd +#skill SupportFleetingRemnantsPlayer +#set SupportFleetingRemnantsPlayer +#mods +#skillEnd + +#skill SupportFleetingRemnantsPlayerTwo +#set SupportFleetingRemnantsPlayerTwo +#mods +#skillEnd + #skill SupportCurseEffectPlayer #set SupportCurseEffectPlayer #mods @@ -576,6 +673,19 @@ statMap = { #mods #skillEnd +#skill SupportHulkingMinionsPlayer +#set SupportHulkingMinionsPlayer +statMap = { + ["support_titanblood_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + ["support_titanblood_minion_life_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), + }, +}, +#mods +#skillEnd + #skill SupportIceBitePlayer #set SupportIceBitePlayer statMap = { @@ -604,6 +714,7 @@ statMap = { #set ViciousHexSupportPlayer #mods #skillEnd + #skill DoomBlastPlayer #set DoomBlastPlayer #flags spell area @@ -618,11 +729,6 @@ statMap = { #mods #skillEnd -#skill SupportImpetusPlayer -#set SupportImpetusPlayer -#mods -#skillEnd - #skill SupportInevitableCriticalsPlayer #set SupportInevitableCriticalsPlayer statMap = { @@ -649,6 +755,26 @@ statMap = { #mods #skillEnd +#skill SupportFlukePlayerTwo +#set SupportFlukePlayerTwo +#mods +#skillEnd + +#skill SupportKalisasCrescendoPlayer +#set SupportKalisasCrescendoPlayer +#mods +#skillEnd + +#skill SupportKulemaksDominionPlayer +#set SupportKulemaksDominionPlayer +#mods +#skillEnd + +#skill SupportKurgalsLeashPlayer +#set SupportKurgalsLeashPlayer +#mods +#skillEnd + #skill SupportLastGaspPlayer #set SupportLastGaspPlayer #mods @@ -659,6 +785,40 @@ statMap = { #mods #skillEnd +#skill SupportLivingLightningPlayer +#set SupportLivingLightningPlayer +#mods +#skillEnd + +#minionList LivingLightning +#skill TriggeredLivingLightningPlayer +#set TriggeredLivingLightningPlayer +#flags minion +#mods +#skillEnd + +#skill SupportLivingLightningPlayerTwo +#set SupportLivingLightningPlayerTwo +#mods +#skillEnd + +#minionList LivingLightning +#skill TriggeredLivingLightningPlayerTwo +#set TriggeredLivingLightningPlayerTwo +#flags minion +statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent", div = 5 }) }), + div = 5, + }, + ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 10 }) }), + div = 10, + }, +}, +#mods +#skillEnd + #skill SupportLoyaltyPlayer #set SupportLoyaltyPlayer statMap = { @@ -669,13 +829,23 @@ statMap = { #mods #skillEnd -#skill SupportMagnetismPlayer -#set SupportMagnetismPlayer +#skill SupportMagneticRemnantsPlayer +#set SupportMagneticRemnantsPlayer #mods #skillEnd -#skill SupportIncreasedAreaOfEffectPlayer -#set SupportIncreasedAreaOfEffectPlayer +#skill SupportMagnifiedAreaPlayer +#set SupportMagnifiedAreaPlayer +#mods +#skillEnd + +#skill SupportMagnifiedAreaPlayerTwo +#set SupportMagnifiedAreaPlayerTwo +statMap = { + ["support_area_concentrate_area_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Area), + }, +}, #mods #skillEnd @@ -683,6 +853,7 @@ statMap = { #set SupportManaFlarePlayer #mods #skillEnd + #skill TriggeredManaFlarePlayer #set TriggeredManaFlarePlayer #flags spell area @@ -697,6 +868,11 @@ statMap = { #mods #skillEnd +#skill SupportManaLeechPlayer +#set SupportManaLeechPlayer +#mods +#skillEnd + #skill SupportMinionInstabilityPlayer #set SupportMinionInstabilityPlayer statMap = { @@ -723,6 +899,16 @@ statMap = { #mods #skillEnd +#skill SupportMinionPactPlayerTwo +#set SupportMinionPactPlayerTwo +statMap = { + ["support_minion_pact_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportMusterPlayer #set SupportMusterPlayer statMap = { @@ -743,6 +929,16 @@ statMap = { #mods #skillEnd +#skill SupportMysticismPlayerTwo +#set SupportMysticismPlayerTwo +statMap = { + ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"] = { + mod("Damage", "INC", nil, ModFlag.Spell, 0, { type = "Condition", var = "FullEnergyShield" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Mysticism" }), + }, +}, +#mods +#skillEnd + #skill SupportNadirPlayer #set SupportNadirPlayer #mods @@ -766,6 +962,11 @@ statMap = { #mods #skillEnd +#skill SupportPotentExposurePlayer +#set SupportPotentExposurePlayer +#mods +#skillEnd + #skill SupportPotentialPlayer #set SupportPotentialPlayer statMap = { @@ -781,6 +982,26 @@ statMap = { #mods #skillEnd +#skill SupportProfanityPlayerTwo +#set SupportProfanityPlayerTwo +#mods +#skillEnd + +#skill SupportRapidCastingPlayer +#set SupportRapidCastingPlayer +#mods +#skillEnd + +#skill SupportRapidCastingPlayerTwo +#set SupportRapidCastingPlayerTwo +#mods +#skillEnd + +#skill SupportRapidCastingPlayerThree +#set SupportRapidCastingPlayerThree +#mods +#skillEnd + #skill SupportRimePlayer #set SupportRimePlayer #mods @@ -801,6 +1022,31 @@ statMap = { #mods #skillEnd +#skill SupportSacrificialLambPlayer +#set SupportSacrificialLambPlayer +#mods +#skillEnd + +#skill SupportSacrificialLambPlayerTwo +#set SupportSacrificialLambPlayerTwo +#mods +#skillEnd + +#skill SupportSacrificalOfferingPlayer +#set SupportSacrificialOfferingPlayer +statMap = { + ["support_ablation_offering_skill_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Offering }), + }, +}, +#mods +#skillEnd + +#skill SupportShockConductionPlayer +#set SupportShockConductionPlayer +#mods +#skillEnd + #skill SupportEnergyShieldOnShockKillPlayer #set SupportEnergyShieldOnShockKillPlayer statMap = { @@ -811,8 +1057,8 @@ statMap = { #mods #skillEnd -#skill SupportManaLeechPlayer -#set SupportManaLeechPlayer +#skill SupportWildshardsPlayerThree +#set SupportWildshardsPlayerThree #mods #skillEnd @@ -835,8 +1081,8 @@ statMap = { ["support_multicast_cast_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Cast), }, - ["support_spell_echo_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), + ["support_spell_echo_area_of_effect_+%"] = { + mod("AreaOfEffect", "INC", nil), }, }, #mods @@ -847,11 +1093,6 @@ statMap = { #mods #skillEnd -#skill SupportStripAwayPlayer -#set SupportStripAwayPlayer -#mods -#skillEnd - #skill SupportStrongHeartedPlayer #set SupportStrongHeartedPlayer statMap = { @@ -862,11 +1103,6 @@ statMap = { #mods #skillEnd -#skill SupportSuffusePlayer -#set SupportSuffusePlayer -#mods -#skillEnd - #skill SupportIncreasedCriticalDamagePlayer #set SupportIncreasedCriticalDamagePlayer statMap = { @@ -877,6 +1113,11 @@ statMap = { #mods #skillEnd +#skill SupportTecrodsRevengePlayer +#set SupportTecrodsRevengePlayer +#mods +#skillEnd + #skill SupportUnbendingPlayer #set SupportUnbendingPlayer #mods @@ -904,11 +1145,26 @@ statMap = { #mods #skillEnd +#skill SupportUpwellingPlayerTwo +#set SupportUpwellingPlayerTwo +#mods +#skillEnd + +#skill SupportVarashtasBlessingPlayer +#set SupportVarashtasBlessingPlayer +#mods +#skillEnd + #skill SupportVerglasPlayer #set SupportVerglasPlayer #mods #skillEnd +#skill SupportVilentasPropulsionPlayer +#set SupportVilentasPropulsionPlayer +#mods +#skillEnd + #skill SupportVolatilePowerPlayer #set SupportVolatilePowerPlayer #mods @@ -929,6 +1185,11 @@ statMap = { #mods #skillEnd +#skill SupportWildshardsPlayerTwo +#set SupportWildshardsPlayerTwo +#mods +#skillEnd + #skill SupportWitheringTouchPlayer #set SupportWitheringTouchPlayer statMap = { @@ -939,7 +1200,17 @@ statMap = { #mods #skillEnd +#skill SupportZarokhsRefrainPlayer +#set SupportZarokhsRefrainPlayer +#mods +#skillEnd + #skill SupportZenithPlayer #set SupportZenithPlayer #mods +#skillEnd + +#skill SupportZenithPlayerTwo +#set SupportZenithPlayerTwo +#mods #skillEnd \ No newline at end of file diff --git a/src/Export/Skills/sup_str.txt b/src/Export/Skills/sup_str.txt index 04f2c164de..ab11212ea6 100644 --- a/src/Export/Skills/sup_str.txt +++ b/src/Export/Skills/sup_str.txt @@ -9,6 +9,21 @@ local skills, mod, flag, skill = ... #mods #skillEnd +#skill SupportAftershockChancePlayerTwo +#set SupportAftershockChancePlayerTwo +#mods +#skillEnd + +#skill SupportAftershockChancePlayerThree +#set SupportAftershockChancePlayerThree +#mods +#skillEnd + +#skill SupportAmanamusTithePlayer +#set SupportAmanamusTithePlayer +#mods +#skillEnd + #skill SupportAncestralAidPlayer #set SupportAncestralAidPlayer #mods @@ -19,8 +34,48 @@ local skills, mod, flag, skill = ... #mods #skillEnd -#skill SupportAncestralUrgencyPlayer -#set SupportAncestralUrgencyPlayer +#skill SupportAncestralCallPlayerTwo +#set SupportAncestralCallPlayerTwo +#mods +#skillEnd + +#skill SupportAncestralCallPlayerThree +#set SupportAncestralCallPlayerThree +#mods +#skillEnd + +#skill SupportArmourBreakPlayer +#set SupportArmourBreakPlayer +#mods +#skillEnd + +#skill SupportArmourBreakPlayerTwo +#set SupportArmourBreakPlayerTwo +#mods +#skillEnd + +#skill SupportArmourBreakPlayerThree +#set SupportArmourBreakPlayerThree +#mods +#skillEnd + +#skill SupportArmourDemolisherPlayer +#set SupportArmourDemolisherPlayer +statMap = { + ["support_increased_armour_break_armour_break_amount_+%_final"] = { + mod("ArmourBreakEffect", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportArmourDemolisherPlayerTwo +#set SupportArmourDemolisherPlayerTwo +statMap = { + ["support_increased_armour_break_armour_break_amount_+%_final"] = { + mod("ArmourBreakEffect", "MORE", nil), + }, +}, #mods #skillEnd @@ -28,8 +83,10 @@ local skills, mod, flag, skill = ... #set SupportArmourExplosionPlayer #mods #skillEnd -#skill ArmourExplosionPlayer + +#skill ArmourExplosionPlayer Armour Explosion #set ArmourExplosion +#flags attack area #mods #skillEnd @@ -43,6 +100,11 @@ statMap = { #mods #skillEnd +#skill SupportAtaluiBloodlettingPlayer +#set SupportAtaluiBloodlettingPlayer +#mods +#skillEnd + #skill SupportAutoReloadPlayer #set SupportAutoReloadPlayer #mods @@ -53,9 +115,22 @@ statMap = { #mods #skillEnd +#skill SupportBarbsPlayerTwo +#set SupportBarbsPlayerTwo +#mods +#skillEnd + +#skill SupportBarbsPlayerThree +#set SupportBarbsPlayerThree +#mods +#skillEnd + #skill SupportBattershoutPlayer #set SupportBattershoutPlayer #mods +#skillEnd + +#skill TriggeredBattershoutExplosionPlayer #set TriggeredBattershoutExplosionPlayer #mods #skillEnd @@ -65,6 +140,31 @@ statMap = { #mods #skillEnd +#skill SupportBeheadPlayerTwo +#set SupportBeheadPlayerTwo +#mods +#skillEnd + +#skill SupportBleedPlayer +#set SupportBleedPlayer +#mods +#skillEnd + +#skill SupportBleedPlayerTwo +#set SupportBleedPlayerTwo +#mods +#skillEnd + +#skill SupportBleedPlayerThree +#set SupportBleedPlayerThree +#mods +#skillEnd + +#skill SupportBleedPlayerFour +#set SupportBleedPlayerFour +#mods +#skillEnd + #skill SupportBloodlustPlayer #set SupportBloodlustPlayer statMap = { @@ -75,8 +175,13 @@ statMap = { #mods #skillEnd -#skill SupportKnockbackPlayer -#set SupportKnockbackPlayer +#skill SupportBranchingFissuresPlayer +#set SupportBranchingFissuresPlayer +#mods +#skillEnd + +#skill SupportBranchingFissuresPlayerTwo +#set SupportBranchingFissuresPlayerTwo #mods #skillEnd @@ -87,16 +192,36 @@ statMap = { #skill SupportBrinkPlayer #set SupportBrinkPlayer +#mods +#skillEnd + +#skill SupportBrinkPlayerTwo +#set SupportBrinkPlayerTwo +#mods +#skillEnd + +#skill SupportBrutalityPlayer +#set SupportBrutalityPlayer statMap = { - ["support_brink_damage_+%_final_vs_heavy_stunned_target"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "HeavyStunned" }), + ["support_brutality_physical_damage_+%_final"] = { + mod("PhysicalDamage", "MORE", nil), }, }, #mods #skillEnd -#skill SupportBrutalityPlayer -#set SupportBrutalityPlayer +#skill SupportBrutalityPlayerTwo +#set SupportBrutalityPlayerTwo +statMap = { + ["support_brutality_physical_damage_+%_final"] = { + mod("PhysicalDamage", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportBrutalityPlayerThree +#set SupportBrutalityPlayerThree statMap = { ["support_brutality_physical_damage_+%_final"] = { mod("PhysicalDamage", "MORE", nil), @@ -105,6 +230,19 @@ statMap = { #mods #skillEnd +#skill SupportBrutusBrainPlayer +#set SupportBrutusBrainPlayer +statMap = { + ["support_minion_defensive_stance_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + }, + ["support_meat_shield_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, +}, +#mods +#skillEnd + #skill SupportCannibalismPlayer #set SupportCannibalismPlayer statMap = { @@ -115,6 +253,12 @@ statMap = { #mods #skillEnd +#skill SupportCannibalismPlayerTwo +#set SupportCannibalismPlayerTwo +#flags +#mods +#skillEnd + #skill SupportClashPlayer #set SupportClashPlayer statMap = { @@ -128,6 +272,26 @@ statMap = { #mods #skillEnd +#skill CompressedDurationSupportPlayer +#set CompressedDurationSupportPlayer +statMap = { + ["support_reduced_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill CompressedDurationSupportPlayerTwo +#set CompressedDurationSupportPlayerTwo +statMap = { + ["support_reduced_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportConcoctPlayer #set SupportConcoctPlayer statMap = { @@ -143,6 +307,21 @@ statMap = { #mods #skillEnd +#skill SupportConcoctPlayerTwo +#set SupportConcoctPlayerTwo +statMap = { + ["consume_%_of_maximum_life_flask_charges_on_skill_use"] = { + mod("Multiplier:LifeFlaskMaxChargesPercent", "BASE", nil), + }, + ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Multiplier", var = "LifeFlaskChargeConsumed"}), + }, +}, +#baseMod mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask1MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }) +#baseMod mod("Multiplier:LifeFlaskChargeConsumed", "BASE", 1, 0, 0, { type = "PercentStat", stat = "LifeFlask2MaxCharges", percentVar = "LifeFlaskMaxChargesPercent", floor = true }) +#mods +#skillEnd + #skill SupportCoolheadedPlayer #set SupportCoolheadedPlayer statMap = { @@ -181,6 +360,47 @@ statMap = { #mods #skillEnd +#skill SupportCorruptingCryPlayerTwo +#set SupportCorruptingCryPlayerTwo +statMap = { + ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { + skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + div = 60, + }, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, + ["support_corrupting_cry_corrupted_blood_duration_ms"] = { + skill("durationSecondary", nil), + div = 1000, + }, + ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + -- Display only + }, +}, +#baseMod skill("debuff", true) +#baseMod flag("dotIsCorruptingBlood") +#baseMod mod("Multiplier:CorruptingCryMaxStages", "BASE", 10) +#baseMod mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst"}) +#mods +#skillEnd + +#skill SupportCraterPlayer +#set SupportCraterPlayer +#mods +#skillEnd + +#skill TriggeredCraterPlayer +#set TriggeredCraterPlayer +#flags attack area melee duration +#mods +#skillEnd + +#skill SupportDaressosPassionPlayer +#set SupportDaressosPassionPlayer +#mods +#skillEnd + #skill SupportDauntlessPlayer #set SupportDauntlessPlayer statMap = { @@ -212,18 +432,18 @@ statMap = { #mods #skillEnd +#skill SupportDeepCutsPlayerTwo +#set SupportDeepCutsPlayerTwo +#mods +#skillEnd + #skill SupportDefyPlayer #set SupportDefyPlayer #mods #skillEnd -#skill SupportIncreasedArmourBreakPlayer -#set SupportIncreasedArmourBreakPlayer -statMap = { - ["support_increased_armour_break_armour_break_amount_+%_final"] = { - mod("ArmourBreakEffect", "MORE", nil), - }, -}, +#skill SupportDefyPlayerTwo +#set SupportDefyPlayerTwo #mods #skillEnd @@ -232,11 +452,6 @@ statMap = { #mods #skillEnd -#skill SupportGroundEffectDurationPlayer -#set SupportGroundEffectDurationPlayer -#mods -#skillEnd - #skill SupportDevastatePlayer #set SupportDevastatePlayer statMap = { @@ -257,8 +472,13 @@ statMap = { #mods #skillEnd -#skill SupportDomainPlayer -#set SupportDomainPlayer +#skill SupportDirestrikePlayerTwo +#set SupportDirestrikePlayerTwo +statMap = { + ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"] = { + mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Direstrike" }), + }, +}, #mods #skillEnd @@ -276,118 +496,255 @@ statMap = { #mods #skillEnd -#skill SupportEnragedWarcryPlayer -#set SupportEnragedWarcryPlayer -#mods -#skillEnd - -#skill SupportIgniteDurationPlayer -#set SupportIgniteDurationPlayer +#skill SupportDoubleBarrelPlayerTwo +#set SupportDoubleBarrelPlayerTwo statMap = { - ["support_eternal_flame_chance_to_ignite_+%_final"] = { - mod("EnemyIgniteChance", "MORE", nil), + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil), + }, + ["support_double_barrel_crossbow_reload_speed_-%_final"] = { + mod("ReloadSpeed", "MORE", nil), + mult = -1 }, }, #mods #skillEnd -#skill SupportExecutePlayer -#set SupportExecutePlayer +#skill SupportDoubleBarrelPlayerThree +#set SupportDoubleBarrelPlayerThree statMap = { - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "LowLife"}) + ["support_double_barrel_number_of_crossbow_bolts_+"] = { + mod("CrossbowBoltCount", "BASE", nil), + }, + ["support_double_barrel_crossbow_reload_speed_-%_final"] = { + mod("ReloadSpeed", "MORE", nil), + mult = -1 }, }, #mods #skillEnd -#skill SupportExpeditePlayer -#set SupportExpeditePlayer -#mods -#skillEnd - -#skill SupportExploitWeaknessPlayer -#set SupportExploitWeaknessPlayer +#skill SupportEfficiencyPlayer +#set SupportEfficiencyPlayer statMap = { - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "ArmourFullyBroken"}) + ["support_inspiration_cost_+%_final"] = { + mod("Cost", "MORE", nil), }, }, #mods #skillEnd -#skill LessDurationSupportPlayer -#set LessDurationSupportPlayer +#skill SupportEfficiencyPlayerTwo +#set SupportEfficiencyPlayerTwo statMap = { - ["support_reduced_duration_skill_effect_duration_+%_final"] = { - mod("Duration", "MORE", nil), + ["support_inspiration_cost_+%_final"] = { + mod("Cost", "MORE", nil), }, }, #mods #skillEnd -#skill SupportFigureheadPlayer -#set SupportFigureheadPlayer +#skill SupportEinharsBeastritePlayer +#set SupportEinharsBeastritePlayer #mods #skillEnd -#skill SupportFireExposurePlayer -#set SupportFireExposurePlayer +#skill SupportElementalArmamentPlayer +#set SupportElementalArmamentPlayer statMap = { - ["inflict_fire_exposure_for_x_ms_on_ignite"] = { - mod("FireExposureChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited"}), + ["support_attack_skills_elemental_damage_+%_final"] = { + mod("ElementalDamage", "MORE", nil, 0, KeywordFlag.Attack), }, }, #mods #skillEnd -#skill SupportAddedFireDamagePlayer -#set SupportAddedFireDamagePlayer +#skill SupportElementalArmamentPlayerTwo +#set SupportElementalArmamentPlayerTwo statMap = { - ["support_cold_and_lightning_damage_+%_final"] = { - mod("ColdDamage", "MORE", nil), - mod("LightningDamage", "MORE", nil), + ["support_attack_skills_elemental_damage_+%_final"] = { + mod("ElementalDamage", "MORE", nil, 0, KeywordFlag.Attack), }, }, #mods #skillEnd -#skill SupportFirePenetrationPlayer -#set SupportFirePenetrationPlayer +#skill SupportElementalArmamentPlayerThree +#set SupportElementalArmamentPlayerThree #mods #skillEnd -#skill SupportFirstBloodPlayer -#set SupportFirstBloodPlayer +#skill SupportHeavyStunEndurancePlayerOne +#set SupportHeavyStunEndurancePlayerOne #mods #skillEnd -#skill FistOfWarSupportPlayer -#set FistOfWarSupportPlayer -statMap = { - ["ancestral_slam_interval_duration"] = { - mod("FistOfWarCooldown", "BASE", nil), - div = 1000, - }, -}, -#baseMod mod("FistOfWarDamageMultiplier", "BASE", 20) -#baseMod mod("FistOfWarMOREAoE", "BASE", 20) +#skill SupportHeavyStunEndurancePlayerTwo +#set SupportHeavyStunEndurancePlayerTwo #mods #skillEnd -#skill SupportFlamepiercePlayer -#set SupportFlamepiercePlayer +#skill SupportEnragedWarcryPlayer +#set SupportEnragedWarcryPlayer #mods #skillEnd -#skill SupportBloodFountainPlayer -#set SupportBloodFountainPlayer -statMap = { - ["support_blood_fountain_life_regeneration_rate_per_minute_%"] = { - mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 60, - }, -}, +#skill SupportEnragedWarcryPlayerTwo +#set SupportEnragedWarcryPlayerTwo +#mods +#skillEnd + +#skill SupportIgniteDurationPlayer +#set SupportIgniteDurationPlayer +statMap = { + ["support_eternal_flame_chance_to_ignite_+%_final"] = { + mod("EnemyIgniteChance", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportIgniteDurationPlayerTwo +#set SupportIgniteDurationPlayerTwo +#mods +#skillEnd + +#skill SupportIgniteDurationPlayerThree +#set SupportIgniteDurationPlayerThree +#mods +#skillEnd + +#skill SupportExecutePlayer +#set SupportExecutePlayer +statMap = { + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "LowLife"}) + }, +}, +#mods +#skillEnd + +#skill SupportExecutePlayerTwo +#set SupportExecutePlayerTwo +#mods +#skillEnd + +#skill SupportExecutePlayerThree +#set SupportExecutePlayerThree +#mods +#skillEnd + +#skill SupportExploitWeaknessPlayer +#set SupportExploitWeaknessPlayer +statMap = { + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "ArmourFullyBroken"}) + }, +}, +#mods +#skillEnd + +#skill SupportAddedFireDamagePlayer +#set SupportAddedFireDamagePlayer +statMap = { + ["support_cold_and_lightning_damage_+%_final"] = { + mod("ColdDamage", "MORE", nil), + mod("LightningDamage", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportFireExposurePlayer +#set SupportFireExposurePlayer +statMap = { + ["inflict_fire_exposure_for_x_ms_on_ignite"] = { + mod("FireExposureChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited"}), + }, +}, +#mods +#skillEnd + +#skill SupportFirePenetrationPlayer +#set SupportFirePenetrationPlayer +#mods +#skillEnd + +#skill SupportFirePenetrationPlayerTwo +#set SupportFirePenetrationPlayerTwo +#mods +#skillEnd + +#skill SupportFirstBloodPlayer +#set SupportFirstBloodPlayer +#mods +#skillEnd + +#skill FistOfWarSupportPlayer +#set FistOfWarSupportPlayer +statMap = { + ["ancestral_slam_interval_duration"] = { + mod("FistOfWarCooldown", "BASE", nil), + div = 1000, + }, +}, +#baseMod mod("FistOfWarDamageMultiplier", "BASE", 30) +#baseMod mod("FistOfWarMOREAoE", "BASE", 25) +#mods +#skillEnd + +#skill FistOfWarSupportPlayerTwo +#set FistOfWarSupportPlayerTwo +statMap = { + ["ancestral_slam_interval_duration"] = { + mod("FistOfWarCooldown", "BASE", nil), + div = 1000, + }, +}, +#baseMod mod("FistOfWarDamageMultiplier", "BASE", 30) +#baseMod mod("FistOfWarMOREAoE", "BASE", 25) +#mods +#skillEnd + +#skill FistOfWarSupportPlayerThree +#set FistOfWarSupportPlayerThree +statMap = { + ["ancestral_slam_interval_duration"] = { + mod("FistOfWarCooldown", "BASE", nil), + div = 1000, + }, + ["double_ancestral_boost_effect"] = { + -- Accounted for in base mod + }, +}, +#baseMod mod("FistOfWarDamageMultiplier", "BASE", 60) +#baseMod mod("FistOfWarMOREAoE", "BASE", 50) +#mods +#skillEnd + +#skill SupportFlamePillarPlayer +#set SupportFlamePillarPlayer +#mods +#skillEnd + +#skill TriggeredFlamePillarPlayer +#set TriggeredFlamePillarPlayer +#mods +#skillEnd + +#skill SupportFlamepiercePlayer +#set SupportFlamepiercePlayer +#mods +#skillEnd + +#skill SupportBloodFountainPlayer +#set SupportBloodFountainPlayer +statMap = { + ["support_blood_fountain_life_regeneration_rate_per_minute_%"] = { + mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), + div = 60, + }, +}, #mods #skillEnd @@ -412,11 +769,26 @@ statMap = { #mods #skillEnd +#skill SupportFreshClipPlayerTwo +#set SupportFreshClipPlayerTwo +statMap = { + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "BoltsReloadedPastEightSeconds" } ), + }, +}, +#mods +#skillEnd + #skill SupportGreatwoodPlayer #set SupportGreatwoodPlayer #mods #skillEnd +#skill SupportGreatwoodPlayerTwo +#set SupportGreatwoodPlayerTwo +#mods +#skillEnd + #skill SupportHaemocrystalsPlayer #set SupportHaemocrystalsPlayer #mods @@ -428,6 +800,26 @@ statMap = { #mods #skillEnd +#skill SupportHardyTotemsPlayer +#set SupportHardyTotemsPlayer +statMap = { + ["support_totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportHardyTotemsPlayerTwo +#set SupportHardyTotemsPlayerTwo +statMap = { + ["support_totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportMeleePhysicalDamagePlayer #set SupportMeleePhysicalDamagePlayer statMap = { @@ -461,6 +853,16 @@ statMap = { #mods #skillEnd +#skill SupportHerbalismPlayerTwo +#set SupportHerbalismPlayerTwo +statMap = { + ["support_herbalism_life_recovery_+%_from_life_flasks"] = { + mod("FlaskLifeRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Herbalism" }), + }, +}, +#mods +#skillEnd + #skill SupportHolyDescentPlayer #set SupportHolyDescentPlayer statMap = { @@ -474,8 +876,8 @@ statMap = { #mods #skillEnd -#skill SupportChanceToIgnitePlayer -#set SupportChanceToIgnitePlayer +#skill SupportIgnitePlayer +#set SupportIgnitePlayer statMap = { ["support_ignition_chance_to_ignite_+%_final"] = { mod("EnemyIgniteChance", "MORE", nil), @@ -484,6 +886,21 @@ statMap = { #mods #skillEnd +#skill SupportIgnitePlayerTwo +#set SupportIgnitePlayerTwo +statMap = { + ["support_ignition_chance_to_ignite_+%_final"] = { + mod("EnemyIgniteChance", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportIgnitePlayerThree +#set SupportIgnitePlayerThree +#mods +#skillEnd + #skill SupportImmolatePlayer #set SupportImmolatePlayer #mods @@ -520,33 +937,60 @@ statMap = { #mods #skillEnd -#skill SupportInspirationPlayer -#set SupportInspirationPlayer +#skill SupportInfernalLegionPlayerTwo +#set SupportInfernalLegionPlayerTwo statMap = { - ["support_inspiration_cost_+%_final"] = { - mod("Cost", "MORE", nil), + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("FireDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life" }, { type = "GlobalEffect", effectType = "Buff" }) }), + div = 6000, + }, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("Multiplier:InfernalLegionBaseDamage", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }) }), + div = 60, + mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), }, }, #mods #skillEnd -#skill SupportInterludePlayer -#set SupportInterludePlayer +#skill SupportInfernalLegionPlayerThree +#set SupportInfernalLegionPlayerThree +statMap = { + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("FireDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life" }, { type = "GlobalEffect", effectType = "Buff" }) }), + div = 6000, + }, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"] = { + mod("MinionModifier", "LIST", { mod = mod("Multiplier:InfernalLegionBaseDamage", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Life", percent = 1 }) }), + div = 60, + mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), + }, +}, #mods #skillEnd -#skill SupportIronwoodPlayer -#set SupportIronwoodPlayer +#skill SupportJaggedGroundPlayer +#set SupportJaggedGroundPlayer #mods #skillEnd -#skill SupportJaggedGroundPlayer -#set SupportJaggedGroundPlayer +#skill SupportJaggedGroundPlayerTwo +#set SupportJaggedGroundPlayerTwo +#mods +#skillEnd + +#skill SupportKaomsMadnessPlayer +#set SupportKaomsMadnessPlayer +#mods +#skillEnd + +#skill SupportKnockbackPlayer +#set SupportKnockbackPlayer #mods #skillEnd -#skill SupportChanceToBleedPlayer -#set SupportChanceToBleedPlayer +#skill SupportLastingGroundPlayer +#set SupportLastingGroundPlayer #mods #skillEnd @@ -555,6 +999,16 @@ statMap = { #mods #skillEnd +#skill SupportLifeLeechPlayerTwo +#set SupportLifeLeechPlayerTwo +#mods +#skillEnd + +#skill SupportLifeLeechPlayerThree +#set SupportLifeLeechPlayerThree +#mods +#skillEnd + #skill SupportBloodMagicPlayer #set SupportBloodMagicPlayer #mods @@ -565,6 +1019,11 @@ statMap = { #mods #skillEnd +#skill SupportLongFusePlayerTwo +#set SupportLongFusePlayerTwo +#mods +#skillEnd + #skill SupportMeatShieldPlayer #set SupportMeatShieldPlayer statMap = { @@ -578,23 +1037,56 @@ statMap = { #mods #skillEnd -#skill SupportOverpowerPlayer -#set SupportOverpowerPlayer +#skill SupportMeatShieldPlayerTwo +#set SupportMeatShieldPlayerTwo statMap = { - ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { - mod("StunBuildup", "MORE", nil), + ["support_minion_defensive_stance_minion_damage_taken_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }), + }, + ["support_meat_shield_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), }, }, #mods #skillEnd -#skill MoreDurationSupportPlayer -#set MoreDurationSupportPlayer +#skill SupportCorruptingCryPlayerThree +#set SupportCorruptingCryPlayerThree statMap = { - ["support_more_duration_skill_effect_duration_+%_final"] = { - mod("Duration", "MORE", nil), + ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { + skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), + div = 60, + }, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, + ["support_corrupting_cry_corrupted_blood_duration_ms"] = { + skill("durationSecondary", nil), + div = 1000, + }, + ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + -- Display only }, }, +#baseMod skill("debuff", true) +#baseMod flag("dotIsCorruptingBlood") +#baseMod mod("Multiplier:CorruptingCryMaxStages", "BASE", 10) +#baseMod mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst"}) +#mods +#skillEnd + +#skill SupportPersistentGroundPlayer +#set SupportPersistentGroundPlayer +#mods +#skillEnd + +#skill SupportPersistentGroundPlayerTwo +#set SupportPersistentGroundPlayerTwo +#mods +#skillEnd + +#skill SupportPersistentGroundPlayerThree +#set SupportPersistentGroundPlayerThree #mods #skillEnd @@ -608,11 +1100,31 @@ statMap = { #mods #skillEnd -#skill SupportWeaponElementalDamagePlayer -#set SupportWeaponElementalDamagePlayer +#skill ProlongedDurationSupportPlayer +#set ProlongedDurationSupportPlayer statMap = { - ["support_weapon_elemental_damage_+%_final"] = { - mod("ElementalDamage", "MORE", nil, 0, KeywordFlag.Attack), + ["support_more_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill ProlongedDurationSupportPlayerTwo +#set ProlongedDurationSupportPlayerTwo +statMap = { + ["support_more_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill ProlongedDurationSupportPlayerThree +#set ProlongedDurationSupportPlayerThree +statMap = { + ["support_more_duration_skill_effect_duration_+%_final"] = { + mod("Duration", "MORE", nil), }, }, #mods @@ -621,8 +1133,11 @@ statMap = { #skill SupportQuillburstPlayer #set SupportQuillburstPlayer #mods +#skillEnd + +#skill TriggeredQuillburstPlayer #set TriggeredQuillburstPlayer -#mods +#mods thorns area #skillEnd #skill SupportRagePlayer @@ -630,11 +1145,26 @@ statMap = { #mods #skillEnd +#skill SupportRagePlayerTwo +#set SupportRagePlayerTwo +#mods +#skillEnd + +#skill SupportRagePlayerThree +#set SupportRagePlayerThree +#mods +#skillEnd + #skill SupportRageforgedPlayer #set SupportRageforgedPlayer #mods #skillEnd +#skill SupportRageforgedPlayerTwo +#set SupportRageforgedPlayerTwo +#mods +#skillEnd + #skill SupportRagingCryPlayer #set SupportRagingCryPlayer #mods @@ -653,18 +1183,67 @@ statMap = { mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, - ["support_tempered_valour_minimum_valour_to_apply_buff"] = { - mod("Multiplier:RefractionMinimumValour", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff"}), +}, +#mods +#skillEnd + +#skill SupportRefractionPlayerTwo +#set SupportRefractionPlayerTwo +statMap = { + ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"] = { + mod("ArmourAppliesToFireDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, }, #mods #skillEnd +#skill SupportRefractionPlayerThree +#set SupportRefractionPlayerThree +#mods +#skillEnd + +#skill SupportReinforcedTotemsPlayer +#set SupportReinforcedTotemsPlayer +#mods +#skillEnd + +#skill SupportReinforcedTotemsPlayerTwo +#set SupportReinforcedTotemsPlayerTwo +#mods +#skillEnd + +#skill SupportRelentlessRagePlayer +#set SupportRelentlessRagePlayer +#mods +#skillEnd + +#skill SupportInterludePlayer +#set SupportInterludePlayer +#mods +#skillEnd + +#skill SupportInterludePlayerTwo +#set SupportInterludePlayerTwo +#mods +#skillEnd + +#skill SupportInterludePlayerThree +#set SupportInterludePlayerThree +#mods +#skillEnd + #skill SupportRetaliatePlayer #set SupportRetaliatePlayer #mods #skillEnd +#skill SupportRetaliatePlayerTwo +#set SupportRetaliatePlayerTwo +#mods +#skillEnd + #skill SupportReveberatePlayer #set SupportReveberatePlayer #mods @@ -703,18 +1282,78 @@ statMap = { #mods #skillEnd +#skill SupportDeadlyIgnitesPlayerTwo +#set SupportDeadlyIgnitesPlayerTwo +statMap = { + ["support_stronger_ignites_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_stronger_ignites_ignite_effect_+%_final"] = { + mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Ignite), + }, +}, +#mods +#skillEnd + #skill SupportSeeRedPlayer #set SupportSeeRedPlayer #mods #skillEnd -#skill SupportSparPlayer -#set SupportSparPlayer +#skill SupportSelflessRemnantsPlayer +#set SupportSelflessRemnantsPlayer #mods #skillEnd -#skill SupportArmourBreakPlayer -#set SupportArmourBreakPlayer +#skill SupportShortFusePlayer +#set SupportShortFusePlayer +#mods +#skillEnd + +#skill SupportShortFusePlayerTwo +#set SupportShortFusePlayerTwo +statMap = { + ["support_short_fuse_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportSkitteringStonePlayer +#set SupportSkitteringStonePlayer +#mods +#skillEnd + +#skill TriggeredSkitteringStonePlayer +#set TriggeredSkitteringStonePlayer +#flags +statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, +}, +#mods +#skillEnd + +#skill SupportSkitteringStonePlayerTwo +#set SupportSkitteringStonePlayerTwo +#mods +#skillEnd + +#skill TriggeredSkitteringStonePlayerTwo +#set TriggeredSkitteringStonePlayerTwo +#flags +statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, +}, +#mods +#skillEnd + +#skill SupportSparPlayer +#set SupportSparPlayer #mods #skillEnd @@ -723,6 +1362,21 @@ statMap = { #mods #skillEnd +#skill SupportSteadfastPlayerTwo +#set SupportSteadfastPlayerTwo +#mods +#skillEnd + +#skill SupportStoicismPlayer +#set SupportStoicismPlayer +#mods +#skillEnd + +#skill SupportStoicismPlayerTwo +#set SupportStoicismPlayerTwo +#mods +#skillEnd + #skill SupportStompingGroundPlayer #set SupportStompingGroundPlayer #mods @@ -730,7 +1384,7 @@ statMap = { #skill StompingGroundShockwavePlayer #set StompingGroundShockwavePlayer -#flags nonWeaponAttack area melee +#flags attack area melee statMap = { ["attack_minimum_added_physical_damage_as_%_of_strength"] = { skill("PhysicalMin", nil, { type = "PercentStat", stat = "Str", percent = 1 }), @@ -743,11 +1397,60 @@ statMap = { #mods #skillEnd +#skill SupportStunPlayer +#set SupportStunPlayer +statMap = { + ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { + mod("StunBuildup", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportStunPlayerTwo +#set SupportStunPlayerTwo +statMap = { + ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { + mod("StunBuildup", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill SupportStunPlayerThree +#set SupportStunPlayerThree +statMap = { + ["support_overpower_hit_damage_stun_multiplier_+%_final"] = { + mod("StunBuildup", "MORE", nil), + }, + ["support_overpower_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, +}, +#mods +#skillEnd + #skill SupportSyzygyPlayer #set SupportSyzygyPlayer #mods #skillEnd +#skill SupportHardyTotemsPlayerThree +#set SupportHardyTotemsPlayerThree +statMap = { + ["support_totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), + }, +}, +#mods +#skillEnd + +#skill TriggeredSplinterExplosionHardyTotems +#set TriggeredSplinterExplosionHardyTotems +#flags area +#mods +#skillEnd + #skill SupportTearPlayer #set SupportTearPlayer #mods @@ -763,6 +1466,16 @@ statMap = { #mods #skillEnd +#skill SupportThornskinPlayerTwo +#set SupportThornskinPlayerTwo +statMap = { + ["support_thorns_spirit_cost_thorns_damage_+%"] = { + mod("ThornsDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Thornskin" }), + }, +}, +#mods +#skillEnd + #skill SupportTirelessPlayer #set SupportTirelessPlayer #mods @@ -778,6 +1491,21 @@ statMap = { #mods #skillEnd +#skill SupportUhtredAuguryPlayer +#set SupportUhtredAuguryPlayer +#mods +#skillEnd + +#skill SupportUhtredExodusPlayer +#set SupportUhtredExodusPlayer +#mods +#skillEnd + +#skill SupportUhtredOmenPlayer +#set SupportUhtredOmenPlayer +#mods +#skillEnd + #skill SupportUnabatingPlayer #set SupportUnabatingPlayer #mods @@ -821,6 +1549,54 @@ statMap = { #mods #skillEnd +#skill SupportUpheavalPlayerTwo +#set SupportUpheavalPlayerTwo +statMap = { + ["support_additional_fissures_damage_+%_final"] = { + mod("Damage", "MORE", nil, ModFlag.Hit), + }, + ["support_additional_fissures_attack_speed_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack), + }, +}, +#mods +#skillEnd + +#skill SupportUrgentTotemsPlayer +#set SupportUrgentTotemsPlayer +#mods +#skillEnd + +#skill SupportUrgentTotemsPlayerTwo +#set SupportUrgentTotemsPlayerTwo +#mods +#skillEnd + +#skill SupportUrgentTotemsPlayerThree +#set SupportUrgentTotemsPlayerThree +#mods +#skillEnd + +#skill SupportUruksSmeltingPlayer +#set SupportUruksSmeltingPlayer +#mods +#skillEnd + +#skill SupportUulNetolsEmbracePlayer +#set SupportUulNetolsEmbracePlayer +#mods +#skillEnd + +#skill SupportVanguardPlayer +#set SupportVanguardPlayer +#mods +#skillEnd + +#skill SupportVanguardPlayerTwo +#set SupportVanguardPlayerTwo +#mods +#skillEnd + #skill SupportVitalityPlayer #set SupportVitalityPlayer statMap = { @@ -832,6 +1608,17 @@ statMap = { #mods #skillEnd +#skill SupportVitalityPlayerTwo +#set SupportVitalityPlayerTwo +statMap = { + ["support_vitality_life_regeneration_rate_per_minute_%"] = { + mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Vitality" }), + div = 60, + }, +}, +#mods +#skillEnd + #skill SupportVolcanicEruptionPlayer #set SupportVolcanicEruptionPlayer #mods @@ -842,3 +1629,8 @@ statMap = { #flags attack area #mods #skillEnd + +#skill SupportXophsPyrePlayer +#set SupportXophsPyrePlayer +#mods +#skillEnd diff --git a/src/Export/statdesc.lua b/src/Export/statdesc.lua index 6dc0071ecc..5d31dccfe5 100644 --- a/src/Export/statdesc.lua +++ b/src/Export/statdesc.lua @@ -382,7 +382,7 @@ function describeStats(stats) end):gsub("%%%%","%%") local order = descriptor.order for line in (statDesc.."\\n"):gmatch("([^\\]+)\\n") do - table.insert(out, line) + table.insert(out, sanitiseText(line)) table.insert(orders, order) order = order + 0.1 end diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index fe3f5618bd..1ead505231 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -2003,9 +2003,9 @@ function buildMode:InsertItemWarnings() InsertIfNew(self.controls.warnings.lines, "You have too many gems in your "..warning.." socket group") end end - if self.calcsTab.mainEnv.itemWarnings.supportGemLimitWarning then - for _, warning in ipairs(self.calcsTab.mainEnv.itemWarnings.supportGemLimitWarning) do - InsertIfNew(self.controls.warnings.lines, "You have too many "..warning[1].." support gems allocated. Max allowed is "..warning[2].."."..(warning[3] and " Locations: "..table.concat(warning[3], ", ") or "")) + if self.calcsTab.mainEnv.itemWarnings.lineageSupportGemLimitWarning then + for _, warning in ipairs(self.calcsTab.mainEnv.itemWarnings.lineageSupportGemLimitWarning) do + InsertIfNew(self.controls.warnings.lines, "You have too many "..warning[1].." lineage support gems allocated. Max allowed is "..warning[2].."."..(warning[3] and " Locations: "..table.concat(warning[3], ", ") or "")) end end if self.calcsTab.mainEnv.itemWarnings.gemGroupCountWarning then diff --git a/src/Modules/CalcOffence.lua b/src/Modules/CalcOffence.lua index 71aa0c142c..650f49de6e 100644 --- a/src/Modules/CalcOffence.lua +++ b/src/Modules/CalcOffence.lua @@ -730,6 +730,15 @@ function calcs.offence(env, actor, activeSkill) end end end + if skillModList:Flag(nil, "CastSpeedAppliesToProjectileSpeed") then + -- Bow mastery projectile speed to damage with bows conversion + local multiplier = (skillModList:Max(skillCfg, "ImprovedCastSpeedAppliesToProjectileSpeed") or 100) / 100 + for i, value in ipairs(skillModList:Tabulate("INC", { flags = ModFlag.Cast }, "Speed")) do + local mod = value.mod + local modifiers = calcLib.getConvertedModTags(mod, multiplier) + skillModList:NewMod("ProjectileSpeed", mod.type, mod.value * multiplier, mod.source, band(mod.flags, bnot(ModFlag.Cast)), mod.keywordFlags, unpack(modifiers)) + end + end if skillModList:Flag(nil, "ProjectileSpeedAppliesToBowDamage") then -- Bow mastery projectile speed to damage with bows conversion for i, value in ipairs(skillModList:Tabulate("INC", { flags = ModFlag.Bow }, "ProjectileSpeed")) do @@ -737,6 +746,28 @@ function calcs.offence(env, actor, activeSkill) skillModList:NewMod("Damage", mod.type, mod.value, mod.source, bor(ModFlag.Bow, ModFlag.Hit), mod.keywordFlags, unpack(mod)) end end + if skillModList:Flag(nil, "WarcryDamageAppliesToSkill") then + -- Fortifying Cry mod + for i, value in ipairs(skillModList:Tabulate("INC", { keywordFlags = KeywordFlag.Warcry }, "Damage")) do + local mod = value.mod + if band(mod.keywordFlags, KeywordFlag.Warcry) ~= 0 then + skillModList:NewMod("Damage", mod.type, mod.value, mod.source, mod.flags, band(mod.keywordFlags, bnot(KeywordFlag.Warcry)), unpack(mod)) + end + end + for i, value in ipairs(skillModList:Tabulate("MORE", { keywordFlags = KeywordFlag.Warcry }, "Damage")) do + local mod = value.mod + if band(mod.keywordFlags, KeywordFlag.Warcry) ~= 0 then + skillModList:NewMod("Damage", mod.type, mod.value, mod.source, mod.flags, band(mod.keywordFlags, bnot(KeywordFlag.Warcry)), unpack(mod)) + end + end + end + if skillModList:Flag(nil, "ProjectileSpeedAppliesToProjectileDamage") then + -- Projectile speed to projectile damage conversion + for i, value in ipairs(skillModList:Tabulate("INC", { }, "ProjectileSpeed")) do + local mod = value.mod + skillModList:NewMod("Damage", mod.type, mod.value, mod.source, ModFlag.Projectile, mod.keywordFlags, unpack(mod)) + end + end if skillModList:Flag(nil, "ClawDamageAppliesToUnarmed") then -- Claw Damage conversion from Rigwald's Curse for i, value in ipairs(skillModList:Tabulate("INC", { flags = bor(ModFlag.Claw, ModFlag.Hit), keywordFlags = KeywordFlag.Hit }, "Damage")) do @@ -993,7 +1024,7 @@ function calcs.offence(env, actor, activeSkill) skillData.reloadTime = ammoStats.reloadTime end - if skillModList:Flag(nil, "HasSeals") and activeSkill.skillTypes[SkillType.CanRapidFire] and not skillModList:Flag(nil, "NoRepeatBonuses") then + if skillModList:Flag(nil, "HasSeals") and activeSkill.skillTypes[SkillType.Unleashable] and not skillModList:Flag(nil, "NoRepeatBonuses") then -- Applies DPS multiplier based on seals count local totalCastSpeed = 1 / activeSkill.activeEffect.grantedEffect.castTime * calcLib.mod(skillModList, skillCfg, "Speed") output.SealCooldown = activeSkill.activeEffect.grantedEffect.castTime * skillModList:Sum("BASE", skillCfg, "SealGainFrequency") / calcLib.mod(skillModList, skillCfg, "SealGainFrequency") / 100 @@ -1304,7 +1335,7 @@ function calcs.offence(env, actor, activeSkill) if activeSkill.skillTypes[SkillType.Warcry] then local full_duration = calcSkillDuration(skillModList, skillCfg, activeSkill.skillData, env, enemyDB) local cooldownOverride = skillModList:Override(skillCfg, "CooldownRecovery") - local actual_cooldown = cooldownOverride or (activeSkill.skillData.cooldown + skillModList:Sum("BASE", skillCfg, "CooldownRecovery")) / calcLib.mod(skillModList, skillCfg, "CooldownRecovery") + local actual_cooldown = cooldownOverride or (activeSkill.skillData.cooldown or 0 + skillModList:Sum("BASE", skillCfg, "CooldownRecovery")) / calcLib.mod(skillModList, skillCfg, "CooldownRecovery") local uptime = env.modDB:Flag(nil, "Condition:WarcryMaxHit") and 1 or m_min(full_duration / actual_cooldown, 1) local unscaledEffect = calcLib.mod(skillModList, skillCfg, "WarcryEffect", "BuffEffect") output.WarcryEffectMod = unscaledEffect * uptime @@ -2603,9 +2634,13 @@ function calcs.offence(env, actor, activeSkill) -- Average bolts reloaded past six second for purposes of calculating Fresh Clip support damage bonus local boltsReloadedPastSixSeconds = skillModList:Override({ source = "Config"}, "Multiplier:BoltsReloadedPastSixSeconds") or (output.ChanceToNotConsumeAmmo > 100) and 0 or (output.BoltCount * 6 / (output.TotalFiringTime + output.ReloadTime)) -- assume 0 bolts reloaded when none are consumed + local boltsReloadedPastEightSeconds = skillModList:Override({ source = "Config"}, "Multiplier:BoltsReloadedPastEightSeconds") or (output.ChanceToNotConsumeAmmo > 100) and 0 or (output.BoltCount * 8 / (output.TotalFiringTime + output.ReloadTime)) -- assume 0 bolts reloaded when none are consumed if boltsReloadedPastSixSeconds > 0 then skillModList:ReplaceMod("Multiplier:BoltsReloadedPastSixSeconds", "BASE", boltsReloadedPastSixSeconds, activeSkill.activeEffect.grantedEffect.name) end + if boltsReloadedPastEightSeconds > 0 then + skillModList:ReplaceMod("Multiplier:BoltsReloadedPastEightSeconds", "BASE", boltsReloadedPastEightSeconds, activeSkill.activeEffect.grantedEffect.name) + end end if output.Speed == 0 then output.Time = 0 @@ -3838,7 +3873,7 @@ function calcs.offence(env, actor, activeSkill) end output.AverageDamage = output.AverageHit * output.HitChance / 100 globalOutput.AverageBurstHits = output.AverageBurstHits or 1 - local repeatPenalty = skillModList:Flag(nil, "HasSeals") and activeSkill.skillTypes[SkillType.CanRapidFire] and not skillModList:Flag(nil, "NoRepeatBonuses") and calcLib.mod(skillModList, skillCfg, "SealRepeatPenalty") or 1 + local repeatPenalty = skillModList:Flag(nil, "HasSeals") and activeSkill.skillTypes[SkillType.Unleashable] and not skillModList:Flag(nil, "NoRepeatBonuses") and calcLib.mod(skillModList, skillCfg, "SealRepeatPenalty") or 1 globalOutput.AverageBurstDamage = output.AverageDamage + output.AverageDamage * (globalOutput.AverageBurstHits - 1) * repeatPenalty or 0 globalOutput.ShowBurst = globalOutput.AverageBurstHits > 1 output.TotalDPS = output.AverageDamage * (globalOutput.HitSpeed or globalOutput.Speed) * skillData.dpsMultiplier * quantityMultiplier diff --git a/src/Modules/CalcPerform.lua b/src/Modules/CalcPerform.lua index 982b9b055c..8686ff02de 100644 --- a/src/Modules/CalcPerform.lua +++ b/src/Modules/CalcPerform.lua @@ -3107,10 +3107,9 @@ function calcs.perform(env, skipEHP) t_insert(env.itemWarnings.gemGroupCountWarning, { allowedGemGroups, gemInfo }) end else - local allowedSupportCount = env.modDB:HasMod("OVERRIDE", nil, "MaxSupportGemCopies") and env.modDB:Override(nil, "MaxSupportGemCopies") or 1 - if gemInfo.support and gemInfo.count > allowedSupportCount then - env.itemWarnings.supportGemLimitWarning = env.itemWarnings.supportGemLimitWarning or { } - t_insert(env.itemWarnings.supportGemLimitWarning, { gemName, allowedSupportCount, gemInfo.groups }) + if gemInfo.support and gemInfo.lineage and gemInfo.count > 1 then + env.itemWarnings.lineageSupportGemLimitWarning = env.itemWarnings.lineageSupportGemLimitWarning or { } + t_insert(env.itemWarnings.lineageSupportGemLimitWarning, { gemName, 1, gemInfo.groups }) end end end diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index 0dd2efd331..21c816c400 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -421,6 +421,19 @@ local function addBestSupport(supportEffect, appliedSupportList, mode) supportEffect.superseded = true end break + elseif supportEffect.grantedEffect.gemFamily and otherSupport.grantedEffect.gemFamily then + for _, family in ipairs(supportEffect.grantedEffect.gemFamily) do + for _, otherFamily in ipairs(otherSupport.grantedEffect.gemFamily) do + if family == otherFamily then + add = false + if mode == "MAIN" then + otherSupport.superseded = true + end + appliedSupportList[index] = supportEffect + break + end + end + end elseif supportEffect.grantedEffect.plusVersionOf == otherSupport.grantedEffect.id then add = false if mode == "MAIN" then diff --git a/src/Modules/CalcTriggers.lua b/src/Modules/CalcTriggers.lua index 377d6d9b7e..35fab416f8 100644 --- a/src/Modules/CalcTriggers.lua +++ b/src/Modules/CalcTriggers.lua @@ -439,7 +439,7 @@ local function defaultTriggerHandler(env, config) actor.mainSkill.skillData.ignoresTickRate = actor.mainSkill.skillData.ignoresTickRate or (actor.mainSkill.skillData.storedUses and actor.mainSkill.skillData.storedUses > 1) --Account for source unleash - if source and GlobalCache.cachedData[env.mode][uuid] and source.skillModList:Flag(nil, "HasSeals") and source.skillTypes[SkillType.CanRapidFire] then + if source and GlobalCache.cachedData[env.mode][uuid] and source.skillModList:Flag(nil, "HasSeals") and source.skillTypes[SkillType.Unleashable] then local unleashDpsMult = GlobalCache.cachedData[env.mode][uuid].ActiveSkill.skillData.dpsMultiplier or 1 trigRate = trigRate * unleashDpsMult actor.mainSkill.skillFlags.HasSeals = true diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 1fe28d5053..76f6ec96e3 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -248,6 +248,7 @@ function sanitiseText(text) :gsub("\226\128\148", "-") -- U+2014 EM DASH :gsub("\226\128\149", "-") -- U+2015 HORIZONTAL BAR :gsub("\226\136\146", "-") -- U+2212 MINUS SIGN + :gsub("\226\128\162 ?", "") -- U+2022 BULLET :gsub("\195\164", "a") -- U+00E4 LATIN SMALL LETTER A WITH DIAERESIS :gsub("\195\182", "o") -- U+00F6 LATIN SMALL LETTER O WITH DIAERESIS -- single-byte: Windows-1252 and similar diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index a3422b2694..802aa8a3de 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -1517,9 +1517,12 @@ Huge sets the radius to 11. { var = "conditionAtCloseRange", type = "check", label = "Is the enemy at Close Range?", ifCond = "AtCloseRange", apply = function(val, modList, enemyModList) modList:NewMod("Condition:AtCloseRange", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) end }, - { var = "multiplierBoltsReloadedPerSecond", type = "countAllowZero", label = "# bolts reloaded past 6 seconds", tooltip = "Override number of bolts reloaded in the past 6 seconds.\nUsed to calculate damage bonus from Fresh Clip support.\nAssumes calculated average if no value is specified.", ifSkill = "Fresh Clip", apply = function(val, modList, enemyModList) + { var = "multiplierBoltsReloadedPer6Seconds", type = "countAllowZero", label = "# bolts reloaded past 6 seconds", tooltip = "Override number of bolts reloaded in the past 6 seconds.\nUsed to calculate damage bonus from Fresh Clip I support.\nAssumes calculated average if no value is specified.", ifSkill = "Fresh Clip I", apply = function(val, modList, enemyModList) modList:NewMod("Multiplier:BoltsReloadedPastSixSeconds", "OVERRIDE", val, "Config", { type = "Condition", var = "Effective" }) end }, + { var = "multiplierBoltsReloadedPer8Seconds", type = "countAllowZero", label = "# bolts reloaded past 8 seconds", tooltip = "Override number of bolts reloaded in the past 8 seconds.\nUsed to calculate damage bonus from Fresh Clip II support.\nAssumes calculated average if no value is specified.", ifSkill = "Fresh Clip II", apply = function(val, modList, enemyModList) + modList:NewMod("Multiplier:BoltsReloadedPastEightSeconds", "OVERRIDE", val, "Config", { type = "Condition", var = "Effective" }) + end }, { var = "enemyMultiplierEnemyPresenceSeconds", type = "count", label = "Enemy in Your Presence Duration", tooltip = "Number of seconds the enemy has been in your presence.", ifEnemyMult = "EnemyPresenceSeconds", apply = function(val, modList, enemyModList) enemyModList:NewMod("Multiplier:EnemyPresenceSeconds", "BASE", val, "Config", { type = "Condition", var = "Effective" }) end },